0
CREATE TABLE js_testt (
id SERIAL,
tids json
);
INSERT INTO js_testt (tids) values ('{"flat": ["11", "22", "33", "44"], "promo": ["1", "2", "3", "4"]}');
基於上面的例子,我怎麼才能找到值「33」是否存在於json鍵「flat」下的表中。檢查postgresql中是否存在JSON數組中的值