{"id":1960,"date":"2019-05-04T08:54:35","date_gmt":"2019-05-04T01:54:35","guid":{"rendered":"http:\/\/www.sqlservertutorial.net\/?page_id=1960"},"modified":"2020-04-11T20:12:08","modified_gmt":"2020-04-11T13:12:08","slug":"sql-server-create-schema","status":"publish","type":"page","link":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/","title":{"rendered":"SQL Server CREATE SCHEMA"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQL Server <code>CREATE SCHEMA<\/code> to create a new schema in the current database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='what-is-a-schema-in-sql-server'>What is a schema in SQL Server <a href=\"#what-is-a-schema-in-sql-server\" class=\"anchor\" id=\"what-is-a-schema-in-sql-server\" title=\"Anchor for What is a schema in SQL Server\">#<\/a><\/h2>\n\n\n\n<p>A schema is a collection of database objects including tables, <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-views\/\">views<\/a>, <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-triggers\/\">triggers<\/a>, <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/\">stored procedures<\/a>, <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-indexes\/\">indexes<\/a>, etc. A schema is associated with a username which is known as the schema owner, who is the owner of the logically related database objects.<\/p>\n\n\n\n<p>A schema always belongs to one database. On the other hand, a database may have one or multiple schemas. For example, in our <code>BikeStores<\/code> <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-sample-database\/\">sample database<\/a>, we have two schemas: <code>sales<\/code> and <code>production<\/code>. An object within a schema is qualified using the <code>schema_name.object_name<\/code> format like <code>sales.orders<\/code>. Two tables in two schemas can share the same name so you may have <code>hr.employees<\/code> and <code>sales.employees<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='built-in-schemas-in-sql-server'>Built-in schemas in SQL Server <a href=\"#built-in-schemas-in-sql-server\" class=\"anchor\" id=\"built-in-schemas-in-sql-server\" title=\"Anchor for Built-in schemas in SQL Server\">#<\/a><\/h3>\n\n\n\n<p>SQL Server provides us with some pre-defined schemas which have the same names as the built-in database users and roles, for example: <code>dbo<\/code>, <code>guest<\/code>, <code>sys<\/code>, and <code>INFORMATION_SCHEMA<\/code>.<\/p>\n\n\n\n<p class=\"note\">Note that SQL Server reserves the <code>sys<\/code> and <code>INFORMATION_SCHEMA<\/code> schemas for system objects, therefore, you cannot <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-table\/\">create<\/a> or <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-drop-table\/\">drop<\/a> any objects in these schemas.<\/p>\n\n\n\n<p>The default schema for a newly created database is <code>dbo<\/code>, which is owned by the <code>dbo<\/code> user account. By default, when you create a new user with the <code>CREATE USER<\/code> command, the user will take <code>dbo<\/code> as its default schema.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-create-schema-statement-overview'>SQL Server CREATE SCHEMA statement overview <a href=\"#sql-server-create-schema-statement-overview\" class=\"anchor\" id=\"sql-server-create-schema-statement-overview\" title=\"Anchor for SQL Server &lt;code&gt;CREATE SCHEMA&lt;\/code&gt; statement overview\">#<\/a><\/h2>\n\n\n\n<p>The <code>CREATE SCHEMA<\/code> statement allows you to create a new schema in the current database.<\/p>\n\n\n\n<p>The following illustrates the simplified version of the <code>CREATE SCHEMA<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">SCHEMA<\/span> schema_name\n    &#91;AUTHORIZATION owner_name]\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this syntax,<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>First, specify the name of the schema that you want to create in the <code>CREATE SCHEMA<\/code> clause.<\/li><li>Second, specify the owner of the schema after the <code>AUTHORIZATION<\/code> keyword.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-create-schema-statement-example'>SQL Server CREATE SCHEMA statement example <a href=\"#sql-server-create-schema-statement-example\" class=\"anchor\" id=\"sql-server-create-schema-statement-example\" title=\"Anchor for SQL Server &lt;code&gt;CREATE SCHEMA&lt;\/code&gt; statement example\">#<\/a><\/h2>\n\n\n\n<p>The following example shows how to use the <code>CREATE SCHEMA<\/code> statement to create the <code>customer_services<\/code> schema:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">SCHEMA<\/span> customer_services;\nGO\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Note that <code>GO<\/code> command instructs the SQL Server Management Studio to send the SQL statements up to the <code>GO<\/code> statement to the server to be executed.<\/p>\n\n\n\n<p>Once you execute the statement, you can find the newly created schema under the <strong>Security &gt; Schemas<\/strong> of the database name.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"314\" height=\"665\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png\" alt=\"SQL Server CREATE SCHEMA\" class=\"wp-image-1962\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png 314w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA-142x300.png 142w\" sizes=\"auto, (max-width: 314px) 100vw, 314px\" \/><\/figure>\n\n\n\n<p>If you want to list all schemas in the current database, you can query schemas from the <code>sys.schemas<\/code> as shown in the following query:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> \n    s.name <span class=\"hljs-keyword\">AS<\/span> schema_name, \n    u.name <span class=\"hljs-keyword\">AS<\/span> schema_owner\n<span class=\"hljs-keyword\">FROM<\/span> \n    sys.schemas s\n<span class=\"hljs-keyword\">INNER<\/span> <span class=\"hljs-keyword\">JOIN<\/span> sys.sysusers u <span class=\"hljs-keyword\">ON<\/span> u.uid = s.principal_id\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span> \n    s.name;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"292\" height=\"417\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-List-Schemas.png\" alt=\"SQL Server List Schemas\" class=\"wp-image-1961\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-List-Schemas.png 292w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-List-Schemas-210x300.png 210w\" sizes=\"auto, (max-width: 292px) 100vw, 292px\" \/><\/figure>\n\n\n\n<p>After having the <code>customer_services<\/code> schema, you can create objects for the schema. For example, the following statement <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-table\/\">creates a new table<\/a> named <code>jobs<\/code> in the <code>customer_services<\/code> schema:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">TABLE<\/span> customer_services.jobs(\n    job_id <span class=\"hljs-built_in\">INT<\/span> PRIMARY <span class=\"hljs-keyword\">KEY<\/span> <span class=\"hljs-keyword\">IDENTITY<\/span>,\n    customer_id <span class=\"hljs-built_in\">INT<\/span> <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span>,\n    description <span class=\"hljs-built_in\">VARCHAR<\/span>(<span class=\"hljs-number\">200<\/span>),\n    created_at DATETIME2 <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span>\n);\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this tutorial, you have learned how to use the SQL Server <code>CREATE SCHEMA<\/code> statement to create a new schema in the current database.<\/p>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"1960\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/\"\n\t\t\t\tdata-post-title=\"SQL Server CREATE SCHEMA\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"1960\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/\"\n\t\t\t\tdata-post-title=\"SQL Server CREATE SCHEMA\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>in this tutorial, you will learn how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":100,"menu_order":48,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1960","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL Server CREATE SCHEMA Statement By Examples<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server CREATE SCHEMA Statement By Examples\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Server Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-11T13:12:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/\",\"name\":\"SQL Server CREATE SCHEMA Statement By Examples\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/SQL-Server-CREATE-SCHEMA.png\",\"datePublished\":\"2019-05-04T01:54:35+00:00\",\"dateModified\":\"2020-04-11T13:12:08+00:00\",\"description\":\"This tutorial shows you how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/SQL-Server-CREATE-SCHEMA.png\",\"contentUrl\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/SQL-Server-CREATE-SCHEMA.png\",\"width\":314,\"height\":665,\"caption\":\"SQL Server CREATE SCHEMA\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/sql-server-create-schema\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Basics\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-basics\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL Server CREATE SCHEMA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\",\"name\":\"SQL Server Tutorial\",\"description\":\"The Practical SQL Server Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server CREATE SCHEMA Statement By Examples","description":"This tutorial shows you how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.","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:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server CREATE SCHEMA Statement By Examples","og_description":"This tutorial shows you how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.","og_url":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/","og_site_name":"SQL Server Tutorial","article_modified_time":"2020-04-11T13:12:08+00:00","og_image":[{"url":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/","url":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/","name":"SQL Server CREATE SCHEMA Statement By Examples","isPartOf":{"@id":"https:\/\/www.sqlservertutorial.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png","datePublished":"2019-05-04T01:54:35+00:00","dateModified":"2020-04-11T13:12:08+00:00","description":"This tutorial shows you how to use the SQL Server CREATE SCHEMA to create a new schema in the current database.","breadcrumb":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/#primaryimage","url":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png","contentUrl":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-CREATE-SCHEMA.png","width":314,"height":665,"caption":"SQL Server CREATE SCHEMA"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-schema\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlservertutorial.net\/"},{"@type":"ListItem","position":2,"name":"SQL Server Basics","item":"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/"},{"@type":"ListItem","position":3,"name":"SQL Server CREATE SCHEMA"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlservertutorial.net\/#website","url":"https:\/\/www.sqlservertutorial.net\/","name":"SQL Server Tutorial","description":"The Practical SQL Server Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlservertutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1960","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/comments?post=1960"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1960\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/100"}],"wp:attachment":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/media?parent=1960"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}