当前位置: 代码迷 >> Sql Server >> SQL2008 如何删除列
  详细解决方案

SQL2008 如何删除列

热度:9   发布时间:2016-04-27 13:07:47.0
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