How to update a particular row from MYSQL DB when v r given a row number liek update username at row =5 , n nothing else is given , v dont want 2 use the WHERE Clause , all v know is row number
so how ??
UPDATE users set status=7 limit 5,1; // this is not working error in sql syntax
want 2 update 6th row
users=table name
same what will b the syntax for delete statement for the same operation ?