Hi,
In general, I would use the [FORMATDATE](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/appendix/syntax_of_condition_functions/date_processing_functions#formatdate) function in Virtual DataPort to display the date values in the desired format. This function always returns a string value. In order to convert the text value containing a date in a specific format, into a value of type date, I would use [to_localdate](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/appendix/syntax_of_condition_functions/date_processing_functions#to-localdate) function. For example,
> SELECT TO_DATE(‘M dd yyyy HH:mm:ss’, ‘3 05 2010 21:17:05’)
> FROM Dual();
Alternatively, you can use the [Cast](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/appendix/syntax_of_condition_functions/type_conversion_functions#cast) function to convert data from one data type to another.
Additionally, If you want to retrieve the results of the date field in the desired format as a date type, I would recommend you to change the i18n code of your view by navigating to the *view > Options > Search methods > Default i18n*. You can define an own i18n map and set the date pattern you want to have for the date type.
For more information, you can refer to the documents [Managing Internationalization Configurations](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/advanced_characteristics/creating_new_internationalization_configurations/creating_new_internationalization_configurations#managing-internationalization-configurations) and [Datetime Processing Functions](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/appendix/syntax_of_condition_functions/date_processing_functions#datetime-processing-functions) of the Virtual DataPort VQL Guide.
Hope this helps!