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

-- You can specify any boolean condition that can be specified in the WHERE clause of the source database

-- 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-2022', 'DD-MON-YYYY') AND status = 'Y';
