简体   繁体   中英

Insert new column, increment all rows

Is this possible using only mysql:

Insert a new column and example - "pos". Every row in the table has to have unique,incresing value of "pos" like - 1,2,3,4,5.

In php this would be an easy job:

$query = "SELECT * FROM example"; 

$result = mysql_query($query) or die(mysql_error());

$counter = 0;
while($row = mysql_fetch_array($result)){
    mysql_query( "UPDATE example SET pos = ".++$counter." WHERE id = ".$row['id']." );
}

是的,你可以这样做

    UPDATE example SET pos = pos+1  WHERE id = ".$row['id']."

As already suggested, the most efficient solution is to use auto incremental on pos.

Alternatively if your use case do not permit you, then try similar:

"UPDATE example SET pos = ((select max(pos) from example) +1) WHERE id
= ".$row['id']."

为你的pos mysql字段提供auto_increment属性 - 这将对其进行索引,使其唯一,并在每个插入上递增1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM