我需要查询此方案,我在三个或四个表中 date_updated 具有相同的列名我需要从3个表中检索更新的表昨天或今天。 简单地说,如果我运行此查询,则需要检索昨天或今天更新的所有行以及所有表中的更新日期。
请告诉我这样做的方法。
答案 0 :(得分:0)
假设您有4个表使用union all
(select * from table a where date_updated=?)
union all
(select * from table b where date_updated=?)
union all
(select * from table c where date_updated=?)
union all
(select * from table d where date_updated=?)