9
2

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.

SQL エラーUnknown column ’user01’ in ’field list’

Last updated at Posted at 2020-08-05

PHPを使った課題に取り組んでいるとき、SQLコマンドの打ち込みでエラーが発生した。

発生したエラーは

Unknown column ’user01’ in ’field list’ 

入力したのは、

INSERT INTO user_table (user_name, password, name, profile) VALUE (user01, 1111, red, "こんにちは");

エラーが出た原因は、テーブルを作ったときの型の種類!
VARCHARに設定していたため、ダブルクォーテーション(多分シングルクォーテーションでもOK)で
囲まなければいけなかった。

INSERT INTO user_table (user_name, password, name, profile) VALUE ("user01", "1111", "red", "こんにちは");

エラー表示されたのはuser01の部分だけだったが、他の要素もVARCHARに設定していたため、ダブルクォーテーションを付けて再度INSERTしたら無事、クリアできました。

9
2
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
9
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?