先上例子:使用子查询

    1. SELECT Name,Sex,WorkYear
    2. FROM employees
    3. ORDER BY
    4. (SELECT InCome-OutCome
    5. FROM salary
    6. WHERE salary.EmployeeID=employees.EmployeeID)DESC

    当在父查询中的表会自动继承到子查询中,因此子查询中的FROM 表就不需要再写一次父类的表,否则会报错子查询返回多余一行
    上述等价于:不使用子查询

    1. SELECT Name,Sex,WorkYear,InCome-OutCome
    2. FROM employees,salary
    3. WHERE salary.EmployeeID=employees.EmployeeID
    4. ORDER BY
    5. InCome-OutCome
    6. DESC

    疑问? 怎样在order by里使用子查询时,同时查询出Income-OutCome字段的值。