select *from car –select... cade Int not null,列名,类型,是否为空 name varchar(20), 什么类型 sex int, height decimal(18,2) ) go insert into student values(1,'李四',1.85) 添加数据 go selec
* 处理 null值:Select 列名 from 表名 where 列名 is null/is not null; * 排序查询:Select 列名 from 表名 order by 列名 asc/desc; * 分组查询:Select 分组的列名 from 表名 group by 列名; * Having 条件筛选...