This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table testing | |
( | |
id int primary key clustered, | |
value varchar(50) not null, | |
updated_at datetime2 | |
); | |
insert into testing values | |
(1, 'foo', null), | |
(2, 'bar', null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Quick one |