Collections:
"USE" - Setting the Current Database in SQL Server
How to set the current database in SQL Server?
✍: FYIcenter.com
Once you are connected to the SQL Server, you should select a database to work with and set it as the current database using the "USE" statement with this syntax:
USE database_name
The following tutorial example shows you how to set "FyiCenterData" as the current database, and create a table in "FyiCenterData":
USE FyiCenterData GO Changed database context to 'FyiCenterData'. CREATE TABLE Links (Name NVARCHAR(32)) GO SELECT name, type_desc, create_date FROM sys.tables GO name type_desc create_date Links USER_TABLE 2007-05-19 23:05:43.700
⇒ "DROP DATABASE" - Deleting Databases in SQL Server
⇐ Simplest Way To Create New Databases in SQL Server
2016-11-24, 5732🔥, 0💬
Popular Posts:
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...