%TimeIn meta-SQL element
Syntax
%TimeIn(tm)
Description
%TimeIn expands to platform-specific SQL for a Time value in the Where clause of a SQL Select or Update statement, or when a time value is passed in an Insert statement.
Parameters
| Parameter | Description |
|---|---|
|
tm |
Specify a Time bind variable or a string literal in the form hh.mm.ss.ssssss. |
Restrictions Using COBOL
You can only use string literals when using this construct in COBOL. You cannot use it with bind parameters in COBOL. For example, the following works in COBOL:
UPDATE PS_PERSONAL_DATA SET LASTUPTM = %TIMEIN('11:59:00:000000')
The following SQL fails:
UPDATE PS_PERSONAL_DATA SET LASTUPTM = %TIMEIN(:1)