Query with date condition in Python
Hello, I tried to extract data from domo with ds_query function. Would you be able to advise what sql should I use to filter data where date_column is greater than current date - 7 days? query = "SELECT * FROM table WHERE date_column >= getdate() - 7" df = domo.ds_query(dataset_id=dataset_id, query=query, return_data=True)…