Skip to content

mysql 查

仲灏2022-11-16约 1 分钟

联合查询

内联 inner join

select * from T1, T2 where T1.userid = T2.userid

select * from T1 inner join T2 on T1.userid = T2.userid