[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

06/12/2009 at 04:49AM PDT, ID: 24486295
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.6

How do I filter a select query?

Asked by Shepwedd in SQL Server 2005

Tags: sql, sql server 2005, tsql

I have written the attached select query. How can I alter it so my results only return the columns that do not contain the value '[email]'?

Thanks.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
Select Distinct iaaFirst.InterviewerEmail, iaaSecond.InterviewerEmail, iaaThird.InterviewerEmail,
      'This is a reminder that you have the below interview on ' + CONVERT(NVARCHAR(19), aai.InterviewDate, 103) + ':' + CHAR(13) + CHAR(13) + 'Vacancy Title: ' + vvd.Title + CHAR(13) + 'Job Level: ' + vjll.JobLevelDescription + CHAR(13) + 'Job Status: ' + vjsl.JobStatusDescription + CHAR(13) + 'Job Type: ' + vjtl.JobTypeDescription + CHAR(13) + 'Division: ' + vdl.DivisionDescription + CHAR(13) + 'Office: ' + vol.OfficeDescription + CHAR(13) + 'Closing Date: ' + CONVERT(NVARCHAR(10), vvd.ClosingDate, 103) + CHAR(13) + CHAR(13) + 'Applicant: ' + aad.Salutation + ' ' + aad.FirstName + ', ' + aad.LastName + CHAR(13) + 'Address: ' + aad.Address + CHAR(13) + 'Phone Number: ' + aad.Phone + CHAR(13) + 'Email Address: ' + aad.Email + CHAR(13) + CHAR(13) + 'First Interviewer: ' + iaaFirst.Salutation + ' ' + iaaFirst.InterviewerFirstName + ', ' + iaaFirst.InterviewerLastName + '(Email: mailto:' + iaaFirst.InterviewerEmail + ' ' + 'Phone: ' + iaaFirst.InterviewerPhone + ')' + CHAR(13) + 'Second Interviewer: ' + iaaSecond.Salutation + ' ' + iaaSecond.InterviewerFirstName + ', ' + iaaSecond.InterviewerLastName + '(Email: mailto:' + iaaSecond.InterviewerEmail + ' ' + 'Phone: ' + iaaSecond.InterviewerPhone + ')' + CHAR(13) + 'Third Interviewer: ' + iaaThird.Salutation + ' ' + iaaThird.InterviewerFirstName + ', ' + iaaThird.InterviewerLastName + '(Email: mailto:' + iaaThird.InterviewerEmail + ' ' + 'Phone: ' + iaaThird.InterviewerPhone + ')'
From Applicant.ApplicantDetails aad 
INNER JOIN Applicant.ApplicantInterviews aai ON aad.ApplicantID = aai.ApplicantID 
INNER JOIN Applicant.ApplicantInterviewers iaaFirst ON aai.FirstInterviewer = iaaFirst.InterviewerID
INNER JOIN Applicant.ApplicantInterviewers iaaSecond ON aai.SecondInterviewer = iaaSecond.InterviewerID
INNER JOIN Applicant.ApplicantInterviewers iaaThird ON aai.ThirdInterviewer = iaaThird.InterviewerID
INNER JOIN Vacancy.VacancyDetails vvd ON aad.VacancyID = vvd.VacancyID 
INNER JOIN Vacancy.JobLevelLookups vjll ON vvd.JobLevelCode = vjll.JobLevelCode
INNER JOIN Vacancy.JobStatusLookups vjsl ON vvd.JobStatusCode = vjsl.JobStatusCode
INNER JOIN Vacancy.JobTypeLookups vjtl ON vvd.JobTypeCode = vjtl.JobTypeCode
INNER JOIN Vacancy.DivisionLookups vdl ON vvd.DivisionCode = vdl.DivisionCode
INNER JOIN Vacancy.OfficeLookups vol ON vvd.OfficeCode = vol.OfficeCode
[+][-]06/12/09 05:01 AM, ID: 24611239

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/12/09 06:08 AM, ID: 24611785

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/12/09 06:14 AM, ID: 24611843

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/12/09 06:20 AM, ID: 24611902

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/12/09 06:32 AM, ID: 24612037

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/12/09 06:54 AM, ID: 24612275

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/12/09 07:03 AM, ID: 24612377

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: SQL Server 2005
Tags: sql, sql server 2005, tsql
Sign Up Now!
Solution Provided By: chapmandew
Participating Experts: 1
Solution Grade: B
 
 
[+][-]06/12/09 07:22 AM, ID: 24612595

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/15/09 02:10 AM, ID: 24627137

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-91 - Hierarchy / EE_QW_3_20080625