0

How to write SQL queries to support JSON where conditions matching for operators ? , ?|, ?&.

id : 12,
name: 'Harry Pottor',
type: ['Fiction', 'Horror', 'Adventure' ]

In Yii, when I write query for JSON array check with ?& operator gives me error. This query run successfully in pgAdmin

SELECT id, name 
FROM books 
WHERE 
type ?& array['Fiction', 'Horror']

$commandSql = $connection->createCommand($sql);

But ? mark operator gets replaced with $1 i.e. going for bind value.

How to do this type of queries in Yii?

Somnath Muluk
  • 55,015
  • 38
  • 216
  • 226

1 Answers1

2

I face same problem

SELECT * FROM company WHERE jsonb_exists_all(technology::jsonb, array['ERP']);

or

SELECT * FROM company WHERE jsonb_exists_all(technology, array['ERP']);

refer this link http://www.scriptscoop2.com/t/984beb7bce86/postgresql-json-select-query-replacement-in-php-yii2.html

skypjack
  • 49,335
  • 19
  • 95
  • 187
Prashant9792
  • 36
  • 1
  • 2