URLs aren't translating. For ex. & needs to be translated in to %26 in order for the auto-generated url to populate data in a dashboard. I've tried cast, convert and to_code_points but all to no avail.
How to convert symbols into ASCII (hex or dec) in BigQuery?
973 Views Asked by S.R. At
2
Use REPLACE (or it's equivalent), for instance:
You can nest them to do multiple replacements, like this:
For example:
gives:
I did this using SQL Server but any other SQL database will have a function that is very similar if not identical.
I hope this helps.