SQL Conversion national characters to ASCII without spaces

Conversion national characters to ASCII with out spaces in Oracle 11g+ SELECT REPLACE (REPLACE (CONVERT (LOCATION_CITY_PL, 'US7ASCII'), ' ', ''), '-', '') FROM CITIES;    

Conversion national characters to ASCII with out spaces in Oracle 11g+ SELECT REPLACE (REPLACE (CONVERT (LOCATION_CITY_PL, 'US7ASCII'), ' ', ''), '-', '') FROM CITIES;    

Conversion national characters to ASCII with out spaces in Oracle 11g+

SELECT REPLACE (REPLACE (CONVERT (LOCATION_CITY_PL, 'US7ASCII'), ' ', ''), '-', '') 
FROM CITIES;

 

 

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments