2017-11-24 1 views

Antwort

1

Yo STRPOS Funktion für diese

#standardSQL 
SELECT SUBSTR('John smith:hello', STRPOS('John smith:hello', ':') + 1, LENGTH('John smith:hello')) 
01 verwenden können,

Als Option - können Sie prüfen REGEXP_EXTRACT Funktion

#standardSQL 
SELECT REGEXP_EXTRACT('John smith:hello', r':(.*)') 

beide gleiche Leistung geben mit:

hello 
+0

Danke das ist genau das, was ich brauchte –

Verwandte Themen