Hello List!
I have a question on why my result sets aren't returning as I expect...
If I run:
I'm getting the results I expect: only results w/ 'myName' or 'yourName' in the usr_full_name column.
If I run:
Again, getting the results I expect: only results w/ 'myName' in the usr_full_name col and 'yourName' in AssignedTo column.
However...when I try to combine them:
My results are NOT what I expected...I'd expect to see ONLY the records w/ either 'myName' or 'yourName' in the usr_full_name col AND ONLY 'yourName' in the AssignedTo column. But, that's not what I'm getting...I'm getting results w/ either 'myName' or 'yourName' in the usr_full_name col and in the AssignedTo column, there are more than just 'yourName'. Not the same result set as the first query (which returned 112 rows) -- this one returns 21 less rows.
Any ideas/suggestions?
Thanks much!
-jiggyg
I have a question on why my result sets aren't returning as I expect...
If I run:
Code:
SELECT *
FROM [dbo].[ClientIssues](1,1)
WHERE usr_full_name = 'myName'
OR usr_full_name = 'yourName'
I'm getting the results I expect: only results w/ 'myName' or 'yourName' in the usr_full_name column.
If I run:
Code:
SELECT *
FROM [dbo].[ClientIssues](1,1)
WHERE usr_full_name = 'myName'
AND AssignedTo= 'yourName'
Again, getting the results I expect: only results w/ 'myName' in the usr_full_name col and 'yourName' in AssignedTo column.
However...when I try to combine them:
Code:
SELECT *
FROM [dbo].[ClientIssues](1,1)
WHERE usr_full_name = 'myName'
OR usr_full_name = 'yourName'
AND AssignedTo= 'yourName'
My results are NOT what I expected...I'd expect to see ONLY the records w/ either 'myName' or 'yourName' in the usr_full_name col AND ONLY 'yourName' in the AssignedTo column. But, that's not what I'm getting...I'm getting results w/ either 'myName' or 'yourName' in the usr_full_name col and in the AssignedTo column, there are more than just 'yourName'. Not the same result set as the first query (which returned 112 rows) -- this one returns 21 less rows.
Any ideas/suggestions?
Thanks much!
-jiggyg