早教吧 育儿知识 作业答案 考试题库 百科 知识分享

SQL加减乘除,ptype表中有preprice1,recPrice列,想修改preprice1=recPrice列乘百分10再加50最好能四舍五入取整,如17.5变20,242.5变240,28变30

题目详情
SQL加减乘除,ptype表中有preprice1,recPrice列,想修改preprice1=recPrice列乘百分10再加50
最好能四舍五入取整,如17.5变20,242.5变240,28变30
▼优质解答
答案和解析
Update 表 Set preprice1= ROUND(recPrice*0.1+50,-1)