我試圖在一個數據庫UNION
從3個表中的記錄選擇,但我有錯誤:從多個表與UNION
#1248
- Every derived table must have its own alias
這是我想查詢:
SELECT * from
(SELECT column1, 'table1' from table1
UNION
SELECT column1, 'table2' from table2
UNION
SELECT column1, 'table3' from table3)
WHERE column1 not like 'abr%' and length(column1) < 8;
究竟是什麼意思,錯誤以及如何修復它並顯示正確的結果?
添加別名'表1' 作爲t'和派生表 '像'table1''')。 –