mirror of https://github.com/cheat/cheat.git
Rearranged the order of some of the mysql cheats.
This commit is contained in:
parent
f695290b36
commit
7b627816c1
|
@ -1,14 +1,14 @@
|
|||
# To connect to a database
|
||||
mysql -h localhost -u root -p
|
||||
|
||||
# To create a database in utf8 charset
|
||||
CREATE DATABASE owa CHARACTER SET utf8 COLLATE utf8_general_ci;
|
||||
|
||||
# To add a user and give rights on the given database
|
||||
GRANT ALL PRIVILEGES ON database.* TO 'user'@'localhost'IDENTIFIED BY 'password' WITH GRANT OPTION;
|
||||
|
||||
# To backup all databases
|
||||
mysqldump --all-databases --all-routines -u root -p > ~/fulldump.sql
|
||||
|
||||
# To restore all databases
|
||||
mysql -u root -p < ~/fulldump.sql
|
||||
|
||||
# To create a database in utf8 charset
|
||||
CREATE DATABASE owa CHARACTER SET utf8 COLLATE utf8_general_ci;
|
||||
|
||||
# To add a user and give rights on the given database
|
||||
GRANT ALL PRIVILEGES ON database.* TO 'user'@'localhost'IDENTIFIED BY 'password' WITH GRANT OPTION;
|
||||
|
|
Loading…
Reference in New Issue