Viewing post 1 (of 1 total)
Hi All. Thanks for your help.
I worked out another way to get the results.
CREATE PROCEDURE [dbo].[MyProc]
(
@First=null,
@Second int=null,
@Third int=null,
)
AS
select e.*, e.empfname +
case when e.empmname is null then '...
May 1, 2009 at 6:15 am
#987227