Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HEADING Information 1

Status
Not open for further replies.

fastwallie

Programmer
Apr 14, 2005
1
NL
In Oracle I frequently use the set command to set the heading off. I'am looking for this functionality in the DB2 client (commandcenter) but can find it ?

In the example below I only want to see the result : 427114
How can i do that ?

db2 => select max(organisatieid) from organisatie where organisatieid < '429555'

1
---------------
427114

1 record(s) selected.

 
fastwallie
If you were really desperate you could try:

select max(organisatieid)as ' ' from organisatie where organisatieid < '429555'

Marc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top