This is just for Fun. The following code is unformatted, unclear and may be confusing. But curious to know the result? Set the result mode of the query window to Text . While you are in Query Window press CONTROL+T and run the following code and see what it returns.
set nocount on select case no when 1 then col when 2 then stuff(stuff(stuff(stuff(col,1,cast(4e1/5 as int),replicate(' ',cast(4e1/5 as int))),cast(2e1-1 as int),3,replicate(' ',3)),cast(sqrt(12+11e2)/3 as int)*3,
5,replicate(' ',5)),cast(5e1-3 as int),cast(2e1-4 as int),replicate(' ',3)) when 3 then stuff(stuff(stuff(stuff(col,1,cast(4e1/5 as int),replicate(' ',cast(4e1/5 as int))),cast(2e1-1 as int),3,replicate(' ',3)),cast(sqrt(12+11e2)/3 as int)*3,4,replicate(' ',4)),cast(5e1-2 as int),cast(2e1-5 as int),replicate(' ',2)) when 4 then stuff(
stuff(stuff(stuff(stuff(col,1,cast(4e1/5 as int),replicate(' ',cast(4e1/5 as int))),cast(2e1-1 as int),3,replicate(' ',3)),28,cast(4e1/5 as int),replicate(' ',cast(4e1/5 as int))),cast(POWER(ISNULL(null,4),3)-3e0-(7*3) as int),3,replicate(' ',3)),cast(5e1-2 as int),cast(2e1-5 as int),replicate(' ',2)
)when 5 then stuff(stuff(stuff(stuff(stuff(col,1,cast(4e1/5 as int),replicate(' ',cast(4e1/5 as int))),cast(2e1-1 as int),3,replicate(' ',3)),28,cast(4e1/5 as int),replicate(' ',cast(4e1/5 as int))),cast(POWER(ISNULL(null,4),3)-3e0-(7*3) as int),3,replicate(' ',3)),cast(5e1-1 as int),cast(2e1-6 as int),replicate(' '
,1))when 6 then stuff(stuff(stuff(stuff(stuff(col,1,cast(sqrt(12+11e2)/3 as int),replicate(' ',cast(sqrt(12+11e2)/3 as int))),cast(2e1-4 as int),6,replicate(' ',6)),cast(sqrt(12+11e2)/3 as int)*3,3,replicate(' ',3)),cast(POWER(ISNULL(null,4),3)-3e0-(7*3) as int),3,replicate(' ',3)),cast(5e1-1 as int),cast(2e1-6 as int),
replicate(' ',1))when 7 then stuff(stuff(stuff(stuff(stuff(col,1,cast(sqrt(12+11e2)/3 as int),replicate(' ',cast(sqrt(12+11e2)/3 as int))),cast(2e1-4 as int),6,replicate(' ',6)),cast(sqrt(12+11e2)/3 as int)*3,3,replicate(' ',3)),cast(POWER(ISNULL(null,4),3)-3e0-(7*3) as int),3,replicate(
' ',3)),cast(5e1-2 as int),cast(2e1-5 as int),replicate(' ',2))when 8 then stuff(stuff(stuff(stuff(stuff(col,1,cast(sqrt(12+11e2)/3 as int),replicate(' ',cast(sqrt(12+11e2)/3 as int))),cast(2e1-4 as int),10,replicate(' ',10)),cast(sqrt(12+11e2)/3 as int)*3,4,replicate(' ',4)),cast(5e1-3 as int),3,replicate(' ',3)),cast(5e1+8 as int),cast(2e1-7 as int),REPLICATE(' '
,cast(2e1-7 as int)))when 9 then stuff(stuff(stuff(stuff(col,1,cast(sqrt(12+11e2)/3 as int),replicate(' ',cast(sqrt(12+11e2)/3 as int))),cast(2e1-4 as int),10,replicate(' ',10)),cast(sqrt(12+11e2)/3 as int)*3,6,replicate(' ',6)),cast(5e1-6 as int),6,replicate(' ',6))when 10 then stuff(stuff(stuff(stuff(col,1,cast(sqrt(12
+11e2)/3 as int),replicate(' ',cast(sqrt(12+11e2)/3 as int))),cast(2e1-4 as int),6,replicate(' ',6)),cast(sqrt(12+11e2)/3 as int)*3,6,replicate(' ',6)),cast(5e1-6 as int),6,replicate(' ',6)) when 11 then stuff(stuff(stuff(stuff(col,1,cast(sqrt(12+11e2)/3 as int),replicate(' ',cast(sqrt(12+11e2)/3 as int))
),cast(2e1-4 as int),6,replicate(' ',6)),cast(sqrt(12+11e2)/3 as int)*3,7,replicate(' ',7)),cast(5e1-5 as int),5,replicate(' ',5))when 12 then col end from(select no,replicate(char(42),ceiling(15e3/215)) as col from (select top (cast(3e2/25 AS int)) row_number() over (order by name) as no from sys.sysobjects )as t
) as t