Skip to content

Commit

Permalink
Update sample_data.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
bull2023x authored May 6, 2021
1 parent 0ecca57 commit 48e44ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql_sample_data/sample_data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

======================================
Expand Down

0 comments on commit 48e44ab

Please sign in to comment.