Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Please help with Informix date and time

Status
Not open for further replies.

jsgoober

Programmer
Jan 3, 2002
12
US
If I have a field/column, transtime datetime year to minute,
how do I go about SELECTING/RETRIEVING records/rows
that have the transtime older than CURRENT - minutes?

Thanks
 
Try something like this:
Code:
SELECT * FROM YourTableName
 WHERE transtime < CURRENT - 30 UNITS MINUTE


Hope This Help
PH.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top