Advertisement
badlogic

temp

Aug 2nd, 2017
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.89 KB | None | 0 0
  1. -- Adminer 4.2.5 MySQL dump
  2.  
  3. SET NAMES utf8;
  4. SET time_zone = '+00:00';
  5. SET foreign_key_checks = 0;
  6. SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
  7.  
  8. USE `dps_registrar_db`;
  9.  
  10. DROP TABLE IF EXISTS `college_unit_fee_details_percourse`;
  11. CREATE TABLE `college_unit_fee_details_percourse` (
  12.   `unitfee_id` int(11) NOT NULL AUTO_INCREMENT,
  13.   `unit_name` varchar(255) NOT NULL,
  14.   `yl_id` int(10) NOT NULL,
  15.   `unit_type` int(10) NOT NULL,
  16.   `unit_amount` float NOT NULL,
  17.   `unit_date` varchar(255) NOT NULL,
  18.   `unit_status` varchar(255) NOT NULL,
  19.   `sy_id` int(10) NOT NULL,
  20.   `type_unit` varchar(255) NOT NULL,
  21.   `cc_id` int(10) NOT NULL,
  22.   `yl_name` varchar(255) NOT NULL,
  23.   `course_name` varchar(255) NOT NULL,
  24.   PRIMARY KEY (`unitfee_id`)
  25. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  26.  
  27. TRUNCATE `college_unit_fee_details_percourse`;
  28. INSERT INTO `college_unit_fee_details_percourse` (`unitfee_id`, `unit_name`, `yl_id`, `unit_type`, `unit_amount`, `unit_date`, `unit_status`, `sy_id`, `type_unit`, `cc_id`, `yl_name`, `course_name`) VALUES
  29. (1, 'General Collegiate',   19, 00'', '', 0'Per 1 unit',   1'First Year',   'AMT'),
  30. (2, 'Computer Subject', 19, 00'', '', 0'Per 3 unit',   1'First Year',   'AMT'),
  31. (3, 'General Collegiate',   20, 10'', '', 0'Per 1 unit',   1'Second Year''AMT'),
  32. (4, 'Computer Subject', 20, 10'', '', 0'Per 3 unit',   1'Second Year''AMT'),
  33. (5, 'General Collegiate',   21, 20'', '', 0'Per 1 unit',   1'Third Year',   'AMT'),
  34. (6, 'Computer Subject', 21, 20'', '', 0'Per 3 unit',   1'Third Year',   'AMT'),
  35. (7, 'General Collegiate',   22, 30'', '', 0'Per 1 unit',   1'Fourt Year',   'AMT'),
  36. (8, 'Computer Subject', 22, 30'', '', 0'Per 3 unit',   1'Fourt Year',   'AMT'),
  37. (9, 'General Collegiate',   23, 40'', '', 0'Per 1 unit',   1'Fifth Year',   'AMT'),
  38. (10,    'Computer Subject', 23, 40'', '', 0'Per 3 unit',   1'Fifth Year',   'AMT');
  39.  
  40. -- 2017-08-02 06:38:04
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement