Today I will present how to display calendar specific month from oracle SQL or PLSQL like below image
So I will present the solution to do this
First I will create Object type to handle week days( Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday)
So I will present the solution to do this
First I will create Object type to handle week days( Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday)
CREATE OR REPLACE TYPE WEEK_DAY AS OBJECT
(SUN NUMBER (2),
MON NUMBER (2),
TUE NUMBER (2),
WED NUMBER (2),
THU NUMBER (2),
FRI NUMBER (2),
SAT NUMBER (2));