次のMYSQLクエリを1つ書くにはどうすればよいですか
私は3つのテーブルを持っています
user_id
ログインしているのが25であることを知っています
Users(id,first_name,last_name)
、
userproduducts(user_id,product_id)
、
Product(id,title,description,price)
userproducts
多対多の解決済みテーブルです
ユーザーの を取得しfirst_name
、userproducts テーブルの product テーブルのすべてを取得するクエリを作成するにはどうすればよいですか??last_name
id=25
user_id = 25
ありがとうございました