淘先锋技术网

首页 1 2 3 4 5 6 7
mysql 查询条件,mysql联表查询格式?

联表查询一般用left join实现,比如:

select a.*,b.* from user a left join info b on a.id=b.userid;