SQL SERVER2000教程-第五章 处理数据 第二节 检索数据
格式:Select 字段表列 from 表名]
实例: Use student
go
Create table student (stuno int primary key ,stuname varchar(10) not null,
> 插入值:
insert into student values(1,'tom',5,'男')
insert into student values(2,'rose’,6,'女')
insert into student values(3,'smith',6,'男')
insert into student values(4,'mary',5,'女')
页:
[1]