About 1,104,919 results (5,254 milliseconds)

primary_key | Looker | Google Cloud

https://cloud.google.com/looker/docs/reference/param-field-primary-key
Sep 25, 2023 ... transaction derived_table: { sql: SELECT ROW_NUMBER as transaction_pk, * FROM warehouse. ... Java is a registered trademark of Oracle and ...

Window function calls | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/window-function-calls
... rows around the row being evaluated. For each row, the window function result is computed using the selected window of rows as input, possibly doing aggregation ...

Specify nested and repeated columns in table schemas | BigQuery ...

https://cloud.google.com/bigquery/docs/nested-repeated
Translate SQL queries using the API · Translate SQL queries in batch · Map ... The following query uses the row_number() function to identify duplicate records ...

Teradata SQL translation guide | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/migration/teradata-sql
To delete all rows in the table (truncate), use WHERE true . To speed truncate operations up for very large tables, we recommend using the CREATE OR REPLACE ...

Looker cookbooks: Getting the most out of derived tables in Looker ...

https://cloud.google.com/looker/docs/best-practices/pdt-cookbook
Appending new data to a large table; Using SQL window functions; Creating derived columns for calculated values; Optimization strategies; Using PDTs to test ...

Table chart options | Looker | Google Cloud

https://cloud.google.com/looker/docs/table-options
This is because table calculations calculate subtotals using the other subtotal values, not using the values in the data column. For example, if you have two ...

Error: Non-Unique value/primary key (or sql_distinct_key), value ...

https://cloud.google.com/looker/docs/best-practices/error-non-unique-primary-key-computing-sum
Nov 15, 2023 ... view: derived_table_name { derived_table { sql: SELECT row_number() OVER(ORDER BY created_at) AS prim_key, * FROM orders ;; } dimension ...

Converting and optimizing queries from Oracle Database to Cloud ...

https://cloud.google.com/solutions/converting-optimizing-queries-oracle-database-cloud-sql-mysql
UNION ALL attaches the result sets of two SELECT statements without eliminating duplicate records. ... Cloud SQL for MySQL functions only remove leading ...

Query syntax in GoogleSQL | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/reference/standard-sql/query-syntax
A SELECT ALL statement returns all rows, including duplicate rows. SELECT ALL is the default behavior of SELECT . Using STRUCTs with SELECT. Queries that ...

Use the legacy streaming API | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/streaming-data-into-bigquery
Shows how to stream data into non-partitioned and time-partitioned BigQuery tables using the tabledata.insertAll method, de-duplicate data, ...

Functions, operators, and conditionals | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators
In following query, the struct subscript operator is used to return values at specific locations in item_struct using position keywords. This query also shows ...

Row_Number() in UPDATE statement

https://groups.google.com/g/microsoft.public.sqlserver.programming/c/41qlOqSOBYk
you want number the rows in a table. -- Erland Sommarskog, SQL Server MVP, [email protected]. Links for SQL Server Books Online: SQL 2008 ...

ROWID in Sybase ?

https://groups.google.com/g/comp.databases.sybase/c/IZVkdQH2fyY
fancy academic poop, that's just definitional truth. To quote from the Oracle System 7 SQL manual: ... key runs the risk of deleting more rows than you want to ...

Oracle to BigQuery migration | Google Cloud

https://cloud.google.com/bigquery/docs/migration/oracle-migration
Storage resources are allocated as you consume them and deallocated as you remove data or drop tables. Oracle stores data in row format using Oracle block ...

Oracle SQL translation guide | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/migration/oracle-sql
In BigQuery this feature could be implemented using ROUND() function. NUMBER(*, x) · NUMERIC, BigQuery does not allow user specification of custom values for ...

Migrating Oracle® users to Cloud SQL for PostgreSQL: Queries ...

https://cloud.google.com/solutions/migrating-oracle-users-to-cloud-sql-for-postgresql-queries
... row is selected by Oracle from a table or joined tables. ... Instead of limiting the number of results returned by queries using ROWNUM , Cloud SQL for PostgreSQL ...

What do Oracle professionals think of Fabian Pascal?

https://groups.google.com/g/comp.databases.oracle.misc/c/31E2Wl97tGU
to outlaw duplicate rows by insisting each table has a key ? The features ... > In Oracle it means delete the first 36 rows found: Whichever ones they are.

Using EXISTS instead of IN for subqueries

https://groups.google.com/g/django-developers/c/OG1unUV-MOU
Mar 25, 2013 ... Hmmh, this means Oracle, MSSQL, DB2 and Informix are doing more or ... A quick check of the other database with Django backends seems ...