博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql将一个表中字段A的值赋给另一个表的字段B
阅读量:5964 次
发布时间:2019-06-19

本文共 1142 字,大约阅读时间需要 3 分钟。

# mysql 的修改方法update table_a a inner join table_b b on b.id=a.id set a.description=b.content;# mssql的修改方法update a set a.description=b.content from table_a a inner join table_b b on a.id=b.id;

 将两个字段的值合并起来赋给其中的一个值

表a: column1        column2 a1                    b1 a2                    b2 a3                    b3   a4                    b4 表c: column1        column2 a1                    c1 a2                    c2 a3                    c3 a4                    c4 要求更改表b为: column1        column2 a1                c1.b1 a2                c2.b2 a3                c3.b3   a4                c4.b4 # access 的修改方法
update b INNER JOIN c on b.column1 = c.column1 set b.column2 = c.column2 & '.' & b.column2;
# mysql 的修改方法
update b INNER JOIN c on b.column1 = c.column1 set b.column2 = c.column2 + '.' + b.column2;
# mssql 的修改方法
update b set b.column2 = c.column2 + '.' + b.column2 from b inner join c on b.column1=c.column1;
 
# oracle 的修改方法
 
update B b1 set column2 = (   select  b2.column2 ||  '.' || c1.column2      from B b2, C c1   where b1.column1 = b2.column1      and b2.column1=c1.column1)
 

 

 

 

 

转载于:https://www.cnblogs.com/afish/p/3922592.html

你可能感兴趣的文章
Python:pygame游戏编程之旅七(pygame基础知识讲解1)
查看>>
java B转换KB MB GB TB PB EB ZB
查看>>
通过SharpZipLib实现文件夹压缩以及解压
查看>>
20145209预备作业02
查看>>
精通CSS滤镜(filter)
查看>>
ios 中UIViewController的分类
查看>>
弄清楚高层到底是什么情况!
查看>>
开发中常用正则表达式
查看>>
HDU 4374 One hundred layer(单调队列DP)
查看>>
c和c++中NULL和0的区别
查看>>
OPP Services Log
查看>>
JQuery增删改查
查看>>
android webview 全屏播放H5 (Playing HTML5 video on fullscreen in android webview)
查看>>
python的一些常用函数
查看>>
微信公众号教程(19)微信音乐播放器开发 中
查看>>
浏览器跨域问题
查看>>
部署WEB项目到服务器(二)安装tomcat到linux服务器(Ubuntu)详解
查看>>
SpringBoot之SpringBoot+Mybatis+Mysql+Maven整合
查看>>
SQLServer BI 学习笔记
查看>>
20160504-hibernate入门
查看>>