Ai
74 Star 703 Fork 309

郑州微厦/AI培训学习-题库-考试-视频-直播

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
2024-08-19.sql 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
宋_微厦科技 提交于 2024-08-19 16:13 +08:00 . 编写SQL脚本
/* 学习记录中的综合成绩 */
--SQLserver脚本
alter table "Student_Course" add "Stc_ResultScore" float NULL
go
update "Student_Course" set "Stc_ResultScore"=0 where "Stc_ResultScore" is null
go
alter table "Student_Course" ALTER COLUMN "Stc_ResultScore" float NOT NULL
go
--PostgreSQL脚本
alter table "Student_Course" add "Stc_ResultScore" real NULL;
update "Student_Course" set "Stc_ResultScore"=0;
alter table "Student_Course" ALTER COLUMN "Stc_ResultScore" set NOT NULL;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/weishakeji/LearningSystem.git
git@gitee.com:weishakeji/LearningSystem.git
weishakeji
LearningSystem
AI培训学习-题库-考试-视频-直播
master

搜索帮助