hi.
im dummie in db 2, i like create a table with data type Enum an data with property auto increment. my query in Mysql is this:
CREATE TABLE bines (
id int(6) NOT NULL auto_increment,
tipo_tarjeta enum('CREDITO','DEBITO','AMEX') NOT NULL,
inicio int(6) NOT NULL,
fin int(6) NOT NULL,
tarjeta_id int(6) NOT NULL,
PRIMARY KEY (`id`) ) ;
how is the query in db2?
please help me.