先上例子:使用子查询
SELECT Name,Sex,WorkYear
FROM employees
ORDER BY
(SELECT InCome-OutCome
FROM salary
WHERE salary.EmployeeID=employees.EmployeeID)DESC
当在父查询中的表会自动继承到子查询中,因此子查询中的FROM 表就不需要再写一次父类的表,否则会报错子查询返回多余一行
上述等价于:不使用子查询
SELECT Name,Sex,WorkYear,InCome-OutCome
FROM employees,salary
WHERE salary.EmployeeID=employees.EmployeeID
ORDER BY
InCome-OutCome
DESC
疑问? 怎样在order by里使用子查询时,同时查询出Income-OutCome字段的值。