欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL日期和字符串转换函数实例

程序员文章站 2022-06-17 21:14:09
mysql中to_char()和str_to_date()函数 1.字符串转换成日期格式 str_to_date(date,'%y-%m-%d')----->相当于oracle...

mysql中to_char()和str_to_date()函数

1.字符串转换成日期格式

str_to_date(date,'%y-%m-%d')----->相当于oracle中的to_char();

例子:

insert  into
   t_order(order_time)
values
   (str_to_date('2018-05-06','%y-%m-%d'))

2.日期转换成字符串格式

date_format(date,'%y-%m-%d')----->相当于oracle中的to_date();

例子:

select date_format(order_time, '%y-%m-%d')from t_order

%y:代表4位的年份%y:代表2为的年份?%m:代表月, 格式为(01……12) ?%c:代表月, 格式为(1……12)?%d:代表月份中的天数,格式为(00……31) ?%e:代表月份中的天数, 格式为(0……31)??%h:代表小时,格式为(00……23) ?%k:代表 小时,格式为(0……23) ?%h: 代表小时,格式为(01……12) ?%i: 代表小时,格式为(01……12) ?%l :代表小时,格式为(1……12)??%i: 代表分钟, 格式为(00……59)?

%r:代表 时间,格式为12 小时(hh:mm:ss [ap]m) ?%t:代表 时间,格式为24 小时(hh:mm:ss)?

%s:代表 秒,格式为(00……59) ?%s:代表 秒,格式为(00……59)