News

This patch introduces basic DATETIME support in SQL. After this patch, it will be allowed to select DATETIME values from spaces, insert them into spaces, and use them in functions. CAST() from ...
For example, you have the following query: ```sql SELECT mydate FROM dbo.myTable WHERE mydate >= convert (char, dateadd (year,-1,cast ( ? as datetime))) ``` > [!NOTE] > This issue only occurs if you ...