Để khắc phục lỗi này, bạn cần thêm KHÓA CHÍNH vào trường auto_increment. Bây giờ chúng ta hãy xem lỗi này xảy ra như thế nào -
Ở đây, chúng tôi đang tạo một bảng và nó xuất hiện cùng một lỗi -
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT, StudentName varchar(40), StudentAge int ); ERROR 1075 (42000) : Incorrect table definition; there can be only one auto column and it must be defined as a key
Để giải quyết lỗi trên, bạn cần thêm KHÓA CHÍNH với AUTO_INCREMENT. Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(40), StudentAge int ); Query OK, 0 rows affected (1.01 sec)
Chèn một số bản ghi vào bảng bằng lệnh chèn -
mysql> insert into DemoTable(StudentName,StudentAge) values('Chris Brown',19); Query OK, 1 row affected (0.30 sec) mysql> insert into DemoTable(StudentName,StudentAge) values('David Miller',18); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable(StudentName,StudentAge) values('John Doe',20); Query OK, 1 row affected (0.11 sec)
Hiển thị tất cả các bản ghi từ bảng bằng câu lệnh select:
mysql> select *from DemoTable;
Điều này sẽ tạo ra kết quả sau -
+-----------+--------------+------------+ | StudentId | StudentName | StudentAge | +-----------+--------------+------------+ | 1 | Chris Brown | 19 | | 2 | David Miller | 18 | | 3 | John Doe | 20 | +-----------+--------------+------------+ 3 rows in set (0.00 sec)