home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-cocoon-addon-1.4.9-installer.exe / sql-page.xml.sql < prev    next >
Encoding:
Text File  |  2004-07-12  |  1.4 KB  |  55 lines

  1. # MySQL dump 6.4
  2.  
  3. # Copyright 1999-2004 The Apache Software Foundation
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16.  
  17. #
  18. # Host: localhost    Database: test
  19. #--------------------------------------------------------
  20. # Server version    3.22.27
  21.  
  22. #
  23. # Table structure for table 'department'
  24. #
  25. CREATE TABLE department (
  26.   id int(11) DEFAULT '0' NOT NULL,
  27.   name varchar(255) DEFAULT '' NOT NULL,
  28.   PRIMARY KEY (id)
  29. );
  30.  
  31. #
  32. # Dumping data for table 'department'
  33. #
  34.  
  35. INSERT INTO department VALUES (1,'Programmers');
  36. INSERT INTO department VALUES (2,'Loungers');
  37.  
  38. #
  39. # Table structure for table 'employee'
  40. #
  41. CREATE TABLE employee (
  42.   id int(11) DEFAULT '0' NOT NULL,
  43.   department_id int(11) DEFAULT '0' NOT NULL,
  44.   name varchar(255) DEFAULT '' NOT NULL,
  45.   PRIMARY KEY (id)
  46. );
  47.  
  48. #
  49. # Dumping data for table 'employee'
  50. #
  51.  
  52. INSERT INTO employee VALUES (1,1,'Donald Ball');
  53. INSERT INTO employee VALUES (2,1,'Stefano Mazzocchi');
  54. INSERT INTO employee VALUES (3,2,'Pierpaolo Fumagalli');
  55.