TiVo Interview Question

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

Interview Answer

Anonymous

Dec 29, 2016

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

1