在没有 PHP 的 MYSQL 上将表字段更新为其值加上一个常量

Update a Table Field to its Value Plus a Constant on MYSQL w/o PHP(在没有 PHP 的 MYSQL 上将表字段更新为其值加上一个常量)
本文介绍了在没有 PHP 的 MYSQL 上将表字段更新为其值加上一个常量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 MYSQL 中执行 UPDATE,我在其中获取一个字段值,添加一个常量并将新值保存在同一字段中.

I would like to perform an UPDATE in MYSQL in which I take a field value, add a constant and save the new value in the same field.

假设我们在一个名为 aTable 的表中有一个名为 OldValue 的列.

Let's assume that we have a column called OldValue in a table called aTable.

伪代码可能是:

UPDATE aTable SET OldValue = OldValue + 220 WHERE someField = someValue

你知道我该怎么做吗?我想使用单个查询(在某些管理面板上)而不制作 php 脚本.(当然,在那种情况下答案很简单.)

Do you have any idea on how I could do that? I would like to use a single query (on some administration panel) without making a php script. (Of course, in that case the answer is quite simple.)

推荐答案

你的代码可以运行.

查看它在 SQLFiddle 中的工作.

我一字不差地使用了您的确切查询,除了用实际值代替someValue".

I used your exact query verbatim, except for substituting a real value for "someValue".

这篇关于在没有 PHP 的 MYSQL 上将表字段更新为其值加上一个常量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)