标签: php mysql
我需要比较两个表中的两个字段来查找不匹配的记录并将这些记录插入新表中
答案 0 :(得分:1)
试试这个
创建一个包含必填字段的表格( new_table )
INSERT INTO new_table SELECT table1.field1, table2.field2 FROM table1, table2 WHERE ( table1.field_name != table2.field_name );