79202232

Date: 2024-11-19 06:07:43
Score: 0.5
Natty:
Report link

you can check if a column not contains English letters to identify non English data, and then you can join keys of these data to your full data to filter out non English data and accept all English-only data (this will enable symbols and numbers too)

WHERE REGEXP_CONTAINS(column, r'[A-z].*') = false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: riki