在MySQL中基于表值添加整数的有效方法?
您需要使用GROUPBY子句。让我们首先创建一个-
mysql> create table DemoTable1443 -> ( -> StudentId int, -> StudentScore int -> );
使用insert在表中插入一些记录-
mysql> insert into DemoTable1443 values(100,78); mysql> insert into DemoTable1443 values(101,89); mysql> insert into DemoTable1443 values(100,88); mysql> insert into DemoTable1443 values(101,97);
使用选择显示表中的所有记录-
mysql> select * from DemoTable1443;
这将产生以下输出-
+-----------+--------------+ | StudentId | StudentScore | +-----------+--------------+ | 100 | 78 | | 101 | 89 | | 100 | 88 | | 101 | 97 | +-----------+--------------+ 4 rows in set (0.00 sec)
以下是基于表值添加整数的查询-
mysql> select StudentId,sum(StudentScore) from DemoTable1443 -> group by StudentId;
这将产生以下输出-
+-----------+-------------------+ | StudentId | sum(StudentScore) | +-----------+-------------------+ | 100 | 166 | | 101 | 186 | +-----------+-------------------+ 2 rows in set (0.00 sec)
热门推荐
10 朋友弟弟生日祝福语简短
11 道教生日祝福语简短大全
12 盛夏的温馨祝福语简短
13 祝福语勤奋大全简短英语
14 保持快乐祝福语大全简短
15 庆祝国家的祝福语简短
16 年底拜年祝福语大全简短
17 姥爷生日祝福语简短精辟
18 结婚祝福语亲姐姐简短