Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有多个重复 ID 的 table1。我的目标是将格式化数据(删除重复记录)从 Table1 移动到 Table2。表 1 和表 2 的架构相同。
在这里,任何一种方法都可以使用格式化数据更新 Table1 或将数据移动到 Table2。
有人可以帮帮我吗!
ALTER IGNORE TABLE yourTable ADD UNIQUE INDEX idx_name (columnwithduplicates)
编辑
ALTER TABLE yourTable ADD CONSTRAINT idx_name UNIQUE (columnwithduplicates)
这将删除重复的行
INSERT INTO table2 SELECT column1,column2,etc FROM table1
只要结构相同