vote up 1 vote down star

Could any one show me how to get record from this statement

  • Select random employee which is not an employee of the month in the last x months

Table Employee
ID
EmployeeName

Table EmployeeOfTheMonth
ID
EmployeeID
MonthStartedDate
MonthEndedDate

Thank you very much

flag
See petefreitag.com/item/466.cfm on Selecting a random row. – Nathan May 7 at 2:14
Using Linq? (based on your tag) – Keltex May 7 at 2:44
3  
Employee of the month is RANDOM at your company??? lol – Chad Grant May 7 at 2:48
@Deviant lol , should keep everyone happy ;) – Rick J May 7 at 3:03
smells a little homeworky – annakata May 8 at 10:27

2 Answers

vote up 0 vote down

Modification of last answer, i prefer to use IN statment


DECLARE @xMonth INT
SET @xMonth = 3

SELECT TOP 1 ID FROM Employee WHERE ID NOT IN (SELECT EmployeeID FROM EmployeeOfTheMonth WHERE DATEADD(m, -@xMonth, GETDATE()) < MonthEndedDate) ORDER BY NEWID()

link|flag
vote up 2 vote down
select top 1 id from employee as emp 
where not exist(
    select top 1 * 
      from employeeofthemonth as em 
      where em.id = emp.id and dateadd(m, -6, getdate()) < monthendeddt )
order by newid()

... or something close to that. i didn't run the sql, but on mssql server, this should be about right.

link|flag
Seems like he wanted something in Linq. – Keltex May 7 at 2:44
What are the performance implications of this query? Looks as if it could become a bit of a bottleneck as the number of records increase. – blparker Aug 21 at 19:16

Your Answer

Get an OpenID
or

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