Friday 17 July 2015

SQL Server USE Keyword

SQL Server USE Keyword

The USE keyword is used to select a database in SQL Server. The syntax is as follows:
USE "database_name";

For example, if you want to connect to a database called "World", you can type in the following:

USE World;

No comments:

Post a Comment