Statement: the is no total overall with the name of calvin o'neal , and a round larger than 6
Input Table: indianapolis colts draft history
round | pick | overall | name | position | college |
1 | 26 | 26 | randy burke | wide receiver | kentucky |
2 | 25 | 53 | mike ozdowski | defensive end | virginia |
6 | 24 | 163 | calvin o'neal | linebacker | michigan |
7 | 26 | 193 | blanchard carter | offensive tackle | unlv |
8 | 25 | 220 | ken helms | offensive tackle | georgia |
9 | 24 | 247 | glenn capriola | running back | boston college |
10 | 26 | 277 | ron baker | guard | oklahoma state |
11 | 25 | 304 | brian ruff | linebacker | the citadel |
12 | 24 | 331 | bill deutsch | running back | north dakota |
SQL Command:
SELECT
CASE
WHEN COUNT(*) = 0 THEN 'TRUE'
ELSE 'FALSE'
END
FROM table_sql
WHERE name = 'calvin o''neal'
AND round > 6;