mirror of
https://github.com/Steffo99/alexandria.git
synced 2024-11-22 05:44:19 +00:00
13 lines
310 B
Markdown
13 lines
310 B
Markdown
# Creazione database
|
|
|
|
Come primo passo della progettazione fisica si è creato un nuovo database su PostgreSQL attraverso il seguente comando [Bash](https://it.wikipedia.org/wiki/Bash):
|
|
|
|
```bash
|
|
createdb alexandria
|
|
```
|
|
|
|
Esso è equivalente alla seguente istruzione SQL:
|
|
|
|
```sql
|
|
CREATE DATABASE alexandria;
|
|
```
|