Odpowiedź
SELECT a.surveyid,* FROM [360HRSurvey] inner join ( SELECT a.EmpCode,a.surveyid FROM surveyusers a where a.surveyid = 80 and a.EmpCode NOT IN (SELECT p.EmpID FROM empsurveyselection p WHERE p.surveyid =80)) a on a.EmpCode=sempid where empid = ( SELECT empid from [360HRSurveyEmployee] where surveyid = 80)
Komentarze
Odpowiedź
Musisz użyć surveyid
, a nie a.surveyid
. Ponieważ surveyusers as a
deklarujemy w sub-query
, więc nie można uzyskać dostępu do a.surveyid
w głównym zapytaniu.
Komentarze
Odpowiedź
Przyczyna błędu została wyjaśniona w odpowiedź Jaimina Soniego .
Ponieważ chcesz uwzględnić surveyid
w wyniku, a nie jest to atrybut elementu [360HRSurvey]
table, możesz po prostu użyć SELECT 80 AS surveyid, * ...
dla tego konkretnego zapytania. Jeśli surveyid
nie jest naprawiono jednak – w bardziej złożonym zapytaniu – możesz dołączyć do tabeli, która ma ten atrybut. Zakładając, że ta tabela to surveyusers
i że istnieje FOREIGN KEY
z [360HRSurvey] (sempid)
tego REFERENCES surveyusers(EmpCode)
, zapytanie można przepisać:
SELECT a.surveyid, hrs.* FROM [360HRSurvey] AS hrs JOIN surveyusers AS a ON a.EmpCode = hrs.sempid WHERE a.surveyid = 80 -- this condition can be altered or removed AND a.EmpCode NOT IN ( SELECT p.EmpID FROM empsurveyselection p WHERE p.surveyid = a.surveyid ) AND a.empid = ( -- unclear if it"s a.empid or hrs.empid SELECT hrsemp.empid FROM [360HRSurveyEmployee] AS hrsemp WHERE hrsemp.surveyid = a.surveyid ) ;
Odpowiedź
SELECT su.surveyid,b.* FROM surveyusers SU RIGHT JOIN (SELECT * FROM [360HRSurvey] where sempid NOT IN ( SELECT a.EmpCode FROM surveyusers a where a.EmpCode IN (SELECT p.EmpID FROM empsurveyselection p where deptid = 9 ) and empid IN ( SELECT empid from [360HRSurveyEmployee] ))) B ON su.EmpCode = b.sempid Order by surveyid desc
Naprawiono to myslelf
Komentarze