{"id":1534,"date":"2019-03-10T10:31:51","date_gmt":"2019-03-10T03:31:51","guid":{"rendered":"http:\/\/www.sqlservertutorial.net\/?page_id=1534"},"modified":"2020-07-11T03:50:35","modified_gmt":"2020-07-10T20:50:35","slug":"sql-server-stuff-function","status":"publish","type":"page","link":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/","title":{"rendered":"SQL Server STUFF Function"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQL Server <code>STUFF()<\/code> function to delete a part of a string and then insert a substring into the string, beginning at a specified position.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-stuff-function-overview'>SQL Server STUFF() function overview <a href=\"#sql-server-stuff-function-overview\" class=\"anchor\" id=\"sql-server-stuff-function-overview\" title=\"Anchor for SQL Server &lt;code&gt;STUFF()&lt;\/code&gt; function overview\">#<\/a><\/h2>\n\n\n\n<p>The <code>STUFF()<\/code> function deletes a part of a string and then inserts a substring into the string, beginning at a specified position.<\/p>\n\n\n\n<p>The following shows the syntax of the <code>STUFF()<\/code> function:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">STUFF ( input_string , start_position , length , replace_with_substring )\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The <code>STUFF()<\/code> function accepts four arguments:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>input_string<\/code> is the character string to be processed.<\/li><li><code>start_position<\/code> is an integer that identifies the position to start deletion and insertion. If <code>start_position<\/code> is negative, zero, or longer than the length of the string, the function will return NULL.<\/li><li><code>length<\/code> specifies the number of characters to delete. If the <code>length<\/code> is negative, the function returns NULL. If &nbsp;<code>length<\/code> is longer than the length of the <code>input_string<\/code>, the function will delete the whole string. In case <code>length<\/code> is zero, the function will insert the <code>replace_with_substring<\/code> at the beginning of the <code>input_string<\/code>.<\/li><li><code>replace_with_substring<\/code> is a substring that replaces <code>length<\/code> characters of the <code>input_string<\/code> beginning at <code>start_position<\/code>.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id='sql-server-stuff-function-examples'>SQL Server STUFF() function examples <a href=\"#sql-server-stuff-function-examples\" class=\"anchor\" id=\"sql-server-stuff-function-examples\" title=\"Anchor for SQL Server &lt;code&gt;STUFF()&lt;\/code&gt; function examples\">#<\/a><\/h3>\n\n\n\n<p>Let&#8217;s take some examples of using the SQL Server <code>STUFF()<\/code> function.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='a-using-stuff-function-to-insert-a-string-into-another-string-at-a-specific-location'>A) Using STUFF() function to insert a string into another string at a specific Location <a href=\"#a-using-stuff-function-to-insert-a-string-into-another-string-at-a-specific-location\" class=\"anchor\" id=\"a-using-stuff-function-to-insert-a-string-into-another-string-at-a-specific-location\" title=\"Anchor for A) Using &lt;code&gt;STUFF()&lt;\/code&gt; function to insert a string into another string at a specific Location\">#<\/a><\/h3>\n\n\n\n<p>This example uses the <code>STUFF()<\/code> function to delete the first three characters of the string <code>'SQL Tutorial'<\/code> and then insert the string <code>'SQL Server'<\/code> at the beginning of the string:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> \n    <span class=\"hljs-keyword\">STUFF<\/span>(<span class=\"hljs-string\">'SQL Tutorial'<\/span>, <span class=\"hljs-number\">1<\/span> , <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-string\">'SQL Server'<\/span>) <span class=\"hljs-keyword\">result<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">result\n-------------------\nSQL Server Tutorial\n\n(1 row affected)<\/code><\/span><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='b-using-the-stuff-function-to-convert-time-from-hhmm-to-hhmm'>B) Using the STUFF() function to convert time from HHMM to HH:MM <a href=\"#b-using-the-stuff-function-to-convert-time-from-hhmm-to-hhmm\" class=\"anchor\" id=\"b-using-the-stuff-function-to-convert-time-from-hhmm-to-hhmm\" title=\"Anchor for B) Using the &lt;code&gt;STUFF()&lt;\/code&gt; function to convert time from &lt;code&gt;HHMM&lt;\/code&gt; to &lt;code&gt;HH:MM&lt;\/code&gt;\">#<\/a><\/h3>\n\n\n\n<p>The following example uses the <code>STUFF()<\/code> function to insert the colon (:) at the middle of the time in the format <code>HHMM<\/code> and returns the new time value in the format <code>HH:MM<\/code>:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> \n    <span class=\"hljs-keyword\">STUFF<\/span>(<span class=\"hljs-string\">'1230'<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">0<\/span>, <span class=\"hljs-string\">':'<\/span>) <span class=\"hljs-keyword\">AS<\/span> formatted_time;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The output is:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">formatted_time<\/span>\n<span class=\"hljs-selector-tag\">--------------<\/span>\n12<span class=\"hljs-selector-pseudo\">:30<\/span>\n\n(1 <span class=\"hljs-selector-tag\">row<\/span> <span class=\"hljs-selector-tag\">affected<\/span>)<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='c-using-the-stuff-function-to-format-date-from-mmddyyy-format-to-mmddyyyy'>C) Using the STUFF() function to format date from MMDDYYY format to MM\/DD\/YYYY: <a href=\"#c-using-the-stuff-function-to-format-date-from-mmddyyy-format-to-mmddyyyy\" class=\"anchor\" id=\"c-using-the-stuff-function-to-format-date-from-mmddyyy-format-to-mmddyyyy\" title=\"Anchor for C) Using the &lt;code&gt;STUFF()&lt;\/code&gt; function to format date from &lt;code&gt;MMDDYYY&lt;\/code&gt; format to &lt;code&gt;MM\/DD\/YYYY&lt;\/code&gt;:\">#<\/a><\/h3>\n\n\n\n<p>The following example calls the <code>STUFF()<\/code> function twice to format a date from <code>MMDDYYY<\/code> to <code>MM\/DD\/YYY<\/code>:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> \n    <span class=\"hljs-keyword\">STUFF<\/span>(<span class=\"hljs-keyword\">STUFF<\/span>(<span class=\"hljs-string\">'03102019'<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">0<\/span>, <span class=\"hljs-string\">'\/'<\/span>), <span class=\"hljs-number\">6<\/span>, <span class=\"hljs-number\">0<\/span>, <span class=\"hljs-string\">'\/'<\/span>) formatted_date;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The output of the statement is:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">formatted_date\n--------------\n03\/10\/2019\n\n(1 row affected)<\/code><\/span><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='d-using-the-stuff-function-to-mask-credit-card-numbers'>D) Using the STUFF() function to mask credit card numbers <a href=\"#d-using-the-stuff-function-to-mask-credit-card-numbers\" class=\"anchor\" id=\"d-using-the-stuff-function-to-mask-credit-card-numbers\" title=\"Anchor for D) Using the &lt;code&gt;STUFF()&lt;\/code&gt; function to mask credit card numbers\">#<\/a><\/h3>\n\n\n\n<p>This example uses the <code>STUFF()<\/code> function to mask a credit card number. It reveals only the last four characters of the credit card no:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">DECLARE<\/span> \n    @ccn <span class=\"hljs-built_in\">VARCHAR<\/span>(<span class=\"hljs-number\">20<\/span>) = <span class=\"hljs-string\">'4882584254460197'<\/span>;\n\n<span class=\"hljs-keyword\">SELECT<\/span> \n    <span class=\"hljs-keyword\">STUFF<\/span>(@ccn, <span class=\"hljs-number\">1<\/span>, <span class=\"hljs-keyword\">LEN<\/span>(@ccn) - <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-keyword\">REPLICATE<\/span>(<span class=\"hljs-string\">'X'<\/span>, <span class=\"hljs-keyword\">LEN<\/span>(@ccn) - <span class=\"hljs-number\">4<\/span>))\n    credit_card_no;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">credit_card_no\n-----------------\nXXXXXXXXXXXX0197\n\n(1 row affected)<\/code><\/span><\/pre>\n\n\n<p>In this tutorial, you have learned how to use the SQL Server <code>STUFF()<\/code> function to delete a part of a string and insert a new substring, starting at a specified position.<\/p>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"1534\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/\"\n\t\t\t\tdata-post-title=\"SQL Server STUFF Function\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"1534\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/\"\n\t\t\t\tdata-post-title=\"SQL Server STUFF Function\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string, beginning at a specified position.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1127,"menu_order":23,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1534","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL Server STUFF Function By Practical Examples<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string.\" \/>\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.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server STUFF Function By Practical Examples\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Server Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-10T20:50:35+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-string-functions\\\/sql-server-stuff-function\\\/\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-string-functions\\\/sql-server-stuff-function\\\/\",\"name\":\"SQL Server STUFF Function By Practical Examples\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\"},\"datePublished\":\"2019-03-10T03:31:51+00:00\",\"dateModified\":\"2020-07-10T20:50:35+00:00\",\"description\":\"This tutorial shows you how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-string-functions\\\/sql-server-stuff-function\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-string-functions\\\/sql-server-stuff-function\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-string-functions\\\/sql-server-stuff-function\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server String Functions\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-string-functions\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL Server STUFF Function\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\",\"name\":\"SQL Server Tutorial\",\"description\":\"The Practical SQL Server Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server STUFF Function By Practical Examples","description":"This tutorial shows you how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string.","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.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server STUFF Function By Practical Examples","og_description":"This tutorial shows you how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string.","og_url":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/","og_site_name":"SQL Server Tutorial","article_modified_time":"2020-07-10T20:50:35+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/","url":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/","name":"SQL Server STUFF Function By Practical Examples","isPartOf":{"@id":"https:\/\/www.sqlservertutorial.net\/#website"},"datePublished":"2019-03-10T03:31:51+00:00","dateModified":"2020-07-10T20:50:35+00:00","description":"This tutorial shows you how to use the SQL Server STUFF() function to delete a part of a string and then insert a substring into the string.","breadcrumb":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/sql-server-stuff-function\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlservertutorial.net\/"},{"@type":"ListItem","position":2,"name":"SQL Server String Functions","item":"https:\/\/www.sqlservertutorial.net\/sql-server-string-functions\/"},{"@type":"ListItem","position":3,"name":"SQL Server STUFF Function"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlservertutorial.net\/#website","url":"https:\/\/www.sqlservertutorial.net\/","name":"SQL Server Tutorial","description":"The Practical SQL Server Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlservertutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1534","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/comments?post=1534"}],"version-history":[{"count":1,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1534\/revisions"}],"predecessor-version":[{"id":2650,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1534\/revisions\/2650"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1127"}],"wp:attachment":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/media?parent=1534"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}