更新数据 语法: update表名set字段1名字=字段1的值,字段2名字=字段2的值 where条件 更新所有数据 将所有人的成绩设置为100; update t_user set score=100; 根据条件更新 将学号是3的学生,成绩设为59; update t_user set score ...
分类:
其他好文 时间:
2021-04-21 12:06:39
阅读次数:
0
##引用完整性 学生表 Id 名字 性别 成绩表 Id 学生ID 成绩 Create table stu7( Id int primary key; Name varchar(50) ) Create table score( Id int primary key, Sid int, Score d ...
分类:
其他好文 时间:
2021-04-20 15:46:35
阅读次数:
0
You are the manager of a basketball team. For the upcoming tournament, you want to choose the team with the highest overall score. The score of the te ...
分类:
其他好文 时间:
2021-04-10 13:19:16
阅读次数:
0
package main import ( "encoding/json" "fmt" "io/ioutil" "os" ) type Student struct { ID int Age int Score int Name string } type Class struct { ID int ...
分类:
编程语言 时间:
2021-04-01 12:54:10
阅读次数:
0
SELECT s.id, s.name, max(case when g.kemu='语文' then score else 0 end) as 语文,max(case when g.kemu='数学' then score else 0 end) as 数学,max(case when g.kem ...
分类:
数据库 时间:
2021-03-15 10:37:49
阅读次数:
0
原题链接 考察:二分 思路: 首先这道题不是让我们求坐标,而是求具体的值.观察式子,当j不变时,i增大,值增大.分数满足单调性,j不变时,i也满足单调性.二分分数,枚举每一列有多少个满足分数<小于当前score,根据总数再继续二分score.在枚举每一列时,i也满足单调性,所以也用二分枚举i. 注意 ...
分类:
其他好文 时间:
2021-03-06 14:49:26
阅读次数:
0
练习71: 题目: 编写input()和output()函数输入,输出5个学生的数据记录。 程序: N = 5 # stu # num : string # name : string # score[4]: list student = [] for i in range(5): student. ...
分类:
编程语言 时间:
2021-03-06 14:13:52
阅读次数:
0
原题链接 考察:状压dp 思路: 考虑到计算三角形,我们需要知道落脚点i和前一个落脚点j,所以需要三维数组.根据状态转移方程f[i][j][k] = f[i-{j}][k][t]+score很容易求出最大的权值.但是比较难想到怎么计算路径数目(对本蒟蒻而言).方法是再声明一个记录当前路径最大值的方案 ...
分类:
其他好文 时间:
2021-02-17 14:41:52
阅读次数:
0
在set的基础上,增加了一个值,set k1 v1 zset k1 score v1 1.利用zadd 命令添加一个值 127.0.0.1:6379> zadd myset 1 one (integer) 1 2.利用zadd命令添加多个值 127.0.0.1:6379> zadd myset 2 ...
分类:
其他好文 时间:
2021-02-15 11:47:43
阅读次数:
0
1 查询每门课程成绩都大于80分学生的学号 数据库 表 student name score course A 85 语文 A 75 数学 A 82 英语 B 75 语文 B 89 数学 B 79 英语 天使美眉90 语文 天使美眉100 数学 天使美眉100 英语 请找出每门课程都超过80分的那个 ...
分类:
数据库 时间:
2021-02-01 12:52:51
阅读次数:
0