Hi
Shambhu Rai
Please try this expression
filter(df['Updatedtime'].between( current_timestamp(),current_timestamp()-1)
In your case, you are passing current_timestamp and 1 to the between function and hence you are getting the error. We need to pass two valid timestamps for it to work fine.
Kindly try above expression and let us know if that works.
Thanks