UPDATE: I found a solution. See my Answer below.
How can I optimize this query to minimize my downtime? I need to update over
About BETWEEN
SELECT * FROM a WHERE a.column BETWEEN x AND y
a.column >= x AND a.column <= yWhile this:
SELECT * FROM a WHERE somevalue BETWEEN a.column1 AND a.column2
somevalue >= a.column1 AND somevalue <= a.column2I think there was confusion about this in the debate on "between" above.
OP has the first kind, so no worry.