Hello All,
Below is the SQL for getting the President Name when (Rank is 700)
But also I want:
1. If there is no President then get the Secretary Name(Rank is 710)
2. If there is no Secretary then get the Treasure Name (Rank is 720)
And ctm1.Member is of nvarchar datatype & ctm.rank is of int datatype.
I am using SQL Server 2000.
Please anybody let me know how to accomplish this.
--- ======================
SELECT DISTINCT ctm1.ID, a.*,ctm1.Member
FROM
(SELECT DISTINCT ctm.CommitteeTermID,
MAX(CTM.ENDDATE) AS MaxYear
FROM mms.dbo.vwcommitteetermmembers ctm
WHERE ctm.rank = 700 --700 Denotes President
AND YEAR(CTM.ENDDATE) =
CASE
WHEN MONTH(GETDATE()) IN (1,2,3,4,5,6) THEN YEAR(GETDATE())
ELSE YEAR(GETDATE())+1
END
GROUP BY ctm.CommitteeTermID) a
INNER JOIN mms.dbo.vwcommitteetermmembers ctm1 ON
ctm1.committeetermid = a.committeetermid
AND ctm1.enddate = a.maxyear
WHERE CTM1.Rank = 700
ORDER BY a.CommitteeTermID ASC
---- =====================
Thank You
Below is the SQL for getting the President Name when (Rank is 700)
But also I want:
1. If there is no President then get the Secretary Name(Rank is 710)
2. If there is no Secretary then get the Treasure Name (Rank is 720)
And ctm1.Member is of nvarchar datatype & ctm.rank is of int datatype.
I am using SQL Server 2000.
Please anybody let me know how to accomplish this.
--- ======================
SELECT DISTINCT ctm1.ID, a.*,ctm1.Member
FROM
(SELECT DISTINCT ctm.CommitteeTermID,
MAX(CTM.ENDDATE) AS MaxYear
FROM mms.dbo.vwcommitteetermmembers ctm
WHERE ctm.rank = 700 --700 Denotes President
AND YEAR(CTM.ENDDATE) =
CASE
WHEN MONTH(GETDATE()) IN (1,2,3,4,5,6) THEN YEAR(GETDATE())
ELSE YEAR(GETDATE())+1
END
GROUP BY ctm.CommitteeTermID) a
INNER JOIN mms.dbo.vwcommitteetermmembers ctm1 ON
ctm1.committeetermid = a.committeetermid
AND ctm1.enddate = a.maxyear
WHERE CTM1.Rank = 700
ORDER BY a.CommitteeTermID ASC
---- =====================
Thank You