If you have more columns like:
CREATE TABLE test
(
ID Int Identity (1, 1)
Name varchar(50)
)
Go
you can:
insert into test (Name) values ('John')
if you don't put a column in the first pharentesis it will be filled with the default value and in this case is the unique number