I am working with the Unified Medical Language System (UMLS) database within a local copy of MySQL. I am currently attempting to understand the data structures via this webpage: http://www.ncbi.nlm.nih.gov/books/NBK9685/
I am attempting to identify concepts in CUI2. However, I am confused by this result:
SELECT y.* FROM mrrel r INNER JOIN mrconso y ON r.cui2 = y.CUI;
Exactly 1 result. Rather than wildly speculate—is it my sql? is it an error on the tables? did I misunderstand the schema?—I would really appreciate some feedback from the UMLS community. How do I correctly link MRREL.cui2 to other tables within the database? Is there a COMPLETE data model published somewhere?
Thanks!