laailalalaa
Registered User.
- Local time
- Today, 08:58
- Joined
- Jan 5, 2010
- Messages
- 10
i have table Students(Name, Grade). i want to display records like
[studentname, "yes"] if a student has only grades > 8. i tried to accomplish this using iif function like this
select Student, iif(Grade>8, "yes", "no") As Expr
from Students
group by Student, Expr
which obviously doesn't work.
any ideas on how to proceed?
thanks
[studentname, "yes"] if a student has only grades > 8. i tried to accomplish this using iif function like this
select Student, iif(Grade>8, "yes", "no") As Expr
from Students
group by Student, Expr
which obviously doesn't work.
any ideas on how to proceed?
thanks