2005/05/07 | 更新表-添加字段
类别(SQL) | 评论(0) | 阅读(88) | 发表于 16:03
alter table [tableName]
add [ColumnName] [ColumnType] not null|null default [Columnvalue]

例子:
alter table Account
add cb int not null default('4'),cc int not null default('8')
0

评论Comments