SQL Alter Table Constraint Not Null & Default Multi Kolom
- Categories:
- postgresql
- sql
Saat alter tabel mengubah untuk constraint NOT NULL
atau DEFAULT
dapat dilakukan dengan satu query sekaligus untuk banyak kolom dengan SQL pada PostgreSQL.
Misal ada tabel users
dengan kolom berikut.
Memasang constraint NOT NULL
dan DEFAULT
pada kolom email
dan name
dapat menggunakan satu query SQL berikut.
Hasil alter table diatas dapat dilihat dengan perintah \d
pada PostgreSQL.
Untuk menghapus constraint NOT NULL
dan DEFAULT
pada banyak kolom juga bisa dilakukan sengan menjalan sebuah query SQL saja seperti berikut.
Seperti sebelumnya, hasil query SQL diatas dapat dilihat melalui perintah bawaan PostgreSQL \d
.
- Tags:
- #postgresql
- #sql
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.