oracle 关联 A表与B表关联,A->B 一对多

本文探讨了两种不同的SQL查询方法,一种是使用LEFT JOIN连接两张表来获取客户信息及电话号码,另一种则是通过子查询并限制返回第一条电话记录的方法。对比这两种查询方式的结果差异,帮助读者理解如何更高效地进行数据检索。

 select rownum,t.cr_customer_number,t.cr_name,t.cr_idnum,(select f.tl_tel_num from crm_tel f where t.id=f.customerid and rownum=1),t.cr_gather_date from crm_customer t 
 order by t.cr_customer_number desc

 

 select count((select f.tl_tel_num from crm_tel f where t.id=f.customerid and rownum=1)) as tel
 from crm_customer t order by rownum desc

 

 

查询两条数据相同 选一条用 rownum

 

一下两条数据查询结果不同:

select t.cr_customer_number,t.cr_name,t.cr_idnum,f.tl_tel_num,t.cr_gather_date from crm_customer t 
  left join crm_tel f on t.id=f.customerid
 order by t.cr_customer_number desc

 

 select rownum,t.cr_customer_number,t.cr_name,t.cr_idnum,(select f.tl_tel_num from crm_tel f where t.id=f.customerid and rownum=1),t.cr_gather_date from crm_customer t 
 order by t.cr_customer_number desc

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值