File indexing completed on 2024-04-21 15:30:21

0001 -- MySQL dump 9.08
0002 --
0003 -- Host: localhost    Database: test
0004 ---------------------------------------------------------
0005 -- Server version       4.0.14
0006 
0007 --
0008 -- Table structure for table 'Applications'
0009 --
0010 
0011 CREATE TABLE Applications (
0012   id int(11) NOT NULL default '0',
0013   value varchar(20) default NULL,
0014   PRIMARY KEY  (id)
0015 ) TYPE=MyISAM;
0016 
0017 --
0018 -- Dumping data for table 'Applications'
0019 --
0020 
0021 INSERT INTO Applications VALUES (0,'A');
0022 INSERT INTO Applications VALUES (1,'B');
0023 INSERT INTO Applications VALUES (2,'C');
0024 INSERT INTO Applications VALUES (3,'D');
0025 INSERT INTO Applications VALUES (4,'E');
0026 
0027 --
0028 -- Table structure for table 'jw1'
0029 --
0030 
0031 CREATE TABLE jw1 (
0032   id int(11) NOT NULL default '0',
0033   txt varchar(20) default NULL,
0034   PRIMARY KEY  (id)
0035 ) TYPE=MyISAM;
0036 
0037 --
0038 -- Dumping data for table 'jw1'
0039 --
0040 
0041