al Find the difference of the following floating point numbers
0.39 *10³ from 0.4925*10³
Answers
Answered by
1
Step-by-step explanation:
mysql> create table numbers (a decimal(10,2), b float);
mysql> insert into numbers values (100, 100);
mysql> select @a := (a/3), @b := (b/3), @a * 3, @b * 3 from numbers
@a := (a/3): 33.333333333
@b := (b/3): 33.3333
@a + @a + 9999
@b + @b + @b:
Similar questions