【发布时间】:2021-10-31 03:46:56
【问题描述】:
我正在尝试使用 Trino 删除非英语字符。因为我是新手,所以我不确定使用什么运算符作为 ~ unusable 。这是我当前的代码:
Select
translationid,
medium
from translation
where medium ~ '[^A-Za-z_]'
【问题讨论】:
我正在尝试使用 Trino 删除非英语字符。因为我是新手,所以我不确定使用什么运算符作为 ~ unusable 。这是我当前的代码:
Select
translationid,
medium
from translation
where medium ~ '[^A-Za-z_]'
【问题讨论】:
Select
translationid,
medium
from translation
where not regexp_like(medium, '[^A-Za-z_]')
【讨论】: