Question:
List Schedule details
Write a query to display all the records of the Schedule table and display records in descending order by schedule id.

Code:
bsselect2bms.sql
Select * from schedule order by schedule_id desc;
Write a query to display all the records of the Schedule table and display records in descending order by schedule id.
Select * from schedule order by schedule_id desc;