sql >> Databáze >  >> RDS >> Oracle

Jak naplnit kalendářní tabulku v Oracle?

Je to jednoduchý a snadný způsob, jak to udělat

with calendar as (
        select :startdate + rownum - 1 as day
        from dual
        connect by rownum < :enddate - :startdate
    )
select rownum as "S.No", to_date(day,'dd_mm_yyyy') as "Cal_Dt", to_char(day,'day') as "DayName"
from calendar


  1. Postgresql Drop View

  2. Jak REGEXP funguje v MariaDB

  3. Průvodce návrhem databáze pro správu blogů v MySQL

  4. NullPointerException na getReadableDatabase()