Ok, so I want to get all the field names of a given procedure. So far I've found
Select * from Information_Schema.Routines where Routine_Name = 'some_procedure'
but that just gets me a list of all the procedures....which is good...but I need to go one step further and get the fields in that procedure....possible?