SarasotaIT
IS-IT--Management
I am looking for the proper syntax to change the size of 2 or more columns in my table in one query. Here is what I have to change the size of just ONE column:
ALTER TABLE MyTable
ALTER COLUMN [COL1] char(6);
But, what if I wanted to change the column size of COL1 and COL2 in the same query?
Thanks much in advance!
Terry
ALTER TABLE MyTable
ALTER COLUMN [COL1] char(6);
But, what if I wanted to change the column size of COL1 and COL2 in the same query?
Thanks much in advance!
Terry