如何在 table 中查找拉丁字符?

How to find Latin characters in a table?

我有一个 table,它在 oracle 中有名字和姓氏

有些名字里面有拉丁字符。我写了一个查询来找出它们,但没有显示任何结果。请看我说的对不对

select first_name, second_name from customer_table where 
length(asciistr(first_name))!=length(first_name) 

请指教

更新:

我的数据已损坏,现在相同的查询有效。

我还有另一个问题

在数据库中保存时,有什么方法可以将 Latin E 保存为 Ascii e 吗?

Oracle 有一个用于此目的的实用程序。 csscan.

documentation