SaintJames
Programmer
Can someone help me with this. I'm triing to conver a sql statement from MS-SQL to oracle
All the statement does in add a column before and other, I am unsure about the correct syntax for Oracle.
here is my MS-SQL statement:
ALTER TABLE tbl_a ADD field_B NUMERIC(8) NULL BEFORE field_C ROUTID;
I know I have to change the value to NUMBER but the BEFORE part is not recognized
ALTER TABLE tbl_a ADD field_B NUMBER NULL BEFORE field_C ROUTID;
Thank you
All the statement does in add a column before and other, I am unsure about the correct syntax for Oracle.
here is my MS-SQL statement:
ALTER TABLE tbl_a ADD field_B NUMERIC(8) NULL BEFORE field_C ROUTID;
I know I have to change the value to NUMBER but the BEFORE part is not recognized
ALTER TABLE tbl_a ADD field_B NUMBER NULL BEFORE field_C ROUTID;
Thank you