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

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

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

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

  6. 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 an example: In MySQL, to perform any …

  7. MySQL Create Database Tutorial and Examples

    In this article, we covers creating a new database using the CREATE DATABASE statement. A database is a container that includes tables, views, triggers, functions, and stored procedures. …

  8. How to Create Database in MySQL (Create MySQL Tables)

    Jul 17, 2024 · CREATE DATABASE is the SQL command used for creating a database in MySQL. Imagine you need to create a database with name “movies”. You can create a …

  9. MySQL CREATE Database Statement - Online Tutorials Library

    To create a database in MySQL RDBMS through a PHP program, we need to execute the 'CREATE DATABASE' statement using the mysqli function named query () as shown below −. …

  10. Creating a New Database in MySQL: Tutorial with Examples

    May 18, 2021 · In this article, we study the different ways to create a MySQL database. 1. CREATE DATABASE: MySQL syntax example. 2. Create a database from the Command Line …

  11. Some results have been removed
Refresh