更新数据记录

1、更新特定数据记录

update table_name

  set field1 = value1,

   field2 = value2,

  where condition;

 

2、更新所有数据记录

原文地址:https://www.cnblogs.com/alphajuns/p/9894304.html