次のコードは正常に動作しています。しかし、array['a', 'b', 'c', 'd', 'e'] を変数として定義したいのです。
rows, err := db.Query("select colname from (SELECT date, unnest(array['a', 'b', 'c', 'd', 'e']) AS colname, unnest(array[a, b, c, d, e]) AS thing from test1 where date='123') as tester where thing=1;")
そこで、 github.com/lib/pq を使用して次のコードを試します。
arr1 := []string{"a", "b", "c", "d", "e"}
rows, err := db.Query("select colname from (SELECT date, unnest($1) AS colname, unnest($1) AS thing from test1 where date='123') as tester where thing=1;", pq.Array(arr1))
しかし、「pq: function unnest(unknown) is not unique」のようなエラーが発生します。テーブル構造とサンプルデータ --
test=# \d+ test1
Table "public.test1"
Column | Type | Modifiers | Storage | Stats target | Description
--------+-----------------------+-----------+----------+--------------+-------------
a | character varying(10) | | extended | |
b | character varying(10) | | extended | |
c | character varying(10) | | extended | |
d | character varying(10) | | extended | |
e | character varying(10) | | extended | |
date | character varying(10) | | extended | |
test=# select * from test1 ;
a | b | c | d | e | date
---+---+---+---+---+------
3 | 1 | 3 | 2 | 3 | 124
3 | 3 | 2 | 2 | 1 | 125
1 | 2 | 2 | 1 | 3 | 126
1 | 2 | 3 | 2 | 3 | 127
1 | 1 | 2 | 2 | 3 | 123
(5 rows)
基本的に、特定の日付に値「1」を持つ列名 (a、b、c、d、または e) が必要です。