And there were no LookMl errors but when I go in the explore I get:
The Google BigQuery Standard SQL database encountered an error while running this query.
Query execution failed: - Syntax error: Unexpected “)” at [3:74]
SELECT substring(categories.category,1,position(categories.category,"/",)-1 AS categories_catsFROM `pulse_tables.categories` AS categoriesGROUP BY 1ORDER BY 1LIMIT 500
The Google BigQuery Standard SQL database encountered an error while running this query.
Query execution failed: - Syntax error: Unexpected “)” at [3:74]
The Google BigQuery Standard SQL database encountered an error while running this query.
Query execution failed: - Function not found: position at [3:41]
SELECT substring(categories.category,1,position(categories.category,"/")-1) AS categories_a_1FROM `pulse_tables.categories` AS categoriesGROUP BY 1ORDER BY 1LIMIT 500
BigQuery doesn’t have a function POSITION. You can perhaps use STRPOS but depending on what your data looks like, you might be able to use SPLIT, or even REGEX functions