extremeguy Posted December 16, 2003 Share Posted December 16, 2003 I have a MySQL database table with a field that is of type TIMESTAMP(12). When I do a query, I get the result back as YYYYMMDDHHMM as expected. The syntex of my query is \"SELECT * FROM rv\". I am obviously using PHP and I am trying to take the result and split it up into 2 arrays, one for date and one for time (ie. $date == $date[0]=YYYY, $date[1]=MM, $date[2]=DD and $time == $time[0]=HH, $time[1]=mm). WHat is the easiest way to accomplish this? I have also thought about trying to get the info from within my query, BUT I am using \"SELECT *\" and have not found a way to use \" * \" and request specific formated dates or times. I would rather stick with selecting \" * \" instead of spelling it all out in the query b/c there are 20+ fields of info that I need. Thanks in advance for the help! Link to comment https://forums.phpfreaks.com/topic/1515-datetimestamp-question/ Share on other sites More sharing options...
gizmola Posted December 16, 2003 Share Posted December 16, 2003 Try something like: SELECT *, DATE(ts) as tsdate, TIME(ts) as tstime FROM table Link to comment https://forums.phpfreaks.com/topic/1515-datetimestamp-question/#findComment-4980 Share on other sites More sharing options...
extremeguy Posted December 16, 2003 Author Share Posted December 16, 2003 Try something like: SELECT *, DATE(ts) as tsdate, TIME(ts) as tstime FROM table I just tried this and it didn\'t work. This is the SQL query that I am using: SELECT *, DATE(rv_arrive) as arrive_date, TIME(rv_arrive) as arrive_time FROM rt_rv WHERE rv_key=1001 Link to comment https://forums.phpfreaks.com/topic/1515-datetimestamp-question/#findComment-4981 Share on other sites More sharing options...
extremeguy Posted December 18, 2003 Author Share Posted December 18, 2003 Am I going about this all wrong? Should I be storing the values as a UNIX timestamp instead of YYYYMMDDHHMM ? Link to comment https://forums.phpfreaks.com/topic/1515-datetimestamp-question/#findComment-5010 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.