02-05-2018, 04:16 PM
Greetings to everyone!
I do have some questions about syntax, currently using Debian Linux OS.
What is the difference with this two syntax in MySQL?
How can I make a installation script to simply install all the prerequisites?
utf8_general_ci or utf8_unicode_ci? which is more complex to use in mysql database?
Thanks everyone!
I do have some questions about syntax, currently using Debian Linux OS.
What is the difference with this two syntax in MySQL?
Code: (Select All)
GRANT ALL PRIVILEGES ON database.* TO 'user'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES;
- and -
GRANT ALL PRIVILEGES ON `database`.* TO 'admin'@'localhost';
How can I make a installation script to simply install all the prerequisites?
utf8_general_ci or utf8_unicode_ci? which is more complex to use in mysql database?
Thanks everyone!