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): 誤った INTEGER 値が切り捨てられました: 'E031CF1DE8F7'"
テーブルは作成されていません。誰かがここで私を助けることができますか?