Read accounts modified after date (filtered)
Reads Account records matching a name pattern and modified after a specific date. This example combines a WHERE clause filter with the ModifiedSince parameter for targeted data retrieval.
SELECT * from Accounts Where Account_Name LIKE 'Test%' WITH(ModifiedSince = '2020-01-07T00:00:00')