BigalYoung
MIS
This should be fairly straightforward (I hope) !!
I need to add a new column to an existing table. If I use the simple
then the column gets added as the last field. I need to be able to add the field at a specific point within the table i.e. make the new column the second field of a five field table.
I need to add a new column to an existing table. If I use the simple
Code:
ALTER TABLE tabname
ADD newcolumn SMALLINT NULL
then the column gets added as the last field. I need to be able to add the field at a specific point within the table i.e. make the new column the second field of a five field table.