How to get the maximum or minimum value of a row in sql

How to get the maximum or minimum value of a row in sql

Original data and target data

Implement SQL statements (maximum)

select
shop,
month,
greatest(dz,fz,sp) as max
from
tablename;

Implement SQL statements (minimum)

select
shop,
month,
least (dz,fz,sp) as min
from
tablename;

Supplement: Three methods to get the maximum value of multiple columns in a row in SQL Server

Sometimes we need to get a maximum value from multiple columns in a table (these columns have the same data type, and a maximum value is required for each row of records). There are three methods described below. Let’s take a look at them together.

First we create a table and insert the records we need into the table, as follows:

create table Demo(
 Guid varchar(50) not null default newid() primary key,
 Date1 datetime null,
 Date2 datetime null,
 Date3 datetime null
)

Then we insert test data into the table

insert into Demo(Date1,Date2,Date3) values
('2016-9-5','2016-8-6','2016-10-9'),
('2015-5-6','2015-8-6','2015-6-3'),
('2016-10-6','2015-6-6','2016-9-6')

select * from Demo

We need to get the maximum value of the three date columns for each row recorded above.

Method 1 (high efficiency):

select Guid,(select Max(NewDate) from (values ​​(Date1),(Date2),(Date3)) as #temp(NewDate)) as MaxDate from Demo

Method 2 (high efficiency):

select Guid, max(NewDate) as MaxDate from Demo unpivot (NewDate for DateVal in (Date1,Date2,Date3)) as u group by Guid

Method 3 (low efficiency, not recommended):

select Guid, (select max(NewDate) as MaxDate from (select Demo.Date1 as NewDate union select Demo.Date2 union select Demo.Date3)ud) MaxDate from Demo

The first method uses the values ​​clause to construct each row of data into a table with only one field, and then finds the maximum value, which is very clever;

The second method uses the UNPIVOT keyword, which is often used for row-to-column conversion, to convert and then display;

The third method is similar to the first method, but uses union to combine the three UpdateByAppDate fields into a result set with only one field and then finds the maximum value.

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • SQL sets the maximum number of SQL Server connections and query statements
  • Summary of methods for Mysql to obtain the maximum value of id, the total number of records in the table, and other related issues
  • Detailed example of getting the maximum value of each group after grouping in MySQL

<<:  HTML table tag tutorial (11): horizontal alignment attribute ALIGN

>>:  Docker Nginx container production and deployment implementation method

Recommend

Detailed explanation of MySQL from getting started to giving up - installation

What you will learn 1. Software installation and ...

MySQL DML language operation example

Additional explanation, foreign keys: Do not use ...

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

Research on the value of position attribute in CSS (summary)

The CSS position attribute specifies the element&...

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

Table of contents introduce Implementation steps ...

Image hover toggle button implemented with CSS3

Result:Implementation Code html <ul class=&quo...

The difference between Display, Visibility, Opacity, rgba and z-index: -1 in CSS

We often need to control the hidden, transparent ...

Graphical steps of zabbix monitoring vmware exsi host

1. Enter the virtualization vcenter, log in with ...

How to import/save/load/delete images locally in Docker

1. Docker imports local images Sometimes we copy ...

Install tomcat and deploy the website under Linux (recommended)

Install jdk: Oracle official download https://www...

Vue implements countdown between specified dates

This article example shares the specific code of ...

JavaScript to implement login slider verification

This article example shares the specific code of ...