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

    CREATE DATABASE Example The following SQL statement creates a database called "testDB":

  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. How to Create a SQL Server Database (No Command Line) - wikiHow

    May 12, 2025 · SQL Server databases are some of the most common databases in use, thanks in part to how easy it is to create and maintain them. With a free graphical user interface (GUI) …

  5. Create SQL Server Database using SQL Server Management

    Oct 22, 2019 · You’re new to SQL Server and need to create a database. It sounds like a simple enough task, but how do we do it? Let’s step through the database creation process using …

  6. How to Create Your Own Database to Practice SQL

    Oct 17, 2023 · Welcome to the step-by-step guide to creating your own SQL database from scratch, designed with beginners in mind. This guide helps you set up your database and also …

  7. Create Database in SQL Server - TutorialsTeacher.com

    There are two ways to create a new user database in SQL Server: You can execute the SQL script in the query editor using Master database. The following creates 'HR' database. The …

  8. Create a database in SQL Server - 3 best methods - Devart Blog

    Jan 10, 2025 · To be able to create a database in SQL Server for beginners with the suggested three methods, you need to install: To create a database in SQL Server, you can use Transact …

  9. How do I create a new SQL database? - Tencent Cloud

    Mar 25, 2025 · Creating a new SQL database typically involves several steps, including selecting a database management system (DBMS), installing it if necessary, and then using its interface …

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