0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

SQL 基本構文(MySQL)ログインコード

Posted at

cmd(コマンドプロンプト)など、なかなか知らない存在のものである。エンジニアが黒い画面を使っているのは、結構な人が知っていると思います。しかし、実際にコードを打ってコンピュータに指令をだしていると知っている人は少ないです。

下記に指令コードを書いていきます。

ローカルサーバにログイン
$mysql> -u[ユーザー名] -p[パスワード]

外部サーバーへのログイン
$mysql> -u[ユーザー名] -p[パスワード]
-h[host名] -p[ポート番号]

ユーザの追加
mysql>create user 'ユーザ名' @ 'ホスト名’ IDENIFIED BY 'password';

ユーザにDB操作権を
mysql>grant all privileges on test.db.*to testuser@localhost IDENTIFIED BY 'password';

ログイン中のユーザにパス設定
mysql>set password =password('hogehoge')

特定のユーザのpw設定
mysql>set password for 'tetuser' @ 'localhost' = password('hogehoge123');

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?