You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2020. It is now read-only.
insert 'null' insto 'datetime2(7)' column, fetches data as empty string instead of null
Test log:
CREATE TABLE types_table (id int identity, col2 datetime2(7))
INSERT INTO types_table (col2) VALUES (null)
INSERT INTO types_table (col2) VALUES ('2001-04-10 10:12:59.1234567')
SELECT * FROM types_table ORDER BY id