|
| 1 | +-- phpMyAdmin SQL Dump |
| 2 | +-- version 4.2.11 |
| 3 | +-- http://www.phpmyadmin.net |
| 4 | +-- |
| 5 | +-- Host: 127.0.0.1 |
| 6 | +-- Generation Time: Oct 23, 2015 at 02:43 AM |
| 7 | +-- Server version: 5.6.21 |
| 8 | +-- PHP Version: 5.6.3 |
| 9 | + |
| 10 | +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
| 11 | +SET time_zone = "+00:00"; |
| 12 | + |
| 13 | + |
| 14 | +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; |
| 15 | +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; |
| 16 | +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; |
| 17 | +/*!40101 SET NAMES utf8 */; |
| 18 | + |
| 19 | +-- |
| 20 | +-- Database: `java_proj` |
| 21 | +-- |
| 22 | + |
| 23 | +-- -------------------------------------------------------- |
| 24 | + |
| 25 | +-- |
| 26 | +-- Table structure for table `enroll` |
| 27 | +-- |
| 28 | + |
| 29 | +CREATE TABLE IF NOT EXISTS `enroll` ( |
| 30 | + `Regno` varchar(10) DEFAULT NULL, |
| 31 | + `course_code` varchar(10) DEFAULT NULL, |
| 32 | + `courseUnit` varchar(50) DEFAULT NULL, |
| 33 | + `marks` int(11) DEFAULT NULL, |
| 34 | + `grade` char(1) DEFAULT NULL |
| 35 | +) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
| 36 | + |
| 37 | +-- |
| 38 | +-- Dumping data for table `enroll` |
| 39 | +-- |
| 40 | + |
| 41 | +INSERT INTO `enroll` (`Regno`, `course_code`, `courseUnit`, `marks`, `grade`) VALUES |
| 42 | +('142', 'ceu1', 'advanced database systems', 67, 'C'), |
| 43 | +('142', 'ceu2', 'computer networks', 80, 'A'), |
| 44 | +('123', 'ceu1', 'advanced database systems', 77, 'B'), |
| 45 | +('857', 'ceu1', 'advanced database systems', 50, 'C'), |
| 46 | +('875', 'ceu3', 'analysis of algorithms', 64, 'C'), |
| 47 | +('456', 'ceu2', 'computer networks', 90, 'A'), |
| 48 | +('013', 'ceu4', 'Database', 87, 'A'), |
| 49 | +('378', 'ceu5', 'system administration', 79, 'A'), |
| 50 | +('782', 'ceu6', 'programming principles', 65, 'C'), |
| 51 | +('320', 'ceu7', 'Ethics', 73, 'B'), |
| 52 | +('320', 'ceu2', 'computer networks', 76, 'B'), |
| 53 | +('013', 'ceu6', 'programming principles', 62, 'C'), |
| 54 | +('782', 'ceu3', 'analysis of algorithms', 67, 'C'), |
| 55 | +('378', 'ceu1', 'advanced database systems', 83, 'A'), |
| 56 | +('213', 'ceu4', 'Database', 80, 'A'), |
| 57 | +('278', 'ceu4', 'Database', 72, 'B'), |
| 58 | +('213', 'ceu6', 'programming principles', 80, 'A'), |
| 59 | +('213', 'ceu7', 'Ethics', 78, 'B'), |
| 60 | +('278', 'ceu7', 'Ethics', 69, 'C'), |
| 61 | +('278', 'ceu5', 'system administration', 75, 'B'); |
| 62 | + |
| 63 | +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
| 64 | +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; |
| 65 | +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
0 commit comments