MySQL
From Wsms
MySQL Database Manager
Contents |
[edit]
Installation
[edit]
Installation on Windows 2003 server
See: 20070305a
[edit]
Installation on Linux
See: 20070315a
[edit]
Using grant to create a new database user account
Normally, you create a new database and give a user access to it using the grant command. The basic form for the grant command is something like:
mysql> grant all on sample.* to 'sampadm'@'localhost' identified by 'password';
See http://dev.mysql.com/doc/refman/5.1/en/account-management-sql.html There is also a CREATE USER statement, but I don't think you need it.
[edit]
See Also
http://www.mysql.com/
http://dev.mysql.com/doc/refman/5.0/en/index.html
MySQL_by_Paul_DuBois
MySQL_Tutorial
Designing Databases http://www.linuxjournal.com/article/3894
Creating Queries http://www.linuxjournal.com/article/3970
MySQL Deserves a Double Take http://interactive.linuxjournal.com/article/9571
