临时表使用

CREATE TEMPORARY TABLE tmp_table (
     mobile VARCHAR(20) NOT NULL
);

select * from tmp_table;

 DROP TEMPORARY TABLE IF EXISTS tmp_table;
 
 DELETE FROM tmp_table where mobile> 0;
 
INSERT INTO 
tmp_table (mobile) 
VALUES (139****7500),(158****7002),...


你可能感兴趣的:(临时表使用)