select to_char(to_date('2011-03-13','yyyy-mm-dd'),'d') from dual
其中 紅色部分為傳入日期
to_char的其他用法
select to_char(sysdate,'ss') from dual取當前時間秒部分
select to_char(sysdate,'mi') from dual取當前時間分鐘部分
select to_char(sysdate,'hh24') from dual取當前時間秒小時部分
select to_char(sysdate,'dd') from dual取當前時間日期部分
select to_char(sysdate,'mm') from dual取當前時間月部分
select to_char(sysdate,'yyyy') from dual取當前時間年部分
select to_char(sysdate,'w') from dual取當前時間是乙個月中的第幾周(從1日開始算)
select to_char(sysdate,'ww') from dual取當前時間是一年中的第幾周(從1.1開始算)
select to_char(sysdate,'iw') from dual取當前時間是一年中的第幾周(按實際日曆的)
select to_char(sysdate,'d') from dual取當前時間是一周的第幾天,從星期天開始,週六結束
select to_char(sysdate,'day') from dual 取當前日是星期幾,和資料庫設定的字符集有關,會輸出'tuesday'
select to_char(sysdate,'ddd') from dual 當前日是一年中的第幾天
oracle中如何判斷某個日期是星期幾
sql select to char to date color red 2011 03 13 color yyyy mm dd d from dual 其中 紅色部分為傳入日期 b to char的其他用法 b select to char sysdate,ss from dual取當前時間秒部分...
Spring如何判斷某個類用了某個註解
spring提供了乙個annotationutils類用於判斷某個類是否用了某個註解,以 kafkalistener為例,kafkalistener ann annotationutils.findannotation clazz,kafkalistener.class clazz為使用了該註解的類...
oracle中判斷某個字段是否存在
oracle中判斷某個字段是否存在 document為表名 docid為欄位名 select count column name from cols where table name upper document and column name upper docid 如果查詢出來的為0說明docu...