my_data_source.query('SELECT * FROM my_table LIMIT 100')
You can query for newly added data using the functionality introduced by the LAST keyword as follows:
Copy
Ask AI
query = server.databases.my_data_source.tables.table_name.filter(column_name='value').track('timestamp_column')# first call returns no recordsdf = query.fetch()# second call returns rows with timestamp_column greater than the timestamp of a previous fetchdf = query.fetch()