Skip to content
Advertisement

Remove text after a codeword

I have a list of company names that have been sent with their added company numbers. How can I remove these company numbers (of different length) in SQL? “Limited” if in the name needs to be called “LTD”.

For example:

and I need

The change from “Limited” to “LTD” I can do with a case when clause But how do I remove everything from – FSP pr FSP?

I tried a piece of code I found in two different pages, but it renders empty cells. Can I not use ‘%’ to get rid of the various lengths of numbers? I left the -x prior to the last bracket out as I don’t know the length or number of digits. How do I deal with the fact that I sometimes have FSP and sometimes – FSP

Advertisement

Answer

You can use patindex() for more flexibility. However, you really need to check for different possibilities:

It can also be done with charindex(), but that doesn’t give the flexibility to look for a number after the FSP:

Here is a db<>fiddle.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement