2
Answers

Alter table query

David Smith

David Smith

14y
1.5k
1

How do I arrange the column i create to be in a certain order

at the moment I have query to add a column but the column im adding , i want to put before a certain column, example below'

ALTER TABLE Table1 ADD col D Text

example:

col A,  col  B , col C, col D

I want to put col D before  col B

Output Below:

col A, col D, col B , col C


Answers (2)