當前位置:成語大全網 - 書法字典 - mysql select語句的where條件能否繼續嵌套select?

mysql select語句的where條件能否繼續嵌套select?

首先,很明顯您可以在where中繼續使用select,但是您需要使用括號,例如

Select ID,Name from tab 1其中ID =(Select ID from tab 2其中Name =“Apple”)

此外,在這種情況下,表關聯可用於編寫不帶子查詢的sql,例如

從表1 a,表2b中選擇a.id,a.name其中a.id = b.id,b . name =“Apple”