qfedu-linux-advanced-level/day9/DQL/search13.sql

13 lines
266 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

use studb;
-- 按1页显示2条数据的方式显示学生表的第2页数据
/*
limit offset, size offset是0开始的, 0表示第一行
offset = (page-1)*size, page是页号, size是每一页显示的大小
*/
select *
from t_stu
limit 2,2;