View Single Post
  #4 (permalink)  
Old 04-19-2008, 11:55 PM
Piro's Avatar
Piro Piro is offline
Junior Member
 
Join Date: Apr 2008
Location: Holland
Posts: 8
Default

Hi Nicolas,

There is I should've put the * at the beginning of the query; the following should work:

Code:
SELECT *, UNIX_TIMESTAMP(start_date) AS date_unix FROM tournament
This way you get all the columns and the added date_unix field with the timestamps.
Reply With Quote