欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql 字符串拼接 同append

程序员文章站 2022-04-22 17:05:05
...

update table set mail_url =CONCAT(mail_url,.com) where id = 169; 待续,如果你有相关的,欢迎补充哦 存储过程: create PROCEDURE dowhile() BEGIN DECLARE i int DEFAULT 0; START TRANSACTION; WHILE i10 DO insert into TABLE (MAIL_url) values('***

update table set mail_url =CONCAT(mail_url,".com")  where id = 169;


待续,如果你有相关的,欢迎补充哦


存储过程:

create PROCEDURE dowhile()  
BEGIN  
    DECLARE i int DEFAULT 0;  
    START TRANSACTION; 
          WHILE i
调用以上存储过程方法:【call dowhile;】报错可能出现的原因:


[Err] 1062 - Duplicate entry '' for key 2

检查你字段有没有设置唯一约束,以上错误说明违反了unique约束。