About 44,300,000 results
Open links in new tab
  1. Create a new database - Microsoft Support

    It explains how to create a desktop database by using a template, and how to build a database from scratch by creating your own tables, forms, reports, and other database objects. It also …

  2. SQL CREATE DATABASE and CREATE TABLE - GeeksforGeeks

    Aug 26, 2025 · A database acts as a container that holds related objects such as tables, views and procedures, while a table stores data in rows and columns. We will learn how to create …

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

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

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

  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 …

  7. How to Create a Database in SQL: Beginner’s Guide with Examples

    Jul 23, 2025 · Learn how to create a database using SQL with easy-to-follow examples. Understand the CREATE DATABASE statement, avoid common errors like ERROR 1044, and …

  8. Getting Started with MySQL

    Creating a table inside a database. First, pick the database in which you want to create the table with a USE statement:

  9. SQL - CREATE Database - Online Tutorials Library

    Following is the syntax to create a database in SQL −. Here, the DatabaseName is the name of the database that we want to create. The database name can contain any valid identifiers, …

  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 …