子查询,大家再熟悉不过了,例如:
select employee_name
from employee
where employee_salary >
(select avg(employee_salary)
from employee)
下面这也是一个子查询,没用到where语句。
INSERT INTO math_study_group(id, name)
SELECT id, name
FROM student_details WHERE subject= 'Math'
下面粗体部分是提取表(derived table)
delete from id where Id not in
(select Id)
from
(selectid,peopleIdfrom people)as a
GROUP by peopleId );
两者的区别就是- derived tables are used in the FROM clause
- subqueries are used in the WHERE clause, but can also
be used to select from one table and insert into
another as we showed above
翻译过来就是
提取表是用在 from 语句中的。
子查询是用在 where语句中的,但是也可以用在从一张表中查询,然后插入到另一张表,就像上面展示的那个例子一样。
本文深入探讨了SQL中的子查询与提取表的区别,包括它们在语法上的不同应用,以及如何在实际操作中利用这些特性进行数据处理。
1404

被折叠的 条评论
为什么被折叠?



