PLSQL program to check whether a date falls on weekend

Write a PLSQL program to check whether a date falls on weekend i.e. SATURDAY or SUNDAY. Here is a PLSQL program to check whether a date falls on a weekend (Saturday or Sunday): DECLARE input_date DATE; day_of_week VARCHAR2(10); BEGIN — Ask the user to input a date input_date := &input_date;— Use the TO_CHAR function to …

Read more