我正在尝试在视图中将两个表连接在一起。我的第一个表合并了两个表,但现在我正在尝试将该表连接到第二个表。我试图使用连接来确保包含用户执行的角色的第二个表与第一个表匹配,但如果第二个表中没有记录,我仍然希望表1中的所有记录。我知道我的解释有点困惑,所以我的代码如下:
CREATE VIEW `data` AS SELECT
`information`.`username`, `information`.`department`,
`information`.`company`, `information`.`title`,
`information`.`internal_number` AS `user_internal_phone`,
`information`.`external_number`AS `user_external_phone`,
`information`.`mail`, `information`.`cn` AS `name`, `information`.`hours`,
`information`.`languages`, `information`.`functions`,
`information`.`service` AS `contact_point_name_one`,
`information`.`subservice` AS `contact_point_name_two`,
`information`.`internal_phone` AS `contact_internal_phone`,
`information`.`external_phone` AS `contact_external_phone`,
`information`.`keywords`, `information`.`description`,
`information`.`provided_by`, `information`.`id`,
GROUP_CONCAT(`staff_roles`.`role` SEPARATOR ', ') AS `roles`,
`staff_roles`.`user`
FROM `information`
CROSS JOIN `staff_roles` ON `information`.`username` = `staff_roles`.`user`;
当我进行外连接和交叉连接时我得到一个错误,并且内部连接都返回两个表中都有一行的行但我希望它显示第二个表中没有任何内容的行。使用连接的目的是,如果匹配,表2中的行应该与表1上的行匹配
答案 0 :(得分:2)
使用LEFT JOIN
。 LEFT JOIN关键字返回左表(table1)中的所有行,右表(table2)中的匹配行。没有匹配时,右侧的结果为NULL。
只需将CROSS JOIN
替换为LEFT JOIN
答案 1 :(得分:0)
只需使用LEFT JOIN而不是CROSS JOIN:
CREATE VIEW `data` AS SELECT
...
FROM `information`
LEFT JOIN `staff_roles` ON `information`.`username` = `staff_roles`.`user`;
请查看http://www.w3schools.com/sql/sql_join_left.asp以获取有关LEFT JOIN的详细信息。