返回数说广场
2
考虑如下语句:
select o.employee_id, o.last_name from employees o where o.salary > (select avg(i.salary) from employees i
where i.department_id=o.department_id);
子查询将在什么时候执行? C
A
在外部查询执行后
B
在外部查询执行前
C
对于EMPLOYEES表的每条记录执行一次
D
和外部查询一起执行
0
2 379
分享
评论
热门数说


