SQL Server Express 2008 R2 Tutorial 3 - Making A Table

Опубликовано: 15 Июнь 2012
на канале: SchoolFreeware
54,480
94

http://www.schoolfreeware.com

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.