MySQL DDL Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 50: Line 50:
<syntaxhighlight lang='sql'>
<syntaxhighlight lang='sql'>
DROP DATABASE some_database;
DROP DATABASE some_database;
</syntaxhighlight>
=Tables=
==Show Tables==
Show the tables in the database.
<syntaxhighlight lang='sql'>
SHOW TABLES
</syntaxhighlight>
</syntaxhighlight>

Revision as of 02:08, 30 December 2023

Internal

Server Version

SELECT VERSION();

Users

Display Users

SELECT USER FROM mysql.user;

Create User

CREATE USER 'someuser'@'localhost' IDENTIFIED BY 'somepassword';

Grant to User All Privileges on a Database

GRANT ALL PRIVILEGES ON some_database.* TO 'someuser'@'localhost';
FLUSH PRIVILEGES;

Show Privileges

SHOW GRANTS FOR 'someuser'@'localhost';

Delete User

DROP USER 'someuser'@'localhost';

Database

Display Databases

SHOW DATABASES;

Check if a Database Exists

SHOW DATABASES LIKE 'some_database';
SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME='some_database'"

Create Database

CREATE DATABASE some_database;

Delete Database

DROP DATABASE some_database;

Tables

Show Tables

Show the tables in the database.

SHOW TABLES