26. Display the earliest shipping date in the format:
DD/MON/YYYY
Answers were Sorted based on User's Feedback
select to_char(sysdate,'DD/MON/YYYY') from dual;
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / 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 |
What is a partition in oracle?
What is Index Cluster ?
What is the use of Redo Log Information ?
How do you store pictures in a database?
What is the function of Redo Log ?
What does a Control file Contain ?
Difference between hot backup vs. Cold backup?
What is transport network substrate (tns) in oracle?
I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?
what is a Nested Loop join?
what are the disadvantages of hierarchial database over RDBMS?
T1: T2 A X--- this is updated record B B like this T1 table having no.of records updated. write a query"retrive updated record from T2"