数据库增删改&备份&统计类界面

2022-05-30  本文已影响0人  驴_beaf

数据库

select(查询)

from

where

排序

order by (排序)

asc 升序

desc 降序

limit(适用于mysql )(取前几个查询结果)

rownum (适用于oracle) (取前几个查询结果)

top (适用于sqlsever)(取前几个查询结果)

like 模糊查询 %_

and,or(多条件连接)

not (非)

in (,,) (规定读个子值)

between and (两者之间,闭区间)

group by (分组)

聚合函数

count()(统计)

sum()(求和)

avg()(平均)

max()(最大)

min()(最小)

having (对聚合函数过滤)

distinct(去重)

多表关联

where(普通)

inner join on 或者 join on(内连接)

left join on (左连接)

right join on (右链接)

full join on (全连接)

增删改

insert into(增)

update(改)

delete(删)

表备份

image.png

扩展

image.png
上一篇 下一篇

猜你喜欢

热点阅读