i'm trying to view in a table:
daytime --- meal --- calories
the table in the database has (fooddiary)
ID--Date---DayTime---Food--Calories
and table: food
FID---FoodName---Size---Calories
i'm not able to show the food a person ate for each meal !!
DayTime and Sum of Calories were working fine,, now trying to add the food a user ate corresponding to the day time.. please help me
SELECT fe.DayTime, SUM(f.Calories) as Calories, (select FoodName from fooddiary where DayTime=fe.DayTime) as meal FROM fooddiary fe INNER JOIN food f USING (Food) WHERE fe.ID= 111 And fe.Date='$date' GROUP BY fe.DayTime