5

I'm using below query to split the names as shown below:

select value from STRING_SPLIT('Name1~Name2~Name3' , '~' );

How to get second name i.e, Name2, without using WHERE condition?

Note: Names can be dynamic

enter image description here

Santosh Jadi
  • 1,401
  • 6
  • 28
  • 52

3 Answers3

11

Instead of using STRING_SPLIT you can convert your string to XML and then use .value to retrieve the 2nd element:

SELECT CAST('<t>' + REPLACE('Name1~Name2~Name3' , '~','</t><t>') + '</t>' AS XML).value('/t[2]','varchar(50)')
Andrea
  • 11,073
  • 17
  • 60
  • 64
11

Try PARSENAME function

SELECT PARSENAME( REPLACE('Name1~Name2~Name3','~','.'),2)

output

Name2

PARSENAME Returns the specified part of an object name. The parts of an object that can be retrieved are the object name, owner name, database name, and server name.

Ravi Makwana
  • 2,333
  • 1
  • 25
  • 38
Chanukya
  • 5,685
  • 1
  • 18
  • 35
2

Try below code:

SELECT TOP 1 T.* FROM 
(SELECT TOP 2 * FROM STRING_SPLIT('Name1~Name2~Name3' , '~' ) ORDER BY value ASC) AS T
ORDER BY value DESC;