sybase查询中的错误是什么

时间:2013-04-10 12:04:32

标签: sybase

我必须在field1中添加table1作为新列,而此field1已经是table2中的主键。我写了下面的查询:

alter table1 a
add field1 smallint,
default 5 not null

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

1 个答案:

答案 0 :(得分: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