SQL标准 select table1.column,table2.column from table1 [inner | left | right | full ] join table2 on table1.column1 = table2.column2; inner join 表示内连接: left join表示左外连接: right join表示右外连接: full join表示完全外连接: on子句 用于指定连接条件. 注意: 如果使用from子句指定内.外连接,则必须要使用on子句…