mysql常用命令

#查询结果去重#

distinct 关键字select distinct university from user_profile   distinct去重,放在列的前面使用

#将查询后的列重新命名#及限制返回行数

select device_id as user_infors_example from user_profile limit 0,2;

#查找某个年龄段的用户信息#

between 在列值得某与某之间
select device_id,gender,age,university from user_profile WHERE age between 20 and 23

#用where过滤空值练习#

把age是null值筛选出来

selectdevice_id,gender,age,universityfrom user_profileWHEREage is not null  

#Where in 和Not in#

这主要是用标题的两个关键字中的一个 in(字段...) 包含条件的字段,not in(字段..) 除字段以外的
推荐用in ,增加复用性
select device_id,gender,age,university,gpa from user_profile

where university in('北京大学','复旦大学','山东大学');

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值