SQL语言的问题
selectb*fromTb_b_Ft_Prd_Inst_Cdma_200907a,syh_Cdmabwherecw_bil_num=1andnet_num=1andex...
select b* from Tb_b_Ft_Prd_Inst_Cdma_200907 a,syh_Cdma b where cw_bil_num=1
and net_num=1
and exists
(select 1 from tb_bil_prd_inst_big_item partition(p200907) b
where a.prd_inst_id=b.prd_inst_id and b.total_charge<9)
and a.prd_inst_id=b.prd_inst_id and a.latn_id=556
and b.area_name='望江'
================================
这里面的
and exists
(select 1 from tb_bil_prd_inst_big_item partition(p200907) b
看不懂
请牛人解答 加分 加分
partition(p200907)
这个是什么意思,我在表里没看到partition这个字段 展开
and net_num=1
and exists
(select 1 from tb_bil_prd_inst_big_item partition(p200907) b
where a.prd_inst_id=b.prd_inst_id and b.total_charge<9)
and a.prd_inst_id=b.prd_inst_id and a.latn_id=556
and b.area_name='望江'
================================
这里面的
and exists
(select 1 from tb_bil_prd_inst_big_item partition(p200907) b
看不懂
请牛人解答 加分 加分
partition(p200907)
这个是什么意思,我在表里没看到partition这个字段 展开
3个回答
展开全部
【exists】后面的语句如果有结果的话,整体的结果返回的就是 【ture】
【exists】后面的语句如果没有结果的话,整体的结果返回的就是 【false】
因此:
exists
(select 1 from tb_bil_prd_inst_big_item partition(p200907) b
where a.prd_inst_id=b.prd_inst_id and b.total_charge<9)
的意思就是 如果表【tb_bil_prd_inst_big_item】的分区【p200907】中有【a.prd_inst_id=b.prd_inst_id and b.total_charge<9】记录,整体的结果就是【ture】,结合你的【and net_num=1 and a.prd_inst_id=b.prd_inst_id and a.latn_id=556 and b.area_name='望江'】就应该可以查出记录,反之则不可以。
如果还不明白可以hi我,我在线。
---
意思,希望对你有所帮助。
【exists】后面的语句如果没有结果的话,整体的结果返回的就是 【false】
因此:
exists
(select 1 from tb_bil_prd_inst_big_item partition(p200907) b
where a.prd_inst_id=b.prd_inst_id and b.total_charge<9)
的意思就是 如果表【tb_bil_prd_inst_big_item】的分区【p200907】中有【a.prd_inst_id=b.prd_inst_id and b.total_charge<9】记录,整体的结果就是【ture】,结合你的【and net_num=1 and a.prd_inst_id=b.prd_inst_id and a.latn_id=556 and b.area_name='望江'】就应该可以查出记录,反之则不可以。
如果还不明白可以hi我,我在线。
---
意思,希望对你有所帮助。
展开全部
select 1 的意思是目标集合的任意一行
exists就是用来判断是否存在
exists就是用来判断是否存在
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是相关子查询
弄个简单的例子Customer(客户表),Orders(订单表),关系通过CustomerID关联
现在要查询出那些客户具有订单记录,可用EXISTS来做
SELECT *
FROM Customer AS TA
WHERE EXISTS
(
--子查询,通过Customer表来作为条件,查询出具有订单的客户
SELECT 1
FROM Orders AS TB
WHERE TA.CustomerID= TB.CustomerID
)
至于SELECT 1 是为了提高性能,不查询任何列,其实在EXISTS中 换成SELECT *也不会影响性能 EXISTS只是是用来判断是否存在行
弄个简单的例子Customer(客户表),Orders(订单表),关系通过CustomerID关联
现在要查询出那些客户具有订单记录,可用EXISTS来做
SELECT *
FROM Customer AS TA
WHERE EXISTS
(
--子查询,通过Customer表来作为条件,查询出具有订单的客户
SELECT 1
FROM Orders AS TB
WHERE TA.CustomerID= TB.CustomerID
)
至于SELECT 1 是为了提高性能,不查询任何列,其实在EXISTS中 换成SELECT *也不会影响性能 EXISTS只是是用来判断是否存在行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询