SQL Server 添加字段,修改字段类型,修改字段名,删除字段
摘要:-- 1.添加字段-- 基本语法alter table 表 add 列名 字段类型 null-- 例:给学生表添加Telephone字段并指定类型为vachar,长度为50,可空alter table [dbo].[Student] add Telephone varchar(50) null; -
阅读全文
posted @ 2021-04-29 22:22
posted @ 2021-04-29 22:22
posted @ 2021-04-29 22:21
posted @ 2021-04-12 22:23
posted @ 2021-04-11 21:32
posted @ 2021-04-10 12:10