格式参数多重选择值

时间:2014-04-10 13:19:17

标签: sql oracle reporting-services reportbuilder3.0

我需要格式化多选参数列表的日期。 我尝试使用以下代码在代码中对其进行格式化:

to_date(eo.exam_date, 'DD-Mon-YY')

在我的主数据集和我的参数数据集" P_Exam_Date"但是格式仍然是错误的,请参阅附图:

enter image description here

我如何格式化?

1 个答案:

答案 0 :(得分:1)

您应该使用to_char(eo.exam_date, 'DD-Mon-YY')

to_date()只返回日期,格式与SQL Session的NLS_DATE_FORMAT一样。而to_char()为您提供格式化(如您给出的)字符串。所以你的目标变量也应该是一个String!