什么意思啊
是要把三个表的东西并在一个结果里面?????
那用union

解决方案 »

  1.   

    如果三个表中你想提取的字段数是一样的话,而又有关联的话,可以这样
      select ...需要提出的字段 from table1,talbe2,table3 where 表的关联语句如table1.id=table2.id and yenno='是'
      

  2.   

    用union 了.不过要看你的版本
      

  3.   

    用 union 或者 临时表
      

  4.   


    select ....需要提出的字段 from table1 as a,table2 as b,table3 as c where a.id=b.id and c.id in('是')order by id desc
      

  5.   

    union all!
    结构相同的话 还可以用merge;