8578740c7f
* restructured docs sections into tabs * restructured docs * changes to SQL API * fixed some links
18 lines
233 B
Plaintext
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;
|
|
```
|