0
這是這些查詢中的myquery,我使用inner join從4個表中獲取結果。它返回從4個表中匹配的所有記錄。 但我想也得到那些在fl_customer_profile表和fl_users表中匹配的reords。並且還得到那些id在4個表中匹配的記錄。sql內部連接查詢
SELECT u.*,c.*,s.*,p.*
FROM fl_users u
INNER JOIN fl_customer_profile c
on u.id = c.userID
INNER JOIN fl_customer_subscription s
on u.id = s.userid
INNER JOIN fl_subscription p
on s.planId = p.id
fl_users表
ID
| 879 |
| 884 |
fl_customer_profile表
userID
| 879 |
| 884 |
請粘貼表 – iamsankalp89