{"id":3500,"date":"2021-07-30T17:25:09","date_gmt":"2021-07-31T00:25:09","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=3500"},"modified":"2021-07-30T17:25:10","modified_gmt":"2021-07-31T00:25:10","slug":"how-to-alter-column-size-in-sql-server","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=3500","title":{"rendered":"How to Alter column size in SQL Server"},"content":{"rendered":"\n<p>If you\u2019re using\u00a0SQL Server, and you want to use\u00a0T-SQL\u00a0to change the size of an existing column, this article can help.<\/p>\n\n\n\n<p>By \u201cchanging the size of an existing column\u201d, I mean changing the data size. For example, say you have a&nbsp;<code>varchar(255)<\/code>&nbsp;but you want to increase its size to&nbsp;<code>varchar(500)<\/code>. Here\u2019s what you need to do in that case.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The ALTER TABLE Statement<\/h2>\n\n\n\n<p>If you\u2019re doing this with T-SQL, you need to use the&nbsp;<code>ALTER TABLE<\/code>&nbsp;statement. This statement enables you to change a table\u2019s definition after it has already been created (and it may also contain data).<\/p>\n\n\n\n<p>Here\u2019s an example of changing the size of an existing column:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ALTER TABLE Tasks\n    ALTER COLUMN TaskDescription varchar(500);\nGO\n<\/pre>\n\n\n\n<p>This example modifies the&nbsp;<code>Tasks<\/code>&nbsp;table by changing the size of the&nbsp;<code>TaskDescription<\/code>&nbsp;column.<\/p>\n\n\n\n<p>This obviously assumes that the column (and table) already exist in the database. Otherwise you\u2019ll get an error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check the Results<\/h2>\n\n\n\n<p>You can check the column size by running a query against&nbsp;<code>INFORMATION_SCHEMA.COLUMNS<\/code>. Like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">USE Solutions;\nSELECT \n    COLUMN_NAME,\n    DATA_TYPE,\n    CHARACTER_MAXIMUM_LENGTH,\n    CHARACTER_OCTET_LENGTH\nFROM INFORMATION_SCHEMA.COLUMNS\nWHERE TABLE_NAME = 'Tasks';\n<\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">COLUMN_NAME      DATA_TYPE  CHARACTER_MAXIMUM_LENGTH  CHARACTER_OCTET_LENGTH\n---------------  ---------  ------------------------  ----------------------\nTaskId           int        null                      null                  \nTaskName         nvarchar   255                       510                   \nTaskDescription  varchar    500                       500<\/pre>\n\n\n\n<p>In this case, we switch to the correct database (<code>Solutions<\/code>), then we query\u00a0<code>INFORMATION_SCHEMA.COLUMNS<\/code>\u00a0for information about the columns in the\u00a0<code>Tasks<\/code>\u00a0table. We could have narrowed this down to just the column we\u2019re interested in if there were too many columns in the table, but for this example, three columns are no problem.<\/p>\n\n\n\n<p><strong>For Microsoft SQL<\/strong><\/p>\n\n\n\n<p>For most things, I prefer scripting. But for column changes, I like the UI. Don&#8217;t have to remember to check for NOT NULL or any calculations or any additional column properties.<\/p>\n\n\n\n<p>Select table&#8211;> Design&#8211;> change value in Data Type shown in following Fig.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/i.stack.imgur.com\/Q2vDV.png\"><img decoding=\"async\" src=\"https:\/\/i.stack.imgur.com\/Q2vDV.png\" alt=\"enter image description here\"\/><\/a><\/figure>\n\n\n\n<p>Save tables design.<\/p>\n\n\n\n<p>Addtional Tips &#8211; try uncheck beow option if you got a trouble: <\/p>\n\n\n\n<p>Tools -> Options&#8230; \/ >Designers -> Table and Database Designers &#8212; uncheck &#8220;Prevent saving changes that require table re-creation&#8221;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019re using\u00a0SQL Server, and you want to use\u00a0T-SQL\u00a0to change the size of an existing column, this article can help. By \u201cchanging the size of an existing column\u201d, I mean changing the data size. For example, say you have a&nbsp;varchar(255)&nbsp;but you want to increase its size to&nbsp;varchar(500). Here\u2019s what you need to do in that <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=3500\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[10,625],"tags":[799,798],"class_list":["post-3500","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-sql","tag-alter-column-size-in-sql","tag-alter-column-size-in-sql-server"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"If you\u2019re using SQL Server, and you want to use T-SQL to change the size of an existing column, this article can help. By \u201cchanging the size of an existing column\u201d, I mean changing the data size. For example, say you have a varchar(255) but you want to increase its size to varchar(500). Here\u2019s what you need to do in that\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"alter column size in sql,alter column size in sql server,microsoft family,sql\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=3500\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#article\",\"name\":\"How to Alter column size in SQL Server | Summa Lai\",\"headline\":\"How to Alter column size in SQL Server\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i.stack.imgur.com\\\/Q2vDV.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500\\\/#articleImage\"},\"datePublished\":\"2021-07-30T17:25:09-07:00\",\"dateModified\":\"2021-07-30T17:25:10-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#webpage\"},\"articleSection\":\"Microsoft Family, SQL, Alter column size in SQL, Alter column size in SQL Server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625#listItem\",\"name\":\"SQL\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625#listItem\",\"position\":3,\"name\":\"SQL\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#listItem\",\"name\":\"How to Alter column size in SQL Server\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#listItem\",\"position\":4,\"name\":\"How to Alter column size in SQL Server\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625#listItem\",\"name\":\"SQL\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500\",\"name\":\"How to Alter column size in SQL Server | Summa Lai\",\"description\":\"If you\\u2019re using SQL Server, and you want to use T-SQL to change the size of an existing column, this article can help. By \\u201cchanging the size of an existing column\\u201d, I mean changing the data size. For example, say you have a varchar(255) but you want to increase its size to varchar(500). Here\\u2019s what you need to do in that\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3500#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2021-07-30T17:25:09-07:00\",\"dateModified\":\"2021-07-30T17:25:10-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Alter column size in SQL Server | Summa Lai","description":"If you\u2019re using SQL Server, and you want to use T-SQL to change the size of an existing column, this article can help. By \u201cchanging the size of an existing column\u201d, I mean changing the data size. For example, say you have a varchar(255) but you want to increase its size to varchar(500). Here\u2019s what you need to do in that","canonical_url":"https:\/\/SUMMALAI.COM\/?p=3500","robots":"max-image-preview:large","keywords":"alter column size in sql,alter column size in sql server,microsoft family,sql","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=3500#article","name":"How to Alter column size in SQL Server | Summa Lai","headline":"How to Alter column size in SQL Server","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i.stack.imgur.com\/Q2vDV.png","@id":"https:\/\/SUMMALAI.COM\/?p=3500\/#articleImage"},"datePublished":"2021-07-30T17:25:09-07:00","dateModified":"2021-07-30T17:25:10-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=3500#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=3500#webpage"},"articleSection":"Microsoft Family, SQL, Alter column size in SQL, Alter column size in SQL Server"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=3500#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=625#listItem","name":"SQL"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=625#listItem","position":3,"name":"SQL","item":"https:\/\/SUMMALAI.COM\/?cat=625","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3500#listItem","name":"How to Alter column size in SQL Server"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3500#listItem","position":4,"name":"How to Alter column size in SQL Server","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=625#listItem","name":"SQL"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3500#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3500#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=3500#webpage","url":"https:\/\/SUMMALAI.COM\/?p=3500","name":"How to Alter column size in SQL Server | Summa Lai","description":"If you\u2019re using SQL Server, and you want to use T-SQL to change the size of an existing column, this article can help. By \u201cchanging the size of an existing column\u201d, I mean changing the data size. For example, say you have a varchar(255) but you want to increase its size to varchar(500). Here\u2019s what you need to do in that","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=3500#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2021-07-30T17:25:09-07:00","dateModified":"2021-07-30T17:25:10-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"3500","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65a0cca356eca","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":{"locations":{"business":{"name":"","businessType":"","image":"","areaServed":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"streetLine1":"","streetLine2":"","zipCode":"","city":"","state":"","country":"","addressFormat":"#streetLineOne\n#streetLineTwo\n#city, #state #zipCode"},"contact":{"email":"","phone":"","phoneFormatted":"","fax":"","faxFormatted":""},"ids":{"vat":"","tax":"","chamberOfCommerce":""},"payment":{"priceRange":"","currenciesAccepted":"","methods":""}}},"openingHours":{"useDefaults":true,"show":true,"alwaysOpen":false,"use24hFormat":false,"timezone":"","labels":{"closed":"","alwaysOpen":""},"days":{"monday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"tuesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"wednesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"thursday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"friday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"saturday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"sunday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"}}}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-07-31 00:17:43","updated":"2024-01-12 05:22:43","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=625\" title=\"SQL\">SQL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Alter column size in SQL Server\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"SQL","link":"https:\/\/SUMMALAI.COM\/?cat=625"},{"label":"How to Alter column size in SQL Server","link":"https:\/\/SUMMALAI.COM\/?p=3500"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3500","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3500"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3500\/revisions"}],"predecessor-version":[{"id":3501,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3500\/revisions\/3501"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3500"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3500"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3500"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}