如何写一条将每门课程的学分都加1分的SQL语句

2025-02-24 21:36:23
推荐回答(2个)
回答1:

只需要在原值得基础上+1即可:

update table set fenshu=fenshu+1

回答2:

update table set 学分=学分+1