vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   SQL to group data by Day (https://vborg.vbsupport.ru/showthread.php?t=153578)

SDB 07-27-2007 07:20 PM

SQL to group data by Day
 
Hi

I'm new to unix time format, could someone point me in the right direction so I can produce a query which groups data based on a timestamp field by calendar day?

Thanks in advance.

Simon

Eikinskjaldi 07-27-2007 08:44 PM

Quote:

Originally Posted by SDB (Post 1303316)
Hi

I'm new to unix time format, could someone point me in the right direction so I can produce a query which groups data based on a timestamp field by calendar day?

Thanks in advance.

Simon

select blah, day(from_unixtime(timestamp_field)) as 'days' from sometable group by days

SDB 07-27-2007 09:47 PM

Perfect!

Thank you very much indeed, that's got me started.

Simon

vertigo jones 07-28-2007 12:20 AM

Won't that group Jan 1 with March 1 and May 1 etc...?

Eikinskjaldi 07-28-2007 05:28 AM

Quote:

Originally Posted by vertigo jones (Post 1303534)
Won't that group Jan 1 with March 1 and May 1 etc...?

He said he wanted it grouped by calendar day. At any rate, I daresay that now he knows about from_unixtime, he will be able to sort out which date function he needs.

vertigo jones 07-28-2007 01:49 PM

Quote:

Originally Posted by Eikinskjaldi (Post 1303637)
He said he wanted it grouped by calendar day. At any rate, I daresay that now he knows about from_unixtime, he will be able to sort out which date function he needs.

I wasn't trying to give you crap about it, I wasn't exactly sure if that's what he was asking for either.

SDB 07-30-2007 08:44 AM

sorry guys, I missed this..

Yeah, I had a quick play, realised that, as you say it grouped by day of the month, so just added year and month fields, and sorted by them as well.

Thank to both :)

-

For anyone reading this and still struggling, use :

year(from_unixtime(timestamp_field)) as year, month(from_unixtime(timestamp_field)) as month, day(from_unixtime(timestamp_field)) as day...

then

group by year, month, day
order by year, month, day


All times are GMT. The time now is 11:47 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01085 seconds
  • Memory Usage 1,718KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete