SQL Essentials
Database Commands
Show all databases: It will show all the databases
SHOW DATABASES;
Create a database: It will create a db with mentioned name (Not recommended to use spaces in name)
CREATE DATABASE <name>;
Delete a database: It will delete...
chetan77.hashnode.dev11 min read