1.创建表
create table test(
id int primary key identity(1,1),
username varchar(200) not null unique,
passwords varchar(20) not null,
age int default 18,
regTime date,
sex char(2) check(sex='男’or sex=‘女’),
tall decimal(5,2)
);
2.表数据的处理
插入数据
insert into 表名 (字段1,字段2,字段3)values(数据组1(数据1,数据2))(数据组2(数据1,数据2))
更改数据
update 表 set 字段=新值,字段=新值,where 字段=旧值
update 表 set 字段 = round(字段,2)
删除数据
delete from 表 where 字段=值
逻辑删除 添加一个字段 isdelete
查询语句:
select 字段1,字段2 from 表名 where 字段=值
条件筛选:运算符和逻辑运算(and ,not,or)
模糊查询:like
%:
以某个字符结束(%a)或以某个字符开头(a%)出现某个字符(%a%)
-:
多个_表示有多少个字符
范围查询[ ]:
【1,2,3】表示有1,23
【1-10】范围在1到10
between 数据1(小数) and 数据1(大数)
in(数据1,数据2,数据3)
is null(查询非空)
group by:
出现每,各字需要使用group by 字段
出现聚合函数需要使用(要显示多个字段)
group by 语句有去重的效果,类似于distinct
order by
排序需要用 order by 字段 **(DESC)**降序
order by 字段(默认正序),字段 desc,字段(备注:可以使用多个字段排序)
having
一定有group by才可以使用having条件筛选
分页
limist start,count(SQL server 不能使用这个关键字,只能使用top)
使用分页显示:条数*(n-1)
**select top 7 ***(SQL server 中没有limit)
from AccountsInfo
3.2个表的连接(2以上的表查询)
select * from 表1 join 表2 on 表1.字段=表2.字段
3个表的连接
select * from 表1 join 表2 on 表1.字段=表2.字段 join 表3 on 表2.字段=表3.字段
select * from 表1,表2,表3 where 表1.字段=表2.字段 and 表2.字段=表3.字段
创建一个视图
create view v_stu(视图名称) as
面试过程遇到的题
把数据表中的数据复制到另一个表:inser into 目标表 select * from 原表
convert(数据类型,字段名(表达式)):默认字符串转换成整型
cast(字段名(表达式) as 数据类型):默认字符串装换成浮点型
round(表达式(字段),保留位数)
decimal(10,2)表示10位数中保留2位小数点
聚合函:
sum(),count(),avg(),max(),min()
自关联
select * from 表 as 表名1,表 as 表名2
where 表名1.字段 = 表名2.字段
4.子查询
标量子查询:返回一行一列(不能返回多个值,否则会报错)
select *
from View_UserInfo
where Score>(select avg(Score) from View_UserInfo where GameID like ‘33%’)
–select *
–from View_UserInfo
–where Score>(select avg(Score) from View_UserInfo where GameID like ‘33%’ group by UserID)(报错)
因为group by 分组成多个字段,Score>5,6这种情况不存在
列子查询:返回一列多行
select *
from View_UserInfo
where UserID in(select UserID from View_UserInfo where GameID like ‘33%’)
select *
from View_UserInfo
where UserID in(select * from View_UserInfo where GameID like ‘33%’)
当没有用 EXISTS 引入子查询时,在选择列表中只能指定一个表达式。
select * 返回了所有行,但in 不知道从哪列字段中获取UserId
表子查询:返回多行多列,类似表
select *
from (select * from AccountsInfo) as c(这是一个表所以一定要重命名,不然又语法错误)
子查询的关键字
in,any,some,all(any,some,all使用不等于没有意义)
查询得到的数据插入另外一个表中
insert into 表名(字段)select 字段 from表
注意(查询得到的数据与插入表的数据字段要对应)
E-R模型
1对1(1对1关系应该常用的数据库不能使用来维护关系,会导致数据查询较慢)
1对多(1对多的关系时应该使用多的表来维护关系,这样不会出现数据冗余)
多对多(一般会添加一个表来维护数据)