-
```
Please add a date truncate feature for timestamps that is similar to the Oracle
database trunc() function:
http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions201.htm
and
http://do…
-
```
Most other SQL type programs allow you to work on many different queries at the
same time. Most of the time it is useful if you are working out a smaller
query for use in the bigger query. Or …
-
```
It would be nice to have a push (web-hook) notification mechanism for Big Query
Jobs, something like Object Change Notifications in Cloud Storage:
- set a watch channel on a specific [project|da…
-
```
Needed for a few reasons, but in my case I would like it to help in providing a
more professional experience when showing the product to other
people/colleagues. No need to have a bunch of queri…
-
```
SELECT
category,
sub_category
FROM FLATTEN (
(
SELECT
category,
sub_category
FROM
[dataset.stat_2014_07_04]
), sub_category)
This query works as exp…
-
```
Most other SQL type programs allow you to work on many different queries at the
same time. Most of the time it is useful if you are working out a smaller
query for use in the bigger query. Or …
-
```
Please add a date truncate feature for timestamps that is similar to the Oracle
database trunc() function:
http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions201.htm
and
http://do…
-
```
Let's say I have a table set that is partitioned by day in BigQuery.
Prior to 2015-01-13 it looked like:
sales_20150112
( OrderId,
Field_1,
Field_2,
...
...
Field_10
)
on 2015-01-13 new …
-
```
BigQuery supports table unions but no UNION, INTERSECT and EXCEPT keywords like
in SQL. This would practical however. I have several use cases for such
keywords and currently need to apply work …
-
```
Field descriptions on views are not working in BigQuery. I would like to be
able to describe the fields in my views so that others using the data can
understand what each field corresponds to.
…