SQL Server创建数据表
程序员文章站
2024-03-21 10:07:58
...
常见的数据类型有:
char,varchar,text
int,bigint,smallint,tinyint
date,time,datetime,smalldatetime
创建数据表
create table table_name
(
id bigint primary key identity(1,1),
name nvarchar(10),
sex char(1) default '男',
age int not null
)
创建数据表的基本语法如上,根据[列名] [类型] [限定]格式定义字段的类型和名称,primary key 是主键约束,identity(1,1)以步长1从1开始自增,not null 是非空约束,default 是默认值约束.
删除数据表
Drop table table_name
修改数据表并添加字段
alter table table_name
add Id int not null
上一篇: C语言预处理与宏定义以及内联函数