Mysql中左连接的使用
Mysql中左连接的使用,Mysql中左连接的使用
select count(*) from?user left join?user_profile On user.id=user_profile.id where user_profile.id is null
复杂条件:
select count(*) from?user left join?user_profile On user.id=user_profile.id where user.level1 or user_profile.money10000