how to drop table in MySQL database

Himmat Kumar Nov 25, 2024, 1:59 PM
MySQL
Views 189
Blog Thumbnail

Remove table using SQL Query in MySQL

Remove table in my sql database using SQL Query in MySQL

Steps:

  1. Open phpMyAdmin in your system.
  2. Click on the SQL tab.
  3. Paste the query

    DROP TABLE Students;

  4. how to create table in mysql database
  5. Click the "Go" button.
  6. You should see a success message.
  7. Refresh the page to check if the Table is Remove successfully.
  8. how to create table in mysql database

Syntax

DROP TABLE Table_name;

Note : In table name not allow " " space in beetween name use "_" for space.
column1 to column4 is coloum name you can modify and name give you according requirement.
datatype data type basically define a type of column . Example column1 is int show store integer value.

Example of remove a tabLe in MySQL:

You Can follow statement and remove table in Mysql

DROP TABLE Students;

when run this statement in sql remove a table in your database.

after delete table refresh database and see table is deleted :
how to create table in mysql database

Comments

Please login to leave a comment.

No comments yet.

Related Posts

how-to-drop-database-in-mysql
123 viewsMySQL
Himmat Kumar Nov 12, 2024, 2:56 AM

How to drop database in MySQL ?

what-is-mysql-database
129 viewsMySQL
Himmat Kumar Nov 7, 2024, 4:40 AM

What is MySQL database?

how-to-create-database-in-MySQL
117 viewsMySQL
Himmat Kumar Nov 7, 2024, 7:46 AM

How to create database in MySQL

how-to-create-table-in-mysql
239 viewsMySQL
Himmat Kumar Nov 12, 2024, 3:56 AM

how to create table in MySQL database?

nextjs-explained-beginners-guide-2025
317 viewsnextjs
Himmat Regar Jun 27, 2025, 10:12 AM

Next.js Explained: A 2025 Beginner’s Guide to the React...

responsive-meta-seo-friendly-markup-2025
450 viewsHTML
Himmat Regar Jun 23, 2025, 4:23 PM

Mastering Responsive Meta & SEO-Friendly Markup in 2025

framework-concept-in-programming
229 viewsFramework
Himmat Kumar Oct 6, 2024, 3:22 AM

What is a Framework Concept in Programming? And Why You...

html-paragraph-tag-guide
1250 viewsHTML
Himmat Kumar Apr 8, 2025, 1:50 PM

HTML Paragraph Tag – Complete Guide with Examples

javascript-data-types-explained
Himmat Kumar Mar 25, 2025, 12:17 PM

JavaScript Data Types Explained with Examples

what-is-laravel-request
405 viewsLaravel
Himmat Kumar Dec 24, 2024, 10:55 AM

What is a request in Laravel?