Feb 27, 2003 #1 aljubicic Programmer Nov 7, 2002 82 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 Jul 26, 2002 356 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 Oct 27, 1998 1,065 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