Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mysql の派生テーブルで自己結合 SQL ステートメントを実行する必要があります。派生テーブルには毛むくじゃらのサブクエリが含まれており、実際にそれを 2 回記述して実行する以外に何か方法はないかと考えています。
SELECT a.* FROM (my hairy subquery) AS a LEFT JOIN (my hairy subquery) AS a2 ON a.groupname = a2.groupname etc..
これに対する標準的な解決策は CTE を使用することですが、これらは MySQL ではまだサポートされていません。代替手段は次のとおりです。
関連している