Pada tutorial sebelumnya, Anda telah berguru perihal Cara Membuat Tabel di PostgreSQL. Pada tutorial kali ini, Anda akan berguru Bagaimana Cara Menghapus Table di PostgreSQL. Silakan Anda baca lebih detail di tutorial ini.
Apa Itu Drop Table?
Drop Table ialah salah satu perintah SQL di PostgreSQL yang dipakai untuk menghapus sebuah atau beberapa tabel beserta atribut di dalamnya, ibarat index, constraint, trigger, dan lain sebagainya.Baca Juga: Menggunakan Perintah Drop Table Di Oracle Database.
Sintak Dasar
Di bawah ini ialah sintak dasar Drop Table di PostgreSQL:DROP TABLE table_name;
Contoh
Asumsikan Anda telah mempunyai beberapa daftar table di database "hr" ibarat di bawah ini:hr=# \d List of relations Schema | Name | Type | Owner --------+---------+-------+---------- public | pegawai | table | postgres public | test1 | table | postgres public | test2 | table | postgres public | test3 | table | postgres (4 rows)
Dari daftar tabel di atas, coba Anda hapus tabel test1 memakai perintah di bawah ini:
hr=# DROP TABLE test1; DROP TABLE
Coba Anda tampilkan kembali daftar tabel untuk melihat apakah tabel test1 berhasil Anda hapus atau tidak.
hr=# \d List of relations Schema | Name | Type | Owner --------+---------+-------+---------- public | pegawai | table | postgres public | test2 | table | postgres public | test3 | table | postgres (3 rows)
Dari daftar tabel diatas, terlihat bahwa tabel test1 berhasil dihapus.
Sebagai latihan lagi, coba Anda hapus table test2, dan test3 secara bersamaan memakai perintah di bawah ini:
hr=# DROP TABLE test2,test3; DROP TABLE
Coba Anda tanpilkan kembali daftar tabel untuk melihat apakah tabel test2 dan test3 berhasil Anda hapus.
hr=# \d List of relations Schema | Name | Type | Owner --------+---------+-------+---------- public | pegawai | table | postgres (1 row)
Daftar table di atas, menandakan bahwa Anda telah berhasil menghapus tabel test3 dan test3. Good Luck:)
###
Sekian tutorial perihal Menggunakan Perintah Drop Table Di PostgreSQL. Semoga bermanfaat & Happy Learning PostgreSQL Database.