数据库的操作总结就是:增删改查(CURD),今天记录一下基础的检索查询工作。
检索MySQL
1.查询表中所有的记录
1 | mysql> select * from apps; |
2. 查询表中某列(单列)的记录
1 | mysql> select app_name from apps; |
3.检索表中多列的记录,列名之间用逗号分开
1 | mysql> select id, app_name from apps; |
4.检索不重复的记录,distinct关键字
1 | mysql> select * from apps; |
5.限制检索记录的数量, limit关键字
1 | mysql> select * from apps limit 2; |
5.limit关键字和offset配合使用
1 | limit可以配合offset使用, 如limit 2 offset 1(从行1开始后的2行,默认行数的角标为0) |