sql - Finding Substring in Bigquery -
how find substrings in bigquery? couldn't find function supports firing queries 'substring(column_name,3,7)'. there way out achieve same functionality in bigquery?
#standardsql yourtable ( select 'finding substring in bigquery' column_name ) select substr(column_name, 9, 12) yourtable
so substr(value, position [, length])
use
see string functions
more
Comments
Post a Comment