SQL snippets

From Celeste@Hoppinglife
Revision as of 17:29, 16 June 2021 by Hoppinglife (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
with randowvalues
    as(
       select 1 id, CAST(RAND(CHECKSUM(NEWID()))*100 as int) randomnumber
        union  all
        select id + 1, CAST(RAND(CHECKSUM(NEWID()))*100 as int) randomnumber
        from randowvalues
        where 
          id < 1000
      )
 
select * from randowvalues OPTION(MAXRECURSION 0);