1、 select * from datebase where xx(属性) = value 2、 select max(xx(属性)) from database 3、 select * from employees order by hire_date desc limit 2, 1LIMIT m,n : 表示从第m+1条开始,取n条数据;LIMIT n : 表示从第0条开始,取n条数据,是limit(0,n)的缩写。 选择第二高的薪水 select max(Salary) SecondHighestSalary from Employee where Salary < (selec...