Closed jwcook23 closed 2 years ago
Issue caused by ColumnA appearing twice in the where statement. The following works correctly:
where = "ColumnA IS NULL OR ColumnB != 'CLOSED'"
where_statement, where_args = dynamic.where(cursor, where)
where_statement -> 'WHERE [ColumnA] IS NULL OR [ColumnB] != ?'
where_args -> ['CLOSED']
Within read.table, dynamic.where produces the following syntax: