基本上,我有兩個表:用戶和user_connections如何在Bookshelf.js中執行多連接查詢?
User
:
id | email
1 | [email protected]
2 | [email protected]
user_connections
:
user_id | key
1 | test1
1 | test2
2 | test3
基本上,我需要建立一個查詢,鑑於電子郵件,拉動與該電子郵件ID相關聯的連接列表。
我已經有User
定義並指向User
表。我將如何獲得所需的結果?
編輯:這裏是理想的結果:
如果我GET
與1
的ID,那麼我應該得到以下返回(在JSON):
{
{
user_id: 1,
key: test1
},
{
user_id: 2,
key: test2
}
}
顯示你想要的結果 – Sachu
我編輯了這個問題來證明這一點。 – DemCodeLines
使用加入和在查詢方法 – vbranden