Previous Thread
Next Thread
Print Thread
Rate Thread
Joined: Feb 2004
Posts: 2
Lurker
Lurker
Offline
Joined: Feb 2004
Posts: 2
How can I select records based on a month or a year if the timestamp is in UNIX time? I can convert a single variable in UNIX time no problem but what is the best way to search a table looking for all records time stamped in September for example.

Here is a sample table:

1|1076460180|5004|Ed Husar|[email protected]|0
2|1076460363|4005|Ed Husar|[email protected]|0

Thanks in advance,

Ed

Sponsored Links
Joined: Dec 2000
Posts: 1,471
Addict
Addict
Offline
Joined: Dec 2000
Posts: 1,471
you need to variables.
One for the timestamp of sept 1st and one for sept 31th.
Then perform a query like that: SELECT * FROM table where timestamp > $var1 and timestamp < $var2

Joined: Feb 2004
Posts: 2
Lurker
Lurker
Offline
Joined: Feb 2004
Posts: 2
Here was what I ended up with. It appears to work but I need to add data with a few different months timestamp to verify.

// These are my start and end data filter
$date1="02/01/2004";
$date2="02/29/2004";

// Now we convert the dates
$time1=strtotime($date1);
$time2=strtotime($date2);

// select statement from HELL!
$result = mysql($database, "select * from ezu_files a, ezu_uploads b, ezu_uploadinfos c WHERE b.id = a.upload AND a.type='i-world/i-vrml' AND b.id = c.upload AND c.name='Description' AND b.uploaded between '$time1' and '$time2'");

I am not sure how efficient the select statement is but I don't know of a better way. That is another post I guess.

Cheers,

Ed

Joined: Jan 2000
Posts: 5,073
Admin Emeritus
Admin Emeritus
Joined: Jan 2000
Posts: 5,073
You might want to look at the MySQL date functions:

http://www.mysql.com/doc/en/Date_and_time_functions.html

You might be able to use FROM_UNIXTIME to get a month and year during the select...


UBB.classic: Love it or hate it, it was mine.

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20240430)