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
Share on other sites

can it be using like this?

 

 

 
SELECT fe.DayTime, SUM(f.Calories) as Calories, GROUP_CONCAT(select Food from fooddiary where DayTime=fe.DayTime and Date=2013-05-17)
FROM fooddiary fe
INNER JOIN food f USING (Food)
WHERE fe.ID= 111 And fe.Date=2013-05-17
GROUP BY fe.DayTime
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.