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的第一条记录,然后在执行子查询,这个时候customers.cust_id就是一个值,将子查询全部执行完后,在执行外部查询。。。。。。。。  这个地方因为用的是子查询,所以不用使用join

你可能感兴趣的:(sql,子查询)