CREATETABLE[dbo].[WebARCustomerFeatures] ( [CustomerID][int]NOTNULL, [Features][int]NOTNULL )ON[PRIMARY] GO ALTERTABLE[dbo].[WebARCustomerFeatures]ADDCONSTRAINT[PK_WebARCustomerFeatures]PRIMARYKEYCLUSTERED([CustomerID])ON[PRIMARY] GO ALTERTABLE[dbo].[WebARCustomerFeatures]WITHNOCHECKADDCONSTRAINT[FK_WebARCustomerFeatures_CustomerID_ARCustomers]FOREIGNKEY([CustomerID])REFERENCES[dbo].[ARCustomers]([CustomerID]) GO