I'm trying to figure out how to use functions in the Read Data Where Clause.
What I'm trying to do is something like:
"Where STR_TO_DATE(meeting_date,'%M/%D/%Y') >= CurrentDate"
I've tried in the regular where conditions but that doesn't seem to allow functions.
I've also tried adding a PHP where clause, but I wasn't sure of the format.
Return["STR_TO_DATE(meeting_date,'%M/%D/%Y')", "CURDATE",">="]
I could manually write the SQL using an "SQL" action, but I wasn't sure how to load that in a Model and reference it for my fields.