-- phpMyAdmin SQL Dump
-- version 2.9.1.1-Debian-2ubuntu1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 05, 2008 at 03:33 PM
-- Server version: 5.0.38
-- PHP Version: 5.2.1
--
-- Database: `graph`
--
-- --------------------------------------------------------
--
-- Table structure for table `graph_tbl`
--
CREATE TABLE `graph_tbl` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) NOT NULL,
`val` double NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;
--
-- Dumping data for table `graph_tbl`
--
INSERT INTO `graph_tbl` (`id`, `name`, `val`) VALUES
(1, 'Category Featured', 4),
(2, 'Gallery', 40),
(3, 'Highlighted', 3),
(4, 'Multilisted', 78),
(5, 'Picture Services', 99),
(6, 'Bold', 21),
(7, 'Reserve', 24),
(8, 'Buy It Now', 97),
(9, 'Scheduled', 60),
(10, 'Subtitle', 76),
(11, 'No Features', 56),
(12, 'Bid Auctions', 60),
(13, 'Multiple Item', 9);
|