0
2つのクエリの和集合からテーブルを作成する必要があります。ユニオンクエリの構文テーブルの作成 - 構文エラー
このクエリは、私がそれを必要とまったく同じように動作します
#:私はエラー
CREATE TABLE portligh_lotteryTest.cTop8 (team int) AS (SELECT portligh_lotteryTest.scores.team FROM portligh_lotteryTest.scores ORDER BY portligh_lotteryTest.scores.count DESC LIMIT 5) union (SELECT portligh_lotteryTest.scores.team FROM portligh_lotteryTest.scores ORDER BY portligh_lotteryTest.scores.count ASC LIMIT 3)
エラーがあるの取得を開始作成のステートメントを追加すると
SELECT portligh_lotteryTest.scores.team FROM portligh_lotteryTest.scores ORDER BY portligh_lotteryTest.scores.count DESC LIMIT 5 union SELECT portligh_lotteryTest.scores.team FROM portligh_lotteryTest.scores ORDER BY portligh_lotteryTest.scores.count ASC LIMIT 3
1064 - SQL構文にエラーがあります。近くに使用する権利構文についてはMySQLサーバのバージョンに対応するマニュアルを確認してくださいあなたは、クエリの下に試すことができますライン1
なぜあなたはselectステートメントの周りに括弧を持っていますか?それらの必要はありません – Shadow
'uniol'はこのタイプミスですか? –
上記の両方が正しいですシャドウ私は外側の括弧を取り除きました - –