1

请帮我制作一个脚本,它将增加 MySQL 数据库中“数字”列中的数字,如下图所示:

******************
* index * number *
******************
* 1000A *  01    *
* 1000B *  02    *
* 1000C *  03    *
* 1000D *  04    *
… 
* 1000Z *  99    *
4

1 回答 1

0

我认为这就是你想要的:

update `mytable` set number = number + 1 where index = $YOUR_INDEX;

当然,替换$YOUR_INDEX为感兴趣的索引。

于 2013-02-26T17:12:38.110 回答