oracle,mysql日期和字串的互轉

2022-09-09 23:30:20 字數 1193 閱讀 1681

oracle

select *

from cunli_count

-- where to_char(created_time,'yyyy-mm-dd hh24:mi') = '2021-11-25 09:18'

where to_date('2021-11-25 09:18:26','yyyy-mm-dd hh24:mi:ss') = created_time

order by created_time desc

mysql

使用的函式:date_format(date,format) date:需要轉換的日期 format:格式化的樣式

format樣式:

: %y 顯示四位 : 2015 %y 只顯示後兩位 :15

: %m 月份的英文顯示:october %m 月份的阿拉伯顯示:01-12 %b 月份的英文縮略顯示:oct %c 月份的阿拉伯顯示:1-12

: %d 阿拉伯顯示:00-31 %d 帶有英文本尾:1st-31th %e 阿拉伯顯示:1-31 %j 年的天:001-366

: %h :00-23 %h:01-12 %i:01-12 %k:0-23 %l:1-12

: %i:00-59

: %s:00-59 %s:00-59

微妙:%f

am/pm:%p

%r: 02:02:44 pm

%t: 14:02:44

周:%w:周的英文顯示 %w 周的阿拉伯顯示 :0(星期日)-6(星期六) %a 周的英文縮略顯示:mon-

例子:date_format(now(),"%y-%m-%d %t") 20120-09-018 14:10:32

date_format(now(),"%y-%m-%d %h:%i:%s %p") 2020-09-18 14:10:32 pm

使用的函式:str_to_date(str,format) str:字元形式的日期 format:格式化樣式

str_to_date('1992-04-12',"%y-%m-%d") // 輸出:1992-04-12(日期形式)

Oracle mysql日期處理對比

oracle mysql中日期函式 mysql 切換到oracle上的一些 改造 順便整理下日期區別 獲取當前日期和時間 oracle sysdate mysql sysdate 日期 時間轉換為字串函式 oracle 日期 時間轉字串函式 to char createdate,yyyy mm dd...

oracle mysql查詢欄位數和準確資料量

查詢oracle資料庫中每個表的資料量,查詢有多少行 一開始使用以下sql select table name,t.num rows,t.last analyzed from tabs t order by table name desc 在oracle中,存在執行計畫不准的情況 last anal...

python日期和時間 Python日期和時間

python程式可以通過多種方式處理日期和時間。日期格式之間的轉換是電腦的常見煩惱。python的時間和日曆模組可以幫助跟蹤日期和時間。什麼是蜱 時間間隔是以秒為單位的浮點數。1970年1月1日上午12 00 時代 時間的特殊時刻表示。python中有乙個受歡迎的時間模組,它提供了處理時間的功能,並...