Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
I have one service which has one input as period I put days value it give error but when put it hardcode values then it works fine
Solved! Go to Solution.
Hi,
Try this:
select "Date","Temp"
from public."Temperature" where "Date" between (now()-[[period]]::interval) and now();
On my end is working fine.
Hope it helps,
Raluca Edu
Hi,
Try this:
select "Date","Temp"
from public."Temperature" where "Date" between (now()-[[period]]::interval) and now();
On my end is working fine.
Hope it helps,
Raluca Edu
Thank you so much