to share Story, Experience, Expertise, Knowledge, Idea, and Thought
mysql> select 1/2, 2 - (2*(1/2));+--------+---------------+| 1/2 | 2 - (2*(1/2)) |+--------+---------------+| 0.5000 | 1.0000 |+--------+---------------+1 row in set (0.00 sec)mysql> SELECT 1 * 1.52, 1.0 * 1.52, 1.0 * 1.520, 1.00 * 1.520;+----------+------------+-------------+--------------+| 1 * 1.52 | 1.0 * 1.52 | 1.0 * 1.520 | 1.00 * 1.520 |+----------+------------+-------------+--------------+| 1.52 | 1.520 | 1.5200 | 1.52000 |+----------+------------+-------------+--------------+1 row in set (0.00 sec)
mysql> select 1/2, 2 - (2*(1/2));
BalasHapus+--------+---------------+
| 1/2 | 2 - (2*(1/2)) |
+--------+---------------+
| 0.5000 | 1.0000 |
+--------+---------------+
1 row in set (0.00 sec)
mysql> SELECT 1 * 1.52, 1.0 * 1.52, 1.0 * 1.520, 1.00 * 1.520;
+----------+------------+-------------+--------------+
| 1 * 1.52 | 1.0 * 1.52 | 1.0 * 1.520 | 1.00 * 1.520 |
+----------+------------+-------------+--------------+
| 1.52 | 1.520 | 1.5200 | 1.52000 |
+----------+------------+-------------+--------------+
1 row in set (0.00 sec)