OR filter within python client.
How would one structure an efficient query that mimics the query:
SELECT *
FROM table
WHERE col_a = 'value_1' OR col_b = 'value_2'
I have tried a bunch of different arrangements and the python client is giving me lots of issues. Thanks for the help in advance!
SELECT *
FROM table
WHERE col_a = 'value_1' OR col_b = 'value_2'
I have tried a bunch of different arrangements and the python client is giving me lots of issues. Thanks for the help in advance!