Files
mindsdb--minds/docs/mindsdb_sql/sql/api/select-view.mdx
martyna-mindsdb 8578740c7f restructured docs sections into tabs (#8633)
* restructured docs sections into tabs

* restructured docs

* changes to SQL API

* fixed some links
2024-01-18 18:10:44 +01:00

18 lines
233 B
Plaintext

---
title: Query a View
sidebarTitle: Query a View
---
## Description
The `SELECT` statement fetches data from a view that resides inside a project.
## Syntax
Here is the syntax:
```sql
SELECT *
FROM project_name.view_name;
```