I would like to update a specific range of rows, say starting from 30 and ending at 50. How may I achieve that.
I have tried with:
UPDATE tab
SET    col = 'somevalue' 
LIMIT 30, 50
but this doesn't work. Is there any way that I can update these rows?
The error that I get is:
Check the manual ... for the right syntax to use near ' 50'
 
     
     
     
    