SQL Server MERGE columns after a Left Join?

4.3k Views Asked by At

I am relatively new to SQL Server so I hope you can help.

Basically I have two tables of information. The first looks like:

  • table1 [ID, Name]
  • table2 [FKID, ID, Name]

I want to do a statement like:

SELECT table1.Name, table2.Name
FROM table1
LEFT JOIN table2 ON table2.FKID = table1.ID

This results in something like:

['Name 1a', 'Name 2a']
['Name 1b', NULL]
['Name 1c', NULL]

But what I want is to just select ONE column, that either being Name 1x or Name 2x if it wasn't null (there was no key match on the left join).

I imagine the typical response will be to solve this using my programming language, but this is proving to be extremely difficult in Visual Web Developer using GridViews and all this nonsense, so what would be very helpful would be a database solution.

Thanks a lot!

2

There are 2 best solutions below

3
On BEST ANSWER
SELECT coalesce(table1.Name, table2.Name) as YourName
FROM table1 
LEFT JOIN table2 ON 
table2.FKID = table1.ID 

COALESCE() will return the first NOT NULL value. Is this what you're looking for?

0
On

COALESCE() will merge rows. If you want to merge columns try something like:

SELECT CONCAT(ColA, ColB) AS ColAB