Skip to content

Instantly share code, notes, and snippets.

@pastorramos
Last active August 30, 2018 20:51
Show Gist options
  • Save pastorramos/3fa879ddba5b61dc1de5a1cc7dfa0f86 to your computer and use it in GitHub Desktop.
Save pastorramos/3fa879ddba5b61dc1de5a1cc7dfa0f86 to your computer and use it in GitHub Desktop.
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 05, 2016 at 11:24 pm
-- Server version: 10.1.10-MariaDB
-- PHP Version: 7.0.4
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `academy`
--
CREATE DATABASE academy
CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
USE academy;
-- --------------------------------------------------------
--
-- Table structure for table `degree_candidates`
--
CREATE TABLE `degree_candidates` (
`id` int(11) NOT NULL,
`first_lastname` char(80) NOT NULL,
`second_lastname` char(80) NOT NULL,
`first_name` char(80) NOT NULL,
`second_name` char(80) NOT NULL,
`index_grade` decimal(11,4) NOT NULL,
`position` int(10) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `degree_candidates`
--
INSERT INTO `degree_candidates` (`id`, `first_lastname`, `second_lastname`, `first_name`, `second_name`, `index_grade`, `position`) VALUES
(1, 'Aranguren', 'Castro', 'Jose', 'Daniel', '12.4567', NULL),
(2, 'Bolivar', 'Perez', 'Hector', 'Emisael', '11.9435', NULL),
(3, 'Castillo', 'Zambrano', 'Yazmin', 'Gabriela', '16.0637', NULL),
(4, 'Castillo', 'Zerpa', 'Maria', 'Jose', '15.9730', NULL),
(5, 'Gonzalez', 'Guedez', 'Juan', 'Jose', '13.2503', NULL),
(6, 'Melendez', 'Perez', 'Yoselin', 'Josefina', '14.4487', NULL),
(7, 'Sanchez', 'Urrutia', 'Gabriela', '', '15.3623', NULL),
(8, 'Sanchez', 'Yepez', 'Miguel', 'Enrique', '12.7483', NULL),
(9, 'Timaure', 'Castro', 'Yusbeli', 'Maria', '17.3773', NULL),
(10, 'Torin', 'Fernandez', 'Rafael', 'Jose', '13.6263', NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `graduandos`
--
ALTER TABLE `degree_candidates`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `degree_candidates`
--
ALTER TABLE `degree_candidates`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment