In a table schema like below

CREATE TABLE [dbo].[Employee](
    [EmployeeId] [uniqueidentifier] NOT NULL,
    [Name] [nvarchar](50) NOT NULL,
    [Location] [nvarchar](50) NOT NULL,
    [Skills] [xml] NOT NULL
 CONSTRAINT [PK_Employee] PRIMARY KEY CLUSTERED 
  • How would i get Employees having C#(case insensitive) programming skills assuming the xml saved in the Skills columns is as below.

  • Could you advice on other functions would help me filter, sort when using xml data type columns

<Skills><Skill>C#</Skill><Skill>ASP.NET</Skill><Skill>VB.NET</Skill></Skills>

link|improve this question

79% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The comparison is case sensitive so you need to compare against both c# and C#. In SQL Server 2008 you can use upper-case.

declare @T table
(
  ID int identity,
  Skills XML
)

insert into @T values
('<Skills><Skill>C#</Skill><Skill>ASP.NET</Skill><Skill>VB.NET</Skill></Skills>')
insert into @T values
('<Skills><Skill>CB.NET</Skill><Skill>ASP.NET</Skill><Skill>c#</Skill></Skills>')
insert into @T values
('<Skills><Skill>F#</Skill><Skill>ASP.NET</Skill><Skill>VB.NET</Skill></Skills>')

select ID
from @T
where Skills.exist('/Skills/Skill[contains(., "C#") or contains(., "c#")]') = 1

Result:

ID
-----------
1
2

Update:

This will also work.

select T.ID
from @T as T
  cross apply T.Skills.nodes('/Skills/Skill') as X(N)
where X.N.value('.', 'nvarchar(50)') like '%C#%'
link|improve this answer
is the comparison case sensitive by default?,is it possible to use contains function in where clause? – Deeptechtons Jan 5 at 10:45
@Deeptechtons - Yes, it is case sensitive by default and you can use contains like this. '/Skills/Skill[contains(upper-case(.), "C#")]' – Mikael Eriksson Jan 5 at 10:53
like this? select * from Employee where Skills.query('/Skills/Skill[contains(upper-case(.), "C#")]') weird i also get error There is no function '{http://www.w3.org/2004/07/xpath-functions}:upper-case()' – Deeptechtons Jan 5 at 10:59
@Deeptechtons Close. Use exist instead of query just as in the query in the answer. – Mikael Eriksson Jan 5 at 11:00
1  
select * from employee where skills.exist('/Skills/Skill[contains(., "C#")]') = 1 – Mikael Eriksson Jan 5 at 11:16
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.