在 MySQL 中先前查询的结果中进行查询
如何在来自先前 MySQL 查询的结果中进行查询?
如果可以的话,我想避免嵌套 SELECT,但这只是出于个人喜好。
How do I query within the results that have come from a previous MySQL query?
I want to avoid nested SELECTs if I can, but only out of personal preference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将第一个查询的结果存储在临时表中,从中查询,然后删除临时表。
Store the result of the first query in a temporary table, query from that, then drop the temp table.