如何在 MySQL SELECT 语句中使用 CAST 函数?
MySQL 中的 CAST() 函数可将任何类型的变量值转换为指定类型的值。首先让我们创建一个表 -
mysql> create table castFunctionDemo -> ( -> ShippingDate date -> ); Query OK, 0 rows affected (0.74 sec)
以下是对表中插入某些记录的查询,使用的是插入命令 -
mysql> insert into castFunctionDemo values('2019-01-31'); Query OK, 1 row affected (0.20 sec) mysql> insert into castFunctionDemo values('2018-07-12'); Query OK, 1 row affected (0.16 sec) mysql> insert into castFunctionDemo values('2016-12-06'); Query OK, 1 row affected (0.16 sec) mysql> insert into castFunctionDemo values('2017-08-25'); Query OK, 1 row affected (0.19 sec)
以下是使用 select 语句从表中显示所有记录的查询 -
mysql> select * from castFunctionDemo;
将生成以下输出 -
+--------------+ | ShippingDate | +--------------+ | 2019-01-31 | | 2018-07-12 | | 2016-12-06 | | 2017-08-25 | +--------------+ 4 rows in set (0.00 sec)
以下是在 MySQL select 语句中正确使用 cast() 函数的查询 -
mysql> select CAST(ShippingDate AS CHAR(12)) as Conversion FROM castFunctionDemo;
将生成以下输出 -
+------------+ | Conversion | +------------+ | 2019-01-31 | | 2018-07-12 | | 2016-12-06 | | 2017-08-25 | +------------+ 4 rows in set (0.00 sec)
广告