Login   Register  
PHP Classes
elePHPant
Icontem

File: sample.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alok Mohanty  >  multipleInsert  >  sample.sql  >  Download  
File: sample.sql
Role: Configuration script
Content type: text/plain
Description: SQL File
Class: multipleInsert
Mutiple record Insertion in to a single table
Author: By
Last change:
Date: 2003-05-28 14:08
Size: 727 bytes
 

Contents

Class file image Download
CREATE TABLE `student`
(
`std_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`std_name` CHAR( 50 ) ,
`std_age` INT
);

INSERT INTO `student` ( `std_id` , `std_name` , `std_age` ) VALUES ('', 'Proge Gran ', '27');
INSERT INTO `student` ( `std_id` , `std_name` , `std_age` ) VALUES ('', 'Alya Ruiz', '28');
INSERT INTO `student` ( `std_id` , `std_name` , `std_age` ) VALUES ('', 'Luee Victor', '29');
INSERT INTO `student` ( `std_id` , `std_name` , `std_age` ) VALUES ('', 'Spencer Lee', '30');
INSERT INTO `student` ( `std_id` , `std_name` , `std_age` ) VALUES ('', 'Mike Abraham', '31');



CREATE TABLE `student_dummy`
(
`sd_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` CHAR( 50 ) ,
`age` INT
);