Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Conditional JOIN column [duplicate]

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
like image 547
Adam Levitt Avatar asked Dec 05 '25 19:12

Adam Levitt


1 Answers

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.

like image 73
Gordon Linoff Avatar answered Dec 07 '25 17:12

Gordon Linoff