在SQL Server中的查询结果上方添加标题标题

时间:2016-10-09 08:29:36

标签: sql-server

如何为每个查询添加标题标题?

我想将其显示为一个报告,其标题高于表格的查询结果。

像这样的东西

         HEADING
_____________________________
Alexis M. Smith | PHP 140,500
Johnny K. Black | PHP  50,000
James P. Blonde | PHP  30,000

我正在使用sql server管理2012 Studio和vb.net 2010 我没有商业智能来创建从sql server到vb.net 2010的报告

2 个答案:

答案 0 :(得分:2)

您可以在SQL Server中的查询结果中添加标题,并在应用程序中显示结果。

但是如果您要求仅在SQL-Server中显示结果,那么这可能对您有帮助..

--You have to add one select query before your actual query like this.
select '' as 'Your Heading Here' where 1!=1
select * from your_table

答案 1 :(得分:0)

Select b.a  AS Heading
  FROM
    ( Select Concat('Mr. Xyz', ' |  ', 'PHP' , ' | ' , '50000') AS a
    ) B

这是我能想到的最接近的