{"id":15827,"date":"2019-03-05T11:39:50","date_gmt":"2019-03-05T11:39:50","guid":{"rendered":"https:\/\/www.hostinger.com\/tutorials\/?p=15827"},"modified":"2025-04-28T08:00:14","modified_gmt":"2025-04-28T08:00:14","slug":"mysql-show-users","status":"publish","type":"post","link":"\/tutorials\/mysql-show-users","title":{"rendered":"How to show users in MySQL and user information using Linux"},"content":{"rendered":"<p>A MySQL database server is frequently the first choice for developers and anyone interested in testing a structured query language. MySQL includes numerous features that make it dependable, secure, and efficient.<\/p><p>There are, however, some ways to improve MySQL server security even further. One of them is to create database users with restricted access.<\/p><p>This tutorial will explain why you should create separate MySQL user accounts and how to use the MySQL <strong>SHOW USERS<\/strong> command on your VPS.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/assets.hostinger.com\/content\/tutorials\/pdf\/Linux-Commands-Cheat-Sheet.pdf\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" width=\"2048\" height=\"566\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/11\/Linux-cheat-sheet.png\/public\" alt=\"\" class=\"wp-image-69262\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/11\/Linux-cheat-sheet.png\/w=2048,fit=scale-down 2048w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/11\/Linux-cheat-sheet.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/11\/Linux-cheat-sheet.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/11\/Linux-cheat-sheet.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/11\/Linux-cheat-sheet.png\/w=768,fit=scale-down 768w\" sizes=\"(max-width: 2048px) 100vw, 2048px\" \/><\/a><\/figure><\/div><p>\n\n\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-why-create-users-in-mysql-server\">Why Create Users in MySQL Server<\/h2><p>Whenever users or database administrators <a href=\"\/tutorials\/how-to-install-mysql-on-centos-7\">install MySQL<\/a>, the first user that will be created is the root user &ndash; the MySQL administrator. The root user will have permission to do everything on the MySQL database.<\/p><p>While having all the permissions can seem beneficial, doing so comes with its own security flaws, and sharing the root user between several people is dangerous. Hackers often try to log in as the root user and steal the hosted information or even destroy the whole MySQL server alongside its data.<\/p><p>Thus, system administrators <a href=\"\/tutorials\/mysql\/how-create-mysql-user-and-grant-permissions-command-line\">create users with specific permissions<\/a> on some databases. In other words, if credentials for one account get compromised, the impact will be minimal and manageable.<\/p><h2 class=\"wp-block-heading\" id=\"h-how-to-show-users-in-mysql-database-on-linux\">How to Show Users in MySQL Database on Linux<\/h2><p>Unlike the SHOW DATABASES or SHOW TABLES commands that display all databases or tables right away, the SHOW USERS command does not exist in MySQL. Even though there is no such command, users can use a MySQL query and get a full list of users in a given MySQL database server.<\/p><p>Follow the steps below for more information.<\/p><h3 class=\"wp-block-heading\" id=\"h-1-log-in-as-the-mysql-root-user\">1. Log in as the MySQL Root User<\/h3><p>Start by <a href=\"\/tutorials\/how-to-use-putty-ssh\">logging in to the VPS via SSH<\/a> as the root user. Once that&rsquo;s done, enter the MySQL command line with this command:<\/p><pre class=\"wp-block-preformatted\">sudo mysql -u root -p<\/pre><p>Then, enter your MySQL root password.<\/p><p>\n\n\n<div><p class=\"important\"><strong>Important!<\/strong> Keep in mind that system and MySQL root passwords are separate and can differ.<\/p><\/div>\n\n\n\n<\/p><p>Once you are in the MySQL console as the root user, you will be able to run queries to display other MySQL users.<\/p><h3 class=\"wp-block-heading\" id=\"h-2-use-the-mysql-show-users-query\">2. Use the MySQL SHOW USERS Query<\/h3><p>To show MySQL users created in the database server, use the following query:<\/p><pre class=\"wp-block-preformatted\">SELECT user FROM mysql.user;<\/pre><p>As a result, you will see the list of all the users that have been created in MySQL.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-result-displaying-all-the-users-created-in-a-MySQL-database..png\"><img decoding=\"async\" width=\"324\" height=\"311\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-result-displaying-all-the-users-created-in-a-MySQL-database..png\" alt=\"MySQL query result displaying all the users created in a MySQL database.\" class=\"wp-image-60038\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-result-displaying-all-the-users-created-in-a-MySQL-database..png 324w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-result-displaying-all-the-users-created-in-a-MySQL-database.-300x288.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-result-displaying-all-the-users-created-in-a-MySQL-database.-150x144.png 150w\" sizes=\"(max-width: 324px) 100vw, 324px\" \/><\/a><\/figure><\/div><p>Take note that there might be duplicate users. This is because MySQL filters access to a server according to the IP address it comes from.<\/p><p>You can also add a host column to see even more information using the following command:<\/p><pre class=\"wp-block-preformatted\">SELECT user,host FROM mysql.user;<\/pre><p>With this, you will be able to see the MySQL users and which host or IP address they have permission to access. In our case, all of the users are from a local database:<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-all-users-along-with-hosts..png\"><img decoding=\"async\" width=\"365\" height=\"272\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-all-users-along-with-hosts..png\" alt=\"MySQL query showcasing all users along with hosts.\" class=\"wp-image-60039\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-all-users-along-with-hosts..png 365w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-all-users-along-with-hosts.-300x224.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-all-users-along-with-hosts.-150x112.png 150w\" sizes=\"(max-width: 365px) 100vw, 365px\" \/><\/a><\/figure><\/div><h3 class=\"wp-block-heading\" id=\"h-3-see-more-mysql-user-information-optional\">3. See More MySQL User Information (Optional)<\/h3><p>If you need more information about MySQL users, the search command can be expanded with the help of MySQL queries.<\/p><p>For example, the following command will print out all possible information from the user table:<\/p><pre class=\"wp-block-preformatted\">SELECT * FROM mysql.user;<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showing-all-possible-information-from-a-MySQL-database-table.png\"><img decoding=\"async\" width=\"615\" height=\"389\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showing-all-possible-information-from-a-MySQL-database-table.png\/public\" alt=\"MySQL query showing all possible information from a MySQL database table\" class=\"wp-image-60040\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showing-all-possible-information-from-a-MySQL-database-table.png\/w=615,fit=scale-down 615w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showing-all-possible-information-from-a-MySQL-database-table.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showing-all-possible-information-from-a-MySQL-database-table.png\/w=150,fit=scale-down 150w\" sizes=\"(max-width: 615px) 100vw, 615px\" \/><\/a><\/figure><\/div><p>However, such output might look too messy to figure out. Thus, we recommend narrowing the search by using more specific queries.<\/p><p>Here are some of the more popular use-cases:<\/p><p><strong>Preview Table Columns<\/strong><\/p><p>The following query will display a preview of user table columns. It is especially helpful if users want to check information about a specific table.<\/p><pre class=\"wp-block-preformatted\">DESC mysql.user<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-preview-user-table-columns..png\"><img decoding=\"async\" width=\"968\" height=\"202\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-preview-user-table-columns..png\" alt=\"MySQL query to preview user table columns.\" class=\"wp-image-60042\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-preview-user-table-columns..png 968w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-preview-user-table-columns.-300x63.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-preview-user-table-columns.-150x31.png 150w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-preview-user-table-columns.-768x160.png 768w\" sizes=\"(max-width: 968px) 100vw, 968px\" \/><\/a><\/figure><\/div><p><strong>Display Only Unique Usernames<\/strong><\/p><p>To skip repeating usernames, the following query can be used:<\/p><pre class=\"wp-block-preformatted\">SELECT DISTINCT user FROM mysql.user;<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-only-unique-usernames-in-a-given-MySQL-database..png\"><img decoding=\"async\" width=\"403\" height=\"238\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-only-unique-usernames-in-a-given-MySQL-database..png\" alt=\"MySQL query to display only unique usernames in a given MySQL database.\" class=\"wp-image-60044\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-only-unique-usernames-in-a-given-MySQL-database..png 403w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-only-unique-usernames-in-a-given-MySQL-database.-300x177.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-only-unique-usernames-in-a-given-MySQL-database.-150x89.png 150w\" sizes=\"(max-width: 403px) 100vw, 403px\" \/><\/a><\/figure><\/div><p><strong>Password Expiration and Account Locking Status<\/strong><\/p><p>In order to check the password expiration status and account locking state, use this query:<\/p><pre class=\"wp-block-preformatted\">SELECT user, account_locked, password_expired FROM mysql.user;<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-show-password-expiration-and-account-locking-status..png\"><img decoding=\"async\" width=\"627\" height=\"239\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-show-password-expiration-and-account-locking-status..png\" alt=\"MySQL query to show password expiration and account locking status.\" class=\"wp-image-60045\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-show-password-expiration-and-account-locking-status..png 627w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-show-password-expiration-and-account-locking-status.-300x114.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-show-password-expiration-and-account-locking-status.-150x57.png 150w\" sizes=\"(max-width: 627px) 100vw, 627px\" \/><\/a><\/figure><\/div><p><strong>Show Current and Current Logged Users<\/strong><\/p><p>The current user can be displayed with the following query:<\/p><pre class=\"wp-block-preformatted\">SELECT current_user();<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-the-current-user..png\"><img decoding=\"async\" width=\"263\" height=\"154\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-the-current-user..png\" alt=\"MySQL query to display the current user.\" class=\"wp-image-60046\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-the-current-user..png 263w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-to-display-the-current-user.-150x88.png 150w\" sizes=\"(max-width: 263px) 100vw, 263px\" \/><\/a><\/figure><\/div><p>If you need more information, you can modify the query to display currently logged-in users with their states. This command is beneficial for finding idle users that use up too many resources.<\/p><pre class=\"wp-block-preformatted\">SELECT user,host, command FROM information_schema.processlist;<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-currently-logged-in-users-along-with-their-states..png\"><img decoding=\"async\" width=\"626\" height=\"203\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-currently-logged-in-users-along-with-their-states..png\" alt=\"MySQL query showcasing currently logged-in users along with their states.\" class=\"wp-image-60047\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-currently-logged-in-users-along-with-their-states..png 626w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-currently-logged-in-users-along-with-their-states.-300x97.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2019\/03\/MySQL-query-showcasing-currently-logged-in-users-along-with-their-states.-150x49.png 150w\" sizes=\"(max-width: 626px) 100vw, 626px\" \/><\/a><\/figure><\/div><figure class=\"wp-block-image size-large\"><a class=\"hgr-tutorials-cta hgr-tutorials-cta-vps-hosting\" href=\"\/vps-hosting\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"300\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/public\" alt=\"\" class=\"wp-image-77934\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=768,fit=scale-down 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure><h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2><p>The administration of a database server can be challenging work. Thus, database administrators must be careful when creating and administering user permissions.<\/p><p>The MySQL <strong>SHOW USERS<\/strong> command allows administrators to view MySQL users alongside other important information.<\/p><p>To recap, we&rsquo;ve covered the basics of how to show MySQL users tied to a database and learned how to:<\/p><ul class=\"wp-block-list\">\n<li>List all users created in a given MySQL database<\/li>\n\n\n\n<li>Preview MySQL database table columns<\/li>\n\n\n\n<li>Display only the unique usernames in a table<\/li>\n\n\n\n<li>Check password expiration and account locking status<\/li>\n\n\n\n<li>Show current and currently logged-in users in a MySQL database<\/li>\n<\/ul><p>We hope that you found this tutorial helpful. If you have any additional questions or insights, let us know in the comments section below.<\/p><p>\n\n\n<div class=\"protip\">\n                    <h4 class=\"title\">Learn More About Database Management Systems<\/h4>\n                    <p><a href=\"\/tutorials\/dbms\">What Is a DBMS: A Complete Guide<\/a><br>\n<a href=\"\/tutorials\/how-to-install-mongodb-on-ubuntu\/\">How to Install MongoDB on Ubuntu<\/a><br>\n<a href=\"\/tutorials\/set-up-and-install-cassandra-ubuntu\/\">Apache Cassandra: A Tutorial for Beginners<\/a><br>\n<a href=\"\/tutorials\/how-to-install-postgresql-on-ubuntu\/\">How to Install PostgreSQL on Ubuntu<\/a><br>\n<a href=\"\/tutorials\/how-to-install-and-setup-phpmyadmin-on-ubuntu\">How to Install phpMyAdmin on Ubuntu<\/a><\/p>\n                <\/div>\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-mysql-show-users-faq\">MySQL Show Users FAQ<\/h2><div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1662542841510\"><h3 class=\"schema-faq-question\">How Can I See All MySQL Users and Passwords?<\/h3> <p class=\"schema-faq-answer\">Make the following SQL query: <br>mysql&gt; select user, password, host from mysql. user <br>This query brings up a list of users, their usernames, passwords, and database host.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1662542892435\"><h3 class=\"schema-faq-question\">How Do I Show Users in MySQL MariaDB?<\/h3> <p class=\"schema-faq-answer\">Log into your MariaDB\/MySQL server with the mysql client as a root user. Type the following query: <br>$ mysql -u root &ndash;p <br>Or <br>$ mysql &ndash;u root &ndash;h localhost &ndash;p mysql<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1662542911496\"><h3 class=\"schema-faq-question\">Where Are Users Stored in MySQL?<\/h3> <p class=\"schema-faq-answer\">MySQL stores users in the user table within the database.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"<p>A MySQL database server is frequently the first choice for developers and anyone interested in testing a structured query language. [&#8230;]<\/p>\n<p><a class=\"btn btn-secondary understrap-read-more-link\" href=\"\/tutorials\/mysql-show-users\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":279,"featured_media":71576,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"How to use the MySQL Show Users Command in Database","rank_math_description":"Learn how to list all database users with the MySQL SHOW USERS query as we cover the query's syntax, how to use it, and troubleshoot errors.","rank_math_focus_keyword":"mysql show users","footnotes":""},"categories":[22646,22644],"tags":[],"class_list":["post-15827","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-pre-installed-applications","category-vps"],"hreflangs":[{"locale":"en-US","link":"https:\/\/www.hostinger.com\/tutorials\/mysql-show-users","default":0},{"locale":"fr-FR","link":"https:\/\/www.hostinger.com\/fr\/tutoriels\/lister-les-utilisateurs-mysql","default":0},{"locale":"es-ES","link":"https:\/\/www.hostinger.com\/es\/tutoriales\/ver-usuarios-mysql-linux","default":0},{"locale":"id-ID","link":"https:\/\/www.hostinger.com\/id\/tutorial\/cara-melihat-user-di-mysql","default":0},{"locale":"en-UK","link":"https:\/\/www.hostinger.com\/uk\/tutorials\/mysql-show-users","default":0},{"locale":"en-MY","link":"https:\/\/www.hostinger.com\/my\/tutorials\/mysql-show-users\/","default":0},{"locale":"en-PH","link":"https:\/\/www.hostinger.com\/ph\/tutorials\/mysql-show-users\/","default":0},{"locale":"es-MX","link":"https:\/\/www.hostinger.com\/mx\/tutoriales\/que-son-hooks-wordpress-10","default":0},{"locale":"es-CO","link":"https:\/\/www.hostinger.com\/co\/tutoriales\/que-son-hooks-wordpress-10","default":0},{"locale":"es-AR","link":"https:\/\/www.hostinger.com\/ar\/tutoriales\/ver-usuarios-mysql-linux","default":0},{"locale":"en-IN","link":"https:\/\/www.hostinger.com\/in\/tutorials\/mysql-show-users","default":0},{"locale":"en-CA","link":"https:\/\/www.hostinger.com\/ca\/tutorials\/mysql-show-users","default":0},{"locale":"en-AU","link":"https:\/\/www.hostinger.com\/au\/tutorials\/mysql-show-users","default":0},{"locale":"en-NG","link":"https:\/\/www.hostinger.com\/ng\/tutorials\/mysql-show-users","default":0}],"_links":{"self":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/15827","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/users\/279"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/comments?post=15827"}],"version-history":[{"count":29,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/15827\/revisions"}],"predecessor-version":[{"id":118765,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/15827\/revisions\/118765"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/media\/71576"}],"wp:attachment":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/media?parent=15827"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/categories?post=15827"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/tags?post=15827"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}