1

我在一个临时表中有一个 150 万条记录的 mysql 表,我想通过内部连接将它插入到主表中。

我的代码有效,但它在 103,613 条记录处停止。IT 不会继续前进。为什么会停下来?为什么它没有一路走到最后?

这是我当前的代码

INSERT INTO phone_calls(next_attempt, created_on, modified_on, status, call_subject,
account_number, call_code, last_attempt_on, total_attempts, account_id

,team_id
,campaign_id
,call_code_id
,result_code
,result_code_id
,time_zone_id
,trigger_on
,first_attempt_on
,first_attempt_by
,last_attempt_by
,modified_by
,client_id
,last_call_id
,call_notes
,owner_id
,industry_id
)


SELECT 
CASE WHEN next_attempt IS NULL OR next_attempt = '' THEN STR_TO_DATE(replace(t.next_attempt,'/',','),'%m,%d,%Y %T') END as next_attempt,
CASE WHEN t.created_on IS NULL OR t.created_on = '' THEN '0000-00-00 00:00:00' ELSE STR_TO_DATE(replace(t.created_on,'/',','),'%m,%d,%Y %T') END as created_on,
CASE WHEN t.modified_on IS NULL OR t.modified_on = '' THEN '0000-00-00 00:00:00' ELSE STR_TO_DATE(replace(t.modified_on,'/',','),'%m,%d,%Y %T') END AS modified_on,
CONVERT( CASE WHEN t.status IS NULL OR t.status = '' THEN 0 ELSE t.status END,  UNSIGNED INTEGER) AS status,
LEFT(IFNULL(t.call_subject, ''), 100),
t.account_number,
CONVERT( CASE WHEN t.callcode IS NULL OR t.callcode = '' THEN 0 ELSE t.callcode END , UNSIGNED INTEGER) AS callcode, STR_TO_DATE(replace(t.last_attempt_on,'/',','),'%m,%d,%Y %T') as last_attempt_on,
CONVERT( CASE WHEN t.New_Attempts IS NULL OR t.New_Attempts = '' THEN 0 ELSE t.New_Attempts END ,  UNSIGNED INTEGER) AS New_Attempts,
a.account_id
,0
,0
,0
,0
,0
,0
, '0000-00-00 00:00:00'
, '0000-00-00 00:00:00'
,1
,1
,1
,1
,0
,'IMPORTED FROM CRM'
,1
,1
FROM tmp_table_for_rdi_cms AS t
INNER JOIN accounts AS a ON a.account_number = t.account_number LIMIT 9999999999;
these 2 fields are indexed so it runs fast
a.account_number
t.account_number

现在,我知道我没有为某些类型为无符号整数的字段插入任何值,但这没关系,因为我稍后会更新它。

如何在不丢失任何记录的情况下执行此 INSERT INTO 查询?

4

1 回答 1

0

“没有默认值”的问题是源表在新表上定义为 S NOT NULL 且未使用默认值定义的列具有空

你有三个选择来解决这个问题:

  1. 将目标列定义为可以为空(省略 NOT NULL)
  2. 用默认值定义目标列,即NOT NULL DEFAULT 'some value'
  3. 如果该列为空,则提供一个值,即SELECT ifnull(source_column, 'some value)

截断不正确的INTEGER 值 问题,您从 char 值中选择并将其放入 int 列中,但有些 vyes 是空白的,因此您需要处理:

select if(source_column = '', 0, source_column)

存在数据被截断的问题,因为源值大于/长于目标列可以容纳的值。要解决此问题,请将目标列定义为更大(bigint 而不是 int)或更长(例如 text 或 varchar(80) 而不是 varchar(20))

于 2013-03-09T00:02:50.670 回答