如何合并多个查询为一个查询?

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个查询?

阅读 6.1k
2 个回答
sqlselect * from table_a where field_a = 1 LIMIT 0, 3
union
select * from table_a where field_a = 2 LIMIT 0, 3
union
select * from table_a where field_a = 3 LIMIT 0, 3;

SELECT * FROM table_a WHERE field_a IN (1, 2, 3)

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进