在SQL Server 2005 Reporting Services 报表中格式化日期的方法可以 FormatDateTime的函数,下面是它的定义: 下面是NamedFormat 的定义: 它的类型就这么几种,很有限的,远远不能满足我们的需要。那怎么办? 实际上在报表中可以使用 ToString 的方法,来定义任意格式的字符串格式。比如:
Visual Basic (Declaration)
Public Shared Function FormatDateTime ( _
Expression As DateTime, _
<OptionalAttribute> Optional NamedFormat As DateFormat = DateFormat.GeneralDate _
) As String
Visual Basic (Usage)
Dim Expression As DateTime
Dim NamedFormat As DateFormat
Dim returnValue As String
returnValue = Strings.FormatDateTime(Expression, NamedFormat)
Constant
Description
DateFormat.GeneralDate
Display a date and/or time. Display a date part as a short date. If there is a time part, display it as a long time. If present, both parts display.
DateFormat.LongDate
Display a date using the long date format specified in your computers regional settings.
DateFormat.ShortDate
Display a date using the short date format specified in your computers regional settings.
DateFormat.LongTime
Display a time using the time format specified in your computers regional settings.
DateFormat.ShortTime
Display a time using the 24-hour format (hh:mm).
cdate(“2007-12-12 1:3:40”).ToString(“yyyy-MM-dd”) 可以格式化成 2007-12-12的格式,还可以格式化成12/12/2007这样的格式,甚至可以格式化成 2007+12+12这样的格式。这样只要你的format 格式化字符串正确,就可以实现你想要的日期格式。
sql server 2005 reporting services 报表中随意格式化日期的方法_数据库技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » sql server 2005 reporting services 报表中随意格式化日期的方法_数据库技巧
相关推荐
-      sql语句中的判断功能的使用方法
-      sql语句中的判断功能的使用方法
-      SQL语言中去掉小数点有效数字后面的所有0
-      ASP连接各种数据库的代码
-      在sql语句中实现md5功能
-      给access数据库减肥
-      asp连接access数据库代码(2)
-      更改 SQL Server 登录模式