热线电话:13121318867

登录
2020-12-25 阅读量: 938
关于MYSQL反连接

-- mysql实现左反连接的方法
-- select * from t1 left join t2 on t1.key1=t2.key2
-- where t2.key2 is null;

-- mysql实现右反连接的方法
-- select * from t1 right join t2 on t1.key1=t2.key2
-- where t1.key1 is null;

where语句是什么意思?

83.1879
0
关注作者
收藏
评论(0)

发表评论
推荐帖子