update更新数据的语法是什么

PHPz
Release: 2020-09-04 17:54:36
Original
4619 people have browsed it

update更新数据的语法是“UPDATE <表名> SET <列名>=<表达式>,……[WHERE <逻辑表达式>]”,其中where逻辑表达式是用来取得想要需要修改的列的条件。

update更新数据的语法是什么

update更新数据的语法是什么?

1.     更新数据

语法:     

 UPDATE <表名> SET <列名>=<表达式>,……[WHERE <逻辑表达式>]
Copy after login

SET命令用来将新值赋给被更新的列,列名对应的是表达式是要待更新的值

where逻辑表达式是用来取得想要需要修改的列的条件

我们对lead表进行一系列操作

企业微信截图_15925370961830.png

(1).更新所有行

更新no1和no2

update lead set no1=&#39;A&#39;,no2=&#39;A01&#39;
Copy after login

结果:

企业微信截图_15925371021799.png

只更新no1

update lead set no1=&#39;A01&#39;
Copy after login

企业微信截图_15925371092275.png

这下子no1和no2都变成了A01

(2).更新特定行

更新特定行需要加入where语句进行选择

update lead set no2=&#39;A0101&#39;
where no2=&#39;B&#39;
Copy after login

这样我们就将表中所有no2值为B的修改为A0101,因为lead表中只有一项满足where要求,所以只修改了一条

企业微信截图_15925371205039.png

更多相关技术文章,请访问PHP中文网

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template