Hallo an alle,
ich bin anfänger in mysql und habe versucht eine Tabelle mit 7 Zeilen zu erstellen, wobei in jeder Zeile 10 Nulls stehen sollen. ich habe folgendes gemacht:
INSERT INTO INFORMATION_ITEM_test3 (b0,b1,b2,b3,b4,b5,b6) VALUES
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL)),
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL)),
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL)),
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL)),
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL)),
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL)),
((NULL), (NULL), (NULL), (NULL), (NULL),
(NULL), (NULL), (NULL), (NULL), (NULL));
aber das funktioniert irgendwie nicht, da bekomme ich diese Meldung:
Error 1136 : Column count doesn’t match value count at row 1
wie kann ich das korregieren?
vielen Dank im voraus,
Oli.