from table1 t1,table2 t2,table3,t3
where t1.id=t2.id and t1.id=t3.id
limit 1,3
就是这个样子了,mysql的分页最好写了
select * from table1 union all select * from table2,union all 是所有的都显示出来,union 是只显示不重复的,如果两个表的字段部分相同,把查询的字段写出来亦可欢迎分享,转载请注明来源:内存溢出
from table1 t1,table2 t2,table3,t3
where t1.id=t2.id and t1.id=t3.id
limit 1,3
就是这个样子了,mysql的分页最好写了
select * from table1 union all select * from table2,union all 是所有的都显示出来,union 是只显示不重复的,如果两个表的字段部分相同,把查询的字段写出来亦可欢迎分享,转载请注明来源:内存溢出
评论列表(0条)