Support whereIsDistinctFrom
and whereNotIsDistinctFrom
#39
Labels
enhancement
New feature or request
whereIsDistinctFrom
and whereNotIsDistinctFrom
#39
The
IS DISTINCT FROM
andIS NOT DISTINCT FROM
terms simplify a query a lot for nullable columns:col IS DISTINCT FROM 'value'
simplifies a query with nullable columns as it is a replacement for(col IS NULL OR col != 'value')
The text was updated successfully, but these errors were encountered: