sql >> Database >  >> RDS >> Mysql

Mysql Inner join met OR conditie?

Je kunt meedoen op de location_distance tafel tweemaal met een LEFT JOIN en gebruik dan de COALESCE() functie om de juiste waarde terug te geven voor de distance :

select ot.id,
  ot.fromlocid,
  ot.tolocid,
  ot.otherdata,
  coalesce(ld1.distance, ld2.distance) distance
from other_table ot
left join location_distance ld1
  on ld1.fromLocid = ot.toLocid
  and ld1.toLocid = ot.fromLocid 
left join location_distance ld2
  on ld2.toLocid = ot.toLocid
  and ld2.fromLocid = ot.fromLocid 

Zie SQL Fiddle met demo

Dit geeft het resultaat:

| ID | FROMLOCID | TOLOCID | OTHERDATA | DISTANCE |
---------------------------------------------------
| 12 |         5 |       3 |      xxxx |       70 |
| 22 |         2 |       4 |      xxxx |       63 |
| 56 |         8 |       6 |      xxxx |       15 |
| 78 |         3 |       5 |      xxxx |       70 |


  1. Hoe INNER JOIN te gebruiken in SQL

  2. Hoe COLLATION() werkt in MariaDB

  3. Codeigniter's 'where' en 'or_where'

  4. Hoe procent berekenen?