How to change datatype column

  • Thread starter Thread starter Eusebio M
  • Start date Start date
E

Eusebio M

Hi,

i nedd to change the datatype of column in a table, but by code.

alter table xTable ..... there are a sentence like in SQL Server ?

thanks in advance.

Eusebio
 
ALTER TABLE Table7
ALTER COLUMN Field1 Text(30)

works fine in my A2K but it may depend on the current data type and the new
data type, I think.
 
Back
Top