--(1)向数据库Student表中添加Name字段
			use MR_NXT
			alter table student
			add Name nvarchar(20)
		--(2)将Student表中Name的字段的数据类型修改为varchar(50)
			use MR_NXT
			alter table student
			alter column Name varchar(50)
		--(3)删除Student表中Name字段
			use MR_NXT
			alter table student
			drop column Name 

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-02
  • 2021-11-02
  • 2021-07-26
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2022-01-30
相关资源
相似解决方案