hallo erstmal
ich hab ein kleines problem. Ich habe zwei tabellen tabelle a und tabelle b jetzt mochte ich das die daten der tabelle b mit in tabelle a übernommen werden
tabelle a
CREATE TABLE `predb` (
`id` int(11) unsigned NOT NULL auto_increment,
`section` varchar(32) collate utf8_unicode_ci NOT NULL,
`rlsname` varchar(255) collate utf8_unicode_ci NOT NULL,
`name` varchar(255) collate utf8_unicode_ci NOT NULL,
`grp` varchar(50) collate utf8_unicode_ci NOT NULL,
`status` decimal(1,0) NOT NULL default '0',
`nukereason` varchar(255) collate utf8_unicode_ci default NULL,
`reason` varchar(255) collate utf8_unicode_ci default NULL,
`ctime` decimal(10,0) unsigned NOT NULL default '0',
`timestamp` decimal(10,0) unsigned NOT NULL default '0',
`size` int(

default NULL,
`files` int(6) default NULL,
`genre` varchar(50) collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
KEY `rlsname` (`rlsname`)
) ENGINE=MyISAM AUTO_INCREMENT=1389 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
tabelle b
CREATE TABLE `predb` (
`id` int(11) NOT NULL auto_increment,
`section` varchar(20) NOT NULL default '',
`rlsname` varchar(255) NOT NULL default '',
`grp` varchar(50) NOT NULL default '',
`status` decimal(1,0) NOT NULL default '0',
`nukereason` varchar(255) default NULL,
`ctime` decimal(10,0) NOT NULL default '0',
`size` int(

default NULL,
`files` int(6) default NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `rlsname` (`rlsname`),
KEY `grp` (`grp`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
ist dies möglich. bin für jeden Vorschlag dankbar. Ich arbeite mit mysql 5.0