SQL/update

解説 テーブルのデータを上書き

update Table名 set 列名=value where 更新行を特定する条件;

SQL
update sample set height=165 where firstName="尾立" and secondName="雄一";
update sample set height=165, age=63 where firstName="尾立";