Skip to content
Advertisement

Extract a specific value from a string in a column

Need help with a situation, I need to extract a specific value from a column containing string. The string varies over different records, but the value I need to extract is always preceded by the word “VERSION”

I tried to user REVERSE & SUBSTRING but not able to get exact results. Any help will be greatly appreciated

the table looks like this

Table Sample

Here’s my attempt to solve the problem

And I want my results to look like

Advertisement

Answer

Here is one way to do it.

This assumes that version is always preceeded by a space, then followed by a space, then by the version number, then by a comma.

The following expression gives you the starting position of the version number (9 is just the length of string version plus the surrounding spaces):

Then, you can compute the position of the next comma after that position, which signals the end of the version number:

Both information can now be used with SUBSTRING:

Demo on DB Fiddle:

user_agnt_str                                                                    | version
:------------------------------------------------------------------------------- | :------
{'HTTP_USER_AGENT':'MOBILE/4.2.95 version 2.3.1 build 95 (iPhone 65;Apple ...)'} | 2.3.1  
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement