About 1,350,000 results
Open links in new tab
  1. MySQL CREATE DATABASE - Creating a New Database in MySQL

    This tutorial shows you step by step how to use the MySQL CREATE DATABASE statement to create a new database in the MySQL server.

  2. 15.1.12 CREATE DATABASE Statement - MySQL

    A database in MySQL is implemented as a directory containing files that correspond to tables in the database. Because there are no tables in a database when it is initially created, the …

  3. MySQL 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. MySQL Create Database Statement - GeeksforGeeks

    Jul 23, 2025 · In this article, we are going to learn how we can create databases in the MySQL database management system through the command line client tool and the MySQL …

  5. How to Create a Database in MySQL With Command Line?

    Learn how to create a MySQL database using the command line in Linux, macOS, and Windows with this Step-by-step guide with commands & examples.

  6. How to Create a New Database in MySQL - Statology

    Jun 23, 2024 · In order to create a new database, you will need to have: 1. Access the MySQL command line. Using a terminal or command prompt, log into your MySQL server. 2. After …

  7. How to create a Database in MySQL? CLI, Workbench - Tutorial …

    To create a new database, use the CREATE DATABASE statement: Replace mydatabase with the name of your desired database. Database names must be unique within the MySQL …

  8. MySQL Create Database – How To Create A Database In MySQL

    Apr 1, 2025 · This tutorial explains the steps to Create a Database in MySQL with syntax and examples. Also includes how to delete a database with example.

  9. Creating MySQL Databases: Commands, Queries, and Tools

    Apr 14, 2025 · Learn how to create databases in MySQL using SQL commands, the command line, or a visual tool. Simple and practical guide for all workflows.

  10. How to Create a Database in MySQL (with Pictures) - wikiHow

    Feb 24, 2025 · This wikiHow teaches you how to create a database in MySQL. In order to create a database, you'll have to open the "mysql" command line interface and enter your database …