Advertisements
Advertisements
Question
Write few commands used by DBA to control the entire database.
Answer in Brief
Solution
- USE Database-
This command is used to select the database in MySQL for working.Syntax:
mysql > use test;
Database changed
mysql> - SHOW Databases-
Lists all the databases available in the database server.Syntax:
mysql > show databases; - SHOW Tables-
Lists all the tables available in the current database we are working in.Syntax:
mysql > show tables; - SHOW COLUMNS FROM tablename-
Lists all the attributes, attribute type, Is Null value permitted, key information, default value and other information for the given table.Syntax:
mysql > show columns from sports; - SHOW INDEX FROM tablename-
The query shows all the indexes for the given table.
Syntax:
mysql > show indexes from sports; -
SHOW TABLE STATUS LIKE tablename\G-
This command provides with detailed report on the performance of the table.
shaalaa.com
Introduction to SQL
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Communication is established with MySQL using ______.
Which is the MySQL instance responsible for data processing?
List any two DDL commands with its Syntax.
List any two DML commands with its Syntax.
Which command is used to make permanent changes done by a transaction?
What is view in SQL?
Which command lets to change the structure of the table?
Queries can be generated using ______
What is the difference between SQL and MySQL?
Explain the DDL command of their functions in SQL.