I use a sqllite and I try to create this.
idText idNum
sav 1
abd 1
sav 2
sav 3
abd 2
Whith MySQL I did this but in sqllite is it possible?
the syntax in mysql is:
DROP TABLE IF EXISTStest.animals;
CREATE TABLEtest.animals(
grpchar(30) NOT NULL,
idmediumint(9) NOT NULL AUTO_INCREMENT,
namechar(30) NOT NULL,
PRIMARY KEY (grp,id)
) ENGINE=MyISAM;