使用mysql在每个条件上选择唯一表

时间:2015-11-28 15:01:14

标签: mysql

大家好,感谢你真正努力传播知识。 我面临的问题是,我不知道如何在一个查询中从不同的表中进行选择。  例如:

select * 
from google if('some condition is true')
OR

from yahoo if('other condition is true')

1 个答案:

答案 0 :(得分:0)

根据您的要求

IF ('some condition is true') THEN
   SELECT * FROM google;
ELSE
   SELECT * FROM yahoo;
END IF;