# # Tabellenstruktur für Tabelle `abteilung` # DROP TABLE IF EXISTS `abteilung`; CREATE TABLE `abteilung` ( `AID` bigint(20) unsigned NOT NULL auto_increment, `Abteilung` varchar(20) NOT NULL default '', PRIMARY KEY (`AID`) ) TYPE=MyISAM AUTO_INCREMENT=4; # # Daten für Tabelle `abteilung` # INSERT INTO `abteilung` VALUES (1, 'Entwicklung'); INSERT INTO `abteilung` VALUES (2, 'EDV'); INSERT INTO `abteilung` VALUES (3, 'Buchhaltung'); # -------------------------------------------------------- # # Tabellenstruktur für Tabelle `mitarbeiter` # DROP TABLE IF EXISTS `mitarbeiter`; CREATE TABLE `mitarbeiter` ( `MID` bigint(20) unsigned NOT NULL auto_increment, `Vorname` varchar(20) NOT NULL default '', `Nachname` varchar(20) NOT NULL default '', `SID` bigint(20) unsigned NOT NULL default '0', `AID` bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (`MID`) ) TYPE=MyISAM AUTO_INCREMENT=3; # # Daten für Tabelle `mitarbeiter` # INSERT INTO `mitarbeiter` VALUES (1, 'Joe', 'Mustermann', 1, 1); INSERT INTO `mitarbeiter` VALUES (2, 'Ray', 'Jones', 3, 2); # -------------------------------------------------------- # # Tabellenstruktur für Tabelle `standort` # DROP TABLE IF EXISTS `standort`; CREATE TABLE `standort` ( `SID` bigint(20) unsigned NOT NULL auto_increment, `Standortbezeichnung` varchar(30) NOT NULL default '', PRIMARY KEY (`SID`) ) TYPE=MyISAM AUTO_INCREMENT=4; # # Daten für Tabelle `standort` # INSERT INTO `standort` VALUES (1, 'Berlin'); INSERT INTO `standort` VALUES (2, 'Darmstadt'); INSERT INTO `standort` VALUES (3, 'Frankfurt');