openGauss-basic-operation/3.sql

6 lines
195 B
SQL

--请在此编写sql语句
-- 更新表
UPDATE student SET mathsc=mathsc+5 WHERE level=0;
UPDATE student SET engsc=engsc+5 WHERE level=0;
DELETE FROM student WHERE name='lily';
-- 删除数据