Jump to content

Recommended Posts

Anyone have any idear how i would group records by time. For example if the timestamp of the record is in less 30mins affter the pervious record then group it with that record and so on and so forth. Facebook use somthing similar....

 

"John likes HotBabes, SexyBitches and four other pages"

Link to comment
https://forums.phpfreaks.com/topic/266488-grouping-records-with-time/
Share on other sites

Tryied to do a lil google search on it and couldnt find much.

 

 



						SELECT * FROM results, actions, commitment_users AS commitment_member, commitment_users AS commitment_admin, users AS admin,users AS member, commitments
						WHERE commitment_admin.user_id = admin.id
							AND
						admin.id = 1
							AND
						commitment_admin.commitment_user_type_id IN(2,3)
							AND		
                            commitment_admin.commitment_id = commitment_member.commitment_id
					        AND
						commitment_member.commitment_id = commitments.id
							AND
						commitment_member.commitment_user_type_id IN (1,2) 
							AND
						actions.commitment_id = commitments.id
							AND
						results.action_id = actions.id
							AND
						results.user_id = member.id

						GROUP BY results.id
						ORDER BY results.date_created, results.time

 

Here is my query at current

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.