在网上看到很多答案说是因为引号或者拼接字符串方式不对,但是我的语句真的没有用到这些,所以我只能另找方法,终于发现是因为字段类型不匹配造成的。
语句如下:
update adidas_tmp_mongo_result_hype a
inner join adidas_hype_2020_dim b
on a.brand_ids=b.column_id
set a.brand_ids=b.column_name
where b.column_type = 'brand_ids' ;
其中brand_ids这个字段是varchar类型,column_id是int,用select查询的时候没有任何问题,但是在upodate语句中当做匹配条件的时候就会出错,所以最终的解决办法是手动把int的类型转换成varchar,成功!