MySQL 格式化日期

2022-03-06 21:13:24 字數 552 閱讀 1684

使用 date_format(get_date, '%y-%m-%d') 函式進行格式化。

其中:get_date 是需要擷取的欄位名;'%y-%m-%d' 是格式化後的日期格式。

select date_format('1997-10-04 22:23:00','%y %m %b %d %w %a %y-%m-%d %h:%i:%s %r %t');

結果:97 october oct 4th saturday sat 1997-10-04 22:23:00 10:23:00 pm 22:23:00

get_date = "2006-12-07"

select count(*) from t_get_video_temp where date_format(get_date, '%y-%m-%d')='2006-12-07';

select count(*) from t_get_video_temp where get_date like '2006%-07%';

cast( now( ) as date ) 這樣可以使用索引;

資料量大的情況不建議這樣使用。

Mysql 格式化日期格式

date format date,format 根據格式串format 格式化日期或日期和時間值date,返回結果串。可用date format 來格式化date 或datetime 值,以便得到所希望的格式。根據format字串格式化date值 s,s 兩位數字形式的秒 00,01,59 i 兩位...

mysql日期格式化

定義和用法 date format 函式用於以不同的格式顯示日期 時間資料。語法date format date,format 格式 描述 a 縮寫星期名 b 縮寫月名 c 月,數值 d 帶有英文本首的月中的天 d 月的天,數值 00 31 e 月的天,數值 0 31 f 微秒 h 小時 00 23...

MySql日期格式化

date format date,format 根據format字串格式化date值。下列修飾符可以被用在format字串中 m 月名字 january december w 星期名字 sunday saturday d 有英語字首的月份的日期 1st,2nd,3rd,等等。y 年,數字,4 位 y...