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
Post a Comment