26. Display the earliest shipping date in the format:
DD/MON/YYYY
Answer Posted / uday shankar chejerla
select to_char(to_date(sysdate,'dd-mon-rr'),'dd/mon/yyyy')
from dual;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How to get last row id?
Explain the importance of .pll extension in oracle?
What is the difference between view and materialized view in Oracle?
What is redo log?
What is the maximum limit on the number of columns in a table?
What are the types of partitions in oracle?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
How to define a data field as not null?
What is a synonym? What are its various types?
src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));
what is meant by magic query
How to list all tables in your schema?
List the parts of a database trigger.
What is a initialization parameter file in oracle?
Is the After report trigger fired if the report execution fails ?