I\'m trying to perform the following query in Sqlalchemy.
Select * from \"Mytable\" where Date(date_time_field) = \"2011-08-16\";
I have tried
in postgreSQL if date_time_field is one field of your table then quer must like this. Select * from Mytable where date_time_field = '2011-08-16'