如何从Postgres中的列中删除不间断的空格

时间:2018-06-14 15:38:09

标签: postgresql trim non-breaking-characters

尝试从字段中删除不间断的空间而没有任何成功。我试过了

execute <<-SQL
  UPDATE customers
  SET name = TRIM (name)
SQL

但这只删除空格。它与this的问题类似,但我需要Postgres(Postgres抱怨syntax error at or near "x00A0")并且我只需要修剪,即它只需要在文本的开头和结尾删除

由于

1 个答案:

答案 0 :(得分:3)

您可以将角色作为select * from Table where Id in ( Select Id from (select Name, Max(Id) as Id from Table Group By Name) ) 的第二个参数传递:

trim()