結合ステートメントを使用する場合、1 つのテーブルに対してのみ select * を使用することは可能ですか?
これらが次のテーブルであるとしましょう。
B
userID
username
A
userID
entry
....just pretend there are more columns for the sake of this example
テーブル B からユーザー名を検索する正しい方法は何ですか?
select B.username, * from A
LEFT JOIN B on B.userID = A.userID
where A.entry = "XXXXX"
または、次のように選択したいものをすべてリストする必要がありますか?
select B.username, A.userID, A.entry from A
left Join.....