I am trying to access a stored procedure using Python where I enter enter in a customer ID, and it will render a multi-row table with the multiple instances a customer ate at a restaurant as well as what they ate, what time they ate it, and what month they ate it. It is a multi-row table since the customer ID is not the primary key.
Within SQL, entering in this command:
call metrics.GetFoodByCustomerID("115960981")
will render the correct table for me. However when I run the following function in Python, I am getting the error that I am entering the incorrect arguments for procedure.
[![enter image description here]](https://mapledrawhubb.com/i.sstatic.net/hClhV.png)
Any idea what I am missing?