发布网友 发布时间:2022-05-27 05:34
共2个回答
热心网友 时间:2023-10-09 13:09
create database shcool -- 建立数据库shcool use school go if object_id('student') is not null drop table student create table student ( id varchar(3) not null primary key, name varchar(10) not null ) --建立表student insert into student select '001','zhangsan' union all select '002','lisi' union all select '003','wangwu' ..........-- 插入数据 select * from student ---查询全部的数据 where id='001'-- 查询id为001的学生数据 group by id --按id分组 having(....)--也是个条件语句 order by id asc/desc --按id升序/降序排列 这是最基本的一种查询语句了。。热心网友 时间:2023-10-09 13:09
select * from data