I'm creating an un-typed list and I was wondering if the following is possible:
select id, (select top 1 address from address where customerid = id) as address where...
the part i am not sure of is the sub-query because i need to pull back only one address (main). thanks!