SQL Server数据库的T-SQL高级查询
一、查询使用的函数 请自行创建数据库和表,表中插入数据,我的样例如下: create database accp; <!--创建accp数据库--> use accp; <!--切换到accp数据库--> create table test ( <!--创建test表--> 编号 int identity(1,1) not null, 姓名 nvarchar(4) not null, 证件号码 varchar(18) primary key, 职务 nvarchar(6) null, 入职时间 datetime null, 出生日期 datetime null, 基本工资 money null check (基本工资 >=0 and 基本工资 <= 10000), ); select * from test; <!--查看test表结构--> alter table test add 备注 nvarchar(50); <!--添加一列备注列--> <!--表中插入数据 --> insert into test values ('王三','111111111111111111','初级运维','2011/3/8','1980/12/3',7500,'老员工'); insert into test values ('杜五','222222222222222222','中级运维',