I have a table with a attribute which i set it to varchar(20),
for example,
create account(
username varchar(20)
);
then i insert some data, then i want to do some comparision,
"select * from account where username="gadsfasdfhaskdfkasjdghfsdaf";
where "gadsfasdfhaskdfkasjdghfsdaf" has more than 20 characters,
when i run the query, error occurs, said that the value is invalid,
how can i solve the problem? is there any way to let it compare with a larger value?