Examtopics

Professional Data Engineer
  • Topic 2 Question 1

    Suppose you have a table that includes a nested column called "city" inside a column called "person", but when you try to submit the following query in BigQuery, it gives you an error. SELECT person FROM project1.example.table1 WHERE city = "London" How would you correct the error?

    • Add ", UNNEST(person)" before the WHERE clause.

    • Change "person" to "person.city".

    • Change "person" to "city.person".

    • Add ", UNNEST(city)" before the WHERE clause.


    シャッフルモード