
in my database i insert the first name and last name as('abc','def')but it gives error.plz send me the query how can we insert the first name,last name,email id,bate of birth,and mobile number.

Here is the query:
insert into student(firstname,lastname,email,dob,phone) values('Roseindia','Technologies','rose@roseindia.net','2011-04-14',1111);
For the above code,we have created a table named 'student':
CREATE TABLE `student` (
`id` bigint(20) NOT NULL auto_increment,
`firstname` varchar(100) default NULL,
`lastname` varchar(100) default NULL,
`email` varchar(100) default NULL,
`phone` int(20) default NULL,
`dob` date default NULL,
`marks` int(255) default NULL,
PRIMARY KEY (`id`)
);
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.