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

    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 …

  3. Creating Database in Mysql - MySQL Tutorial

    Summary: in this tutorial, you will learn how to create a new database in MySQL in different ways with examples. In order to create tables and subsequently store data into them, you need to have a database. Apart from tables, the database holds …

  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 collation, ensuring the database is ready for storing and managing data.

  5. 5.3.1 Creating and Selecting a Database - MySQL

    To make menagerie the current database, use this statement: Database changed. 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.

  6. MySQL Create Database - How To Create A Database In MySQL

    Apr 1, 2025 · We will show a step-by-step process to create a database and schema as well. The output should help you understand the fact that schema is synonymous with the database. #1) Open MySQL Workbench for Executing the “Create Database” query. #2) To see the output of the executed query, press the “Refresh” button (as highlighted in the image below).

  7. Create Database in MySQL - Online Tutorials Library

    Here is a simple example to create a database named TUTORIALS using mysqladmin −. This will create a MySQL database called TUTORIALS. Besides creating a database in MySQL RDBMS with a MySQL query, you can also use a client program in programming languages such as Node.js, PHP, Java, and Python to achieve the same result.

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

    Jul 17, 2024 · Here is how to create a database in MySQL: 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 database in MySQL by executing following SQL command. Note: you can also use the command CREATE SCHEMA instead of CREATE DATABASE.

  9. MySQL :: MySQL 9.3 Reference Manual :: 5 Tutorial

    This chapter provides a tutorial introduction to MySQL by showing how to use the mysql client program to create and use a simple database. mysql (sometimes referred to as the “terminal monitor” or just “monitor”) is an interactive program that enables you to connect to a MySQL server, run queries, and view the results. mysql may also be used in …

  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