Mysql命令:
解析:select
你要显示出来的字段信息 from
你要查的表名 where
限定条件
1- 二级排序用的是order by 而不是 where
二级排序的例子,id降序,money升序:
select
你要显示出来的字段信息 from
你要查的表名 order by
id DESC,money ASC
2- 分页
pageNumber是第几页
pageSize是每页多少条信息
分页的公式:limit(pageNumber – 1)* pageSize , pageSize
原创文章,作者:wure,如若转载,请注明出处:https://blog.ytso.com/274899.html