Skip to content

more compilers and fixes

Latest
Compare
Choose a tag to compare
@purpleP purpleP released this 12 Sep 07:24
· 1 commit to master since this release

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.