Hi,
I am trying to run a query to select data that was created today. Have tried curdate() and today() in the REST console but get errors.
Haven’t been able to find a docs or videos to guide me.
Any assistance would be appreciated.
Thanks
Hi,
I am trying to run a query to select data that was created today. Have tried curdate() and today() in the REST console but get errors.
Haven’t been able to find a docs or videos to guide me.
Any assistance would be appreciated.
Thanks
Hi,
The docs you need are here:
https://backendless.com/docs/rest/data_database_functions.html
Finding records created today can be done by using a where clause. The idea would be to use the “created” column.
Regards,
Mark
Hi Mark,
Understood but I do not see a function that refers to today’s date like today() or curdate().
Steve
There is a function called “NOW()”. You can use it with other functions to extract any portion of the date
Hi,
Got it done.
For reference for anyone else, I used this command
date(columnname) = date(now())
Thanks
Steve