

{"id":27382,"date":"2018-09-07T08:17:51","date_gmt":"2018-09-07T08:17:51","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=27382"},"modified":"2026-06-24T15:53:47","modified_gmt":"2026-06-24T10:23:47","slug":"sql-comment","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/sql-comment\/","title":{"rendered":"SQL Comment &#8211; Single line and Multi-line Comment"},"content":{"rendered":"<p>In our last <a href=\"https:\/\/data-flair.training\/blogs\/sql-tutorial\/\"><strong>SQL tutorial<\/strong><\/a>, we discussed the <a href=\"https:\/\/data-flair.training\/blogs\/stored-procedure-in-sql\/\"><strong>SQL Stored Procedure<\/strong><\/a>. Today, we will see SQL Comment. Moreover, in this tutorial, we will see the single line and multi-line SQL Comment. Also, we will discuss Comment Indicators in SQL.<\/p>\n<p>So let&#8217;s start the SQL Comment tutorial.<\/p>\n<h3>What are the Comments in SQL?<\/h3>\n<p><span style=\"font-weight: 400;\">SQL Comments are not supported in Microsoft Access databases and thus we use Firefox and Microsoft Edge.<\/span><\/p>\n<p><strong>SQL Comment Syntax<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">The two types of syntax in SQL comment\u2013<\/span><br \/>\n<strong><a href=\"https:\/\/data-flair.training\/blogs\/sql-sequence\/\">Have a look at SQL Sequence<\/a><\/strong><\/p>\n<ul>\n<li style=\"font-weight: 400;\"><strong>SQL Comment Syntax Using &#8212; symbol<\/strong><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">-- comment goes here<\/pre>\n<p>In a line break after it. This method of commenting must be at the end of the line and be in a single line.<\/p>\n<ul>\n<li style=\"font-weight: 400;\"><strong>SQL Comment Syntax Using \/* and *\/ symbols<\/strong><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">\/* comment goes here *\/<\/pre>\n<p><span style=\"font-weight: 400;\">A comment in SQL that starts with \/* symbol and ends with *\/ and can span several lines within your SQL.<\/span><\/p>\n<h4>a. SQL Single Line Comment<\/h4>\n<p><span style=\"font-weight: 400;\">Single line comment start with &#8211;. It is also called inline comment. This is a method of placing the commented text directly inside or at the end line of the code.<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Example of SQL Single Line Comment<\/span><\/li>\n<\/ul>\n<p><strong><a href=\"https:\/\/data-flair.training\/blogs\/sql-date-functions\/\">Let&#8217;s revise the SQL Date Functions\u00a0<\/a><\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">--Select all:\r\nSELECT * FROM Customers;<\/pre>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Example of SQL Single Line Comment<\/span><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">SELECT * FROM Customers -- WHERE City='Berlin';<\/pre>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Example of SQL Single Line Comment<\/span><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">--SELECT * FROM Customers;\r\nSELECT * FROM Products;<\/pre>\n<h4>b. SQL Multi-line Comment<\/h4>\n<p><span style=\"font-weight: 400;\">Multi-line SQL Comments start with \/* and end with *\/ and anything between them would be ignored.<\/span><br \/>\n<strong><a href=\"https:\/\/data-flair.training\/blogs\/sql-subquery\/\">Have a look at SQL Subquery<\/a><\/strong><\/p>\n<ul>\n<li>Example of SQL Multi-line Comment<\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">\/*Select all the columns\r\nof all the records\r\nin the Customers table:*\/\r\nSELECT * FROM Customers;<\/pre>\n<ul>\n<li><span style=\"font-weight: 400;\">Example\u00a0of SQL Multi-line Comment<\/span><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">\/*SELECT * FROM Customers;\r\nSELECT * FROM Products;\r\nSELECT * FROM Orders;\r\nSELECT * FROM Categories;*\/\r\nSELECT * FROM Suppliers;<\/pre>\n<p><span style=\"font-weight: 400;\">In SQL if we want to ignore just a part of a statement, we can use the \/* *\/ comment.<\/span><br \/>\n<span style=\"font-weight: 400;\">To ignore part of a line:<\/span><br \/>\n<strong><a href=\"https:\/\/data-flair.training\/blogs\/sql-null-functions\/\">You must read about SQL Null Functions<\/a><\/strong><\/p>\n<ul>\n<li><span style=\"font-weight: 400;\">Example\u00a0of SQL Multi-line Comment<\/span><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">SELECT CustomerName, \/*City,*\/ Country FROM Customers;<\/pre>\n<h3>SQL Comment Indicators<\/h3>\n<p><span style=\"font-weight: 400;\">SQL Comment Indicator is indicated in following examples, including the double hyphen ( &#8212; ), braces ( { } ), and C-style ( \/* . . . *\/ ) comment delimiters to include a comment after an SQL statement. <\/span><\/p>\n<pre class=\"EnlighterJSRAW\">SELECT * FROM customer; -- Selects all columns and rows\r\nSELECT * FROM customer; {Selects all columns and rows}\r\nSELECT * FROM customer; \/*Selects all columns and rows*\/copy to clipboard<\/pre>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">In the following examples, we will place the comment on a separate line \u2013<\/span><\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\">SELECT * FROM customer;\r\n  -- Selects all columns and rows\r\nSELECT * FROM customer;\r\n  {Selects all columns and rows}\r\nSELECT * FROM customer;\r\n  \/*Selects all columns and rows*\/copy to clipboard<\/pre>\n<p><strong>Examples of multi-line statements \u2013<\/strong><br \/>\n<strong><a href=\"https:\/\/data-flair.training\/blogs\/alias-operators-in-sql\/\">Let&#8217;s discuss SQL Operators<\/a><\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">SELECT * FROM customer;\r\n  -- Selects all columns and rows\r\n  -- from the customer table\r\nSELECT * FROM customer;\r\n  {Selects all columns and rows\r\n   from the customer table}\r\nSELECT * FROM customer;\r\n  \/*Selects all columns and rows\r\n   from the customer table*\/copy to clipboard\r\nSELECT *           -- Selects all columns and rows\r\n  FROM customer;  -- from the customer table\r\nSELECT *           {Selects all columns and rows}\r\n  FROM customer;  {from the customer table}\r\nSELECT *           \/*Selects all columns and rows*\/\r\n  FROM customer;  \/*from the customer table*\/copy to clipboard<\/pre>\n<p>So, this was all in SQL Comment. Hope you liked our explanation.<\/p>\n<h3>Conclusion<\/h3>\n<p>Hence, in this SQL\u00a0Comment tutorial, we discussed different comments in SQL. We saw SQL Single line and Multi-Line Comment. Also, we discussed comment\u00a0indicators in SQL. Is this explanation helps to you, tell us through comments.<br \/>\n<strong>See also &#8211;\u00a0<\/strong><br \/>\n<strong><a href=\"https:\/\/data-flair.training\/blogs\/cursor-in-sql\/\">SQL Cursor<\/a><\/strong><br \/>\n<a href=\"https:\/\/www.ibm.com\/\"><strong>For reference<\/strong><\/a><span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:1627,&quot;href&quot;:&quot;https:\\\/\\\/www.ibm.com&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20131024162747\\\/http:\\\/\\\/www.ibm.com\\\/&quot;,&quot;redirect_href&quot;:&quot;https:\\\/\\\/www.ibm.com\\\/us-en&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-13 22:33:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-22 18:50:33&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-02 20:45:24&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-10 20:50:52&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-19 11:00:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-08 06:48:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-18 09:21:47&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-05 21:54:05&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-10 13:53:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-23 21:44:12&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-01 10:07:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-09 12:39:29&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-15 11:12:58&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-20 11:26:09&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-07 15:28:18&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-11 10:03:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-31 16:48:18&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-05 11:45:58&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-15 11:55:45&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-22 13:35:37&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-27 18:41:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-04 23:40:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-08 13:30:42&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-11 22:23:10&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-17 08:44:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-20 17:49:50&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-25 01:38:34&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-07-25 01:38:34&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our last SQL tutorial, we discussed the SQL Stored Procedure. Today, we will see SQL Comment. Moreover, in this tutorial, we will see the single line and multi-line SQL Comment. Also, we will&#46;&#46;&#46;<\/p>\n","protected":false},"author":6,"featured_media":27413,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[66],"tags":[2680,12907,13415,13416,13417,13497,13539,13564],"class_list":["post-27382","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sql","tag-comment-command-in-sql","tag-single-line-comment","tag-sql-comment","tag-sql-comment-block","tag-sql-comment-syntax","tag-sql-multiline-comment","tag-sql-server-comment","tag-sql-single-comment"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL Comment - Single line and Multi-line Comment - DataFlair<\/title>\n<meta name=\"description\" content=\"Learn what is comment in SQL with syntax and example, SQL single line comments, SQL Multi-line comments, SQl server comment,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/sql-comment\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Comment - Single line and Multi-line Comment - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Learn what is comment in SQL with syntax and example, SQL single line comments, SQL Multi-line comments, SQl server comment,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/sql-comment\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-07T08:17:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-24T10:23:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/09\/SQL-Comment-01.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1202\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Comment - Single line and Multi-line Comment - DataFlair","description":"Learn what is comment in SQL with syntax and example, SQL single line comments, SQL Multi-line comments, SQl server comment,","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:\/\/data-flair.training\/blogs\/sql-comment\/","og_locale":"en_US","og_type":"article","og_title":"SQL Comment - Single line and Multi-line Comment - DataFlair","og_description":"Learn what is comment in SQL with syntax and example, SQL single line comments, SQL Multi-line comments, SQl server comment,","og_url":"https:\/\/data-flair.training\/blogs\/sql-comment\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-09-07T08:17:51+00:00","article_modified_time":"2026-06-24T10:23:47+00:00","og_image":[{"width":1202,"height":630,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/09\/SQL-Comment-01.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89"},"headline":"SQL Comment &#8211; Single line and Multi-line Comment","datePublished":"2018-09-07T08:17:51+00:00","dateModified":"2026-06-24T10:23:47+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/"},"wordCount":390,"commentCount":3,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/09\/SQL-Comment-01.jpg","keywords":["Comment command in SQL","single line comment","sql comment","SQL Comment block","SQL Comment syntax","sql multiline comment","SQL server Comment","SQL single comment"],"articleSection":["SQL Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/sql-comment\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/","url":"https:\/\/data-flair.training\/blogs\/sql-comment\/","name":"SQL Comment - Single line and Multi-line Comment - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/09\/SQL-Comment-01.jpg","datePublished":"2018-09-07T08:17:51+00:00","dateModified":"2026-06-24T10:23:47+00:00","description":"Learn what is comment in SQL with syntax and example, SQL single line comments, SQL Multi-line comments, SQl server comment,","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/sql-comment\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/09\/SQL-Comment-01.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/09\/SQL-Comment-01.jpg","width":1202,"height":630,"caption":"SQL Comment - Single line and Multi-line Comment"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/sql-comment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"SQL Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/sql\/"},{"@type":"ListItem","position":3,"name":"SQL Comment &#8211; Single line and Multi-line Comment"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"The DataFlair Team provides industry-driven content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our expert educators focus on delivering value-packed, easy-to-follow resources for tech enthusiasts and professionals.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam2\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/27382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=27382"}],"version-history":[{"count":6,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/27382\/revisions"}],"predecessor-version":[{"id":148794,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/27382\/revisions\/148794"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/27413"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=27382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=27382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=27382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}