vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Mysql question, selecting threads by date.. (https://vborg.vbsupport.ru/showthread.php?t=162291)

Jelmertjee 11-09-2007 05:28 PM

Mysql question, selecting threads by date..
 
I'm creating a sort of archive and need to select threads by their created date, so I'm trying to use dateline. I know you can use vbdate() to turn it into a normal, usable date but I don't think this is any use because I can only select the raw dateline from the database, right?

Of course it's possible to match the date after quering but then I would need to query way too many threads... Does anybody have a solution for this, so you can already select the right threads with a query? Or just an explanation of how the dateline is determined??

jamesmarch 11-09-2007 05:57 PM

dateline is epoch time:
http://en.wikipedia.org/wiki/Unix_epoch

I think what you want to do is something like :

SELECT * from vb_thread where dateline <= UNIX_TIMESTAMP('2007-01-01 00:00:00');
This should select all threads created before 2007. UNIX_TIMESTAMP will convert a date to epoch time, which is the format dateline is in.

Also just for the sake of completeness, FROM_UNIXTIME(dateline) will go the other way.

SELECT dateline, FROM_UNIXTIME(dateline) from vb_thread;
will return dateline in epoch and normal yyyymmdd h:i:s format.

Jelmertjee 11-09-2007 07:53 PM

Thanks a lot, I had already figured it out in the mean time in a slightly different way, using mktime() to convert a $month and $year variable into 2 timestamps and then selecting all the threads with a timestamp between those 2 values to select all the threads from one month. Again, thanks for your quick reply. :)

Paul M 11-09-2007 11:37 PM

use vbmktime()


All times are GMT. The time now is 01:11 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.00972 seconds
  • Memory Usage 1,712KB
  • 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
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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