Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
30 views
5 pages
Script
script
Uploaded by
Jhon Cespedes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download
Save
Save Script For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
30 views
5 pages
Script
script
Uploaded by
Jhon Cespedes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save Script For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 5
Search
Fullscreen
-- MySQL dump 10.13 Distrib 5.7.
17, for Win64 (x86_64)
--
-- Host: localhost Database: laboratorio_1
-- ------------------------------------------------------
-- Server version 5.7.17-log
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0
*/;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `actividades`
--
DROP TABLE IF EXISTS `actividades`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `actividades` (
`idActividades` int(11) NOT NULL,
`Tipo_Actividad` varchar(45) DEFAULT NULL,
`Fecha_Inicio` date DEFAULT NULL,
`Valor_Producido` double DEFAULT NULL,
`Valor_Gastado` double DEFAULT NULL,
PRIMARY KEY (`idActividades`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `actividades`
--
LOCK TABLES `actividades` WRITE;
/*!40000 ALTER TABLE `actividades` DISABLE KEYS */;
/*!40000 ALTER TABLE `actividades` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Temporary view structure for view `creacion_vista`
--
DROP TABLE IF EXISTS `creacion_vista`;
/*!50001 DROP VIEW IF EXISTS `creacion_vista`*/;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
/*!50001 CREATE VIEW `creacion_vista` AS SELECT
1 AS `idDesmovilizados`,
1 AS `Nombres`,
1 AS `Apellidos`,
1 AS `Alias`,
1 AS `Numero_Celular`,
1 AS `Zona_Concentracion`,
1 AS `Direccion_Residencia`,
1 AS `Tipo_Sangre`*/;
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `desmovilizados`
--
DROP TABLE IF EXISTS `desmovilizados`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `desmovilizados` (
`idDesmovilizados` int(11) NOT NULL,
`Nombres` varchar(45) DEFAULT NULL,
`Apellidos` varchar(45) DEFAULT NULL,
`Alias` varchar(45) DEFAULT NULL,
`Numero_Celular` decimal(10,0) DEFAULT NULL,
`Zona_Concentracion` varchar(45) DEFAULT NULL,
`Direccion_Residencia` varchar(45) DEFAULT NULL,
`Tipo_Sangre` varchar(45) DEFAULT NULL,
PRIMARY KEY (`idDesmovilizados`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `desmovilizados`
--
LOCK TABLES `desmovilizados` WRITE;
/*!40000 ALTER TABLE `desmovilizados` DISABLE KEYS */;
/*!40000 ALTER TABLE `desmovilizados` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `giros`
--
DROP TABLE IF EXISTS `giros`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `giros` (
`idGiros` int(11) NOT NULL,
`Fecha_Giro` date DEFAULT NULL,
`Valor_Giro` double DEFAULT NULL,
`Entidad` varchar(45) DEFAULT NULL,
PRIMARY KEY (`idGiros`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `giros`
--
LOCK TABLES `giros` WRITE;
/*!40000 ALTER TABLE `giros` DISABLE KEYS */;
/*!40000 ALTER TABLE `giros` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pagador`
--
DROP TABLE IF EXISTS `pagador`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pagador` (
`idPagador` int(11) NOT NULL,
`Nombres` varchar(45) DEFAULT NULL,
`Apellidos` varchar(45) DEFAULT NULL,
PRIMARY KEY (`idPagador`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pagador`
--
LOCK TABLES `pagador` WRITE;
/*!40000 ALTER TABLE `pagador` DISABLE KEYS */;
/*!40000 ALTER TABLE `pagador` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `proyecto`
--
DROP TABLE IF EXISTS `proyecto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proyecto` (
`idProyecto` int(11) NOT NULL,
`Descripcion_Proyecto` varchar(45) DEFAULT NULL,
`Nombre_Proyecto` varchar(45) DEFAULT NULL,
`Ubicacion` varchar(45) DEFAULT NULL,
`Valor` double DEFAULT NULL,
PRIMARY KEY (`idProyecto`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `proyecto`
--
LOCK TABLES `proyecto` WRITE;
/*!40000 ALTER TABLE `proyecto` DISABLE KEYS */;
/*!40000 ALTER TABLE `proyecto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tarjeta`
--
DROP TABLE IF EXISTS `tarjeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tarjeta` (
`idtarjeta` int(11) NOT NULL,
`Fecha_Apertura` date DEFAULT NULL,
`Fecha_Pago` date DEFAULT NULL,
`Valor_Pago` double DEFAULT NULL,
PRIMARY KEY (`idtarjeta`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tarjeta`
--
LOCK TABLES `tarjeta` WRITE;
/*!40000 ALTER TABLE `tarjeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `tarjeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ubicacion`
--
DROP TABLE IF EXISTS `ubicacion`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ubicacion` (
`idubicacion` int(11) NOT NULL,
`Departamento` varchar(45) DEFAULT NULL,
`Municipio` varchar(45) DEFAULT NULL,
PRIMARY KEY (`idubicacion`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ubicacion`
--
LOCK TABLES `ubicacion` WRITE;
/*!40000 ALTER TABLE `ubicacion` DISABLE KEYS */;
/*!40000 ALTER TABLE `ubicacion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Final view structure for view `creacion_vista`
--
/*!50001 DROP VIEW IF EXISTS `creacion_vista`*/;
/*!50001 SET @saved_cs_client = @@character_set_client */;
/*!50001 SET @saved_cs_results = @@character_set_results */;
/*!50001 SET @saved_col_connection = @@collation_connection */;
/*!50001 SET character_set_client = utf8 */;
/*!50001 SET character_set_results = utf8 */;
/*!50001 SET collation_connection = utf8_general_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `creacion_vista` AS select `desmovilizados`.`idDesmovilizados` AS
`idDesmovilizados`,`desmovilizados`.`Nombres` AS `Nombres`,`desmovilizados`.`Ape
llidos` AS `Apellidos`,`desmovilizados`.`Alias` AS `Alias`,`desmovilizados`.`Num
ero_Celular` AS `Numero_Celular`,`desmovilizados`.`Zona_Concentracion` AS `Zona_
Concentracion`,`desmovilizados`.`Direccion_Residencia` AS `Direccion_Residencia`
,`desmovilizados`.`Tipo_Sangre` AS `Tipo_Sangre` from `desmovilizados` where (`d
esmovilizados`.`idDesmovilizados` = 1) */;
/*!50001 SET character_set_client = @saved_cs_client */;
/*!50001 SET character_set_results = @saved_cs_results */;
/*!50001 SET collation_connection = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-03-31 20:30:21
You might also like
A World of Gangs. Armed Young PDF
PDF
No ratings yet
A World of Gangs. Armed Young PDF
234 pages
Congenital Anomalies
PDF
83% (6)
Congenital Anomalies
54 pages
Restaurant Management System Database Schema: Inventory
PDF
No ratings yet
Restaurant Management System Database Schema: Inventory
18 pages
Database Backup.sql 2
PDF
No ratings yet
Database Backup.sql 2
1,558 pages
Plumbing Design Manual 01
PDF
No ratings yet
Plumbing Design Manual 01
107 pages
Base de Datos (BD - Ventas) - 1
PDF
No ratings yet
Base de Datos (BD - Ventas) - 1
14 pages
Intership Report On General Banking of Standard Bank
PDF
100% (1)
Intership Report On General Banking of Standard Bank
44 pages
Review of the Roles of the Minister of Justice and Attorney General of Canada_3
PDF
No ratings yet
Review of the Roles of the Minister of Justice and Attorney General of Canada_3
75 pages
RENTAL HOUSE MANAGEMENT SYSTEM (Source Code)
PDF
No ratings yet
RENTAL HOUSE MANAGEMENT SYSTEM (Source Code)
6 pages
Mysql
PDF
No ratings yet
Mysql
115 pages
Aqa gcse business studies paper 1 2023
PDF
No ratings yet
Aqa gcse business studies paper 1 2023
58 pages
tata_arbitrage_fund_sid_oct23
PDF
No ratings yet
tata_arbitrage_fund_sid_oct23
53 pages
Backup 2
PDF
No ratings yet
Backup 2
59 pages
Script Base de Datos Ejemplo Northwind
PDF
No ratings yet
Script Base de Datos Ejemplo Northwind
63 pages
Reckless Obsession An Opposites Attract Irish Mafia Romance Deborah Garland instant download
PDF
100% (1)
Reckless Obsession An Opposites Attract Irish Mafia Romance Deborah Garland instant download
33 pages
Libreria PDF
PDF
No ratings yet
Libreria PDF
18 pages
Presta Mo
PDF
No ratings yet
Presta Mo
34 pages
MySQL Dump 10
PDF
No ratings yet
MySQL Dump 10
57 pages
Sophos Firewall Question 2
PDF
No ratings yet
Sophos Firewall Question 2
4 pages
Classicmodels SQL
PDF
No ratings yet
Classicmodels SQL
56 pages
Drop Table If Exists Create Table Int Not Null Varchar Not Null Date Not Null Not Null Default Varchar Default Null Primary Key Default
PDF
No ratings yet
Drop Table If Exists Create Table Int Not Null Varchar Not Null Date Not Null Not Null Default Varchar Default Null Primary Key Default
8 pages
Class 7 History I TERM Examination 2021-22
PDF
No ratings yet
Class 7 History I TERM Examination 2021-22
3 pages
DDL y DML
PDF
No ratings yet
DDL y DML
10 pages
Star
PDF
No ratings yet
Star
21 pages
Database Record 2022-2023.Docx (1)
PDF
No ratings yet
Database Record 2022-2023.Docx (1)
70 pages
gcse-9-1-geography-b-knowledge-organiser-paper-1-global-geographical-issues
PDF
No ratings yet
gcse-9-1-geography-b-knowledge-organiser-paper-1-global-geographical-issues
13 pages
PHP Index
PDF
No ratings yet
PHP Index
88 pages
Database
PDF
No ratings yet
Database
34 pages
TICS
PDF
No ratings yet
TICS
6 pages
Project
PDF
No ratings yet
Project
9 pages
Ss Dbms
PDF
No ratings yet
Ss Dbms
6 pages
Base de Dato Licores
PDF
No ratings yet
Base de Dato Licores
7 pages
DB
PDF
No ratings yet
DB
18 pages
SQL CLASS2
PDF
No ratings yet
SQL CLASS2
15 pages
MYSQL Day1
PDF
No ratings yet
MYSQL Day1
4 pages
Satabase
PDF
No ratings yet
Satabase
7 pages
Vistas
PDF
No ratings yet
Vistas
5 pages
SQL Sales Management
PDF
No ratings yet
SQL Sales Management
6 pages
SQL Code
PDF
No ratings yet
SQL Code
15 pages
Assignment 1A
PDF
No ratings yet
Assignment 1A
13 pages
4.3 Consultas en SQL Server: - Creando La Bsse de Datos HOTEL - GALAXIA
PDF
No ratings yet
4.3 Consultas en SQL Server: - Creando La Bsse de Datos HOTEL - GALAXIA
14 pages
DBML 2
PDF
No ratings yet
DBML 2
9 pages
MySQL
PDF
No ratings yet
MySQL
7 pages
R 73
PDF
No ratings yet
R 73
8 pages
Practica Mysql
PDF
No ratings yet
Practica Mysql
4 pages
Practica_Farmacia
PDF
No ratings yet
Practica_Farmacia
9 pages
Gestao Llivraria Online
PDF
No ratings yet
Gestao Llivraria Online
6 pages
Parte Tres Parcial
PDF
No ratings yet
Parte Tres Parcial
3 pages
CS
PDF
No ratings yet
CS
11 pages
Pengaruh Keadilan Organisasional Terhadap Motivasi Dan Kinerja Karyawan
PDF
No ratings yet
Pengaruh Keadilan Organisasional Terhadap Motivasi Dan Kinerja Karyawan
18 pages
Sakila-schema Copy 2
PDF
No ratings yet
Sakila-schema Copy 2
13 pages
The Basel Convention On The Control of Transboundary Movements of Hazardous Wastes and Their Disposal
PDF
No ratings yet
The Basel Convention On The Control of Transboundary Movements of Hazardous Wastes and Their Disposal
25 pages
DEMAND
PDF
No ratings yet
DEMAND
9 pages
Eco Organic Farming
PDF
No ratings yet
Eco Organic Farming
15 pages
Just Data
PDF
No ratings yet
Just Data
82 pages
Daada
PDF
No ratings yet
Daada
5 pages
Mifospltaform Tenants First Time Install
PDF
No ratings yet
Mifospltaform Tenants First Time Install
8 pages
Base Mecanic A
PDF
No ratings yet
Base Mecanic A
4 pages
Sql Queries_Madhu
PDF
No ratings yet
Sql Queries_Madhu
25 pages
scriptSQL
PDF
No ratings yet
scriptSQL
8 pages
cst363 Schema
PDF
No ratings yet
cst363 Schema
14 pages
PhilPharma vs. Pfizer
PDF
No ratings yet
PhilPharma vs. Pfizer
14 pages
On Intercultural Communication
PDF
100% (1)
On Intercultural Communication
10 pages
New Text Document
PDF
No ratings yet
New Text Document
4 pages
Practical 2
PDF
No ratings yet
Practical 2
10 pages
4) PCI Bank vs. Balmaceda, G.R. No. 158143, September 21, 2011
PDF
No ratings yet
4) PCI Bank vs. Balmaceda, G.R. No. 158143, September 21, 2011
11 pages
DBMS Project Report (07, 69, 115)
PDF
No ratings yet
DBMS Project Report (07, 69, 115)
13 pages
SQL Practice-HR DataBase
PDF
No ratings yet
SQL Practice-HR DataBase
12 pages
Poem 2 Keeping Quiet
PDF
No ratings yet
Poem 2 Keeping Quiet
8 pages
data of sql
PDF
No ratings yet
data of sql
4 pages
Veterinaria Bdprueba
PDF
No ratings yet
Veterinaria Bdprueba
3 pages
Bddoc
PDF
No ratings yet
Bddoc
1 page
Set Search - Path To Sales CREATE TABLE Customers (Id Integer NOT NULL, Lastname Text NOT NULL
PDF
No ratings yet
Set Search - Path To Sales CREATE TABLE Customers (Id Integer NOT NULL, Lastname Text NOT NULL
3 pages
Standard 3 PDF
PDF
No ratings yet
Standard 3 PDF
19 pages
Colonial Expansion
PDF
No ratings yet
Colonial Expansion
10 pages
Codigo
PDF
No ratings yet
Codigo
1 page
Hadi Printable
PDF
No ratings yet
Hadi Printable
4 pages
INUWA PRINTABLE
PDF
No ratings yet
INUWA PRINTABLE
4 pages
Sports Final Presentation
PDF
No ratings yet
Sports Final Presentation
6 pages
ACON3D Partnership and Entry Agreement
PDF
No ratings yet
ACON3D Partnership and Entry Agreement
5 pages
File PDF
PDF
No ratings yet
File PDF
2 pages
Radiomuseum Philips Eindhoven B4x12a 40770
PDF
No ratings yet
Radiomuseum Philips Eindhoven B4x12a 40770
2 pages
Building A Vintage Wardrobe
PDF
100% (1)
Building A Vintage Wardrobe
4 pages
74 - Digest - Lozano V Martinez - G.R. No. L-63419 - 18 December 1986
PDF
No ratings yet
74 - Digest - Lozano V Martinez - G.R. No. L-63419 - 18 December 1986
2 pages
Tuguegarao City, Cagayan, R02
PDF
No ratings yet
Tuguegarao City, Cagayan, R02
3 pages
Module 6 Reviewer Philosophy
PDF
No ratings yet
Module 6 Reviewer Philosophy
2 pages
Script Little Brother
PDF
No ratings yet
Script Little Brother
2 pages
Paris syndrome
PDF
No ratings yet
Paris syndrome
1 page
How to a Developers Guide to 4k: Developer edition, #3
From Everand
How to a Developers Guide to 4k: Developer edition, #3
Xinc Cyberwizard
No ratings yet
Basic DBA Query v.1: Oracle Database
From Everand
Basic DBA Query v.1: Oracle Database
Oraclesql-plsql
5/5 (1)