从MySQL中的varchar字段获取最大值

为此使用MAX()方法SUBSTRING()。让我们首先创建一个表-

mysql> create table DemoTable
   -> (
   -> Id varchar(200)
   -> );

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable values('2019-0515-1980');

mysql> insert into DemoTable values('2019-0516-780');

mysql> insert into DemoTable values('2019-0517-2780');

使用select语句显示表中的所有记录-

mysql> select *from DemoTable;

输出结果

+----------------+
| Id             |
+----------------+
| 2019-0515-1980 |
| 2019-0516-780  |
| 2019-0517-2780 |
+----------------+
3 rows in set (0.00 sec)

以下是从varchar字段获取最大值的查询-

mysql> select max(Id) from DemoTable
   -> where Id LIKE  CONCAT(SUBSTRING(Id, 1, 4),'%');

输出结果

+----------------+
| max(Id)        |
+----------------+
| 2019-0517-2780 |
+----------------+
1 row in set (0.00 sec)