I need to create a table like this..
claim amount court fee
exceed 300 15
301-500 30
501-1000 55
and so on..
I tried it my claim amount was nvarchar and court fee was float i get an error converting nvarchar to numeric.
When I try this query on select * from table where claim amount <=250 it displays all the rows. I am confused with what datatype should be used for claim amount and how can I be specific when retreiving the query like <=275...