Statement: at 20.45 the react was less than 164 in lane 6
Input Table: athletics at the 2008 summer olympics - men 's 200 metres
lane | athlete | nationality | time | react |
8 | paul hession | ireland | 20.32 | 0.19 |
4 | wallace spearmon | united states | 20.39 | 0.202 |
6 | jaysuma saidy ndure | norway | 20.45 | 0.131 |
7 | rondell sorillo | trinidad and tobago | 20.63 | 0.164 |
5 | ramil guliyev | azerbaijan | 20.66 | 0.174 |
3 | visa hongisto | finland | 20.76 | 0.124 |
2 | thuso mpuang | south africa | 21.04 | 0.162 |
9 | marvin anderson | jamaica | dnf | 0.187 |
SQL Command:
SELECT
CASE
WHEN react < 0.164 AND lane = 6
THEN 'TRUE'
ELSE 'FALSE'
END
FROM table_sql
WHERE time = 20.45;