Some friends, when learning about databases, accidentally set a field to varchar when creating the table structure, but were dumbfounded when they tried to sum the data. Next, follow the editor to learn how to sum the data without changing the data type of the column! 1. Open the database connection client Navicat Premium and create a new table structure. Here, the age column is intentionally set to varchar. 2. After the table is created successfully, create some test data for the table just now, as shown below: 3. When the amount of data is small, you can use the sum() function to directly sum it, because in MySQL it can automatically identify whether it is a string type or a numeric type. 4. The above is applicable to integers or small amounts of data. If the amount of data is too large and high precision is not applicable, you can consider using MySQL's CAST() and CONVERT() functions. As shown below: 5. Next, let’s look at the CONVERT() function. This function mainly serves the needs of precision. Here, we change the original data and change the age column to a decimal to test this function. 6. The above two functions support the following types of conversion, as shown in the following figure: At this point, the sum of varchar types also provides a solution! You may also be interested in:
|
<<: How to use ES6 class inheritance to achieve a gorgeous ball effect
>>: How to install ELK in Docker and implement JSON format log analysis
Table of contents Implementing a search engine ba...
1. Introduction I wrote an article before: The pr...
When saving data in MySQL, sometimes some messy a...
Table of contents 1. Make good use of components ...
count script #!/bin/sh numOfArgs=$# if [ $numOfAr...
1. Make sure the network connection method is bri...
Preface With the development of big front-end, UI...
This article introduces an example of how CSS3 ca...
Preface Swap is a special file (or partition) loc...
The nginx.conf configuration file is as follows u...
Preparation 1. Environmental Description: Operati...
MariaDB database management system is a branch of...
After clicking the a tag in the page, you want to ...
I have previously written an article about file t...
Table of contents Preface Architecture at a Glanc...