About 876,000 results
Open links in new tab
  1. Create a Database - SQL Server | Microsoft Learn

    Aug 7, 2025 · Create a database in SQL Server by using SQL Server Management Studio or Transact-SQL. View recommendations for the procedure.

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

  3. SQL CREATE DATABASE and CREATE TABLE - GeeksforGeeks

    Aug 26, 2025 · To create a new database in SQL, we use CREATE DATABASE command followed by the database name. Database names cannot contain spaces; if needed, an …

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

    Dec 11, 2024 · In this article, we look at how to create an SQL Server database using SSMS and also using T-SQL scripts with several examples.

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

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

  7. MySQL CREATE DATABASE - Creating a New Database in MySQL

    Summary: in this tutorial, you will learn how to use the MySQL CREATE DATABASE statement to create a new database on a MySQL server. To create a new database in MySQL, you use the …