I want to do mysqldump with a table definition and table data every day, for this I configure the cron job with this command: "mysqldump -u user -pxxxxx site_DB | gzip> backup / site / site_t _ $ (date | awk {'print $ 1" "$ 2" "$ 3" _ ββ"$ 4 '}). Sql.gz", but this only exports the table definition. What is the right command to export data? Thanks
source share