Viewing 4 posts - 1 through 5 (of 5 total)
OK. I have taken your comments on board, I simplified the SQL I was using to make it more readable. The real procedures look like this:
ALTER FUNCTION [dbo].[fn_GetTopMatch](@LoginID AS int)
...
November 23, 2011 at 8:07 am
Thank you GSquared. I actually ended up with a very similar solution to yours.
First I defined a function:
create FUNCTION [dbo].[fn_GetTopMatch1](@LoginID AS int)
RETURNS TABLE
AS
RETURN
--
SELECT TOP...
November 23, 2011 at 7:16 am
Brandie Tarvin (11/22/2011)
In fact, that second...
November 22, 2011 at 7:59 am
Come on you useless bunch of bum bandits. Answer the freaking question.
November 22, 2011 at 6:53 am
Viewing 4 posts - 1 through 5 (of 5 total)