Skip to content
Advertisement

MySQL trim or get specific set of string using substring locate

I have a column named cea_no from my table. But I want only specific string from it. I already tried several methods but it it wont work for me. Do you have any idea how could I achieve this?

Here is my query

The result

I only want the R017722B part. Removing the "CEA: , the second set of strings after the /part of the string. How can I do that? Thanks a lot. Im using MySQL xampp.

Advertisement

Answer

I would use SUBSTRING_INDEX here:

To see how this trick works, consider a cea_no value of CEA: R017722B / L3009740K. The first call to SUBSTRING_INDEX returns R017722B / L3009740K, and the second call returns R017722B.

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