select * from table_a where field_a = 1 LIMIT 0, 3;
select * from table_a where field_a = 2 LIMIT 0, 3;
select * from table_a where field_a = 3 LIMIT 0, 3;
如何合并以上3个SQL查询为1个查询?
select * from table_a where field_a = 1 LIMIT 0, 3;
select * from table_a where field_a = 2 LIMIT 0, 3;
select * from table_a where field_a = 3 LIMIT 0, 3;
如何合并以上3个SQL查询为1个查询?
1 回答2.5k 阅读✓ 已解决
1 回答2.4k 阅读✓ 已解决
450 阅读