help with conversion
am using the following two queries in my program
SELECT COUNT (ballNo)/6 AS 'over' from CRICINFOMATCHSTATISTICTABLE where bowlerId='10'
SELECT COUNT(ballNo)%6 AS 'over' from CRICINFOMATCHSTATISTICTABLE where bowlerId='10'
from first query i get the value in 'over' column as '1' and in second query i get the value in 'over' column as '3'
how can i concatenate both the values so that i can get the result as 1.3
i want to convert the second value to decimal,ie .3

