如何在phpmyadmin中自动增加字符串

时间:2018-05-04 06:46:04

标签: php mysql

如何将值列attachment_path自动增量为image1,image2 ....其中类型为VARCHAR 这可以使用PHP代码完成,或直接在phpmyadmin

实现

enter image description here

1 个答案:

答案 0 :(得分:0)

我根据前面提到的duplicate编辑了适合您案例的答案。

你必须再向表中添加2个字段..

  1. (例如:image_text)包含文字'Image'
  2. (例如:image_num)with autoincrement
  3. image_text的默认值设置为“图片”。

    autoincrement primary key

    设置image_num

    ALTER TABLE tablename AUTO_INCREMENT=101;

    不要忘记删除现有的attachment_path列。

    UPDATE tablename SET attachment_path = concat( image_text, image_num ) ;