我必须添加一个field1
intable1
作为新列,而这field1
已经是table2
. 我写了下面的查询:
alter table1 a
add field1 smallint,
default 5 not null
上面的查询有什么问题?它在sybase数据库中。
我必须添加一个field1
intable1
作为新列,而这field1
已经是table2
. 我写了下面的查询:
alter table1 a
add field1 smallint,
default 5 not null
上面的查询有什么问题?它在sybase数据库中。
你的语法有点错误。它应该是:
alter table table1
add field1 smallint
default 5 not null
在此处查看文档:http: //infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.ase_15.0.sqlug/html/sqlug/ sqlug354.htm