

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can we get only the name having no other details about the tables in MySQL database?
With the help of SHOW TABLES command, we can get only the name having no other information about the tables. For example, we can see the list of tables in a database named tutorial as follows −
mysql> show tables; +--------------------+ | Tables_in_tutorial | +--------------------+ | student | +--------------------+ 1 row in set (0.00 sec)
- Related Questions & Answers
- How can we use INFORMATION_SCHEMA to get the details about triggers in a particular database?
- While connecting to one MySQL database, how can I see the list of tables of other MySQL database?
- How can we see only name and types of the stored routines in a particular MySQL database?
- How can we get the list of tables in a particular database from MySQL Server command line?
- How can I check the tables of databases other than current database?
- How can I query for all the tables having a particular column name?
- How can we check the character set of all the tables in a particular MySQL database?
- How can we see MySQL temporary tables in the list of tables?
- How to get the list of tables in default MySQL database?
- How to get the size of the tables of a MySQL database?
- How can we change the default MySQL database to the given database?
- How can we get an idea about the server performance from the output of MySQL?
- How can we analyze the tables of a particular database from MySQL Server command line?
- How can we see only the list of stored functions in a particular MySQL database?
- How can we see only the list of stored procedures in a particular MySQL database?
Advertisements