Statement: active from 1947 - 1964 , titus ozon scored 157 goals
Input Table: list of top association football goal scorers by country
rank | name | years | matches | goals |
1 | dudu georgescu | 1970-01-01 - 1986-01-01 | 370 | 252 |
2 | ionel danciulescu | 1993-01-01 - present | 427 | 210 |
3 | rodion camataru | 1974-01-01 - 1989-01-01 | 377 | 198 |
4 | marin radu | 1974-01-01 - 1989-01-01 | 384 | 190 |
5 | ion oblemenco | 1964-01-01 - 1976-01-01 | 272 | 170 |
5 | florea dumitrache | 1966-01-01 - 1983-01-01 | 357 | 170 |
7 | mircea sandu | 1970-01-01 - 1987-01-01 | 407 | 167 |
8 | victor piturca | 1975-01-01 - 1989-01-01 | 301 | 166 |
9 | mihai adam | 9999-01-01 - 1976-01-01 | 353 | 160 |
10 | titus ozon | 1947-01-01 - 1964-01-01 | 270 | 157 |
SQL Command:
SELECT
CASE
WHEN (SELECT goals FROM table_sql WHERE name = 'titus ozon' AND years = '1947-01-01 - 1964-01-01') = 157
THEN 'TRUE'
ELSE 'FALSE'
END;