求查询-在线等
表1 列 code ,name ,cerl
表2 列 code ,bmound ,flag
结果
cerl bmound flag
表1,2 的code 都不是唯一值
相当于表2的所有值都查出来,通过code 把表1的cerl对应增加在表新列2上。
------解决方案--------------------select bmound,flag,cerl
from 表2
left join 表1
on 表2.code = 表1.code
------解决方案--------------------select b.*,a.cerl
from
(select * from 表2 group by code,bmound,flag) as b --避免多对多
left join 表1 as a
on b.code=a.code