Your SQL Table Must have a Identity Column first change the Defination of your table to this
CREATE TABLE mytable
(
id INT IDENTITY(1,1) PRIMARY KEY not null,
Fname text,
Surname text,
Tel text,
Salary DECIMAL(18,2)
);