I have users table in my database and If you want to take all user rows data into file, then execute below query..
SELECT id,user_name, address into OUTFILE ‘d://userdbdump.txt’ FIELDS TERMINATED BY ‘,’ FROM users
March 4, 2009 by Anand Muranal
I have users table in my database and If you want to take all user rows data into file, then execute below query..
SELECT id,user_name, address into OUTFILE ‘d://userdbdump.txt’ FIELDS TERMINATED BY ‘,’ FROM users