码迷,mamicode.com
首页 > 数据库 > 详细

MySQL-SQL查询

时间:2020-02-13 15:19:56      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:ima   and   image   HERE   技术   esc   png   sele   sql查询   

1.基础

范围查询

between:select 字段 from 表名 where 字段 between 值 and 值;
select id from stu where id between 1 and 3;
技术图片
in:select 字段 from 表名 where 字段 in (值,值);
select id from stu where id in (2,3);
技术图片
not in:select 字段 from 表名 where 字段 in (值,值);
select id from stu where id not in (2,3);
技术图片

排序

order by asc:select 字段 from 表名 order by 字段;(升序)
select * from stu order by id;
技术图片
order by desc:select 字段 from 表名 order by 字段 desc;(降序)
select * from stu order by id;
技术图片

去重

distinct:select distinct(字段) from 表名;
select distinct(id) from stu;
技术图片

限制

limit:select 字段 from 表名 limit 数字;
select * from stu limit 2;
技术图片

MySQL-SQL查询

标签:ima   and   image   HERE   技术   esc   png   sele   sql查询   

原文地址:https://www.cnblogs.com/zhangshan33/p/12303396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!