Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Google BigQuery

You're reading from  Learning Google BigQuery

Product type Book
Published in Dec 2017
Publisher Packt
ISBN-13 9781787288591
Pages 264 pages
Edition 1st Edition
Languages
Authors (3):
Thirukkumaran Haridass Thirukkumaran Haridass
Profile icon Thirukkumaran Haridass
Mikhail Berlyant Mikhail Berlyant
Eric Brown Eric Brown
Profile icon Eric Brown
View More author details

Table of Contents (9) Chapters

Preface Google Cloud and Google BigQuery Google Cloud SDK Google BigQuery Data Types BigQuery SQL Basic BigQuery SQL Advanced Google BigQuery API Visualizing BigQuery Data Google Cloud Pub/Sub

User-defined functions

User-defined functions can be written in JavaScript or SQL in BigQuery. These functions can be called in queries to obtain results. The following are the supported datatypes that can be passed to and returned by the functions:

  • ARRAY
  • BOOL
  • BYTES
  • DATE
  • FLOAT64
  • STRING
  • STRUCT
  • TIMESTAMP

The following is a simple function written in JavaScript to return the sum of two numbers, and it is used in the query. This query passes the tip_amount and tolls_amount values for each row from the table to the function and gets the sum:

#standardSQL
CREATE TEMPORARY FUNCTION GetOtherCharges(tipamount FLOAT64, tollsamount FLOAT64)
RETURNS INT64
LANGUAGE js AS """
return tipamount + tollsamount;
""";

SELECT vendor_id, GetOtherCharges( tip_amount, tolls_amount )
FROM `bigquery-public-data.new_york.tlc_green_trips_2013`
Custom external JavaScript libraries...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}