You are on page 1of 3

------

MySQL dump 10.13 Distrib 5.1.49, for debian-linux-gnu (i686)


Host: localhost
Database: COMPANY
-----------------------------------------------------Server version
5.1.49-1ubuntu8.1

/*!40101
/*!40101
/*!40101
/*!40101
/*!40103
/*!40103
/*!40014
/*!40014
*/;
/*!40101
/*!40111

SET
SET
SET
SET
SET
SET
SET
SET

@OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
@OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
NAMES utf8 */;
@OLD_TIME_ZONE=@@TIME_ZONE */;
TIME_ZONE='+00:00' */;
@OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
@OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0

SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;


SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--- Table structure for table `Programmer`


-DROP TABLE IF EXISTS `Programmer`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Programmer` (
`id` int(11) NOT NULL DEFAULT '0',
`name` varchar(15) NOT NULL,
`date_of_birth` date NOT NULL,
`date_of_joining` date NOT NULL,
`sex` varchar(6) NOT NULL,
`proficiency1` varchar(10) DEFAULT NULL,
`proficiency2` varchar(10) DEFAULT NULL,
`salary` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--- Dumping data for table `Programmer`
-LOCK TABLES `Programmer` WRITE;
/*!40000 ALTER TABLE `Programmer` DISABLE KEYS */;
/*!40000 ALTER TABLE `Programmer` ENABLE KEYS */;
UNLOCK TABLES;
--- Table structure for table `Software`
-DROP TABLE IF EXISTS `Software`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Software` (
`project_no` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL,
`name` varchar(15) DEFAULT NULL,
`project_name` varchar(30) NOT NULL,
`language` varchar(15) NOT NULL,

`scost` int(11) DEFAULT NULL,


`dcost` int(11) DEFAULT NULL,
`no_of_sold` int(11) NOT NULL,
PRIMARY KEY (`project_no`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--- Dumping data for table `Software`
-LOCK TABLES `Software` WRITE;
/*!40000 ALTER TABLE `Software` DISABLE KEYS */;
INSERT INTO `Software` VALUES (1,105,'Malini Sundar','College Management','ASP.N
et',10000,6000,43),(2,101,'Som Dutt','Parachute1','VB.net',6000,10000,79),(3,101
,'Som Dutt','Parachute2','VB.net',6500,10000,65),(4,101,'Som Dutt','Parachute3',
'VB.net',7000,10000,52),(5,103,'Mahesh Guptha','Data Base System','Dbase',399,60
00,22),(6,102,'Ramesh Narayan','Library Management','VB.net',600,6500,88),(7,102
,'Ramesh Narayan','System Checking Software','VB.net',8000,15000,72),(8,106,'Man
u Sankar','Database Management','Pascal',900,2000,25),(9,100,'Vidya Balan','Samp
le Project','MySql',450,5000,9),(10,104,'Vrinda Raj','Sample Project','Oracle',5
00,5000,15),(11,104,'Vrinda Raj','Site Management','MySql',650,10000,45),(12,104
,'Vrinda Raj','Database Management','MySql',1000,10000,88);
/*!40000 ALTER TABLE `Software` ENABLE KEYS */;
UNLOCK TABLES;
--- Table structure for table `Studies`
-DROP TABLE IF EXISTS `Studies`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Studies` (
`id` int(11) NOT NULL,
`name` varchar(15) NOT NULL,
`place` varchar(20) NOT NULL,
`course` varchar(15) NOT NULL,
`course_fee` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--- Dumping data for table `Studies`
-LOCK TABLES `Studies` WRITE;
/*!40000 ALTER TABLE `Studies` DISABLE KEYS */;
INSERT INTO `Studies` VALUES (100,'Vidya Balan','Sabhary','PGDCA',10000),(101,'S
om Dutt','Sabhary','PGDCA',10000),(103,'Mahesh Guptha','JMC','MCA',60000),(105,'
Malini Sundar','NIIT','ASP.net',8000),(102,'Ramesh Narayan','Sabhary','PGDCA',10
000),(104,'Vrinda Raj','JMC','BCA',30000),(106,'Manu Sankar','Sabhary','PGDCA',1
0000),(107,'Mridula','NIIT','JAVA',60000),(108,'varadha Sunil','CCSIT','BSc.IT',
50000),(109,'Sudev Gopal','NIIT','PGDCA',15000);
/*!40000 ALTER TABLE `Studies` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;

/*!40014
/*!40014
/*!40101
/*!40101
/*!40101
/*!40111

SET
SET
SET
SET
SET
SET

FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2011-06-28 9:49:23

You might also like