dougai3418 2018-10-25 01:13
浏览 70

结合简单,近乎相同的选择语句

One of the parameters my PHP page accepts is a user-search query. The application then takes that query and performs >100 separate SELECT statements that look exactly like the following:

SELECT * FROM table1 WHERE user = 'query';
SELECT * FROM table2 WHERE user = 'query';
SELECT * FROM table3 WHERE user = 'query';
SELECT * FROM table4 WHERE user = 'query';
...etc...

Is there a faster/more efficient way to do what I'm trying to do? E.g. by combining all of the select statements into one statement somehow? I feel like having 100 individual queries going to my database would be slower than one large query. I do not know how to combine them though, please help me.

  • 写回答

2条回答 默认 最新

  • dongtigai3875 2018-10-25 01:19
    关注

    You can use the union all operator to combine these queries:

    SELECT * FROM table1 WHERE user = 'query'
    UNION ALL
    SELECT * FROM table2 WHERE user = 'query'
    UNION ALL
    SELECT * FROM table3 WHERE user = 'query'
    -- Etc...
    

    That being said, you may want to reconsider your database design. If you always query these tables together, perhaps all the data should be added to one table.

    评论

报告相同问题?

悬赏问题

  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 unity第一人称射击小游戏,有demo,在原脚本的基础上进行修改以达到要求
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line