Hello, my question is the following:
I have a Select in SQLServer of two tables with inner join, they return a set of 5 columns. I would like to know how to list the type of these columns.
I know that I can show the type of columns with SP_Columns
, but it only shows me if the last parameter is a table or view.
My select is this:
SELECT *
FROM Produtos p
INNER JOIN Marca m
ON p.prodcodigo=m.prodcodigo