发布网友 发布时间:2024-10-24 16:24
共3个回答
热心网友 时间:2024-11-02 02:22
select table1.id,table1.title,table1.content ,table1.s_time from table1
union select table2.id , table2.title_a , table2.content ,table2.time
from table2
union select table3.id , table3.title , table3.content ,table3.time from table3
order by s_time
肯定正确啦^_^
热心网友 时间:2024-11-02 02:22
将3个表连起来,用select ...
where table1.id=table2.id=table3.id;
热心网友 时间:2024-11-02 02:23
三个表之间有关联吗,有关联的话可以采纳楼上的写法