question_id
int64
0
1.53k
db_id
stringclasses
11 values
question
stringlengths
23
477
evidence
stringlengths
0
482
SQL
stringlengths
29
3.69k
difficulty
stringclasses
3 values
1,200
thrombosis_prediction
What proportion of patients who had signs of thrombocytopenia had SLE diagnosed?
thrombocytopenia' refers to symptoms; 'SLE' refers to diagnosis; calculation = DIVIDE(SUM(DIAGNOSIS LIKE '%ITP%'), SUM(DIAGNOSIS LIKE '%SLE%')) MULTIPLY 100
SELECT CAST(SUM(CASE WHEN Diagnosis LIKE '%SLE%' THEN 1 ELSE 0 END) AS REAL) * 100 / NULLIF(COUNT(DISTINCT ID), 0) AS proportion FROM Examination WHERE Symptoms = 'thrombocytopenia';
moderate
1,201
thrombosis_prediction
What percentage of patients who were born in 1980 and were diagnosed with RA are women?
born in 1980 refers to STRFTIME('%Y', Birthday) = '1980'; 'RA' refers to Diagnosis='RA' ; women refers to SEX = 'F'; calculation = (Number of female patients ÷ total patients) * 100
SELECT CAST(SUM(CASE WHEN SEX = 'F' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(ID) FROM Patient WHERE Diagnosis = 'RA' AND STRFTIME('%Y', Birthday) = '1980'
moderate
1,202
thrombosis_prediction
How many male patients who underwent testing between 1995 and 1997 and were subsequently diagnosed with Behcet disease did not stay in the hospital for treatment?
male refers to SEX = 'M'; underwent testing between 1995 and 1997 refers to `Examination Date` between '1995' and '1997'; Behcet refers to diagnosis; did not stay in the hospital refers to Admission = '-'
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID WHERE T2.Diagnosis = 'Behcet' AND T1.SEX = 'M' AND STRFTIME('%Y', T2.`Examination Date`) BETWEEN '1995' AND '1997' AND T1.Admission = '-'
challenging
1,203
thrombosis_prediction
How many patients who were female got white blood cells that were below 3.5?
female refers to SEX = 'F'; white blood cells that were below 3.5 refers to WBC < 3.5
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.WBC < 3.5 AND T1.SEX = 'F'
simple
1,204
thrombosis_prediction
How long did it take after patient number 821298 arrived at the hospital for the first time before her first evaluation began?
MIN(JULIANDAY(`Examination Date`) - JULIANDAY(`First Date`)
SELECT MIN(JULIANDAY(T3.`Examination Date`)) - JULIANDAY(T1.`First Date`) FROM Patient AS T1 INNER JOIN Examination AS T3 ON T1.ID = T3.ID WHERE T1.ID = 821298
simple
1,205
thrombosis_prediction
Was the patient with the number 57266's uric acid within a normal range?
uric acid within a normal range refers to UA > 8.0 and SEX = 'M' OR UA > 6.5 and SEX = 'F'
SELECT CASE WHEN (T1.SEX = 'F' AND T2.UA > 6.5) OR (T1.SEX = 'M' AND T2.UA > 8.0) THEN true ELSE false END FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.ID = 57266
moderate
1,206
thrombosis_prediction
When is the laboratory examination of patient '48473' where his/her AST glutamic oxaloacetic transaminase (GOT) index is above the normal range.
AST glutamic oxaloacetic transaminase (GOT) index is above the normal range refers to GOT > = 60; when refers to DATE
SELECT Date FROM Laboratory WHERE ID = 48473 AND GOT >= 60
simple
1,207
thrombosis_prediction
List all patients with their sex and date of birthday, whose AST glutamic oxaloacetic transaminase (GOT) index is within normal range for laboratory examination in 1994.
AST glutamic oxaloacetic transaminase (GOT) index within normal range refers to values less than 60; examination in 1994 refers to laboratory tests conducted during the year 1994.
SELECT DISTINCT T1.SEX, T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GOT < 60 AND STRFTIME('%Y', T2.Date) = '1994'
moderate
1,208
thrombosis_prediction
Provide IDs for male patients with ALT glutamic pylvic transaminase (GPT) that have history of ALT glutamic pylvic transaminase (GPT) exceed the normal range.
male refers to SEX = 'M'; ALT glutamic pylvic transaminase (GPT) exceed the normal range refers to GPT > = 60
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'M' AND T2.GPT >= 60
moderate
1,209
thrombosis_prediction
Please provide the diagnosis of patients with ALT glutamic pylvic transaminase beyond the normal range by ascending order of their date of birth.
ALT glutamic pylvic transaminase beyond the normal range refers to GPT > 60;
SELECT DISTINCT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GPT > 60 ORDER BY T1.Birthday ASC
moderate
1,210
thrombosis_prediction
What is the average index of the lactate dehydrogenase (LDH) for all patients with lactate dehydrogenase (LDH) within the normal range.
average index of the lactate dehydrogenase (LDH) refers to AVG(LDH); (LDH) within the normal range refers to LDH < 500
SELECT AVG(LDH) FROM Laboratory WHERE LDH < 500
simple
1,211
thrombosis_prediction
Provide the ID and age of patient with lactate dehydrogenase (LDH) between 100-300 index above the normal range.
age refers to SUBTRACT(year(current_timestamp), year(Birthday)); lactate dehydrogenase (LDH) between 100-300 index above the normal range refers to LDH between 600 and 800;
SELECT DISTINCT T1.ID, STRFTIME('%Y', CURRENT_TIMESTAMP) - STRFTIME('%Y', T1.Birthday) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.LDH > 600 AND T2.LDH < 800
moderate
1,212
thrombosis_prediction
For patients with alkaliphophatase (ALP) within normal range, were they treated as inpatient or outpatient?
alkaliphophatase (ALP) within normal range refers to ALP < 300; inpatient refers to admission = '+'; outpatient refers to admission = '-'
SELECT T1.Admission FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.ALP < 300
moderate
1,213
thrombosis_prediction
Name the ID of the patient who is born on the April 1st, 1982. Is his/her alkaliphophatase (ALP) within normal range?
alkaliphophatase (ALP) within normal range refers to ALP < 300
SELECT T1.ID , CASE WHEN T2.ALP < 300 THEN 'normal' ELSE 'abNormal' END FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.Birthday = '1982-04-01'
moderate
1,214
thrombosis_prediction
List ID, sex and date of birth of the patient whose total protein (TP) is below the lower range of the normal index.
total protein (TP) below the lower range of the normal index refers to TP < 6.0
SELECT DISTINCT T1.ID, T1.SEX, T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TP < 6.0
simple
1,215
thrombosis_prediction
For all female patient with total protein (TP) beyond the normal index, what is the deviation of their TP index from the normal?
female refers to SEX = 'F'; total protein (TP) beyond the normal index refers to TP > 8.5; deviation of TP index from normal refers to SUBTRACT(TP, 8.5)
SELECT T2.TP - 8.5 FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'F' AND T2.TP > 8.5
moderate
1,216
thrombosis_prediction
Sort in descending order all patients by birthday for male patient with albumin not within range.
male = SEX = 'M'; albumin not within range refers to ALB < = 3.5 or ALB > = 5.5
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'M' AND (T2.ALB <= 3.5 OR T2.ALB >= 5.5) ORDER BY T1.Birthday DESC
simple
1,217
thrombosis_prediction
For all patient born in 1982, state if their albumin is within normal range.
Year(Birthday) = '1982'; albumin is within normal range refers to ALB between 3.5 and 5.5
SELECT CASE WHEN T2.ALB >= 3.5 AND T2.ALB <= 5.5 THEN 'normal' ELSE 'abnormal' END FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE STRFTIME('%Y', T1.Birthday) = '1982'
moderate
1,218
thrombosis_prediction
What is the percentage of the female patient whose uric acid (UA) beyond the normal range?
female refers to SEX = 'F'; normal UA range is up to 8.0 for males and up to 6.5 for females
SELECT CAST(SUM(CASE WHEN T2.UA > 6.5 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'F'
moderate
1,219
thrombosis_prediction
For all patients with normal uric acid (UA), what is the average UA index based on their latest laboratory examination result?
uric acid (UA) with normal range refers to UA < 8.0 and SEX = 'M' or UA < 6.5 and SEX = 'F'; average UA index refers to AVG(UA)
SELECT AVG(T2.UA) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE (T2.UA < 6.5 AND T1.SEX = 'F') OR (T2.UA < 8.0 AND T1.SEX = 'M') AND T2.Date = ( SELECT MAX(Date) FROM Laboratory )
moderate
1,220
thrombosis_prediction
Provide all ID, sex and birthday of patients whose urea nitrogen (UN) just within the borderline of passing?
urea nitrogen (UN) just within the borderline of passing refers to UN = 29;
SELECT DISTINCT T1.ID, T1.SEX, T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.UN = 29
simple
1,221
thrombosis_prediction
Provide the ID, sex, birthday of all patients diagnosed with 'RA' that are within the UN normal index.
within the UN normal index refers to UN < 30; Diagnosis = 'RA'
SELECT DISTINCT T1.ID, T1.SEX, T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.UN < 30 AND T1.Diagnosis = 'RA'
simple
1,222
thrombosis_prediction
How many male patients have creatinine index out of the normal range?
creatinine (CRE) out of the normal range refers to CRE > = 1.5; Male refers to Sex = 'M'. Since multiple records may exist per patient, each male patient is counted only once, even if they have multiple results with creatinine index out of the normal range.
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.CRE >= 1.5 AND T1.SEX = 'M'
simple
1,223
thrombosis_prediction
Are there more male patients with creatinine not within the normal range than female? True or False?
creatinine not within the normal range refers to CRE >= 1.5; male refers to SEX = 'M'; female refers to SEX = 'F'; need to compare whether there are more male patients than female patients with abnormal creatinine levels
SELECT CASE WHEN SUM(CASE WHEN T1.SEX = 'M' THEN 1 ELSE 0 END) > SUM(CASE WHEN T1.SEX = 'F' THEN 1 ELSE 0 END) THEN 'True' ELSE 'False' END FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.CRE >= 1.5
challenging
1,224
thrombosis_prediction
What is the highest total bilirubin level recorded? List out the patient details with ID, sex and birthday with that index.
the highest total bilirubin refers to MAX(T-BIL)
SELECT T2.`T-BIL`, T1.ID, T1.SEX, T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID ORDER BY T2.`T-BIL` DESC LIMIT 1
simple
1,225
thrombosis_prediction
List and group all patients by sex for total bilirubin (T-BIL) level not within the normal range.
List refers to GROUP_CONCAT(DISTINCT ID); total bilirubin (T-BIL) not within normal range refers to T-BIL > = 2.0
SELECT T1.ID,T1.SEX FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.`T-BIL` >= 2.0 GROUP BY T1.SEX,T1.ID
moderate
1,226
thrombosis_prediction
Who is the oldest patient with the highest total cholesterol (T-CHO). State the patient ID and T-CHO index.
oldest patient refers to MIN(birthday); highest total cholesterol refers to MAX(T-CHO);
SELECT T1.ID, T2.`T-CHO` FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID ORDER BY T2.`T-CHO` DESC, T1.Birthday ASC LIMIT 1
simple
1,227
thrombosis_prediction
What is the average age of the male patient with high cholesterol?
average age = DIVIDE(SUM(SUBTRACT(YEAR(NOW()), YEAR(birthday))), COUNT(ID)); male patient refers to sex = 'M'; high cholesterol refers to `T-CHO` > = 250;
SELECT AVG(STRFTIME('%Y', date('NOW')) - STRFTIME('%Y', T1.Birthday)) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.`T-CHO` >= 250 AND T1.SEX = 'M'
moderate
1,228
thrombosis_prediction
Provide list of patients and their diagnosis with triglyceride (TG) index greater than 100 of the normal range?
triglyceride (TG) index greater than 100 of the normal range refers to TG > 300;
SELECT DISTINCT T1.ID, T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TG > 300
simple
1,229
thrombosis_prediction
For all patients with triglyceride (TG) level beyond the normal range, how many are age more than 50 years?
triglyceride (TG) level beyond the normal range refers to TG > = 200; more than 50 years of age = SUBTRACT(year(current_timestamp), year(Birthday)) > 50;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TG >= 200 AND STRFTIME('%Y', CURRENT_TIMESTAMP) - STRFTIME('%Y', T1.Birthday) > 50
moderate
1,230
thrombosis_prediction
List all outpatient within normal range of creatinine phosphokinase. Give me the distinct ids.
outpatient refers to Admission = '-'; normal range of creatinine phosphokinase refers to CPK < 250;
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.CPK < 250 AND T1.Admission = '-'
simple
1,231
thrombosis_prediction
For patient born between 1936-1956, how many male patients have creatinine phosphokinase beyond the normal range?
born between 1936-1956 refers to year(Birthday) BETWEEN '1936' AND '1956'; male patients refers to sex = 'M'; creatinine phosphokinase beyond the normal range refers to CPK > = 250; Should consider DISTINCT in the final result;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE STRFTIME('%Y', T1.Birthday) BETWEEN '1936' AND '1956' AND T1.SEX = 'M' AND T2.CPK >= 250
challenging
1,232
thrombosis_prediction
Provide ID, sex and age of patient who has blood glucose (GLU) not within normal range but with total cholesterol(T-CHO) within normal range.
age = SUBTRACT(year(current_timestamp), year(Birthday)); blood glucose (GLU) not within normal range refers to GLU > = 180; total cholesterol(T-CHO) within normal range refers to `T-CHO` < 250;
SELECT DISTINCT T1.ID, T1.SEX , STRFTIME('%Y', CURRENT_TIMESTAMP) - STRFTIME('%Y', T1.Birthday) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GLU >= 180 AND T2.`T-CHO` < 250
challenging
1,233
thrombosis_prediction
List each patient's ID and blood glucose (GLU) index that were within normal range for patient's whose data was first recorded in 1991.
blood glucose (GLU) index that were within normal range refers to GLU < 180; data that was first recorded in 1991 refers to year(Description) = 1991;
SELECT DISTINCT T1.ID, T2.GLU FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE STRFTIME('%Y', T1.`First Date`) = '1991' AND T2.GLU < 180
moderate
1,234
thrombosis_prediction
List the patient ID, sex and birthday who has abnormal white blood cell count. Group them by sex and list the patient by age in ascending order.
abnormal white blood cell count refers to WBC < 3.5 or WBC > 9.0
SELECT T1.ID, T1.SEX, T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.WBC < 3.5 OR T2.WBC > 9.0 GROUP BY T1.ID, T1.SEX, T1.Birthday ORDER BY T1.SEX, T1.Birthday ASC
moderate
1,235
thrombosis_prediction
What are the patient's diagnosis for those who has lower red blood blood cell? State their ID and age.
lower red blood cell refers to RBC < 3.5;
SELECT DISTINCT T1.Diagnosis, T1.ID , STRFTIME('%Y', CURRENT_TIMESTAMP) -STRFTIME('%Y', T1.Birthday) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.RBC < 3.5
moderate
1,236
thrombosis_prediction
For all the female patient age 50 and above, who has abnormal red blood cell count. State if they were admitted to hospital.
female patient refers to Sex = 'F'; age 50 and above = SUBTRACT(year(current_timestamp), year(Birthday)) > = 50; abnormal red blood cell count refers to RBC < = 3.5 or RBC > = 6.0; Admission = '+' means the patient was admitted to the hospital; Admission = '-' means the patient was not admitted to the hospital;
SELECT DISTINCT T1.ID, T1.Admission FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'F' AND (T2.RBC <= 3.5 OR T2.RBC >= 6.0) AND STRFTIME('%Y', CURRENT_TIMESTAMP) - STRFTIME('%Y', T1.Birthday) >= 50
challenging
1,237
thrombosis_prediction
Among all outpatients, list out those have low hemoglobin level. State the different IDs and their sex.
outpatients refers to Admission = '-'; low hemoglobin level refers to HGB < 10;
SELECT DISTINCT T1.ID, T1.SEX FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.HGB < 10 AND T1.Admission = '-'
simple
1,238
thrombosis_prediction
Among the patients who were diagnosed with SLE, who is the oldest with normal hemoglobin level. Provide the ID and sex.
diagnosed with SLE refers to Diagnosis = 'SLE'; The larger the birthday value, the younger the person is, and vice versa; normal hemoglobin level refers to 10 < HGB < 17;
SELECT T1.ID, T1.SEX FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.Diagnosis = 'SLE' AND T2.HGB > 10 AND T2.HGB < 17 ORDER BY T1.Birthday ASC LIMIT 1
moderate
1,239
thrombosis_prediction
Name the ID and age of patient with two or more laboratory examinations which show their hematoclit level exceeded the normal range.
age = SUBTRACT(year(current_timestamp), year(Birthday)); patient with two or more laboratory examinations refers to COUNT(ID) > 2; hematoclit level exceeded the normal range refers to HCT > = 52;
SELECT DISTINCT T1.ID, STRFTIME('%Y', CURRENT_TIMESTAMP) - STRFTIME('%Y', T1.Birthday) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.ID IN ( SELECT ID FROM Laboratory WHERE HCT >= 52 GROUP BY ID HAVING COUNT(ID) >= 2 )
challenging
1,240
thrombosis_prediction
From laboratory examinations in 1991, what is the average hematoclit level that is lower than the normal range.
laboratory examinations in 1991 refers to Date like '1991%'; average hematoclit level = AVG(HCT); hematoclit level that is lower than the normal range refers to HCT < 29;
SELECT AVG(T2.HCT) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.HCT < 29 AND STRFTIME('%Y', T2.Date) = '1991'
moderate
1,241
thrombosis_prediction
For patients with abnormal platelet level, state the number of patients with lower than normal range. How is it compare to the number of patients with higher than normal range?
abnormal platelet level refers to PLT <= 100 or PLT >= 400; platelet level lower than normal range refers to PLT <= 100; calculation = SUBTRACT(SUM(PLT < 100), SUM(PLT > 400)); platelet level higher than normal range refers to PLT >= 400;
SELECT SUM(CASE WHEN T2.PLT <= 100 THEN 1 ELSE 0 END), SUM(CASE WHEN T2.PLT <= 100 THEN 1 ELSE 0 END) - SUM(CASE WHEN T2.PLT >= 400 THEN 1 ELSE 0 END) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID
challenging
1,242
thrombosis_prediction
For laboratory examinations take in 1984, list all patients below 50 years old with normal platelet level.
laboratory examinations take in 1984 refers to YEAR(Date) = '1984'; below 50 years old = SUBTRACT(year(current_timestamp), year(Birthday)) < 50; normal platelet level refers to PLT between 100 and 400;
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.PLT BETWEEN 100 AND 400 AND STRFTIME('%Y', T2.Date) - STRFTIME('%Y', T1.Birthday) < 50 AND STRFTIME('%Y', T2.Date) = '1984'
challenging
1,243
thrombosis_prediction
For all patients who are older than 55 years old, what is the percentage of female who has abnormal prothrombin time (PT)?
older than 55 years old = SUBTRACT(year(current_timestamp), year(Birthday)) > 55; abnormal prothrombin time (PT) refers to PT > = 14; percentage = DIVIDE(SUM(PT > = 14 AND SEX = 'F'), SUM(PT > = 14)) * 100; female refers to sex = 'F';
SELECT CAST(COUNT(DISTINCT CASE WHEN T2.PT >= 14 AND T1.SEX = 'F' THEN T1.ID END) AS REAL) / COUNT(DISTINCT CASE WHEN T2.PT >= 14 THEN T1.ID END) * 100 AS abnormal_pt_female_percentage FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE STRFTIME('%Y', CURRENT_TIMESTAMP) - STRFTIME('%Y', T1.Birthday) > 55;
challenging
1,244
thrombosis_prediction
List all patients who first came to the hospital after year 1992 with prothrombin time (PT) level that are normal.
after year 1992 refers to year 1993 and onward; prothrombin time (PT) level that are normal refers to PT < 14
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE STRFTIME('%Y', T1.`First Date`) > '1992' AND T2.PT < 14
moderate
1,245
thrombosis_prediction
For the examinations done after 1997/1/1, how many of them have the result of an inactivated partial prothrom bin time?
examinations done after 1997/1/1 refers to `Examination Date` > '1997-01-01'; normal activated partial prothrom bin time refesr to APTT < 45;
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.Date > '1997-01-01' AND T2.APTT >= 45
moderate
1,246
thrombosis_prediction
For the patients with an abnormal activated partial prothrom bin time, how many of them does not have thrombosis?
abnormal activated partial prothrom bin time refers to APTT > 45; does not have thrombosis refers to Thrombosis = 0; Only count ones without repetitive.
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T3.ID = T2.ID WHERE T3.Thrombosis = 0 AND T2.APTT > 45
moderate
1,247
thrombosis_prediction
Among the male patients who have a normal level of white blood cells, how many of them have an abnormal fibrinogen level?
male patients refers to Sex = 'M'; normal level of white blood cells refers to WBC > 3.5 and WBC <9.0; abnormal fibrinogen level refers to FG < = 150 or FG > = 450; Don't compute repetitive ones.
SELECT COUNT(DISTINCT p.ID) AS male_count FROM Patient AS p JOIN Laboratory AS l ON l.ID = p.ID WHERE p.SEX = 'M' AND (l.FG <= 150 OR l.FG >= 450) AND l.WBC > 3.5 AND l.WBC < 9.0;
challenging
1,248
thrombosis_prediction
How many patients born after 1980/1/1 have an abnormal fibrinogen level?
born after 1980/1/1 refers to Birthday > '1980-01-01'; normal fibrinogen level refers to FG between 150 and 450; Should return the number of distinct patients.
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.FG <= 150 OR T2.FG >= 450 AND T1.Birthday > '1980-01-01'
moderate
1,249
thrombosis_prediction
Please list the disease names of the patients that have a proteinuria level higher than normal.
disease names refers to Diagnosis; proteinuria level higher than normal refers to `U-PRO` > = 30;
SELECT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.`U-PRO` >= 30
simple
1,250
thrombosis_prediction
Which patients have a normal proteinuria level and are diagnosed with SLE? Please give their patient IDs.
normal proteinuria level refers to 0 < `U-PRO` < 30; diagnosed with SLE refers to Diagnosis = 'SLE';
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE CAST(T2.`U-PRO` AS REAL) > 0 AND CAST(T2.`U-PRO` AS REAL) < 30 AND T1.Diagnosis = 'SLE'
moderate
1,251
thrombosis_prediction
How many patients with an Ig G higher than normal?
Ig G higher than normal refers to IGG >= 2000
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T3.ID = T2.ID WHERE T2.IGG >= 2000
simple
1,252
thrombosis_prediction
Among the patients with a normal Ig G level, how many of them have symptoms?
normal Ig G level refers to IGG > 900 and IGG < 2000; have symptoms refers to Symptoms IS NOT NULL;
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T3.ID = T2.ID WHERE T2.IGG BETWEEN 900 AND 2000 AND T3.Symptoms IS NOT NULL
moderate
1,253
thrombosis_prediction
For the patient who has the highest Ig A within the normal range, what is his or her diagnosis?
Normal range for Ig A is between 80 and 500 inclusive.
SELECT patientData.Diagnosis FROM Patient AS patientData INNER JOIN Laboratory AS labData ON patientData.ID = labData.ID WHERE labData.IGA BETWEEN 80 AND 500 ORDER BY labData.IGA DESC, patientData.ID LIMIT 1
simple
1,254
thrombosis_prediction
How many patients with a normal Ig A level came to the hospital after 1990/1/1?
normal Ig A level refers to IGA > 80 AND IGA < 500; came to the hospital after 1990/1/1 refers to YEAR(`First Date`) > = 1990;
SELECT COUNT(DISTINCT T1.ID) AS normal_iga_patient_count FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.IGA > 80 AND T2.IGA < 500 AND strftime('%Y', T1.`First Date`) >= '1990';
moderate
1,255
thrombosis_prediction
For the patients with an abnormal Ig M level, what is the most common disease they are diagnosed with?
abnormal Ig M level refers to IGM <=40 OR IGM >= 400; most common disease refers to MAX(COUNT(Diagnosis));
SELECT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.IGM NOT BETWEEN 40 AND 400 GROUP BY T1.Diagnosis ORDER BY COUNT(T1.Diagnosis) DESC LIMIT 1
moderate
1,256
thrombosis_prediction
How many patients with a abnormal C-reactive protein don't have their data recorded?
abnormal C-reactive protein refers to CRP ='+'; don't have data recorded refers to Description IS NULL;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.CRP = '+' AND T1.Description IS NULL;
moderate
1,257
thrombosis_prediction
Among the patients whose creatinine level is abnormal, how many of them aren't 70 yet?
creatinine level is abnormal refers to CRE >= 1.5; aren't 70 yet refers to SUBTRACT((YEAR(CURDATE()), YEAR(Birthday))) < 70;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.CRE >= 1.5 AND STRFTIME('%Y', Date('now')) - STRFTIME('%Y', T1.Birthday) < 70
challenging
1,258
thrombosis_prediction
How many patients with a normal Rhuematoid Factor has a positive measure of degree of coagulation?
normal Rhuematoid Factor refers TO RA IN('-', '+-'); positive measure of degree of coagulation refers to KCT = '+'; Should compute the number of distinct ones
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T3.ID = T2.ID WHERE (T2.RA = '-' OR T2.RA = '+-') AND T3.KCT = '+'
moderate
1,259
thrombosis_prediction
Please list the diseases of the patients born after 1985-1-1 and have a normal Rhuematoid Factor.
diseases refers to Diagnosis; born after 1985/1/1 refers to YEAR(Birthday) > = 1985; normal Rhuematoid Factor refers to RA IN('-', '+-');
SELECT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE (T2.RA = '-' OR T2.RA = '+-') AND T1.Birthday > '1985-01-01'
moderate
1,260
thrombosis_prediction
Please list the ID of patients whose RF test result is normal and who were older than 60 at the time of their laboratory test.
RF is normal refers to RF < 20, excluding any '<' or '>' prefix if present; older than 60 means the patient's age at the time of the laboratory test exceeded 60 years
SELECT DISTINCT p.ID FROM Patient AS p JOIN Laboratory AS l ON p.ID = l.ID WHERE l.RF IS NOT NULL AND TRIM(l.RF) != '' AND CAST(REPLACE(REPLACE(l.RF, '<', ''), '>', '') AS REAL) < 20 AND (CAST(strftime('%Y', l.Date) AS INTEGER) - CAST(strftime('%Y', p.Birthday) AS INTEGER)) > 60
simple
1,261
thrombosis_prediction
How many patients with a normal RF don't have thrombosis?
normal RF refers to RF < 20; don't have thrombosis refers to Thrombosis = '0';
SELECT COUNT(DISTINCT T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.RF < 20 AND T1.Thrombosis = 0
simple
1,262
thrombosis_prediction
How many patients with a normal level of complement 3 have a P pattern observed in the sheet of ANA examination?
normal level of complement 3 refers to C3 > 35; have a P pattern observed in the sheet of ANA examination refers to ANA Pattern = 'P'; Should compute the number of distinct ones
SELECT COUNT(DISTINCT T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.C3 > 35 AND T1.`ANA Pattern` = 'P'
moderate
1,263
thrombosis_prediction
Among the patients whose level of Hematoclit isn't normal, which patient has the highest anti-Cardiolipin antibody concentration? Please list his or her ID.
Hematoclit is normal refers to 29 < N < 52; highest anti-Cardiolipin antibody concentration refers to MAX(`aCL IgA`);
SELECT DISTINCT T1.ID FROM Patient AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID INNER JOIN Laboratory AS T3 on T1.ID = T3.ID WHERE (T3.HCT >= 52 OR T3.HCT <= 29) ORDER BY T2.`aCL IgA` DESC LIMIT 1
moderate
1,264
thrombosis_prediction
Among the patients have blood clots in veins, how many of them have a normal level of complement 4?
APS will result in Blood Clots in veins; normal level of complement 4 refers to C4 > 10; Should compute the number of different ones
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.C4 > 10 AND T1.Diagnosis = 'APS'
moderate
1,265
thrombosis_prediction
How many patients have a normal level of anti-ribonuclear protein and have been admitted to the hospital?
normal level of anti-ribonuclear protein refers to RNP = '-', '+-'; And'-' means 'negative'; '+-' refers to '0'; admitted to the hospital refers to Admission = '+'; Should consider DISTINCT in the final result;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.RNP = 'negative' OR T2.RNP = '0' AND T1.Admission = '+'
moderate
1,266
thrombosis_prediction
What is the date of birth of the youngest patient with an abnormal anti-ribonuclear protein level?
youngest patient refers to MAX(Birthday); abnormal anti-ribonuclear protein level refers to RNP NOT IN('-', '+-'); date of birth refers to Birthday;
SELECT T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.RNP NOT IN ('-', '+-') ORDER BY T1.Birthday DESC LIMIT 1
moderate
1,267
thrombosis_prediction
Among the patients with normal anti-SM, how many of them does not have thrombosis?
normal anti-SM refers to SM IN('-', '+-'); SM = 'negative' means '-'; SM = '0' means '+-'; SM = '1' means '+'; does not have thrombosis refers to Thrombosis = 0;
SELECT COUNT(T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.SM IN ('negative','0') AND T1.Thrombosis = 0
moderate
1,268
thrombosis_prediction
For the patients with an abnormal anti-SM, please list the IDs of the three youngest ones.
abnormal anti-SM refers to SM NOT IN ('negative', '0'); youngest refers to MAX(Birthday);
SELECT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.SM NOT IN ('negative','0') ORDER BY T1.Birthday DESC LIMIT 3
simple
1,269
thrombosis_prediction
Please list the IDs of the patients who had the examination done after 1997/1/1 and had a normal anti-scl70.
examination done after 1997/1/1 refers to `Examination Date` > 1997-01-01; normal anti-scl70 refers to SC170 IN('negative','0');
SELECT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.SC170 IN ('negative','0') AND T2.Date > '1997-01-01'
moderate
1,270
thrombosis_prediction
Among the patients who has a normal anti-scl70, how many of them are female and does not have any symptom?
normal anti-scl70 refers to negative test results; female refers to female sex; patients without symptoms have no recorded symptoms; when counting patients across multiple test records, each patient should only be counted once
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T3.ID = T2.ID WHERE (T2.SC170 = 'negative' OR T2.SC170 = '0') AND T1.SEX = 'F' AND T3.Symptoms IS NULL
challenging
1,271
thrombosis_prediction
How many patients with a normal anti-SSA came to the hospital before 2000?
normal anti-SSA refers to SSA that is 'negative' or '0'; came to the hospital before 2000 refers to laboratory test date before year 2000; Should compute the number of distinct patients
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.SSA IN ('negative', '0') AND STRFTIME('%Y', T2.Date) < '2000'
moderate
1,272
thrombosis_prediction
Which patient is the first patient with an abnormal anti-SSA to come to the hospital? Please give his or her ID.
first patient refers to ID with MIN(`First Date`); abnormal anti-SSA refers to SSA NOT IN('negative', '0');
SELECT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.`First Date` IS NOT NULL AND T2.SSA NOT IN ('negative', '0') ORDER BY T1.`First Date` ASC LIMIT 1
moderate
1,273
thrombosis_prediction
How many patients have a normal anti-SSB and are diagnosed with SLE in the examination?
normal anti-SSB refers to SSB IN('-', '+-'); '-' is expressed as 'negative' and '+-' is expressed as '0' in the database ; diagnosed with SLE refers to Diagnosis = 'SLE'; Should compute the number of distinct ones
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.SSB = 'negative' OR T2.SSB = '0' AND T1.Diagnosis = 'SLE'
moderate
1,274
thrombosis_prediction
For the patients whose anti-SSB are normal, how many of them have other symptoms observed in their examination?
anti-SSB are normal refers to SSB IN ('negative', '0'); have other symptoms refers to Symptoms IS NOT NULL
SELECT COUNT(DISTINCT T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE (T2.SSB = 'negative' OR T2.SSB = '0') AND T1.Symptoms IS NOT NULL
moderate
1,275
thrombosis_prediction
Among the patients who has a normal level of anti-centromere and a normal level of anti-SSB, how many of them are male?
normal level of anti-centromere refers to CENTROMEA IN('negative', '0'); normal level of anti-SSB refers to SSB IN('negative', '0'); male refers to SEX = 'M';
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.CENTROMEA IN ('negative', '0') AND T2.SSB IN ('negative', '0') AND T1.SEX = 'M'
moderate
1,276
thrombosis_prediction
For the patients who have an abnormal level of anti-DNA, please list the diseases they are diagnosed with.
abnormal level of anti-DNA refers to DNA >= 8; diseases refers to Diagnosis;
SELECT DISTINCT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.DNA >= 8
simple
1,277
thrombosis_prediction
How many patients have a normal anti-DNA level, yet their data are not recorded.
normal anti-DNA level refers to DNA < 8; data are not recorded refers to Description IS NULL; Should compute the number of unique ones
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.DNA < 8 AND T1.Description IS NULL
moderate
1,278
thrombosis_prediction
Based on latest record of each patient,of the patients with an normal level of IGG, how many of them admitted to the hospital?
normal level of IGG refers to 900 < IGG < 2000; admitted to the hospital refers to Admission = '+';
WITH LatestLab AS (SELECT T1.ID,max(T2.Date) AS LatestLabDate FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID GROUP BY T1.ID) SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN LatestLab AS T3 ON T1.ID=T3.ID AND T2.Date=T3.LatestLabDate WHERE T2.IGG > 900 AND T2.IGG <2000 AND T1.Admission = '+'
simple
1,279
thrombosis_prediction
What is the percentage of patient who has a abnormal level of glutamic oxaloacetic transaminase level, yet he or she is diagnosed with SLE?
abnormal level of glutamic oxaloacetic transaminase refers to GOT > = 60; percentage = MULTIPLY(DIVIDE(COUNT(ID WHERE GOT > = 60 AND Diagnosis = 'SLE'), COUNT(ID WHERE GOT > = 60)), 1.0);
SELECT SUM(CASE WHEN T1.Diagnosis LIKE '%SLE%' THEN 1 ELSE 0 END) * 100.0 / COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.`GOT` >= 60
moderate
1,280
thrombosis_prediction
How many male patients have their glutamic oxaloacetic transaminase in the normal range?
male refers to Sex = 'M'; glutamic oxaloacetic transaminase in the normal range refers to GOT < 60;
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GOT < 60 AND T1.SEX = 'M'
simple
1,281
thrombosis_prediction
Among the patients who have an abnormal level of glutamic oxaloacetic transaminase, when was the youngest of them born?
abnormal level of glutamic oxaloacetic transaminase refers to GOT > = 60; The larger the birthday value, the younger the person is, and vice versa;
SELECT T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GOT >= 60 ORDER BY T1.Birthday DESC LIMIT 1
moderate
1,282
thrombosis_prediction
Please list the top three patients' birthdays with the highest glutamic pylvic transaminase in the normal range.
normal range for GPT is below 60
SELECT T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GPT < 60 GROUP BY T1.ID ORDER BY MAX(T2.GPT) DESC, T1.ID ASC LIMIT 3
simple
1,283
thrombosis_prediction
For the patients with the normal glutamic pylvic transaminase level, how many of them are male?
normal glutamic pylvic transaminase level refers to GOT < 60; male refers to Sex = 'M';
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GOT < 60 AND T1.SEX = 'M'
simple
1,284
thrombosis_prediction
For the patient with the highest lactate dehydrogenase in the normal range, when was his or her data first recorded?
highest lactate dehydrogenase in the normal range refers to MAX(LDH < 500); when the data first recorded refers to MIN(First Date);
SELECT T1.`First Date` FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.LDH < 500 ORDER BY T2.LDH DESC LIMIT 1
moderate
1,285
thrombosis_prediction
When is the latest patient's medical data recorded? This patient should have an abnormal level of lactate dehydrogenase.
latest patient refers to ID with MAX('First Date'); abnormal level of lactate dehydrogenase refers to LDH > = 500;
SELECT T1.`First Date` FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.LDH >= 500 ORDER BY T1.`First Date` DESC LIMIT 1
moderate
1,286
thrombosis_prediction
For the patient with an abnormal alkaliphophatase level, how many of them are admitted to the hospital?
abnormal alkaliphophatase level refers to ALP > = 300; admitted to the hospital refers to Admission = '+';
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.ALP >= 300 AND T1.Admission = '+';
simple
1,287
thrombosis_prediction
Among the patients followed at the outpatient clinic, how many of them have a normal level of alkaliphophatase?
followed at the outpatient clinic refers to Admission = '-'; normal level of alkaliphophatase refers to ALP < 300;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.ALP < 300 AND T1.Admission = '-'
moderate
1,288
thrombosis_prediction
Please list the diagnosis of the patients whose total protein is lower than normal.
total protein is lower than normal refers to TP < 6.0;
SELECT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TP < 6.0
simple
1,289
thrombosis_prediction
For the patients who are diagnosed with SJS, how many of them have a normal level of total protein?
diagnosed with SJS refers to Diagnosis = 'SJS'; normal level of total protein refers to TP > 6.0 and TP < 8.5;
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.Diagnosis = 'SJS' AND T2.TP > 6.0 AND T2.TP < 8.5
moderate
1,290
thrombosis_prediction
What is the examination date of the patient whose albumin is the highest in the normal range?
examination date refers to Date; albumin is the highest in the normal range refers to MAX(ALB > 3.5 and ALB < 5.5);
SELECT Date FROM Laboratory WHERE ALB > 3.5 AND ALB < 5.5 ORDER BY ALB DESC LIMIT 1
simple
1,291
thrombosis_prediction
How many male patients have a normal level of both albumin and total protein?
male refers to Sex = 'M'; normal level of both albumin and total protein refers to ALB > 3.5 and ALB < 5.5 AND TP between 6.0 and 8.5;
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'M' AND T2.ALB > 3.5 AND T2.ALB < 5.5 AND T2.TP BETWEEN 6.0 AND 8.5
moderate
1,292
thrombosis_prediction
What is the anti Cardiolipin antibody concentration of the female patient with the highest uric acid level above 6.5?
anti Cardiolipin antibody concentration refers to `aCL IgG`, `aCL IgM`, `aCL IgA`; female patient refers to SEX = 'F'; uric acid level above 6.5 refers to UA > 6.5
SELECT T3.`aCL IgG`, T3.`aCL IgM`, T3.`aCL IgA` FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T3.ID = T2.ID WHERE T1.SEX = 'F' AND T2.UA > 6.5 ORDER BY T2.UA DESC, T1.ID ASC LIMIT 1
challenging
1,293
thrombosis_prediction
What is the highest anti-nucleus antibody concentration level of a patient with a normal creatinine level?
highest refers to the maximum value; normal creatinine level refers to CRE < 1.5
SELECT MAX(T2.ANA) FROM Patient AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID INNER JOIN Laboratory AS T3 ON T1.ID = T3.ID WHERE T3.CRE < 1.5
moderate
1,294
thrombosis_prediction
Please list the patient's ID whose creatinine level is normal and whose anti Cardiolipin antibody concentration level is the highest.
creatinine level is normal refers to CRE < 1.5; anti Cardiolipin antibody concentration level is the highest refers to MAX(aCL IgA);
SELECT T2.ID FROM Laboratory AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID WHERE T1.CRE < 1.5 AND T2.`aCL IgA` IS NOT NULL ORDER BY T2.`aCL IgA` DESC LIMIT 1
moderate
1,295
thrombosis_prediction
Among the patients whose total bilirubin is over the normal range, how many of them have a peripheral pattern observed in the sheet of ANA examination?
total bilirubin is over the normal range refers to `T-BIL` > = 2.0; peripheral pattern is observed in the sheet of ANA examination refers to that ANA Pattern contains 'P';
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T1.ID = T3.ID WHERE T2.`T-BIL` >= 2 AND T3.`ANA Pattern` LIKE '%P%'
challenging
1,296
thrombosis_prediction
What is the anti-nucleus antibody concentration of the patient whose total bilirubin is the highest in the normal range?
anti-nucleus antibody concentration refers to ANA; total bilirubin is the highest in the normal range refers to MAX(`T-BIL` < 2.0);
SELECT T1.ANA FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.`T-BIL` < 2.0 ORDER BY T2.`T-BIL` DESC LIMIT 1
moderate
1,297
thrombosis_prediction
For the patients whose total cholesterol is higher than normal, how many of them have a negative measure of degree of coagulation?
total cholesterol is higher than normal refers to `T-CHO` > = 250; negative measure of degree of coagulation refers to KCT = '-' ;
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T1.ID = T3.ID WHERE T2.`T-CHO` >= 250 AND T3.KCT = '-'
moderate
1,298
thrombosis_prediction
Among the patients whose total cholesterol is within the normal range, how many of them have a P pattern observed in the sheet of ANA examination?
total cholesterol is within the normal range refers to `T-CHO` < 250; P pattern observed in the sheet of ANA examination refers to ANA Pattern = 'P';
SELECT COUNT(DISTINCT T1.ID) AS qualified_patient_count FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T1.ID = T3.ID WHERE T2.`T-CHO` < 250 AND T3.`ANA Pattern` = 'P';
moderate
1,299
thrombosis_prediction
Among the patients with the normal level of triglyceride, how many of them have other symptoms observed?
normal level of triglyceride refers to TG < 200; have other symptoms refers to Symptoms is not null;
SELECT COUNT(DISTINCT T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TG < 200 AND T1.Symptoms IS NOT NULL
simple