Ok so I used this code to make the table:
CREATE TABLE Clients
(
ID int IDENTITY(1,1) PRIMARY KEY,
NAME varchar(20) NOT NULL,
BALANCE int NOT NULL,
)
And it worked good for the first few times and after when i add a new record it gives it like an random id:
I dont really know what the problem is so you might tell me?