【sql相关】-基础

sql作为一门古老的语言,学习起来性价比超高!几十年都不用更新!

查询语句 

select 字段1,字段2 from 表 where 字段1='xxxx'

去重查询

select distinct 字段 from 表

where 符号

select * from 表 where 字段 符号 值 and 字段 2 符号 值
= 等于
<> 不等于
< 小于
> 大于
<= >= 小于等于 大于等于
between 在某个范围内
like 像
in 在某多个可能值内
is null 为空

where 筛选

and 且 
or 或
where not 非 
and (or)
or (and)

排序

order by 字段 desc/asc 默认升序
desc 降序
asc 增序
brder by A desc,B 这时候A降序,B升序

插入数据 insert into

insert into 表 (字段1,字段2,...可不写) values (值1,值2,....)
不写字段名则必须写出每一列数据

其他表数据插入

此时要求表2必须存在
insert into 表1 selet * from 表2 where 字段=值
此时要求表2不存在
select * inito 表1 from 表2 where 字段=值

更新 update

update 表 set 字段1=值1,字段2=值2 where 字段3=值3
set sql_safe_updates=1 可以打开强制检查更新开关,如果你后面不写where 则会报错。

 删除 delete

delete from 表 where 字段=值
如果不写where 则全部删除

删除表 ,完全删除

drop 表 

删除表,留着结构和定义

truncate 表

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值