Redshift - 使用撇号过滤文本

Redshift - Filtering text with apostrophe

我正在尝试了解如何查询带有撇号的文本。

例如

select * from table where name = 'People's'

我正在尝试查询以过滤掉具有 name = People's

的行

在 Redshift 中,只需使用 2 个连续的 '

因此,在您的示例中使用

select * from table where name = 'People''s'