mysqldump table without dumping the primary key

后端 未结 10 1447

I have one table spread across two servers running MySql 4. I need to merge these into one server for our test environment.

These tables literally have millions of r

10条回答
  •  -上瘾入骨i
    2020-12-24 02:02

    1. Clone Your table
    2. Drop the column in clone table
    3. Dump the clone table without the structure (but with -c option to get complete inserts)
    4. Import where You want

提交回复
热议问题