1.1 KiB
1.1 KiB
1 | create table foods ( id INT NOT NULL AUTO_INCREMENT, id4 int, idswiss int, name VARCHAR(255) NOT NULL, synonyme varchar(255), kategorie varchar(255), Dichte float, |
---|---|
2 | Bezugseinheit varchar(255), |
3 | Energie_kJ float, |
4 | Fett_g float, |
5 | Fettsäuren_gesättigt_g float, |
6 | Fettsäuren_einfach_ungesättigt_g float, |
7 | Fettsäuren_mehrfach_ungesättigt_g float, |
8 | Cholesterin_mg float, |
9 | Kohlenhydrate_verfügbar_g float, |
10 | Zucker_g float, |
11 | Stärke_g float, |
12 | Nahrungsfasern_g float, |
13 | Protein_g float, |
14 | Salz_g float, |
15 | Alkohol_g float, |
16 | Wasser_g float, |
17 | VitaminA_Aktivität_RE_microg_RE float, |
18 | VitaminA_Aktivität_RAE_microg_RE float, |
19 | All_transRetinol_Äquivalentemicrog_RE float, |
20 | Betacarotin_Aktivität_microg_BCE float, |
21 | Betacarotin_microg float, |
22 | VitaminB1_mg float, |
23 | VitaminB2_mg float, |
24 | VitaminB6_mg float, |
25 | VitaminB12_microg float, |
26 | Niacin_mg float, |
27 | Folat_microg float, |
28 | Pantothensäure_mg float, |
29 | VitaminC_mg float, |
30 | VitaminD_microg float, |
31 | VitaminE_Aktivität_mg_ATE float, |
32 | Kalium_mg float, |
33 | Natrium_mg float, |
34 | Chlorid_mg float, |
35 | Calcium_mg float, |
36 | Magnesium_mg float, |
37 | Phosphor_mg float, |
38 | Eisen_mg float, |
39 | Jod_microg float, |
40 | Zink_mg float, |
41 | Selen_microg float, |
42 | primary(id); |