SELECT trunc(UPDATE_TS) UPDATE_TS, // TIMESTAMP
INSP_ID,
trunc(LAST_INSP_DATE) LAST_INSP_DATE // DATE
FROM INSP_TABLE
Use Trunc to truncate the timestamp and date to be able to filter data in an af:table
Also use <af:convertDateTime pattern="MM/dd/yyyy"/> in both table filter as well as input date component
INSP_ID,
trunc(LAST_INSP_DATE) LAST_INSP_DATE // DATE
FROM INSP_TABLE
Use Trunc to truncate the timestamp and date to be able to filter data in an af:table
Also use <af:convertDateTime pattern="MM/dd/yyyy"/> in both table filter as well as input date component
No comments:
Post a Comment