摘要: /* *MSSQLSERVER */ --修改基本表 USE stu_info; GO --向学生表新插入列名为S_entrance --ALTER TABLE Student --ADD S_entrance VARCHAR(10); --从学生表删除列名为S_entrance --ALTER TABLE Student --Drop COLUMN S_entrance; --修改已存在的列... 阅读全文
posted @ 2008-10-20 10:27 Daniel_Lu 阅读(172) 评论(0) 推荐(0) 编辑