2021. már 06.

Bigquery: connect a service account to Python

írta: dataanalyticsdemo
Bigquery: connect a service account to Python

Using Google Colab

Just because I can.   Let's add something else too:

Tovább Szólj hozzá

Python SQL Bigquery

2021. már 03.

SQL Bigquery tidbits:Months to be ordered correctly

írta: dataanalyticsdemo
SQL Bigquery tidbits:Months to be ordered correctly

I love it, when I want to chronologically sort year & months formatted like 2016-1, 2016-2..2016-10 and the result is like: 2016-1, 2016-10, 2016-2. This needs to stop. with prep as (SELECT * ,cast(concat(cast(year as string), '-', case when length(cast(month as string)) = 1 then…

Tovább Szólj hozzá

public SQL Cases Bigquery

2021. már 02.

SQL Bigquery tidbits: Popular names 1910-2013 database

írta: dataanalyticsdemo
SQL Bigquery tidbits: Popular names 1910-2013 database

The table: Let's start with most popular name throughout all the years: SELECT A.*, B.* FROM `bigquery-public-data.usa_names.usa_1910_2013` A inner join (select name as name2, sum(number) as res from `bigquery-public-data.usa_names.usa_1910_2013` group by name order by sum(number) desc) B on…

Tovább Szólj hozzá

public SQL Bigquery

süti beállítások módosítása