Viewing 2 posts - 1 through 2 (of 2 total)
hi
i am having ratio values as output from proc for example (20:2:1)
i want arrange this values in ascending order or in descending order
September 3, 2009 at 9:22 am
#1048834
Hi Folks,
Try this to get get last day of month
CREATE FUNCTION [dbo].[ufn_GetLastDayOfMonth] ( @pInputDate DATETIME )
RETURNS DATETIME
BEGIN
DECLARE @vOutputDate ...
September 1, 2009 at 5:23 am
#1047410