up vote 3 down vote favorite
share [g+] share [fb]

Our application allows administrators to add “User Properties” in order for them to be able to tailor the system to match their own HR systems. For example, if your company has departments, you can define “Departments” in the Properties table and then add values that correspond to “Departments” such as “Jewelry”, “Electronics” etc… You are then able to assign a department to users.

Here is the schema: Schema

In this schema, a User can have only one UserPropertyValue per Property, but doesn’t have to have a value for the property.

I am trying to build a query that will be used in SSRS 2005 and also have it use the PropertyValues as the filter for users. My query looks like this:

SELECT UserLogin, FirstName, LastName
FROM Users U
LEFT OUTER JOIN UserPropertyValues UPV
    ON U.ID = UPV.UserID
WHERE UPV.PropertyValueID IN (1, 5)

When I run this, if the user has ANY of the property values, they are returned. What I would like to have is where this query will return users that have values BY PROPERTY.

So if PropertyValueID = 1 is of Department (Jewelry), and PropertyValueID = 5 is of EmploymentType (Full Time), I want to return all users that are in Department Jewelry that are EmployeeType of Full Time, can this be done?


Here's a full data example:

  • User A has Department(Jewelry value = 1) and EmploymentType(FullTime value = 5)
  • User B has Department(Electronics value = 2) and EmploymentType(FullTime value = 5)
  • User C has Department(Jewelry value = 1) and EmployementType(PartTime value = 6)

My query should only return User A using the above query

UPDATE:

I should state that this query is used as a dataset in SSRS, so the parameter passed to the query will be @PropertyIDs and it is defined as a multi-value parameter in SSRS.

WHERE UPV.PropertyValueID IN (@PropertyIDs)

link|improve this question

1  
A Name-Value pair design is pretty cool to look at at first, but is not a good design. If it is early enough in the game for you, you should move away from Name-Value to actual columns. – Raj More Apr 15 '10 at 17:45
It's really not a name/value pair, but IDs that are keyed. Each Department is defined with an ID and name in the Property Table, and you add values based on the Property ID for Department. This is normalized data. What is not good design about it? – Steve Wright Apr 15 '10 at 17:59
feedback

4 Answers

up vote 1 down vote accepted

I figured out how to get this working in a completely hacky fashion:

SELECT UserLogin, FirstName, LastName
FROM Users
LEFT OUTER JOIN 
(
    SELECT UserID
    FROM UserPropertyValues 
    WHERE PropertyValueID IN (@PropertyIDs)
    GROUP BY UserID
    HAVING COUNT(UserID) = 
        (
            SELECT COUNT(*) FROM 
            (
            SELECT PropertyID FROM PropertyValues 
            WHERE ID IN (@PropertyIDs) GROUP BY PropertyID
            ) p
        )   
) filtered on Users.UserID = filtered.UserID

Because we can determine the number of properties used in the parameter @PropertyIDs (returned by the select count(*)), we can make sure that the users returned from the query has the same number of properties as what was passed in @PropertyIDs.

link|improve this answer
That's a good solution. If @PropertyIDs is a table variable you may need something like "IN (SELECT p.ID FROM @PropertyIDs p)". And you may want to change that LEFT OUTER JOIN into an INNER JOIN. – Anthony Faull Apr 16 '10 at 10:56
In this case, @PropertyIDs corresponds to a multi-value parameter in SSRS 2005. The LEFT JOIN was left in on accident because this filter could be null in my full query. – Steve Wright Apr 16 '10 at 13:50
feedback
SELECT UserLogin, FirstName, LastName 
FROM Users 
where UserID in ( 
    select UserID
    from UserPropertyValues upv1
    inner join UserPropertyValues upv2 on upv1.UserID = upv2.UserID 
        and upv1.PropertyValueID = 1 and upv2.PropertyValueID = 5
) a
link|improve this answer
Clarified the post so that the query can be based on parameters passed to it. – Steve Wright Apr 15 '10 at 17:45
feedback

You need to join to the key_value store individually for each property you want to get (2 properties, 2 joins, 100 properties, 100 joins), This is why it is a poor design choice for performance.

link|improve this answer
How else would I be able to design it so users can add their own properties? – Steve Wright Apr 15 '10 at 18:01
First do a good job of defining what people will need so they don't need to add many properties. It is better to have fields with null values becasue someone doesn't need them than a key-value store. You can also give each client a set number of custom fields they can define themselves in a related table. So customfield1 means districts to client1 and regions to client2. There is no way to allow clients to add as many fields as they want and have decent performance, flexibilty is the opposite of performance you can have one or the other, not both. Most clients strongly prefer performance. – HLGEM Apr 15 '10 at 18:40
Ran out of room. In my experience most clients prefer performance over flexibility. Flexibility almost always has a huge performance cost and frankly customers tend to hate customizing and then trying to make things work for things the orginal designers should have put there anyway as most people would want them. – HLGEM Apr 15 '10 at 18:43
unfortunately, the design is already in place and I am building a report to fit what it already does - I would probably have done this, but this is a multi-tenant app and it used my multiple customers who utilize these fields in different ways. I see your point on performance. – Steve Wright Apr 15 '10 at 19:26
feedback

Expanding on OrbMan's answer. This is going to give you one row per user/property.

SELECT U.UserLogin, U.FirstName, U.LastName, P.Name AS PropertyName, PV.Name AS PropertyValue
FROM Users U
INNER JOIN UserPropertyValues UPV
ON U.ID = UPV.UserID
INNER JOIN Properties P
ON UPV.PropertyID = P.ID
INNER JOIN PropertyValues PV
ON UPV.PropertyID = PV.ID
where UserID in ( 
    select UserID
    from UserPropertyValues upv1
    inner join UserPropertyValues upv2 on upv1.UserID = upv2.UserID 
        and upv1.PropertyValueID IN (@PropertyIDs))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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