当前位置:首页 » 编程语言 » sql多列平均数
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

sql多列平均数

发布时间: 2023-08-08 05:30:06

㈠ 如何用sql语句在表中添加一行记录分别是上面各列的平均值

1.图片记录保存在一张表中,向此表中插入数据:

insertintotable
select'全部','女性','全区女生平均值',AVG(平均近视率),AVG(一年级),
AVG(一年级近视人数),AVG(一年级体验人数),......FROMTABLE

2.图片记录未保存(由数据查询得出),使用联合查询:

select*fromtable
union
select'全部','女性','全区女生平均值',AVG(平均近视率),AVG(一年级),
AVG(一年级近视人数),AVG(一年级体验人数),......FROMTABLE

㈡ 怎么求SQL多列的平均值

我正好也在做这个功能,可以不用avg,
(sum(writtenExam)+sum(labExam)/count(1)
我是这么做的,希望能帮到你。

㈢ sql中求多列平均数

select * from stu where (math+chinese+english)/3>60

㈣ SQL语句如何在多表中计算平均值

select avg(G) from SC inner join S ON SC.S#=S.S# where SD=‘网络公司’

㈤ sql 查询一行内几列的平均值,最大值,最小值,怎么写

oracle的话直接用greatest函数,sql server的话照这么写:
select t1.name, max(t1.a) maxnum,min(t1.a) minnum,avg(t1.a) avgnum from
(select name,num1 a from tb1
union all
select name,num2 a from tb1
union all
select name,num3 a from tb1
union all
select name,num4 a from tb1
union all
select name,num5 a from tb1
union all
select name,num6 a from tb1
union all
select name,num7 a from tb1) t1
group by t1.name;

测试数据:
create table tb1(name varchar(50),num1 int,num2 int,num3 int,num4 int,num5 int,num6 int,num7 int)
insert into tb1 select 'Tom',1,2,6,7,9,0,3
insert into tb1 select 'Jacky',7,6,5,4,3,2,1
结果:
name maxnum minnum avgnum
Jacky 7 1 4
Tom 9 0 4

㈥ 在SQL server中求同一个表中两个列的平均数

select col1,col2,avg(col1+col2) from tablename group by col1,col2

应该可以把。

㈦ 如何用SQL语句在表中添加一行记录分别是上面各列的平均值(或最大最小值)

平均值:
insert into table
select AVG(列1),AVG(列2),.... from table
最大值:
insert into table
select MAX(列1),MAX(列2),.... from table
最小值:
insert into table
select MIN(列1),MIN(列2),.... from table