SlideShare a Scribd company logo
By : Dhirendra Chauahn
Show Command
Show command can perform Following types task in MySql
1. Show Databases
2. Show Tables
3. Show Create Table
“Show Command display the all record from Mysql”
Show Databases
“SHOW DATABASES statement is used to lists the databases on the
MySQL server host”
Syntax /Example:
SHOW DATABASES;
Show Databases
“SHOW DATABASES Like statement is used to lists the databases on
the MySQL server host according to Database character”
Syntax /Example:
SHOW DATABASES LIKE ‘m%’;
Show Tables
“To get a list of the tables in a MySQL database, use
the mysql client tool to connect to the MySQL server and run
the SHOW TABLES command”
Syntax /Example:
SHOW TABLES;
Show Create Tables
“SHOW CREATE TABLE statement is used to show the create
table statement.”
Syntax:
Show Create Table table_Name;
Example
Show Create Table a2;
THANK
YOU

More Related Content

PPTX
V17 show command-c
DOCX
Dbms file for b.tech 3rd year(aktu)
PPTX
Part 7 navigating through recordset in vb.net
PPTX
Part 6 filter using table record in vb.net
PPTX
PPTX
V30 full join(union intersect etc)
PDF
mysqlanditsbasiccommands-150226033905-conversion-gate02.pdf
PPT
MySql slides (ppt)
V17 show command-c
Dbms file for b.tech 3rd year(aktu)
Part 7 navigating through recordset in vb.net
Part 6 filter using table record in vb.net
V30 full join(union intersect etc)
mysqlanditsbasiccommands-150226033905-conversion-gate02.pdf
MySql slides (ppt)

Similar to Show Command (20)

DOCX
unit-5 sql notes.docx
PPT
MySQL and its basic commands
PPTX
Getting Started with MySQL I
PDF
Database Management System 1
PPT
Getting started into mySQL
PPT
MySQL Database System Hiep Dinh
PPT
mysqlHiep.ppt
PPT
ODP
PPTX
Using Mysql.pptx
PPTX
sql12.pptxsql12.pptxsql12.pptxsql12.pptx
PPTX
Mysql-overview.pptx
PPTX
INTRO TO SQL
PPTX
Introduction databases and MYSQL
PPTX
PHP mysql Introduction database
PDF
Chapter – 6 SQL Lab Tutorial.pdf
PPTX
Create Database
PDF
LECTURE NOTES.pdf
PDF
LECTURE NOTES.pdf
unit-5 sql notes.docx
MySQL and its basic commands
Getting Started with MySQL I
Database Management System 1
Getting started into mySQL
MySQL Database System Hiep Dinh
mysqlHiep.ppt
Using Mysql.pptx
sql12.pptxsql12.pptxsql12.pptxsql12.pptx
Mysql-overview.pptx
INTRO TO SQL
Introduction databases and MYSQL
PHP mysql Introduction database
Chapter – 6 SQL Lab Tutorial.pdf
Create Database
LECTURE NOTES.pdf
LECTURE NOTES.pdf
Ad

More from Dhirendra Chauhan (20)

PPTX
V35 keys-c
PPTX
V34 numeric function-c
PPTX
V33 date function-c
PPTX
V31 having
PPTX
V29 group by-c
PPTX
PPTX
V27 constraint
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
V16 sql comments-c
PPTX
V15 like operator-c
PPTX
V3 employment-unemployment
PPTX
V2 infrastructure
PPTX
V35 keys-c
V34 numeric function-c
V33 date function-c
V31 having
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
V16 sql comments-c
V15 like operator-c
V3 employment-unemployment
V2 infrastructure
Ad

Recently uploaded (20)

PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Trump Administration's workforce development strategy
PPTX
Lesson notes of climatology university.
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Orientation - ARALprogram of Deped to the Parents.pptx
Weekly quiz Compilation Jan -July 25.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
VCE English Exam - Section C Student Revision Booklet
Trump Administration's workforce development strategy
Lesson notes of climatology university.
Final Presentation General Medicine 03-08-2024.pptx
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Microbial diseases, their pathogenesis and prophylaxis
2.FourierTransform-ShortQuestionswithAnswers.pdf
human mycosis Human fungal infections are called human mycosis..pptx
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
STATICS OF THE RIGID BODIES Hibbelers.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
GDM (1) (1).pptx small presentation for students
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
school management -TNTEU- B.Ed., Semester II Unit 1.pptx

Show Command

  • 1. By : Dhirendra Chauahn
  • 2. Show Command Show command can perform Following types task in MySql 1. Show Databases 2. Show Tables 3. Show Create Table “Show Command display the all record from Mysql”
  • 3. Show Databases “SHOW DATABASES statement is used to lists the databases on the MySQL server host” Syntax /Example: SHOW DATABASES;
  • 4. Show Databases “SHOW DATABASES Like statement is used to lists the databases on the MySQL server host according to Database character” Syntax /Example: SHOW DATABASES LIKE ‘m%’;
  • 5. Show Tables “To get a list of the tables in a MySQL database, use the mysql client tool to connect to the MySQL server and run the SHOW TABLES command” Syntax /Example: SHOW TABLES;
  • 6. Show Create Tables “SHOW CREATE TABLE statement is used to show the create table statement.” Syntax: Show Create Table table_Name; Example Show Create Table a2;