Hallo Tom
Sorry das ist Schwachsinn =)
Versuchs mal:
CREATE TABLE testing
(
id
varchar(32) NOT NULL default '',
a\_session
text NOT NULL,
foo
timestamp(14)
);
Nun mal ein korrekter insert wo man 3 Werte angiebt:
mysql> insert into testing values ('sadsad', 'safadsf', NOW());
Query OK, 1 row affected (0.02 sec)
Und hier das warum ich sage eine spalte zuviel gibt probleme:
mysql> insert into testing values ('sadsad', 'safadsf');
ERROR 1136: Column count doesn't match value count at row 1
Da ist eine spalte zu wenig...
Siehst Du meine bedenken?
LG
Aqua