It looks like you have a data table and you want to restart PK Identity numbering by 1.
You will need to delete all data and reset the seed in the identity column. This can be done in one statement.
Create a new query by right-clicking on the database server or in the table and select "New query" (or any other command):
TRUNCATE TABLE MyTable;
source
share