복붙노트

[SQL] MERGE 문에 구문 오류

SQL

MERGE 문에 구문 오류

나는 이동에 MERGE 문을 할 노력하고있어 :

query := "MERGE staged ON (email=$1)" +
" WHEN NOT MATCHED THEN INSERT (email, secret, passwd, ts, newAcct)" +
" VALUES($1,$2,$3,$4,TRUE)" +
" WHEN MATCHED THEN UPDATE staged SET" +
" newAcct=TRUE, existingUser=NULL, secret=$2, ts=$4"

_, err := db.Exec(query, email, secret, passwd, time.Now())

하지만 난이 오류가 발생했습니다 :

pq: S:"ERROR" F:"scan.l" R:"scanner_yyerror" L:"1001" M:"syntax error at or near \"MERGE\"" P:"1" C:"42601"

동일은 MySQL의에서 일어나는 :

Error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MERGE staged ON (email=?) WHEN NOT MATCHED THEN INSERT (email, secret, passwd, t' at line 1

뭐가 문제 야?

해결법

  1. ==============================

    1.MERGE는 MySQL이 지원되지 않습니다, 그의 것과 동일합니다

    MERGE는 MySQL이 지원되지 않습니다, 그의 것과 동일합니다

    INSERT ... ON DUPLICATE KEY UPDATE

    이 시도,

    INSERT INTO tableName (email, secret, passwd, ts, newAcct) 
    VALUES ($1,$2,$3,$4,TRUE)
    ON DUPLICATE KEY UPDATE newAcct=TRUE, existingUser=NULL, secret=$2, ts=$4
    

    하지만 확인 이메일이 기본 키 또는 고유로 설정합니다.

  2. from https://stackoverflow.com/questions/13624752/syntax-error-on-merge-statement by cc-by-sa and MIT license