Hey! I have written a query in CData Sync to load rows from TransactionAccountingLine only for a date range, Feb 2024.
REPLICATE TransactionAccountingLine]
SELECT tranacc.*
FROM TransactionAccountingLine] tranacc
LEFT JOIN transaction] tran
ON tranacc.transaction = tran.id
WHERE tran.trandate between '2024-02-01' and '2024-02-29'
Upon running this query, I am getting the error,
g0] Column 'lastmodifieddate' is ambiguous.
But I should not be getting this error since I am selecting all the columns only from the TransactionAccountingLine table, where there is only one lastmodifieddate.
Please help me with this issue.