Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Collapsing results to a single row.

Status
Not open for further replies.

stiley

Programmer
Sep 5, 2006
14
0
0
CA
Hello,
Question about formatting my query results.

I have a customer table and a customer_phone table linked by customer_id field.

When I select records from customer_phone for a particular customer_id I get as many rows as the customer has phone numbers.

For example

select * from customer_phone where customer_id = 123;

Yeilds

Customer_Id Phone
123 123-345-4567
123 123-345-9987
123 123-345-2232


What I would like is to be able to collapse that to one result somehow but I do not have a clue.

so something like

Customer_Id Phone1 Phone2 Phone3
123 123-345-4567 123-345-9987 123-345-2232




Any thoughts would be appreciated.


 
my first thought is, this shouldn't have been posted in the ANSI SQL forum

could you mention which database system you're using, please?

also, why couldn't you do the crosstab layout (as that's what it's called) in your application language?

r937.com | rudy.ca
Buy my new book Simply SQL from Amazon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top