大家好,我对 SQL 很陌生,我有以下问题。我有一张表,其中有两列名为student_Type
和Fees
。我需要Fees
使用值 5000 和 10000 更新列,其中 student_Type 为 = HomeStudent,Student_Type 为 = Overseas。我尝试了以下
UPDATE Student_Types
SET Fees= 5000,Fees=10000
WHERE Student_Type = 'HomeStudent' and 'Oversea';
我收到重复错误,因为我已经设置了两次相同的列。我怎样才能解决这个问题