sql

Sql code posted by q
created at 10 Apr 14:46

Edit | Back
1
2
3
4
5
with t as (select level as n from dual connect by level <= 10)
select t.n, to_char(trunc(sysdate)+t.n,'yyyy.mm.dd, day')
  from t;

  
138 Bytes in 2 ms with coderay