13 lines
142 B
MySQL
13 lines
142 B
MySQL
|
|
SELECT
|
||
|
|
id,
|
||
|
|
portion,
|
||
|
|
name,
|
||
|
|
kc_per_serving,
|
||
|
|
target_servings,
|
||
|
|
actual_servings,
|
||
|
|
color
|
||
|
|
FROM
|
||
|
|
food
|
||
|
|
WHERE
|
||
|
|
id = ?1
|