티스토리 뷰
mysql 혹은 maria db 에서 두개 테이블을 이용해서 업데이트 할 경우가 생겼다.
다소 복잡해보일 수 있는데 상식선에서 접근하면 된다.
몇가지 실제 돌아가는 예제를 소개 하니 보면 알것이다.
-- weight 마켓테이블에 업데이트
update coin_market a,
(
select market_name, weight
from coin_weight
) b
set a.weight=b.weight
where a.market_title = b.market_name;
-- 통계테이블에 마켓 count 업데이트
update coin_stat a,
(
select num
, count(*) cnt
from coin_market
group by num
) b
set a.market_count=b.cnt
where a.num=b.num;
-- 통계테이블에 weight count 업데이트
update coin_stat a,
(
select num,count(*) cnt
from coin_market
where weight > 1
group by num
) b
set a.weight_count=b.cnt
where a.num=b.num;
-- 통계테이블에 weight sum 업데이트
update coin_stat a,
(
select num, sum(weight) sum
from coin_market
group by num
) b
set a.weight_sum=b.sum
where a.num=b.num;
다소 복잡해보일 수 있는데 상식선에서 접근하면 된다.
몇가지 실제 돌아가는 예제를 소개 하니 보면 알것이다.
-- weight 마켓테이블에 업데이트
update coin_market a,
(
select market_name, weight
from coin_weight
) b
set a.weight=b.weight
where a.market_title = b.market_name;
-- 통계테이블에 마켓 count 업데이트
update coin_stat a,
(
select num
, count(*) cnt
from coin_market
group by num
) b
set a.market_count=b.cnt
where a.num=b.num;
-- 통계테이블에 weight count 업데이트
update coin_stat a,
(
select num,count(*) cnt
from coin_market
where weight > 1
group by num
) b
set a.weight_count=b.cnt
where a.num=b.num;
-- 통계테이블에 weight sum 업데이트
update coin_stat a,
(
select num, sum(weight) sum
from coin_market
group by num
) b
set a.weight_sum=b.sum
where a.num=b.num;
'mariaDB' 카테고리의 다른 글
[mysql] 오라클의 sysdate 시분초 (0) | 2018.06.03 |
---|---|
mysql 업데이트(update) 가 안될때 (0) | 2018.01.22 |
mysql 문자열 자르기, 문자열 나누기 left, substring, right (0) | 2018.01.15 |
mysql rank 순위 뽑는 쿼리 (0) | 2018.01.10 |
mysql 문자열 붙이기 및 숫자를 문자로 변경하기 (0) | 2017.06.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MySQL
- 프로씨
- 자바 smtp
- JDBC
- KG
- 파싱
- xe addon
- EC
- 인포믹스
- ocajp
- ocjap
- ocpjp
- 스크래핑
- XE
- php
- 오라클
- webix
- 플러터
- 파이썬
- 문자열
- xe애드온
- Python
- XE3
- C언어
- 포인터
- 이클립스
- esql
- C
- proc
- 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함