回复 楼主 jinanshui
你语句错误
1.用 Where 关联时,要求2个表都要在 from 后面,如
select t1.* from 校对分析表新 as t1,gaoxiao表 as t2 where t1.学校代码=t2.学校代码 and t1.学校性质=t2.学校性质
2.用 LEFT JOIN 关联
select t1.* from 校对分析表新 as t1;
left join gaoxiao表 as t2 on t1.学校代码=t2.学校代码 and t1.学校性质=t2.学校性质