Te sugerimos que pruebes esta respuesta en un entorno controlado antes de enviarlo a producción, un saludo.
Ejemplo 1: string hasta la fecha en BQ
def save_to_bq_table():<br />bq_client = bigquery.Client()<br /># Saving data to a intermediate table then export it to GCS
query = "##Query with millions of records results##"
job_config = bigquery.QueryJobConfig()
# Set the destination table
table_ref = bq_client.dataset(dataset_id).table('TableID')
job_config.destination = table_ref
job_config.allow_large_results = True
# Start the query, passing in the extra configuration.
query_job = bq_client.query(
query,
location='US', # Location must match that of the source table
job_config=job_config) # API request - starts the query
query_job.result() # Waits for the query to finish
Ejemplo 2: convertir google analytics dathourminute a marca de tiempo? sql
SELECT DATETIME_ADD(PARSE_DATETIME('%Y%m%d',date),INTERVAL h.hour*60+ h.minuteminute)ASdatetime
Comentarios y calificaciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)