Drop Table Pada PostgreSQL

Pada tutorial sebelumnya, Anda telah belajar tentang Cara Membuat Tabel di PostgreSQL. Pada tutorial kali ini, Anda akan belajar Bagaimana Cara Menghapus Table di PostgreSQL. Silakan Anda baca lebih detail di tutorial ini.

Drop Table In PostgreSQL

Apa Itu Drop Table?

Drop Table adalah salah satu perintah SQL di PostgreSQL yang digunakan untuk menghapus sebuah atau beberapa tabel beserta atribut di dalamnya, seperti index, constraint, trigger, dan lain sebagainya.

Baca Juga: Menggunakan Perintah Drop Table Di Oracle Database.

Sintak Dasar

Di bawah ini adalah sintak dasar Drop Table di PostgreSQL:

DROP TABLE table_name;

Contoh

Asumsikan Anda telah memiliki beberapa daftar table di database "hr" seperti 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 menggunakan 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 menggunakan 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, menunjukan bahwa Anda telah berhasil menghapus tabel test3 dan test3. Good Luck:)

                                                                    ~~~~ ### ~~~~

Sekian tutorial tentang Menggunakan Perintah Drop Table Di PostgreSQL. Semoga bermanfaat & Happy Learning PostgreSQL Database.

Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment