我使用以下查询,它工作正常,但我怀疑我们为什么在此使用“ON”
select * from test_table
left outer join test_table_1 on test_table.id = test_table_1.ref_id
我使用以下查询,它工作正常,但我怀疑我们为什么在此使用“ON”
select * from test_table
left outer join test_table_1 on test_table.id = test_table_1.ref_id
毫无疑问,'on' 是用来表达连接谓词的语法。
ON
子句描述这两个表之间的关系。这是连接的基础(您要在哪个字段上连接表。)
有关更多信息,请参阅MySQLJOIN
语法。