Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PostgreSQL にテーブルがあり、列に#,$,^,&,*,@,!などの特殊文字が含まれているか、空であるかを検出する必要があります。
#,$,^,&,*,@,!
たとえば、テーブルは次のようになります
このようなクエリをどのように記述しますか?
最後に私は解決策を得ました
select * from table where column1 ~* '[^a-z0-9]' or column2 ~* '[^a-z0-9]' or column3 ~* '[^a-z0-9]'