|
发表于 2006-10-9 22:07:31
|
显示全部楼层
- select
- (select
- count(*) / (select count(*) from tabl_student)
- from tabl_student where SCORE >= 90) as a1,
- (select
- count(*) / (select count(*) from tabl_student)
- from tabl_student where SCORE < 90 and SCORE > 60) as a2;
复制代码 在5.0下通过. |
|