I have a MySQL database and I am trying to find a way to export its structure only, without the auto increment values. mysqldump --no-data would almost do the j
mysqldump --no-data
JoDev's answer worked perfectly for me with a small adjustment to the sed regular expression:
mysqldump -d -h localhost -u -p | sed 's/ AUTO_INCREMENT=[0-9]*//g' > databaseStructure.sql