-- phpMyAdmin SQL Dump
-- version 4.6.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Sep 29, 2016 at 02:12 AM
-- Server version: 5.7.13-log
-- PHP Version: 5.6.22
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: `pruebas`
--
CREATE DATABASE IF NOT EXISTS `pruebas` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `pruebas`;
-- --------------------------------------------------------
--
-- Table structure for table `notas`
--
CREATE TABLE `notas` (
`id` int(11) NOT NULL,
`nombre` varchar(100) NOT NULL,
`materia` varchar(100) NOT NULL,
`nota1` varchar(20) NOT NULL,
`nota2` varchar(20) NOT NULL,
`nota3` varchar(20) NOT NULL,
`activo` varchar(5) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `notas`
--
INSERT INTO `notas` (`id`, `nombre`, `materia`, `nota1`, `nota2`, `nota3`, `activo`) VALUES
(1, 'nombre', 'matematicas', '##', '##', '##', 'S'),
(2, 'nombre', 'español', '##', '##', '##', 'S'),
(3, 'nombre', 'religion', '##', '##', '##', 'S'),
(4, 'nombre', 'matematicas', '##', '##', '##', 'S'),
(5, 'nombre', 'español', '##', '##', '##', 'S'),
(6, 'nombre', 'religion', '##', '##', '##', 'S'),
(7, 'nombre', 'matematicas', '##', '##', '##', 'S'),
(8, 'nombre', 'español', '##', '##', '##', 'S'),
(9, 'nombre', 'religion', '##', '##', '##', 'S'),
(10, 'nombre', 'matematicas', '##', '##', '##', 'S');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `notas`
--
ALTER TABLE `notas`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `notas`
--
ALTER TABLE `notas`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
/*!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 */;
No hay comentarios.:
Publicar un comentario