有一个数组[10,20],我想知道它是否是数组[20,30,10]的一个子集?
示例:
[10,20] and [30,20,10] - yes
[10,20] and [10,30] - no
[10,20] and [20,10] - yes
[10,20] and [10,20] - yes
答案 0 :(得分:9)
像这样,也许:
SELECT ARRAY[10,20] <@ ARRAY[30,20,10];
http://www.postgresql.org/docs/current/static/functions-array.html