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. web服务器 - ubuntu下布置apache加wsgi加python2. dockerfile - 为什么docker容器启动不了?3. 发现了多个名称为[spring_web]的片段相对顺序不合法4. android 如何实现如图中的键盘上的公式及edittext的内容展示呢5. css3动画 - css3 animation初始动画卡顿是怎么回事?6. CSS3的渐变属性的疑惑7. python - pip install出现下面图中的报错 什么原因?8. python - 怎么通过vpn连内网ftp?9. python - Flask写的注册页面,当注册时,如果填写数据库里有的相同数据,就报错10. python - 用ffmpeg采集视频,用terminate没法结束进程

网公网安备