Question:
Create SCHEDULE table
Refer the below schema and create the SCHEDULE.
| Column Name | Datatype | Size | Constraint | Constraint name | Reference table – Column name |
| Schedule_id | Varchar2 | 3 | Primary key | PK_SCHEDULE | |
| Travel_date | Date | ||||
| Source | Varchar2 | 20 | |||
| Destination | Varchar2 | 20 | |||
| Bus_no | Number | 11 | Foreign key, | FK_SCHEDULE_BUSES | Buses – bus_no |
| Duration | Number | 11 |
Code:
ConversionConversion EmoticonEmoticon