About 514,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

    Apr 27, 2025 · The CREATE DATABASE statement returns control to the user after the entry in sys.databases is created but before the database copy operation is complete. In other words, …

  3. SQL CREATE DATABASE - GeeksforGeeks

    Apr 12, 2025 · What is the CREATE DATABASE Command? The CREATE DATABASE Command is used to create a new database within a SQL based Database Management …

  4. How to Create a Database in SQL Server Using Command Line?

    Oct 19, 2023 · To create a database in SQL Server using the command line, follow the below syntax. CREATE DATABASE new_database_name; GO. Where, CREATE DATABASE: It is …

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

    The CREATE DATABASE statement is the SQL command used to create databases. Example CREATE DATABASE my_db; Here, the SQL command creates a database named my_db.

  6. SQL Server CREATE DATABASE By Practical Examples

    This tutorial shows you how to create a new database in SQL Server using CREATE DATABASE statement or SQL Server Management Studio.

  7. SQL Server Create Database Examples

    Dec 11, 2019 · Let’s start with the simplest possible CREATE DATABASE statement we can do. This is simply ‘CREATE DATABASE database_name’. The following will create a database …

  8. Create database - SQL for Geeks

    Creating SQL database refers to the the process of defining and adding a new database instance that is managed by a database management system (DBMS) using SQL commands. …

  9. SQL Create Database - Online Tutorials Library

    The CREATE DATABASE statement is a DDL (Data Definition Language) statement used to create a new database in SQL. If you are creating your database on Linux or Unix, then …

  10. SQL - CREATE Database: A Beginner's Guide - W3schools

    In SQL, we use the CREATE DATABASE statement to do this. It's like saying, "Hey SQL, I want to build a new digital kingdom!" Here's the basic syntax: CREATE DATABASE …

  11. Some results have been removed
Refresh