Answers for "print query output as table"

SQL
0

tsql print julia rows

-- generate a guid table
;with guids( i, guid ) as
(
    select 1 as i, newid()
        union all
    select i + 1, newid()
        from guids
        where i < 20
) 

-- print julia triangle  
select replicate('* ', i)    
from guids 
order by i desc
Posted by: Guest on June-27-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language