-1

I need to dump my database data (Only insert queries) without tables structures. Is it possible?

Logica
  • 977
  • 4
  • 16
Hemantha Dhanushka
  • 153
  • 1
  • 5
  • 14

1 Answers1

1
mysqldump --no-create-info ....

Do not write CREATE TABLE statements that re-create each dumped table.

(from mysqldump man page).

danblack
  • 12,130
  • 2
  • 22
  • 41