Hi,Previously I have done my table-building tasks using the Management Studio UI, but in this instance I want to use T-SQL directly.Could anyone please give me the code to achieve the following results:1) Create a new table called [tbl_Regions], with the ID column as the primary key2) Modify existing table called [tbl_Sites] to add a new column called [regionID], which will be a foreign key for the above (FK Null values allowed if possible)3) Set the cascade action to NO ACTION for both UPDATE and DELETEI've got this far but my t-sql knowledge is minimal so I'll let the experts lead the way... 
USE [mytable]GOCREATE TABLE [tbl_Regions] ( ID INT IDENTITY(1,1), customerID int NOT NULL, regionName nvarchar(250) NOT NULL, regionDesc nvarchar(max) NOT NULL )GOALTER TABLE [tbl_Sites] ADD [regionID] int NULLGO