43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
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,
|
|
Bezugseinheit varchar(255),
|
|
Energie_kJ float,
|
|
Fett_g float,
|
|
Fettsäuren_gesättigt_g float,
|
|
Fettsäuren_einfach_ungesättigt_g float,
|
|
Fettsäuren_mehrfach_ungesättigt_g float,
|
|
Cholesterin_mg float,
|
|
Kohlenhydrate_verfügbar_g float,
|
|
Zucker_g float,
|
|
Stärke_g float,
|
|
Nahrungsfasern_g float,
|
|
Protein_g float,
|
|
Salz_g float,
|
|
Alkohol_g float,
|
|
Wasser_g float,
|
|
VitaminA_Aktivität_RE_microg_RE float,
|
|
VitaminA_Aktivität_RAE_microg_RE float,
|
|
All_transRetinol_Äquivalentemicrog_RE float,
|
|
Betacarotin_Aktivität_microg_BCE float,
|
|
Betacarotin_microg float,
|
|
VitaminB1_mg float,
|
|
VitaminB2_mg float,
|
|
VitaminB6_mg float,
|
|
VitaminB12_microg float,
|
|
Niacin_mg float,
|
|
Folat_microg float,
|
|
Pantothensäure_mg float,
|
|
VitaminC_mg float,
|
|
VitaminD_microg float,
|
|
VitaminE_Aktivität_mg_ATE float,
|
|
Kalium_mg float,
|
|
Natrium_mg float,
|
|
Chlorid_mg float,
|
|
Calcium_mg float,
|
|
Magnesium_mg float,
|
|
Phosphor_mg float,
|
|
Eisen_mg float,
|
|
Jod_microg float,
|
|
Zink_mg float,
|
|
Selen_microg float,
|
|
primary(id);
|