If you know the table name being used in the stored procedure, then you can 
query the information_schema to get column names.
    
    
    SELECT *
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_SCHEMA = 'foo' AND TABLE_NAME ='bar';
    
    
    Run

Reply via email to