Mysql
 sql >> Database >  >> RDS >> Mysql

come ottenere valore dalla tabella mysql ordinata da un'altra tabella?

Oltre ad avere la colonna ReferenceType nella tabella ref_types, è necessaria anche una colonna Reference_ID che faccia riferimento all'ID effettivo nella tabella corrispondente come chiave straniera .

//ref_types table
ID Article_ID ReferenceType Reference_ID
1  1          book          1
2  1          article       1
3  1          article       2
4  1          book          2

Quindi, puoi evitare un ciclo WHILE e lasciare che MySQL faccia il lavoro per te con JOIN:

SELECT CONCAT('record ', rt.ID, ': ',
  COALESCE(ar.Article_Title, tr.Thesis_Title, br.Book_Title))
FROM ref_types rt
LEFT JOIN article_refs ar
  ON rt.ReferenceType = 'article' AND ar.ID = rt.Reference_ID
LEFT JOIN book_refs br
  ON rt.ReferenceType = 'book' AND br.ID = rt.Reference_ID
LEFT JOIN thesis_refs tr 
  ON rt.ReferenceType = 'thesis' AND tr.ID = rt.Reference_ID

Fornisce il risultato:

record 1: book1
record 2: article1
record 3: article2
record 4: book2