我想要使用2個表中的字段進行查詢。 我需要查詢Table1,但只有Table2具有我需要查詢的變量venue_location。來自另一個表的PHP SQL查詢字段加入
基本上我需要計算Table1的所有記錄,其中Table1.venue_location = $ MyVariable。
這是我放在一起,但我相信我需要使用連接爲此?
Table1
- venue_id
Table2
- venue_id,
- venue_location
SELECT * FROM Table1 WHERE table1.venue_id = table2.venue_id and table2.location = '$MyVariable'
如何爲此查詢?