我已经阅读了MySQL 5中的61 table join limit,但我不确定它将如何适用于以下内容:
SELECT * FROM (
SELECT * FROM tableA JOIN // Lots of other joins here...
UNION
SELECT * FROM tableB JOIN // Lots of other joins here...
UNION
SELECT * FROM tableC JOIN // Lots of other joins here...
// etc...
)
最佳答案
原文链接:https://www.f2er.com/mysql/434117.html