Skip to content

Releases: purpleP/sqlalchemy-utils

more compilers and fixes

12 Sep 07:24
Compare
Choose a tag to compare

SELECT ... FROM ... where (a, b) in ((1, 2), (3, 4)) with multiple columns in IN statement transformed into OR a = 1 and b = 2 OR a = 3 b = 4 for sqlite which doesnt support multiple columns in IN statement.