在执行插入语句时,出现了如下错误
FAILED: ODPS-0130071:[12,1] Semantic analysis exception - column view_count in source has incompatible type BIGINT with destination column view_count, which has type INT
可以看出是由于数据类型导致的,这里count之后数据类型为bigint
查看我们的建表时数据类型为int
有两种解决方案,一种是重新建表,数据类型为bigint
另一种是用cast进行数据类型的转换