Re: dump data based on query

2004-06-16 Thread Ronald Beck
If you enter the command... mysqldump --help you'll find a long listing of qualifiers that you can use with this, one of which is -w (or --where=) which allows you to specify what you want dumped. HTH, Ron James wrote: Hello, I'm trying to get my brain around this problem. I have a data

Re: select the next name

2003-01-14 Thread Ronald Beck
It seems you want something like select * from table limit 1,1 for the first query and then... select * from table limit 2,1 You might also want to add "order by" as well to assure the proper order each query. HTH, Ron [EMAIL PROTECTED] wrote: > Now Ben di