About 891,000 results
Open links in new tab
  1. SQL CREATE DATABASE Statement - W3Schools

    The CREATE DATABASE statement is used to create a new SQL database. The following SQL statement creates a database called "testDB": Tip: Make sure you have admin privilege before …

  2. CREATE DATABASE (Transact-SQL) - SQL Server | Microsoft Learn

    Oct 3, 2025 · Creates a new database. Select one of the following tabs for the syntax, arguments, remarks, permissions, and examples for a particular SQL version with which you're working.

  3. SQL Server Create Database Examples

    Dec 11, 2019 · We’ve already seen how to create a SQL Server database using SQL Server Management Studio (SSMS), but what if you need a script to do it? We’ll look at a few …

  4. SQL CREATE DATABASE and CREATE TABLE - GeeksforGeeks

    Aug 26, 2025 · CREATE command in SQL is used to define new databases and tables. A database acts as a container that holds related objects such as tables, views and procedures, …

  5. SQL CREATE DATABASE Statement (With Examples) - Programiz

    In this tutorial, you will learn about the SQL CREATE DATABASE statement in SQL with the help of examples.

  6. T-SQL CREATE DATABASE Examples - Quackit Tutorials

    This script ensures that you're using the master database before you attempt to create the database. It also drops (i.e. deletes) any existing database that has the same name of the one …

  7. SQL Server CREATE DATABASE By Practical Examples

    Summary: in this tutorial, you will learn how to create a new database in SQL Server using CREATE DATABASE statement or SQL Server Management Studio. The CREATE …

  8. SQL CREATE DATABASE Statement - Tutorial Republic

    In this tutorial you will learn how to create database in a relational database management system like, MySQL, SQL Server, etc. using SQL. Before doing anything with the data we must need …

  9. SQL CREATE DATABASE Examples | SQLRef

    Examples showing how to create a database in PostgreSQL, MySQL, and SQL Server.

  10. SQL - CREATE Database - Online Tutorials Library

    To create a database, you need to have admin previleges. Following is an example to create a database testDB using SQL CREATE DATABASE statement −. Once the database testDB is …