I'm trying to pass a slice to a query that has a cte, but I get an error
Goland code:
insertQuery = `
WITH cte AS (SELECT $1 AS id,
UNNEST(ARRAY($2)) AS address)
INSERT
INTO user_addresses
SELECT id, address
FROM cte;
`
addresses = []string{"firstAddress", "secondAddress", "thirdAddress"}
_, err = db.ExecContext(ctx, insertQuery, id, addresses)
if err != nil {
log.Println(err)
}
I get an error:
ERROR: at or near \")\": syntax error (SQLSTATE 42601)
I tried to transfer the slice directly to pg.Array, but the result is the same. What is the reason for the error?
I think the problem here is your query, how you are using UNNEST(ARRAY($2)), here $2 refers entire address slice, in your case it taking the entire address array instead is individual element.