Sunday, February 26, 2012

mysql操作メモ

参考:http://linux.kororo.jp/cont/server/mysql_user.php


  • ログイン
mysql -u -p
  • データベース作成

create database ;


  • データベース確認
show databases;


  • データベースへのユーザ登録
grant all privileges on .* to @'' to ;

No comments:

Post a Comment