try:select * from A where A.a=B.c:)

解决方案 »

  1.   

    这是SQL语言所完成的功能,建议你详细学习SQL语言
      

  2.   

    select A.*,B.* from A,B where A.a=B.c
      

  3.   

    selet * from B where c in (select a from A where e='123')
      

  4.   

    Sorry:select A.* from A,B where A.a=B.c:)
      

  5.   

    select * from b
    inner join c
    on b.[*] = c.[*]
    inner join a
    on a.[*] = c.[*]
    where a.[*] = [****]
      

  6.   

    你可以利用外连接的left join or rightgoin就可以了啊