cancel
Showing results for 
Search instead for 
Did you mean: 

SQL QUERY (SELECT Characters)

mari_outtaleb
Participant
0 Kudos
847

Hello,

HOW I CAN ELIMINATE THE SYMBOLS AND KEEP ONLY THE NUMBERS AND LETTERS IN THE RESULT OF MY QUERY SQL?

FOR EXAMPLE example :

From : ML TUBE INOX 316L Ø 27X3MM""

To : ML TUBE INOX 316L 27X3MM

Any ideas?

Regards.

View Entire Topic
clas_hortien
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello,

this can be done with the replace function like so:

select replace('ML TUBE INOX 316L Ø 27X3MM""','Ø','')

This has to be done for each symbol you want to replace.

Regards

Clas