#title 쿼리 결과를 html로 만들기
다음과 비슷하게 도움말에 나온다.
{{{
declare
@tablehtml nvarchar(max);
set @tablehtml =
N'
제목
' +
N'' +
N'' +
N'table_schema | ' +
N'table_name | ' +
'
' +
cast ((
select
td = table_schema, ''
, td = table_name
from information_schema.tables
for xml path('tr'), type
) as nvarchar(max)) +
N'
';
select @tablehtml;
}}}