sql中最大值
A. sql查询最大值
用如下语句可以查出各课程的最高分学号和科目号以及得分:
select sno,cno,degree from Score a where not exists
(select * from Score b where a.sno=b.sno and a.cno=b.cno and a.degree<b.degree)
B. SQL 最大值
select 班级,姓名,成绩.学号,课程名,max(成绩) as 班级最高分 from 成绩,学生 where 学生.学号=成绩.学号 and 班级='网络系统集成与智能化' and 课程名='C/C#' group by 班级,姓名,成绩.学号,课程名
最后可能出现错误的地方是你两个结果的学期长度可能不一样
你可以尝试把学期字段去掉,查一下,是否学期那有空格
--------------------------------------------------------------
select top 1 班级,姓名,成绩.学号,课程名,max(成绩) as 班级最高分 from 成绩,学生 where 学生.学号=成绩.学号 and 班级='网络系统集成与智能化' and 课程名='C/C#' group by 班级,姓名,成绩.学号,课程名 order by 班级最高分 desc
C. sql 查询最大值
select top 1 table_b.counta from
(select a, count(*) as counta from table group by a) as table_b
order by
table_b.counta desc
D. SQL 中取最大值
select
name,address,max(status)
from
表名
group
by
name
E. sql查询求最大值
select 学号,max(跳远成绩) from 表名
group by 学号
orader by 学号;
如答得好,望采纳。
F. SQL选择最大值
select
姓名,max(Score)
from
(
select 姓名,语文 Score from 成绩表
union
select 姓名,数学 from 成绩表
union
select 姓名,英语 from 成绩表
union
select 姓名,政治 from 成绩表
union
select 姓名,历史 from 成绩表
) a
group by
姓名
G. sql查询最大值
语法没问题
执行不出结果是什么意思?得到空值还是一直在执行不结束还是报错?
数据库是sqlserver还是access啊?
H. sql语句求最大值
select TOP 3 b.id,a.name,sum(b.grade) as sum_grade
from student_information a,grade_table b
where a.id = b.id
group by a.name,b.id
order by sum(b.grade)
I. 怎么实现SQL中取最大值
用group by分组语句即可:
select max(id), sAlmObjName ,iAlmStatus,sProbCause from 表名
group by sAlmObjName ,iAlmStatus,sProbCause
J. sql 语句 获取最大值
sql 语句获取一列中的最大值使用MAX() 函数
一、MAX() 函数返回指定列的最大值。
二、SQL MAX() 语法:
SELECT MAX(column_name) FROM table_name;
三、参数解释
column_name:列名
table_name:表名
(10)sql中最大值扩展阅读:
最小值语句
MIN() 函数
MIN() 函数返回指定列的最小值。
SQL MIN() 语法
SELECT MIN(column_name) FROM table_name;
参考资料:网络-SQL MAX