Pergunta de entrevista da empresa TiVo

How do you edit values in all rows of a data table which have id equal to 0, in SQL.

Resposta da entrevista

Sigiloso

29 de dez. de 2016

update [table] set [column] = [new value] where id = 0

1