By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
create table tbl(
id int,
name varchar(50)
);
insert into tbl values
(1, '10.0/75-15.3 123А3 10РR'),
(2, '10.0/75-15.3 123А3 11РR');
select * from tbl;
id | name |
---|---|
1 | 10.0/75-15.3 123А3 10РR |
2 | 10.0/75-15.3 123А3 11РR |
SELECT *
FROM tbl
WHERE replace(replace(replace(replace(name, '.', ''), '/', ''), '-', ''), ' ', '') = '10075153123А310РR';
id | name |
---|---|
1 | 10.0/75-15.3 123А3 10РR |
SELECT *
FROM tbl
WHERE REGEXP_REPLACE(name, '[.\/-[:space:]]', '') = '10075153123А310РR';
id | name |
---|---|
1 | 10.0/75-15.3 123А3 10РR |