Use SEARCH with unstructured data
If you only need to find specific values within unstructured data, then you don't need to go through the work of un-nesting your data. You can search inside unstructured data using the SEARCH
function from BigQuery.
Diese Übung ist Teil des Kurses
Introduction to BigQuery
Anleitung zur Übung
- Finish the query to run the
SEARCH
function to look for a value containing'0da9ffd92214425d880de3f94e74ce39'
in theorder_items
column in theecommerce.ecomm_orders
table.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
-- Finish the query to search across the unstructured data
SELECT
-- Complete the SEARCH function
___(___, ___) as results
-- Add the correct table name
FROM ___
LIMIT 5