请告诉我如何应用此查询。
我想在first position中设置remarks,其中studentsgpa是最高的。
我试过以下方法:

update mcs1
set remarks = "First position"
where sgpa = top 1
order by sgpa asc

最佳答案

如果我明白你的问题:

UPDATE mcs1
SET remarks = 'First position'
ORDER BY sgpa DESC
LIMIT 1

remarks设置为最高sgpa

07-24 22:22