ODBC guide

Read customers filtered by date


Reads customer records created after a specific date. This example demonstrates how to filter the Customers table using the Created column with a date comparison in yyyy-MM-dd format.

SELECT * FROM Customers
WHERE Created > '2010-01-01'