write a query that displays every Friday in a year with date?
Answer Posted / colarif
select daten, to_char(daten,'DY') dayn from
( select to_date('31-dec-15') + level daten from dual
connect by level <= 366)
where to_char(daten,'DY') = 'FRI'
and to_char(daten,'YYYY') = 2016;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is the After report trigger fired if the report execution fails ?
IS it possible to built the oracle database without setting the kernal parameters?
Hi friends can u send the oracle 9i full version download link?????????????? please reply ?
How to get execution path reports on query statements?
What are operators in oracle?
How to use subqueries with the in operator using oracle?
How to export your own schema?
How do I connect to oracle?
Differentiate between function and procedure in oracle.
How to assign query results to variables?
How to convert numbers to characters in oracle?
How to create a stored function in oracle?
In oracle there is column command, how will you explain that?
How to retrieve the count of updated rows?
Explain the difference between a procedure and a function? What do you understand by those terms?