{"id":706,"date":"2023-04-05T13:09:33","date_gmt":"2023-04-05T13:09:33","guid":{"rendered":"https:\/\/www.softwaretraininginchennai.com\/blog\/?p=706"},"modified":"2023-07-18T13:51:52","modified_gmt":"2023-07-18T13:51:52","slug":"stored-procedure-in-sql-server","status":"publish","type":"post","link":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/","title":{"rendered":"Stored Procedure in SQL Server"},"content":{"rendered":"\n<ul class=\"wp-block-list\">\n<li>A stored procedure is a precompiled and stored database object that contains a set of SQL statements and procedural logic that can be executed as a single unit. It can be used in a database management system to simplify complex queries and database operations. It is a prepared SQL code that you can save, so the code can be reused over and over again. Stored procedures help improve performance and security, as well as simplify the code.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p>Here&#8217;s a basic example of a stored procedure that accepts two input parameters and returns the sum of those two numbers:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong><em>CREATE PROCEDURE AddNumbers<\/em><\/strong> <br><strong><em>@n1 INT,<\/em><\/strong> <br><strong><em>@n2 INT<\/em><\/strong> <br><strong><em>AS<\/em><\/strong> <br><strong><em>BEGIN<\/em><\/strong> <br><strong><em>SET NOCOUNT ON;<\/em><\/strong> <br><strong><em>SELECT @n1 + @n2 AS &#8216;Sum&#8217;;<\/em><\/strong> <br><strong><em>END<\/em><\/strong> <strong><em>&nbsp;<\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>In this example, <strong>CREATE PROCEDURE<\/strong> is used to define the name of the procedure (<strong>AddNumbers<\/strong>) and its <strong>input parameters (@n1 and @n2).<\/strong> The <strong>AS<\/strong> keyword is used to begin the code block for the stored procedure.<\/p>\n\n\n\n<p><strong>SET NOCOUNT ON<\/strong> is used to prevent the count of the number of rows affected by the stored procedure from being returned.<\/p>\n\n\n\n<p>The code block then calculates the sum of the two input parameters and returns the result using the <strong>SELECT<\/strong> statement.<\/p>\n\n\n\n<p>Once the stored procedure is defined, it can be executed by calling its name:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong><em>EXEC AddNumbers 2, 3;<\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will return the result 5 as the sum of 2 and 3.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\"><strong>Stored Procedure in a Basic CRUD Operation<\/strong><\/h2>\n\n\n\n<p><strong><em>Now, let us have an idea about using stored procedure in a basic CRUD operation sample.<\/em><\/strong><\/p>\n\n\n\n<p>Let us create a database as follows:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong><em>Create database Company<\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Then create a table in the corresponding database.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong><em>CREATE TABLE Employee(<\/em><\/strong> <br><strong><em>EmpCode int,<\/em><\/strong> <br><strong><em>EmpName nchar(100),<\/em><\/strong> <br><strong><em>EmpAge int,<\/em><\/strong> <br><strong><em>EmpSal int)<\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\"><u>Inserting data into a table<\/u>: This stored procedure inserts a new employee record into a table named Employee:<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>CREATE PROCEDURE AddEmployee <br>@EmpCode int, <br>@EmpName nchar(100), <br>@EmpAge int, <br>@EmpSal int <br>AS <br>BEGIN <br>SET NOCOUNT ON; <br>INSERT INTO Employee(EmpCode, EmpName, EmpAge, EmpSal) <br>VALUES (@EmpCode, @EmpName, @EmpAge, @EmpSal); <br>END<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>On executing the above snippet, a stored procedure to add the details in the table will be created.<\/p>\n\n\n\n<p>Now, by calling the below query, the table will get added the following 5 datas.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>EXEC AddEmployee 1, &#8216;TOM&#8217;, 25, 30000 <br>EXEC AddEmployee 2, &#8216;RAM&#8217;, 25, 30000 <br>EXEC AddEmployee 3, &#8216;RAJA&#8217;, 26, 32000 <br>EXEC AddEmployee 4, &#8216;SIVA&#8217;, 26, 32000 <br>EXEC AddEmployee 5, &#8216;GOPI&#8217;, 25, 30000<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\"><u>Retrieving data from a table<\/u>: This stored procedure retrieves all the rows from a table named Employee:<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>CREATE PROCEDURE GetEmployees <br>AS <br>BEGIN <br>SET NOCOUNT ON; <br>SELECT * FROM Employee; <br>END<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>On executing the above snippet, a stored procedure to get the employee details from the table will be created.<\/p>\n\n\n\n<p>Then by simply calling the below query, the datas stored in the table can be retrieved.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>EXEC GetEmployees<strong><em><\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\"><u>Updating data in a table<\/u>: This stored procedure updates an existing employee record in a table named Employee:<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>CREATE PROCEDURE UpdateEmployee <br>@EmpCode int, <br>@EmpName nchar(100), <br>@EmpAge int, <br>@EmpSal int <br>AS <br>BEGIN <br>SET NOCOUNT ON; <br>UPDATE Employee SET <br>EmpName = @EmpName, <br>EmpAge = @EmpAge, <br>EmpSal = @EmpSal <br>WHERE EmpCode = @EmpCode; <br>END<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>On executing the above snippet, a stored procedure to update the details in the table will be created.<\/p>\n\n\n\n<p>Now, by calling the below query, the data with \u201cEmpCode =1\u201d in the table can be updated with new data as follows.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>EXEC UpdateEmployee 1, &#8216;Jerry&#8217;, 26, 32000<strong><em><\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\"><u>Deleting data from a table<\/u>: This stored procedure deletes an existing employee record from a table named Employee:<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>CREATE PROCEDURE DeleteEmployee <br>@EmpCode int <br>AS <br>BEGIN <br>SET NOCOUNT ON; <br>DELETE FROM Employee <br>WHERE EmpCode = @EmpCode; <br>END<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>On executing the above snippet, a stored procedure to delete the details in the table will be created.<\/p>\n\n\n\n<p>Now, by calling the below query, the data with \u201cEmpCode=1\u201d in the table can be deleted<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>EXEC DeleteEmployee 1<strong><em><\/em><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong><em>These are just a few examples, and there are many more possibilities for what you can do with stored procedures.<\/em><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here&#8217;s a basic example of a stored procedure that accepts two input parameters and returns the sum of those two numbers: CREATE PROCEDURE AddNumbers @n1 INT, @n2 INT AS BEGIN SET NOCOUNT ON; SELECT @n1 + @n2 AS &#8216;Sum&#8217;; END &nbsp; In this example, CREATE PROCEDURE is used to define the name of the procedure [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[277,2,3,281,220,279,235,234,1],"tags":[14,29,49,52,143],"class_list":["post-706","post","type-post","status-publish","format-standard","hentry","category-asp-net-core","category-dot-net-training","category-dot-net-training-in-chennai","category-dot-net-training-in-india","category-free-dotnet-training","category-oop-concept","category-rdbms","category-sql-server","category-uncategorized","tag-net-training-in-chennai","tag-best-dot-net-training-institute-in-chennai","tag-dot-net-training-in-chennai","tag-dot-net-training-institute-in-chennai","tag-sql-server-training-in-chennai"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Stored Procedure in SQL Server | Maria Academy<\/title>\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.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Stored Procedure in SQL Server | Maria Academy\" \/>\n<meta property=\"og:description\" content=\"Here&#8217;s a basic example of a stored procedure that accepts two input parameters and returns the sum of those two numbers: CREATE PROCEDURE AddNumbers @n1 INT, @n2 INT AS BEGIN SET NOCOUNT ON; SELECT @n1 + @n2 AS &#8216;Sum&#8217;; END &nbsp; In this example, CREATE PROCEDURE is used to define the name of the procedure [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Maria Academy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DotnetTrainingChennai\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-05T13:09:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-18T13:51:52+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dotnettraining2\" \/>\n<meta name=\"twitter:site\" content=\"@dotnettraining2\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\"},\"headline\":\"Stored Procedure in SQL Server\",\"datePublished\":\"2023-04-05T13:09:33+00:00\",\"dateModified\":\"2023-07-18T13:51:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\"},\"wordCount\":619,\"commentCount\":0,\"keywords\":[\".net training in Chennai\",\"best dot net training institute in Chennai\",\"dot net training in Chennai\",\"dot net training institute in Chennai\",\"sql server training in chennai\"],\"articleSection\":[\"ASP.NET Core\",\"dot net training\",\"dot net training in chennai\",\"Dot Net training in india\",\"Free dotnet training\",\"OOP Concept\",\"RDBMS\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\",\"name\":\"Stored Procedure in SQL Server | Maria Academy\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#website\"},\"datePublished\":\"2023-04-05T13:09:33+00:00\",\"dateModified\":\"2023-07-18T13:51:52+00:00\",\"author\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Stored Procedure in SQL Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#website\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/\",\"name\":\"Maria Academy\",\"description\":\"Dot Net Training in Chennai, Best Dot Net Training Institute in Chennai, .Net Training in Chennai\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"caption\":\"admin\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Stored Procedure in SQL Server | Maria Academy","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.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"Stored Procedure in SQL Server | Maria Academy","og_description":"Here&#8217;s a basic example of a stored procedure that accepts two input parameters and returns the sum of those two numbers: CREATE PROCEDURE AddNumbers @n1 INT, @n2 INT AS BEGIN SET NOCOUNT ON; SELECT @n1 + @n2 AS &#8216;Sum&#8217;; END &nbsp; In this example, CREATE PROCEDURE is used to define the name of the procedure [&hellip;]","og_url":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/","og_site_name":"Maria Academy","article_publisher":"https:\/\/www.facebook.com\/DotnetTrainingChennai","article_published_time":"2023-04-05T13:09:33+00:00","article_modified_time":"2023-07-18T13:51:52+00:00","author":"admin","twitter_card":"summary_large_image","twitter_creator":"@dotnettraining2","twitter_site":"@dotnettraining2","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#article","isPartOf":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/"},"author":{"name":"admin","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e"},"headline":"Stored Procedure in SQL Server","datePublished":"2023-04-05T13:09:33+00:00","dateModified":"2023-07-18T13:51:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/"},"wordCount":619,"commentCount":0,"keywords":[".net training in Chennai","best dot net training institute in Chennai","dot net training in Chennai","dot net training institute in Chennai","sql server training in chennai"],"articleSection":["ASP.NET Core","dot net training","dot net training in chennai","Dot Net training in india","Free dotnet training","OOP Concept","RDBMS","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/","name":"Stored Procedure in SQL Server | Maria Academy","isPartOf":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#website"},"datePublished":"2023-04-05T13:09:33+00:00","dateModified":"2023-07-18T13:51:52+00:00","author":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e"},"breadcrumb":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/stored-procedure-in-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.softwaretraininginchennai.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Stored Procedure in SQL Server"}]},{"@type":"WebSite","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#website","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/","name":"Maria Academy","description":"Dot Net Training in Chennai, Best Dot Net Training Institute in Chennai, .Net Training in Chennai","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.softwaretraininginchennai.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","caption":"admin"}}]}},"_links":{"self":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/706","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/comments?post=706"}],"version-history":[{"count":7,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/706\/revisions"}],"predecessor-version":[{"id":763,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/706\/revisions\/763"}],"wp:attachment":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/media?parent=706"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/categories?post=706"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/tags?post=706"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}