About 827,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 creating any database. Once a database is created, you can check it in the list of databases with the following SQL command: SHOW DATABASES;

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

    Dec 19, 2024 · You can use the CREATE DATABASE statement to create a read-only, static view, a database snapshot of the source database. A database snapshot is transactionally consistent with the source database as it existed at the time when the snapshot was created.

  3. SQL CREATE DATABASE | GeeksforGeeks

    Apr 12, 2025 · The CREATE DATABASE Command is used to create a new database within a SQL based Database Management System (DBMS) such as MySQL, PostgreSQL, or SQL Server. A database acts as a container where all your data tables, views, stored procedures, and more are stored.

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

    The SQL CREATE DATABASE statement is used to create databases. In this tutorial, you will learn about the SQL CREATE DATABASE statement in SQL with the help of examples.

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

    Oct 19, 2023 · In this SQL Server tutorial, you will understand how to create a database in SQL Server using command line. I will show you a step-by-step process from connecting to the SQL Server instance using the SQLCMD utility to creating a new database.

  6. SQL Create Database Valuable Tutorial with T-SQL and SSMS

    Dec 11, 2024 · The CREATE DATABASE command is used to create a new database in SQL Server. Using the CREATE DATABASE statement helps to automate the deployment process. For example, you are deploying a database application, and as per requirement, the database configuration must follow the standard parameters.

  7. 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.

  8. SQL CREATE DATABASE Statement - Tutorial Republic

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

  9. Create database - SQL for Geeks

    To create a SQL query in a database, use SQL commands such as "SELECT," "INSERT," "UPDATE," or "DELETE" to interact with the data.

  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: Let's try creating a database for a fictional bookstore: When you run this command, SQL will create a new database called "my_bookstore". It's that simple! You've just created your first database.