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

    The SQL CREATE DATABASE Statement The CREATE DATABASE statement is used to create a new SQL database. Syntax CREATE DATABASE databasename;

  2. SQL CREATE DATABASE - GeeksforGeeks

    Jun 20, 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 …

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

    Apr 27, 2025 · SQL Server Overview In SQL Server, this statement creates a new database and the files used and their filegroups. It can also be used to create a database snapshot, or attach …

  4. SQL Server Create Database Examples

    Dec 11, 2019 · This is simply ‘CREATE DATABASE database_name’. The following will create a database called MyDatabase with the physical files in the default file location, the login you’re …

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

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

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

  8. SQL - CREATE Database: A Beginner's Guide - SQL Database

    You now know how to create a database, list all databases, and select a specific database to use. These are fundamental skills that you'll use throughout your SQL journey.

  9. SQL Create/Alter Database - w3resource

    Mar 28, 2024 · In SQL, the create database statement is used to create a database and alter database is used to change an existing database though the ANSI standard does not contain …

  10. SQL Create Database - Online Tutorials Library

    Learn how to create a database in SQL with this tutorial, covering syntax, examples, and best practices for database management.