标签: amazon-redshift apostrophe
我正在尝试看看如何查询带有撇号的文本。
例如
select * from table where name = 'People's'
我正在尝试查询以过滤出具有name = People's的行
name = People's
答案 0 :(得分:1)
在Redshift中,只需使用两个连续的'
所以,在您的示例中使用
select * from table where name = 'People''s'