Skip to content

My journey of 10000 lines of sql commands using 3 databases

Notifications You must be signed in to change notification settings

beastgetssavvy13/10000-lines-sql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Pixelated Coder 👨‍💻

📝 SQL JOURNEY

👥 Author

My journey of 10000 lines of sql commands using 3 databases

🎉 ALL SQL COMMANDS USED

DATABASED INVOLVED

DataBases Name School Company OnlineShop
Tables School Students Teachers Subjects
Tables Company Employess Clients Projects
Tables Onlineshop Items Categories Customers Orders

Basic Snapshotting

mysql> CREATE USER 'admin' IDENTIFIED BY 'password1234';

Query OK, 0 rows affected (0.02 sec) //CHANGE PASSWORD

mysql> ALTER USER 'admin' IDENTIFIED BY 'php1234'; Query OK, 0 rows affected (0.01 sec)

//GRANT ALL PRIVELLEGES TO ALL DB () ALL TABLES () TO THE USER 'ADMIN' WITH USER CAN SET PRIVELLEGES AND NEW USER

mysql> GRANT ALL ON . TO 'admin' WITH GRANT OPTION; Query OK, 0 rows affected (0.02 sec) //PRIVILEGES TO TAKE PLACE

mysql> FLUSH PRIVILEGES;

//EXIT TO LOG IN TO ADMIN

SCHOOL

COMPANY

ONLINESHOP

Description:

Created an repository using SQL ON MYSQL WORKBENCH. Feel free to reach out if any issues 🙌

About

My journey of 10000 lines of sql commands using 3 databases

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published