从表格中将特定学生的成绩分组,并在每个学生的单独列中显示总成绩?
要对标记进行分组,请使用MySQLGROUPBY。总而言之,请使用MySQLsum()函数。让我们首先创建一个表-
mysql> create table DemoTable1920 ( StudentName varchar(20), StudentMarks int );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable1920 values('Chris',67);
mysql> insert into DemoTable1920 values('David',97);
mysql> insert into DemoTable1920 values('Chris',57);
mysql> insert into DemoTable1920 values('David',45);
mysql> insert into DemoTable1920 values('Chris',89);使用select语句显示表中的所有记录-
mysql> select * from DemoTable1920;
这将产生以下输出-
+-------------+--------------+ | StudentName | StudentMarks | +-------------+--------------+ | Chris | 67 | | David | 97 | | Chris | 57 | | David | 45 | | Chris | 89 | +-------------+--------------+ 5 rows in set (0.00 sec)
这是将特定学生的分数分组的查询-
mysql> select StudentName,SUM(StudentMarks) as TotalMarks from DemoTable1920
group by StudentName;这将产生以下输出-
+-------------+------------+ | StudentName | TotalMarks | +-------------+------------+ | Chris | 213 | | David | 142 | +-------------+------------+ 2 rows in set (0.00 sec)
热门推荐
10 诗词送行祝福语大全简短
11 新房开工吉日祝福语简短
12 50多岁生日简短祝福语
13 安徽疫情祝福语简短英语
14 农民朋友发财祝福语简短
15 对生活祝福语简短精辟
16 搬家词简短祝福语朋友
17 女神结婚快乐祝福语简短
18 文学短句祝福语大全简短