I have a database table in mysql
create table userstable
(
id int not null auto_increment,
name varchar(80) not null,
username varchar(80) not null,
primary key(id)
);
How to add new row in mysql database, so that username will be 'name'+('id'*100)
Example :
ID name username
1 A A100
2 B B200
3 C C300
4 user user400