Viewing 5 posts - 1 through 5 (of 5 total)
CREATE FUNCTION dbo.fn_GetEventDates(
@startDate date
, @endDate date
)
RETURNS TABLE WITH SCHEMABINDING
AS RETURN
WITH
T(N) AS (SELECT N...
July 18, 2018 at 3:13 pm
July 18, 2018 at 2:45 pm
Viewing 5 posts - 1 through 5 (of 5 total)