I have date and time stored in postgres as timestamp format in postgres like this:
created_time timestamp without time zone DEFAULT now(),
now I want to search for rows that have created_time between date_before and date_after fields. both these fields are query strings.
How can i filter data with this?
2020-06-22 19:10:25-07