SQL Server Tutorials

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...
SQL Server Tutorials

How to Create Database in SQL Server 2005 Tutorial

This how-to-create-database in SQL Server 2005 tutorial covers the creation of a blank database, the Query editor, normalization, DML triggers, and more. The tutorial will also introduce you to the most important features of the database manager. In this tutorial, we will cover all of the features that will help you create a database. So, if you're new to SQL Server, this tutorial will be the right place for you to begin learning how to create a database. Table definition This section explains how to edit a table's definition. First, you need to right-click the table to open the design...