0

我必须添加一个field1intable1作为新列,而这field1已经是table2. 我写了下面的查询:

alter table1 a
add field1 smallint,
default 5 not null

上面的查询有什么问题?它在sybase数据库中。

4

1 回答 1

0

你的语法有点错误。它应该是:

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

于 2013-04-10T12:15:41.507 回答