Commit 53ec8c44709a2282c3370f797d1b8b718ad21f4e
Merge branch 'master' of archives.plil.fr:aknockae/projet_SC_IMA3
Showing
1 changed file
with
30 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,30 @@ | @@ -0,0 +1,30 @@ | ||
1 | +//Projet Installation Météorologique Automatique | ||
2 | + | ||
3 | +//Gracias Transley | ||
4 | +//Havard Nicolas | ||
5 | +//Knockaert Amaury | ||
6 | +//Qiang Keren | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | +//CREATE DATABASE meteo | ||
11 | + | ||
12 | + | ||
13 | +drop table if exists Mesure ; | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | +CREATE TABLE Mesure | ||
18 | +( | ||
19 | + luminosite numeric, | ||
20 | + temperature numeric, | ||
21 | + pression numeric, | ||
22 | + humidite numeric, | ||
23 | + vent numeric, | ||
24 | + annee numeric NOT NULL, | ||
25 | + mois numeric NOT NULL, | ||
26 | + jour numeric NOT NULL, | ||
27 | + heure numeric NOT NULL, | ||
28 | + minute numeric NOT NULL, | ||
29 | + PRIMARY KEY(annee, mois, jour, heure, minute) | ||
30 | +); | ||
0 | \ No newline at end of file | 31 | \ No newline at end of file |