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 oracle the best database?
Can we create trigger on materialized view in oracle?
What is null value in oracle?
How do you find out from the RMAN catalog if a particular archive log has been backed-up?
Explain rename?
Give syntax for SQL and ORACLE joins.
What is where clause in oracle?
How to convert csv to table in oracle?
How do I learn what codesets are available in oracle?
How to create a table interactively?
State and explain about oracle instance?
Please explain drop constraint oracle?
How to count duplicated values in a column in oracle?
How to list all indexes in your schema?
How does one get the view definition of fixed views/tables?