-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,10 @@ Insert into tb3(Country,Agency,email) value ('England','GHI Travel','789@hotmail | |
Insert into tb3(Country,Agency,email) values ('France','JFK Travel','[email protected]'); | ||
|
||
|
||
mysql> create user testuser@localhost identified by 'password'; # Mysql v8.0, "create user" at first required. | ||
mysql> create user testuser@localhost identified by 'password'; # Mysql v8.0, "create user" at first required. | ||
Query OK, 0 rows affected (0.14 sec) | ||
|
||
mysql> grant all on *.* to testuser@localhost with grant option; # Mysql v8.0, "Grant" allowed at 2nd step. | ||
mysql> grant all on *.* to testuser@localhost with grant option; # Mysql v8.0, "Grant" allowed at 2nd step. | ||
Query OK, 0 rows affected (0.19 sec) | ||
|
||
====================================== | ||
|