sql查询
作者:不详
[标签:图片]sql查询
一:刻录添加
insert into 表名 (字段1,字段2) values (值1,值2)
二:记录修改
Update 表名 set 字段1=值1,字段2=值2 where 条件
三:记录删除
Delete From 表名 where 条件
四:单表查询
Delete from 表名 where 条件
五:多表查询
内连接
Select 字段1,字段 From 表1 Inner Join 表2 ON 连接条件
左连接
select 字段1,字段 From 表1 left Join 表2 ON 连接条件
右连接
select 字段2,字段 From 表2 Right Join 表2 ON 连接条件
六:聚合函数
select * from tmp 查询所记录
select count(*) from tmp 查询记录数
select sum(score) from tmp 查询累加值
select Min(score) from tmp 查询最小值
select MAX(score) from tmp 查询最大值
Select AVG(score) from tmp 查询平均值