将高度格式转换为厘米的 MySQL 查询?


为此,请在 MySQL 中使用 CAST() 方法。我们首先创建一个表 -

mysql> create table DemoTable
(
   Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   StudentHeight varchar(40)
) ;
Query OK, 0 rows affected (0.47 sec)

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

mysql> insert into DemoTable(StudentHeight) values('5\'10\"');
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable(StudentHeight) values('4\'6\"');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable(StudentHeight) values('5\'8\"');
Query OK, 1 row affected (0.10 sec)

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

mysql> select *from DemoTable;

这将生成以下输出 -

+----+---------------+
| Id | StudentHeight |
+----+---------------+
|  1 | 5'10"         |
|  2 | 4'6"          |
|  3 | 5'8"          |
+----+---------------+
3 rows in set (0.00 sec)

以下是将高度格式转换为厘米的查询 -

mysql> select
   (cast(substr(StudentHeight,1,locate("'",StudentHeight)-1) as unsigned)*30.48)+
   (cast(substr(StudentHeight,locate("'",StudentHeight)+1) as unsigned)*2.54) AS Centimeters
   from DemoTable;

这将生成以下输出 -

+-------------+
| Centimeters |
+-------------+
| 177.80      |
| 137.16      |
| 172.72      |
+-------------+
3 rows in set, 3 warnings (0.05 sec)

更新时间:2019 年 10 月 4 日

500 次浏览

开始你的 职业

通过完成课程获得认证

开始
广告
© . All rights reserved.