क्या कोई मुझे बता सकता है कि इस तालिका की परिभाषा में क्या गलत है।
mysql संस्करण 5.1.52-लॉग है
root@localhost spoolrdb> create table spoolqueue (
queue int,
idx bigint not null auto_increment,
status smallint,
querystring varchar(2048),
contenttype varchar(255),
characterencoding varchar(16),
body text,
primary key(queue,idx)
);
ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
1
मुझे यह प्रश्न (आपके लिए +1) पसंद है क्योंकि यह एक MySQL गोटा प्रस्तुत करता है जो MyISAM के लिए अद्वितीय है। यह पूछना कि हमेशा हार मानने और फिर से पेश करने से बेहतर क्यों है।
—
RolandoMySQLDBA