In this article will explain How to Create Database and tables in MySql.Create a DatabaseCREATE DATABASE DATABASE_NAME;In MySql, if you want to display a list of all databases to run the below query.SHOW DATABASES;Create Tables:…
In this article will explain How to Create Database and tables in MySql.
Create a Database
CREATE DATABASE DATABASE_NAME;
In MySql, if you want to display a list of all databases to run the below query.
SHOW DATABASES;
Create Tables:…