2 Simple And Easy Ways To Create a MySQL New Users and Grant All Privileges

preview_player
Показать описание
⭐2 Simple And Easy Ways To Create a MySQL New Users and Grant All Privileges⭐

In this Video we will cover how to create a New MySQL users and then Grant different Privileges for that user to perform actions on the database like read only user and DBA user so on. In doing so, we will see 2 different ways to achieve the same
1. Create Users via MySQL Workbench
2.Create users via MySQL Command Line.
***************************
Commands used in Video
***************************
CREATE USER 'new_user'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'new_user'@'localhost';
FLUSH PRIVILEGES;
******************************
CREATE TABLE Customers (
CustomerName varchar(255),
ContactName varchar(255),
Address varchar(255),
City varchar(255),
PostalCode int,
Country varchar(255)
);
******************************
INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country)
VALUES ('Cardinal', 'Tom B. Erichsen', 'Skagen 21', 'Stavanger', 4006, 'Norway');
******************************

__________________________
⏲️Time Stamps⏲️

0:30 - Overview
0:40 -
2:00 -
2:58 -
7:55 - Conclusion

__________________________
Subscribe: | 🔔Make sure to enable ALL push notifications 🔔

__________________________

--------------------------------------------------
Production Credits:

Edited by: Simplifying Tech
Edited with Tool : Filmora 10
Produced by: Simplifying Tech
---------------------------------------------------
About Simplifying Tech :
👉 Lets Make it Simplified and illustrative....
The main Objective of Simplifying Tech is to have people learn new technologies and programming in more simplified and illustrative way.
---------------------------------------------------
Рекомендации по теме
Комментарии
Автор

This is very good tutorial for the one who making account to MyQSL . .goodjob my friend....

jveeARTS
Автор

Great tutorial as always! Keep it going!

alldolledup-theseries
Автор

Simple and to the point tutorial on MySQL New Users and how to Grant All Privileges. Thanks big time!

shortstoryuniverseaudio
Автор

I can not able to insert values in the table problem which is facing in mysql please help me

Kingstonstraddle
Автор

very detail and easy thank you for sharing

finehair
Автор

you do your job so well that's so technical for me though

ChefMuhammadBelgium
Автор

Great tutorial bro. Techies would be helped by this. Thanks for sharing.

achinpur