{"id":340,"date":"2023-11-22T12:58:35","date_gmt":"2023-11-22T12:58:35","guid":{"rendered":"https:\/\/www.kaashivinfotech.com\/blog\/?p=340"},"modified":"2025-07-18T12:02:26","modified_gmt":"2025-07-18T12:02:26","slug":"mysql-commands","status":"publish","type":"post","link":"https:\/\/www.kaashivinfotech.com\/blog\/mysql-commands\/","title":{"rendered":"MySQL Commands"},"content":{"rendered":"<h2>MySql Commands:<\/h2>\n<h2>What is MySQL?<\/h2>\n<p>MySQL is an open-source relational database management system (RDBMS) that is widely used for managing and organizing large sets of data. It is a popular choice for web applications and is an essential component of the LAMP (Linux, Apache, <a href=\"https:\/\/www.kaashivinfotech.com\/mysql-training-in-chennai\/\">MySQL<\/a>, <a href=\"https:\/\/www.php.net\/\" target=\"_blank\" rel=\"noopener\">PHP<\/a>\/<a href=\"https:\/\/www.kaashivinfotech.com\/blog\/how-to-write-better-python-comments-best-practices\/\">Python<\/a>\/Perl) and MERN (MongoDB, Express.js, React, Node.js) stacks, which are commonly used for developing dynamic web applications.<\/p>\n<h2><strong>MySQL commands<\/strong><\/h2>\n<h3><strong>1.Working with Databases<\/strong><\/h3>\n<h4><strong>Create a Database<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">CREATE DATABASE mydb;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>List Databases<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SHOW DATABASES;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Use a Database<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">USE mydb;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Drop a Database (Caution: Irreversible)<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">DROP DATABASE mydb;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\" wp-image-1090 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-300x169.jpg\" alt=\"\" width=\"684\" height=\"385\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-300x169.jpg 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-1024x576.jpg 1024w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-768x432.jpg 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault.jpg 1280w\" sizes=\"(max-width: 684px) 100vw, 684px\" \/><\/p>\n<h3><strong>2.Working with Table<\/strong><\/h3>\n<h4><strong>Create a Table<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">CREATE TABLE users (<br\/><br\/>id INT AUTO_INCREMENT PRIMARY KEY,<br\/><br\/>username VARCHAR(50),<br\/><br\/>email VARCHAR(100)<br\/><br\/>);<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>List Tables in a Database<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SHOW TABLES;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Describe a Table<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">DESCRIBE users;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Drop a Table (Caution: Irreversible)<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">DROP TABLE users;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img decoding=\"async\" class=\" wp-image-1091 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/gIRmK-300x181.png\" alt=\"\" width=\"702\" height=\"424\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/gIRmK-300x181.png 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/gIRmK-768x464.png 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/gIRmK.png 835w\" sizes=\"(max-width: 702px) 100vw, 702px\" \/><\/p>\n<h3><strong>3.Working with Indexes<\/strong><\/h3>\n<h4><strong>Add an Index<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">CREATE INDEX idx_username ON users(username);<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Remove an Index<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">DROP INDEX idx_username ON users;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img decoding=\"async\" class=\" wp-image-1092 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-2-300x169.jpg\" alt=\"\" width=\"710\" height=\"400\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-2-300x169.jpg 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-2-1024x576.jpg 1024w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-2-768x432.jpg 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/maxresdefault-2.jpg 1280w\" sizes=\"(max-width: 710px) 100vw, 710px\" \/><\/p>\n<h3><strong>4.Working with Views<\/strong><\/h3>\n<h4><strong>Create a View<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">CREATE VIEW user_emails AS<br\/><br\/>SELECT id, email FROM users;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>List Views<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SHOW VIEWS;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Drop a View<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">DROP VIEW user_emails;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-1093 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/mysqlview6-300x176.png\" alt=\"\" width=\"548\" height=\"322\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/mysqlview6-300x176.png 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/mysqlview6.png 527w\" sizes=\"(max-width: 548px) 100vw, 548px\" \/><\/p>\n<h3><strong>5.Working with Stored Procedures<\/strong><\/h3>\n<h4><strong>Create a Stored Procedure<\/strong><\/h4>\n<p>DELIMITER \/\/<\/p>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">CREATE PROCEDURE GetUsers()<br\/><br\/>BEGIN<br\/><br\/>SELECT * FROM users;<br\/><br\/>END<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p>\/\/<\/p>\n<p>DELIMITER ;<\/p>\n<h4><strong>Call a Stored Procedure<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">CALL GetUsers();<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Drop a Stored Procedure<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">DROP PROCEDURE GetUsers;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-1094 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/MySQL-CREATE-PROCEDURE-example-step-2-300x124.png\" alt=\"\" width=\"721\" height=\"298\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/MySQL-CREATE-PROCEDURE-example-step-2-300x124.png 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/MySQL-CREATE-PROCEDURE-example-step-2.png 661w\" sizes=\"(max-width: 721px) 100vw, 721px\" \/><\/p>\n<h3><strong>6.Querying Data from Tables<\/strong><\/h3>\n<h4><strong>Select All Rows from a Table<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SELECT * FROM users;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Select Specific Columns from a Table<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SELECT username, email FROM users;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Filter Rows with WHERE Clause<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SELECT * FROM users WHERE username = &#039;john&#039;;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-1095 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/mysql-create-table7-300x178.png\" alt=\"\" width=\"692\" height=\"410\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/mysql-create-table7-300x178.png 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/mysql-create-table7.png 682w\" sizes=\"(max-width: 692px) 100vw, 692px\" \/><\/p>\n<h3><strong>7.Join<\/strong><\/h3>\n<ul>\n<li>\n<h4><strong>Inner Join<\/strong><\/h4>\n<\/li>\n<\/ul>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SELECT orders.order_id, customers.customer_name<br\/><br\/>FROM orders<br\/><br\/>INNER JOIN customers<br\/><br\/>ON orders.customer_id = customers.customer_id;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-1098 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/image3-300x152.png\" alt=\"\" width=\"736\" height=\"373\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/image3-300x152.png 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/image3.png 628w\" sizes=\"(max-width: 736px) 100vw, 736px\" \/><\/p>\n<ul>\n<li>\n<h4><strong>Left Join<\/strong><\/h4>\n<\/li>\n<\/ul>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SELECT customers.customer_name, orders.order_id<br\/><br\/>FROM customers<br\/><br\/>LEFT JOIN orders<br\/><br\/>ON customers.customer_id = orders.customer_id;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-1099 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/image6-300x152.png\" alt=\"\" width=\"854\" height=\"433\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/image6-300x152.png 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2023\/11\/image6.png 628w\" sizes=\"(max-width: 854px) 100vw, 854px\" \/><\/p>\n<h3><strong>8.Modifying Data in Tables<\/strong><\/h3>\n<h4><strong>Insert Data into a Table<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">INSERT INTO users (username, email)<br\/><br\/>VALUES (&#039;alice&#039;, &#039;alice@example.com&#039;);<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h4><strong>Update Data in a Table<\/strong><\/h4>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">UPDATE users<br\/><br\/>SET email = &#039;new_email@example.com&#039;<br\/><br\/>WHERE username = &#039;alice&#039;;<br\/><br\/>Delete Data from a Table:<br\/><br\/>DELETE FROM users<br\/><br\/>WHERE username = &#039;alice&#039;;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h3><strong>9.Searching<\/strong><\/h3>\n<p><strong>Search for a String in a Column<\/strong><\/p>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">SELECT * FROM users<br\/><br\/>WHERE username LIKE &#039;%joh%&#039;;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h3><strong>10.MySQL Command-Line Client Commands<\/strong><\/h3>\n<p>&#8211; Login to MySQL:<\/p>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">```shell<br\/><br\/>mysql -u username -p<br\/><br\/>```<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<p>&#8211; Execute SQL Script from File:<\/p>\n<div class=\"code-embed-wrapper\"> <pre class=\"language-sql code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-sql code-embed-code\">```shell<br\/><br\/>mysql -u username -p mydb &lt; script.sql<br\/><br\/>```<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div>\n<h2><strong>Conclusion<\/strong><\/h2>\n<p>In conclusion, MySQL is a powerful relational database management system that provides a comprehensive set of commands and features for working with databases, tables, indexes, views, stored procedures, querying data, and more.<\/p>\n<h2><strong>FAQ&#8217;s<\/strong><\/h2>\n<h3><strong>1.What is MySQL, and how does it differ from other database systems?<\/strong><\/h3>\n<p>MySQL is an open-source relational database management system (RDBMS) known for its speed, reliability, and ease of use. It differs from other databases in its open-source nature, wide community support, and a variety of storage engines, allowing users to choose the one that best suits their needs.<\/p>\n<h3><strong>2.How can I install MySQL on my system?<\/strong><\/h3>\n<p>Installation methods may vary depending on your operating system. You can download MySQL from the official website and follow the installation instructions specific to your platform. Alternatively, you can use package managers like apt or yum on Linux, or install MySQL via XAMPP or WAMP on Windows for development environments.<\/p>\n<h3><strong>3.What are the primary data types in MySQL?<\/strong><\/h3>\n<p>MySQL supports various data types, including integers, floating-point numbers, strings, dates, times, and more. The choice of data type depends on the kind of data you need to store.<\/p>\n<h3><strong>4.How do I secure my MySQL database?<\/strong><\/h3>\n<p>Securing MySQL involves setting strong passwords, restricting access, and regularly applying security updates. You can also use features like user privileges and firewalls to enhance security. Refer to the MySQL documentation for comprehensive security guidelines.<\/p>\n<h3><strong>5.What are indexes, and why are they important?<\/strong><\/h3>\n<p>Indexes in MySQL improve query performance by providing a faster way to look up records in a table. They are essential for speeding up data retrieval operations, especially on large datasets.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySql Commands: What is MySQL? MySQL is an open-source relational database management system (RDBMS) that is widely used for managing and organizing large sets of data. It is a popular choice for web applications and is an essential component of the LAMP (Linux, Apache, MySQL, PHP\/Python\/Perl) and MERN (MongoDB, Express.js, React, Node.js) stacks, which are [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1175,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[1364,1354,1355,1362,1352,1339,1343,1334,1367,1363,1332,1342,1365,306,1358,1360,1353,304,1356,1359,1357,1361,267,1344,1337,1366,303,305],"class_list":["post-340","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database","tag-alter-command","tag-class-12-mysql-commands","tag-command","tag-command-line","tag-commands","tag-dcl-commands-in-sql","tag-ddl-commands-in-dbms","tag-ddl-commands-in-sql","tag-delete-command","tag-desc-command","tag-dml-commands-in-sql","tag-dql-commands-in-sql","tag-how-to-use-mysql-command-line-client","tag-how-to-write-the-query-in-mysql","tag-important-mysql-commands","tag-my-sql-commands","tag-mysql-command","tag-mysql-commands","tag-mysql-commands-class-12","tag-mysql-on-command-line","tag-select-command","tag-sql-command","tag-sql-commands","tag-sql-commands-in-dbms","tag-tcl-commands-in-sql","tag-update-command","tag-what-is-mysql","tag-what-is-rdbms"],"_links":{"self":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/340","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/comments?post=340"}],"version-history":[{"count":0,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/340\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/media\/1175"}],"wp:attachment":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/media?parent=340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/categories?post=340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/tags?post=340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}