Home > Database > Mysql Tutorial > body text

Examples of addition, subtraction, multiplication, division, remainder sum, average, and query that are not equal to a certain value in mysql

黄舟
Release: 2017-09-09 15:16:56
Original
5025 people have browsed it

1.mysql addition, subtraction, multiplication and division operations:

mysql> select score,score+5,score-5,score*5,score/5 from 4a;
+-------+---------+---------+---------+---------+
| score | score+5 | score-5 | score*5 | score/5 |
+-------+---------+---------+---------+---------+
|    93 |      98 |      88 |     465 | 18.6000 |
|    35 |      40 |      30 |     175 |  7.0000 |
|    46 |      51 |      41 |     230 |  9.2000 |
|    56 |      61 |      51 |     280 | 11.2000 |
|    79 |      84 |      74 |     395 | 15.8000 |
|    91 |      96 |      86 |     455 | 18.2000 |
|    53 |      58 |      48 |     265 | 10.6000 |
|    56 |      61 |      51 |     280 | 11.2000 |
|    58 |      63 |      53 |     290 | 11.6000 |
|    68 |      73 |      63 |     340 | 13.6000 |
|    71 |      76 |      66 |     355 | 14.2000 |
|    93 |      98 |      88 |     465 | 18.6000 |
|    67 |      72 |      62 |     335 | 13.4000 |
|    78 |      83 |      73 |     390 | 15.6000 |
|    88 |      93 |      83 |     440 | 17.6000 |
|    90 |      95 |      85 |     450 | 18.0000 |
|    92 |      97 |      87 |     460 | 18.4000 |
|    47 |      52 |      42 |     235 |  9.4000 |
|    68 |      73 |      63 |     340 | 13.6000 |
|    78 |      83 |      73 |     390 | 15.6000 |
|    81 |      86 |      76 |     405 | 16.2000 |
|    88 |      93 |      83 |     440 | 17.6000 |
+-------+---------+---------+---------+---------+
22 rows in set (0.00 sec)
Copy after login

2.mysql remainder operation:

mysql> select score,score%5 from 4a;
+-------+---------+
| score | score%5 |
+-------+---------+
|    93 |       3 |
|    35 |       0 |
|    46 |       1 |
|    56 |       1 |
|    79 |       4 |
|    91 |       1 |
|    53 |       3 |
|    56 |       1 |
|    58 |       3 |
|    68 |       3 |
|    71 |       1 |
|    93 |       3 |
|    67 |       2 |
|    78 |       3 |
|    88 |       3 |
|    90 |       0 |
|    92 |       2 |
|    47 |       2 |
|    68 |       3 |
|    78 |       3 |
|    81 |       1 |
|    88 |       3 |
+-------+---------+
22 rows in set (0.00 sec)
Copy after login

3.mysql average operation:

mysql> select score,avg(score) from 4a;
+-------+------------+
| score | avg(score) |
+-------+------------+
|    93 |    71.6364 |
+-------+------------+
1 row in set (0.00 sec)
Copy after login

4.mysql Find the operation that is not equal to a certain value:

mysql> select score,score!=88 from 4a;     
+-------+-----------+
| score | score!=88 |
+-------+-----------+
|    93 |         1 |
|    35 |         1 |
|    46 |         1 |
|    56 |         1 |
|    79 |         1 |
|    91 |         1 |
|    53 |         1 |
|    56 |         1 |
|    58 |         1 |
|    68 |         1 |
|    71 |         1 |
|    93 |         1 |
|    67 |         1 |
|    78 |         1 |
|    88 |         0 |
|    90 |         1 |
|    92 |         1 |
|    47 |         1 |
|    68 |         1 |
|    78 |         1 |
|    81 |         1 |
|    88 |         0 |
+-------+-----------+
22 rows in set (0.00 sec)
Copy after login

The above is the detailed content of Examples of addition, subtraction, multiplication, division, remainder sum, average, and query that are not equal to a certain value in mysql. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template