label是一个数组字段,当用label作为查询条件时,可以使用@> array[x,y,z] 来查询
select id,name from client where label @> array[6,14]
如果只有一个值 ,可以使用 () =any(数组字段)
select id,name from client where (6)= any( label )
label是一个数组字段,当用label作为查询条件时,可以使用@> array[x,y,z] 来查询
select id,name from client where label @> array[6,14]
如果只有一个值 ,可以使用 () =any(数组字段)
select id,name from client where (6)= any( label )