Einzelnen Beitrag anzeigen
  #13  
Alt 25.01.2018, 13:05:01
4jam 4jam ist offline
Anfänger
 
Registriert seit: Jan 2018
Alter: 44
Beiträge: 10
AW: Anmeldeformular

CREATE TABLE `webinar` (
`id` int(5) NOT NULL,
`email_v` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`datum` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`uhrzeit` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`tool` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`link` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Daten für Tabelle `webinar`
--

INSERT INTO `webinar` (`id`, `email_v`, `datum`, `uhrzeit`, `tool`, `link`) VALUES
(1, 'xxx@xxx.de', '25.01.2018', '20:00', 'Zoom', 'https://test.de'),
(5, 'yyy@yyy.de', '21.03.2018', '20:00', 'Zoom', 'https://test.de'),
(6, 'eee@yyy.de', '10.06.2018', '20.00', 'Zoom', 'https://test.de'),
(7, 'eee@yyy.de', '25.02.2018', '20.00', 'zoom', 'https://test.de'),
(8, 'sss@sss.de', '21.03.2018', '15:08', 'Zoom', 'https://test.de'),
(9, 'fff@fff.de', '21.03.2018', '12:08', 'Zoom', 'https://test.de');
Mit Zitat antworten