-
Notifications
You must be signed in to change notification settings - Fork 0
SQL Query
Tarun Mahajan edited this page Nov 26, 2023
·
2 revisions
- SHOW DATABASES;
- CREATE USER 'new_user'@'localhost' IDENTIFIED BY 'password';
- GRANT ALL PRIVILEGES ON your_database.* TO 'new_user'@'localhost';
- FLUSH PRIVILEGES;
- EXIT;
- DROP DATABASE database_name;
- CREATE DATABASE database_name;
- use database_name;
- show tables;