Is there any syntax like WHERE IN allow me to update multiple values at once? example:
update files
set name = 'untitled'
WHERE id IN (1,2,3,4)
become:
update files
set name ( 'untitled', 'untitled2', 'untitled3', 'untitled4' )
WHERE id IN (1,2,3,4)
My script contains an associative array, I need to update the name column set as array value where the id column match the array key