What is the shortest Pgsql query to get all records that contain a line-break in a given column ?
Advertisement
Answer
You can try something like this
select * from table_name where column_name ~ 'n';
What is the shortest Pgsql query to get all records that contain a line-break in a given column ?
You can try something like this
select * from table_name where column_name ~ 'n';