Mysql varchar type sum example operation

Mysql varchar type sum example operation

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:
  • Method for comparing the size of varchar type numbers in MySQL database
  • Some things to note about varchar type in Mysql
  • The difference between char, varchar and text field types in MySQL
  • MySQL data type varchar detailed explanation
  • Implementation of comparison, sorting and other operations on varchar type dates in MySQL

<<:  How to use ES6 class inheritance to achieve a gorgeous ball effect

>>:  How to install ELK in Docker and implement JSON format log analysis

Recommend

Implement a simple search engine based on MySQL

Table of contents Implementing a search engine ba...

How to query json in the database in mysql5.6 and below

When saving data in MySQL, sometimes some messy a...

Some suggestions on Vue code readability

Table of contents 1. Make good use of components ...

View the number of files in each subfolder of a specified folder in Linux

count script #!/bin/sh numOfArgs=$# if [ $numOfAr...

Centos8 bridge static IP configuration method in VMware virtual machine

1. Make sure the network connection method is bri...

Example of how to use CSS3 to layout elements around a center point

This article introduces an example of how CSS3 ca...

Example of how to increase swap in CentOS7 system

Preface Swap is a special file (or partition) loc...

Implementation of nginx proxy port 80 to port 443

The nginx.conf configuration file is as follows u...

Windows Server 2019 IIS10.0+PHP(FastCGI)+MySQL Environment Construction Tutorial

Preparation 1. Environmental Description: Operati...

Detailed tutorial on installing MariaDB on CentOS 8

MariaDB database management system is a branch of...

Use href to simply click on a link to jump to a specified place on the page

After clicking the a tag in the page, you want to ...

How to use Volume to transfer files between host and Docker container

I have previously written an article about file t...