Feb 27, 2003 #1 aljubicic Programmer Joined Nov 7, 2002 Messages 82 Location AU Hi All, Can anyone tell me the syntax for getting the system Date. In MS SQL it is 'GetDate()'. Is there a similiar function in Informix?? Thanks Anthony
Hi All, Can anyone tell me the syntax for getting the system Date. In MS SQL it is 'GetDate()'. Is there a similiar function in Informix?? Thanks Anthony
Feb 27, 2003 #2 vpshriyan IS-IT--Management Joined Jul 26, 2002 Messages 356 Location IN Hi, The following SQL statement can be used to get the system date. select today from systables where tabid=1 ; Regards, Shriyan Upvote 0 Downvote
Hi, The following SQL statement can be used to get the system date. select today from systables where tabid=1 ; Regards, Shriyan
Feb 27, 2003 #3 olded Programmer Joined Oct 27, 1998 Messages 1,065 Location US Hi: In addition to Shriyan post, you can get the datetime with: select current from systables where tabid = 1 Regards, Ed Upvote 0 Downvote
Hi: In addition to Shriyan post, you can get the datetime with: select current from systables where tabid = 1 Regards, Ed