food-tracker/src/get_foods.sql

13 lines
155 B
MySQL
Raw Normal View History

2025-10-19 17:58:02 +02:00
SELECT
id,
portion,
name,
kc_per_serving,
target_servings,
actual_servings,
color
FROM
food
2025-10-24 23:26:26 +02:00
ORDER BY
sort_order, name;