Answer Posted / nishi
select sal, (to_char(to_date(sal,'j'), 'jsp')) from emp;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is ordinary table in oracle?
22. Display the order number, number of lines in the order, total number of items and total value for all orders that have a total value greater than $100
What is index in Oracle?
How to change program global area (pga) in oracle?
How to test null values?
How to rename an index in oracle?
What is difference between sid and service name in oracle?
Explain oracle instance.
How do you bind variables in oracle?
What is a server parameter file in oracle?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
What is system global area (sga) in oracle?
Are truncate and delete commands same? If so why?
What happens to the data files if a tablespace is dropped?
How do I find the database name in oracle?