This commit is contained in:
2025-11-07 14:12:24 +01:00
parent 089739b288
commit ed4fbea57c

View File

@@ -1,5 +1,13 @@
# Syntaxe PostgreSQL # Syntaxe PostgreSQL
## Incrément automatique
Créer une colonne id (identifiant) clé primaire avec incrémentation automatique
```sql
id bigint primary key generated always as identity
```
## Procédures stockées ## Procédures stockées
```sql ```sql