create table ApplicationTracker_dup1
select transactionid,
count(case when attribute = 'Secci_Page_Arrival_Time' and value is not null then transactionid end)as secci_visits,
count(case when attribute = 'esign_arrival_time' and value is not null then transactionid end)as esig_visits
from ApplicationTracker_dup
where create_dtm < '2013-08-13'
group by 1;
当我运行这段代码时,我遇到
错误 1292 (22007):截断不正确的整数值:'E031CF1DE8F7'"
并且没有创建表。有人可以在这里帮助我吗?