显示薪资第5到第8的员工的员工名和薪资()
select ename,sal from emp order by sal desc limit 4,4;
页码:pageNo pageSize:3
limit (pageNo - 1) * pageSize,pageSize;
drop table if exists t_student;
create table emp_bak as select * from emp;
insert into 表名(字段名,字段名,字段名,字段名) values(字段值,字段值,字段值,字段值);
原文:https://www.cnblogs.com/echonick/p/12557942.html