修改语法

Posted binbgo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改语法相关的知识,希望对你有一定的参考价值。

修改更改语法
Update  表名  set  列名=’修改内容’   where  列名=‘修改条件’
 --修改数据的sql
 --强烈注意:数据的更新一定要加上where条件语句
 update libuser set passwd=123456 where userid=10005;
 
--更新所有时,可以使用where 1=1进行提示
update libuser set sex= where 1=1 ;



更改清空语法
Update  表名  set  列名=null   where  列名=‘修改条件’

  --把10008的年龄清空
  update libuser set age=null where userid=10008;

 

修改更改语法

Update  表名  set  列名=修改内容   where  列名=‘修改条件’

 --修改数据的sql

 --强烈注意:数据的更新一定要加上where条件语句

 update libuser set passwd=‘123456‘ where userid=10005;

 

--更新所有时,可以使用where 1=1进行提示

update libuser set sex= where 1=1 ;

 

 

 

更改清空语法

Update  表名  set  列名=null   where  列名=‘修改条件’

 

  --10008的年龄清空

  update libuser set age=null where userid=10008;

以上是关于修改语法的主要内容,如果未能解决你的问题,请参考以下文章

JSP 语法

JSP 基础语法

vue2.0 代码功能片段

JSP开发中的基础语法

如何创建片段以重复变量编号中的代码行

使用 Python 代码片段编写 LaTeX 文档