SQL Server Express 2008 R2 Tutorial 3 - Making a Table



A table holds data for the database. First, connect to the database you want to make the table in.

The USE command can connect to the database.

Example
USE SampleDB
go

Next, either open the database in the Object Explorer - Select Tables - Click New Table ... or use the command create table.

Code Download
test_table.sql.zip