我正在使用MySQL數據庫。我想結合三個選擇查詢,以「提高性能」。下面的每個選擇取決於先前檢索的ID。合併選擇查詢
到目前爲止,我已經試過以下...
# multiple select from tables
select user.name, group.ID
from user as u, group as g
where u.name = <name_here>
# inner join...
select user.ID, group.ID,
from user
inner join group
on user.ID = group.ID
我需要選擇基於用戶名PARAM的user.name和group.ID。有沒有辦法在單個語句中查詢這些數據?
我剛剛更新爲清晰起見。 –