About 16,700,000 results
Open links in new tab
  1. How to create a database from shell command in MySQL?

    Mar 11, 2010 · You can use SQL on the command line: echo 'CREATE DATABASE dbname;' | mysql <...> Or you can use mysqladmin: mysqladmin create dbname

  2. MySQL CREATE DATABASE Statement - W3Schools

    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 …

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

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

  7. Create a Database on Command Line in MySQL - Online …

    Learn how to create a database using the command line in MySQL with this comprehensive guide.

  8. How to Create a Database in MySQL Using Command Line

    May 27, 2021 · This article shows you how to use the MySQL CREATE DATABASE statement to create a new database on a MySQL server. Each MySQL installation includes the mysql tool, …

  9. Create A MySQL Database: Command Line & Workbench

    Sep 22, 2022 · In this tutorial, you'll learn how to create a MySQL database using the command line and MySQL WorkBench. So, whether you prefer command-line tools or graphical user …

  10. MySQL Basics: Create a Database in MySQL - MySQLCode

    Mar 20, 2022 · In this tutorial, you’ll learn to create a database in MySQL in two different ways, command line and MySQL Workbench. But before we start to learn how to create a database, …

  11. Some results have been removed
Refresh