AUTO_INCREMENT
featureCREATE TABLE note (
id int AUTO_INCREMENT,
note_id int AUTO_INCREMENT,
title varchar(50),
description varchar(50),
PRIMARY KEY(id, note_id)
);
The query generates the following error:#1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key