Hi, welcome to the MySQL Database repository, I created this repository for friends who want to deepen SQL syntax / queries in depth, I will update the material in it periodically, And You can also contribute directly to this repository with PR (Pull Request).
Query SQL
CREATE DATABASE
, Creating a database syntax/querySHOW DATABASES
, Show all database in your DBMS MySQLUSE
, Using access database after createCREATE TABLE
, Creating Table into database after Database is created and accessed database is selectedSHOW TABLES
, Show some table if table is exist in databaseSHOW DATABASES
, Show database if database is exist in MySQL Server / DBMS (Database Management System)DROP TABLE
, Delete choosen table in databaseDROP DATABASE
, Drop choosen databaseSELECT
, Extracts data from table in databaseUPDATE
, Update data from table in databaseDELETE
, Delete data from table in databaseINSERT INTO
, Insert data into table is selected in databaseALTER TABLE
, Modifies a database