在MySQL中,可以使用INSERT INTO ... SELECT语句来拷贝一条记录。假设你要从表source_table拷贝一条记录到表target_table,可以这样写:,,``sql,INSERT INTO target_table,SELECT * FROM source_table,WHERE ……