Dump Particular range of values from table in Sql

by Mohan 2014-05-21 18:51:14

Here is simple sql to dump particular range of values into a sql file
SELECT * FROM anagram LIMIT 1001, 10000 INTO OUTFILE '/opt/lampp/htdocs/test/teest.sql'
will result a file named teest.sql in the given path with values from 1001 to 10000 from table anagram

Tagged in:

1116
like
0
dislike
0
mail
flag

You must LOGIN to add comments