转换数据透视表上的时间

我有一个数据透视表,其中有一列有像这样的数据:

14/04/2016 09:15 14/04/2016 10:15 14/04/2016 14:41 14/04/2016 15:46 14/04/2016 15:51 14/04/2016 15:54 14/04/2016 15:59 14/04/2016 15:59 14/04/2016 16:04 14/04/2016 16:06 14/04/2016 16:27 14/04/2016 16:33 14/04/2016 16:38 14/04/2016 16:46 14/04/2016 16:52 

问题是现在的时间是格林尼治标准时间,我想把这个更改为GMT + 1。 你可以帮我吗?

在您的评论之后。 通过以下方式直接在SQL Server数据源上转换它:

 select dateadd(HOUR, @num_hours, getdate()) as time_added, getdate() as curr_date 

在@num_hoursinput1

你可以对每一行进行parsing(例如函数parseDateTime)小时,当你读这个表的时候就做这个改变,并且把它格式化为时区。