文字列の配列を含むフィールドに対していくつかの文字列パラメーターをチェックするために、SQL Alchemy でクエリを作成する必要があります (Postgre)
市区町村 address_line_1 zip_code phone_numbers
すべてテキスト型 [] です
select_statement = bdb.get_select_statement(business_schema)\
.where(((text('array[:acity] <@ city')
and text('array[:astate] <@ state')
and text('array[:aaddress] <@ address_line_1'))
or
(text('array[:aaddress] <@ address_line_1') and text('array[:azip_code] <@ zip_code')))
and (text('array[:aphone] <@ phone_numbers')))\
.params(aaddress = address_line_1, acity = city, astate = state, azip_code = zip_code, aphone = phone_number)
問題は、これを行うと「この句のブール値が定義されていません」という例外が発生することです。
記述されるプレーン SQL は次のとおりです。
select * from business where ('address_line1' = ANY (address_line_1)
and 'acity' = ANY (city)
and 'state' = ANY (state)
or
('adress_line1' = ANY (address_line_1) and 'zip' = ANY (zip_code))
and
'phone' = ANY (phone_numbers)
それを行う方法についてのアイデアはありますか?,
前もって感謝します!