Please, I want a query that will help me to update the first 200 rows of the bill column to 3 after selecting the first 200 rows from the dlr table. I also want there to be no repetition when my select statement is coming back to pick another 200 rows.
It will only pick the bill column rows that are not 3.
Below is the query i wrote and it is giving me below mentioned error.
'LIMIT & IN/ALL/ANY/SOME subquery:
UPDATE dlr SET bill = 3
WHERE dlrid IN (SELECT dlrid FROM dlr WHERE bill = 0 LIMIT 0,200);
Error I am Receiving = This version of MySQL doesn't yet support
Can anybody help me out?