I have a project in big query with its all datasets now I want to know how data is coming from firebase to those datasets, And I have created one new own table in bigquery. How can I push the data from any tables of dataset to my own created table? This query contains all the fields of the dataset table which I want to in my own table.
SELECT
user_dim.device_info.device_category
user_dim.device_info.mobile_brand_name
user_dim.device_info.mobile_model_name
user_dim.device_info.mobile_marketing_nam
FROM [in_mylo_pregnancy_baby_app_ANDROID.app_events]
user_dim.device_info.device_category
to have that name in the new table? Or will it be called simplydeviceCategory
? What is wrong with the query that you provided in your question? – Elliott Brossarduser_dim.device_info.device_category
, or is it calleddevice_category
? – Elliott Brossard