I have the following code. When executed it prints
Msg 8120, Level 16, State 1, Procedure Test, Line 17
Column '@t.Country' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause. ERROR'
But I want only 'ERROR' to be printed. Is there a way to suppress the error message?
Thanks Satyaprakash J
CREATE PROCEDURE Test
AS
DECLARE @t TABLE
(ID INT IDENTITY(1,1)
,Country NVARCHAR(50)
,Year INT
,PopulationInMillions INT
)
INSERT @t (Country, Year, PopulationInMillions)
VALUES ('US', 2000, 20),
('US', 2001, 22)
SELECT Country, MAX(PopulationInMillions)
FROM @t
GO
BEGIN TRY
EXEC Test
END TRY
BEGIN CATCH
PRINT 'ERROR'
END CATCH
CREATE PROCnot theEXEC– Martin Smith Nov 22 '12 at 15:00