-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Sep 21, 2012 at 07:47 AM
-- Server version: 5.5.24-log
-- PHP Version: 5.4.3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `sample`
--
-- --------------------------------------------------------
--
-- Table structure for table `a`
--
CREATE TABLE IF NOT EXISTS `a` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `a`
--
INSERT INTO `a` (`id`, `name`) VALUES
(1, 'test #1'),
(2, 'test #2');
-- --------------------------------------------------------
--
-- Table structure for table `b`
--
CREATE TABLE IF NOT EXISTS `b` (
`idx` int(11) unsigned NOT NULL AUTO_INCREMENT,
`idy` int(11) unsigned NOT NULL,
PRIMARY KEY (`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `b`
--
INSERT INTO `b` (`idx`, `idy`) VALUES
(1, 1),
(2, 1),
(3, 2);
-- --------------------------------------------------------
--
-- Table structure for table `c`
--
CREATE TABLE IF NOT EXISTS `c` (
`id` int(11) unsigned NOT NULL,
`value` varchar(32) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `c`
--
INSERT INTO `c` (`id`, `value`) VALUES
(1, 'abc #1'),
(2, 'abc #2'),
(3, 'abc #3');
-- --------------------------------------------------------
--
-- Table structure for table `d`
--
CREATE TABLE IF NOT EXISTS `d` (
`id` int(11) unsigned NOT NULL,
`value` varchar(32) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `d`
--
INSERT INTO `d` (`id`, `value`) VALUES
(2, 'def #2'),
(1, 'def #1');
-- --------------------------------------------------------
--
-- Table structure for table `e`
--
CREATE TABLE IF NOT EXISTS `e` (
`id` int(11) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `f`
--
CREATE TABLE IF NOT EXISTS `f` (
`id` int(11) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `f`
--
INSERT INTO `f` (`id`) VALUES
(2);
-- --------------------------------------------------------
--
-- Table structure for table `g`
--
CREATE TABLE IF NOT EXISTS `g` (
`id` int(11) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
View count: 34