I wish to create a table T1. And when I execute the query that table should be include in HumanResources
schema which already exists in the database.
How should I change my query to do this? To get table T1
into the HumanResources
schema?
Create Table T1
(
Id int,
Name varchar(20)
)