Tagged Questions
4
votes
3answers
483 views
MySQL - Convert MM/DD/YY to Unix timestamp
The title says it all; is there an easy (single query) way to do this?
I'm reading those values from a column in a table and I think that the column itself is defined as a string (can't be helped, ...
4
votes
5answers
2k views
Best practice for storing the date in MySQL from PHP
I've been using the unix timestamp all my life.
I like it because it's easy to compare, it's fast because I store it as an integer. And since I'm using PHP, I can get any date/time format with date() ...
3
votes
3answers
434 views
How to write an SQL query that counts the number of rows per month and year?
Had anyone any idea how to query a vbulletin database to generate a report on the number of registrations per month/year to achive results like..
MM/YYYY Count
01/2001 : 10
02/2001 : 12
...
3
votes
1answer
600 views
how to compare two timestamp values from mysql with php
I have a db with time stamp values in this format: 0000-00-00 00:00:00 When I add this to the db I add a minutes to the current time. Now I need to check if the current time has passed the value added ...
3
votes
1answer
2k views
Mysql: Convert DB from local time to UTC
I need to convert an existing (datetime fields) db from local time ut UTC.
The values are stored ad datetimes on a server with time zone CET (+1) (with summertime +2). When selecting data I use ...
1
vote
2answers
157 views
How to convert UNIX time before 1970 to date format in MySQL?
I have a database using unix time for its dates ( i am using mySQL). I want to retrieve the dates in daily date format. This is my query:
SELECT FROM_UNIXTIME(time_created) FROM member
This works ...
1
vote
1answer
367 views
MySQL from_unixtime() and Python time.ctime() not agreeing
I have some data that uses unixtime. I'm using Python and MySQL.
I have noticed that the MySQL GUI Tools function from_unixtime() doesn't equal Python's output of time.ctime() or even the MySQL cmd ...
1
vote
3answers
678 views
Unixtime & mysql
I have a field on my table which is called X, and I store unixtime(php -> time()).
My question is:
How can I list all the months from my DB, something like: 6.2009 8.2009 etc..
And my second ...
0
votes
1answer
133 views
Help with a MySQL Unix timestamp Query
I am trying to create a custom MySQL for use with the Expression Engine CMS. The purpose of the query is to display events that are happening today or in the future.
The problem is that the EE field ...