如何多表查询数据
发布网友
发布时间:2022-09-30 23:03
我来回答
共1个回答
热心网友
时间:2024-11-24 03:12
(select * from mane_2011 where data >= 2012.5.12 and data <= 2014.6.1)
union
(select * from mane_2012 where data >= 2012.5.12 and data <= 2014.6.1)
union
(select * from mane_2013 where data >= 2012.5.12 and data <= 2014.6.1)
union
(select * from mane_2014 where data >= 2012.5.12 and data <= 2014.6.1)追问查询结果放在一个datetable中吗
追答
这是我用MYsql写的简单的数据库建立和查询
你可以试一下