-- WHERE conditions for tables
-- You use this file to filter rows transferred for the specified tables

-- Syntax:
-- source_table1, condition1;  (do not specify WHERE keyword, use ; to terminate the WHERE clause, you can use newlines and tabs)
-- source_table2, condition2; ... ;

-- For Oracle, DB2 specify fully qualified name in uppercase: SCHEMA.TABLE
-- For Oracle, use TO_DATE function to define the format of datetime literals explicitly

-- Examples (uncomment):
-- SALES.ORDERS, created_dt >= CURRENT_DATE;
-- SALES.ORDERS, created_dt >= TO_DATE('31-DEC-21', 'YYYY-MON-DD');
