First off, apologies if this has been covered in a previous post and I've missed it. I've done a lot of searching and haven't come across anything that has worked so far.
I'm currently using the below query to update records in a table.
UPDATE table SET Column1="1" WHERE Column2 LIKE "Text";
The problem is I have over 100,000 rows, each with different text, to update and even doing 15,000 at a time takes 45 mins. I'm new to SQL, but I'm fairly certain that isn't the most efficient way to update the rows I need to update.
I've been trying to use other suggestions I've come across on here but none have worked so far.
"Text"is different for different rows?LIKEinstead of=?