Create Table rs
(
Id int IDENTITY (1,1) Primary Key,
mId int Not NUll,
ad varchar Not NUll,
stvarchar Not NUll,
et varchar Not NUll,
nt varchar(max)
);
insert into rs ( nt, et, st, ad, mId)
values ('as','as','as','as',12)
I am getting this error
Msg 8152, Level 16, State 14, Line 2
String or binary data would be truncated.
The statement has been terminated.
It is a simple sql but finding difficulty in resolving it