以下的SQL 语句就是两张表的连接:
select * from 表1名 inner join 表2名 on 主键 = 外键
代码:
select * from user inner join content on user.id = content.id
以下的SQL 语句就是两张表的连接:
select * from 表1名 inner join 表2名 on 主键 = 外键
代码:
select * from user inner join content on user.id = content.id