Hi friends,
I am having a doubt in insertion of data
create table table1(name varchar(10))
In this table, when i insert the following record manually, it produces me an error that it cannot insert.
insert into table1 values('asdfghjklqwe')
But when I try to insert it with the procedure, it trims the data upto 10 digits the data shown is
"asdfghjklq"
How can this be possible?
Feeling really confused...
Can anyone help me ????