1. ホーム
  2. マイスル

[自動列は1つだけで、次のように定義する必要があります。

2022-02-22 23:18:45

msyql データベース エラー

[自動列は 1 つだけで、キーとして定義する必要があります。







sqlステートメントは、テーブルを作成し、次のエラーステートメントを報告します。 













create table users(





id int not null auto_increment ,



uname varchar(30) not null ,



upwd int not null ,



note varchar(30) not null    



)

















テーブルtusersを作成する(



id int not null auto_increment ,



uname varchar(30) not null ,



upwd int not null ,



note varchar(30) not null,



主キー(id) 



)







主キーを宣言するを追加して、完了です。