关于mysql数据库格式化简单介绍
程序员文章站
2024-02-17 14:55:10
date_forma t(date, format) 根据格式串format 格式化日期或日期和时间值date,返回结果串。 可用date_format( ) 来格式化da...
date_forma t(date, format) 根据格式串format 格式化日期或日期和时间值date,返回结果串。
可用date_format( ) 来格式化date 或datetime 值,以便得到所希望的格式。根据format字符串格式化date值:
%s, %s 两位数字形式的秒( 00,01, . . ., 59)
%i 两位数字形式的分( 00,01, . . ., 59)
%h 两位数字形式的小时,24 小时(00,01, . . ., 23)
%h, %i 两位数字形式的小时,12 小时(01,02, . . ., 12)
%k 数字形式的小时,24 小时(0,1, . . ., 23)
%l 数字形式的小时,12 小时(1, 2, . . ., 12)
%t 24 小时的时间形式(h h : m m : s s)
%r 12 小时的时间形式(hh:mm:ss am 或hh:mm:ss pm)
%p am 或p m
%w 一周中每一天的名称( s u n d a y, monday, . . ., saturday)
%a 一周中每一天名称的缩写( sun, mon, . . ., sat)
%d 两位数字表示月中的天数( 00, 01, . . ., 31)
%e 数字形式表示月中的天数( 1, 2, . . ., 31)
%d 英文后缀表示月中的天数( 1st, 2nd, 3rd, . . .)
%w 以数字形式表示周中的天数( 0 = s u n d a y, 1=monday, . . ., 6=saturday)
%j 以三位数字表示年中的天数( 001, 002, . . ., 366)
% u 周(0, 1, 52),其中sunday 为周中的第一天
%u 周(0, 1, 52),其中monday 为周中的第一天
%m 月名(j a n u a r y, february, . . ., december)
%b 缩写的月名( j a n u a r y, february, . . ., december)
%m 两位数字表示的月份( 01, 02, . . ., 12)
%c 数字表示的月份( 1, 2, . . ., 12)
%y 四位数字表示的年份
%y 两位数字表示的年份
%% 直接值“%”
select date_format(日期字段,'%y-%m-%d') as ‘日期' from test
可用date_format( ) 来格式化date 或datetime 值,以便得到所希望的格式。根据format字符串格式化date值:
%s, %s 两位数字形式的秒( 00,01, . . ., 59)
%i 两位数字形式的分( 00,01, . . ., 59)
%h 两位数字形式的小时,24 小时(00,01, . . ., 23)
%h, %i 两位数字形式的小时,12 小时(01,02, . . ., 12)
%k 数字形式的小时,24 小时(0,1, . . ., 23)
%l 数字形式的小时,12 小时(1, 2, . . ., 12)
%t 24 小时的时间形式(h h : m m : s s)
%r 12 小时的时间形式(hh:mm:ss am 或hh:mm:ss pm)
%p am 或p m
%w 一周中每一天的名称( s u n d a y, monday, . . ., saturday)
%a 一周中每一天名称的缩写( sun, mon, . . ., sat)
%d 两位数字表示月中的天数( 00, 01, . . ., 31)
%e 数字形式表示月中的天数( 1, 2, . . ., 31)
%d 英文后缀表示月中的天数( 1st, 2nd, 3rd, . . .)
%w 以数字形式表示周中的天数( 0 = s u n d a y, 1=monday, . . ., 6=saturday)
%j 以三位数字表示年中的天数( 001, 002, . . ., 366)
% u 周(0, 1, 52),其中sunday 为周中的第一天
%u 周(0, 1, 52),其中monday 为周中的第一天
%m 月名(j a n u a r y, february, . . ., december)
%b 缩写的月名( j a n u a r y, february, . . ., december)
%m 两位数字表示的月份( 01, 02, . . ., 12)
%c 数字表示的月份( 1, 2, . . ., 12)
%y 四位数字表示的年份
%y 两位数字表示的年份
%% 直接值“%”
select date_format(日期字段,'%y-%m-%d') as ‘日期' from test
上一篇: AJAX投票网页怎的实现返回选择页面?