Last active
June 19, 2018 06:16
-
-
Save appleshan/d324e18833b4569b6c9f3a587a4223b9 to your computer and use it in GitHub Desktop.
mysql 数据库基础
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * mysql`limit`函数:`limit(1,6)` 查询从第一条数据后面的6条数据 | |
| * `select * from table limit (pageNo-1)*pageSize,pageSize;` | |
| * 其中start是页码,limit是每页显示的条数。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment