编程论坛
注册
登录
编程论坛
→
SQL Server论坛
求救!!!
yipinwuyin
发布于 2008-01-17 10:02, 1012 次点击
求救!!!
如何在SQL server数据库里的列中追加新内容?
具体步骤怎样?
请高手指教!!!
本人是个菜鸟!
2 回复
#2
deleter
2008-01-17 19:26
用update语句吧
update 表名 set 列=值 where 条件
例如:
update abc set a=123 where a=" "
#3
a67896711
2008-01-18 14:07
atler table 表名 add 字段名(就是列名) 类型 约束
例:
atler table student add sname nchar(5) unique
1