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
Differentiate between function and procedure in oracle.
What is the usage of analyze command in oracle?
Explain an index?
Query to retrieve record for a many to many relationship ?
How to drop an existing table in oracle?
How to do clean up if create database failed?
Why do you use stored procedures and state some of its disadvantages?
How does one get the view definition of fixed views/tables?
How to write date and time interval literals in oracle?
Differentiate between post-database commit and post-form commit?
What are the attributes of cursor?
when we are importing items in inventory, showing errors, Oracle support suggested us for running scripts & also suggested if we run scripts, iprocurement applicaation if is there it will show shared and if we go in future for iprocurement, it wont work. So kinldy suggest any functional solution.
What are a collation and state the different types of collation sensitivity?
What is the usage of control file in oracle?
How to load a large xml file?