SQL Conditional JOIN column

Adam Levitt picture Adam Levitt · Aug 12, 2014 · Viewed 7.9k times · Source

I want to determine the JOIN column based on the value of the current row.

So for example, my job table has 4 date columns: offer_date, accepted_date, start_date, reported_date.

I want to check against an exchange rate based on the date. I know the reported_date is never null, but it's my last resort, so I have a priority order for which to join against the exchange_rate table. I'm not quite sure how to do this with a CASE statement, if that's even the right approach.

INNER JOIN exchange_rate c1 ON c1.date = {{conditionally pick a column here}}

  -- use j.offer_date if not null
  -- use j.accepted_date if above is null
  -- use j.start_date if above two are null
  -- use j.reported_date if above three are null

Answer

Gordon Linoff picture Gordon Linoff · Aug 12, 2014

Try logic like this:

INNER JOIN
exchange_rate c1
ON c1.date = coalesce(j.offer_date, j.accepted_date, j.start_date, j.reported_date)

The coalesce() function returns the first non-NULL value in the list.