Plan-of-SQLs (Ours)


Statement: jose ortiz was the center in the oregon state jazz club from 1988 - 90

Ground-truth: TRUE

Input Table: utah jazz all - time roster

Step 1: Select rows where 'player' is 'jose ortiz'.
player nationality position years_for_jazz school___club_team
mehmet okur turkey forward - center 2004 - 11 efes pilsen ( turkey )
josã ortiz puerto rico center 1988 - 90 oregon state
greg ostertag united states center 1995 - 2004 , 2005 - 06 kansas
dan o 'sullivan united states center 1990 - 91 fordham
andre owens united states guard 2005 - 06 houston

Step 2: Select rows where 'position' is 'center'.
player nationality position years_for_jazz school___club_team

Step 3: Select rows where 'school___club_team' is 'oregon state'.
player nationality position years_for_jazz school___club_team

Step 4: Select rows where 'years_for_jazz' is '1988-90'.
player nationality position years_for_jazz school___club_team

Step 5: Use a `CASE` statement to return TRUE if the number of rows is equal to 1, otherwise return FALSE.
player nationality position years_for_jazz school___club_team

Final output table:
verification_result
FALSE

Prediction: FALSE

Ground-truth: TRUE