I'm trying to extract all columns in bigquery google analytics data WHERE I filtered by hostname.
However, the result is still showing the other hostnames as seen on screenshot.
I'm doing this select with a filter to copy data to another dataset with the same schema.
QUERY BELOW:
SELECT g.* FROM `10241241.ga_sessions_20160805` g, UNNEST (hits) as hits WHERE hits.page.hostname= "www.googlemerchandisestore.com"
UPDATED How can I copy the same schema without changing its nested structure?