--(1)向数据库Student表中添加Name字段 use MR_NXT alter table student add Name char(20) --(2)将Student表中Name的字段的数据类型修改为char(50) use MR_NXT alter table student alter column Name char(50) --(3)删除Student表中Name字段 use MR_NXT alter table student drop column Name
原文地址:https://www.cnblogs.com/chaonuanxi/p/10018078.html
时间: 2024-10-23 08:35:28