WEB开发网
开发学院数据库MySQL Mysql中左连接的使用 阅读

Mysql中左连接的使用

 2007-11-11 13:50:07 来源:WEB开发网   
核心提示:查询在一个相关的表中不存在的数据,如用户表(user)和用户资料表(user_profile),Mysql中左连接的使用,通过id关联,要查出user表中在user_profile中不存在的记录: select count(*) from?user left join?user_profile On user.id=u
查询在一个相关的表中不存在的数据,如用户表(user)和用户资料表(user_profile),通过id关联,要查出user表中在user_profile中不存在的记录:
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.level>1 or user_profile.money>10000

Tags:Mysql 中左 连接

编辑录入:coldstar [复制链接] [打 印]
赞助商链接