Hello everybody
I`ve created a table with just three fields. The first is an auto incrementing integer field and the second is a string. Finally, there exists a third Boolean field. The SQL statement used to create the relation (table) is shown below :
CREATE TABLE TEXNIKOS(Kwd_Texnikou INTEGER UNSIGNED AUTO_INCREMENT,
Onomatepwnymo VARCHAR(30) NOT NULL,
Eswterikos BOOL,
PRIMARY KEY(Kwd_Texnikou)) TYPE=INNODB;
Since my first field is an auto integer, I was wondering what syntax I have to use in order to Insert a record in this table?
thx, in advance
George Papadopoulos