Skip to content
Advertisement

To find passengers travelling more than thrice on the same route in PL/SQL

Here I am creating three tables, one for storing the Train Info. Another for holding onto the Passenger info and the other one to hold the ticket Info.

In the Train_Info table, I am inserting two unique routes with the same source and destination as there can be different routes for the same source and destination. And filling the other tables in the same manner. In the ticket table, I am repeating values because I aim to find the passenger travelling thrice on the same route.

Here’s my procedure which keeps returning the error saying ‘exact fetch returns more than requested number of rows’ at the select statement. What am I doing wrong here?

Advertisement

Answer

i’m not sure why you’ve written a SP to do this as you can achieve this with a simple query:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement