Using the knowledge of computational language in python it is possible to write a code that select lesson schedule with inner join the database has three tables for tracking horse-riding
insert into LessonSchedule(HorseID, StudentID, LessonDateTime) values (10, 1, '2020-02-01 10:23:00');
insert into LessonSchedule(HorseID, StudentID, LessonDateTime) values (20, 2, '2020-02-01 09:30:00');
insert into LessonSchedule(HorseID, StudentID, LessonDateTime) values (10, 3, '2020-02-01 11:25:00');
insert into LessonSchedule(HorseID, StudentID, LessonDateTime) values (10, NULL, '2020-02-01 10:00:00');
insert into LessonSchedule(HorseID, StudentID, LessonDateTime) values (20, 1, '2020-03-14 10:00:00');
insert into (HorseID, StudentID, LessonDateTime) values (20, 3, '2020-03-21 11:45:00');
insert into LessonSchedule(HorseID, StudentID, LessonDateTime) values (20, 3, '2020-02-01 10:23:00');
See more about python at brainly.com/question/18502436
#SPJ1