About 27,400,000 results
Open links in new tab
  1. MySQL CREATE DATABASE - Creating a New Database in MySQL - 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. 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 creating any database. Once a database is created, you can check it in the list of databases with the following SQL command: SHOW DATABASES;

  3. MySQL Create Database Statement - GeeksforGeeks

    Jun 5, 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.

  4. MySQL :: Getting Started with MySQL: A Beginner's Guide

    Join us for a beginner-friendly session on MySQL, the world’s most popular open-source database. In this session, you'll learn how to: Download and install essential MySQL tools; Set up and configure MySQL Server; Load a sample database and run basic queries; Avoid common pitfalls for new users; Whether you're just starting out or looking to ...

  5. Creating Database in Mysql - MySQL Tutorial

    You can create a database in MySQL in two methods: Using MySQL Command Line Client; Using MySQL Workbench; Let’s check these methods one by one. 1) Creating MySQL database using MySQL Command Line Client. For creating a new database via MySQL Command Line Client you need to follow the below steps:

  6. How To Create a MySQL Database, Tables and Insert Data

    Aug 12, 2023 · MySQL is a free and open source database management system. You need to use sql commands to create database. You also need to login as mysql root user account. To create a database and set up tables for the same use the following sql commands: CREATE DATABASE – create the database.

  7. PHP Create a MySQL Database - W3Schools

    The CREATE DATABASE statement is used to create a database in MySQL. The following examples create a database named "myDB": Note: When you create a new database, you must only specify the first three arguments to the mysqli object (servername, username and password). Note: The following PDO example create a database named "myDBPDO":

  8. 5.3.1 Creating and Selecting a Database - MySQL

    Your database needs to be created only once, but you must select it for use each time you begin a mysql session. You can do this by issuing a USE statement as shown in the example. Alternatively, you can select the database on the command line when you invoke mysql .

  9. 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 commands while the server is running. Make sure that your MySQL server is connected. If your MySQL server isn't currently online, you can't create a database.

    • Views: 1.2M
    • How to Create a New Database in MySQL - Statology

      Jun 26, 2024 · Creating a new database in MySQL is a fundamental task for anyone working with databases. This tutorial will provide a launching point for the steps needed to create a new database using the MySQL command line and using the Workbench GUI. In order to create a new database, you will need to have: 1. Access the MySQL command line.

    • Some results have been removed
    Refresh