Forums | Webyog
Tools to manage and monitor MySQL databases
forums › forums › SQLyog › Using SQLyog › Exporting/backup Help
BACKUP FROM `abcdefg` WHERE `entry` BETWEEN #### AND ####;
Hi,
To backup a single row from a table you can use the below SQL query by giving the exact path where to Backup.
For example,
“SELECT * FROM Table1 where column1 between #### AND #### INTO OUTFILE 'E:Test.SQL';”
FYI,
http://dev.mysql.com/doc/refman/5.1/en/select.html#id3854478
Regards,
Navya
Alright cool thank you!
The characters must be escaped so correct is
“SELECT * FROM Table1 where column1 between #### AND #### INTO OUTFILE 'E:\Test.SQL';”
(Windows file paths are a litle inconvenient in MySQL)