本文介绍了请帮助我确定输入的薪水是否在定义的范围内的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有Table(BasicSalaryDefine),其中定义了2个字段,即FromAmount和ToAmount ...
在另一个表(CorporateTitle)中有薪金字段...
我要检查输入的薪水(在CorporateTitle中)是否在Range之间
如果在范围内,则保存,否则不保存
请帮助我
I hav Table(BasicSalaryDefine) where 2 fields i.e FromAmount And ToAmount is defined...
and in another table(CorporateTitle) there is Salary field...
Ihav to chek the entered salary(in CorporateTitle) is between the RAnge or not
if it is in range then save otherwise not to save
plz guyz help me
推荐答案
if(sal<=maxSal && sal>=minSal)
{
//save sal in DataBase
}
else
{
//Generate an error
}
这样就完成了!
And you''re done!
这篇关于请帮助我确定输入的薪水是否在定义的范围内的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!