Jump to content

query help


farahZ

Recommended Posts

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
Link to comment
https://forums.phpfreaks.com/topic/278179-query-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.