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

    To create a new database in MySQL, you use the CREATE DATABASE statement. The following illustrates the basic syntax of the CREATE DATABASE statement: CREATE DATABASE [ IF …

  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 …

  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 …

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

  5. How to create a database from shell command in MySQL?

    Mar 11, 2010 · Connect to DB using base user: mysql -u base_user -pbase_user_pass And execute CREATE DATABASE, CREATE USER and GRANT PRIVILEGES Statements. Here's …

  6. MySQL :: MySQL 8.0 Reference Manual :: 15.1.12 CREATE DATABASE

    CREATE DATABASE creates a database with the given name. To use this statement, you need the CREATE privilege for the database. CREATE SCHEMA is a synonym for CREATE …

  7. How to Create a Database in MySQL

    Jun 9, 2023 · MySQL Create Database Command. To create a new database in MySQL, you can use the CREATE DATABASE command. The simple version looks like this: CREATE …

  8. How to Create and Select MySQL Databases - Linuxize

    Feb 12, 2020 · This tutorial explains how to create MySQL or MariaDB databases through the command line. We are assuming that you already have MySQL or MariaDB server installed on …

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

  10. How To Create A Database In MySQL: A Step-by-Step Guide

    First, open up your Command Line interface and log in to MySQL using your credentials. Once you’re logged in, you can start by creating a new database with the following command: This …

  11. Some results have been removed
Refresh