<style type="text/css"> a:link { text-decoration: none; color: black; } a:visited { text-decoration: none; color: black; } a:hover { text-decoration: none; color: black; } a:active { text-decoration: underline; color:black; } </style>
控制鼠标移动到标签a上出现的 下划线和变色得css
SQL 查询时间语句
Datepart可以分割 年,月,日,时间(包括秒) 格式 datepart(年月日,获取时间字段) 如果是数据库的Time,直接写字段;系统的则为getdate();
datepart(year,publishTime)--datepart(month,publishTime)--datepart(day,publishTime)
convert(nvarchar(5),getdate(),108) 返回系统的“时分”
Datename 获取星期几 datename(weekday,publishTime+ @@DateFirst)
Datediff 获取时间差 格式 datediff(年月日,开始时间,结束时间)
Datediff(day,publishTime,getdate())