Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
jeff06
Posting Yak Master
166 Posts |
Posted - 2007-02-07 : 17:24:32
|
| I use sql query analyzer/*text msg 1 :This is table A */select * from a/*text msg 2*: This is table B */select * from bI want some results in text like This is table A name agejeff 28ff 17--------this is table B comid name lot23 ie 10034 ibm 234--------- |
|
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2007-02-07 : 17:29:36
|
[code]print 'This is table A'select * from aprint 'This is table B'select * from b[/code] KH |
 |
|
|
PoojaJ
Starting Member
10 Posts |
Posted - 2007-02-08 : 00:16:37
|
| Or if u want ur comment in the way the data appears in Table Select 'This is table A'select * from aSelect 'This is table B'select * from b |
 |
|
|
|
|
|