如果数据检索是最重要的,你可以通过在INSERT 和 INTO 之间添加关键词LOW_PRIORITY 让mysql降低insert语句的优先级:INSERT LOW_PRIORITY INTO,这种方法同意适用于UPDATE 和 DELETE
提高插入性能 可以多组值一起插入
INSERT INTO customers(cust_name, cust_city,cust_zip)
VALUES('qkl' 'hz', '300000'),
('gzg' 'hz', '310000'),
('qdg' 'hz', '320000');
insert select 导入法
INSERT INTO customers(cust_name, cust_city,cust_zip)
SELECT cust_name, cust_city,cust_zip
FROM custom_another;