26. Display the earliest shipping date in the format:
DD/MON/YYYY
Answer Posted / nazim
select convert(char(12),getdate(),106)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
how to convert .db (extention) database file into .dmp (extention ) for oracle database ?
What is oracle used for?
What is merge statement used for?
What is a select query statement in oracle?
State some uses of redo log files?
How to view existing locks on the database?
what's query optimization and without use of IN AND Exist can we get another way data from query
What are the major difference between truncate and delete?
What is oracle and what are its different editions?
definition of cluster and non-clustered index?
Describe varray?
Does oracle partitioning improve performance?
What is an oracle database?
What are the data types in oracle?
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'));