I'm trying to update different rows with different values, in my sql table, the closest I've come is:
UPDATE cursos
SET posicion = 11
where Id in (1,2)
But it updates me with the same value (11) logically the two rows, I need to give a different value to each row. Can someone help me with this dilemma? Thanks !!!