我的数据库中有7个表。 我希望从表格中获取20个最新插入的数据。 这些表都是这样构建的:
id Link date
========-----========----==============
integer String Timestamp
答案 0 :(得分:1)
select * from
(
Select date from table
union all
select date from table2
) as t
order by t.date desc
limit 20