问题
In Oracle and SQL Server, it is possible to search all database objects for references of specific text: SELECT * FROM all_source WHERE UPPER(text) LIKE '%blah%'
I would like to do the same thing in Google BigQuery. Is it possible to search every field of every table for a particular value in BigQuery?
回答1:
If you wish to query multiple tables within a dataset in BigQuery, have a look at querying multiple tables using a wildcard table. If you would also like to search for a word in all columns of a table (or every table in this case), have a look at this SO post where this topic is discussed.
来源:https://stackoverflow.com/questions/51678634/is-it-possible-to-do-a-full-text-search-in-all-tables-in-bigquery