일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 나만의 상점
- upbit
- LEFT JOIN
- 썸머노트
- swift 화면전환
- 세로 스크롤 막대
- python
- 한글깨짐
- 초딩수학
- Request.Form
- 업비트
- MYSQL
- Excel
- Banker's rounding
- rounding
- Android
- 스크롤 사라짐
- .csv
- 시트 탭 사라짐
- Oracle
- league of legends
- Aspose.cells
- 일본여행
- chart.js
- 가로 스크롤 막대
- Kakao API Address
- CSV
- MS-SQL
- MSSQL
- Banker's
Archives
- Today
- Total
DBA
merge를 이용한 Update / Insert 쿼리 본문
728x90
반응형
SMALL
merge T_Survey as tar
using (select PN, targetSchoolID, pid, answerStateCode from T_Survey_sou) as sou
on (tar.PN = sou.PN and tar.targetSchoolID = sou.targetSchoolID and tar.pid = sou.pid)
when matched then update set
answerStateCode = sou.answerStateCode
when not matched then insert (
PN
, targetSchoolID
, pid
, answerStateCode
) values (
sou.PN
, sou.targetSchoolID
, sou.pid
, sou.answerStateCode
);
728x90
반응형
LIST
Comments