{"id":18294,"date":"2022-06-10T07:02:00","date_gmt":"2022-06-10T05:02:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=18294"},"modified":"2023-03-10T09:51:33","modified_gmt":"2023-03-10T08:51:33","slug":"call-a-sql-server-cte-multiple-times","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/","title":{"rendered":"Call a SQL Server CTE multiple times and reuse the data"},"content":{"rendered":"\n<h4 class=\"has-text-align-center wp-block-heading\" id=\"h-how-to-run-multiple-select-queries-on-the-same-sql-server-cte\"><strong><em>How to run multiple SELECT queries on the same SQL Server CTE?<\/em><\/strong><\/h4>\n\n\n\n<p>Is it possible to execute several selection queries on a CTE, i.e. to call a SQL Server CTE multiple times in the same stored procedure for example? First of all, a CTE (Common Table Expression) allows you to reuse the result of a selection query. It is a temporary dataset, available only during the script. The CTE is widely used in particular to create recursive queries.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Can a SQL Server CTE be called multiple times?<\/h2>\n\n\n\n<p>It is true that on the second SELECT query on a CTE this error is returned by SQL Server:<\/p>\n\n\n\n<p><em>(1 row(s) affected)<br>Msg 208, Level 16, State 1, Line 9<br>Invalid object name &#8216;MyCTE&#8217;.<\/em><\/p>\n\n\n\n<p>Indeed, it seems impossible to reuse a CTE several times. Otherwise, the error is displayed, Invalid object name with a SQL Server CTE. So, no CTE&#8217;s are not made to be called multiple times. The first SELECT query on the CTE works but not the following ones. Here is an example of a CTE with SELECT queries:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">WITH MyCTE ([Yesterday], [Today], [Tomorrow]) AS\n(\n  SELECT \n    getdate()-1  as [Yesterday], \n    getdate()    as [Today], \n    getdate()+1  as [Tomorrow]\n)\n\nSELECT [Yesterday] FROM MyCTE;\n\nSELECT [Today]     FROM MyCTE;\n\nSELECT [Tomorrow]  FROM MyCTE;\n<\/pre>\n\n\n\n<p>In SQL Server, a <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/t-sql\/queries\/with-common-table-expression-transact-sql?view=sql-server-ver15\" target=\"_blank\" rel=\"noreferrer noopener\">CTE<\/a> for Common Table Expression is a temporary object that exists only after it is created. It is then deleted after the first query executed on it. Therefore, a temporary table must be used to preserve the results.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using a temporary table instead of the CTE<\/h2>\n\n\n\n<p>This query which replaces the ETC with a temporary table works perfectly.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">IF OBJECT_ID('tempdb..#Temp_Table') IS NOT NULL\n   DROP TABLE #Temp_Table;\n\nSELECT \n  getdate()-1  as [Yesterday], \n  getdate()    as [Today], \n  getdate()+1  as [Tomorrow]\nINTO      #Temp_Table;\n\nSELECT [Yesterday] FROM #Temp_Table;\nSELECT [Today]     FROM #Temp_Table;\nSELECT [Tomorrow]  FROM #Temp_Table;\n<\/pre>\n\n\n\n<p>Also, be sure to <a href=\"https:\/\/expert-only.com\/en\/t-sql\/check-if-table-exists-in-sql-server\/\">check if the table exists and delete it first to avoid errors<\/a>. Finally, here is a tutorial on another SQL Server topic, to learn how to transform rows into columns from a SQL Server table. You need to <a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-pivot-query-example\/\">use the SQL Server PIVOT query<\/a>.<\/p>\n\n\n\n<p>Finally, this tutorial explains a method to call a SQL Server CTE multiple times and get around the problem.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/expert-only.com\/en\/t-sql\/sql-server-pivot-query-example\/\n<\/div><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Tutorials on useful SQL Server queries<\/h3>\n\n\n\n<p>Here is a selection of some MS SQL tutorials with simple but useful queries.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-substring-function\/\">How to use the SQL Server substring function? With Examples<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/insert-or-update-with-sql-server\/\">Two methods to perform an Insert Or Update with in T-SQL<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/calculate-difference-between-two-dates\/\">How to calculate the difference between two dates with SQL Server ?<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>How to run multiple SELECT queries on the same SQL Server CTE? Is it possible to execute several selection queries on a CTE, i.e. to call a SQL Server CTE multiple times in the same stored procedure for example? <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\" title=\"Call a SQL Server CTE multiple times and reuse the data\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":10839,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[454],"tags":[],"class_list":{"0":"post-18294","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-t-sql"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Call a SQL Server CTE multiple times and reuse the data - T-SQL<\/title>\n<meta name=\"description\" content=\"How to call a SQL Server CTE multiple times? To get around the error, use another method with a temporary table.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Call a SQL Server CTE multiple times and reuse the data\" \/>\n<meta property=\"og:description\" content=\"How to call a SQL Server CTE multiple times? To get around the error, use another method with a temporary table.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-10T05:02:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-10T08:51:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\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:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Call a SQL Server CTE multiple times and reuse the data\",\"datePublished\":\"2022-06-10T05:02:00+00:00\",\"dateModified\":\"2023-03-10T08:51:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\"},\"wordCount\":374,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"articleSection\":[\"T-SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\",\"url\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\",\"name\":\"Call a SQL Server CTE multiple times and reuse the data - T-SQL\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"datePublished\":\"2022-06-10T05:02:00+00:00\",\"dateModified\":\"2023-03-10T08:51:33+00:00\",\"description\":\"How to call a SQL Server CTE multiple times? To get around the error, use another method with a temporary table.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Call a SQL Server CTE multiple times and reuse the data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Call a SQL Server CTE multiple times and reuse the data - T-SQL","description":"How to call a SQL Server CTE multiple times? To get around the error, use another method with a temporary table.","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:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/","og_locale":"en_US","og_type":"article","og_title":"Call a SQL Server CTE multiple times and reuse the data","og_description":"How to call a SQL Server CTE multiple times? To get around the error, use another method with a temporary table.","og_url":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-06-10T05:02:00+00:00","article_modified_time":"2023-03-10T08:51:33+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Call a SQL Server CTE multiple times and reuse the data","datePublished":"2022-06-10T05:02:00+00:00","dateModified":"2023-03-10T08:51:33+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/"},"wordCount":374,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","articleSection":["T-SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/","url":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/","name":"Call a SQL Server CTE multiple times and reuse the data - T-SQL","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","datePublished":"2022-06-10T05:02:00+00:00","dateModified":"2023-03-10T08:51:33+00:00","description":"How to call a SQL Server CTE multiple times? To get around the error, use another method with a temporary table.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/programming-1857236_1920x1080.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/t-sql\/call-a-sql-server-cte-multiple-times\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Call a SQL Server CTE multiple times and reuse the data"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/18294","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=18294"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/18294\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/10839"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=18294"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=18294"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=18294"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}