Monday, January 24, 2011

Creating A Database in Microsoft SQL Server 1/24/11

This will create a blank database named Blogging.
Use Master;  
 Go
 Create Database Blogging;  
After creating the database we can use it by using the 'use' command.
use Blogging;  

No comments:

Post a Comment

Classes

Programming II

Advanced Relational Database

Followers