Sybase add/delete column from table

/* 
#ident "%W%" 
*/ 
alter table TableName 
    add	Column1 varchar(10) NULL, Column2 varchar(20) Null
go


alter table TicketTblExt
       drop Column1, Column2
go






你可能感兴趣的:(Sybase add/delete column from table)