{"id":27102,"date":"2018-06-08T04:35:06","date_gmt":"2018-06-08T09:35:06","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27102"},"modified":"2022-06-03T03:34:56","modified_gmt":"2022-06-03T08:34:56","slug":"how-to-list-all-databases-in-mysql","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","title":{"rendered":"How To Show A List Of All DataBases In MySQL"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignnone size-full wp-image-27105\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\" alt=\"how to list all databases in mysql\" width=\"742\" height=\"371\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg 742w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL-150x75.jpg 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL-300x150.jpg 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" \/><\/p>\r\n<p>We will show you how to list all databases in MySQL, i.e how to have a list of all MySQL databases. MySQL is an open-source relational database management system commonly used with web-based applications like WordPress, Magento, etc. In this tutorial, we will show you how to list all databases in MySQL on a <a href=\"https:\/\/www.rosehosting.com\/linux-vps-hosting\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a>.<\/p>\r\n<p><!--more--><\/p>\r\n<p>Before you start listing all tables in MySQL, make sure that you have full root access to your Linux server, or at least you have a <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-create-a-sudo-user-on-ubuntu\/\" target=\"_blank\" rel=\"noopener noreferrer\">system user with sudo privileges<\/a> that you can use to connect to your server. Once you <a href=\"https:\/\/www.rosehosting.com\/blog\/connect-to-your-linux-vps-via-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">connect to your server via SSH<\/a> run the following command to check whether you have a <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-mysql-on-ubuntu-16-04\/\" target=\"_blank\" rel=\"noopener noreferrer\">MySQL database server installed<\/a> on your VPS and what is the version:<\/p>\r\n<pre>mysql -V<\/pre>\r\n<p>The output of the command should be similar to the one below:<\/p>\r\n<pre># mysql -V\r\nmysql  Ver 14.14 Distrib 5.7.22, for Linux (x86_64) using  EditLine wrapper<\/pre>\r\n<p>Next, to connect to the MySQL database server through the command line as user <code>root<\/code> run the following command:<\/p>\r\n<pre>mysql -u root -p<\/pre>\r\n<p>MySQL will ask you to enter the password for the MySQL root user. Enter the password and press <code>Enter<\/code>. If you haven&#8217;t already set up a password for the MySQL root user, you can use the following command:<\/p>\r\n<pre>mysql -u root<\/pre>\r\n<p>Of course, it is always recommended to keep your services secure, so if you haven&#8217;t set up the <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-the-mysql-root-password\/\" target=\"_blank\" rel=\"noopener noreferrer\">MySQL root password<\/a> yet, you can do that now using the <code>mysql_secure_installation<\/code> command without arguments:<\/p>\r\n<pre>mysql_secure_installation<\/pre>\r\n<p>Then, answer the security questions as follows:<\/p>\r\n<pre>Would you like to setup VALIDATE PASSWORD plugin?\r\nPress y|Y for Yes, any other key for No: y\r\n\r\nPlease set the password for root here.\r\nNew password:\r\n\r\nDo you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y\r\n\r\nRemove anonymous users? (Press y|Y for Yes, any other key for No) : y\r\n\r\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : y\r\n\r\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : y\r\n\r\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : y\r\n\r\nAll done!\r\n<\/pre>\r\n<p>Then, connect to the MySQL database server using the MySQL root user and enter your new root password.<\/p>\r\n<h2>To list all databases in MySQL, run the following command:<\/h2>\r\n<pre>mysql&gt; show databases;<\/pre>\r\n<p>This command will work for you no matter if you have an <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu VPS<\/a> or <a href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS VPS<\/a>.<\/p>\r\n<p>The output of the command should be similar to the one below:<\/p>\r\n<pre>mysql&gt; show databases;\r\n+--------------------+\r\n| Database           |\r\n+--------------------+\r\n| information_schema |\r\n| mysql              |\r\n| performance_schema |\r\n| sys                |\r\n+--------------------+\r\n4 rows in set (0.00 sec)\r\n<\/pre>\r\n<p>If you have other databases created in MySQL, they will be all listed here.<br \/>Next, if you want to use a specific database and list all tables in it, you can use the following commands:<\/p>\r\n<pre>mysql&gt; use mysql;\r\n<\/pre>\r\n<p>To list the tables, you can use the command below:<\/p>\r\n<pre>mysql&gt; show tables<\/pre>\r\n<p>The tables will be listed in the following format:<\/p>\r\n<pre>mysql&gt; show tables;\r\n+---------------------------+\r\n| Tables_in_mysql           |\r\n+---------------------------+\r\n| columns_priv              |\r\n| db                        |\r\n| engine_cost               |\r\n| event                     |\r\n| func                      |\r\n| general_log               |\r\n| gtid_executed             |\r\n| help_category             |\r\n| help_keyword              |\r\n| help_relation             |\r\n| help_topic                |\r\n| host                      |\r\n| innodb_index_stats        |\r\n| innodb_table_stats        |\r\n| ndb_binlog_index          |\r\n| plugin                    |\r\n| proc                      |\r\n| procs_priv                |\r\n| proxies_priv              |\r\n| server_cost               |\r\n| servers                   |\r\n| slave_master_info         |\r\n| slave_relay_log_info      |\r\n| slave_worker_info         |\r\n| slow_log                  |\r\n| tables_priv               |\r\n| time_zone                 |\r\n| time_zone_leap_second     |\r\n| time_zone_name            |\r\n| time_zone_transition      |\r\n| time_zone_transition_type |\r\n| user                      |\r\n+---------------------------+\r\n32 rows in set (0.00 sec)\r\n<\/pre>\r\n<p>If you want to find out about the structure of a specific table you can use the <code>DESCRIBE<\/code> statement in MySQL:<\/p>\r\n<pre>mysql&gt; DESCRIBE user;<\/pre>\r\n<p>The output will show you information about each of the columns in the table.<\/p>\r\n<p>If you want to go a little further and learn more about how to use the MySQL database service you can also check our tutorials on <a href=\"https:\/\/www.rosehosting.com\/blog\/mysql-show-users\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to show all users in MySQL<\/a> or <a href=\"https:\/\/www.rosehosting.com\/blog\/create-a-new-mysql-user-and-grant-permissions-to-mysql-database\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to create a new user in MySQL and grant permissions to a MySQL database<\/a>. Advanced topics include <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-configure-remote-and-secure-connections-for-mysql-on-ubuntu-16-04-vps\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to configure remote and secure connections for MySQL<\/a> as well as <a href=\"https:\/\/www.rosehosting.com\/blog\/optimizing-and-repairing-mysql-databases-with-mysqlcheck\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to optimize and repair MySQL databases with mysqlcheck<\/a>.<\/p>\r\n<hr \/>\r\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-27106\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/mysql-list-users.jpg\" alt=\"MySQL List Users\" width=\"96\" height=\"108\" \/>Of course, you don\u2019t have to list all tables in MySQL,\u00a0 if you are using one of our <a href=\"https:\/\/www.rosehosting.com\/mysql-hosting.html\">MySQL VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to help you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\r\n<p>PS. If you liked this post on how to list all databases in MySQL on a Linux VPS, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\r\n\r\n<p>&nbsp;<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>We will show you how to list all databases in MySQL, i.e how to have a list of all MySQL &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How To Show A List Of All DataBases In MySQL\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#more-27102\" aria-label=\"Read more about How To Show A List Of All DataBases In MySQL\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27105,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[1718,39],"class_list":["post-27102","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","tag-list-databases","tag-mysql","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MySQL SHOW DATABASES: List All Databases in MySQL<\/title>\n<meta name=\"description\" content=\"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Show A List Of All DataBases In MySQL\" \/>\n<meta property=\"og:description\" content=\"How To Show A List Of All DataBases In MySQL | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-08T09:35:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:34:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How To Show A List Of All DataBases In MySQL\",\"datePublished\":\"2018-06-08T09:35:06+00:00\",\"dateModified\":\"2022-06-03T08:34:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/\"},\"wordCount\":553,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/How-to-List-All-Databases-in-MySQL.jpg\",\"keywords\":[\"list databases\",\"mysql\"],\"articleSection\":[\"Databases\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/\",\"name\":\"MySQL SHOW DATABASES: List All Databases in MySQL\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/How-to-List-All-Databases-in-MySQL.jpg\",\"datePublished\":\"2018-06-08T09:35:06+00:00\",\"dateModified\":\"2022-06-03T08:34:56+00:00\",\"description\":\"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/How-to-List-All-Databases-in-MySQL.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/How-to-List-All-Databases-in-MySQL.jpg\",\"width\":742,\"height\":371,\"caption\":\"how to list all databases in mysql\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-list-all-databases-in-mysql\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Show A List Of All DataBases In MySQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MySQL SHOW DATABASES: List All Databases in MySQL","description":"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","og_locale":"en_US","og_type":"article","og_title":"How To Show A List Of All DataBases In MySQL","og_description":"How To Show A List Of All DataBases In MySQL | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-06-08T09:35:06+00:00","article_modified_time":"2022-06-03T08:34:56+00:00","og_image":[{"width":742,"height":371,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How To Show A List Of All DataBases In MySQL","datePublished":"2018-06-08T09:35:06+00:00","dateModified":"2022-06-03T08:34:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/"},"wordCount":553,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","keywords":["list databases","mysql"],"articleSection":["Databases"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","name":"MySQL SHOW DATABASES: List All Databases in MySQL","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","datePublished":"2018-06-08T09:35:06+00:00","dateModified":"2022-06-03T08:34:56+00:00","description":"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","width":742,"height":371,"caption":"how to list all databases in mysql"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Show A List Of All DataBases In MySQL"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27102","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=27102"}],"version-history":[{"count":4,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27102\/revisions"}],"predecessor-version":[{"id":40966,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27102\/revisions\/40966"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27105"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27102"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27102"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27102"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}