How can I make an update to change the value of 3 lines?
I have a similar structure:
Id | Nome | Ordinal
13 | Juizado Especial Cível | ª
14 | Juizado Especial Criminal | ª
15 | Juizado Especial Cível e Criminal | ª
I need to change the ordinal from 'ª' to 'º' of ids 13, 14 and 15 in a single query, instead of making an update for each id.
How do I?
Thank you very much.