I have the following table
CREATE TABLE shipment (
shipment_id TIMEUUID,
dropoff_contact person,
job_ids list<TIMEUUID>,
deleted boolean,
PRIMARY KEY(shipment_id)
);
CREATE INDEX IF NOT EXISTS job_ids ON loadex.shipment (job_ids);
Is there any way to query this table for empty job_ids:
I have tried these, they are not working:
SELECT * FROM shipment where job_ids=[]
SELECT * FROM shipment where job_ids=null