How to Create a Table on SQL Server 2014 Tutorial
In this how to create a table on SQL Server 2014 tutorial, we'll learn about creating a table, the primary key constraint, how to set up non-clustered indexes, and how to choose a data type. Once you have these things down, you're ready to start creating tables in SSMS. You may be wondering where to begin. If you're unfamiliar with the process, keep reading! Non-clustered indexes Creating a non-clustered index is the same as creating a clustered index, but you will be using the keyword "NONCLUSTERED" instead of "CLUSTERED." The following script will create a non-clustered index, and sets the...