> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mindsdb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Query Projects

## Description

The `query()` methods enables you to run queries on models, tables, and views stored in a project.

## Syntax

Use the `query()` method to submit a query to a project:

```python theme={null}
query = project.query('SELECT * FROM my_table;')
query.fetch()
```
