I have a stored procedure that I'm executing using SQL Server Management Studio (SSMS) using SQL Server 2014 and I get a results set back. I'm wondering if it's possible to discover the column types. For example, Let's say the results set has the following columns:
Id
Name
BirthDate
Address
State
ZipCode
I want to discover the type of each column (e.g. "Id" is an integer, "Name" is a string, etc.)
Can I do this in SSMS without having to look inside the stored procedure? Is there some SQL statement I can run to find out the column types?