解决方案 »

  1.   

    select 1 from 表A where id =1 
    union all
    select 1 from 表B where createid = 1;
      

  2.   

       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://bbs.csdn.net/topics/320211382
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。
      

  3.   

    select * from 表A where id =1 and id =
    (select createid from 表B where createid = 1);
      

  4.   

    你的要求是不是显示A表的数据,如果在B中不存在也要显示,要提示不存,是这样嘛
    select a.id.a.name,ifnull(b.createid,'不存在'),ifnull(b.createtime,'不存在')
     from A left join B  on A.id=b.createid