I'm using postgres and I have this record that has the date_time column:
"2015-09-01 09:41:15"
When I do a psql query from pgadmin:
select * from table where date_time >= '2015-08-31' and date_time <= '2015-09-01'
This specific record does not show up even though I used = sign. If i use <= '2015-09-02' it shows up. Is there a way for the record to show up in a query using <= '2015-09-01' since its = to the time queried?
My time column:
date_time timestamp without time zone DEFAULT '0001-01-01 00:00:00'::timestamp without time zone,