Created
February 23, 2026 02:13
-
-
Save tu-trinh-scale/7e3b700c21c0f49bb289be7cc4aad593 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT e.Symptoms | |
| FROM Examination e | |
| JOIN Patient p ON e.ID = p.ID | |
| WHERE p.Admission = '+' | |
| AND STRFTIME('%Y', e.`Examination Date`) BETWEEN '1995' AND '1999' | |
| AND e.Thrombosis = '2' | |
| AND e.`ANA Pattern` = 'S' | |
| AND e.`aCL IgM` < (SELECT AVG(`aCL IgM`) + AVG(`aCL IgM`) * 1 FROM Examination); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment