- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在开发一个用于评论电影的数据库,并尝试完成一个 LEFT OUTER JOIN,查询结果以 NULL 值结尾,其中某些电影没有被某些评论家评论。我必须使用交叉连接才能将行相乘,但是,我应该从 LEFT OUTER JOIN 本身获得结果。
mysql> select *
-> from F;
+------------+--------------------------------+-------------+---------------- -----+-----------+
| FilmNumber | FilmName | OpeningDate | TopBilledActor | Genre |
+------------+--------------------------------+-------------+---------------- -----+-----------+
| F1 | Transformers: The Last Knight | 6/21/2017 | Mark Wahlberg | Action |
| F2 | Cars 3 | 6/16/2017 | Owen Wilson | Animation |
| F3 | Wonder Woman | 6/2/2017 | Gal Gadot | Action |
| F4 | All Eyez on Me | 6/16/2017 | Demetrius Shipp Jr. | Biography |
| F5 | The Mummy | 6/9/2017 | Tom Cruise | Action |
| F6 | Rough Night | 6/16/2017 | Scarlett Johansson | Comedy |
| F7 | Guardians of the Galaxy Vol. 2 | 5/5/2017 | Chris Pratt | Action |
| F8 | Men Tell No Tales | 5/26/2017 | Johnny Depp | Action |
| F9 | 47 Meters Down | 6/16/2017 | Mandy Moore | Adventure |
| F10 | Captain Underpants | 6/2/2017 | Kevin Hart | Animation |
+------------+--------------------------------+-------------+---------------- -----+-----------+
10 rows in set (0.00 sec)
mysql> select *
-> from C;
+------------------+----------------------+-----------------+
| CriticSiteNumber | CriticSiteName | CriticName |
+------------------+----------------------+-----------------+
| C1 | The New York Times | Neil Genzlinger |
| C2 | Variety | Owen Gleiberman |
| C3 | Variety | Andrew Barker |
| C4 | IndieWire | Judy Dry |
| C5 | IndieWire | Eric Kohn |
| C6 | Paste Magazine | Tim Grierson |
| C7 | We Got This Covered | Matt Donato |
| C8 | Entertainment Weekly | Chris Nashawty |
+------------------+----------------------+-----------------+
8 rows in set (0.00 sec)
mysql> select *
-> from FC;
+------------+------------------+--------------+
| FilmNumber | CriticSiteNumber | OverallScore |
+------------+------------------+--------------+
| F1 | C1 | 50 |
| F1 | C2 | 60 |
| F1 | C5 | 50 |
| F1 | C6 | 20 |
| F1 | C7 | 40 |
| F1 | C8 | 58 |
| F2 | C1 | 80 |
| F2 | C2 | 70 |
| F2 | C5 | 83 |
| F2 | C6 | 50 |
| F2 | C7 | 60 |
| F3 | C1 | 80 |
| F3 | C2 | 82 |
| F3 | C3 | 78 |
| F3 | C4 | 72 |
| F3 | C6 | 81 |
| F3 | C8 | 85 |
| F4 | C1 | 20 |
| F4 | C2 | 60 |
| F4 | C4 | 58 |
| F4 | C6 | 42 |
| F5 | C2 | 50 |
| F5 | C4 | 16 |
| F5 | C6 | 52 |
| F5 | C7 | 30 |
| F5 | C8 | 67 |
| F6 | C1 | 40 |
| F6 | C2 | 70 |
| F6 | C3 | 65 |
| F6 | C5 | 83 |
| F6 | C6 | 43 |
| F6 | C7 | 70 |
| F6 | C8 | 58 |
| F7 | C2 | 70 |
| F7 | C5 | 67 |
| F7 | C6 | 80 |
| F7 | C7 | 80 |
| F7 | C8 | 67 |
| F8 | C3 | 38 |
| F8 | C4 | 51 |
| F8 | C6 | 22 |
| F8 | C7 | 58 |
| F8 | C8 | 45 |
| F9 | C1 | 55 |
| F9 | C2 | 44 |
| F9 | C4 | 50 |
| F9 | C6 | 70 |
| F9 | C7 | 60 |
| F9 | C8 | 67 |
| F10 | C1 | 69 |
| F10 | C2 | 60 |
| F10 | C4 | 55 |
| F10 | C7 | 70 |
| F10 | C8 | 83 |
+------------+------------------+--------------+
54 rows in set (0.00 sec)
mysql>
由于这些是我的表格,您会注意到,在很多情况下,某些评论家没有给电影打分,但是当我执行 LEFT OUTER JOIN 时,如我的教授所示,这些是我的结果:
我试图获得的结果是在总体得分列中,每个实例都有一个 NULL 值,没有由某个评论家进行评论。换句话说,我希望查看总共 80 行(10 部电影,8 评论家),而不必在查询中使用 CROSS JOIN 或 NULL。
mysql> select F.FilmName, FC.CriticSiteNumber, FC.OverallScore
-> from F LEFT OUTER JOIN FC
-> on F.FilmNumber=FC.FilmNumber
-> order by FilmName;
+--------------------------------+------------------+--------------+
| FilmName | CriticSiteNumber | OverallScore |
+--------------------------------+------------------+--------------+
| 47 Meters Down | C1 | 55 |
| 47 Meters Down | C2 | 44 |
| 47 Meters Down | C4 | 50 |
| 47 Meters Down | C6 | 70 |
| 47 Meters Down | C7 | 60 |
| 47 Meters Down | C8 | 67 |
| All Eyez on Me | C1 | 20 |
| All Eyez on Me | C2 | 60 |
| All Eyez on Me | C4 | 58 |
| All Eyez on Me | C6 | 42 |
| Captain Underpants | C1 | 69 |
| Captain Underpants | C2 | 60 |
| Captain Underpants | C4 | 55 |
| Captain Underpants | C7 | 70 |
| Captain Underpants | C8 | 83 |
| Cars 3 | C1 | 80 |
| Cars 3 | C2 | 70 |
| Cars 3 | C5 | 83 |
| Cars 3 | C6 | 50 |
| Cars 3 | C7 | 60 |
| Guardians of the Galaxy Vol. 2 | C2 | 70 |
| Guardians of the Galaxy Vol. 2 | C5 | 67 |
| Guardians of the Galaxy Vol. 2 | C6 | 80 |
| Guardians of the Galaxy Vol. 2 | C7 | 80 |
| Guardians of the Galaxy Vol. 2 | C8 | 67 |
| Men Tell No Tales | C3 | 38 |
| Men Tell No Tales | C4 | 51 |
| Men Tell No Tales | C6 | 22 |
| Men Tell No Tales | C7 | 58 |
| Men Tell No Tales | C8 | 45 |
| Rough Night | C1 | 40 |
| Rough Night | C2 | 70 |
| Rough Night | C3 | 65 |
| Rough Night | C5 | 83 |
| Rough Night | C6 | 43 |
| Rough Night | C7 | 70 |
| Rough Night | C8 | 58 |
| The Mummy | C2 | 50 |
| The Mummy | C4 | 16 |
| The Mummy | C6 | 52 |
| The Mummy | C7 | 30 |
| The Mummy | C8 | 67 |
| Transformers: The Last Knight | C1 | 50 |
| Transformers: The Last Knight | C2 | 60 |
| Transformers: The Last Knight | C5 | 50 |
| Transformers: The Last Knight | C6 | 20 |
| Transformers: The Last Knight | C7 | 40 |
| Transformers: The Last Knight | C8 | 58 |
| Wonder Woman | C1 | 80 |
| Wonder Woman | C2 | 82 |
| Wonder Woman | C3 | 78 |
| Wonder Woman | C4 | 72 |
| Wonder Woman | C6 | 81 |
| Wonder Woman | C8 | 85 |
+--------------------------------+------------------+--------------+
54 rows in set (0.00 sec)
最佳答案
问题似乎是您的查询中没有包含 C 表。因此,查询不会提取任何 NULL
值,因为您只是将 F 表连接到 FC 表上。基本上,引擎不知道您想要在结果中包含所有批评者。试试这个:
mysql> select F.FilmName, C.CriticSiteNumber, FC.OverallScore
-> from F LEFT OUTER JOIN FC
-> on F.FilmNumber=FC.FilmNumber
-> LEFT OUTER JOIN C
-> ON C.CriticSiteNumber = FC.CriticSiteNumber
-> order by FilmName;
关于mysql - ER 模型在 MySQL 中不使用 LEFT OUTER JOIN 生成 NULL 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46959694/
我正在测试设置SQLAlchemy以映射现有数据库。这个数据库是很久以前自动建立的,它是由我们不再使用的先前的第三方应用程序创建的,因此 undefined 某些预期的事情,例如外键约束。该软件将管理
这个问题在这里已经有了答案: What is the difference between "INNER JOIN" and "OUTER JOIN"? (28 个答案) 关闭 7 年前。 INNE
这个问题在这里已经有了答案: What is the difference between "INNER JOIN" and "OUTER JOIN"? (29 个回答) 关闭7年前. INNER J
假设有两个表: table1.c1 table1.c2 1 1 A 2 1 B 3 1 C 4 2
假设有两个表: table1.c1 table1.c2 1 1 A 2 1 B 3 1 C 4 2
一.先看一些最简单的例子 例子 Table A aid adate 1 a1 2&nb
数据库操作语句 7. 外连接——交叉查询 7.1 查询 7.2 等值连接 7.3 右外
我有两个表 'users' 和 'lms_users' class LmsUser belongs_to :user end class User has_one :lms_user
我试图避免在 Rails 中对我的 joins 进行字符串插值,因为我注意到将查询器链接在一起时灵活性会降低。 也就是说,我觉得 joins(:table1) 比 joins('inner join
我有这个代码 User.find(:all, :limit => 10, :joins => :user_points, :select => "users.*, co
我刚刚开始探索 Symfony2,我很惊讶它拥有如此多的强大功能。我开始做博客教程在: http://tutorial.symblog.co.uk/ 但使用的是 2.1 版而不是 2.0 我的问题是我
什么是 SQL JOIN什么是不同的类型? 最佳答案 插图来自 W3schools : 关于SQL JOIN 和不同类型的 JOIN,我们在Stack Overflow上找到一个类似的问题: http
我有两个 Hive 表,我正在尝试加入它们。这些表没有被任何字段聚集或分区。尽管表包含公共(public)键字段的记录,但连接查询始终返回 0 条记录。所有数据类型都是“字符串”数据类型。 连接查询很
我正在使用 Solr 的(4.0.0-beta)连接功能来查询包含具有父/子关系的文档的索引。连接查询效果很好,但我只能在搜索结果中获得父文档。我相信这是预期的行为。 但是,是否有可能在搜索结果中同时
我正在使用可用的指南/api/书籍自学 Rails,但我无法理解通过三种方式/嵌套 has_many :through 关联进行的连接。 我有用户与组相关联:通过成员(member)资格。 我在多对多
什么是 SQL JOIN,有哪些不同的类型? 最佳答案 插图来自 W3schools : 关于SQL JOIN 和不同类型的 JOIN,我们在Stack Overflow上找到一个类似的问题: htt
我正在尝试访问数据库的两个表。在商店里,我保留了一个事件列表,其中包含 Table Event id, name,datei,houri, dateF,Hourf ,capacity, age ,de
我有 4 个表:booking、address、search_address 和 search_address_log 表:(相关列) 预订:(pickup_address_id, dropoff_a
我在YML中有以下结构:。我正试着创造一个这样的结构:。作业名称和脚本用~分隔,作业用;分隔。。我可以使用以下命令使其正常工作。然而,我想知道是否可以用一个yq表达式来完成,而不是通过管道再次使用yq
我在YML中有以下结构:。我正试着创造一个这样的结构:。作业名称和脚本用~分隔,作业用;分隔。。我可以使用以下命令使其正常工作。然而,我想知道是否可以用一个yq表达式来完成,而不是通过管道再次使用yq
我是一名优秀的程序员,十分优秀!