In MySQL when creating a table with an AUTO_INCREMENT field being PRIMARY KEY it is possible to define what will be the initialization value of the first record of it, as follows the script below:
CREATE TABLE IF NOT EXISTS 'tb_exemplo' (
'id_exemplo' int(11) primary key auto_increment NOT NULL,
'nm_exemplo' varchar(100),
'dt_registrado' timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
'dt_alterado' timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
So the first record of this table will start with 5 as the value of the id_exemplo
field, and so on.
How could you do this in SQL SERVER?