A 表
user_id phone
1 1
2 2
B表
user_id mail
1 1
想连表得到C,没有找到相同user_id的默认为0
C表
user_id phone mail
1 1 1
2 2 0
mysql语句怎么写?
ringa_lee2017-04-17 13:56:19
选择 A.user_id 作为 user_id,A.phone 作为电话,合并(B.mail,0) 作为邮件
从 A left join B on A.user_id=B.user_id