surfbum3000
Technical User
I have a table that needs multiple column data types changed to text. I am using this code that works:
ALTER TABLE tbl6DaysSERVICES
ALTER ID text
The downside is I have to create a seperate query for each column to change each data type. I have tried:
ALTER TABLE tbl6DaysSERVICES
ALTER ID text, CLIENT_ID text, UNIT_ID text;
But this fails with a syntax error.
ALTER TABLE tbl6DaysSERVICES
ALTER ID text
The downside is I have to create a seperate query for each column to change each data type. I have tried:
ALTER TABLE tbl6DaysSERVICES
ALTER ID text, CLIENT_ID text, UNIT_ID text;
But this fails with a syntax error.