| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1145 人关注过本帖
标题:如何输出我需要的记录
只看楼主 加入收藏
louzhenghong
Rank: 1
等 级:新手上路
帖 子:54
专家分:5
注 册:2016-4-25
结帖率:64.71%
收藏
已结贴  问题点数:20 回复次数:2 
如何输出我需要的记录
如何输出我需要的记录
a_card  有我需要的字段card_no,bill_name ,meter_addr
bx_qy里面有卡号,一级区 ,二级区 ,三级区,四级区,五级区,六级区  
其中卡号和card_no 关联
我想输出含字段卡号,bill_name ,meter_addr ,一级区 ,二级区 ,三级区,四级区,五级区,六级区 的表,里面的数据是bx_qy没有的记录
SQLEXEC(con1,"select card_no ,bill_name ,meter_addr ,一级区 ,二级区 ,三级区,四级区,五级区,六级区 from a_card a where not exists (select 1 from bx_qy b where a.card_no = b.卡号)","card02")  这样生成不了记录

SQLEXEC(con1,"select card_no ,bill_name ,meter_addr  from a_card a where not exists (select 1 from bx_qy b where a.card_no = b.卡号)","card02")
这样可以生成记录,但后面的一级区 ,二级区 ,三级区,四级区,五级区,六级区我怎么添加到表格上去
搜索更多相关主题的帖子: where 记录 如何 
2016-06-16 11:37
mywisdom88
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:191
帖 子:3147
专家分:8408
注 册:2015-3-25
收藏
得分:10 
a_card(card_no,bill_name ,meter_addr)
bx_qy(卡号,一级区 ,二级区 ,三级区,四级区,五级区,六级区)
*查a_card没在bx_qy的记录
select card_no,bill_name ,meter_addr,一级区 ,二级区 ,三级区,四级区,五级区,六级区 from a_card a,bx_qy b where a.card not in(select 卡号 from bx_qy)
*看看要是行,
select card_no ,bill_name ,meter_addr  from a_card a where not exists (select 1 from bx_qy b where a.card_no = b.卡号
改为
select card_no ,bill_name ,meter_addr,''+space(20) as 一级区 ,''+space(20) as 二级区 ,''+space(20) as 三级区,''+space(20) as 四级区,''+space(20) as 五级区,''+space(20) as 六级区 from a_card a where not exists (select 1 from bx_qy b where a.card_no = b.卡号)
2016-06-16 13:40
taifu945
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:80
帖 子:1545
专家分:3298
注 册:2012-7-6
收藏
得分:10 
楼主,如果是FoxPro的表文件,则可以:
SELECT a_card.card_no,bill_name,meter_addr,一级区,二级区,三级区,四级区,五级区,六级区 ;
  FROM a_card, bx_qy WHERE ALLTRIM(a_card.card_no) NOT IN (SELECT DISTINCT ALLTRIM(卡号) FROM bx_qy)

但看你在顶楼的写法,貌似又不是FoxPro的本地表,像是SQL Server或是Oracle的表。那就要按这些数据库的语法规则写命令了,但格式基本上与我写的差得不会太远。

“但后面的一级区,二级区,三级区,四级区,五级区,六级区我怎么添加到表格上去”,这句话没有看懂。什么叫添加到表格里?以及添加到哪张表格里?


2016-06-16 14:20
快速回复:如何输出我需要的记录
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.067223 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved