Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Fill in gaps between 2 dates

    --I've used something like this to generate date lists...
    --First, you need a way to generate rows:
    create function [dbo].[GenerateRows](@MaxRows int) returns table
    as
        return (
            with N1(...

Viewing post 1 (of 1 total)