Getting MySQL data after specific date -


How can I get MySQL data after a specific timestamp? How should the query look?

  mysql_query (select from "SELECT * table where TheNameOfTimestampColumn" from date);  

  SELECT * from the table where theNameOfTimestampColumn & gt; '2009-01-28 21:00:00' Select * From the table where the 'Name of the omfimstamp column & gt; DATE_SUB (CURRENT_TIMESTAMP, INTERVAL 1 day)  

and should work at your approval rate


Comments

Popular posts from this blog

Is there an open source WebSockets (JavaScript) XMPP library? -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -

iphone - How do I make a UIPickerView in a UIActionSheet -