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语句是什么意思?






评论(0)

推荐帖子
1条评论
0条评论