runxinzhi.com
首页
百度搜索
UPDATE语句:将一个表里的字段更新到另一个表的字段里的语句
update table2 b,(select b.area_id as arid,sum(a.user_amount) as bcount
from table1 a,table2 b
where a.user_area=b.area_id
group by arid) c
set b.count=c.bcount
where b.area_id=c.arid;
相关阅读:
Linux:less 命令
Linux:more命令
图解linux安装tomcat(附常用命令)
Linux下安装tomcat
Linux数字权限解释
Tomcat配置远程调试
CentOS 设置静态IP 方法
oracle procedure存储过程
【转】vector中erase()的使用注意事项
strstr()函数的使用
原文地址:https://www.cnblogs.com/jthb/p/4286938.html
最新文章
python __getattr__ 巧妙应用
python filter map reduce
python decorator 进阶
python decorator 基础
python属性查找 深入理解(attribute lookup)
python descriptor 详解
Python 小而美的函数
在linux下如何显示隐藏文件
Linux中find常见用法示例
CentOS 7 开放防火墙端口
热门文章
CentOS/Linux 开放80、8080端口或者开放某个端口
linux ---jenkins的安装与配置
linux下面安装maven
profile
用eclipse怎样将本地的项目打成jar包上传到maven仓库
linux下jdk的安装
Centos7下面配置静态IP
linux解压
jenkins安装部署全过程
Linux less命令语法
Copyright © 2020-2023
润新知