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 |
|
sqldba2k6
Posting Yak Master
176 Posts |
Posted - 2007-02-27 : 10:35:23
|
| I have select query Select customer from customer.I want to a column which is not in a table.it should display null when select query is executed.Please help. |
|
|
sqldba2k6
Posting Yak Master
176 Posts |
Posted - 2007-02-27 : 10:41:07
|
| I got the results thanks |
 |
|
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2007-02-27 : 10:41:49
|
[code]select customer, null as [somecolwhichisnotinatable]from customer[/code] KH |
 |
|
|
|
|
|