I need to update DATA value in column "InstalDate" with current date for ID < 450 and update with DATE='2017-05-05' for the rest of table records and it need to be done in one command, so how to do it in one command?
I managed to do it but only for ID < 450 and don't know how to add second condition in one command.
UPDATE tabela SET InstalDate= NOW() WHERE ID<450;