I used SQL Server. I converted value from datetime2 column with different scales to string and compare them to process null values if they are exist. So, I need to convert this data without tailing nulls by one query without any procedures For example,
'2018-06-23 07:30:20.100' should be '2018-06-23 07:30:20.1'
'2018-06-23 07:30:20.000' should be '2018-06-23 07:30:20.'
'2018-06-23 07:30:20.101' should be '2018-06-23 07:30:20.101'
I used following:
select CONVERT(VARCHAR, col1, 126) from [DBO].[DATE_TABLE1]
But it shows unexpected result:
'2018-06-23 07:30:20.100' defined as '2018-06-23 07:30:20.100' - **unexpected(trailing zeros weren't removed)**
'2018-06-23 07:30:20.000' defined as '2018-06-23 07:30:20' - expected
'2018-06-23 07:30:20.101' defined as '2018-06-23 07:30:20.101' - expected
how can I convert datatime2 value without trailing zeros? Thank you
Thank you for all. On the contrary, I decided to add zeros until max fraction seconds value 7. And I understand that this solution conflicts with my question, but it helps to compare datetime2 values in the string format. I decided to use following statement:
I used This value will get information with all fraction seconds values, therefore I can able to compare values from columns with different scale(fractional seconds) values. If it had been Snowflake, I would 'YYYY-MM-DD HH:MI:SS.FF9'... In sql server, for example, we have 2 table with column that has datetime2 with different values.
I inserted same value into them '2018-06-23 07:30:20.1' After performing 'CONVERT(VARCHAR, CAST({{ columnName }} AS DATETIME2), 121)' for 2 table I will get same string values:
And these values will be equal. If I used 'CONVERT(VARCHAR, {{ columnName }} , 121)', I will get different values: