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