目录
id | name | age |
1 | atom | 111 |
2 | atom2 | 22 |
3 | atom3 | 33 |
4 | atom | 22 |
一、select基本搜索
简单理解就是想搜索什么内容从哪里
1、select查询数据
select 要搜索的内容(要搜索的列) from 位置(表)
如:想要搜索所有的年龄 select age from person
2、select搜索多个列
想要搜索多个列怎么办?
在select 后面加上多个列名就行,记住需要用,隔开
如 搜索姓名和年龄 select name,age from person
3、搜索所有列
如果要搜索所有的列 应该怎么办?
使用*表示列
select * from person
4、检索不重复的数据
如果想要检索不重复的行应该怎么办?
使用distinct 这样搜索出来的就是不重复的了 select distinct name from person
但是distinct后面只能接一个列 如果有多个的话 搜索出来的是所有的数据
5、搜索某几行数据
如果想只筛选头两行应该怎么办?
使用limit select age from person limit 2 筛选name为头两行的数据
6、筛选中间几行的数据
如果是想筛选中间的几行应该怎么办?
使用 limit X(几行) offset x(从第几行起) select name from person limit 2 offset 1
表示的是 搜索表中 第1行起的后2行(2、3行)