> For the complete documentation index, see [llms.txt](https://til.kurianbenoy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.kurianbenoy.com/databases/querying-date-ranges-in-postgres.md).

# Querying Date ranges in postgres

When we are trying to query a Date with an PostgresSQL query like:

```
SELECT d, name from table1
where d between '2021-10-01' and '2021-11-31';
```

You will notice your query in Postgres is not including the upper bond ie **2021-11-31.** &#x20;

**I**norder to resolve this you can query it like below using DATE field with <= and >= operator. This will ensure both the dates are included in the upper bound and lower bound.

```
SELECT d, name from table1
where DATE(d) >= '2021-10-01' and DATE(d) <= '2021-11-31';
```

This query can be implemented in SQLAlchemy as following:

```
db.query(table1.d, table1.name)
.filter(
    func.date(table1.d)>='2021-10-01',
    func.date(table1.d)<='2021-11-31'
    )
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://til.kurianbenoy.com/databases/querying-date-ranges-in-postgres.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
