Examaxis

Professional Data Engineer Practice Question 9

Question 9 of 311

Your company is using WILDCARD tables to query data across multiple tables with similar names. The SQL statement is currently failing with the following error: Which table name will make the SQL statement work correctly?

# Syntax error: Expected end of statement but got "-" at [4:11]
SELECT age
FROM
bigquery-public-data.noaa_gsod.gsod
WHERE
age != 99
AND _TABLE_SUFFIX = '1929'
ORDER BY
age DESC 1