SQL server: To create a table inside a schema -


i wish create table t1. , when execute query table should include in humanresources schema exists in database.

how should change query this? table t1 humanresources schema?

create table t1 (     id  int,     name varchar(20) ) 

create table humanresources.t1 (...); 

in attempt, trying add database called humanresources , schema dbo. it's database.schema.object.

edit

in response op's comment, question has been answered here: how create sql table under different schema?


Comments

Popular posts from this blog

node.js - How to mock a third-party api calls in the backend -

java - Could not locate OpenAL library -

Non Unique Username with ASP.Net Identity 2.0 -