从MySQL中的VARCHAR列中找到最大值

要找到最大值,请MAX()与一起使用CAST(),因为这些值是VARCHAR类型。让我们首先创建一个表-

mysql> create table DemoTable2030
   -> (
   -> Value varchar(20)
   -> );

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

mysql> insert into DemoTable2030 values('8');

mysql> insert into DemoTable2030 values('1');

mysql> insert into DemoTable2030 values('10001');

mysql> insert into DemoTable2030 values('901');

使用select语句&miuns;显示表中的所有记录。

mysql> select *from DemoTable2030

这将产生以下输出-

+-------+
| Value |
+-------+
| 8     |
| 1     |
| 10001 |
| 901   |
+-------+
4 rows in set (0.00 sec)

以下是从VARCHAR列中查找最大值的查询-

mysql> select max(cast(Value as unsigned)) from DemoTable2030;

这将产生以下输出-

+------------------------------+
| max(cast(Value as unsigned)) |
+------------------------------+
| 10001                        |
+------------------------------+
1 row in set (0.00 sec)