11

次のような複数の「選択」クエリの組み合わせにすぎないSQLスクリプトがあります。

Select * from ABC
Select * from CD
Select * from EN

これを実行すると、次のような出力が得られます

<output 1>
<output 2>
<output 3>

要件: 出力ごとにタイトルを表示する必要があります。

より明確にするために、次のような出力が必要です。

Heading for Output of SQL query 1  
 output 1  
Heading for Output of SQL query 2  
output 2  
Heading for Output of SQL query 3  
output 3  

データベースは SQL Server 2008 R2 です

4

1 に答える 1

15

これを達成する方法はたくさんあります。これは正確に何のために必要ですか?

1.

SELECT 'ABC' As title
Select * from ABC

SELECT 'CD' As title
Select * from CD

SELECT 'ABC' As title
Select * from EN

2.

Select 'ABC' As title, * from ABC
Select 'CD' As title, * from CD
Select 'EN' As title, * from EN

3.

SQL Serverで動作します。他のデータベースについては不明

PRINT 'ABC'
Select * from ABC

PRINT 'CD'
Select * from CD

PRINT 'ABC'
Select * from EN
于 2012-08-30T07:02:15.143 に答える