gpt4 book ai didi

sql - Ms access SQL更新

转载 作者:行者123 更新时间:2023-12-04 05:33:06 24 4
gpt4 key购买 nike

大家好,我对 SQL 很陌生,我有以下问题。
我有一张表,两列名为 student_TypeFees .我需要更新 Fees值为 5000 和 10000 的列,其中 student_Type = HomeStudent 和 Student_Type = Overseas。我尝试了以下

UPDATE Student_Types
SET Fees= 5000,Fees=10000
WHERE Student_Type = 'HomeStudent' and 'Oversea';

我收到重复错误,因为我已经设置了两次相同的列。我怎样才能解决这个问题

最佳答案

一种方式

UPDATE Student_Types
SET Fees= IIF(Student_Type = 'HomeStudent', 5000, 10000)
WHERE Student_Type IN ('HomeStudent','Oversea');

关于sql - Ms access SQL更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12341580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com