{"id":693,"date":"2019-11-06T16:21:18","date_gmt":"2019-11-06T10:51:18","guid":{"rendered":"https:\/\/binaryterms.com\/?p=693"},"modified":"2019-11-06T17:28:40","modified_gmt":"2019-11-06T11:58:40","slug":"database-languages","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/database-languages.html","title":{"rendered":"Database Languages"},"content":{"rendered":"<p><strong>Database Languages<\/strong> are the set of statements, that are used to define and manipulate a database. A Database language has <strong>Data Definition Language<\/strong> (DDL), which is used to construct a database &amp; it has <strong>Data Manipulation Language<\/strong> (DML), which is used to access a database.<\/p>\n<p>DDL implements database schema at the <strong>physical<\/strong>, <strong>logical<\/strong> and <strong>external<\/strong> level. While, the DML provides the statements to <strong>retrieve<\/strong>, <strong>modify<\/strong>, <strong>insert<\/strong> and <strong>delete<\/strong> the data from the database. In this section, we will discuss the database language in detail.<\/p>\n<h2>Database Language in DBMS<\/h2>\n<p>Database languages provide the tools to <strong>implement<\/strong> and <strong>manipulate<\/strong> a database. A database language is comprised of two languages:<\/p>\n<ol>\n<li><a href=\"#DataDefinitionLanguage(DDL)\">Data Definition Language (DDL)<\/a><\/li>\n<li><a href=\"#DataManipulationLanguage(DML)\">Data Manipulation Language (DML)<\/a><\/li>\n<\/ol>\n<p>DDL and DML are not two distinct languages but they together form a database language. The examples of database languages are SQL, My Access, Oracle, etc.<\/p>\n<p>The figure below displays the detailed classification of database languages.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-697\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg\" alt=\"Database Language\" width=\"396\" height=\"350\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg 396w, https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language-300x265.jpg 300w\" sizes=\"auto, (max-width: 396px) 100vw, 396px\" \/><\/p>\n<p>Let us study each of classification in detail.<br \/>\n<a name=\"DataDefinitionLanguage(DDL)\"><\/a><\/p>\n<h3>Data Definition Language (DDL)<\/h3>\n<p>DDL defines the statements to <strong>implement<\/strong> the database schema. If a clear separation between a <strong>logical<\/strong> (conceptual) and a <strong>physical<\/strong> (internal) level is not there, then DDL defines both the logical and physical schema and it also defines the <strong>mapping<\/strong> between logical and physical schema.<\/p>\n<p>If there is a clear separation between the logical and physical schema, then the <strong>storage definition language<\/strong> (SDL) is used to define the physical schema. But today, most of the relational DBMS do not use SDL for specifying the physical schema. Instead, the physical schema is defined using the combination of <strong>functions<\/strong> and <strong>parameters<\/strong> which allows DBA to map data to the storage.<\/p>\n<p>After implementing logical and physical schema, it\u2019s time to specify the <strong>view<\/strong> (external) schema. For that <strong>view definition language<\/strong> (VDL) is used, which also maps the view schema to the logical schema. But today in most of the DBMSs, DDL performs the role of VDL.<\/p>\n<p>In all today, <strong>DDL<\/strong> specifies all the schemas, i.e. physical, Logical and view schema. The set of statements in DDL used to implement database schema are as follow:<\/p>\n<p><strong>CREATE<\/strong>: This command is used to <b>construct <\/b>a relation (table) in the database.<\/p>\n<p><strong>ALTER<\/strong>: This command is used to <b>reconstruct <\/b>the data in the database.<\/p>\n<p><strong>DROP<\/strong>: This command is used to <strong>delete<\/strong> a relation in the database or an entire database.<\/p>\n<p><strong>TRUNCATE<\/strong>: This command <strong>deletes all the entries<\/strong> from the relation but keeps the relation structure secured in the database.<\/p>\n<p><strong>RENAME<\/strong>: This command <strong>renames<\/strong> the relation in a database.<\/p>\n<p>Well, it doesn\u2019t end here, DDL also defines some <strong>consistency constraints<\/strong> on the data, stored in the database. Below is the list of constraints specified by the DDL:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-696\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/DDL-Constraints.jpg\" alt=\"DDL Constraints\" width=\"600\" height=\"212\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/DDL-Constraints.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/DDL-Constraints-300x106.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p><strong>(i) Domain Constraints:<\/strong><br \/>\nWhenever we define any attribute in the database, we must specify its domain. The <strong>domain of any attribute<\/strong> defines the constraints on the <strong>values<\/strong> that an attribute can take. For example, if we specify an attribute \u201cName\u201d for the \u201cStudent\u201d relation then by specifying \u201cName char (25)\u201d, would restrict the attribute to take only character values.<\/p>\n<p><strong>(ii) Referential Integrity Constraints:<\/strong><br \/>\nA value for a given set of attributes in one relation must also appear for the <strong>same<\/strong> set of attributes in another relation. For example, we have a record of a student, and his department name is mentioned in the record. Now, we must have that department name in the department relation.<\/p>\n<p><strong>Note:<\/strong> Referential integrity may get <strong>violated<\/strong> while modifying the database. To resolve this, the action that causes violation must be <strong>rejected<\/strong>.<\/p>\n<p><strong>(iii) Assertion Constraint:<\/strong><br \/>\nA constraint that must always be satisfied in a database is assertion constraint. Like, <strong>domain constraint<\/strong> and <strong>referential integrity constraints<\/strong> are also an assertion constraint. For example, a student record must have a roll number in it; its roll number can\u2019t be Null. These type of constraints are assertion constraints. If the assertion constraint is <strong>violated<\/strong> the modification is <strong>rejected<\/strong>.<\/p>\n<p><strong>(iv) Authorization Constraint: <\/strong><br \/>\nWe cannot allow every user to access and modify the database. So, certain authorization constraints are introduced those are, <strong>read<\/strong> authorization, <strong>insert<\/strong> authorization, <strong>update<\/strong> authorization and <strong>delete<\/strong> authorization, which allows the user to read, add new data, modify the database and delete the data in database respectively.<br \/>\n<a name=\"DataManipulationLanguage(DML)\"><\/a><\/p>\n<h3>Data Manipulation Language (DML)<\/h3>\n<p>Data Manipulation Language has a set of statements that allows users to access and manipulate the data in the database. Using DML statements user can <strong>retrieve<\/strong>, <strong>insert<\/strong>, <strong>delete<\/strong> or <strong>modify<\/strong> the information in the database.<\/p>\n<p>The Data Manipulation Languages are further of two types, <strong>procedural<\/strong> and <strong>non-procedural<\/strong> languages:<\/p>\n<p><strong>(i) Procedural DMLs:<\/strong><br \/>\nProcedural DMLs are considered to be <strong>low-level<\/strong> languages, and they define <strong>what<\/strong> data is needed and <strong>how<\/strong> to obtain that data. The procedural DMLs are also called <strong>one-at-a-time<\/strong> DMLs as it retrieves and processes each record separately.<\/p>\n<p><strong>(ii) Non-Procedural DMLs:<\/strong><br \/>\nNon-Procedural DMLs are <strong>high-level languages, <\/strong>and they precisely define <strong>what<\/strong> data is required without specifying the way to access it. The non-procedural DMLs are also called <strong>set-a-time<\/strong> DMLs; this is because a non-procedural DMLs can retrieve several records using a single DML command.<\/p>\n<p>Non-procedural DMLs are also called <strong>declarative<\/strong> languages. As it only declares what data is required instead of specifying how it should be obtained. Generally, the end-users use the high-level (non-procedural) DMLs for specifying their requirement.<\/p>\n<p>Let us discuss some statements of DML:<\/p>\n<p><strong>SELECT<\/strong>: This command <strong>reads<\/strong> and <b>pulls out the<\/b>records from the database.<\/p>\n<p><strong>INSERT<\/strong>: This command <strong>adds<\/strong> new records to the database.<\/p>\n<p><strong>UPDATE<\/strong>: This command <strong>modifies<\/strong> the data in the database.<\/p>\n<p><strong>DELETE<\/strong>: This command <strong>deletes<\/strong> the records in the database.<\/p>\n<p>So this is all about the database languages which help in implementing the database schema and then install the data in the database.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Database Languages are the set of statements, that are used to define and manipulate a database. A Database language has Data Definition Language (DDL), which is used to construct a database &amp; it has Data Manipulation Language (DML), which is used to access a database. DDL implements database schema at the physical, logical and external [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[4],"tags":[],"class_list":{"0":"post-693","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-dbms","7":"entry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Database Languages? DDL &amp; DML - Binary Terms<\/title>\n<meta name=\"description\" content=\"Database Languages have a set of statements that are used to build database schemas and also to operate and control the data in the database. Database languages are comprised of two types of languages, Data Definition Language (DDL) &amp; Data Manipulation Language (DML).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/binaryterms.com\/database-languages.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Database Languages? DDL &amp; DML - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"Database Languages have a set of statements that are used to build database schemas and also to operate and control the data in the database. Database languages are comprised of two types of languages, Data Definition Language (DDL) &amp; Data Manipulation Language (DML).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/database-languages.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-06T10:51:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-11-06T11:58:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg\" \/>\n<meta name=\"author\" content=\"Neha T\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neha T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/database-languages.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"Database Languages\",\"datePublished\":\"2019-11-06T10:51:18+00:00\",\"dateModified\":\"2019-11-06T11:58:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/database-languages.html\"},\"wordCount\":936,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg\",\"articleSection\":[\"DBMS\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/database-languages.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/database-languages.html\",\"url\":\"https:\/\/binaryterms.com\/database-languages.html\",\"name\":\"What is Database Languages? DDL & DML - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg\",\"datePublished\":\"2019-11-06T10:51:18+00:00\",\"dateModified\":\"2019-11-06T11:58:40+00:00\",\"description\":\"Database Languages have a set of statements that are used to build database schemas and also to operate and control the data in the database. Database languages are comprised of two types of languages, Data Definition Language (DDL) & Data Manipulation Language (DML).\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/database-languages.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg\",\"width\":396,\"height\":350,\"caption\":\"Database Language\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/database-languages.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Database Languages\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/binaryterms.com\/#website\",\"url\":\"https:\/\/binaryterms.com\/\",\"name\":\"Binary Terms\",\"description\":\"The Computer Science &amp; IT Guide\",\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/binaryterms.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/binaryterms.com\/#organization\",\"name\":\"Binary Terms\",\"url\":\"https:\/\/binaryterms.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"width\":400,\"height\":63,\"caption\":\"Binary Terms\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\",\"name\":\"Neha T\",\"url\":\"https:\/\/binaryterms.com\/author\/author\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Database Languages? DDL & DML - Binary Terms","description":"Database Languages have a set of statements that are used to build database schemas and also to operate and control the data in the database. Database languages are comprised of two types of languages, Data Definition Language (DDL) & Data Manipulation Language (DML).","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:\/\/binaryterms.com\/database-languages.html","og_locale":"en_GB","og_type":"article","og_title":"What is Database Languages? DDL & DML - Binary Terms","og_description":"Database Languages have a set of statements that are used to build database schemas and also to operate and control the data in the database. Database languages are comprised of two types of languages, Data Definition Language (DDL) & Data Manipulation Language (DML).","og_url":"https:\/\/binaryterms.com\/database-languages.html","og_site_name":"Binary Terms","article_published_time":"2019-11-06T10:51:18+00:00","article_modified_time":"2019-11-06T11:58:40+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg","type":"","width":"","height":""}],"author":"Neha T","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Neha T","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/binaryterms.com\/database-languages.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/database-languages.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"Database Languages","datePublished":"2019-11-06T10:51:18+00:00","dateModified":"2019-11-06T11:58:40+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/database-languages.html"},"wordCount":936,"commentCount":0,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/database-languages.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg","articleSection":["DBMS"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/database-languages.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/database-languages.html","url":"https:\/\/binaryterms.com\/database-languages.html","name":"What is Database Languages? DDL & DML - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/database-languages.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/database-languages.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg","datePublished":"2019-11-06T10:51:18+00:00","dateModified":"2019-11-06T11:58:40+00:00","description":"Database Languages have a set of statements that are used to build database schemas and also to operate and control the data in the database. Database languages are comprised of two types of languages, Data Definition Language (DDL) & Data Manipulation Language (DML).","breadcrumb":{"@id":"https:\/\/binaryterms.com\/database-languages.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/database-languages.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/database-languages.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2019\/11\/Database-Language.jpg","width":396,"height":350,"caption":"Database Language"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/database-languages.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"Database Languages"}]},{"@type":"WebSite","@id":"https:\/\/binaryterms.com\/#website","url":"https:\/\/binaryterms.com\/","name":"Binary Terms","description":"The Computer Science &amp; IT Guide","publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/binaryterms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/binaryterms.com\/#organization","name":"Binary Terms","url":"https:\/\/binaryterms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","width":400,"height":63,"caption":"Binary Terms"},"image":{"@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe","name":"Neha T","url":"https:\/\/binaryterms.com\/author\/author"}]}},"_links":{"self":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/693","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/comments?post=693"}],"version-history":[{"count":0,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/693\/revisions"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=693"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=693"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=693"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}