left join 左连接,左表所有数据 拼接 右表符合on条件的数据。on后用and连接,都作为on条件,左边表的数据会全部返回,右表中的数据不匹配返回为空
因为是左连接,所以左边的数据是一定要满足的
建表语句
--建表语句 create table student_memo( id varchar2(32) not null, content varchar2(255) not null ) --建表语句 create table teacher_memo( id varchar2(32) not null, content varchar2(255) not null )
相关sql
insert into student_memo (id,content) values ('1','爱思') insert into student_memo (id,content) values ('2','爱思1') insert into teacher_memo (id,content) values ('1','aa'); insert into teacher_memo (id,content) values ('2','爱思1');
标签:memo,简单,连接,content,使用,into,null,id From: https://www.cnblogs.com/q202105271618/p/17069656.html