工作当中,总是遇到很多觉得不错的JS脚本.现在觉得还是找个地方记录下来,以后可以随时查看. /** *获取当前时间日期并格式化 */ function getNowDate(){ var mydate=new Date(); var myweekday=mydate.getDay(); var mymonth=mydate.getMonth()+1; var myday= mydate.getDate(); var year= mydate.getFullYear(); if(myweekday…
PS:http://blog.csdn.net/love_rongrong/article/details/6712883 字符串模糊比较 日期类型的模糊查询是不能直接进行的,要先转换成字符串然后再查询 例子如下: select * from table where to_char(“timestamp", 'yyyy-mm-dd hh24:mi:ss') like '%08:30:00%' 这里要注意的是postgre的时间处理上,不分大小写,时分秒格式:hh24:mi:ss,这样才能正常的显…
数学函数.字符串函数.转换函数.时间日期函数 1.数学函数 ceiling()--取上限 select ceiling(oil) as 油耗上限 from car floor()--取下限 select floor(oil) as 油耗下限 from car ) as 四舍五入 from car (两个参数) select)--为保留一位小数 select abs(-10)--绝对值 select PI()--圆周率 select sqrt()--开根号 select square()--平方…