个性化阅读
专注于IT技术分析

MariaDB左外连接

MariaDB LEFT OUTER JOIN用于返回在ON条件中指定的左侧表中的所有行, 并且仅返回满足连接条件的其他表中的所有行。

LEFT OUTER JOIN也称为LEFT JOIN。

句法:

SELECT columns
FROM table1
LEFT [OUTER] JOIN table2
ON table1.column = table2.column;

图像表示:

MariaDB左外联接1

例:

SELECT Students.student_id, Students.student_name, Students.student_address, Employee2.salary, Employee2.emp_address
FROM Students 
LEFT JOIN Employee2
ON Students.student_id = Employee2.emp_id;

输出

MariaDB左外连接2
赞(1)
未经允许不得转载:srcmini » MariaDB左外连接

评论 抢沙发

评论前必须登录!