babelfish_extensions icon indicating copy to clipboard operation
babelfish_extensions copied to clipboard

FORMAT() function does not handle 'F' mask

Open robverschoor opened this issue 1 year ago • 0 comments

For the FORMAT() function, Babelfish supports the lowercase 'f' mask, but not the uppercase 'F':

1> select FORMAT(getdate(), 'HH:mm:ss.ffff')
2> go
format
----------------------------------------------
14:33:49.2330

1> select FORMAT(getdate(), 'HH:mm:ss.FFFF')
2> go
format
----------------------------------------------
14:33:49.FFFF

robverschoor avatar Dec 09 '23 20:12 robverschoor