{"id":2514,"date":"2013-03-13T04:40:34","date_gmt":"2013-03-13T04:40:34","guid":{"rendered":"http:\/\/enjoyasp.net\/?p=2514"},"modified":"2013-03-13T06:32:38","modified_gmt":"2013-03-13T06:32:38","slug":"%e5%ad%97%e7%ac%a6%e4%b8%b2%e5%88%86%e8%a7%a3","status":"publish","type":"post","link":"https:\/\/enjoyasp.net\/index.php\/2013\/03\/13\/%e5%ad%97%e7%ac%a6%e4%b8%b2%e5%88%86%e8%a7%a3\/","title":{"rendered":"\u5b57\u7b26\u4e32\u5206\u89e3"},"content":{"rendered":"<pre class=\"brush:sql;first-line:1;pad-line-numbers:true;highlight:null;collapse:false;\">\r\nDECLARE @Value AS VARCHAR(20) = &#39;ABCC&#39; \r\nDECLARE @NoOfChars AS INT = LEN(@Value)\r\nDECLARE @Permutations TABLE (Value VARCHAR(20)) \r\n ;\r\n\r\nWITH NumTally\r\nAS (\r\n --Prepare the Tally Table to separate each character of the Value.\r\n SELECT 1 Num\r\n\r\n UNION ALL\r\n\r\n SELECT Num + 1\r\n FROM NumTally\r\n WHERE Num &lt; @NoOfChars\r\n ),\r\nChars\r\nAS (\r\n --Separate the Characters\r\n SELECT Num,\r\n  SUBSTRING(@Value, Num, 1) Chr\r\n FROM NumTally\r\n )\r\n SELECT *\r\n FROM Chars\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>DECLARE @Value AS VARCHAR(20) = &#39;ABCC&#39; DECLARE  [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36],"tags":[],"class_list":["post-2514","post","type-post","status-publish","format-standard","hentry","category-sql-server"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/posts\/2514","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/comments?post=2514"}],"version-history":[{"count":0,"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/posts\/2514\/revisions"}],"wp:attachment":[{"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/media?parent=2514"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/categories?post=2514"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/enjoyasp.net\/index.php\/wp-json\/wp\/v2\/tags?post=2514"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}