美文网首页
Mysql insert into select , updat

Mysql insert into select , updat

作者: 钧辉 | 来源:发表于2017-01-17 20:29 被阅读0次

    有时候需要把查询到的数据直接插入另一个表中,sql如下:
    insert into a
    (a.aid, a.name)
    select id, name from b
    where b.xx = xx

    更新操作如下:
    UPDATE ta SET name = ( SELECT a.name
    FROM a
    WHERE ta.aid = a.id )
    WHERE ta.pid = xx

    内容追加:
    update ta set name = CONCAT(name, 'str') WHERE id = xx //CONCAT 追加字段内容

    相关文章

      网友评论

          本文标题:Mysql insert into select , updat

          本文链接:https://www.haomeiwen.com/subject/agambttx.html