Table : mesures9 Titre : mesuresTitre9
Requête : CREATE TABLE IF NOT EXISTS mesuresTitre9( `id` int(11) NOT NULL auto_increment, `titre` text collate latin1_general_ci NOT NULL, `unit` text collate latin1_general_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=4
Requête : TRUNCATE TABLE mesuresTitre9
Requête : INSERT INTO mesuresTitre9(`id`, `titre`, `unit`) VALUES (1, 'T9 en °C', '°C'), (2, 'H9. en %', '%'), (3, 'Pile9 en V', 'V')
Requête : CREATE TABLE IF NOT EXISTS mesures9( `id` int(11) NOT NULL auto_increment, `date` timestamp NOT NULL default CURRENT_TIMESTAMP, `mesure1` float NOT NULL, `mesure2` float NOT NULL, `mesure3` float NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=481
Requête : TRUNCATE TABLE mesures9