About 7,370 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 - GeeksforGeeks

    4 days ago · 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 underscore (_) can be used …

  3. SQL CREATE DATABASE Statement - W3Schools

    The SQL CREATE DATABASE Statement The CREATE DATABASE statement is used to create a new SQL database. Tip: You need administrative privileges to create a new database.

  4. How to Create a SQL Server Database (No Command Line) - wikiHow

    Feb 19, 2026 · With a free graphical user interface (GUI) program such as SQL Server Management, you don't need to worry about fumbling around with the command line. See Step 1 below to create a …

  5. Create SQL Server Database using SQL Server Management Studio

    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 SQL Server …

  6. How to Create Your Own Database to Practice SQL - LearnSQL.com

    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 introduces you …

  7. SQL - Create SQL Database - Petri IT Knowledgebase

    Nov 2, 2023 · Learn how to create a SQL database with our easy-to-follow guide. Michael Otey shows you the simplest way to create a database with the T-SQL CREATE DATABASE command and …

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

  9. Create SQL Database: Beginner's Step-by-Step Guide

    Apr 8, 2024 · Learn how to create a SQL database with this beginner-friendly guide. Follow the step-by-step instructions to set up your SQL database easily.

  10. Create Database in SQL Server - TutorialsTeacher.com

    In SQL Server, a database is made up of a collection of objects like tables, functions, stored procedures, views etc. Each instance of SQL Server can have one or more databases.