Skip to content

Coder Tutorial

Menu
  • Home
  • HTML
  • CSS
  • PHP
  • SQL
  • MySQL
  • JS
  • PL/SQL
  • Python
  • Java
  • Oracle
Home
SQL
SQL Drop Table

SQL Drop Table

SQL Drop Table

The SQL command DROP TABLE is used to delete a table from a database.

Drop Table syntax

DROP TABLE table_name;

Drop Table example

CREATE TABLE abc_table
(
ID INT,
NAME VARCHAR(150),
AGE INT
);

DROP TABLE abc_table;

Tutorials

  • SQL Tutorial
  • SQL Create Table
  • SQL Drop Table
  • SQL Insert
  • SQL Update
  • SQL Delete
  • SQL Select
  • SQL Distinct
  • SQL Where
  • SQL And – Or
  • SQL Between
  • SQL Like
  • SQL Order By
  • SQL Group By
  • SQL Having
  • SQL AVG
  • SQL Count
  • SQL SUM
  • SQL MAX
  • SQL MIN

Recent Posts

  • Java Polymorphism
  • Java Encapsulation
  • Java Abstraction
  • PostgreSQL ERROR: cannot begin/end transactions in PL/pgSQL
  • PostgreSQL Column must appear in the GROUP BY clause
  • PostgreSQL Column specified more than once
  • PostgreSQL Create database, Alter database examples
  • PostgreSQL Create schema syntax, Alter schema
  • PostgreSQL Create database user, alter and drop username
  • PostgreSQL Alter table name. Modify column name
Coder Tutorial Copyright © 2025. | Privacy Policy
Back to Top ↑