{"id":6304,"date":"2023-08-18T11:28:56","date_gmt":"2023-08-18T11:28:56","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=6304"},"modified":"2023-08-18T11:28:58","modified_gmt":"2023-08-18T11:28:58","slug":"mysql-database-management-phpmyadmin","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/","title":{"rendered":"MySQL Database management with phpMyAdmin"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en.jpg\" alt=\"MySQL Database management with phpMyAdmin debian ubuntu centos redhat\" class=\"wp-image-6359\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>PhpMyAdmin is a free and open source tool written in PHP that allows you to easily manage MySQL databases through a web interface. With PhpMyAdmin, you can create and configure databases, create\/edit\/drop tables, insert data, execute SQL queries and manage users.<\/p>\n\n\n\n<p>In this article we will go through the key things you can do in phpMyAdmin to manage your MySQL databases and tables.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"login-to-phpmyadmin\">Login to phpMyAdmin<\/h2>\n\n\n\n<p>To access the phpMyAdmin interface, you just need to navigate to the url where it is hosted, usually something like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markdown\" class=\"language-markdown\">http:\/\/localhost\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>Or<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markdown\" class=\"language-markdown\">http:\/\/ip-address\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>Depending on how it has been setup.<\/p>\n\n\n\n<p>You will be presented with a login screen where you need to enter your MySQL username and password. These are the credentials you use to normally access MySQL and not specific phpMyAdmin credentials.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1918\" height=\"1037\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1.png\" alt=\"phpmyadmin login screen\" class=\"wp-image-6305\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1.png 1918w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1-300x162.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1-1024x554.png 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1-768x415.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1-1536x830.png 1536w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/1-150x81.png 150w\" sizes=\"(max-width: 1918px) 100vw, 1918px\" \/><\/figure>\n\n\n\n<p>Once logged in, you will be taken to the main dashboard which displays the existing databases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"creating-a-new-database\">Creating a New Database<\/h2>\n\n\n\n<p>To create a new database, click on the &#8220;New&#8221; link near the top left.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1523\" height=\"739\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/2.png\" alt=\"phpmyadmin create new database\" class=\"wp-image-6307\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/2.png 1523w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/2-300x146.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/2-1024x497.png 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/2-768x373.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/2-150x73.png 150w\" sizes=\"(max-width: 1523px) 100vw, 1523px\" \/><\/figure>\n\n\n\n<p>This will bring up a form where you need to enter the name for your new database. Make sure you choose a descriptive name relevant to the application.<\/p>\n\n\n\n<p>Once you enter the name, click Create and the new database will be instantiated. The dashboard will now display the new database in the list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"editing-and-deleting-a-database\">Editing and Deleting a Database<\/h2>\n\n\n\n<p>To edit or delete an existing database, check the checkbox beside it&#8217;s name in the dashboard then click Operations.<\/p>\n\n\n\n<p>This will give you the options to Edit or Delete it. Edit allows you to change the name.<\/p>\n\n\n\n<p>Deleting will completely remove the database and all tables and data contained within. Make sure you really want to delete it before clicking Delete.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"creating-tables\">Creating Tables<\/h2>\n\n\n\n<p>To create a new table, click on the database you want to create it in from the dashboard.<\/p>\n\n\n\n<p>This will show you a list of existing tables (if any) and options to create a new table.<\/p>\n\n\n\n<p>Click the New button to bring up the Create Table form.<\/p>\n\n\n\n<p>Here you need to enter the Name for your table and specify the number of columns\/fields.<\/p>\n\n\n\n<p>For each field you need to set:<\/p>\n\n\n\n<ul>\n<li>Field name &#8211; The name of the column<\/li>\n\n\n\n<li>Data type &#8211; The type of data it will store e.g. VARCHAR, INT, DATE<\/li>\n\n\n\n<li>Length\/Values &#8211; Max characters for string types, length for numerics<\/li>\n\n\n\n<li>Default &#8211; Optional default value<\/li>\n\n\n\n<li>Index &#8211; Columns to Index<\/li>\n\n\n\n<li>A_I &#8211; Auto increment<\/li>\n\n\n\n<li>Null &#8211; Check to allow null values<\/li>\n\n\n\n<li>Other options &#8211; Like unsigned or zerofill types<\/li>\n<\/ul>\n\n\n\n<p>Set these appropriately for each field your table requires.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1919\" height=\"884\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3.png\" alt=\"phpmyadmin create table\" class=\"wp-image-6308\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3.png 1919w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3-300x138.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3-1024x472.png 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3-768x354.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3-1536x708.png 1536w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/3-150x69.png 150w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/figure>\n\n\n\n<p>Once all fields are configured click Save and the new table will be created.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"editing-and-deleting-tables\">Editing and Deleting Tables<\/h2>\n\n\n\n<p>Similar to databases, you can edit and delete existing tables from the interface.<\/p>\n\n\n\n<p>Check the checkbox next to a table then click Operations to get the options.<\/p>\n\n\n\n<p>Edit allows you to modify the structure by adding\/removing fields or altering field properties.<\/p>\n\n\n\n<p>Delete will completely remove the table and all it&#8217;s data so be sure before clicking!<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1650\" height=\"761\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4.png\" alt=\"phpmyadmin Editing and Deleting table\" class=\"wp-image-6310\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4.png 1650w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4-300x138.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4-1024x472.png 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4-768x354.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4-1536x708.png 1536w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/4-150x69.png 150w\" sizes=\"(max-width: 1650px) 100vw, 1650px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"inserting-data\">Inserting Data<\/h2>\n\n\n\n<p>To insert data into a table, go to the Browse tab when viewing the table then click Insert.<\/p>\n\n\n\n<p>This will show a form with fields for each column where you can enter the data.<\/p>\n\n\n\n<p>Complete the form, click Go and the new row will be inserted.<\/p>\n\n\n\n<p>For large data imports, you may find it easier to use the Import tab and load from a CSV file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"editing-data\">Editing Data<\/h2>\n\n\n\n<p>To make changes to existing data in a table, go to the Browse tab and click Edit beside the row you want to modify.<\/p>\n\n\n\n<p>This will show a form similar to Insert where you can overwrite the data in any fields. Modify as required then click Go and changes will be saved.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"deleting-data\">Deleting Data<\/h2>\n\n\n\n<p>To delete data, go to the Browse tab check the checkbox next to rows you want to delete then click Delete marked.<\/p>\n\n\n\n<p>This will give a confirmation dialog before permanently removing the data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"sql-tab-for-queries\">SQL Tab for Queries<\/h2>\n\n\n\n<p>The SQL tab allows you to run SQL statements directly on the database.<\/p>\n\n\n\n<p>This is useful for complex queries, deleting multiple rows, backing up data or optimizing tables that can&#8217;t easily be done through the UI.<\/p>\n\n\n\n<p>Type your SQL statement in the box and click Go to run it. Results will display below.<\/p>\n\n\n\n<p>Some common examples:<\/p>\n\n\n\n<ul>\n<li><code>SELECT * FROM table<\/code>&nbsp;&#8211; select all rows<\/li>\n\n\n\n<li><code>DELETE FROM table WHERE id = 1<\/code>&nbsp;&#8211; delete row by id<\/li>\n\n\n\n<li><code>OPTIMIZE TABLE table<\/code>&nbsp;&#8211; optimize and clean table<\/li>\n\n\n\n<li><code>DROP TABLE table<\/code>&nbsp;&#8211; delete entire table<\/li>\n<\/ul>\n\n\n\n<p>But you can run any valid MySQL queries.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"user-management\">User Management<\/h2>\n\n\n\n<p>phpMyAdmin also allows creating and managing MySQL users.<\/p>\n\n\n\n<p>Go to the Users tab to view existing users and select Add User to create a new one.<\/p>\n\n\n\n<p>Here you can define a username and password, assign global privileges like CREATE or DROP, and specify permissions on a per database basis.<\/p>\n\n\n\n<p>Click Add User when done and they will be added to MySQL.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1432\" height=\"558\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/6.png\" alt=\"phpmyadmin create user\" class=\"wp-image-6314\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/6.png 1432w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/6-300x117.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/6-1024x399.png 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/6-768x299.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/6-150x58.png 150w\" sizes=\"(max-width: 1432px) 100vw, 1432px\" \/><\/figure>\n\n\n\n<p>To edit or remove, check the user then click Edit Privileges or Remove.<\/p>\n\n\n\n<p>This allows complete user management without needing direct access to MySQL.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configuration\">Configuration<\/h2>\n\n\n\n<p>There are various settings that can be configured by going to the Settings link.<\/p>\n\n\n\n<p>This includes options like:<\/p>\n\n\n\n<ul>\n<li>Server connection settings<\/li>\n\n\n\n<li>Display options<\/li>\n\n\n\n<li>Export and import defaults<\/li>\n\n\n\n<li>Editing and browsing behavior<\/li>\n\n\n\n<li>Security settings<\/li>\n\n\n\n<li>Various other preferences<\/li>\n<\/ul>\n\n\n\n<p>Tweak these settings to customize phpMyAdmin to your needs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"repairing-tables\">Repairing Tables<\/h2>\n\n\n\n<p>If a table becomes corrupted or damaged, phpMyAdmin provides easy ways to attempt repairing it.<\/p>\n\n\n\n<p>Go to the database for the problem table and click Operations next to it.<\/p>\n\n\n\n<p>Select Repair Table.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1467\" height=\"781\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/5.png\" alt=\"phpmyadmin Repairing Table\" class=\"wp-image-6312\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/5.png 1467w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/5-300x160.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/5-1024x545.png 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/5-768x409.png 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/5-150x80.png 150w\" sizes=\"(max-width: 1467px) 100vw, 1467px\" \/><\/figure>\n\n\n\n<p>This will run the MySQL REPAIR TABLE command which will attempt to fix index and structure issues.<\/p>\n\n\n\n<p>For more serious corruption you may need to rebuild the table by selecting Repair Table Advanced.<\/p>\n\n\n\n<p>This recreates the table for you keeping the structure intact.<\/p>\n\n\n\n<p>Sometimes dropping and recreating the table is needed, but repair options provide a less destructive way to recover in many cases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>That covers the key functionality you need to know to easily manage your MySQL databases and tables within phpMyAdmin.<\/p>\n\n\n\n<p>With its simple web interface you can avoid using the command line for many common tasks. As well as handle administration of users and privileges.<\/p>\n\n\n\n<p>It takes no time at all to get up and running with phpMyAdmin and most operations are intuitive from the interface.<\/p>\n\n\n\n<p>So install it on your development or production environment, and you&#8217;ll have a slick GUI making MySQL administration much more pleasant!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PhpMyAdmin is a free and open source tool written in PHP that allows you to easily manage MySQL databases through a web interface. With PhpMyAdmin, you can create and configure databases, create\/edit\/drop tables, insert data, execute SQL queries and manage users. In this article we will go through the key things you can do in ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[57,69],"tags":[],"yoast_head":"\n<title>MySQL Database management with phpMyAdmin - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to easily manage MySQL databases and tables using the PhpMyAdmin web interface. Create, edit, delete databases\/tables, insert data, run queries, and more.\" \/>\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.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MySQL Database management with phpMyAdmin - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to easily manage MySQL databases and tables using the PhpMyAdmin web interface. Create, edit, delete databases\/tables, insert data, run queries, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-18T11:28:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-18T11:28:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"MySQL Database management with phpMyAdmin\",\"datePublished\":\"2023-08-18T11:28:56+00:00\",\"dateModified\":\"2023-08-18T11:28:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\"},\"wordCount\":1073,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Databases\",\"Linux system administration\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\",\"name\":\"MySQL Database management with phpMyAdmin - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-08-18T11:28:56+00:00\",\"dateModified\":\"2023-08-18T11:28:58+00:00\",\"description\":\"Learn how to easily manage MySQL databases and tables using the PhpMyAdmin web interface. Create, edit, delete databases\/tables, insert data, run queries, and more.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MySQL Database management with phpMyAdmin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"MySQL Database management with phpMyAdmin - WebHi Tutorials &amp; Documentations","description":"Learn how to easily manage MySQL databases and tables using the PhpMyAdmin web interface. Create, edit, delete databases\/tables, insert data, run queries, and more.","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.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/","og_locale":"en_US","og_type":"article","og_title":"MySQL Database management with phpMyAdmin - WebHi Tutorials &amp; Documentations","og_description":"Learn how to easily manage MySQL databases and tables using the PhpMyAdmin web interface. Create, edit, delete databases\/tables, insert data, run queries, and more.","og_url":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-08-18T11:28:56+00:00","article_modified_time":"2023-08-18T11:28:58+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/08\/mysql_phpmyadmin_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"MySQL Database management with phpMyAdmin","datePublished":"2023-08-18T11:28:56+00:00","dateModified":"2023-08-18T11:28:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/"},"wordCount":1073,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Databases","Linux system administration"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/","url":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/","name":"MySQL Database management with phpMyAdmin - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-08-18T11:28:56+00:00","dateModified":"2023-08-18T11:28:58+00:00","description":"Learn how to easily manage MySQL databases and tables using the PhpMyAdmin web interface. Create, edit, delete databases\/tables, insert data, run queries, and more.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/mysql-database-management-phpmyadmin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"MySQL Database management with phpMyAdmin"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/6304"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=6304"}],"version-history":[{"count":14,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/6304\/revisions"}],"predecessor-version":[{"id":6376,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/6304\/revisions\/6376"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=6304"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=6304"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=6304"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}