Search This Blog

Sunday, March 11, 2018

Number in Word Using Oracle Sql



select salary, to_char(to_date(salary,'j'), 'jsp') from EMPLOYEES;

No comments:

Post a Comment

Search String Inside Oracle Database Objects SQL

SELECT owner, name, type, line, text  FROM dba_source WHERE instr(UPPER(text), UPPER('string')) > 0;