Eigentlich nicht. Die Struktur sieht folgendermaßen aus:

Code:
CREATE TABLE IF NOT EXISTS `xxxxxxx_winout` (
  `slotid` int(10) NOT NULL default '0',
  `jackpot1` int(20) NOT NULL default '0',
  `jackpot2` int(20) NOT NULL default '0',
  `jackpot3` int(20) NOT NULL default '0',
  `jackpot4` int(20) NOT NULL default '0',
  `jackpot5` int(20) NOT NULL default '0',
  `jackpot6` int(20) NOT NULL default '0',
  `winout1` double(20,2) NOT NULL default '0.00',
  `winout2` double(20,2) NOT NULL default '0.00',
  `winout3` double(20,2) NOT NULL default '0.00',
  `winout4` double(20,2) NOT NULL default '0.00',
  `winout5` double(20,2) NOT NULL default '0.00',
  `winout6` double(20,2) NOT NULL default '0.00',
  `winout7` double(20,2) NOT NULL default '0.00',
  `winout8` double(20,2) NOT NULL default '0.00',
  `winout9` double(20,2) NOT NULL default '0.00',
  `winout10` double(20,2) NOT NULL default '0.00',
  `winout11` double(20,2) NOT NULL default '0.00',
  `winout12` double(20,2) NOT NULL default '0.00',
  KEY `slotid` (`slotid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Daten für Tabelle `xxxxxxx_winout`
--

INSERT INTO `xxxxxxx_winout` (`slotid`, `jackpot1`, `jackpot2`, `jackpot3`, `jackpot4`, `jackpot5`, `jackpot6`, `winout1`, `winout2`, `winout3`, `winout4`, `winout5`, `winout6`, `winout7`, `winout8`, `winout9`, `winout10`, `winout11`, `winout12`) VALUES
(1, 21249500, 2855000, 1490000, 1425000, 1025000, 1100000, 27223.00, 19183400.00, 159760.00, 2172000.00, 267322.00, 885500.00, 551312.00, 660000.00, 222500.00, 220000.00, 290000.00, 880000.00),
(1, 21232000, 2855000, 1490000, 1425000, 1025000, 1100000, 27223.00, 2172900.00, 159760.00, 2172000.00, 267322.00, 885500.00, 551312.00, 660000.00, 222500.00, 220000.00, 290000.00, 880000.00);
Ich verstehe einfach nicht warum ich die doppelte Zeile nicht löschen bzw. editieren kann.