Given a table: CREATE TABLE [person] ( [id] INT IDENTITY ( 1 , 1 ) , [name] VARCHAR ( 100 ) , [age] INT ); How nice would it be to be able to do something like this inside your stored procedures?: DECLARE @person TABLE ( [name] typeof ( [person].[name]
Read More...