4D v14

CURRENT_TIME

Home

 
4D v14
CURRENT_TIME

CURRENT_TIME  


 

 

Command CURRENT_TIMECURRENT_TIME ( )

The CURRENT_TIME function returns the current local time.

Example  

This example creates a table of invoices and inserts the current time into the INV_DATE column:

 ARRAY STRING(30;aDate;0)
 Begin SQL
    CREATE TABLE INVOICES
    (INV_DATE VARCHAR(40));
 
    INSERT INTO INVOICES
    (INV_DATE)
    VALUES (CURRENT_TIME());
 
    SELECT *
    FROM INVOICES
    INTO :aDate;
 End SQL
  `the aDate array will return the INSERT command execution date and time.

 
PROPERTIES 

Product: 4D
Theme: Functions

 
SEE ALSO 

CURRENT_DATE
CURRENT_TIMESTAMP

 
ARTICLE USAGE

4D SQL Reference ( 4D v11 SQL Release 4 )
4D SQL Reference ( 4D v14)
4D SQL Reference ( 4D v12.1)
4D SQL Reference ( 4D v13.4)
4D SQL Reference ( 4D v14 R2)
4D SQL Reference ( 4D v14 R3)
4D SQL Reference ( 4D v14 R4)