【发布时间】:2020-12-15 10:39:59
【问题描述】:
我想更新包含双引号字符的字符串,因此我使用此 BigQuery 查询进行了搜索
select phonenumber from database
where phonenumber like '%\"%'
但没有结果。 '%\\\\"%' 之类的东西也不起作用,但使用 '%\\\\t%' 搜索 \t 字符确实有效。我不明白如何正确转义 BigQuery 中的特殊字符。请帮忙
【问题讨论】:
标签: sql string google-bigquery where-clause sql-like