1.什么是子查询.表关联查询: 子查询:是指在主sql语句中的select或where子句中使用select查询语句:select a.name,(select b.name from b where b.id=a.id) from a where a.name lik 'a%' 表关联查询:指多个表联合查询.select a.name,b.name from a,b where a.id=b.id and a.name like 'a%'; 尽管联合查询性能并不佳.可是和 MySQL 的子查询…