1
を結合して属性を取得します。SQL:これは私のデータベーススキーマである3つのテーブル
私は単に患者のすべての予定を選択し、次の結果セットを取得したい:
を私は次のように参加しようとしている」:
SELECT [User].user_id,name, surname, [Appointment].day,[Appointment].month,[Appointment].year,[Appointment].hour,[Appointment].minutes
FROM [User]
LEFT JOIN [Doctor] ON [Doctor].user_id = [User].user_id
LEFT JOIN [Patient] ON [Patient].user_id = [User].user_id
LEFT JOIN [Appointment] ON [Doctor].doctor_id = [Appointment].doctor_id and [Patient].patient_id = [Appointment].patient_id
しかし、私は希望の出力を得ていませんでした!