Hi,
I am using jdev 11.1.2.4.
I've a db column trans_time with datatype as number to display time element of a transaction.
I've written below sql in oracle to format the time in HH:MI format.
select substr(lpad(trans_time,4,0),1,2)||':'||substr(lpad(trans_time,4,0),3,4) from trans;
How can I display this in a transient variable using groovy?
thanks