Statement: greg ostertag played the center position for the jazz from 1995 to 2004 and then from 2005 to 2006
Input Table: utah jazz all - time roster
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 |
SQL Command:
SELECT
CASE
WHEN (SELECT COUNT(*) FROM table_sql WHERE player = 'greg ostertag' AND position = 'center' AND years_for_jazz = '1995-2004, 2005-2006') > 0
THEN 'TRUE'
ELSE 'FALSE'
END;