Unixtime SQL Help

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dan

    Unixtime SQL Help

    I'am having problem with the SQL statement...

    MySql Database Table structure for phpnews_news is
    id int unsigned auto_increment primary key,
    posterid int,
    postername char(40),
    time int,
    etc ......

    The Time column is populated using a php time() function.

    How do I use the TIME column to give me only the last 7 days worth of
    data. Not sure how to manipulate unixtime formats... any help would be
    appreciated..

    SELECT * FROM PHPNEWS_NEWS where time between
    DATE_SUB(CURDAT E(),INTERVAL 30 DAY) and curdate()

    Any help would be appreciated...

    Dan

Working...