{"id":16973,"date":"2023-06-29T07:31:55","date_gmt":"2023-06-29T07:31:55","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=16973"},"modified":"2023-06-29T07:31:55","modified_gmt":"2023-06-29T07:31:55","slug":"how-do-you-create-a-table-with-sql","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/","title":{"rendered":"How do you Create a Table With SQL"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg\" alt=\"\" \/><\/p>\n<p>Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases. Among its many powerful features, the ability to create table sql stands out as a fundamental building block of database design. Whether you&#8217;re a seasoned SQL developer or just starting your journey in the world of data management, understanding how to create tables is essential for organizing and storing data efficiently.<\/p>\n<h2>Create Table SQL Statement<\/h2>\n<p>We utilize the CREATE TABLE command in the SQL database to create tables. Rows and columns are combined to form a table. In order to create a table, the structure must be specified by giving the columns names and the data type and size that will be contained in each column.<br \/>\nSyntax of Create Table SQL is shown below.<\/p>\n<h2>Syntax For Create Table SQL<\/h2>\n<pre><code>CREATE table table_name\n(\nColumn1 datatype (size),\n\ncolumn2 datatype (size),\n.\n.\ncolumnN datatype(size)\n);<\/code><\/pre>\n<p>Here, table_name is the name of the table, column is the name of the column.<br \/>\nLet\u2019s see a few examples of Create Table SQL Command.<\/p>\n<h2>Example of Create Table SQL<\/h2>\n<p>Create a table called Customer with the columns Name, Country, Age, Phone, and so forth to record customer data. <\/p>\n<pre><code>CREATE TABLE Customer(\n    CustomerID INT PRIMARY KEY,\n    CustomerName VARCHAR(50),\n    LastName VARCHAR(50),\n    Country VARCHAR(50),\n    Age int(2),\n  Phone int(10)\n);<\/code><\/pre>\n<p><strong>Output<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023787682-1-01%20%2835%29.png\" alt=\"\" \/><\/p>\n<h2>Create Table SQL using Another Table<\/h2>\n<p>The CREATE TABLE command can also be used to duplicate an existing table. The new table receives a detailed definition of each column, allowing all columns or a subset of columns to be chosen.<\/p>\n<p>By default, the new table would be filled with the existing values from the old table if an existing table was used to construct it.<\/p>\n<h2>Syntax To Create Table SQL Using Another Table<\/h2>\n<pre><code>CREATE TABLE new_table_name AS\n\n    SELECT column1, column2,\u2026\n\n    FROM existing_table_name\n\n    WHERE \u2026.;<\/code><\/pre>\n<h2>Query To Create Table SQL Using Another Table<\/h2>\n<pre><code>CREATE TABLE SubTable AS\nSELECT CustomerID, CustomerName\nFROM customer;<\/code><\/pre>\n<p><strong>Output<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023837547-1-02%20%2823%29.png\" alt=\"\" \/><\/p>\n<p><strong>Conclusion<\/strong><br \/>\nIn conclusion, the ability to create tables in SQL is a fundamental skill for anyone involved in managing and manipulating relational databases. Throughout this article, we have explored the art of creating tables, from understanding the syntax and defining column attributes to establishing relationships and enforcing data integrity through constraints.<\/p>\n<p>By mastering the creation of tables, you gain the power to design well-structured and optimized database schemas. You can define the appropriate data types, specify constraints, and establish primary and foreign key relationships that ensure data consistency and enable efficient data retrieval and manipulation.<\/p>\n<h2>FAQ Related to Create Table SQL<\/h2>\n<p><strong>Q1: What is the purpose of creating tables in SQL?<\/strong><br \/>\nA: Creating tables in SQL is essential for organizing and storing data in a relational database. Tables provide a structured format for data storage, allowing you to define columns, specify data types, and establish relationships between tables. By creating tables, you can effectively manage and manipulate data for various applications, such as web development, data analytics, and enterprise systems.<\/p>\n<p><strong>Q2: What are the key components of an SQL CREATE TABLE statement?<\/strong><br \/>\nA: The key components of an SQL CREATE TABLE statement include the table name, column definitions (with data types and constraints), and optional table-level constraints. The statement allows you to define the structure and characteristics of the table, such as column names, data types, primary keys, foreign keys, and default values.<\/p>\n<p><strong>Q3: How do I define columns and their attributes when creating a table?<\/strong><br \/>\nA: When creating a table, you define columns by specifying their names, data types, and optional attributes. Attributes include constraints like NOT NULL (to enforce non-null values), DEFAULT (to provide a default value), UNIQUE (to ensure uniqueness of values), and more. You can also specify column order, set auto-incrementing values, and define character set and collation for string columns.<\/p>\n<p><strong>Q4: What are primary keys and foreign keys, and how do I establish them in a table?<\/strong><br \/>\nA: A primary key is a column or a combination of columns that uniquely identifies each record in a table. It ensures data integrity and provides a fast lookup mechanism. In an SQL CREATE TABLE statement, you can define a primary key constraint using the PRIMARY KEY keyword followed by the column(s) that form the primary key.<\/p>\n<p>Foreign keys establish relationships between tables by referencing the primary key of another table. They enforce referential integrity, ensuring that the values in the foreign key column(s) match existing values in the referenced table&#8217;s primary key. Foreign keys can be defined using the FOREIGN KEY keyword followed by the column(s) and the referenced table and primary key.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases. Among its many powerful features, the ability to create table sql stands out as a fundamental building block of database design. Whether you&#8217;re a seasoned SQL developer or just starting your journey in the world of data management, understanding how [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[200],"tags":[],"class_list":["post-16973","post","type-post","status-publish","format-standard","hentry","category-sql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How do you Create a Table With SQL<\/title>\n<meta name=\"description\" content=\"Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How do you Create a Table With SQL\" \/>\n<meta property=\"og:description\" content=\"Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-29T07:31:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"How do you Create a Table With SQL\",\"datePublished\":\"2023-06-29T07:31:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\"},\"wordCount\":717,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg\",\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\",\"name\":\"How do you Create a Table With SQL\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg\",\"datePublished\":\"2023-06-29T07:31:55+00:00\",\"description\":\"Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/sql\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How do you Create a Table With SQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How do you Create a Table With SQL","description":"Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases.","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:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/","og_locale":"en_US","og_type":"article","og_title":"How do you Create a Table With SQL","og_description":"Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases.","og_url":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-06-29T07:31:55+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"How do you Create a Table With SQL","datePublished":"2023-06-29T07:31:55+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/"},"wordCount":717,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg","articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/","url":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/","name":"How do you Create a Table With SQL","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg","datePublished":"2023-06-29T07:31:55+00:00","description":"Structured Query Language (SQL) has long been the backbone of managing and manipulating relational databases.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1688023608151-How%20do%20you%20Create%20a%20Table%20with%20SQL.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/how-do-you-create-a-table-with-sql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"SQL","item":"https:\/\/prepbytes.com\/blog\/category\/sql\/"},{"@type":"ListItem","position":3,"name":"How do you Create a Table With SQL"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16973","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=16973"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16973\/revisions"}],"predecessor-version":[{"id":16974,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16973\/revisions\/16974"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=16973"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=16973"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=16973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}