to solve that you would need to amend the sql to something like below
SELECT CONVERT(VARCHAR(20), CURRENT_TIMESTAMP, 103)
where CURRENT_TIMESTAMP will return the date and time in SQL Server
Convert codes more codes to use in the example above can be found in the remarks section of this article.