How To Create A Database in SQL

Date Published: 27/02/2020 Published By: JaiSchool

After getting this step-by-step guide, you will learn how to create a database using SQL language in the relational database management system (RDBMS). The SQL query, you will learn here is - (CREATE DATABASE).

Read More About RDBMS Program »»» Getting Started with SQL

  1. To create a database, open PHPMyAdmin.
  2. Click on SQL to open the code editor.
  3. Write SQL Query to create a database CREATE DATABASE db_name; (database name can only contain underscore or written in a single word)
create database - Sql
  1. Now, Click on the "Go" or hit CTRL+ENTER.
  2. You will see your database has been created on the left side. If you can't find it then refresh the page.
database created

Publish A Comment

Leave a Reply

Your email address will not be published. Required fields are marked *