I currently have the following in the Where SQL section which lists records if the current date is less than or equal to the expiration date.
However, there are a few records that have no expiration date because the person is a life member. The word "Life" is in a category called item_name. If I use the following code the search function no longer works (though all the records still display).
If I remove the item_name portion of the query, the search works fine (which I have set to search on first name, last name and item name). I have also tried using expires = "" but have the same results.
Can ChronoConnectivity support conditional where statements and if so, can you direct me to a post (I tried a search but did not come up with anything) or direct me as to how I would write it?
Thanks.
CURDATE()<=expires
However, there are a few records that have no expiration date because the person is a life member. The word "Life" is in a category called item_name. If I use the following code the search function no longer works (though all the records still display).
CURDATE()<=expires OR item_name = 'Life'
If I remove the item_name portion of the query, the search works fine (which I have set to search on first name, last name and item name). I have also tried using expires = "" but have the same results.
Can ChronoConnectivity support conditional where statements and if so, can you direct me to a post (I tried a search but did not come up with anything) or direct me as to how I would write it?
Thanks.