mysqldump can be used to generate SQL Script for the complete database or any specific table. In case we need to generate sql script for specific rows or need to extract rows on any criteria, this can be done as: mysqldump DATABASENAME TABLENAME “–where=’WRITE QUERY HERE’;” > DUMP.sql e.g we need to extract the rows […]
↧