About 27,900,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 a database - SQL Server | Microsoft Learn

    Jul 22, 2024 · This article describes how to create a database in SQL Server by using SQL Server Management Studio or Transact-SQL. To create a database in Azure SQL Database using T-SQL, see CREATE DATABASE. A maximum of 32,767 databases can be specified on an instance of SQL Server.

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

  5. Create Database in MS SQL Server - GeeksforGeeks

    Aug 14, 2024 · The MySQL CREATE DATABASE statement is used to create a new database. It allows you to specify the database name and optional settings, such as character set and collation, ensuring the database is ready for storing and managing data. In this article, we are going to learn how we can create database

  6. SQL 101: a Beginner’s Guide to SQL Database Programming

    Mar 20, 2025 · To work with a relational database, you need SQL (Structured Query Language). When you need information from a database, you use SQL queries. A query is simply a request for specific data, written in a way that resembles plain English. ... Here is a tutorial for you on how to Create Your Own Database to Practice SQL. Don’t forget to save the ...

  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 Valuable Tutorial with T-SQL and SSMS

    Dec 11, 2024 · The SQL Server database can be created using SQL Server Management Studio or CREATE DATABASE statements. First, we will discuss a brief overview of SQL Server databases, followed by step-by-step instructions to create the database using both methods as well as examples.

  9. How to create a database with SQL CREATE DATABASE

    Feb 25, 2025 · Now you can use your database. Similar commands to SQL CREATE DATABASE. If you’ve successfully created a database, you can create a new table in it. To do this, use SQL CREATE TABLE. To ensure that you can work in your database at all times, you should create regular backups. The appropriate command for this is SQL BACKUP DATABASE.

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

  11. Some results have been removed
Refresh