热情钢笔

文章
4
资源
0
加入时间
2年10月17天

HTML - ID选择器

以“#“开头命名的选择器的名称。HTML和XHTML将类和ID值定义为区分大小写,一些较老的浏览器不区分类名和ID名的大小写,当前大多数浏览器都要区分大小写。#box{ font-size:20px; color:orange; }<span id = "Box">字体大小20px,颜色</span><p id = "box">字体大小20px,...

Oracle中如何获取系统当前时间

select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;ORACLE里获取一个时间的年、季、月、周、日的函数select to_char(sysdate, 'yyyy' ) from dual; --年select to_char(sysdate, 'MM' ) from dual; --月select to_ch