Files
mindsdb--mindsdb/docs/mindsdb_sql/sql/create/project.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

17 lines
406 B
Plaintext

---
title: Create a Project
sidebarTitle: Create a Project
---
## Description
MindsDB introduces projects that are a natural way to keep artifacts, such as models or views, separate according to what predictive task they solve. You can learn more about MindsDB projects [here](/sql/project).
## Syntax
Here is the syntax for creating a project:
```sql
CREATE PROJECT [IF NOT EXISTS] project_name;
```