Hi
Is there a trick when linking using a sub-select where the [id] is of type uniqueidentifier. I will demonstrate with a simple query. This query should simply link to itself but I get null values in the first column, what am I doing wrong.
select
x.id,
c.id
from Customer c
left outer join(
select id
from Customer
)x on
x.id=c.id
Thanks
Is there a trick when linking using a sub-select where the [id] is of type uniqueidentifier. I will demonstrate with a simple query. This query should simply link to itself but I get null values in the first column, what am I doing wrong.
select
x.id,
c.id
from Customer c
left outer join(
select id
from Customer
)x on
x.id=c.id
Thanks