Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to query for empty array in JSONB?

Consider this example:

postgres=# CREATE TABLE emptyarray (fields jsonb);                                                                                                                            
CREATE TABLE                                                                                                                                                                  
postgres=# INSERT INTO emptyarray VALUES ('{"key":["a","b"]}');                                                                                                               
INSERT 0 1                                                                                                                                                                    
postgres=# INSERT INTO emptyarray VALUES ('{"key":[]}');                                                                                                                      
INSERT 0 1                                                                                                                                                                    
postgres=# SELECT * from emptyarray where Fields@>'{"key":["b"]}';                                                                                                            
       fields                                                                                                                                                                 
---------------------                                                                                                                                                         
 {"key": ["a", "b"]}                                                                                                                                                          
(1 row)                                                                                                                                                                       

postgres=# SELECT * from emptyarray where Fields@>'{"key":[]}';                                                                                                               
       fields                                                                                                                                                                 
---------------------                                                                                                                                                         
 {"key": ["a", "b"]}                                                                                                                                                          
 {"key": []}                                                                                                                                                                  
(2 rows)

In the second query I expected only one rows in the results (the one record with empty array). But as you can see there are two rows in the result. How do I query for a empty array using @> syntax?

I am using PostgreSQL 9.6

like image 954
baijum Avatar asked Sep 27 '17 14:09

baijum


1 Answers

You could use:

SELECT * from emptyarray where Fields-> 'key' = '[]'::jsonb;

Rextester Demo

like image 136
Lukasz Szozda Avatar answered Sep 22 '22 20:09

Lukasz Szozda