Hai,
I used a table for generating grade for students. for thati used the fields:
UpperBound[int]
LowerBound[int]
Grade [varchar(50)]
I have some datas such as :
UpperBound LowerBound Grade
61 70 D
71 80 C
81 90 B
I sent the value 80.09 to Stored procedure.
Stored procedure something like this:
select * from SCH_Grade_Master where SCH_Grade_Master.Lbound<=80.09 and SCH_Grade_Master.Ubound>=80.09
But no result get for values like 80.09, 70.08 etc
but get results for 81.02 79.00 etc
Can u help me to solve this.
Thanks in advance,
Sreevidya