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 3 years have passed since last update.

Azure Database for MySQLでテーブルを作成した時につまらないエラーで悩んだ話

Posted at

初めに

これは自分用のメモであるため簡潔に書いてあります。 SQL初めての人がとても簡単なエラーに悩んだ話です。

エラー内容

テーブルを作成した時に以下のようなエラーが出た
mysql.connector.errors.ProgrammingError: 1044 (42000): Access denied for user 'USER'@'%' to database 'mysql'

アクセスできないらしい。

原因

mysqlの管理用のテーブルみたいなのに書き込もうとしたのが原因です。 とても初歩的なミスだけど、初めてだったからしょうがないよね...。

解決方法2> ちゃんとアプリケーションで使用するためのデータベースを作る。
create database <ここに作成したいデータベース名>

そしてここにテーブルを作るだけ。
終わり!

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?