PHP-MySQL-How to safely increment MySQL integer field?(PHP-MySQL-如何安全地增加 MySQL 整数字段?)
问题描述
我想使用 php 和 mysql 安全地增加一个字段值.
I want to increment a field value safely using php and mysql.
我必须使用什么类型的表/字段?
What type of table/field must I use?
是否有我必须使用的最低 MySQL 版本?
Is there a minimum version of MySQL I must use?
MySQL 安全事务的 sql 代码是什么?
What's the sql code for this, safe transaction for MySQL?
推荐答案
我假设您指的是存储引擎的表"类型.任何支持突变的东西(即不是存档"或黑洞")
By what type of "table" I assume you mean storage engine. Anything that supports mutations (i.e. not "archive" or "black hole")
任何数字字段都可以(tinyint、int、float 等).也就是说,没有特殊的 PHP 代码,只有用于增加所需字段的 SQL:
Any numeric field will do (tinyint, int, float, etc). That said, there's no special PHP code, just the SQL for incrementing the desired field:
UPDATE table SET field = field + 1 WHERE [...]
如果你想要一个事务,那就把上面的查询打包成一个事务.至于 MySQL 版本,我同意 @hsz - 尽可能使用最新版本.
If you want a transaction, then pack the above query into a transaction. As for MySQL version, I agree with @hsz - use the most current version possible.
这篇关于PHP-MySQL-如何安全地增加 MySQL 整数字段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP-MySQL-如何安全地增加 MySQL 整数字段?
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01