SlideShare a Scribd company logo
By : Dhirendra Chauhan
DROP Command
“The DROP Command Perform Three Types Task in MySql”
1. Drop Database
2. Drop Table
3. Drop Column
Drop Database
The DROP DATABASE statement is used to drop an existing SQL
database.
Syntax:
DROP DATABASE database_name;
Example
DROP DATABASE Hill;
Drop Database
Drop Table
The DROP TABLE statement is used to drop an
existing table in a Database, Permanently .
Syntax:
DROP TABLE table_name;
Example
DROP TABLE Employees;
DROP Table
Drop Column
This Command delete a column in a table,
Permanently
Syntax:
ALTER TABLE table_name DROP COLUMN column_name;
Example
ALTER TABLE Employee DROP COLUMN EMail;
Drop Column
THANK
YOU

More Related Content

PPTX
Oracle Database Sequence
PPTX
Oracle Database DML DDL and TCL
PDF
STRUCTURED QUERY LANGUAGE
PPTX
8. sql
PPTX
V35 keys-c
PPTX
V34 numeric function-c
PPTX
V33 date function-c
PPTX
V31 having
Oracle Database Sequence
Oracle Database DML DDL and TCL
STRUCTURED QUERY LANGUAGE
8. sql
V35 keys-c
V34 numeric function-c
V33 date function-c
V31 having

More from Dhirendra Chauhan (20)

PPTX
V30 full join(union intersect etc)
PPTX
V29 group by-c
PPTX
PPTX
V27 constraint
PPTX
PPTX
V25 sql index
PPTX
V24 cartesion product-c
PPTX
V23 function-2
PPTX
V22 function-1
PPTX
V21 in operator
PPTX
V20 bet ween operator-c
PPTX
V19 join method-c
PPTX
V18 alias-c
PPTX
V17 show command-c
PPTX
V16 sql comments-c
PPTX
V15 like operator-c
PPTX
V3 employment-unemployment
PPTX
V2 infrastructure
PPTX
PPTX
National income value added method
V30 full join(union intersect etc)
V29 group by-c
V27 constraint
V25 sql index
V24 cartesion product-c
V23 function-2
V22 function-1
V21 in operator
V20 bet ween operator-c
V19 join method-c
V18 alias-c
V17 show command-c
V16 sql comments-c
V15 like operator-c
V3 employment-unemployment
V2 infrastructure
National income value added method
Ad

Recently uploaded (20)

PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
Classroom Observation Tools for Teachers
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PPTX
Cell Structure & Organelles in detailed.
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
Weekly quiz Compilation Jan -July 25.pdf
RMMM.pdf make it easy to upload and study
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Classroom Observation Tools for Teachers
O7-L3 Supply Chain Operations - ICLT Program
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Orientation - ARALprogram of Deped to the Parents.pptx
FourierSeries-QuestionsWithAnswers(Part-A).pdf
01-Introduction-to-Information-Management.pdf
Microbial diseases, their pathogenesis and prophylaxis
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
Cell Structure & Organelles in detailed.
Chinmaya Tiranga quiz Grand Finale.pdf
Final Presentation General Medicine 03-08-2024.pptx
Anesthesia in Laparoscopic Surgery in India
Ad

Drop Command