0
我有一個這樣的數據庫:SELECT * FROM表1 LEFT JOIN table1.value AS表2
表1:
- ID
- id_item
- 表(枚舉: '表2',」表3' , '表4')
表2:
- ID
- 值
表3:
- ID
- 值
表4: [...]
,我想運行一個像這樣的查詢:
SELECT t1.id, t2.value FROM table1 AS t1
LEFT JOIN table1.table as t2 ON t1.id_item=t2.id
這可能嗎?或者我必須選擇第一個table1並在值之後? (對不起,因爲我不好:))
如果要運行此查詢,爲什麼不直接運行它? – Alexander
先試一下,然後告訴我們問題 –