[原创]求教一个SYBASE查询问题
求教一个SYBASE查询问题<br/>我在两个数据库中使用同样的查询语句(数据相同),A有结果,B没有结果<br/> select a.*,b.* from atable a,btable b,ctable c where a.id = b.id<br/>B的查询语句需要改为<br/> select a.*,b.* from atable a,btable b where a.id = b.id<br/>才可以有结果,这是什么原因造成的?<br/> <p></p><p>在B数据库里<br/>select a.* ,b.* from csr_notice a,csr_noticereader b,csr_note c where a.noticecode = b.noticecode<br/>和<br/>select a.*,b.* from csr_telrecord a,csr_eventprocess b,csr_eventvisit c where a.taskid = b.taskid<br/>两个查询。。第一有记录,第二没记录。。把第二改为<br/>select a.*,b.* from csr_telrecord a,csr_eventprocess b where a.taskid = b.taskid<br/>OK..有记录。。。难道就在一个csr_eventvisit c<br/>的问题吗=+=。。求解。。。</p> 我现在在又查了一会~发现如果C表是空记录~那么查询到结果一定是空的~而C表有记录的情况下,就可以查到结果集。。。<br/>谁可以解释下这个现象。。。 <p>没研究过,不过最好查询根据需要来,无关的表不要关联才行。</p>
页:
[1]