{"id":18735,"date":"2022-06-30T13:45:33","date_gmt":"2022-06-30T11:45:33","guid":{"rendered":"https:\/\/expert-only.com\/?p=18735"},"modified":"2022-11-29T11:36:24","modified_gmt":"2022-11-29T10:36:24","slug":"modify-a-sql-server-column-with-a-script","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/","title":{"rendered":"Modify a SQL Server column with a script"},"content":{"rendered":"\n<h4 class=\"has-text-align-center wp-block-heading\" id=\"h-how-to-modify-a-column-in-a-sql-server-table-with-a-script\"><strong><em>How to modify a column in a SQL Server table with a script?<\/em><\/strong><\/h4>\n\n\n\n<p>Tutorial to modify a SQL Server column with a T-SQL ALTER TABLE and ALTER COLUMN command. This SQL code allows you to modify the structure of a table. The table is created in the first part with a length of 20 characters. This already existing column is changed to a length of 100 characters.<\/p>\n\n\n\n<p>The example used is the Sales table created in this CREATE TABLE SQL script example. Create the table first before changing the column. Connect to the target instance and <a href=\"https:\/\/aws.amazon.com\/fr\/getting-started\/hands-on\/create-microsoft-sql-db\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">database<\/a> with SSMS and execute the code below in a new window.<\/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=\"\">-- Create the example table to store the Sales data\nCREATE TABLE [dbo].[Sales] (\n  [MonthName] NVARCHAR(20),\n  [Amount] NUMERIC(5)\n);\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">T-SQL script to change the length of a column<\/h2>\n\n\n\n<p>In effect, use this example of SQL Server code to update the sales table and change the months column. The goal is to give it a length of 100 characters instead of 20 characters.<\/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=\"\">-- Script to increase the length of the NVARCHAR field from 20 to 100 characters\nALTER TABLE [dbo].[Sales]\n  ALTER COLUMN [MonthName] NVARCHAR(100);\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Change the length of an SQL column without losing data<\/h2>\n\n\n\n<p>Modifying a table allows you to change the data stored in the table without deleting it. To modify a SQL Server table, <strong><em>the data already stored in the table must be compatible<\/em><\/strong> with the new <a href=\"https:\/\/www.w3resource.com\/sql\/data-type.php\" target=\"_blank\" rel=\"noreferrer noopener\">data type<\/a>. If the new data type is not compatible, then perform these actions in this order.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Store the data in a <a href=\"https:\/\/expert-only.com\/en\/t-sql\/create-temporary-table-sql-server\/\">temporary backup table<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/expert-only.com\/en\/t-sql\/empty-sql-server-table-truncate\/\">Empty the source table<\/a> with a truncate command<\/li>\n\n\n\n<li>Modify the table with the ALTER script above<\/li>\n\n\n\n<li>Insert the data back into the table with an <a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-insert-into-from-a-select\/\">INSERT INTO command<\/a><\/li>\n\n\n\n<li>Check the data in the column and in the table, e.g. count the number of rows<\/li>\n\n\n\n<li>Finally <a href=\"https:\/\/expert-only.com\/en\/t-sql\/drop-a-table-with-a-sql-server-script\/\">delete the backup table<\/a> with a DROP TABLE request<\/li>\n<\/ol>\n\n\n\n<p>This method allows you to change a SQL column and keep the data intact. Finally, here is an article that explains how to delete a SQL Server table from a database.<\/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\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"xdA5BSZEC2\"><a href=\"https:\/\/expert-only.com\/en\/t-sql\/drop-a-table-with-a-sql-server-script\/\">How to drop a SQL Server table with a script?<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;How to drop a SQL Server table with a script?&#8221; &#8212; SQL and IT Tutorials\" src=\"https:\/\/expert-only.com\/en\/t-sql\/drop-a-table-with-a-sql-server-script\/embed\/#?secret=pApbRX02sY#?secret=xdA5BSZEC2\" data-secret=\"xdA5BSZEC2\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>Finally, here is another tutorial to <a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-alter-table\/\">learn the syntax of SQL scripts to modify a table<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>How to modify a column in a SQL Server table with a script? Tutorial to modify a SQL Server column with a T-SQL ALTER TABLE and ALTER COLUMN command. This SQL code allows you to modify the structure of <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\" title=\"Modify a SQL Server column with a script\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":10709,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[454],"tags":[],"class_list":{"0":"post-18735","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>Modify a SQL Server column with a script - T-SQL Tutorial<\/title>\n<meta name=\"description\" content=\"To modify a SQL Server column with a script, use the T-SQL ALTER TABLE and ALTER COLUMN statement and execute it from SSMS.\" \/>\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\/modify-a-sql-server-column-with-a-script\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Modify a SQL Server column with a script\" \/>\n<meta property=\"og:description\" content=\"To modify a SQL Server column with a script, use the T-SQL ALTER TABLE and ALTER COLUMN statement and execute it from SSMS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\" \/>\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-30T11:45:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-29T10:36:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_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=\"2 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\/modify-a-sql-server-column-with-a-script\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Modify a SQL Server column with a script\",\"datePublished\":\"2022-06-30T11:45:33+00:00\",\"dateModified\":\"2022-11-29T10:36:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\"},\"wordCount\":333,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg\",\"articleSection\":[\"T-SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\",\"url\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\",\"name\":\"Modify a SQL Server column with a script - T-SQL Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg\",\"datePublished\":\"2022-06-30T11:45:33+00:00\",\"dateModified\":\"2022-11-29T10:36:24+00:00\",\"description\":\"To modify a SQL Server column with a script, use the T-SQL ALTER TABLE and ALTER COLUMN statement and execute it from SSMS.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Modify a SQL Server column with a script\"}]},{\"@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":"Modify a SQL Server column with a script - T-SQL Tutorial","description":"To modify a SQL Server column with a script, use the T-SQL ALTER TABLE and ALTER COLUMN statement and execute it from SSMS.","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\/modify-a-sql-server-column-with-a-script\/","og_locale":"en_US","og_type":"article","og_title":"Modify a SQL Server column with a script","og_description":"To modify a SQL Server column with a script, use the T-SQL ALTER TABLE and ALTER COLUMN statement and execute it from SSMS.","og_url":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-06-30T11:45:33+00:00","article_modified_time":"2022-11-29T10:36:24+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Modify a SQL Server column with a script","datePublished":"2022-06-30T11:45:33+00:00","dateModified":"2022-11-29T10:36:24+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/"},"wordCount":333,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg","articleSection":["T-SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/","url":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/","name":"Modify a SQL Server column with a script - T-SQL Tutorial","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg","datePublished":"2022-06-30T11:45:33+00:00","dateModified":"2022-11-29T10:36:24+00:00","description":"To modify a SQL Server column with a script, use the T-SQL ALTER TABLE and ALTER COLUMN statement and execute it from SSMS.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/journal-and-coffee-7BF9C361150_1920x1080.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/t-sql\/modify-a-sql-server-column-with-a-script\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Modify a SQL Server column with a script"}]},{"@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\/18735","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=18735"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/18735\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/10709"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=18735"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=18735"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=18735"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}