In Grafana I have a table that is populated by a MySQL query like this:
SELECT col1, col2 FROM Table WHERE StartDate = subdate(current_date, 1);
Effectively this gives me the results from the rows related to yesterday.
I want to have a date picker that defaults to yesterday, but that a user can select any date they want. (replaces the subdate(current_date, 1) with whatever date is selected. Is that possible? I've done a lot of searching but it's hard to look for because most Grafana/Date related information is in regards to graphing.