How do you do this?
Hi,
I have used the cross-tab technique to get a result set back as follows...colume names listed first....
ColName, ColOrders, ColKey, ColEmail
Niall, null, null, null
null, 3, null, null
null, null, 90, null
null, null, null, None
What is the best way to get rid of these nulls and return a single record result set e.g.
ColName, ColOrders, ColKey, ColEmail
Niall, 3, 90, None
It is prefarable that some kind of view\UDF is used.
Thanks
Niall
|