码迷,mamicode.com
首页 > 数据库 > 详细

关于SQL子查询的一个问题

时间:2019-12-31 00:50:32      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:color   使用   customers   使用外部   customer   order   pre   custom   一个   

今天在翻看工具书的时候,发现了一个sql语句:

select 
    cust_name, 
    cust_state, 
    (select count(*)
     from  orders
     where orders.cust_id = customers.cust_id) as orders
from customers
order by cust_name;

 

在子查询中居然可以直接使用外部的customers表中的cust_id字段进行where条件限制,瞬间就感觉到好像哪里不对劲。

真的可以这样写吗?明天到环境上执行一下看看就知道了。

关于SQL子查询的一个问题

标签:color   使用   customers   使用外部   customer   order   pre   custom   一个   

原文地址:https://www.cnblogs.com/jockeyhao/p/12122176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!