mysql - SQL查询问题
问题描述
表A 表Buser_id name id user_id sorce 1张三 1 1 78 2李四 2 2 3王五 3 5 80 想要查询表A中 没有分数或者表B中没有分数记录的,sql如何写?select A.user_idid A.name FROM A LEFI JOIN BON A.user_id=B.user_id WHERE B.sorce=’’;这个SQL不知道对不对?1.表A中的user_id=3的王五,但王五的记录在B表中没有,我用左链接查询出来2.sorce =’’解决分数为空 查询出来
问题解答
回答1:不太同意一楼的sql语句,第一是因为子查询,第二好像没有检索出没有分数记录的。
SELECT * FROM product.a left join product.b on aid=aid2 where b.aid2 is null or sc is null;
这是我自己本地测试的,用的是mysql,但是其实都差不多。先用表连接把两个表按照规定的id链接在一起,aid对应是你a表里的userid,aid2对应是你b表的userid,然后最后上图。图一是我的sql语句的结果,图二是我的a表,图三是我的b表。
这也只是解决的一种方式,我也不是很擅长后台数据库~~希望对你有帮助,也希望有更好的解决方案。因为我没有考虑性能问题。
回答2:select * from 表A where user_id not in (select user_id from 表B where score >=0 )回答3:
select user_id, namefrom table_a where user_id not in (select user_id from table_b)union allselect b.user_id, a.namefrom table_b binner join table_a a on a.user_id = b.user_idwhere b.sorce=’’
有时候判断条件语句过于复杂可以使用union all将各个条件结果连接在一起.
相关文章:
1. javascript - 我写的href跳转地址不是百度,为什么在有的机型上跳转到百度了,有的机型跳转正确2. node.js - 微信的自动回复问题3. python - Scrapy中xpath用到中文报错4. 微信小程序如何将获取的时间戳提交到数据库?5. python - 如何给模块传参数,参数是模块的函数名?6. node.js - nodejs中mysql子查询返回多行结果怎么处理?7. mysql - 为什么innodb下更新A行时B行也被锁住?8. 请问python中为什么我用for循环对嵌套列表进行赋值时,都是以i的最终值来计算的?9. linux - python编译ssl错误10. mysql - spring data jpa 方法sql复杂查询?