I have MySQL Innodb table of 14M rows. There was a coloumn called is_disabled which had different values. By mistake I ran the query without the where clause:
update url_queue set is_disabled=1
while wanted to run
update url_queue set is_disabled=1 where is_disabled=3;
I havent told my boss yet. And if somehow I can undo this before the meeting I would be able to save my job.
Please help!!