Feed on
Posts
Comments

make a new mysql database


  1. log onto mysql:
    • $ mysql -u root
  2. create the database:
    • mysql> create database foo;
  3. grant access privileges:
    • mysql> grant all privileges on foo.* to user@localhost;

Bookmark and Share

if that was helpful ...

check out the other tips and tricks i've compiled on these pages. you might learn something else interesting!

Did I get this wrong? Let me know!

Trackback URI | Comments RSS