dlan>成都英孚英语
mysql怎么将varchar换成⽇期_将VARCHAR数据转换为
MySQL⽇期格式?
要将VARCHAR数据转换为⽇期格式,可以使⽤STR_TO_DATE()-mysql> create table DemoTable1989
(public
DueDate varchar(20)
schedules);
使⽤插⼊命令在表中插⼊⼀些记录-mysql> inrt into DemoTable1989 values('31/01/2015');
mysql> inrt into DemoTable1989 values('01/12/2018');
mysql> inrt into DemoTable1989 values('25/10/2019');
使⽤lect语句显⽰表中的所有记录-mysql> lect * from DemoTable1989;
这将产⽣以下输出-+------------+
学英语口语哪个培训机构好
| DueDate |
kds是什么
+------------+
华建翻译地毯用英语怎么说| 31/01/2015 |
| 01/12/2018 |
| 25/10/2019 |
+------------+
2014年山东高考数学3 rows in t (0.00 c)
这是将⽇期数据转换为MySQL⽇期格式的查询:
mysql> lect str_to_date(DueDate,'%d/%m/%Y') as MySQLDateFormat from DemoTable1989;
这将产⽣以下输出-+-----------------+
| MySQLDateFormat |
莎士比亚语录
+-----------------+
| 2015-01-31 |
| 2018-12-01 |
| 2019-10-25 |
+-----------------+
3 rows in t (0.05 c)