About 470,000 results
Open links in new tab
  1. How to Show a List of All Databases in MySQL - GeeksforGeeks

    Jul 8, 2024 · In this article, you will discover how to list all the databases in MySQL along with some examples. The MySQL, SHOW DATABASES is used to list the databases that are within the MySQL environment. It prints all the databases including the default system databases.

  2. MySQL SHOW DATABASES: List All Databases in MySQL - MySQL

    In this tutorial, you will learn to list databases in the MySQL database server using the MySQL SHOW DATABASES command.

  3. MySQL :: MySQL 8.4 Reference Manual :: 15.7.7.15 SHOW DATABASES

    SHOW {DATABASES | SCHEMAS} [LIKE 'pattern' | WHERE expr] SHOW DATABASES lists the databases on the MySQL server host. SHOW SCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present, indicates which database names to match.

  4. How to List of All Databases in MySQL - MySQL Tutorial

    You can list all the databases available in the MySQL server without logging into the MySQL server from the command line itself using the -e flag followed by the SHOW DATABASES command. This is especially useful when you want to …

  5. How to Show a List of All Databases in MySQL - Linuxize

    Jun 21, 2019 · The most common way to get a list of the MySQL databases is by using the mysql client to connect to the MySQL server and run the SHOW DATABASES command. Access the MySQL server using the following command and enter your MySQL user password when prompted: If you haven’t set a password for your MySQL user you can omit the -p switch.

  6. MySQL SHOW Databases Statement - Online Tutorials Library

    Learn how to use the MySQL SHOW DATABASES statement to retrieve a list of databases on your MySQL server. Understand its syntax and practical examples for effective database management.

  7. MySQL SHOW DATABASES Command Tutorial With Examples

    Apr 1, 2025 · In this tutorial, we learned about the SHOW DATABASES command, which is used to fetch the names of the databases available in the MySQL server. We also saw different examples using this command and how we can apply filters using LIKE and WHERE clauses to get a filtered list of database names.

  8. 5.4 Getting Information About Databases and Tables - MySQL

    MySQL addresses this problem through several statements that provide information about the databases and tables it supports. You have previously seen SHOW DATABASES, which lists the databases managed by the server.

  9. Show All Databases in MySQL: Easy Ways - MySQLCode

    Sep 24, 2022 · In this tutorial, we will see how can we list all the databases in MySQL using CLI as well as the MySQL workbench. There are multiple ways you can list all the databases using CLI. We will see all the available methods out there. So, let’s get started! Also read: MySQL Show Users – A Complete Guide.

  10. How to show all databases in MySQL?

    Jan 15, 2025 · The methods outlined in this article provide a range of ways to display all databases in MySQL, including using the SHOW DATABASES command, the SHOW Databases table, the mysql command, the information_schema table, and the --database option.

  11. Some results have been removed