
select to_char(日期,'yyyy-mm-dd') from 表名
to_char就是个转换函数,将date型转成字符型,后边'yyyy-mm-dd' 就是你要转成的格式
当然,也可以to_char(日期,'yyyy') 直接返回年,月和日也同理
1、创建测试表,create table test_date(v_date date);
2、插入测试数据,
insert into test_date
select sysdate - level 10 from dual connect by level < 100
3、查询表中所有记录,select from test_date,可以看到时间格式为年月日时分秒,
4、编写sql,将时间截取到年月,
select t,
to_char(v_date, 'yyyymm') v_date_mon1,
trunc(v_date, 'mm') v_date_mon2
from TEST_DATE t
<%
'该函数作用:按指定参数格式化显示时间。
'numformat=1:将时间转化为yyyy-mm-dd hh:nn格式。
'numformat=2:将时间转化为yyyy-mm-dd格式。
'numformat=3:将时间转化为hh:nn格式。
'numformat=4:将时间转化为yyyy年mm月dd日 hh时nn分格式。
'numformat=5:将时间转化为yyyy年mm月dd日格式。
'numformat=6:将时间转化为hh时nn分格式。
'numformat=7:将时间转化为yyyy年mm月dd日 星期×格式。
'numformat=8:将时间转化为yymmdd格式。
'numformat=9:将时间转化为mmdd格式。
function formatdate(shijian,numformat)
dim ystr,mstr,dstr,hstr,nstr '变量含义分别为年字符串,月字符串,日字符串,时字符串,分字符串
if isnull(shijian) then
numformat=0
else
ystr=DatePart("yyyy",shijian)
if DatePart("m",shijian)>9 then
mstr=DatePart("m",shijian)
else
mstr="0"&DatePart("m",shijian)
end if
if DatePart("d",shijian)>9 then
dstr=DatePart("d",shijian)
else
dstr="0"&DatePart("d",shijian)
end if
if DatePart("h",shijian)>9 then
hstr=DatePart("h",shijian)
else
hstr="0"&DatePart("h",shijian)
end if
if DatePart("n",shijian)>9 then
nstr=DatePart("n",shijian)
else
nstr="0"&DatePart("n",shijian)
end if
end if
select case numformat
case 0
formatdate=""
case 1
formatdate=ystr&"-"&mstr&"-"&dstr&" "&hstr&":"&nstr
case 2
formatdate=ystr&"-"&mstr&"-"&dstr
case 3
formatdate=hstr&":"&nstr
case 4
formatdate=ystr&"年"&mstr&"月"&dstr&"日 "&hstr&"时"&nstr&"分"
case 5
formatdate=ystr&"年"&mstr&"月"&dstr&"日"
case 6
formatdate=hstr&"时"&nstr&"分"
case 7
formatdate=ystr&"年"&mstr&"月"&dstr&"日 "&WeekdayName(Weekday(shijian))
case 8
formatdate=right(ystr,2)&mstr&dstr
case 9
formatdate=mstr&dstr
end select
end function
%>
这个是别人写好的日期格式化函数
在你用到的地方可以这样写
<%=formatdate(rs("time"),2)%>
还有就是自己可以用系统函数
<%
T=rs("time")
responsewrite Year(T) & "-" & Month(T) & "-" Day(T)
%>
看看我给你的格式化时间函数,里头就有你想要的格式,个人感觉这个函数已经非常完整了。你想要的效果也在里头有。
以上就是关于oracel查询语句,分别提取出数据库中的date类型的年月日全部的内容,包括:oracel查询语句,分别提取出数据库中的date类型的年月日、ORACLE 中如何将日期中年月日截取到年月、asp从数据库字段中取年月日等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)