Saved Bookmarks
| 1. |
What Is The Command To Create A Database In Sql Server? |
|
Answer» There is a command called ‘CREATEDATABASE’, it can be utilized to CREATE any database on the SQL SERVER. Its SYNTAX is: CREATE DATABASE database_name Example- “Test” database can be created to CREATE DATABASE Test There is a command called ‘CREATEDATABASE’, it can be utilized to create any database on the SQL server. Its syntax is: CREATE DATABASE database_name Example- “Test” database can be created to CREATE DATABASE Test |
|