日期:2014-05-18  浏览次数:20489 次

SQL2008 怎么删除列
我学习了加入列,后来发现不知道怎么删除一列。。。
alter table Student ADD S_entrance DATE;


怎么删除这一列还保留其他的呢??

------解决方案--------------------
alter table student drop column s_entrance
------解决方案--------------------
alter table student drop column s_entrance
------解决方案--------------------
alter table Student drop column S_entrance