Create a Function named 'find_port' which takes port id(i.e, p_id) as input and returns the count of transportation(i.e, transportation_count') that could be made using that port. Function name : find_port Input Parameter : p_id in int Output variable : transportation_count variable of type number Design rules:
- If is_rail of the given port id is 'True',then display the transportation_count as '1'.
- If is_rail of the given port id is 'False',then display the transportation_count as '0'. (NOTE :Design rule is only for example.Calculate transportation count for is_rail,is_road & is_air.) Refer to the schema for port details.