Dejell
Dejell

Reputation: 14317

sql join 2 rows in the same table

I have the following table:

Name   Type     Value
---------------------
mike   phone    123    
mike   address  nyc    
bob    address  nj    
bob    phone    333

I want to have the result like this:

name  value  value
-------------------
mike  nyc    123
bob   nj     333

How can I do it?

Upvotes: 12

Views: 25944

Answers (2)

cdonner
cdonner

Reputation: 37668

it is called a self-join. the trick is to use aliases.

select 
    address.name,
    address.value as address,
    phone.value as phone
from
    yourtable as address left join
    yourtable as phone on address.name = phone.name
where address.type = 'address' and
      (phone.type is null or phone.type = 'phone')

The query assumes that each name has an address, but phone numbers are optional.

Upvotes: 26

Kerrek SB
Kerrek SB

Reputation: 477358

Something like this:

SELECT a.name AS name, phone, address
    FROM (SELECT name, value AS phone FROM mytable WHERE type = "phone") AS a
    JOIN (SELECT name, value AS address FROM mytable WHERE type = "address") AS b
    ON(a.name = b.name);

Upvotes: 3

Related Questions