我有一個表users
這樣如何從數據庫條件得到那裏的東西存在另一個表中的數據或不
id | name | password | email
1 saeid ***** [email protected]
我有另一個表稱爲appointments
id | created_by | due_date | notification_send
1 1 ***** 0
我想獲取users
表中的所有用戶至少在appointments
表中創建了一個約會(在約會表中以created_by
字段表示)。
我曾嘗試下面的代碼,但它失敗:
SELECT * FROM users LEFT JOIN appointments a ON persons.id = a.created_by
但很明顯,這是行不通的。