sql
stringlengths
6
1.05M
-- savepoint.test -- -- execsql { RELEASE sp1 } RELEASE sp1
SET DEFINE OFF; Insert into DZ_SWAGGER3_MEDIA (MEDIA_ID, MEDIA_SCHEMA_ID, VERSIONID) Values ('Sample.Navigation30.MEDIA', 'Sample.Navigation30.root', 'SAMPLE'); Insert into DZ_SWAGGER3_MEDIA (MEDIA_ID, MEDIA_SCHEMA_ID, VERSIONID) Values ('Sample.Streamcat.MEDIA', 'Sample.Streamcat.root', 'SAMPLE'); Insert into DZ_SWAGGER3_MEDIA (MEDIA_ID, MEDIA_SCHEMA_ID, VERSIONID) Values ('Sample.Streamcat.REQUESTBODY.MEDIA', 'Sample.Streamcat.REQUESTBODY.root', 'SAMPLE'); Insert into DZ_SWAGGER3_MEDIA (MEDIA_ID, MEDIA_SCHEMA_ID, VERSIONID) Values ('Sample.csv.download.MEDIA', 'Sample.csv.download.root', 'SAMPLE'); Insert into DZ_SWAGGER3_MEDIA (MEDIA_ID, MEDIA_SCHEMA_ID, VERSIONID) Values ('Sample.randomnav.CALLBACK.MEDIA', 'Sample.randomnav.CALLBACK.root', 'SAMPLE'); Insert into DZ_SWAGGER3_MEDIA (MEDIA_ID, MEDIA_SCHEMA_ID, VERSIONID) Values ('Sample.randomnav.MEDIA', 'Sample.randomnav.root', 'SAMPLE'); COMMIT;
/* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50553 Source Host : localhost:3306 Source Database : Target Server Type : MYSQL Target Server Version : 50553 File Encoding : 65001 Date: 2017-07-19 10:42:08 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for href="/home/fontnode -- ---------------------------- DROP TABLE IF EXISTS `href="/home/fontnode`; CREATE TABLE `href="/home/fontnode` ( `id` int(11) NOT NULL AUTO_INCREMENT, `node_name` varchar(155) NOT NULL DEFAULT '' COMMENT '节点名称', `control_name` varchar(155) NOT NULL DEFAULT '' COMMENT '控制器名', `action_name` varchar(155) NOT NULL COMMENT '方法名', `is_menu` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否是菜单项 1不是 2是', `type_id` int(11) NOT NULL COMMENT '父级节点id', `style` varchar(155) DEFAULT '' COMMENT '菜单样式', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of href="/home/fontnode -- ---------------------------- INSERT INTO `href="/home/fontnode` VALUES ('1', '用户管理', '#', '#', '2', '0', 'fa fa-users'); INSERT INTO `href="/home/fontnode` VALUES ('2', '管理员管理', 'user', 'index', '2', '1', ''); INSERT INTO `href="/home/fontnode` VALUES ('3', '添加管理员', 'user', 'useradd', '1', '2', ''); INSERT INTO `href="/home/fontnode` VALUES ('4', '编辑管理员', 'user', 'useredit', '1', '2', ''); INSERT INTO `href="/home/fontnode` VALUES ('5', '删除管理员', 'user', 'userdel', '1', '2', ''); INSERT INTO `href="/home/fontnode` VALUES ('6', '角色管理', 'role', 'index', '2', '1', ''); INSERT INTO `href="/home/fontnode` VALUES ('7', '添加角色', 'role', 'roleadd', '1', '6', ''); INSERT INTO `href="/home/fontnode` VALUES ('8', '编辑角色', 'role', 'roleedit', '1', '6', ''); INSERT INTO `href="/home/fontnode` VALUES ('9', '删除角色', 'role', 'roledel', '1', '6', ''); INSERT INTO `href="/home/fontnode` VALUES ('10', '分配权限', 'role', 'giveaccess', '1', '6', ''); INSERT INTO `href="/home/fontnode` VALUES ('11', '系统管理', '#', '#', '2', '0', 'fa fa-desktop'); INSERT INTO `href="/home/fontnode` VALUES ('12', '数据备份/还原', 'data', 'index', '2', '11', ''); INSERT INTO `href="/home/fontnode` VALUES ('13', '备份数据', 'data', 'importdata', '1', '12', ''); INSERT INTO `href="/home/fontnode` VALUES ('14', '还原数据', 'data', 'backdata', '1', '12', ''); INSERT INTO `href="/home/fontnode` VALUES ('15', '节点管理', 'node', 'index', '2', '1', ''); INSERT INTO `href="/home/fontnode` VALUES ('16', '添加节点', 'node', 'nodeadd', '1', '15', ''); INSERT INTO `href="/home/fontnode` VALUES ('17', '编辑节点', 'node', 'nodeedit', '1', '15', ''); INSERT INTO `href="/home/fontnode` VALUES ('18', '删除节点', 'node', 'nodedel', '1', '15', ''); -- ---------------------------- -- Table structure for href="/home/fontrole -- ---------------------------- DROP TABLE IF EXISTS `href="/home/fontrole`; CREATE TABLE `href="/home/fontrole` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `role_name` varchar(155) NOT NULL COMMENT '角色名称', `rule` varchar(255) DEFAULT '' COMMENT '权限节点数据', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of href="/home/fontrole -- ---------------------------- INSERT INTO `href="/home/fontrole` VALUES ('1', '超级管理员', ''); INSERT INTO `href="/home/fontrole` VALUES ('2', '系统维护员', '1,2,3,4,5,6,7,8,9,10'); -- ---------------------------- -- Table structure for href="/home/fontuser -- ---------------------------- DROP TABLE IF EXISTS `href="/home/fontuser`; CREATE TABLE `href="/home/fontuser` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_name` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '用户名', `password` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '密码', `login_times` int(11) NOT NULL DEFAULT '0' COMMENT '登陆次数', `last_login_ip` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '最后登录IP', `last_login_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后登录时间', `real_name` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '真实姓名', `status` int(1) NOT NULL DEFAULT '0' COMMENT '状态', `role_id` int(11) NOT NULL DEFAULT '1' COMMENT '用户角色id', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- ---------------------------- -- Records of href="/home/fontuser -- ---------------------------- INSERT INTO `href="/home/fontuser` VALUES ('1', 'admin', '2<PASSWORD>', '35', '127.0.0.1', '1500365358', 'admin', '1', '1');
<gh_stars>0 -- Verify postgraphile_roles:anonymous_role on pg BEGIN; select 1/count(*) from pg_roles where rolname=:'DATABASE_AUTHENTICATOR'; ROLLBACK;
--liquibase formatted sql --changeset user:1518621785211-1 ALTER TABLE jasper_templates DROP COLUMN data; --changeset user:1518621785211-2 ALTER TABLE jasper_templates ADD data MEDIUMBLOB NULL; --changeset user:1518621785211-3 ALTER TABLE jasper_templates ALTER visible DROP DEFAULT;
USE `reference`; INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '212-617-9946', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '919-812-3498', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '919-605-4592', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '818-222-6529', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '566-324-9898', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '757-455-9832', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '294-721-1802', '<EMAIL>'); INSERT INTO `contacts` (`name`, `phone`, `email`) VALUES ('<NAME>', '405-222-7982', '<EMAIL>');
<gh_stars>0 CREATE DATABASE instagram /*!40100 DEFAULT CHARACTER SET utf8 */; USE instagram; SET NAMES utf8 ; CREATE TABLE conta ( nomeUsuario varchar(50) NOT NULL, senha varchar(72) NOT NULL, email varchar(100) DEFAULT NULL, ativo tinyint(1) DEFAULT NULL, inativo tinyint(1) DEFAULT NULL, dataAtualizacao datetime DEFAULT NULL, dataCadastro datetime DEFAULT NULL, nome varchar(100) DEFAULT NULL, codigoVerif varchar(50) DEFAULT NULL, PRIMARY KEY (nomeUsuario) ); CREATE TABLE fotoPerfil ( idFotoPerfil int(11) NOT NULL AUTO_INCREMENT, nomeArquivo varchar(50) NOT NULL, nomeUsuario varchar(50) NOT NULL, datahora datetime DEFAULT NULL, PRIMARY KEY (idFotoPerfil), UNIQUE KEY nomeArquivo_UNIQUE (nomeArquivo), KEY idxFKNomeUsusario (nomeUsuario), CONSTRAINT fkFotoPerfilNomeUsusario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE block ( nomeUsuario1 varchar(50) NOT NULL, nomeUsuario2 varchar(50) NOT NULL, datahora datetime NOT NULL, PRIMARY KEY (nomeUsuario1,nomeUsuario2) ); CREATE TABLE comentario ( isComentario int(11) NOT NULL AUTO_INCREMENT, conteudo varchar(200) DEFAULT NULL, datahora datetime DEFAULT NULL, nomeUsuario varchar(50) DEFAULT NULL, idFoto int(11) DEFAULT NULL, PRIMARY KEY (idComentario), KEY idxFKNomeUsusario (nomeUsuario), KEY idxfkIdFoto (idFoto), CONSTRAINT fkComentarioIdFoto FOREIGN KEY (idFoto) REFERENCES foto (idFoto) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fkComentarioNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE segue ( idSegue int(11) NOT NULL AUTO_INCREMENT, nomeUsuario1 varchar(50) NOT NULL, nomeUsuario2 varchar(50) NOT NULL, dataHora datetime NOT NULL, naoQuandoPostar tinyint(1) DEFAULT '0', PRIMARY KEY (idSegue), UNIQUE KEY nomeUsuario1UNIQUE (nomeUsuario1, nomeUsuario2), KEY idxfkSegueNomeUsuario (nomeUsuario2), CONSTRAINT fkSegueNomeUsuario1 FOREIGN KEY (nomeUsuario1) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fkSegueNomeUsuario2 FOREIGN KEY (nomeUsuario2) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE like ( idLike int(11) NOT NULL AUTO_INCREMENT, nomeUsuario varchar(50) NOT NULL, idFoto int(11) NOT NULL, datahora datetime DEFAULT NULL, PRIMARY KEY (idLike), UNIQUE KEY idFotoUNIQUE (idFoto, nomeUsuario), KEY fkLikeNomeUsuario (nomeUsuario) /*!80000 INVISIBLE */, CONSTRAINT fkLikeIdFoto FOREIGN KEY (idFoto) REFERENCES foto (idFoto) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fkLikeNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE local ( idLocal int(11) NOT NULL AUTO_INCREMENT, local varchar(200) NOT NULL, PRIMARY KEY (idLocal) ); CREATE TABLE foto ( idFoto int(11) NOT NULL AUTO_INCREMENT, titulo varchar(200) DEFAULT NULL, nomeArquivo varchar(50) NOT NULL, datahora datetime DEFAULT NULL, dataAtualizacao datetime DEFAULT NULL, idLocal int(11) DEFAULT NULL, modoCamera varchar(50) DEFAULT NULL, nomeUsuario varchar(50) DEFAULT NULL, PRIMARY KEY (idFoto), UNIQUE KEY nomeUsuarioUNIQUE (nomeArquivo), KEY idxfkIdLoca (idLocal), KEY idxfknomeUsuario (nomeUsuario), CONSTRAINT fkFotoIdLocal FOREIGN KEY (idLocal) REFERENCES local (idLocal) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fkFotoNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE perfil ( nomeUsuario varchar(50) NOT NULL, biografia varchar(100) DEFAULT '', telefone varchar(15) DEFAULT '', sexo varchar(10) DEFAULT 'm', website varchar(100) DEFAULT '', PRIMARY KEY (nomeUsuario), CONSTRAINT fkPerfilNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE resposta ( idResposta int(11) NOT NULL AUTO_INCREMENT, datahora datetime DEFAULT NULL, conteudo varchar(200) DEFAULT NULL, idComentario int(11) DEFAULT NULL, nomeUsuario varchar(50) DEFAULT NULL, PRIMARY KEY (idResposta), KEY idxNomeUsuario (nomeUsuario), KEY idxIdComentario (idComentario), CONSTRAINT fkRespostaIdComentario FOREIGN KEY (idComentario) REFERENCES comentario (idComentario) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fkRespostaNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE configuracao ( nomeUsuario varchar(50) NOT NULL, lingua varchar(10) DEFAULT 'ENG', contaPrivada tinyint(1) DEFAULT '0', PRIMARY KEY (nomeUsuario), KEY idxfkNomeUsuario (nomeUsuario), CONSTRAINT fkConfiguracaoNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE story ( idStory int(11) NOT NULL, datahora datetime DEFAULT NULL, nomeArquivo varchar(50) DEFAULT NULL, nomeUsuario varchar(50) DEFAULT NULL, PRIMARY KEY (idStory), KEY idxfkNomeUsuario (nomeUsuario), CONSTRAINT fkStoryNomeUsuario FOREIGN KEY (nomeUsuario) REFERENCES conta (nomeUsuario) ON DELETE CASCADE ON UPDATE CASCADE );
-- Databricks notebook source -- MAGIC %md-sandbox -- MAGIC <div style="text-align: center; line-height: 0; padding-top: 9px;"> -- MAGIC <img src="https://cdn2.hubspot.net/hubfs/438089/docs/training/dblearning-banner.png" alt="Databricks Learning" width="555" height="64"> -- MAGIC </div> -- COMMAND ---------- -- MAGIC %md-sandbox -- MAGIC &copy; 2018 Databricks, Inc. All rights reserved.<br/> -- COMMAND ---------- -- MAGIC %md -- MAGIC ## Electronics Retail Company, "Initech", with brick & mortar locations as well as an online marketplace -- COMMAND ---------- -- MAGIC %md -- MAGIC ### Business Challenges -- MAGIC * Total revenues have been down 10% YoY -- MAGIC * Online sales growing, but at a slower rate than Amazon and others. Only ~2% YoY, they are looking to grow ~8-10% YoY -- MAGIC * Company wide initiative to increase online traffic and conversion rate to meet that ~8-10% YoY growth target -- COMMAND ---------- -- MAGIC %md -- MAGIC ### Technical Challenges -- MAGIC * Data sets getting too large for existing ETL and SQL users -- MAGIC * Data in many diffrent systems, DBs, ERPs, etc -- MAGIC * KPIs, BI & Reports are stale - Takes days for ELT -- MAGIC * Not able to make realtime decisions -- MAGIC * Despite having a team of 5 Data Scientists, very little impact to the website or revenue -- COMMAND ---------- -- MAGIC %md -- MAGIC ####Azure Databricks is Unified Analytics Platform for Data Engineers, Data Scientist, and Analysis -- MAGIC -- MAGIC ![arch](https://kpistoropen.blob.core.windows.net/collateral/roadshow/azure_roadshow_1.png) -- COMMAND ---------- -- MAGIC %md -- MAGIC ### Today our labs will be with this retail example, but this data transformation exists in all industries and verticals -- MAGIC * Financial Services: Alternitive data, Credit Risk, ATM/CC Fraud Detection -- MAGIC * Shipping, Travel & Transportation: IoT - Connected Trucks, Planes, Ships and Packages -- MAGIC * Health & Life Sciences: Medical Records, Genomics data (growing faster than moore's law) -- MAGIC * Insurance: IoT - Connected Vehicles, Health records, etc -- MAGIC * Energy & Manufacturing: Preventative Maintenance -- MAGIC * IT Security: Log monitoring and Alerts -- COMMAND ---------- -- MAGIC %md-sandbox -- MAGIC &copy; 2018 Databricks, Inc. All rights reserved.<br/> -- MAGIC Apache, Apache Spark, Spark and the Spark logo are trademarks of the <a href="http://www.apache.org/">Apache Software Foundation</a>.<br/> -- MAGIC <br/> -- MAGIC <a href="https://databricks.com/privacy-policy">Privacy Policy</a> | <a href="https://databricks.com/terms-of-use">Terms of Use</a> | <a href="http://help.databricks.com/">Support</a>
<filename>teacher.sql /* Navicat Premium Data Transfer Source Server : cdb-egd5cmgd.gz.tencentcdb.com_10035 Source Server Type : MySQL Source Server Version : 50718 Source Host : cdb-egd5cmgd.gz.tencentcdb.com:10035 Source Schema : teacher Target Server Type : MySQL Target Server Version : 50718 File Encoding : 65001 Date: 13/06/2019 14:55:57 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for t_bkllk -- ---------------------------- DROP TABLE IF EXISTS `t_bkllk`; CREATE TABLE `t_bkllk` ( `id` int(11) NOT NULL AUTO_INCREMENT, `kcmc` varchar(50) DEFAULT NULL COMMENT '课程名称', `sksj` varchar(10) DEFAULT NULL COMMENT '授课时间', `jhxs` varchar(5) DEFAULT NULL COMMENT '计划学时', `kcxs` varchar(5) DEFAULT NULL COMMENT '课程系数', `xyxs` varchar(5) DEFAULT NULL COMMENT '效益系数X', `mtgzl` varchar(5) DEFAULT NULL COMMENT '命题工作量', `jkgzl` varchar(5) DEFAULT NULL COMMENT '监考工作量', `cfbxs` varchar(5) DEFAULT NULL COMMENT '重复班系数', `bzxs` varchar(10) DEFAULT NULL COMMENT '标准学时', `uid` varchar(30) DEFAULT NULL COMMENT '老师uid', `status` int(5) DEFAULT '10' COMMENT '状态', `classesCourseId` int(11) DEFAULT NULL COMMENT '关联id', `courseId` int(11) DEFAULT NULL COMMENT '课程id,用来检测重复数据', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_classes -- ---------------------------- DROP TABLE IF EXISTS `t_classes`; CREATE TABLE `t_classes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL COMMENT '课程名称', `peoples` int(5) DEFAULT NULL COMMENT '班级人数', `status` int(5) NOT NULL DEFAULT '10' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_classes_course -- ---------------------------- DROP TABLE IF EXISTS `t_classes_course`; CREATE TABLE `t_classes_course` ( `id` int(11) NOT NULL AUTO_INCREMENT, `classesId` int(11) DEFAULT NULL COMMENT '班级id', `courseId` int(11) DEFAULT NULL COMMENT '课程id', `uid` char(20) DEFAULT NULL COMMENT '教师uid', PRIMARY KEY (`id`), KEY `class` (`classesId`), KEY `course` (`courseId`), CONSTRAINT `class` FOREIGN KEY (`classesId`) REFERENCES `t_classes` (`id`), CONSTRAINT `course` FOREIGN KEY (`courseId`) REFERENCES `t_course` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_course -- ---------------------------- DROP TABLE IF EXISTS `t_course`; CREATE TABLE `t_course` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL COMMENT '课程名称', `nature` varchar(50) NOT NULL COMMENT '课程性质', `status` int(10) DEFAULT NULL COMMENT '状态', `sksj` varchar(10) DEFAULT NULL COMMENT '授课时间', `jhxs` varchar(10) DEFAULT NULL COMMENT '课内学时', `kcbh` int(10) DEFAULT NULL COMMENT '课程编号', `credit` float(5,1) DEFAULT NULL COMMENT '学分', `knsy` int(4) DEFAULT NULL COMMENT '实验学时', `zxs` int(4) DEFAULT NULL COMMENT '总学时', `attributes` tinyint(4) DEFAULT NULL COMMENT '属性', `uid` char(20) DEFAULT NULL COMMENT '主教师的uid', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_errorLog -- ---------------------------- DROP TABLE IF EXISTS `t_errorLog`; CREATE TABLE `t_errorLog` ( `id` int(11) NOT NULL AUTO_INCREMENT, `errorInfo` varchar(255) DEFAULT NULL, `controller` varchar(255) DEFAULT NULL, `times` datetime DEFAULT NULL, `uid` varchar(50) DEFAULT NULL, `remarks` varchar(255) DEFAULT NULL, `lines` int(10) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_experiment -- ---------------------------- DROP TABLE IF EXISTS `t_experiment`; CREATE TABLE `t_experiment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `numbering` int(10) DEFAULT NULL COMMENT '实验编号', `jhxs` int(5) DEFAULT NULL COMMENT '计划学时', `sksj` int(5) DEFAULT NULL COMMENT '授课时间', `years` int(4) DEFAULT NULL COMMENT '学年', `type` tinyint(4) DEFAULT NULL COMMENT '类型', `uid` char(32) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_experiment_classes -- ---------------------------- DROP TABLE IF EXISTS `t_experiment_classes`; CREATE TABLE `t_experiment_classes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `experimentId` int(11) DEFAULT NULL, `classesId` int(11) DEFAULT NULL, `uid` char(32) DEFAULT NULL, PRIMARY KEY (`id`), KEY `experimentId` (`experimentId`), KEY `classesId` (`classesId`), CONSTRAINT `classesId` FOREIGN KEY (`classesId`) REFERENCES `t_classes` (`id`), CONSTRAINT `experimentId` FOREIGN KEY (`experimentId`) REFERENCES `t_experiment` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_loginLog -- ---------------------------- DROP TABLE IF EXISTS `t_loginLog`; CREATE TABLE `t_loginLog` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` varchar(50) DEFAULT NULL, `ip` varchar(50) DEFAULT NULL COMMENT 'ip', `local` varchar(30) DEFAULT NULL COMMENT 'ip地点', `status` int(10) DEFAULT NULL COMMENT '登陆状态', `time` datetime DEFAULT NULL COMMENT '登陆时间', `isp` varchar(40) DEFAULT NULL COMMENT '运营商', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_menus -- ---------------------------- DROP TABLE IF EXISTS `t_menus`; CREATE TABLE `t_menus` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `icon` varchar(100) DEFAULT NULL COMMENT '菜单图标', `urls` varchar(255) DEFAULT NULL, `urlType` int(5) NOT NULL DEFAULT '1' COMMENT '是否为外链,外链为2,默认为1', `status` int(5) NOT NULL DEFAULT '10' COMMENT '状态,10为正常,默认为10', `root` int(5) DEFAULT NULL COMMENT '根节点', `outh` int(10) DEFAULT NULL COMMENT '权限', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_system -- ---------------------------- DROP TABLE IF EXISTS `t_system`; CREATE TABLE `t_system` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `status` varchar(50) DEFAULT NULL COMMENT '状态或者数值', `root` int(5) DEFAULT NULL, `beizhu` varchar(255) DEFAULT NULL, `msg` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_token -- ---------------------------- DROP TABLE IF EXISTS `t_token`; CREATE TABLE `t_token` ( `id` int(11) NOT NULL AUTO_INCREMENT, `token` varchar(100) DEFAULT NULL, `addTime` varchar(50) DEFAULT NULL COMMENT '生成token时间,时间戳', `expired` int(10) DEFAULT NULL COMMENT '过期时间,单位为秒', `uid` varchar(50) DEFAULT NULL COMMENT '相应教师的uid', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_users -- ---------------------------- DROP TABLE IF EXISTS `t_users`; CREATE TABLE `t_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` varchar(50) NOT NULL COMMENT '用户标识', `name` varchar(10) NOT NULL COMMENT '真实姓名', `phone` varchar(20) DEFAULT NULL COMMENT '手机号', `token` varchar(255) DEFAULT NULL COMMENT 'token', `jwname` varchar(100) DEFAULT NULL COMMENT '教务用户名', `status` int(5) DEFAULT '10' COMMENT '状态', `preparedBy` int(5) DEFAULT '1' COMMENT '编制,默认1为行健教师', `position` tinyint(4) DEFAULT NULL COMMENT '职位', `pwd` varchar(100) DEFAULT NULL, `lastip` varchar(30) DEFAULT NULL COMMENT '上一次登录ip', `lasttime` varchar(30) DEFAULT NULL COMMENT '上一次登录时间', `errorNum` tinyint(4) DEFAULT NULL COMMENT '出错次数', `department` int(4) DEFAULT NULL COMMENT '部门', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_varible -- ---------------------------- DROP TABLE IF EXISTS `t_varible`; CREATE TABLE `t_varible` ( `id` int(11) NOT NULL AUTO_INCREMENT, `category` varchar(50) DEFAULT NULL COMMENT '功能类别', `names` varchar(50) DEFAULT NULL, `values` float(50,3) DEFAULT NULL, `number` smallint(10) DEFAULT NULL COMMENT '都可以存放数值,默认values', `operate` varchar(100) DEFAULT NULL COMMENT '操作,用于存放大小', `remarks` varchar(100) DEFAULT NULL COMMENT '备注', `attributes` varchar(50) DEFAULT NULL COMMENT '属性', `tips` varchar(100) DEFAULT NULL COMMENT '提示', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_zdsy -- ---------------------------- DROP TABLE IF EXISTS `t_zdsy`; CREATE TABLE `t_zdsy` ( `id` int(11) NOT NULL AUTO_INCREMENT, `symc` varchar(100) DEFAULT NULL COMMENT '实验名称', `zdlss` int(4) DEFAULT NULL COMMENT '同一批次指导老师数', `zdsj` int(4) DEFAULT NULL COMMENT '指导时间', `jhxs` int(4) DEFAULT NULL COMMENT '计划学时', `xyxs` float(4,1) DEFAULT NULL COMMENT '效益系数', `bzxs` float(4,2) DEFAULT NULL COMMENT '标准学时', `sjbzxs` float(4,2) DEFAULT NULL COMMENT '实际标准学时', `uid` varchar(50) DEFAULT NULL, `experimentClassesId` int(11) DEFAULT NULL, `experimentId` int(11) DEFAULT NULL, `addTimes` datetime DEFAULT NULL COMMENT '添加时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for t_ztfdk -- ---------------------------- DROP TABLE IF EXISTS `t_ztfdk`; CREATE TABLE `t_ztfdk` ( `id` int(11) NOT NULL AUTO_INCREMENT, `x` float(11,2) DEFAULT NULL, `sum` float(11,2) DEFAULT NULL, `status` int(10) DEFAULT NULL, `uid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4; SET FOREIGN_KEY_CHECKS = 1;
create database if not exists `msg_schedule`; use `msg_schedule`; create table `order` ( id varchar(64) not null primary key, name varchar(20) not null );
<reponame>Rob--W/phabricator<filename>resources/sql/autopatches/20150725.countdown.mailkey.1.sql ALTER TABLE {$NAMESPACE}_countdown.countdown ADD mailKey binary(20) NOT NULL;
<reponame>kmmao/KubeOperator drop index name on ko_cluster_storage_provisioner; ALTER TABLE ko_cluster_storage_provisioner ADD UNIQUE KEY(cluster_id, name);
-- -------------------------------------------------------- -- Host: 127.0.0.1 -- Server version: 5.7.10-log - MySQL Community Server (GPL) -- Server OS: Win32 -- HeidiSQL Version: 9.3.0.4984 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8mb4 */; /*!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' */; -- Dumping structure for table visconti db.student CREATE TABLE IF NOT EXISTS `student` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Created on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `Last modified on` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `Last login activity` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `Trash` enum('Yes','No') DEFAULT NULL, `Given name` varchar(20) NOT NULL, `Family name` varchar(20) NOT NULL, `Email` varchar(20) NOT NULL, `Birth year` int(11) NOT NULL, `Password` varchar(20) NOT NULL, `Reset password expiry date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `Mobile Number` varchar(20) NOT NULL, `Phone Number` varchar(20) NOT NULL, `Fax` varchar(20) NOT NULL, `Agreed on terms` enum('Yes','No') NOT NULL DEFAULT 'Yes', `Sector` int(11) NOT NULL, `Sub-sector` int(11) NOT NULL, `Account Confirmed` enum('Yes','No') DEFAULT 'No', PRIMARY KEY (`ID`), UNIQUE KEY `Email` (`Email`), KEY `FK_student_sector` (`Sector`), KEY `FK_student_sub_sector` (`Sub-sector`), CONSTRAINT `FK_student_sector` FOREIGN KEY (`Sector`) REFERENCES `sector` (`ID`), CONSTRAINT `FK_student_sub_sector` FOREIGN KEY (`Sub-sector`) REFERENCES `sub_sector` (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Student entity holds data about students that are submitting project canvas to experts to be evaluated.'; -- Dumping data for table visconti db.student: ~0 rows (approximately) /*!40000 ALTER TABLE `student` DISABLE KEYS */; /*!40000 ALTER TABLE `student` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/* Navicat Premium Data Transfer Source Server : mysql57 Source Server Type : MySQL Source Server Version : 50717 Source Host : localhost:3306 Source Schema : mygym Target Server Type : MySQL Target Server Version : 50717 File Encoding : 65001 Date: 14/10/2020 14:43:23 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for card -- ---------------------------- DROP TABLE IF EXISTS `card`; CREATE TABLE `card` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cardId` int(20) NULL DEFAULT NULL, `userId` int(11) NULL DEFAULT NULL, `amount` double(11, 0) NULL DEFAULT 1000, `credit` int(11) NULL DEFAULT 1000 COMMENT '卡积分', `status` int(11) NULL DEFAULT NULL COMMENT '状态(0:正常 1:挂失)', `staffId` int(20) NULL DEFAULT NULL, `levelId` int(11) NULL DEFAULT NULL COMMENT '会员等级ID', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 74 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '会员卡' ROW_FORMAT = Compact; -- ---------------------------- -- Records of card -- ---------------------------- INSERT INTO `card` VALUES (1, 100001, 1090001, 13822, 1620, 1, 20190001, 4); INSERT INTO `card` VALUES (2, 100002, 1090002, 34847, 5600, 1, 20190001, 4); INSERT INTO `card` VALUES (3, 100003, 1090003, 44277, 4500, 1, 20190001, 4); INSERT INTO `card` VALUES (4, 100004, 1090004, 337140, 4700, 1, 20190001, 4); INSERT INTO `card` VALUES (5, 100005, 1090005, 138560, 8500, 1, 20190001, 4); INSERT INTO `card` VALUES (6, 100006, 1090006, 73140, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (7, 100007, 1090007, 31000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (8, 100008, 1090008, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (9, 100009, 1090009, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (10, 100010, 1090010, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (11, 100011, 1090011, 3500, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (12, 100012, 1090012, 1410, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (13, 100013, 1090013, 1180, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (14, 100014, 1090014, 1180, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (15, 100015, 1090015, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (16, 100016, 1090016, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (17, 100017, 1090017, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (18, 100018, 1090018, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (19, 100019, 1090019, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (20, 100020, 1090020, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (21, 100021, 1090021, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (22, 100022, 1090022, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (23, 100023, 1090023, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (24, 100024, 1090024, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (25, 100025, 1090025, 1000, 1000, 1, 20190001, 3); INSERT INTO `card` VALUES (47, 999, 999, 998868, 1000, 1, 20190001, 4); INSERT INTO `card` VALUES (55, 100026, 1090026, 1000, 1000, 1, 20190001, 4); INSERT INTO `card` VALUES (59, 100027, 1090027, 100000, 100000, 1, 20190001, 5); INSERT INTO `card` VALUES (73, 100028, 1090028, 1325, 1000, 1, 20190001, 3); -- ---------------------------- -- Table structure for cardtype -- ---------------------------- DROP TABLE IF EXISTS `cardtype`; CREATE TABLE `cardtype` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `rank` int(11) NULL DEFAULT NULL COMMENT '升级所需积分', `status` int(11) NULL DEFAULT NULL, `coefficient` double(3, 2) NULL DEFAULT NULL COMMENT '消费折扣系数', `level` int(11) NULL DEFAULT NULL COMMENT '等级', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户等级\r\n' ROW_FORMAT = Compact; -- ---------------------------- -- Records of cardtype -- ---------------------------- INSERT INTO `cardtype` VALUES (1, '普通会员', 0, 1, 1.00, 1); INSERT INTO `cardtype` VALUES (2, '青铜会员', 100, 1, 1.00, 2); INSERT INTO `cardtype` VALUES (3, '白银会员', 1000, 1, 1.00, 3); INSERT INTO `cardtype` VALUES (4, '黄金会员', 10000, 1, 0.98, 4); INSERT INTO `cardtype` VALUES (5, '铂金会员', 100000, 1, 0.90, 5); -- ---------------------------- -- Table structure for category -- ---------------------------- DROP TABLE IF EXISTS `category`; CREATE TABLE `category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `status` int(11) NULL DEFAULT NULL COMMENT '状态(0:禁用 1:启用)', `momo` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '商品类别' ROW_FORMAT = Compact; -- ---------------------------- -- Records of category -- ---------------------------- INSERT INTO `category` VALUES (1, '饮料', 1, '喝的'); INSERT INTO `category` VALUES (2, '营养品', 1, '补的'); INSERT INTO `category` VALUES (3, '服务商品', 1, '玩的'); INSERT INTO `category` VALUES (4, '零食', 1, '吃的'); INSERT INTO `category` VALUES (10, '奥里给', 0, '服务你,没道理'); INSERT INTO `category` VALUES (11, '吃了某', 1, '常规问候'); INSERT INTO `category` VALUES (12, '玩的', 1, '球'); INSERT INTO `category` VALUES (13, '新增商品分类', 1, '新增商品分类修改'); INSERT INTO `category` VALUES (14, '营养类', 1, '营养品'); -- ---------------------------- -- Table structure for goods -- ---------------------------- DROP TABLE IF EXISTS `goods`; CREATE TABLE `goods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `goodsId` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `status` int(11) NULL DEFAULT 0 COMMENT '状态(0:在售 1:下架)', `type` int(11) NULL DEFAULT NULL COMMENT '类型(1:普通商品 0: 服务商品)', `unitId` int(11) NULL DEFAULT NULL COMMENT '单位', `price` double(11, 2) NULL DEFAULT NULL, `categoryId` int(1) NULL DEFAULT NULL COMMENT '类别', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '商品表(单位表,类别表)' ROW_FORMAT = Compact; -- ---------------------------- -- Records of goods -- ---------------------------- INSERT INTO `goods` VALUES (1, '1001', '可乐', '289', 1, 1, 1, 3.00, 1); INSERT INTO `goods` VALUES (2, '1002', '蛋白粉', '6', 1, 1, 2, 20.00, 2); INSERT INTO `goods` VALUES (3, '1003', '牛奶', '86', 2, 1, 1, 5.00, 3); INSERT INTO `goods` VALUES (4, '1004', '巧克力', '6', 1, 0, 1, 3.50, 1); INSERT INTO `goods` VALUES (5, '1005', '瑜伽', '96', 1, 0, 3, 200.00, 3); INSERT INTO `goods` VALUES (12, '1012', '酸奶', '197', 1, 1, 6, 5.00, 3); INSERT INTO `goods` VALUES (13, '1013', '新增商品名称', '99', 1, 0, 7, 10.00, 13); INSERT INTO `goods` VALUES (14, '1014', '新增商品', '10', 1, 0, 6, 5.00, 13); -- ---------------------------- -- Table structure for news -- ---------------------------- DROP TABLE IF EXISTS `news`; CREATE TABLE `news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题', `content` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '公告新闻的内容', `status` int(11) NULL DEFAULT NULL, `staffId` int(255) NULL DEFAULT NULL COMMENT '员工id', `createdTime` date NULL DEFAULT NULL COMMENT '新闻开始时间', `endTime` date NULL DEFAULT NULL COMMENT '新闻结束时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 25 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '公告新闻表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of news -- ---------------------------- INSERT INTO `news` VALUES (1, '看体育与健康监测结果报告全文!我国首次发布分学科义务教育质量监测结果.', '教育部基础教育质量监测中心日前发布了《2018年国家义务教育质量监测——体育与健康监测结果报告》,这是我国首次发布分学科的义务教育质量监测结果。体育与健康监测结果显示:四年级和八年级学生发育整体较好,但存在学生肥胖率、视力不良检出率较高的情况。', 1, 20190001, '2019-06-01', '2019-06-02'); INSERT INTO `news` VALUES (2, '中国体育新闻工作者协会40年成绩斐然 优秀体育记者受到褒奖', '新华社北京11月21日电(郁思辉)21日,为纪念中国体育新闻工作者协会成立40周年,由中国体育新闻工作者协会主办的体育新闻事业成就展及研讨会在北京体育大学举行。\r\n当日下午,本次纪念活动启动仪式在北体大教学楼前举行。国家体育总局宣传司副司长、中国体育新闻工作者协会副主席曹康致辞。\r\n随后,庆祝中国体育新闻工作者协会成立40周年研讨会举行。北京体育大学党委副书记邢尚杰致辞。来自体育界、体育新闻界、北京冬奥组委的代表做了主题演讲和研讨交流。\r\n21日晚,在北体大体育馆内举行了相关文体展演,并分别为从事体育新闻工作20年、30年、40年以及获新兴媒体奖的体育新闻工作者代表举行了颁奖仪式。中国体育新闻工作者协会主席、国家体育总局宣传司司长涂晓东致辞。\r\n 此次展览在北京体育大学校园内设置了长达80米的展墙以及14个室内展柜,展览将持续至12月5日。\r\n本次活动由北京圈内圈外文化发展有限公司承办,恒源祥集团为活动独家合作伙伴。', 1, 20190002, '2019-11-21', '2019-11-22'); INSERT INTO `news` VALUES (3, '萧华:支持詹皇对莫雷事件发声 不说话也是个人自由', '勒布朗-詹姆斯批评莫雷在中国事务上不负责任乱说话的表态,在美国引起强烈反响,被很多人指摘。最近,NBA总裁亚当-萧华站出来,表达了他对勒布朗言论的支持态度。当地时间周一,萧华接受了ESPN的采访,表示支持勒布朗对于莫雷事件的回复,“我认为这些NBA球员,拿勒布朗为例,他在过去改变美国人生活方面有着杰出的记录可查,被要求对于一个困难的外国话题发表评论。我再说一遍,这里有自由表达的权利,他应该说出自己的感受。”\n对于在这件事情上选择回避和不发声的球员,萧华也表示支持,“言论自由也意味着不说话的自由。就像我经常对要面对国内话题的球员说的那样,如果有些事情你不知道,或者你感觉恢复起来不舒服,那么不说话也没问题。', 1, 20190003, '2019-11-22', '2019-12-25'); INSERT INTO `news` VALUES (4, '中国确定将举办2021年世俱杯 FIFA周四宣布', '本月24日,国际足联理事会第十一次会议将会在上海举行,会上将探讨2021年世俱杯主办权问题。《纽约时报》如今提前爆料称,中国将会承办2021年世俱杯。该报称FIFA已经提前做出了这一决定,只等在上海正式官宣。\r\n在目前赛制下,世俱杯由各大洲冠军球队参加,比赛时间为每年12月中下旬。国际足联将会对世俱杯进行改革,赛制从每年一届改为四年一届,参赛球队则扩充到24队。比赛时间,会由12月调整到六七月份。改制后的首届世俱杯,将会在2021年6月17日至7月4日之间在中国举行。', 1, 20190004, '2019-10-24', '2019-10-24'); INSERT INTO `news` VALUES (5, '亚洲骄傲!孙兴慜首次入围金球奖30人 韩国史上第3', '《法国足球》公布了2019年金球奖的30人候选名单,效力于英超热刺的韩国球星孙兴慜首次入围。孙兴慜因此成为了史上第三位入围金球奖候选名单的韩国球员,而此前两位韩国前辈在评选时都没能获得选票。\r\n韩国足球历史上,前两位入围金球奖候选名单的分别是薛琦铉(2002年)和朴智星(2005年)。薛琦铉曾在安德莱赫特、狼队、雷丁、富勒姆等俱乐部效力,他是首位在欧冠取得进球的韩国球员。在2002年韩日世界杯上,薛琦铉随韩国杀进半决赛,他在对意大利的比赛中曾打进扳平比分的进球,这也为薛琦铉入围金球奖添加了重重的砝码。', 1, 20190005, '2019-04-01', '2019-04-02'); INSERT INTO `news` VALUES (22, '震惊!一男子竟...', '今日,广东一男子继“葛优瘫”后以“广东步”走红网络', 0, 20190001, '2019-12-11', '2019-12-18'); INSERT INTO `news` VALUES (23, '新增公告标题', '新增公告修改', 0, 20190001, '2019-12-06', '2019-12-09'); INSERT INTO `news` VALUES (24, '新增公告标题', '新增的公告新闻', 1, 20190001, '2019-12-11', '2019-12-28'); -- ---------------------------- -- Table structure for order -- ---------------------------- DROP TABLE IF EXISTS `order`; CREATE TABLE `order` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(200) NULL DEFAULT NULL COMMENT '订单编号', `cardId` int(11) NULL DEFAULT NULL COMMENT '卡id', `cardType` int(11) NULL DEFAULT NULL COMMENT '卡类型', `price` double(11, 2) NULL DEFAULT NULL COMMENT '应付金额', `pay` double NULL DEFAULT NULL COMMENT '实付金额', `credit` int(11) NULL DEFAULT NULL COMMENT '商品积分', `status` int(11) NULL DEFAULT NULL COMMENT '订单状态(0未核验 1已核验)', `momo` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '备注', `createdTime` datetime(0) NULL DEFAULT NULL COMMENT '消费日期', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 111 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单账单表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of order -- ---------------------------- INSERT INTO `order` VALUES (1, 100001, 100001, 3, 200.00, 200, 1, 1, '', '2019-12-01 00:00:00'); INSERT INTO `order` VALUES (3, 100003, 100008, 3, 0.00, 0, 4, 0, '', '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (4, 100004, 100004, 3, 25.00, 25, 3, 1, '', '2019-02-22 00:00:00'); INSERT INTO `order` VALUES (5, 100005, 100025, 3, 12.00, 12, 20, 1, '', '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (6, 100006, 100030, 3, 3.00, 3, 3, 0, NULL, '2019-02-22 00:00:00'); INSERT INTO `order` VALUES (8, 100008, 100008, 3, 3.00, 3, 3, 1, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (9, 100009, 100014, 3, 5.00, 5, 5, 1, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (10, 100010, 100001, 3, 20.00, 20, 30, 1, NULL, '2019-02-20 00:00:00'); INSERT INTO `order` VALUES (11, 100011, 100008, 3, 5.00, 5, 5, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (12, 100012, 100009, 3, 3.00, 3, 3, 0, NULL, '2019-02-22 00:00:00'); INSERT INTO `order` VALUES (13, 100013, 100010, 3, 5.00, 5, 5, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (14, 100014, 100013, 3, 3.00, 3, 3, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (15, 100015, 100004, 3, 5.00, 5, 5, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (16, 100016, 100001, 3, 3.00, 3, 3, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (17, 100017, 100003, 3, 5.00, 5, 5, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (18, 100018, 100025, 3, 3.00, 3, 3, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (19, 100019, 100004, 3, 5.00, 5, 5, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (20, 100020, 100021, 3, 3.00, 3, 3, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (21, 100021, 100022, 3, 5.00, 5, 5, 0, NULL, '2019-11-29 00:00:00'); INSERT INTO `order` VALUES (22, 100022, 100015, 3, 3.00, 3, 3, 0, NULL, '2019-06-22 00:00:00'); INSERT INTO `order` VALUES (23, 100023, 100018, 3, 5.00, 5, 5, 0, NULL, '2019-05-22 00:00:00'); INSERT INTO `order` VALUES (24, 100024, 100021, 3, 3.00, 3, 3, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (25, 100025, 100044, 3, 5.00, 5, 5, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (26, 100026, 100002, 3, 3.00, 3, 3, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (27, 100027, 100007, 3, 5.00, 5, 5, 0, NULL, '2019-02-22 00:00:00'); INSERT INTO `order` VALUES (28, 100028, 100004, 3, 3.00, 3, 3, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (29, 100029, 100026, 3, 6.00, 6, 6, 0, NULL, '2019-11-26 00:00:00'); INSERT INTO `order` VALUES (30, 100030, 100039, 3, 5.00, 5, 5, 0, NULL, '2019-04-22 00:00:00'); INSERT INTO `order` VALUES (31, 100031, 100046, 3, 3.00, 3, 3, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (32, 100032, 100037, 3, 5.00, 5, 5, 0, NULL, '2019-10-22 00:00:00'); INSERT INTO `order` VALUES (33, 100033, 100022, 3, 3.00, 3, 3, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (34, 100034, 100014, 3, 5.00, 5, 5, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (35, 100035, 100012, 3, 3.00, 3, 3, 0, NULL, '2019-06-22 00:00:00'); INSERT INTO `order` VALUES (36, 100036, 100004, 3, 5.00, 5, 5, 0, NULL, '2019-09-22 00:00:00'); INSERT INTO `order` VALUES (37, 100037, 100039, 3, 3.00, 3, 3, 0, NULL, '2019-11-22 00:00:00'); INSERT INTO `order` VALUES (38, 100098, 100004, 3, 5.00, 5, 5, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (39, 100039, 100004, 3, 3.00, 3, 3, 0, NULL, '2019-11-29 00:00:00'); INSERT INTO `order` VALUES (40, 100040, 100005, 3, 5.00, 5, 5, 0, NULL, '2019-08-29 00:00:00'); INSERT INTO `order` VALUES (41, 100041, 100028, 3, 3.00, 3, 3, 0, NULL, '2019-07-22 00:00:00'); INSERT INTO `order` VALUES (42, 100042, 100002, 3, 5.00, 5, 5, 0, NULL, '2019-11-29 00:00:00'); INSERT INTO `order` VALUES (43, 100043, 100004, 3, 3.00, 3, 3, 1, NULL, '2019-11-29 00:00:00'); INSERT INTO `order` VALUES (44, 100044, 100006, 3, 5.00, 5, 5, 0, NULL, '2019-11-29 00:00:00'); INSERT INTO `order` VALUES (45, 100045, 100005, 3, 50.00, 50, 50, 0, '', '2019-11-29 13:43:59'); INSERT INTO `order` VALUES (46, 100046, 100003, 3, 25.00, 50, 50, 0, '赵兴', '2019-06-29 13:44:02'); INSERT INTO `order` VALUES (95, 46, 100028, 3, 0.00, 1000, 1000, 1, '开始开始办卡', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (96, 56541179, 999, NULL, 203.50, 300, NULL, 1, '', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (97, 56541180, 100030, 3, 0.00, 1000, 1000, 1, '斯柯达复活节办卡', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (98, 56902400, 999, NULL, 203.50, 300, NULL, 1, '', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (99, 56902401, 100031, 2, 0.00, 100, 100, 1, '啊手办卡', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (100, 56902402, 100028, 3, 0.00, 1000, 1000, 1, '测试办卡', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (101, 56902403, 100029, 5, 0.00, 100000, 100000, 1, '会员登记完整测试办卡', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (102, 8564930, 100029, NULL, 200.00, 200, NULL, 1, '', '2019-12-05 00:00:00'); INSERT INTO `order` VALUES (103, 4641919, 999, NULL, 10.00, 12, NULL, 0, '商品消费', '2019-12-06 00:00:00'); INSERT INTO `order` VALUES (104, 5058413, 100002, NULL, 3.00, 3, NULL, 1, '', '2019-12-06 00:00:00'); INSERT INTO `order` VALUES (105, 5058414, 100030, 3, 0.00, 1000, 1000, 1, '会员姓名游客办卡', '2019-12-06 00:00:00'); INSERT INTO `order` VALUES (106, 5300746, 100030, NULL, 200.00, 200, NULL, 1, '', '2019-12-06 00:00:00'); INSERT INTO `order` VALUES (107, 890473, 0, 0, 40.00, 40, NULL, 1, '', '2019-12-06 00:00:00'); INSERT INTO `order` VALUES (108, 890474, 100028, 3, 0.00, 1000, 1000, 1, '登记新会员办卡', '2019-12-09 00:00:00'); INSERT INTO `order` VALUES (109, 9840385, 100028, NULL, 5.00, 5, NULL, 1, '', '2019-12-09 00:00:00'); INSERT INTO `order` VALUES (110, 9931289, 999, NULL, 5.00, 20, NULL, 1, '', '2019-12-09 00:00:00'); -- ---------------------------- -- Table structure for orderinfo -- ---------------------------- DROP TABLE IF EXISTS `orderinfo`; CREATE TABLE `orderinfo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(11) NULL DEFAULT NULL, `goodsId` int(11) NULL DEFAULT NULL COMMENT '商品id', `goodsNumber` int(11) NULL DEFAULT NULL COMMENT '商品数量', `goodsCredit` int(11) NULL DEFAULT NULL COMMENT '单个商品积分', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of orderinfo -- ---------------------------- INSERT INTO `orderinfo` VALUES (1, 100001, 10001, 5, 5); INSERT INTO `orderinfo` VALUES (2, 100002, 10002, 6, 6); -- ---------------------------- -- Table structure for rechargerecord -- ---------------------------- DROP TABLE IF EXISTS `rechargerecord`; CREATE TABLE `rechargerecord` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cardId` int(11) NULL DEFAULT NULL, `rechargeAmount` double NULL DEFAULT NULL COMMENT '充值金额', `afterAmount` double NULL DEFAULT NULL COMMENT '充值后卡余额', `beforeAmount` double NULL DEFAULT NULL COMMENT '充值前卡余额', `ruleId` int(11) NULL DEFAULT NULL COMMENT '充值规则', `createdTime` datetime(0) NULL DEFAULT NULL COMMENT '充值时间', `staffId` int(11) NULL DEFAULT NULL COMMENT '操作员', `momo` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '备注', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 44 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '充值记录' ROW_FORMAT = Compact; -- ---------------------------- -- Records of rechargerecord -- ---------------------------- INSERT INTO `rechargerecord` VALUES (1, 100001, 1000, 3220, 4740, 1, '2019-09-11 10:13:22', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (2, 100001, 2000, 4740, 7260, 1, '2019-12-07 10:16:49', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (3, 100001, 4000, 7260, 11780, 1, '2019-12-22 10:17:54', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (4, 100002, 10000, 5600, 16120, 1, '2019-08-13 10:19:02', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (5, 100002, 10000, 16120, 26640, 1, '2019-06-01 10:19:56', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (6, 100002, 10000, 26640, 37160, 1, '2019-06-04 10:26:51', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (7, 100003, 8000, 5120, 13640, 1, '2019-05-16 10:28:18', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (8, 100003, 10000, 13640, 24160, 1, '2019-04-20 10:29:04', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (9, 100003, 20000, 24160, 44680, 1, '2019-02-13 10:30:02', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (10, 100004, 50000, 6500, 57020, 1, '2019-01-22 10:31:11', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (11, 100005, 60000, 8500, 69020, 1, '2019-06-20 10:32:36', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (12, 100004, 25000, 57020, 82540, 1, '2019-12-01 10:36:01', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (13, 100001, 100, 11781, 11780, 1, '2019-07-01 17:29:14', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (14, 100004, 100, 82541, 82540, 1, '2019-12-03 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (15, 100006, 100, 2521, 2520, 1, '2019-12-03 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (16, 100001, 10, 12404, 12400, 4, '2019-12-03 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (17, 100001, 1000, 12398, 12395, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (18, 100001, 25, 13478, 13475, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (19, 100001, 100, 13583, 13580, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (20, 100001, 20, 13763, 13760, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (21, 100001, 20, 13863, 13860, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (22, 100011, 1000, 1005, 1000, 5, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (23, 100012, 50, 1003, 1000, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (24, 100012, 100, 1133, 1130, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (25, 100013, 100, 1003, 1000, 3, '2019-12-04 00:00:00', 20190004, NULL); INSERT INTO `rechargerecord` VALUES (26, 100012, 10, 1310, 1310, 0, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (27, 100012, 10, 1323, 1320, 3, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (28, 100006, 20000, 3146, 3140, 6, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (29, 100006, 10000, 43146, 43140, 6, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (30, 100007, 10000, 1006, 1000, 6, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (31, 100035, 100, 100003, 100000, 3, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (32, 999, 100, 999400, 999400, 0, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (33, 100029, 100000, 1, 0, 1, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (34, 100029, 100, 100000, 100000, 0, '2019-12-05 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (35, 100002, 100, 34734, 34727, 7, '2019-12-06 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (36, 100030, 1000, 1, 0, 1, '2019-12-06 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (37, 100014, 100, 1003, 1000, 3, '2019-12-06 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (38, 100028, 1000, 1, 0, 1, '2019-12-09 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (39, 100028, 100, 1003, 1000, 3, '2019-12-09 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (40, 100028, 100, 1188, 1180, 8, '2019-12-09 00:00:00', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (41, 100004, 83160, 4355, 4353, 2, '2019-12-30 22:30:31', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (42, 100004, 167820, 326, 324, 2, '2019-12-30 22:31:02', 20190001, NULL); INSERT INTO `rechargerecord` VALUES (43, 100005, 69020, 322, 321, 1, '2019-12-31 08:26:11', 20190001, NULL); -- ---------------------------- -- Table structure for rechargerule -- ---------------------------- DROP TABLE IF EXISTS `rechargerule`; CREATE TABLE `rechargerule` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '充值规则名字', `coefficient` double(3, 2) NULL DEFAULT NULL COMMENT '充值系数', `createdTime` date NULL DEFAULT NULL COMMENT '开始时间', `endTime` date NULL DEFAULT NULL COMMENT '结束时间', `status` int(1) NULL DEFAULT NULL COMMENT '状态', `startMoney` int(255) NULL DEFAULT NULL COMMENT '起充金额', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '充值规则' ROW_FORMAT = Compact; -- ---------------------------- -- Records of rechargerule -- ---------------------------- INSERT INTO `rechargerule` VALUES (1, '冲100送520', 5.20, '2019-11-26', '2019-11-30', 1, 100); INSERT INTO `rechargerule` VALUES (2, '冲200送1500', 7.50, '2019-11-29', '2019-11-30', 1, 200); INSERT INTO `rechargerule` VALUES (3, '冲100送80', 0.80, '2019-12-02', '2019-12-28', 1, 100); INSERT INTO `rechargerule` VALUES (4, '冲10 块送5块', 0.50, '2019-12-03', '2019-12-20', 0, 10); INSERT INTO `rechargerule` VALUES (5, '充1000送500', 0.50, '2019-12-04', '2019-12-31', 1, 1000); INSERT INTO `rechargerule` VALUES (6, '充10000送10000', 1.00, '2019-12-05', '2019-12-30', 0, 10000); INSERT INTO `rechargerule` VALUES (7, '充值规则测试冲100送20', 0.20, '2019-12-06', '2019-12-21', 1, 100); INSERT INTO `rechargerule` VALUES (8, '冲100送50', 0.50, '2019-12-09', '2019-12-31', 1, 100); -- ---------------------------- -- Table structure for resource -- ---------------------------- DROP TABLE IF EXISTS `resource`; CREATE TABLE `resource` ( `id` int(9) NOT NULL AUTO_INCREMENT COMMENT '资源id', `resource_name` varchar(11) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '资源名称', `url` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '路径', `identity` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '唯一标示', `momo` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '描述', `icon` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '图标', `pid` int(9) NULL DEFAULT NULL COMMENT '父类id', `status` int(20) NULL DEFAULT NULL COMMENT '状态', `sort` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '排序', `resource_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT '资源类型', `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 28 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资源表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of resource -- ---------------------------- INSERT INTO `resource` VALUES (1, '权限管理', NULL, 'role', '权限管理', NULL, 0, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (2, '商品管理', NULL, 'goods', '商品管理', NULL, 0, 1, '2', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (3, '会员管理', NULL, 'member', '会员管理', NULL, 0, 1, '3', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (4, '充值规则管理', NULL, 'recharge', '充值规则管理', NULL, 0, 1, '4', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (5, '消费收银', NULL, 'order', '消费收银', NULL, 0, 1, '5', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (6, '公告新闻管理', '', 'news', '公告新闻管理', NULL, 0, 1, '6', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (7, '统计', NULL, 'count', '统计', NULL, 0, 1, '8', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (8, '权限管理', NULL, 'role1', '权限管理', NULL, 1, 0, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (9, '商品列表', '/goods/goodsList.html', 'goods1', '商品列表', NULL, 2, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (10, '商品增加', '/goods/addGoods.html', 'goods2', '商品增加', NULL, 2, 1, '2', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (11, '商品分类', '/category/categoryList.html', 'goods3', '商品分类', NULL, 2, 1, '3', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (12, '会员登记', '/user/userAdd.html', 'member1', '会员登记', NULL, 3, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (13, '会员列表', '/user/user.html', 'member2', '会员列表', NULL, 3, 1, '2', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (14, '会员充值', '/card/userCardRecharge.html', 'member3', '会员充值', NULL, 3, 1, '3', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (15, '会员刷卡', '/card/userSlotCard.html', 'member4', '会员刷卡', NULL, 3, 1, '4', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (16, '充值规则', '/rule/ruleList.html', 'recharge1', '充值规则', NULL, 4, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (17, '商品消费', '/oder/Consumer.html', 'order1', '商品消费', NULL, 5, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (18, '消费订单', '/oder/oderList.html', 'order2', '消费订单', NULL, 5, 1, '2', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (19, '公告/新闻列表', '/news/newMain.html', 'news1', '公告/新闻列表', NULL, 6, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (20, '充值统计', '/census/rechargeCensus.html', 'count1', '充值统计', NULL, 7, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (21, '销售统计', '/census/orderCensus.html', 'count2', '销售统计', NULL, 7, 1, '2', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (22, '会员增长趋势', '/census/userCensus.html', 'count3', '会员增长趋势', NULL, 7, 1, '3', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (25, '员工管理', NULL, 'staff', '员工管理', NULL, 0, 1, '7', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (26, '职位管理', '/role/roleList.html', 'role2', '职位管理', NULL, 1, 1, '1', NULL, '2019-11-20 16:06:45'); INSERT INTO `resource` VALUES (27, '员工列表', '/staff/staffList.html', 'staff2', '员工列表', NULL, 25, 1, '2', NULL, '2019-11-20 16:06:45'); -- ---------------------------- -- Table structure for resource_role -- ---------------------------- DROP TABLE IF EXISTS `resource_role`; CREATE TABLE `resource_role` ( `id` bigint(19) NOT NULL AUTO_INCREMENT COMMENT '角色资源id', `resource_id` bigint(19) NOT NULL COMMENT '资源id', `role_id` bigint(19) NOT NULL DEFAULT 1 COMMENT '角色id', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 403 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色资源表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of resource_role -- ---------------------------- INSERT INTO `resource_role` VALUES (264, 2, 3); INSERT INTO `resource_role` VALUES (265, 9, 3); INSERT INTO `resource_role` VALUES (266, 10, 3); INSERT INTO `resource_role` VALUES (267, 11, 3); INSERT INTO `resource_role` VALUES (268, 3, 3); INSERT INTO `resource_role` VALUES (269, 12, 3); INSERT INTO `resource_role` VALUES (270, 13, 3); INSERT INTO `resource_role` VALUES (271, 14, 3); INSERT INTO `resource_role` VALUES (272, 15, 3); INSERT INTO `resource_role` VALUES (273, 4, 3); INSERT INTO `resource_role` VALUES (274, 16, 3); INSERT INTO `resource_role` VALUES (275, 7, 3); INSERT INTO `resource_role` VALUES (276, 20, 3); INSERT INTO `resource_role` VALUES (277, 21, 3); INSERT INTO `resource_role` VALUES (278, 22, 3); INSERT INTO `resource_role` VALUES (279, 2, 5); INSERT INTO `resource_role` VALUES (280, 9, 5); INSERT INTO `resource_role` VALUES (281, 10, 5); INSERT INTO `resource_role` VALUES (282, 11, 5); INSERT INTO `resource_role` VALUES (283, 3, 5); INSERT INTO `resource_role` VALUES (284, 12, 5); INSERT INTO `resource_role` VALUES (285, 13, 5); INSERT INTO `resource_role` VALUES (286, 14, 5); INSERT INTO `resource_role` VALUES (287, 15, 5); INSERT INTO `resource_role` VALUES (288, 4, 5); INSERT INTO `resource_role` VALUES (289, 16, 5); INSERT INTO `resource_role` VALUES (290, 5, 5); INSERT INTO `resource_role` VALUES (291, 17, 5); INSERT INTO `resource_role` VALUES (292, 18, 5); INSERT INTO `resource_role` VALUES (293, 6, 5); INSERT INTO `resource_role` VALUES (294, 19, 5); INSERT INTO `resource_role` VALUES (295, 7, 5); INSERT INTO `resource_role` VALUES (296, 20, 5); INSERT INTO `resource_role` VALUES (297, 21, 5); INSERT INTO `resource_role` VALUES (298, 22, 5); INSERT INTO `resource_role` VALUES (299, 25, 5); INSERT INTO `resource_role` VALUES (300, 27, 5); INSERT INTO `resource_role` VALUES (312, 2, 4); INSERT INTO `resource_role` VALUES (313, 9, 4); INSERT INTO `resource_role` VALUES (314, 10, 4); INSERT INTO `resource_role` VALUES (315, 11, 4); INSERT INTO `resource_role` VALUES (316, 5, 4); INSERT INTO `resource_role` VALUES (317, 17, 4); INSERT INTO `resource_role` VALUES (318, 18, 4); INSERT INTO `resource_role` VALUES (319, 7, 4); INSERT INTO `resource_role` VALUES (320, 20, 4); INSERT INTO `resource_role` VALUES (321, 21, 4); INSERT INTO `resource_role` VALUES (322, 22, 4); INSERT INTO `resource_role` VALUES (323, 1, 6); INSERT INTO `resource_role` VALUES (324, 26, 6); INSERT INTO `resource_role` VALUES (325, 3, 6); INSERT INTO `resource_role` VALUES (326, 12, 6); INSERT INTO `resource_role` VALUES (327, 13, 6); INSERT INTO `resource_role` VALUES (328, 14, 6); INSERT INTO `resource_role` VALUES (329, 15, 6); INSERT INTO `resource_role` VALUES (330, 25, 6); INSERT INTO `resource_role` VALUES (331, 27, 6); INSERT INTO `resource_role` VALUES (352, 1, 1); INSERT INTO `resource_role` VALUES (353, 26, 1); INSERT INTO `resource_role` VALUES (354, 2, 1); INSERT INTO `resource_role` VALUES (355, 9, 1); INSERT INTO `resource_role` VALUES (356, 10, 1); INSERT INTO `resource_role` VALUES (357, 11, 1); INSERT INTO `resource_role` VALUES (358, 3, 1); INSERT INTO `resource_role` VALUES (359, 12, 1); INSERT INTO `resource_role` VALUES (360, 13, 1); INSERT INTO `resource_role` VALUES (361, 14, 1); INSERT INTO `resource_role` VALUES (362, 15, 1); INSERT INTO `resource_role` VALUES (363, 4, 1); INSERT INTO `resource_role` VALUES (364, 16, 1); INSERT INTO `resource_role` VALUES (365, 5, 1); INSERT INTO `resource_role` VALUES (366, 17, 1); INSERT INTO `resource_role` VALUES (367, 18, 1); INSERT INTO `resource_role` VALUES (368, 6, 1); INSERT INTO `resource_role` VALUES (369, 19, 1); INSERT INTO `resource_role` VALUES (370, 7, 1); INSERT INTO `resource_role` VALUES (371, 20, 1); INSERT INTO `resource_role` VALUES (372, 21, 1); INSERT INTO `resource_role` VALUES (373, 22, 1); INSERT INTO `resource_role` VALUES (374, 25, 1); INSERT INTO `resource_role` VALUES (375, 27, 1); INSERT INTO `resource_role` VALUES (376, 2, 2); INSERT INTO `resource_role` VALUES (377, 9, 2); INSERT INTO `resource_role` VALUES (378, 10, 2); INSERT INTO `resource_role` VALUES (379, 11, 2); INSERT INTO `resource_role` VALUES (380, 5, 2); INSERT INTO `resource_role` VALUES (381, 17, 2); INSERT INTO `resource_role` VALUES (382, 18, 2); INSERT INTO `resource_role` VALUES (383, 1, 7); INSERT INTO `resource_role` VALUES (384, 26, 7); INSERT INTO `resource_role` VALUES (385, 2, 7); INSERT INTO `resource_role` VALUES (386, 9, 7); INSERT INTO `resource_role` VALUES (387, 10, 7); INSERT INTO `resource_role` VALUES (388, 11, 7); INSERT INTO `resource_role` VALUES (389, 3, 7); INSERT INTO `resource_role` VALUES (390, 12, 7); INSERT INTO `resource_role` VALUES (391, 13, 7); INSERT INTO `resource_role` VALUES (392, 14, 7); INSERT INTO `resource_role` VALUES (393, 15, 7); INSERT INTO `resource_role` VALUES (394, 4, 7); INSERT INTO `resource_role` VALUES (395, 16, 7); INSERT INTO `resource_role` VALUES (396, 5, 7); INSERT INTO `resource_role` VALUES (397, 17, 7); INSERT INTO `resource_role` VALUES (398, 18, 7); INSERT INTO `resource_role` VALUES (399, 6, 7); INSERT INTO `resource_role` VALUES (400, 19, 7); INSERT INTO `resource_role` VALUES (401, 25, 7); INSERT INTO `resource_role` VALUES (402, 27, 7); -- ---------------------------- -- Table structure for role -- ---------------------------- DROP TABLE IF EXISTS `role`; CREATE TABLE `role` ( `id` int(15) NOT NULL AUTO_INCREMENT COMMENT 'ID', `roleName` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色名', `grade` int(15) NULL DEFAULT NULL COMMENT '角色等级', `description` varchar(60) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色描述', `status` int(5) NULL DEFAULT NULL COMMENT '角色状态(1启用 0禁用)', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of role -- ---------------------------- INSERT INTO `role` VALUES (1, '管理员', 1, '管理员', 1); INSERT INTO `role` VALUES (2, '吧台', 2, '小卖部', 1); INSERT INTO `role` VALUES (3, '前台', 3, '前台', 1); INSERT INTO `role` VALUES (4, '收银员', 4, '收银员', 1); INSERT INTO `role` VALUES (5, '店长', 5, '店长', 1); INSERT INTO `role` VALUES (7, '新增职位', NULL, '新增的职位', 1); -- ---------------------------- -- Table structure for staff -- ---------------------------- DROP TABLE IF EXISTS `staff`; CREATE TABLE `staff` ( `id` int(11) NOT NULL AUTO_INCREMENT, `staffId` int(11) NULL DEFAULT NULL COMMENT '员工ID', `staffName` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '员工姓名', `password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登陆密码', `phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '员工电话', `idCard` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '员工身份证号码', `address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '员工地址', `createdTime` date NULL DEFAULT NULL COMMENT '入职日期', `status` int(11) NULL DEFAULT NULL COMMENT '员工状态(1.在职 2.离职 3.黑名单)', `roleId` int(11) NULL DEFAULT NULL, `momo` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '备注', `enable` int(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 82 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '员工表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of staff -- ---------------------------- INSERT INTO `staff` VALUES (1, 20190001, '无所不能的鲁老板', '123123', '13338666666', '411622199812121313', '123123', '2019-11-20', 1, 1, '', 1); INSERT INTO `staff` VALUES (2, 20190002, '一知半解的康老板', '123123', '13526724768', '410183199808047033', '123123', '2019-11-20', 1, 3, '', 1); INSERT INTO `staff` VALUES (3, 20190003, '邱金', '123123', '15560313872', '410182199703036031', '河南郑州', '2019-11-20', 1, 2, '', 1); INSERT INTO `staff` VALUES (4, 20190004, '王星华', '123123', '15560313421', '410182198504061564', '河南郑州', '2019-11-20', 1, 2, '', 1); INSERT INTO `staff` VALUES (81, 20190005, '测试员工', '123123', '13526724768', '410183199808047033', '员工地址', '2019-12-09', 1, 7, '新增职位', NULL); -- ---------------------------- -- Table structure for unit -- ---------------------------- DROP TABLE IF EXISTS `unit`; CREATE TABLE `unit` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `status` int(11) NULL DEFAULT NULL COMMENT '状态(0:禁用 1:启用)', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '单位表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of unit -- ---------------------------- INSERT INTO `unit` VALUES (1, '瓶', 1); INSERT INTO `unit` VALUES (2, '桶', 1); INSERT INTO `unit` VALUES (3, '节', 1); INSERT INTO `unit` VALUES (4, '支', 1); INSERT INTO `unit` VALUES (5, '件', 0); INSERT INTO `unit` VALUES (6, '双', 1); INSERT INTO `unit` VALUES (7, '个', 1); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NULL DEFAULT NULL COMMENT '用户编号', `userName` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户姓名', `phone` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户手机号', `status` int(1) NULL DEFAULT NULL COMMENT '用户状态', `idCard` varchar(18) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户身份证号码', `birthday` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `sex` int(1) NULL DEFAULT NULL COMMENT '用户性别(1男2女)', `address` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户地址', `area` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户地区', `createdTime` datetime(0) NULL DEFAULT NULL, `cardId` int(11) NOT NULL, `momo` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `staffId` int(20) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 74 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户表' ROW_FORMAT = Compact; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES (1, 1090001, '王鹏程', '13148285409', 1, '412722199811117313', '1111', 1, '河南郑州', '河南郑州', '2019-11-22 00:00:00', 100001, NULL, NULL); INSERT INTO `user` VALUES (2, 1090002, '鲁天乐', '13141112222', 1, '410622199804255843', '0425', 1, '河南郑州', '河南郑州', '2019-06-22 00:00:00', 100002, NULL, NULL); INSERT INTO `user` VALUES (3, 1090003, '史博士', '15538631462', 1, '412722199805064561', '0506', 1, '河南郑州', '河南郑州', '2019-11-22 00:00:00', 100003, NULL, NULL); INSERT INTO `user` VALUES (4, 1090004, '李文艺', '计划里', 1, '411222199611043638', '1104', 1, '河南郑州', '河南郑州', '2019-06-30 00:00:00', 100004, NULL, NULL); INSERT INTO `user` VALUES (5, 1090005, '赵六', '18538384381', 1, '410622199006084512', '0608', 1, '河南郑州', '河南郑州', '2019-12-05 00:00:00', 100005, NULL, NULL); INSERT INTO `user` VALUES (6, 1090006, '冯秋燕', '16613142556', 1, '413711199406075412', '0607', 1, '河南郑州', '河南郑州', '2019-11-22 00:00:00', 100006, NULL, NULL); INSERT INTO `user` VALUES (7, 1090007, '唐悠悠', '15538656567', 1, '410722198501095423', '0109', 1, '郑州金水区', '河南郑州', '2019-11-13 00:00:00', 100007, NULL, NULL); INSERT INTO `user` VALUES (8, 1090007, '刘金', '13193606668', 1, '410722199511115467', '1111', 1, '郑州金水区', '河南郑州', '2019-11-14 00:00:00', 100008, NULL, NULL); INSERT INTO `user` VALUES (9, 1090009, '王八蛋', '17773177777', 2, '411633199511308524', '1130', 1, '郑州金水区', '河南郑州', '2019-11-26 00:00:00', 100009, NULL, NULL); INSERT INTO `user` VALUES (10, 1090010, '文章', '15196541586', 1, '411652198407121543', NULL, 1, '河南郑州', '河南郑州', '2019-11-27 00:00:00', 100010, NULL, NULL); INSERT INTO `user` VALUES (11, 1090011, '武大郎', '15538656567', 1, '411111222444466664', NULL, 1, '河南郑州', '河南郑州', '2019-03-20 00:00:00', 100011, NULL, NULL); INSERT INTO `user` VALUES (12, 1090012, '郑朝山', '13255421654', 1, '410102199003072735', NULL, 1, '郑州金水区', '河南郑州', '2019-10-21 00:00:00', 100012, NULL, NULL); INSERT INTO `user` VALUES (13, 1090013, '张锋', '15132541568', 1, '410102199003075530', NULL, 1, '郑州金水区', '河南郑州', '2019-07-27 00:00:00', 100013, NULL, NULL); INSERT INTO `user` VALUES (14, 1090014, '刘益智', '13215471563', 1, '410102199003077712', NULL, 1, '郑州金水区', '河南郑州', '2019-11-26 00:00:00', 100014, NULL, NULL); INSERT INTO `user` VALUES (15, 1090015, '侯静', '18532568462', 1, '410102199003073017', NULL, 1, '郑州金水区', '河南郑州', '2019-03-20 00:00:00', 100015, NULL, NULL); INSERT INTO `user` VALUES (16, 1090016, '田帅', '15715369853', 2, '410102199003073578', NULL, 1, '郑州金水区', '河南郑州', '2019-03-20 00:00:00', 100016, NULL, NULL); INSERT INTO `user` VALUES (17, 1090017, '刘军', '13615856324', 1, '410102199003073615', NULL, 1, '郑州金水区', '河南郑州', '2019-11-05 00:00:00', 100017, NULL, NULL); INSERT INTO `user` VALUES (18, 1090018, '马昂', '17765821364', 1, '410102199003074693', NULL, 1, '郑州金水区', '河南郑州', '2019-03-20 00:00:00', 100018, NULL, NULL); INSERT INTO `user` VALUES (19, 1090019, '邓树', '17136943582', 1, '410102199003073690', NULL, 1, '郑州金水区', '河南郑州', '2019-07-27 00:00:00', 100019, NULL, NULL); INSERT INTO `user` VALUES (20, 1090020, '党晨', '15935261257', 1, '410102199003079275', NULL, 1, '郑州金水区', '河南郑州', '2019-11-27 00:00:00', 100020, NULL, NULL); INSERT INTO `user` VALUES (21, 1090021, '孙一发', '15248632587', 1, '410102199003078838', NULL, 1, '郑州金水区', '河南郑州', '2019-07-27 00:00:00', 100021, NULL, NULL); INSERT INTO `user` VALUES (22, 1090022, '王乾坤', '13146324581', 2, '410102199504081564', NULL, 1, '郑州金水区', '郑州金水区', '2019-03-20 00:00:00', 100022, NULL, NULL); INSERT INTO `user` VALUES (23, 1090023, '远离', '13215846258', 1, '410102199306021543', NULL, 1, '郑州金水区', '河南郑州', '2019-11-14 00:00:00', 100023, NULL, NULL); INSERT INTO `user` VALUES (24, 1090024, '李丽', '13315843658', 1, '410102199610151324', NULL, 1, '郑州金水区', '河南郑州', '2019-11-27 00:00:00', 100024, NULL, NULL); INSERT INTO `user` VALUES (25, 1090025, '李志', '15939413584', 1, '411712199812241658', NULL, 1, '河南郑州', '郑州金水区', '2019-03-20 00:00:00', 100025, NULL, NULL); INSERT INTO `user` VALUES (47, 999, '游客卡', '111', 1, '111', NULL, 1, '游客卡', '游客卡', '2019-12-05 19:39:19', 999, NULL, NULL); INSERT INTO `user` VALUES (55, 1090026, '王小二', '13526724768', 1, '410183199808047033', NULL, 1, '河南郑州', '郑州二七区', '2019-12-05 22:02:40', 100026, NULL, NULL); INSERT INTO `user` VALUES (64, 1090027, '开始', '13526724768', 1, '410183199808047033', NULL, 0, '123123', NULL, '2019-12-05 00:00:00', 100027, '123123', NULL); INSERT INTO `user` VALUES (73, 1090028, '登记新会员', '13526724768', 1, '410183199808047011', NULL, 1, '二七区', NULL, '2019-12-09 00:00:00', 100028, '新增会员', NULL); SET FOREIGN_KEY_CHECKS = 1;
-- @testpoint:在存储过程中插入加括号select的语句 DROP TABLE IF EXISTS test_procedure_insert_01; create table test_procedure_insert_01 (f1 int, f2 int); insert into test_procedure_insert_01 values(1,2); DROP TABLE IF EXISTS test_procedure_insert_02; create table test_procedure_insert_02 (f1 int, f2 int); CREATE OR REPLACE PROCEDURE p_test_insert_01 is begin insert into test_procedure_insert_02 (select f1,f2 from test_procedure_insert_01); end; / CALL p_test_insert_01(); select * from test_procedure_insert_02; DROP PROCEDURE p_test_insert_01; DROP TABLE test_procedure_insert_01; DROP TABLE test_procedure_insert_02;
<reponame>opengauss-mirror/Yat<gh_stars>0 -- @testpoint:opengauss关键字enforced(非保留),作为用户名 --关键字enforced作为用户名不带引号,创建成功 drop user if exists enforced; CREATE USER enforced PASSWORD '<PASSWORD>'; drop user enforced; --关键字enforced作为用户名加双引号,创建成功 drop user if exists "enforced"; CREATE USER "enforced" PASSWORD '<PASSWORD>'; drop user "enforced"; --关键字enforced作为用户名加单引号,合理报错 CREATE USER 'enforced' PASSWORD '<PASSWORD>'; --关键字enforced作为用户名加反引号,合理报错 CREATE USER `enforced` PASSWORD '<PASSWORD>';
remark Ident: 00_schema.sql create schema teton authorization postgres;
DECLARE @PurcasesCounts TABLE( Count int ); INSERT INTO @PurcasesCounts SELECT Purchases.Amount FROM Purchases WHERE Date_order BETWEEN '01.01.2003' AND '02.01.2015' SELECT SUM(Count) FROM @PurcasesCounts
create table results_by_component ( id int not null auto_increment, position int not null, term varchar(255) not null, component varchar(255) not null, score float not null, file_page varchar(255) not null, image_url varchar(255) not null, skipped tinyint(1) default 0, rating tinyint(1) default null, search_date datetime default CURRENT_TIMESTAMP, primary key (id) ) engine=innodb;
<filename>db/seeds.sql use employee_db; insert into department (name) values ("Human Resources"), ("IT"), ("Sales"), ("Accounting"), ("Logistics"), ("Customer Service"), ("Recruiting"), ("Upper Management"), ("Payroll"); insert into role (title, salary, department_id) values ("Receptionist", 40000, 6), ("IT Manager",65000,2), ("Database Admin",65000,2), ("Recruitment Specialist",60000,7), ("Work Force Coordinator",50000,5), ("CSR",45000,6), ("Payroll Administrator",55000,9), ("Office Culture Manager",65000,1), ("Fulfillment Director", 70000, 3), ("President of Sales",115000,3), ("Accounts Receivable Analyst",60000,4), ("Accounts Payable Analyst",60000,4), ("Project Accountant",80000,4), ("Senior Accountant",90000,4), ("Prodcut Specialist", 66000,2), ("Dispatcher",55000,5), ("Full Stack Developer",90000, 2), ("CEO", 200000, 8), ("COO",190000,8), ("CTO",185000,8); insert into employee (first_name, last_name, role_id, manager_id) values ("Mahmoud", "Yahya",20,null), ("Nadia","Udden",18,null), ("Yoonis", "Cali",19,null), ("Yusuf","Jabir",2,1), ("Sabren","Mohamed",1,2), ("Farah","Ahmed",5,null), ("Ahmed","Meedaxa",6,null), ("Jasir","Najib",7,null), ("Jaasmiin","Hesham",8,null), ("Jack","Grealish",17,1), ("Yaqub","Moha",11,13), ("Maryam","Haroon",11,13), ("Jaasmiin","Abdi",13,2), ("Ashley","Cole",15,4);
<reponame>neeveermoree/sql_stepik SELECT author, title, price FROM book;
CREATE OR REPLACE FUNCTION public.fn_party_role_reporting_group(in_id integer) RETURNS text LANGUAGE sql VOLATILE AS $function$ SELECT o.reporting_group FROM party_roles pr LEFT OUTER JOIN organizations o ON o.id = pr.organization_id WHERE pr.id = in_id $function$ COST 100; ALTER FUNCTION public.fn_party_role_reporting_group(integer) OWNER TO postgres;
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Aug 05, 2020 at 03:21 PM -- Server version: 10.4.13-MariaDB -- PHP Version: 7.2.32 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; 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: `mealticket` -- -- -------------------------------------------------------- -- -- Table structure for table `notification` -- CREATE TABLE `notification` ( `id` int(11) NOT NULL, `sent_by` int(11) NOT NULL, `sent_to` int(11) NOT NULL, `noti_type` VARCHAR(100) NULL, `is_read` int(11) NOT NULL DEFAULT 0, `message` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Indexes for dumped tables -- -- -- Indexes for table `notification` -- ALTER TABLE `notification` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `notification` -- ALTER TABLE `notification` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */;
/* ---------------------------------------------------- */ /* Generated by Enterprise Architect Version 12.1 */ /* Created On : 24-Oct-2019 17:11:44 */ /* DBMS : PostgreSQL */ /* ---------------------------------------------------- */ /* Drop Tables */ DROP TABLE IF EXISTS i4ldata.t_AdminSource CASCADE ; /* Create Tables */ CREATE TABLE i4ldata.t_AdminSource ( UID uuid NOT NULL, Name varchar(50) NOT NULL, Description varchar(255) NULL, LongDescription text NULL, ExtDescriptionURL varchar(255) NULL, AdminSourceType varchar(50) NULL, ContentItem uuid NOT NULL, Concept uuid NULL, AvailabilityStatus varchar(50) NULL, purchasePrice numeric(12,2) NULL ) ; /* Create Primary Keys, Indexes, Uniques, Checks */ ALTER TABLE i4ldata.t_AdminSource ADD CONSTRAINT PK_t_AdminSource PRIMARY KEY (UID) ;
<gh_stars>0 EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2017-09-30',@EPS = N'0.3078',@EPSDeduct = N'0',@Revenue = N'10.57亿',@RevenueYoy = N'20.76',@RevenueQoq = N'-39.46',@Profit = N'2.23亿',@ProfitYoy = N'268.24',@ProfiltQoq = N'126.12',@NAVPerUnit = N'2.5635',@ROE = N'12.67',@CashPerUnit = N'1.4116',@GrossProfitRate = N'38.08',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2017-09-30',@EPS = N'0.3078',@EPSDeduct = N'0',@Revenue = N'10.57亿',@RevenueYoy = N'20.76',@RevenueQoq = N'-39.46',@Profit = N'2.23亿',@ProfitYoy = N'268.24',@ProfiltQoq = N'126.12',@NAVPerUnit = N'2.5635',@ROE = N'12.67',@CashPerUnit = N'1.4116',@GrossProfitRate = N'38.08',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2016-09-30',@EPS = N'0.0836',@EPSDeduct = N'0',@Revenue = N'8.75亿',@RevenueYoy = N'-5.59',@RevenueQoq = N'-62.21',@Profit = N'6060.75万',@ProfitYoy = N'13.97',@ProfiltQoq = N'-62.86',@NAVPerUnit = N'2.2818',@ROE = N'3.69',@CashPerUnit = N'1.1967',@GrossProfitRate = N'25.12',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2016-06-30',@EPS = N'0.068',@EPSDeduct = N'0.067',@Revenue = N'7.24亿',@RevenueYoy = N'7.83',@RevenueQoq = N'23.80',@Profit = N'4912.84万',@ProfitYoy = N'4.52',@ProfiltQoq = N'69.66',@NAVPerUnit = N'2.2661',@ROE = N'2.98',@CashPerUnit = N'0.6412',@GrossProfitRate = N'24.98',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-07-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2016-03-31',@EPS = N'0.0251',@EPSDeduct = N'0',@Revenue = N'3.23亿',@RevenueYoy = N'9.55',@RevenueQoq = N'-46.37',@Profit = N'1821.89万',@ProfitYoy = N'-10.06',@ProfiltQoq = N'152.05',@NAVPerUnit = N'2.2734',@ROE = N'1.11',@CashPerUnit = N'0.1462',@GrossProfitRate = N'21.84',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-04-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2015-12-31',@EPS = N'0.08',@EPSDeduct = N'0.0737',@Revenue = N'15.30亿',@RevenueYoy = N'-21.27',@RevenueQoq = N'135.83',@Profit = N'6040.52万',@ProfitYoy = N'-76.77',@ProfiltQoq = N'17.12',@NAVPerUnit = N'2.2483',@ROE = N'3.73',@CashPerUnit = N'0.6498',@GrossProfitRate = N'25.75',@Distribution = N'10派0.5',@DividenRate = N'0.60',@AnnounceDate = N'2017-02-17' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2015-09-30',@EPS = N'0.073',@EPSDeduct = N'0',@Revenue = N'9.27亿',@RevenueYoy = N'21.85',@RevenueQoq = N'-31.99',@Profit = N'5317.69万',@ProfitYoy = N'-24.43',@ProfiltQoq = N'-76.93',@NAVPerUnit = N'2.2384',@ROE = N'3.29',@CashPerUnit = N'0.3879',@GrossProfitRate = N'26.33',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-10-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2015-06-30',@EPS = N'0.065',@EPSDeduct = N'0.063',@Revenue = N'6.71亿',@RevenueYoy = N'21.22',@RevenueQoq = N'27.36',@Profit = N'4700.50万',@ProfitYoy = N'-23.20',@ProfiltQoq = N'32.04',@NAVPerUnit = N'2.2298',@ROE = N'2.89',@CashPerUnit = N'0.0444',@GrossProfitRate = N'28.64',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2016-07-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2015-03-31',@EPS = N'0.0279',@EPSDeduct = N'0',@Revenue = N'2.95亿',@RevenueYoy = N'25.52',@RevenueQoq = N'-75.04',@Profit = N'2025.76万',@ProfitYoy = N'-21.23',@ProfiltQoq = N'-89.32',@NAVPerUnit = N'2.2430',@ROE = N'1.25',@CashPerUnit = N'-0.0596',@GrossProfitRate = N'29.02',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-04-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2014-12-31',@EPS = N'0.36',@EPSDeduct = N'0.3452',@Revenue = N'19.43亿',@RevenueYoy = N'91.07',@RevenueQoq = N'471.34',@Profit = N'2.60亿',@ProfitYoy = N'297.52',@ProfiltQoq = N'1969.74',@NAVPerUnit = N'2.2150',@ROE = N'16.58',@CashPerUnit = N'0.6227',@GrossProfitRate = N'32.72',@Distribution = N'10派0.5',@DividenRate = N'0.39',@AnnounceDate = N'2016-04-13' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2014-09-30',@EPS = N'0.097',@EPSDeduct = N'0',@Revenue = N'7.61亿',@RevenueYoy = N'4.78',@RevenueQoq = N'-35.01',@Profit = N'7036.44万',@ProfitYoy = N'-0.59',@ProfiltQoq = N'-74.18',@NAVPerUnit = N'2.0886',@ROE = N'4.72',@CashPerUnit = N'0.4067',@GrossProfitRate = N'32.47',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2015-10-23' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2014-06-30',@EPS = N'0.084',@EPSDeduct = N'0.082',@Revenue = N'5.54亿',@RevenueYoy = N'20.82',@RevenueQoq = N'35.43',@Profit = N'6120.23万',@ProfitYoy = N'6.56',@ProfiltQoq = N'37.98',@NAVPerUnit = N'2.0760',@ROE = N'4.10',@CashPerUnit = N'0.1362',@GrossProfitRate = N'33.49',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2015-07-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2014-03-31',@EPS = N'0.0355',@EPSDeduct = N'0.0336',@Revenue = N'2.35亿',@RevenueYoy = N'27.90',@RevenueQoq = N'-19.20',@Profit = N'2571.76万',@ProfitYoy = N'8.54',@ProfiltQoq = N'578.09',@NAVPerUnit = N'2.0544',@ROE = N'1.74',@CashPerUnit = N'0.0255',@GrossProfitRate = N'35.26',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2015-04-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2013-12-31',@EPS = N'0.0902',@EPSDeduct = N'0.0951',@Revenue = N'10.17亿',@RevenueYoy = N'32.59',@RevenueQoq = N'8.72',@Profit = N'6540.43万',@ProfitYoy = N'-11.91',@ProfiltQoq = N'-140.29',@NAVPerUnit = N'2.0190',@ROE = N'4.52',@CashPerUnit = N'-0.0804',@GrossProfitRate = N'29.88',@Distribution = N'10派0.3',@DividenRate = N'0.75',@AnnounceDate = N'2015-04-10' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2013-09-30',@EPS = N'0.098',@EPSDeduct = N'0',@Revenue = N'7.26亿',@RevenueYoy = N'13.11',@RevenueQoq = N'-2.43',@Profit = N'7078.35万',@ProfitYoy = N'18.99',@ProfiltQoq = N'-60.43',@NAVPerUnit = N'2.0266',@ROE = N'4.81',@CashPerUnit = N'-0.0847',@GrossProfitRate = N'34.70',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2014-10-22' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2013-06-30',@EPS = N'0.079',@EPSDeduct = N'0.08',@Revenue = N'4.58亿',@RevenueYoy = N'16.82',@RevenueQoq = N'49.22',@Profit = N'5743.30万',@ProfitYoy = N'19.98',@ProfiltQoq = N'42.39',@NAVPerUnit = N'2.0082',@ROE = N'3.92',@CashPerUnit = N'-0.1088',@GrossProfitRate = N'35.06',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2014-07-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2013-03-31',@EPS = N'0.0327',@EPSDeduct = N'0.0326',@Revenue = N'1.84亿',@RevenueYoy = N'2.91',@RevenueQoq = N'46.79',@Profit = N'2369.48万',@ProfitYoy = N'8.96',@ProfiltQoq = N'60.49',@NAVPerUnit = N'2.0116',@ROE = N'1.64',@CashPerUnit = N'-0.0703',@GrossProfitRate = N'36.15',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2014-04-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2012-12-31',@EPS = N'0.1',@EPSDeduct = N'0.1032',@Revenue = N'7.67亿',@RevenueYoy = N'-22.82',@RevenueQoq = N'-49.80',@Profit = N'7425.04万',@ProfitYoy = N'-47.36',@ProfiltQoq = N'27.09',@NAVPerUnit = N'1.9790',@ROE = N'5.25',@CashPerUnit = N'-0.0317',@GrossProfitRate = N'34.77',@Distribution = N'10派0.5',@DividenRate = N'1.45',@AnnounceDate = N'2014-04-10' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2012-09-30',@EPS = N'0.082',@EPSDeduct = N'0.084',@Revenue = N'6.42亿',@RevenueYoy = N'-10.65',@RevenueQoq = N'16.83',@Profit = N'5948.64万',@ProfitYoy = N'-45.82',@ProfiltQoq = N'-55.53',@NAVPerUnit = N'1.9551',@ROE = N'4.18',@CashPerUnit = N'-0.1258',@GrossProfitRate = N'34.26',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2013-10-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2012-06-30',@EPS = N'0.066',@EPSDeduct = N'0.067',@Revenue = N'3.92亿',@RevenueYoy = N'-28.61',@RevenueQoq = N'19.55',@Profit = N'4786.92万',@ProfitYoy = N'-48.89',@ProfiltQoq = N'20.13',@NAVPerUnit = N'1.9391',@ROE = N'3.38',@CashPerUnit = N'-0.1812',@GrossProfitRate = N'39.70',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2013-07-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2012-03-31',@EPS = N'0.03',@EPSDeduct = N'0.03',@Revenue = N'1.79亿',@RevenueYoy = N'-30.19',@RevenueQoq = N'-35.16',@Profit = N'2174.64万',@ProfitYoy = N'-47.83',@ProfiltQoq = N'-30.44',@NAVPerUnit = N'1.9364',@ROE = N'1.52',@CashPerUnit = N'-0.1193',@GrossProfitRate = N'42.08',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2013-04-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2011-12-31',@EPS = N'0.19',@EPSDeduct = N'0.19',@Revenue = N'9.94亿',@RevenueYoy = N'-54.79',@RevenueQoq = N'63.25',@Profit = N'1.41亿',@ProfitYoy = N'-47.81',@ProfiltQoq = N'93.80',@NAVPerUnit = N'2.0690',@ROE = N'9.73',@CashPerUnit = N'-0.3858',@GrossProfitRate = N'39.43',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2013-03-13' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2011-09-30',@EPS = N'0.151',@EPSDeduct = N'0.155',@Revenue = N'7.18亿',@RevenueYoy = N'-46.62',@RevenueQoq = N'-42.50',@Profit = N'1.10亿',@ProfitYoy = N'-8.35',@ProfiltQoq = N'-68.96',@NAVPerUnit = N'2.0300',@ROE = N'7.32',@CashPerUnit = N'-0.1937',@GrossProfitRate = N'42.01',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2012-10-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2011-06-30',@EPS = N'0.129',@EPSDeduct = N'0.132',@Revenue = N'5.50亿',@RevenueYoy = N'7.14',@RevenueQoq = N'14.70',@Profit = N'9365.84万',@ProfitYoy = N'4.33',@ProfiltQoq = N'24.70',@NAVPerUnit = N'2.0100',@ROE = N'6.25',@CashPerUnit = N'0.2682',@GrossProfitRate = N'43.40',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2012-07-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2011-03-31',@EPS = N'0.057',@EPSDeduct = N'0.059',@Revenue = N'2.56亿',@RevenueYoy = N'6.65',@RevenueQoq = N'-69.99',@Profit = N'4168.07万',@ProfitYoy = N'50.51',@ProfiltQoq = N'-72.30',@NAVPerUnit = N'2.0000',@ROE = N'2.91',@CashPerUnit = N'0.4346',@GrossProfitRate = N'46.53',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2012-04-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2010-12-31',@EPS = N'0.37',@EPSDeduct = N'0.37',@Revenue = N'21.99亿',@RevenueYoy = N'110.62',@RevenueQoq = N'2.43',@Profit = N'2.70亿',@ProfitYoy = N'97.98',@ProfiltQoq = N'401.19',@NAVPerUnit = N'1.9424',@ROE = N'19.71',@CashPerUnit = N'0.5321',@GrossProfitRate = N'44.73',@Distribution = N'10派0.7',@DividenRate = N'1.24',@AnnounceDate = N'2012-04-07' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2010-09-30',@EPS = N'0.165',@EPSDeduct = N'0.163',@Revenue = N'13.46亿',@RevenueYoy = N'88.57',@RevenueQoq = N'205.16',@Profit = N'1.20亿',@ProfitYoy = N'16.57',@ProfiltQoq = N'-51.64',@NAVPerUnit = N'1.8500',@ROE = N'9.29',@CashPerUnit = N'0.7754',@GrossProfitRate = N'48.08',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2011-10-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2010-06-30',@EPS = N'0.124',@EPSDeduct = N'0.121',@Revenue = N'5.13亿',@RevenueYoy = N'-3.96',@RevenueQoq = N'13.71',@Profit = N'8977.34万',@ProfitYoy = N'16.04',@ProfiltQoq = N'124.18',@NAVPerUnit = N'1.8000',@ROE = N'7.00',@CashPerUnit = N'0.4941',@GrossProfitRate = N'53.96',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2011-08-02' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2010-03-31',@EPS = N'0.038',@EPSDeduct = N'0.035',@Revenue = N'2.40亿',@RevenueYoy = N'8.38',@RevenueQoq = N'-27.34',@Profit = N'2769.26万',@ProfitYoy = N'9.33',@ProfiltQoq = N'-17.94',@NAVPerUnit = N'1.7200',@ROE = N'2.18',@CashPerUnit = N'0.2541',@GrossProfitRate = N'46.82',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2011-04-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2009-12-31',@EPS = N'0.23',@EPSDeduct = N'0.43',@Revenue = N'10.44亿',@RevenueYoy = N'25.48',@RevenueQoq = N'83.93',@Profit = N'1.37亿',@ProfitYoy = N'33.27',@ProfiltQoq = N'32.87',@NAVPerUnit = N'3.1200',@ROE = N'24.67',@CashPerUnit = N'1.2475',@GrossProfitRate = N'39.99',@Distribution = N'10转8派1',@DividenRate = N'1.15',@AnnounceDate = N'2011-04-08' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2009-09-30',@EPS = N'0.173',@EPSDeduct = N'0.342',@Revenue = N'7.14亿',@RevenueYoy = N'1.73',@RevenueQoq = N'-42.55',@Profit = N'1.03亿',@ProfitYoy = N'1.06',@ProfiltQoq = N'-51.18',@NAVPerUnit = N'1.3700',@ROE = N'-',@CashPerUnit = N'0.5201',@GrossProfitRate = N'43.95',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2010-10-23' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2009-06-30',@EPS = N'0.13',@EPSDeduct = N'0.244',@Revenue = N'5.34亿',@RevenueYoy = N'-7.81',@RevenueQoq = N'41.16',@Profit = N'7736.23万',@ProfitYoy = N'0.32',@ProfiltQoq = N'105.42',@NAVPerUnit = N'1.4900',@ROE = N'15.95',@CashPerUnit = N'0.4028',@GrossProfitRate = N'42.16',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2010-08-11' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2009-03-31',@EPS = N'0.043',@EPSDeduct = N'0.0799',@Revenue = N'2.21亿',@RevenueYoy = N'-37.23',@RevenueQoq = N'69.75',@Profit = N'2532.97万',@ProfitYoy = N'-47.21',@ProfiltQoq = N'3293.20',@NAVPerUnit = N'1.6100',@ROE = N'-',@CashPerUnit = N'0.1257',@GrossProfitRate = N'41.56',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2010-04-23' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2008-12-31',@EPS = N'0.31',@EPSDeduct = N'0.32',@Revenue = N'8.32亿',@RevenueYoy = N'8.78',@RevenueQoq = N'6.74',@Profit = N'1.02亿',@ProfitYoy = N'-14.72',@ProfiltQoq = N'-96.96',@NAVPerUnit = N'1.5300',@ROE = N'21.89',@CashPerUnit = N'-0.5827',@GrossProfitRate = N'36.33',@Distribution = N'10派0.9',@DividenRate = N'1.26',@AnnounceDate = N'2010-01-15' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2008-09-30',@EPS = N'0.308',@EPSDeduct = N'0.292',@Revenue = N'7.02亿',@RevenueYoy = N'59.45',@RevenueQoq = N'-46.03',@Profit = N'1.02亿',@ProfitYoy = N'70.44',@ProfiltQoq = N'-15.66',@NAVPerUnit = N'1.5300',@ROE = N'-',@CashPerUnit = N'-0.5379',@GrossProfitRate = N'34.57',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2009-10-22' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2008-06-30',@EPS = N'0.234',@EPSDeduct = N'0.235',@Revenue = N'5.79亿',@RevenueYoy = N'420.00',@RevenueQoq = N'-35.80',@Profit = N'7711.41万',@ProfitYoy = N'291.28',@ProfiltQoq = N'-39.28',@NAVPerUnit = N'1.4500',@ROE = N'16.94',@CashPerUnit = N'-0.2027',@GrossProfitRate = N'32.23',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2009-07-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2008-03-31',@EPS = N'0.145',@EPSDeduct = N'0.145',@Revenue = N'3.53亿',@RevenueYoy = N'1258.87',@RevenueQoq = N'8.60',@Profit = N'4798.03万',@ProfitYoy = N'315.59',@ProfiltQoq = N'-20.63',@NAVPerUnit = N'1.4500',@ROE = N'-',@CashPerUnit = N'-0.3804',@GrossProfitRate = N'32.95',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2009-04-15' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2007-12-31',@EPS = N'0.36',@EPSDeduct = N'0.29',@Revenue = N'7.65亿',@RevenueYoy = N'32.62',@RevenueQoq = N'18.18',@Profit = N'1.20亿',@ProfitYoy = N'69.71',@ProfiltQoq = N'-36.10',@NAVPerUnit = N'1.3100',@ROE = N'18.17',@CashPerUnit = N'0.3586',@GrossProfitRate = N'37.08',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2009-03-05' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2007-09-30',@EPS = N'0.181',@EPSDeduct = N'0.055',@Revenue = N'4.40亿',@RevenueYoy = N'225.21',@RevenueQoq = N'221.72',@Profit = N'5965.97万',@ProfitYoy = N'181.77',@ProfiltQoq = N'623.89',@NAVPerUnit = N'1.1900',@ROE = N'-',@CashPerUnit = N'-0.0713',@GrossProfitRate = N'35.20',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2008-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2007-06-30',@EPS = N'-0.175',@EPSDeduct = N'-0.1705',@Revenue = N'1.11亿',@RevenueYoy = N'38.84',@RevenueQoq = N'229.09',@Profit = N'-4031.40万',@ProfitYoy = N'15.79',@ProfiltQoq = N'18.86',@NAVPerUnit = N'1.6900',@ROE = N'-9.85',@CashPerUnit = N'0.0702',@GrossProfitRate = N'11.26',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2008-08-08' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2007-03-31',@EPS = N'-0.097',@EPSDeduct = N'0',@Revenue = N'2596.32万',@RevenueYoy = N'13.47',@RevenueQoq = N'-94.12',@Profit = N'-2225.55万',@ProfitYoy = N'31.82',@ProfiltQoq = N'-115.48',@NAVPerUnit = N'1.7700',@ROE = N'-',@CashPerUnit = N'-0.0983',@GrossProfitRate = N'1.47',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2008-04-23' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2006-12-31',@EPS = N'0.31',@EPSDeduct = N'-0.1',@Revenue = N'5.77亿',@RevenueYoy = N'135.49',@RevenueQoq = N'441.07',@Profit = N'7077.31万',@ProfitYoy = N'152.75',@ProfiltQoq = N'709.29',@NAVPerUnit = N'1.8700',@ROE = N'2.15',@CashPerUnit = N'0.2616',@GrossProfitRate = N'25.92',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2008-01-22' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2006-09-30',@EPS = N'-0.317',@EPSDeduct = N'0',@Revenue = N'1.35亿',@RevenueYoy = N'-36.56',@RevenueQoq = N'61.55',@Profit = N'-7295.61万',@ProfitYoy = N'-5.77',@ProfiltQoq = N'-54.89',@NAVPerUnit = N'1.5100',@ROE = N'-',@CashPerUnit = N'0.0084',@GrossProfitRate = N'-7.43',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2007-10-19' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2006-06-30',@EPS = N'-0.2081',@EPSDeduct = N'0',@Revenue = N'8023.79万',@RevenueYoy = N'-44.22',@RevenueQoq = N'120.70',@Profit = N'-4787.38万',@ProfitYoy = N'-5.48',@ProfiltQoq = N'53.35',@NAVPerUnit = N'1.6200',@ROE = N'-12.10',@CashPerUnit = N'0.0034',@GrossProfitRate = N'-13.86',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2007-07-31' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2006-03-31',@EPS = N'-0.142',@EPSDeduct = N'0',@Revenue = N'2288.15万',@RevenueYoy = N'-44.55',@RevenueQoq = N'-27.67',@Profit = N'-3264.43万',@ProfitYoy = N'-47.36',@ProfiltQoq = N'49.92',@NAVPerUnit = N'1.6800',@ROE = N'-',@CashPerUnit = N'-0.0020',@GrossProfitRate = N'-46.98',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2007-04-18' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2005-12-31',@EPS = N'-0.583',@EPSDeduct = N'0',@Revenue = N'2.45亿',@RevenueYoy = N'-36.79',@RevenueQoq = N'-61.24',@Profit = N'-1.34亿',@ProfitYoy = N'-65.06',@ProfiltQoq = N'-176.32',@NAVPerUnit = N'1.8200',@ROE = N'-27.74',@CashPerUnit = N'0.0633',@GrossProfitRate = N'-4.41',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2007-03-20' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2005-09-30',@EPS = N'0',@EPSDeduct = N'0',@Revenue = N'2.13亿',@RevenueYoy = N'-30.71',@RevenueQoq = N'-9.69',@Profit = N'-6897.54万',@ProfitYoy = N'-201.20',@ProfiltQoq = N'-1.53',@NAVPerUnit = N'2.0900',@ROE = N'-',@CashPerUnit = N'0.0556',@GrossProfitRate = N'-2.86',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2006-10-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2005-06-30',@EPS = N'0',@EPSDeduct = N'0',@Revenue = N'1.31亿',@RevenueYoy = N'-28.56',@RevenueQoq = N'119.00',@Profit = N'-4538.58万',@ProfitYoy = N'-130.99',@ProfiltQoq = N'-4.88',@NAVPerUnit = N'2.2000',@ROE = N'-8.60',@CashPerUnit = N'0.0508',@GrossProfitRate = N'-5.78',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2006-08-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2017-06-30',@EPS = N'0.123',@EPSDeduct = N'0.123',@Revenue = N'7.45亿',@RevenueYoy = N'2.99',@RevenueQoq = N'122.43',@Profit = N'8926.19万',@ProfitYoy = N'81.69',@ProfiltQoq = N'97.16',@NAVPerUnit = N'2.3828',@ROE = N'5.25',@CashPerUnit = N'0.8821',@GrossProfitRate = N'40.53',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-07-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2016-12-31',@EPS = N'0.11',@EPSDeduct = N'0.1098',@Revenue = N'14.03亿',@RevenueYoy = N'-8.30',@RevenueQoq = N'248.89',@Profit = N'8074.36万',@ProfitYoy = N'33.67',@ProfiltQoq = N'75.41',@NAVPerUnit = N'2.3097',@ROE = N'4.89',@CashPerUnit = N'1.1937',@GrossProfitRate = N'22.40',@Distribution = N'10派0.5',@DividenRate = N'0.44',@AnnounceDate = N'2017-02-17' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600173',@CutoffDate = N'2017-03-31',@EPS = N'0.0414',@EPSDeduct = N'0',@Revenue = N'2.31亿',@RevenueYoy = N'-28.51',@RevenueQoq = N'-56.20',@Profit = N'3003.81万',@ProfitYoy = N'64.87',@ProfiltQoq = N'49.18',@NAVPerUnit = N'2.3511',@ROE = N'1.78',@CashPerUnit = N'0.1272',@GrossProfitRate = N'40.26',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-04-27'
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jul 25, 2016 at 06:34 AM -- Server version: 5.6.21 -- PHP Version: 5.6.3 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 utf8 */; -- -- Database: `profile` -- -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL, `username` varchar(32) NOT NULL, `password` text NOT NULL, `name` varchar(32) NOT NULL, `email` varchar(64) NOT NULL, `type` int(11) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`id`, `username`, `password`, `name`, `email`, `type`) VALUES (1, 'adminsuper', '<PASSWORD>', 'The Amazing Super Admin', '<EMAIL>', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; /*!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 */;
<reponame>cyandestructor/Didactinaut<filename>database/stored_procedures/payment_methods_procedures.sql USE didactinaut_dev; INSERT INTO PaymentMethods (payment_method_name) VALUES ('Credit Card'), ('Paypal'); DELIMITER $$ DROP PROCEDURE IF EXISTS GetPaymentMethods $$ CREATE PROCEDURE GetPaymentMethods () BEGIN SELECT payment_method_id, payment_method_name FROM PaymentMethods; END $$ DELIMITER ;
<reponame>chebykinn/university<gh_stars>1-10 CREATE TABLE "persons" ( id bigserial NOT NULL, name character varying(200), surname character varying(200), job character varying(200), city character varying(200), age integer, CONSTRAINT "Persons_pkey" PRIMARY KEY (id) ); INSERT INTO persons(name, surname, job, city, age) values ('Петр', 'Петров', 'Программист', 'Москва', 25); INSERT INTO persons(name, surname, job, city, age) values ('Владимир', 'Иванов', 'Уборщик', 'Пермь', 26); INSERT INTO persons(name, surname, job, city, age) values ('Иван', 'Иванов', 'Врач', 'Санкт-Петербург', 27); INSERT INTO persons(name, surname, job, city, age) values ('Иммануил', 'Кант', 'Продавец', 'Москва', 28); INSERT INTO persons(name, surname, job, city, age) values ('Джордж', 'Клуни', 'Охранник', 'Санкт-Петербург', 29); INSERT INTO persons(name, surname, job, city, age) values ('Билл', 'Рубцов', 'Полицейский', 'Челябинск', 30); INSERT INTO persons(name, surname, job, city, age) values ('Марк', 'Марков', 'Программист', 'Фершампенуаз', 31); INSERT INTO persons(name, surname, job, city, age) values ('Галина', 'Матвеева', 'Дальнобойщик', 'Новосибирск', 32); INSERT INTO persons(name, surname, job, city, age) values ('Святослав', 'Павлов', 'Политик', 'Магнитогорск', 33); INSERT INTO persons(name, surname, job, city, age) values ('Ольга', 'Бергольц', 'Писатель', 'Калининград', 34); INSERT INTO persons(name, surname, job, city, age) values ('Лев', 'Рабинович', 'Инженер', 'Москва', 35);
<reponame>ryanwit/hotel_motel<filename>db/schema.sql -- Drops the passport_demo if it exists currently -- DROP DATABASE IF EXISTS guestsDb; -- Creates the "passport_demo" database -- CREATE DATABASE guestsDb;
<gh_stars>1-10 /* # Author: <NAME> # Date: June 2018 ################################# # Reason: These PSMs help with data validation and troubleshooting # For: UAB MSHI Capstone Project # Title: A Sustainable Business Intelligence Approach # to the U.S. Centers for Medicare and Medicaid Services Cost Report Data ################################# # Install: See README.md for instructions. # Usage: SEE PROCEDURES BELOW */ DROP PROCEDURE IF EXISTS spCheckWorksheet; GO /* EXEC spCheckWorksheet @RecordNum = 115710 , @Worksheet = 'G200000' , @Records = 100 */ CREATE PROC spCheckWorksheet @RecordNum INTEGER = 0 , @Worksheet VARCHAR(10) = '' , @Records INTEGER = 10 AS BEGIN DECLARE @SQLStmt nvarchar(max) print '*** RUNNING CheckWorksheet' SET @SQLStmt = 'SELECT TOP '+ CONVERT(VARCHAR, @Records) +' * FROM mcrFormData WHERE WKSHT_CD='''+ @Worksheet +''' AND RPT_REC_NUM=' + CONVERT(VARCHAR, @RecordNum) + ' ORDER BY LINE_NUM, SUBLINE_NUM, CLMN_NUM, SUBCLMN_NUM;' PRINT N'ANALYSIS DATA mcrFormData' -- PRINT @SQLStmt EXEC sp_executesql @SQLStmt SET @SQLStmt = 'SELECT TOP '+ CONVERT(VARCHAR, @Records) +' * FROM mcrFormData_Nmrc WHERE WKSHT_CD='''+ @Worksheet +''' AND RPT_REC_NUM=' + CONVERT(VARCHAR, @RecordNum) + ' ORDER BY LINE_NUM, SUBLINE_NUM, CLMN_NUM, SUBCLMN_NUM;' PRINT N'ANALYSIS DATA mcrFormData_Nmrc' -- PRINT @SQLStmt EXEC sp_executesql @SQLStmt SET @SQLStmt = 'SELECT TOP '+ CONVERT(VARCHAR, @Records) +' * FROM mcrFormData_Alpha WHERE WKSHT_CD='''+ @Worksheet +''' AND RPT_REC_NUM=' + CONVERT(VARCHAR, @RecordNum) + ' ORDER BY LINE_NUM, SUBLINE_NUM, CLMN_NUM, SUBCLMN_NUM;' PRINT N'ANALYSIS DATA mcrFormData_Alpha' -- PRINT @SQLStmt EXEC sp_executesql @SQLStmt -- SET @SQLStmt = 'SELECT TOP '+ CONVERT(VARCHAR, @Records) +' * -- FROM MCR_NEW_NMRC -- WHERE WKSHT_CD='''+ @Worksheet +''' -- AND RPT_REC_NUM=' + CONVERT(VARCHAR, @RecordNum) + ' -- ORDER BY LINE_NUM, CLMN_NUM;' -- PRINT N'RAW DATA' -- PRINT @SQLStmt -- EXEC sp_executesql @SQLStmt PRINT N'*** FINISHED' END
begin; create table if not exists filtered_word ( word_id bigserial primary key, word text, created_on timestamp not null ); create unique index if not exists filtered_word_word_uindex on filtered_word (word); commit;
DROP TABLE IF EXISTS `condition_delay`; CREATE TABLE `condition_delay` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id', `conditionid` bigint(20) unsigned COMMENT '父条件id', `conditionname` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin COMMENT '父条件名', `subconditionname` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin COMMENT '子条件名', `delaytime` bigint(20) unsigned COMMENT '延时时间', `create_time` datetime DEFAULT NOW() COMMENT '创建时间', `lastmodify_time` datetime DEFAULT NOW() COMMENT '上一次修改时间', `creator` varchar(10) CHARACTER SET utf8 COLLATE utf8_bin COMMENT '创建者', PRIMARY KEY (`id`) ) ENGINE = InnoDB AUTO_INCREMENT = 4 DEFAULT CHARSET = utf8mb4 COMMENT ='延时子条件表'; INSERT INTO testcenter.permission(id, resource, code, handle) VALUES(203, '延时子条件', 'delaycondition:search', '搜索'); INSERT INTO testcenter.permission(id, resource, code, handle) VALUES(204, '延时子条件', 'delaycondition:add', '添加'); INSERT INTO testcenter.permission(id, resource, code, handle) VALUES(205, '延时子条件', 'delaycondition:delete', '删除'); INSERT INTO testcenter.permission(id, resource, code, handle) VALUES(206, '延时子条件', 'delaycondition:update', '更新'); INSERT INTO testcenter.permission(id, resource, code, handle) VALUES(207, '延时子条件', 'delaycondition:detail', '修改'); INSERT INTO testcenter.permission(id, resource, code, handle) VALUES(208, '延时子条件', 'delaycondition:list', '查询');
<reponame>aibotsoft/forted-service create or alter proc dbo.uspCreateTeam @TeamName varchar(120), @SportId int as begin set nocount on declare @TeamId int select @TeamId = TeamId from Team where TeamName = @TeamName and SportId = @SportId if @@rowcount = 0 insert into Team (TeamName, SportId) output inserted.TeamId values (@TeamName, @SportId) else select @TeamId end
-- 部门分组信息表 CREATE TABLE `department_group` ( `id` int(11) NOT NULL, `name` varchar(128) NOT NULL COMMENT '组名称', `description` varchar(256) DEFAULT NULL COMMENT '分组描述', `create_time` bigint(20) NOT NULL COMMENT '创建时间', `update_time` bigint(20) NOT NULL COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='部门分组信息表'; -- executor与分组关系信息表 CREATE TABLE `department_group_executors` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) NOT NULL COMMENT 'department_group的ID', `executor_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `executor_id` (`executor_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='executor分组关系信息表'; -- 用户变量表 CREATE TABLE `user_variable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `key` varchar(128) NOT NULL COMMENT '变量key名称', `description` varchar(256) NOT NULL COMMENT '变量描述', `value` varchar(256) NOT NULL COMMENT '变量值', `owner` varchar(64) NOT NULL COMMENT '创建人', `create_time` bigint(20) DEFAULT NULL COMMENT '创建时间', `update_time` bigint(20) DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `key` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户变量表'; -- 用户变量表与wtss_user表关联表 CREATE TABLE `user_variable_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `v_id` int(11) NOT NULL, `username` varchar(64) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户变量关系表'; alter table project_permissions drop key permission_index; alter table project_permissions add KEY permission_nameindex(name,project_id); -- 新增group_id字段 与department_group表关联 ALTER TABLE cfg_webank_organization ADD `group_id` INT(11) DEFAULT 1; -- 新增默认分组 INSERT INTO department_group (`id`, `name`, `description`, `create_time`, `update_time`) VALUES (1, 'default_group', '默认分组(请勿删除)', '1562315302028', '1562315302028'); -- 新增默认分组 INSERT INTO department_group_executors (`group_id`, `executor_id`) VALUES (1, 1); -- 为部门添加默认分组 UPDATE cfg_webank_organization SET group_id = 1;
-- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3308 -- Generation Time: Jun 17, 2021 at 01:20 PM -- Server version: 8.0.18 -- PHP Version: 7.3.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; 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: `dlib` -- -- -------------------------------------------------------- -- -- Table structure for table `authors` -- DROP TABLE IF EXISTS `authors`; CREATE TABLE IF NOT EXISTS `authors` ( `AuthorID` int(11) NOT NULL AUTO_INCREMENT, `FirstName` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL, `LastName` text CHARACTER SET utf8 COLLATE utf8_persian_ci, `BirthDate` date DEFAULT NULL, `Image` varchar(200) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL, PRIMARY KEY (`AuthorID`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_persian_ci; -- -- Dumping data for table `authors` -- INSERT INTO `authors` (`AuthorID`, `FirstName`, `LastName`, `BirthDate`, `Image`) VALUES (1, 'Other', NULL, NULL, NULL), (8, 'Nima', '<PASSWORD>', '2009-05-21', 'images/authors/rsa1.jpg'), (9, 'Nima', 'j<PASSWORD>', '2009-05-21', ''), (10, 'Nima', 'gkkmkl', '2009-05-21', ''), (11, 'Nima', 'Faghihzadeh', '2021-06-10', ''), (12, 'Amir', 'Amiri', '2021-06-10', ''), (13, 'Nima', 'Nabavi', '2021-06-03', 'images/authors/and2.png'); -- -------------------------------------------------------- -- -- Table structure for table `books` -- DROP TABLE IF EXISTS `books`; CREATE TABLE IF NOT EXISTS `books` ( `BookID` int(11) NOT NULL AUTO_INCREMENT, `BookName` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL, `BookTitle` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL, `CreatedDate` date DEFAULT NULL, `LastUpdatedDate` date DEFAULT NULL, `CopiesSold` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL, `PublishedYear` int(11) DEFAULT NULL, `AuthorID` int(255) DEFAULT NULL, `ImagePath` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL, PRIMARY KEY (`BookID`), KEY `author` (`AuthorID`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_persian_ci; -- -- Dumping data for table `books` -- INSERT INTO `books` (`BookID`, `BookName`, `BookTitle`, `CreatedDate`, `LastUpdatedDate`, `CopiesSold`, `PublishedYear`, `AuthorID`, `ImagePath`) VALUES (4, 'unity', 'PHP:Home Page', '2021-06-10', '2021-06-10', '1', 2020, 0, 'images/authors/unity.jpg'), (5, 'BootStrap', 'BootStrap', '2021-06-10', '2021-06-10', '1', 0, 9, 'images/authors/bs2.png'), (6, 'Csharp', 'Csharp', '2021-06-10', '2021-06-10', '1', 0, 12, 'images/authors/cs3.png'), (7, 'C Sharp', 'C Sharp Programming', '2021-06-10', '2021-06-10', '112', 2021, 12, 'images/books/cs4.png'); -- -------------------------------------------------------- -- -- Table structure for table `logs` -- DROP TABLE IF EXISTS `logs`; CREATE TABLE IF NOT EXISTS `logs` ( `TrackingID` int(11) NOT NULL AUTO_INCREMENT, `Username` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci NOT NULL, `BookID` int(11) NOT NULL, `DateUpdated` date NOT NULL, PRIMARY KEY (`TrackingID`), KEY `FK-Username` (`Username`), KEY `FK-BookID` (`BookID`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_persian_ci; -- -- Dumping data for table `logs` -- INSERT INTO `logs` (`TrackingID`, `Username`, `BookID`, `DateUpdated`) VALUES (1, 'admin', 4, '2021-06-10'), (2, 'admin', 4, '2021-06-10'), (3, 'admin', 4, '2021-06-10'), (4, 'admin', 5, '2021-06-10'); -- -------------------------------------------------------- -- -- Table structure for table `registration` -- DROP TABLE IF EXISTS `registration`; CREATE TABLE IF NOT EXISTS `registration` ( `Username` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci NOT NULL, `FirstName` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci NOT NULL, `LastName` varchar(255) CHARACTER SET utf8 COLLATE utf8_persian_ci NOT NULL, `Password` varchar(200) COLLATE utf8_persian_ci NOT NULL, `Role` varchar(100) CHARACTER SET utf8 COLLATE utf8_persian_ci NOT NULL, `Image` varchar(255) COLLATE utf8_persian_ci DEFAULT NULL, PRIMARY KEY (`Username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_persian_ci; -- -- Dumping data for table `registration` -- INSERT INTO `registration` (`Username`, `FirstName`, `LastName`, `Password`, `Role`, `Image`) VALUES ('admin', 'mahdi', 'mahdi', '$2y$10$NwrxMTn790Ch8kbSD6.WiuGmp7BtNDBqX.UiirouOpldB2Zt9a57O', 'Admin', 'images/authors/and3.png'), ('user1', 'Amir', 'Amiri', '$2y$10$t6vr3RoAktoZPb1eZ3Y8t.ZeDXrZpwgCP/HlYyDIG7spAsnLt7Nca', 'User', 'images/authors/150x150-speed.png'); COMMIT; /*!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 */;
-- phpMyAdmin SQL Dump -- version 4.1.14 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 2016-03-26 11:02:43 -- 服务器版本: 5.6.17 -- PHP Version: 5.5.12 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 utf8 */; -- -- Database: `facemonitor` -- -- -------------------------------------------------------- -- -- 表的结构 `face_piimage` -- CREATE TABLE IF NOT EXISTS `face_piimage` ( `id` int(5) NOT NULL AUTO_INCREMENT, `sessionid` varchar(50) NOT NULL, `confidence` double NOT NULL, `issameperson` varchar(5) NOT NULL, `createtime` int(10) NOT NULL, `finishtime` int(10) NOT NULL, `status` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ; -- -- 转存表中的数据 `face_piimage` -- INSERT INTO `face_piimage` (`id`, `sessionid`, `confidence`, `issameperson`, `createtime`, `finishtime`, `status`) VALUES (2, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (3, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (4, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (5, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (6, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (7, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (8, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (9, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (10, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (11, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (12, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (13, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (14, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (15, '3817df0839d742b69819bd538717c26d', 86.311951, '0', 1458893618, 1458893664, 'SUCC'), (16, '3817df0839d742b69819bd538717c26d', 86.344951, '0', 1458893618, 1458893664, 'SUCC'); /*!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 */;
<reponame>naeemchy/laravel_inventory_managment_system -- phpMyAdmin SQL Dump -- version 5.0.3 -- https://www.phpmyadmin.net/ -- -- Host: 1172.16.31.10 -- Generation Time: Dec 22, 2020 at 03:26 PM -- Server version: 10.4.14-MariaDB -- PHP Version: 7.3.23 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; 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: `laravel_inventory_managment_system` -- -- -------------------------------------------------------- -- -- Table structure for table `advance_salaries` -- CREATE TABLE `advance_salaries` ( `id` int(10) UNSIGNED NOT NULL, `emp_id` int(11) NOT NULL, `month` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `year` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `advanced_salary` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `advance_salaries` -- INSERT INTO `advance_salaries` (`id`, `emp_id`, `month`, `year`, `status`, `advanced_salary`, `created_at`, `updated_at`) VALUES (1, 1, 'July', '2020', '0', '8000', '2020-08-16 07:38:01', '2020-08-16 07:38:01'), (3, 1, 'June', '2020', '0', '8000', '2020-08-17 18:20:30', '2020-08-17 18:20:30'), (4, 4, 'July', '2020', '0', '4000', '2020-08-17 18:30:50', '2020-08-17 18:30:50'), (5, 3, 'June', '2020', '0', '4000', '2020-08-17 19:12:37', '2020-08-17 19:12:37'), (6, 3, 'September', '2020', '0', '2000', '2020-08-17 20:26:43', '2020-08-17 20:26:43'); -- -------------------------------------------------------- -- -- Table structure for table `attendances` -- CREATE TABLE `attendances` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `att_date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `att_year` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `attendance` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `month` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `edit_date` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `attendances` -- INSERT INTO `attendances` (`id`, `user_id`, `att_date`, `att_year`, `attendance`, `month`, `edit_date`, `created_at`, `updated_at`) VALUES (5, 1, '28/08/20', '2020', 'Present', NULL, '28_08_20', NULL, '2020-08-28 09:21:49'), (6, 3, '28/08/20', '2020', 'Absent', NULL, '28_08_20', NULL, '2020-08-28 10:10:33'), (7, 4, '28/08/20', '2020', 'Present', NULL, '28_08_20', NULL, '2020-08-28 09:21:49'), (8, 5, '28/08/20', '2020', 'Present', NULL, '28_08_20', NULL, '2020-08-28 09:21:49'), (9, 1, '30/08/20', '2020', 'Present', 'August', '30_08_20', NULL, NULL), (10, 3, '30/08/20', '2020', 'Present', 'August', '30_08_20', NULL, NULL), (11, 4, '30/08/20', '2020', 'Present', 'August', '30_08_20', NULL, NULL), (12, 5, '30/08/20', '2020', 'Present', 'August', '30_08_20', NULL, NULL), (13, 1, '13/09/20', '2020', 'Present', 'September', '13_09_20', NULL, NULL), (14, 3, '13/09/20', '2020', 'Absent', 'September', '13_09_20', NULL, NULL), (15, 4, '13/09/20', '2020', 'Present', 'September', '13_09_20', NULL, NULL), (16, 5, '13/09/20', '2020', 'Present', 'September', '13_09_20', NULL, NULL), (17, 1, '21/12/20', '2020', 'Present', 'December', '21_12_20', NULL, NULL), (18, 3, '21/12/20', '2020', 'Absent', 'December', '21_12_20', NULL, NULL), (19, 4, '21/12/20', '2020', 'Present', 'December', '21_12_20', NULL, NULL), (20, 5, '21/12/20', '2020', 'Present', 'December', '21_12_20', NULL, NULL), (21, 6, '21/12/20', '2020', 'Present', 'December', '21_12_20', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` int(10) UNSIGNED NOT NULL, `cat_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `cat_name`, `created_at`, `updated_at`) VALUES (1, 'Electronic Device', '2020-08-18 17:06:42', '2020-08-18 17:06:42'), (2, 'Health & Beauty', '2020-08-18 17:07:15', '2020-08-18 17:07:15'), (3, 'Men\'s Fashion', '2020-08-18 17:07:36', '2020-08-18 17:07:36'), (4, 'Home & Lifestyle', '2020-08-18 17:07:46', '2020-08-18 17:07:46'), (7, 'TV & Home Appliances', '2020-08-18 18:38:13', '2020-08-18 18:38:13'), (8, 'Women\'s Fashion', '2020-12-21 03:40:04', '2020-12-21 03:40:04'), (9, 'Sports & Outdoor', '2020-12-21 03:40:54', '2020-12-21 03:40:54'), (10, 'Watches', '2020-12-21 03:50:08', '2020-12-21 03:50:08'), (11, 'Babies & Toys', '2020-12-21 03:50:39', '2020-12-21 03:50:39'); -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `shopname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_holder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bank_branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customers` -- INSERT INTO `customers` (`id`, `name`, `email`, `phone`, `address`, `shopname`, `photo`, `account_holder`, `account_number`, `bank_name`, `bank_branch`, `city`, `created_at`, `updated_at`) VALUES (2, '<NAME>', '<EMAIL>', '01345678334', 'Dhaka', 'Mottor House', 'public/customers/1674718858207605.jpg', 'Shimul', '1234', 'Islami', 'Dhaka', 'Dhaka', '2020-08-10 10:03:57', '2020-08-10 10:03:57'), (8, '<NAME>', '<EMAIL>', '01226789123', 'sylhet', 'new', 'public/customers/1686659548074627.png', 'Shimul', '1234577', 'Islami', 'Sylhet', 'Dhaka', '2020-08-11 08:37:14', '2020-08-11 08:37:14'), (9, 'Souvik', '<EMAIL>', '0156789123', 'sylhet', 'Mitaly', 'public/customers/1686659612612333.png', 'Shimul', '1234', 'Islami', 'Dhaka', 'sylhet', '2020-09-01 15:52:05', '2020-09-01 15:52:05'), (10, '<NAME>', '<EMAIL>', '01567891235', 'Chittagong', 'Mottor House', 'public/customers/1686659590468719.png', 'Shimul', '12345746', 'Islami', 'Sylhet', 'Commila', '2020-09-01 19:15:01', '2020-09-01 19:15:01'), (11, '<NAME>', '<EMAIL>', '01567891234', 'Chittagong', 'Mottor House', 'public/customers/1686659525726162.png', 'Shimul', '123445', 'Islami', 'Sylhet', 'Commila', '2020-09-01 19:25:18', '2020-09-01 19:25:18'); -- -------------------------------------------------------- -- -- Table structure for table `employees` -- CREATE TABLE `employees` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `experience` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `salary` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `vacation` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `employees` -- INSERT INTO `employees` (`id`, `name`, `email`, `phone`, `address`, `experience`, `photo`, `nid`, `salary`, `vacation`, `city`, `created_at`, `updated_at`) VALUES (1, 'Md. <NAME>', '<EMAIL>', '1234567890', 'sylhet', '12 years', 'public/employee/1686658724682244.png', '1234', '12000', '10', 'Dhaka', '2020-08-09 11:34:59', '2020-08-09 11:34:59'), (3, '<NAME>', '<EMAIL>', '0173345567', 'Dhaka', '10 years', 'public/employee/1674628048316390.jpg', '1234', '12000', '10', 'Dhaka', '2020-08-09 21:06:07', '2020-08-09 21:06:07'), (4, '<NAME>', '<EMAIL>', '01226789123', 'Dhaka', '10 years', 'public/employee/1686658603234084.png', '123', '15000', '10', 'Dhaka', '2020-08-10 08:54:59', '2020-08-10 08:54:59'), (5, '<NAME>', '<EMAIL>', '1234567890', 'sylhet', '10 years', 'public/employee/1686658816177800.jpg', '12347', '10000', '15', 'sylhet', '2020-08-17 19:45:26', '2020-08-17 19:45:26'), (6, '<NAME>', '<EMAIL>', '0123456789', 'Kulaura', '13 Years', 'public/employee/1686659035269929.jpg', '2162', '12000', '12', 'Sylhet', '2020-12-21 04:03:22', '2020-12-21 04:03:22'); -- -------------------------------------------------------- -- -- Table structure for table `expenses` -- CREATE TABLE `expenses` ( `id` int(10) UNSIGNED NOT NULL, `details` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `month` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `year` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `expenses` -- INSERT INTO `expenses` (`id`, `details`, `amount`, `month`, `date`, `year`, `created_at`, `updated_at`) VALUES (1, 'employee salary', '19000', 'August', '23/08/20', '2020', '2020-08-23 19:18:38', '2020-08-23 19:18:38'), (4, 'mouse buy', '30', 'August', '23/08/20', '2020', '2020-08-23 19:21:03', '2020-08-23 19:21:03'), (7, 'eating', '180', 'August', '23/08/20', '2019', '2020-08-23 19:21:36', '2020-08-23 19:21:36'), (8, 'Guest', '200', 'August', '23/08/20', '2020', '2020-08-23 19:34:04', '2020-08-23 19:34:04'), (9, 'rant fees', '2000', 'August', '24/08/20', '2020', '2020-08-24 07:19:55', '2020-08-24 07:19:55'), (10, 'transport bill Electiciey', '950', 'December', '25/08/20', '2020', '2020-08-25 07:43:43', '2020-08-25 07:43:43'), (11, 'Working', '500', 'August', '25/08/20', '2020', '2020-08-25 17:24:09', '2020-08-25 17:24:09'), (12, 'transport bill', '20,000', 'September', '13/09/20', '2020', '2020-09-13 08:45:02', '2020-09-13 08:45:02'), (13, 'transport bill', '500', 'October', '02/10/20', '2020', '2020-10-02 16:04:25', '2020-10-02 16:04:25'), (14, 'Tea', '120TK', 'December', '21/12/20', '2020', '2020-12-21 05:13:37', '2020-12-21 05:13:37'); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_07_28_194610_create_posts_table', 2), (5, '2020_08_08_194751_create_employees_table', 3), (6, '2020_08_10_085857_create_customers_table', 4), (7, '2020_08_11_090254_create_suppliers_table', 5), (8, '2020_08_16_060042_create_salaries_table', 6), (9, '2020_08_17_191200_create_salaryes_table', 7), (10, '2020_08_18_162936_create_categories_table', 8), (11, '2020_08_18_190112_create_products_table', 9), (12, '2020_08_23_185036_create_expenses_table', 10), (13, '2020_08_26_151323_create_attendances_table', 11), (14, '2020_08_28_163734_create_settings_table', 12), (15, '2020_10_01_081923_create_orders_table', 13), (16, '2020_10_01_082116_create_ordersdetails_table', 13); -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` int(11) NOT NULL, `order_date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `order_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `total_products` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `sub_total` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `vat` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `total` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pay` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `due` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`id`, `customer_id`, `order_date`, `order_status`, `total_products`, `sub_total`, `vat`, `total`, `payment_status`, `pay`, `due`, `created_at`, `updated_at`) VALUES (1, 2, '01/10/20', 'success', '4', '7,600.00', '1,596.00', '9,196.00', 'HandKash', '9196.00', '0.00', NULL, NULL), (2, 2, '02/10/20', 'success', '2', '3,000.00', '630.00', '3,630.00', 'Cheque', '3600.00', '30.00', NULL, NULL), (3, 8, '02/10/20', 'success', '2', '4,200.00', '882.00', '5,082.00', 'HandKash', '4000.00', '1082.00', NULL, NULL), (4, 9, '11/12/20', 'success', '1', '2,500.00', '525.00', '3,025.00', 'Cheque', '3025', '12-12-1222', NULL, NULL), (5, 8, '21/12/20', 'success', '2', '3,800.00', '798.00', '4,598.00', 'Cheque', '4598', '0', NULL, NULL), (6, 9, '21/12/20', 'success', '2', '5,000.00', '1,050.00', '6,050.00', 'HandKash', '3025', '0', NULL, NULL), (7, 9, '21/12/20', 'pending', '1', '2,500.00', '525.00', '3,025.00', 'Cheque', '3025', '0', NULL, NULL), (8, 10, '21/12/20', 'success', '2', '2,800.00', '588.00', '3,388.00', 'HandKash', '3025', '0', NULL, NULL), (9, 2, '21/12/20', 'pending', '3', '6,300.00', '1,323.00', '7,623.00', 'HandKash', '3025', '0', NULL, NULL), (10, 2, '21/12/20', 'pending', '3', '6,300.00', '1,323.00', '7,623.00', 'Cheque', '3025', '0', NULL, NULL), (11, 2, '21/12/20', 'pending', '5', '8,500.00', '1,785.00', '10,285.00', 'Cheque', '3025', '0', NULL, NULL), (12, 2, '21/12/20', 'pending', '4', '9,000.00', '1,890.00', '10,890.00', 'Cheque', NULL, NULL, NULL, NULL), (13, 2, '21/12/20', 'pending', '2', '3,800.00', '798.00', '4,598.00', 'Cheque', '4598.00', '0.00', NULL, NULL), (14, 11, '21/12/20', 'pending', '1', '1,300.00', '273.00', '1,573.00', 'Cheque', '3025', '0', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `ordersdetails` -- CREATE TABLE `ordersdetails` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `quantity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `unicost` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `total` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ordersdetails` -- INSERT INTO `ordersdetails` (`id`, `order_id`, `product_id`, `quantity`, `unicost`, `total`, `created_at`, `updated_at`) VALUES (1, 1, 21, '2', '1300', '3146.00', NULL, NULL), (2, 1, 7, '2', '2500', '6050.00', NULL, NULL), (3, 2, 21, '1', '1300', '1573.00', NULL, NULL), (4, 2, 22, '1', '1700', '2057.00', NULL, NULL), (5, 3, 22, '1', '1700', '2057.00', NULL, NULL), (6, 3, 23, '1', '2500', '3025.00', NULL, NULL), (7, 4, 7, '1', '2500', '3025.00', NULL, NULL), (8, 5, 21, '1', '1300', '1573.00', NULL, NULL), (9, 5, 25, '1', '2500', '3025.00', NULL, NULL), (10, 6, 7, '2', '2500', '6050.00', NULL, NULL), (11, 7, 7, '1', '2500', '3025.00', NULL, NULL), (12, 8, 21, '1', '1300', '1573.00', NULL, NULL), (13, 8, 24, '1', '1500', '1815.00', NULL, NULL), (14, 9, 7, '2', '2500', '6050.00', NULL, NULL), (15, 9, 21, '1', '1300', '1573.00', NULL, NULL), (16, 10, 7, '2', '2500', '6050.00', NULL, NULL), (17, 10, 21, '1', '1300', '1573.00', NULL, NULL), (18, 11, 24, '2', '1500', '3630.00', NULL, NULL), (19, 11, 22, '1', '1700', '2057.00', NULL, NULL), (20, 11, 7, '1', '2500', '3025.00', NULL, NULL), (21, 11, 21, '1', '1300', '1573.00', NULL, NULL), (22, 12, 7, '1', '2500', '3025.00', NULL, NULL), (23, 12, 24, '1', '1500', '1815.00', NULL, NULL), (24, 12, 23, '1', '2500', '3025.00', NULL, NULL), (25, 12, 25, '1', '2500', '3025.00', NULL, NULL), (26, 13, 7, '1', '2500', '3025.00', NULL, NULL), (27, 13, 21, '1', '1300', '1573.00', NULL, NULL), (28, 14, 21, '1', '1300', '1573.00', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `posts` -- CREATE TABLE `posts` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `author` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `details` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`id`, `title`, `author`, `details`, `created_at`, `updated_at`) VALUES (5, 'Campus', 'Karim', 'how can we insert or add data into Mysql table by using Ajax in Laravel ... file we have write html code for add new data button and bootstrap modal. ... event like when we have click on add button and submit form data event.', '2020-07-29 03:38:51', '2020-07-29 15:56:47'), (7, 'Vice Chancellor', 'Rasel', 'how can we insert or add data into Mysql table by using Ajax in Laravel ... file we have write html code for add new data button and bootstrap modal', '2020-07-29 03:59:43', '2020-07-29 03:59:43'), (8, 'City Campus', 'javascript', 'how can we insert or add data into Mysql table by using Ajax in Laravel ... file we have write html code for add new data button and bootstrap modal', '2020-07-29 04:01:15', '2020-07-29 04:01:15'), (20, 'City Campus', 'ahmed', 'laravel bangla full course inventory project', '2020-07-29 16:07:34', '2020-07-29 16:07:34'); -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` int(10) UNSIGNED NOT NULL, `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cat_id` int(11) NOT NULL, `sup_id` int(11) NOT NULL, `product_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_garage` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_route` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `buy_date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expire_date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `buying_price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `selling_price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `product_name`, `cat_id`, `sup_id`, `product_code`, `product_garage`, `product_route`, `product_image`, `buy_date`, `expire_date`, `buying_price`, `selling_price`, `created_at`, `updated_at`) VALUES (7, 'Man\'s Watch', 3, 3, 'W-22', '42K', 'Dhaka', 'public/product/1679452943902181.jpg', '2020-08-31', '2020-09-02', '2300', '2500', '2020-08-31 07:32:34', '2020-08-31 07:32:34'), (21, 'Woman\'s Bag', 8, 4, 'W-2222', '42D', 'Dhaka', 'public/product/1679453011950136.jpg', '2020-08-21', '2020-08-29', '1200', '1300', '2020-08-31 02:07:50', '2020-08-31 02:07:50'), (22, 'Woman\'s Shoes', 8, 4, 'W-20', '42C', 'Dhaka', 'public/product/1679452992502585.jpg', '2020-08-22', '2020-08-29', '1200', '1700', '2020-08-31 02:07:50', '2020-08-31 02:07:50'), (23, 'Woman\'s Watch', 8, 4, 'W-222', '42K', 'Dhaka', 'public/product/1676661066481518.jpg', '2020-09-01', '2020-09-23', '2300', '2500', '2020-09-01 19:29:56', '2020-09-01 19:29:56'), (24, 'Children Toys', 11, 3, 'w-2120', '42D', 'Sylhet', 'public/product/1686660828461035.jfif', '2020-10-02', '2020-10-30', '1200', '1500', '2020-10-02 15:04:43', '2020-10-02 15:04:43'), (25, 'Man Shoes', 3, 4, 'W-20', '42K', 'Dhaka', 'public/product/1679453130642791.jpg', '2020-10-01', '2020-10-16', '2300', '2500', '2020-10-02 15:08:36', '2020-10-02 15:08:36'), (26, 'Mobile', 8, 3, '12345', 'Block D', 'Indoor', 'public/product/1686656846172074.jpg', '2020-12-19', '2020-12-24', '1200', '1400', '2020-12-21 03:26:34', '2020-12-21 03:26:34'), (27, '<NAME>', 9, 3, '12345', 'Block D', 'Sylhet', 'public/product/1686661007459616.jfif', '2020-12-24', '2020-12-26', '1200', '1250', '2020-12-21 04:34:43', '2020-12-21 04:34:43'), (28, 'Hair Oils', 2, 5, '123456', 'Block C', 'Sylhet', 'public/product/1686661258010943.jfif', '2020-12-12', '2020-12-26', '1090', '1250', '2020-12-21 04:37:29', '2020-12-21 04:37:29'), (29, 'Generator', 1, 6, 'c-1234', 'Block C', 'Sylhet', 'public/product/1686661411946495.jfif', '2020-12-15', '2020-12-31', '30000', '32360', '2020-12-21 04:41:09', '2020-12-21 04:41:09'), (30, 'TV', 7, 6, '13-cvt', 'Block A', 'Indoor', 'public/product/1686661900624127.png', '2020-12-11', '2030-12-11', '30000', '32360', '2020-12-21 04:48:55', '2020-12-21 04:48:55'), (31, 'TV', 7, 3, '1101-AF', 'Block A', 'Sylhet', 'public/product/1686661991791378.png', '2020-12-11', '2028-11-12', '28000', '32000', '2020-12-21 04:50:22', '2020-12-21 04:50:22'), (32, 'TV', 7, 3, '1f14E', 'Block-G', 'Indoor', 'public/product/1686662113683098.png', '2020-11-11', '2025-11-11', '22000', '26000', '2020-12-21 04:52:18', '2020-12-21 04:52:18'), (33, 'Girl_dress', 8, 6, '11H35', 'Block-G', 'Sylhet', 'public/product/1686662592645805.png', '2020-11-12', '2023-11-10', '1200', '2550', '2020-12-21 04:59:55', '2020-12-21 04:59:55'), (34, 'Girl_dress', 8, 6, '1SDA23', 'Block A', 'Sylhet', 'public/product/1686662673407850.png', '2020-11-12', '2024-11-12', '1800', '2700', '2020-12-21 05:01:12', '2020-12-21 05:01:12'), (35, 'Girl_dress', 8, 3, '1qwop6', 'Block C', 'Sylhet', 'public/product/1686662762068977.png', '2020-11-12', '2025-11-02', '1230', '2050', '2020-12-21 05:02:36', '2020-12-21 05:02:36'), (36, 'Girl_dress', 8, 3, '1101-AF', 'Block D', 'Sylhet', 'public/product/1686662875986027.png', '2020-11-12', '2020-11-09', '1800', '26000', '2020-12-21 05:04:25', '2020-12-21 05:04:25'), (37, 'boy\'s dress', 3, 3, 'c-1234', 'Block-G', 'Sylhet', 'public/product/1686663090493195.png', '2020-11-12', '2023-04-07', '1090', '1400', '2020-12-21 05:07:49', '2020-12-21 05:07:49'), (38, 'boy\'s dress', 3, 3, '13-cvt', 'Block D', 'Indoor', 'public/product/1686663156354202.png', '2020-11-12', '2024-11-12', '1090', '1500', '2020-12-21 05:08:52', '2020-12-21 05:08:52'); -- -------------------------------------------------------- -- -- Table structure for table `salaryes` -- CREATE TABLE `salaryes` ( `id` int(10) UNSIGNED NOT NULL, `employee_id` int(11) NOT NULL, `salary_month` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `paid_amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE `settings` ( `id` int(10) UNSIGNED NOT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_mobile` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_zipcode` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`id`, `company_name`, `company_address`, `company_email`, `company_phone`, `company_logo`, `company_mobile`, `company_city`, `company_country`, `company_zipcode`, `created_at`, `updated_at`) VALUES (1, 'Mitaly', 'sylhet', '<EMAIL>', '0156789123', 'public/company/1676297073317932.png', '1232212234', 'Dhaka', 'Bangladesh', '12345', '2020-08-25 18:00:00', NULL); -- -------------------------------------------------------- -- -- Table structure for table `suppliers` -- CREATE TABLE `suppliers` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shop` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `account_holder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `suppliers` -- INSERT INTO `suppliers` (`id`, `name`, `email`, `phone`, `address`, `type`, `photo`, `shop`, `account_holder`, `account_number`, `bank_name`, `branch_name`, `city`, `created_at`, `updated_at`) VALUES (3, 'Rasel', '<EMAIL>', '1234567890', 'sylhet', 'Whoole Seller', 'public/supplier/1674850698326738.jpg', 'Mitali', 'Shimul', '12345', 'Islami', 'syl', 'sylhet', '2020-08-12 19:54:54', '2020-08-12 19:54:54'), (4, 'Sourav', '<EMAIL>', '0156789123', 'Dhaka', 'Distributor', 'public/supplier/1686659765289855.png', 'Mitali', 'Shimul', '1234', 'Islami', 'syl', 'Dhaka', '2020-08-12 19:57:01', '2020-08-12 19:57:01'), (5, '<NAME>', '<EMAIL>', '01226789123', 'sylhet', 'Brochure', 'public/supplier/1686659730534884.jpg', 'Mitali', 'Shimul', '1234577', 'Islami', 'syl', 'sylhet', '2020-08-12 20:41:53', '2020-08-12 20:41:53'), (6, '<NAME>', '<EMAIL>', '0123456789', 'Kulaura', 'Whoole Seller', 'public/supplier/1686659888464158.png', 'Mitali', 'naeem', '02314', 'Islami', 'Kulaura', 'Sylhet', '2020-12-21 04:16:56', '2020-12-21 04:16:56'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (5, 'Naeem', '<EMAIL>', NULL, '$2y$10$IoyZew/gPTOSxWoBBpYZhuvOALQpORrhciGeKnukEDJrpPwSsHHa2', '984YnpOxHIsScniCVi8jqF6iINjSz1lO5rbwdSL9p994K4rTyWD9UureSqjC', '2020-08-08 13:13:59', '2020-08-08 13:13:59'); -- -- Indexes for dumped tables -- -- -- Indexes for table `advance_salaries` -- ALTER TABLE `advance_salaries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attendances` -- ALTER TABLE `attendances` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customers` -- ALTER TABLE `customers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `employees` -- ALTER TABLE `employees` ADD PRIMARY KEY (`id`); -- -- Indexes for table `expenses` -- ALTER TABLE `expenses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ordersdetails` -- ALTER TABLE `ordersdetails` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `salaryes` -- ALTER TABLE `salaryes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `settings` -- ALTER TABLE `settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `suppliers` -- ALTER TABLE `suppliers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `advance_salaries` -- ALTER TABLE `advance_salaries` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `attendances` -- ALTER TABLE `attendances` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `customers` -- ALTER TABLE `customers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `employees` -- ALTER TABLE `employees` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `expenses` -- ALTER TABLE `expenses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `ordersdetails` -- ALTER TABLE `ordersdetails` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; -- -- AUTO_INCREMENT for table `posts` -- ALTER TABLE `posts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `salaryes` -- ALTER TABLE `salaryes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `settings` -- ALTER TABLE `settings` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `suppliers` -- ALTER TABLE `suppliers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; COMMIT; /*!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 */;
LOAD DATA LOCAL INFILE '/docker-entrypoint-initdb.d/anime_split_genre.csv' INTO TABLE jupyter.anime_split_genres FIELDS TERMINATED BY ',' ENCLOSED BY '"' IGNORE 1 LINES ;
<filename>microsoft-wpa-framework-code/SQLPoolObjects/SqlPoolDB/dbo/Tables/ActivityType.sql<gh_stars>0 CREATE TABLE [dbo].[ActivityType] ( [ActivityTypeId] INT IDENTITY (1, 1) NOT NULL, [ActivityTypeDescription] NVARCHAR (512) NULL ) WITH (CLUSTERED COLUMNSTORE INDEX, DISTRIBUTION = ROUND_ROBIN);
SET CLIENT_ENCODING TO UTF8; SET STANDARD_CONFORMING_STRINGS TO ON; BEGIN; CREATE TABLE "jampa"."comunidade" (gid serial, "número" float8, "comunidade" varchar(50), "demais_com" varchar(50), "area" float8, "perimeter" float8, "hectares" float8, "acres" numeric); ALTER TABLE "jampa"."comunidade" ADD PRIMARY KEY (gid); SELECT AddGeometryColumn('jampa','comunidade','geom','0','MULTIPOLYGON',2); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('47','<NAME>','_','38499.514','1001.184','3.850','9.51343699956e+000','0106000000020000000103000000010000001F000000D43D6F44456D41C074D45BD889851CC0D7C363153F6D41C0033CB0C1AF851CC00C871D9A456D41C0789ACB220B861CC05094D923556D41C024652839C5851CC0622EB4626A6D41C0190F138861851CC06BBEDA9A6C6D41C073D7DF4640851CC04743E669746D41C02DFEFA901D851CC01374EAF6816D41C0C30E1B5BEB841CC038CD93BE866D41C0AE6BAB3AD4841CC0FBF72D66846D41C0B715D73CAF841CC0B849EA80746D41C06F26739291841CC0E6C963C56C6D41C01D46A19F78841CC06BD648CE5E6D41C0167387FC48841CC055D985CC556D41C0EBE59BE421841CC071125A754F6D41C0850EB3D7F9831CC0B962A15D446D41C0882BB5DAF5831CC0A96BDE27436D41C0A145F516DA831CC02EBB6EC22C6D41C055781127DF831CC01F4C9E7A2C6D41C0C3DB2371EF831CC0B685CB842C6D41C03375B2F3ED831CC0F353A3792C6D41C0281F8CCDEF831CC0EA1544DF2B6D41C04AE004ED24841CC0A6F48C702C6D41C0F16E36F05C841CC02C4258AA2C6D41C09FACA010A8841CC08ABDEC1A296D41C0777B38CAC0841CC04C88AFDD216D41C0C96C811AFB841CC07F618D47246D41C0F98DE9D418851CC02019D75A286D41C061ED31B61A851CC0347C5F13366D41C0C2000B8BD8841CC0192939143E6D41C0DB5C7F1B37851CC0D43D6F44456D41C074D45BD889851CC001030000000100000005000000F353A3792C6D41C0281F8CCDEF831CC01F4C9E7A2C6D41C0C3DB2371EF831CC031AC62DB2B6D41C02F8587C106841CC0E41BCDDB2B6D41C008CF0BFD09841CC0F353A3792C6D41C0281F8CCDEF831CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('65','São Rafael','_','92145.260','1810.443','9.215','2.27695896149e+001','01060000000100000001030000000100000028000000620F5E903A6D41C01E739D2AEA851CC0265507A5286D41C0B22C376828861CC01808761F226D41C0F39C6F2C52861CC082082293396D41C095EAD9DC29871CC0A032F4C3496D41C0AA22653FEA871CC07518D031546D41C096C574428F881CC0833A1CDC586D41C016674B4E14891CC041736E575B6D41C0B8F430F6AA891CC0A84881575A6D41C0C3EE5E4C5F8A1CC0E2049A10576D41C0D3BB6BE8FA8A1CC027C42718586D41C048472274288B1CC01F09CA055C6D41C07F134853528B1CC0E835E3DB6D6D41C056012E2D768B1CC0BD96A235736D41C035D422157F8B1CC07644FA2E796D41C0A9AB2627778B1CC069E4B9CEA36D41C053AFC301D48A1CC09552FCC8B36D41C056BDB65F918A1CC023B89449B96D41C0EE1A512B4E8A1CC00A5479DEB76D41C02E251EDB148A1CC0C03787C9B16D41C021BD6B03DB891CC093BD60EDA56D41C01DE2BF1AAC891CC0AA340DBC9D6D41C05E996503C4891CC02FFDD078966D41C043A3A6C9EE891CC01A5F2734906D41C028B9E61DCC891CC013AE8CBF8D6D41C01AB4F19D9E891CC0F5A02EC2896D41C05D5F35023A891CC08B944873806D41C09C72717E03891CC048612791716D41C0F8DD7DFCFD881CC0993CE61C6F6D41C04B37DE2AD3881CC0BF5B44996F6D41C02917B0A6B6881CC0240F70BE736D41C06DE0112786881CC01C2098AE6A6D41C03821287D22881CC026319336666D41C0216DCE71E6871CC0A81A1C43606D41C0659CEA12A5871CC0480634B8596D41C0BD69DC6F7F871CC046A581025E6D41C05D56670A4E871CC04980E890546D41C0938AFA10FB861CC0F39887C8446D41C08501E1B949861CC0491223AB3E6D41C06D8781040B861CC0620F5E903A6D41C01E739D2AEA851CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('61','Santa Clara','_','72869.163','1700.557','7.287','1.80063623712e+001','010600000001000000010300000001000000160000001360E529C46C41C0A3D76CBA06841CC0D7A81D2AB76C41C07926F1BBB0831CC030BFB019A66C41C0DF21EDD879831CC0D352BE4F706C41C019014CF344831CC0FCBCAEED626C41C02B8371101F831CC0E0372EFB526C41C0F891198BDD821CC011CBFDFD416C41C088CFAFD970821CC0C6E9AD29386C41C0F8E53106C1831CC08620A1403A6C41C0F0C68A9823841CC03C81C63C416C41C0FC99188418841CC0F0E0C4FF586C41C0AA1D1B6E65851CC0B5B6C862636C41C0C36718E064851CC0815E9DE86D6C41C0960151C650841CC073115B23826C41C0DF0B42B46F841CC07D1D35D38F6C41C01193D94480841CC0D59E43E0AA6C41C06FDD77C27B841CC0EBFD871CBD6C41C05E2A5C5176841CC0B2261A7CCB6C41C0DB970232A2841CC02EFDFF02DA6C41C00FF8C43FF3841CC0B37B4F17E56C41C00A39EAFC6D851CC0D7B91EB0F06C41C033C4A3662C851CC01360E529C46C41C0A3D76CBA06841CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('45','Nova República / Mangue Seco','_','53590.023','1536.491','5.359','1.32423830915e+001','0106000000010000000103000000010000000C0000008BF13F2C3C7041C0C533CB8A5CBA1CC087E44ACAE26F41C086078CF167BA1CC05E4102CDE26F41C00461A2AA7CBA1CC023B99D62F96F41C045DE1A7684BA1CC0123673A2F96F41C0AFA3B86641BB1CC0E1D13158257041C0BD95303C41BB1CC02284B2E6257041C04FF630222CBC1CC091AE564DF06F41C01B86DE2A39BC1CC00BE09246F06F41C0C6970B692FBD1CC01409D0CE277041C01EBADF6F1DBD1CC00B4A1E6C377041C0229B27D620BD1CC08BF13F2C3C7041C0C533CB8A5CBA1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('52','Paulo Afonso III','_','32037.825','1472.750','3.204','7.91671901868e+000','0106000000010000000103000000010000000D00000075D92254796F41C0FFCD8F78A88F1CC002D436C2846F41C05890585C208F1CC0D41EC433786F41C03F11FC1CA88D1CC0EA1177156B6F41C08841FC07338C1CC0E163637A666F41C06AEB943C9D8B1CC0219623B25C6F41C08A47F3F6968A1CC0F9B8AD7B616F41C0D9396B038D8A1CC0E39D7FB4536F41C008268B7060891CC07B9CE73A446F41C0FFEF1BA27E891CC028C889284F6F41C09E01FBFC7F8A1CC0023BE6065E6F41C0F04683B34E8C1CC0069FF384736F41C0C6CBA1E5CA8E1CC075D92254796F41C0FFCD8F78A88F1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('21','Da Mata, São Geraldo','_','261696.123','5360.135','26.170','6.46665202862e+001','010600000001000000010300000001000000360000001075610B486F41C0ED7B977F8C941CC02E5AB48F466F41C0868AD66506951CC0F3E0C98E4D6F41C0E854CD212B961CC042DD122C546F41C0A90EC48291961CC076D9BF593E6F41C064E479E6B4971CC0675BC324366F41C01351EC6539981CC00A885549326F41C0F6D9A0AF47991CC0F03B9F5D306F41C018990138DE991CC0EC27379C2E6F41C052E50B34A19A1CC0AB8FB4BB236F41C0720D3095759B1CC03500C3DF1B6F41C0C5627A2E759C1CC06FE92824176F41C038668DBD5C9D1CC02B1E9C09066F41C0579DE77E949E1CC06B7344D1F06E41C022C7066CF59F1CC09642C436D86E41C0F36EC340A6A11CC0AED49647C86E41C01A73AED315A31CC0E101F1B5D56E41C07A27BB6D3EA31CC0ADA63760E56E41C04F910BC8EEA11CC0EFECF39BF86E41C025193170A2A01CC0335CFC2E066F41C0F1F7B7C0B39F1CC072EB28D20E6F41C0BDE8F2CC339F1CC00BB52193286F41C03D86C52B959D1CC0B05AD72F2D6F41C0E7ECEAEED89C1CC0B40D847D326F41C0A5891C5BF19B1CC0B91563073C6F41C0A74BE0DDB19A1CC06FD0FFBF336F41C0C4301804A99A1CC0E01B097C386F41C050187DE0C4991CC004FF4EEA366F41C018A186EDC4991CC09504C55C3A6F41C0D2D8B0FDD9981CC072DCB1ED3C6F41C057ABE87CD6981CC0E71EF9F5426F41C068E53DAA0D981CC0181AFB84596F41C0A0C10FFD18971CC0DF84190D716F41C0F5BEA5B3D9941CC0D097356CA76F41C0DCDB220841951CC0650554A5B16F41C04B4F3F3101941CC035A5B7C5DB6F41C0CB548D617E941CC0562D2B8FF06F41C09810D8719E921CC01D5F30B8BA6F41C0DE37678BE7911CC0AD5D1A50B46F41C028AFFEBA8D921CC0B2CFA31D886F41C0A839550E1D921CC088848198916F41C03FDB81BD20911CC07CF05FFD836F41C002F503D4F9901CC0DEB1F356886F41C0C2BE07C578901CC0B83B4235826F41C07E5E9DAF55901CC067D9CFC7756F41C0FD9B50611A901CC00D9A75FD706F41C0C918ED3065901CC02A0B3E6F626F41C0BC18FD292C911CC0C740F18D586F41C0B61319A59B911CC010BE4A6F4F6F41C0491352E028921CC0ACA9B7C54A6F41C06E60442C9A921CC0C2AF469F456F41C0481FB9591D931CC0C3C3DA73416F41C0E5B1EEB086931CC0D8F61245446F41C0BC3A28572D941CC01075610B486F41C0ED7B977F8C941CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('6','Baleado','_','76358.515','1163.592','7.636','1.88685999874e+001','0106000000010000000103000000010000001500000000411703117241C04EDF9200349E1CC071E8CB2D117241C08C190FFC799D1CC0582CDDE90B7241C08E38B3A66D9D1CC0BE2826DB027241C0A29AC0D87A9D1CC03ED34B0CF77141C09E0D426C639D1CC0094EEBACF27141C02A1DA0AF809D1CC0AE4F0571EF7141C0761A4AEB8E9D1CC00936A156D77141C044D913010D9E1CC01F1D7992B97141C090BBB804E19E1CC06A873FB0AB7141C0E98B9808479F1CC015BAB358B67141C074372D2A51A01CC04163BE10C07141C0E5B214733DA01CC0AC1A1011C67141C0D2B80C2BC8A01CC0507F065FCC7141C0847DF7B780A01CC01D0AD220D37141C0BECC654159A01CC0B9E2BC9FE27141C0E890F2022CA01CC0BC8F5A67FD7141C0D329F06BE89F1CC025C06B15137241C09C9D25E9B39F1CC023CD7AC0117241C031ABE137499F1CC08988E0CB107241C05D72EC55BE9E1CC000411703117241C04EDF9200349E1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('5','Balcão','_','15020.579','500.972','1.502','3.71166586250e+000','010600000001000000010300000001000000060000004EF2670DBF6B41C013305F7268A71CC08C136FA29C6B41C0938AEA386DA71CC0B4EC338C926B41C0AC48E4EE6EA71CC0864FAFD3926B41C028A455F55BA81CC09D4B60F9BF6B41C081F7AF1E52A81CC04EF2670DBF6B41C013305F7268A71CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('12','Bola na Rede, Independência','_','40747.550','1005.065','4.075','1.00689388433e+001','01060000000100000001030000000100000012000000F282CC84FF7341C09EFAAE5FBD9B1CC0AE0D13A7077441C087321B37BA9B1CC088F9D3670D7441C078465AE87B9B1CC037889DDA167441C0026D60E2A59B1CC045AB2D50277441C09BDD67F92A9B1CC0BF83F41D367441C0E71BE345909A1CC0C3C3EB14327441C0414E86587D9A1CC0A7A0D148247441C073CABAD8009B1CC08A153F5CD77341C055C58202EF991CC00AA3064BCE7341C00F1931BA239A1CC0A9745F7CC77341C05E7FA74E779A1CC0D5B1554CC97341C0213031EA7F9A1CC0C8B233F8C87341C0B218CA7CBF9A1CC0BDB39B16D07341C0FC5E92B5429B1CC074833C22D47341C04C2A5F08C69B1CC00F565587DD7341C06E91462ABA9B1CC092B74059EC7341C04EDAD301B19B1CC0F282CC84FF7341C09EFAAE5FBD9B1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('35','Jardim da Mônica,Miramangue/Beira da Linha','São Judas Tadeu','223521.587','5875.538','22.352','5.52333870849e+001','0106000000010000000103000000010000004B0000006DBB8AEC457441C04098FA89B2861CC08DF57F58467441C00D0D5ACF91861CC04BA823FC427441C08AE8B307C6851CC03D031D673E7441C036FB672246851CC014A5CA9F3E7441C07143956ABC841CC0DE34354D497441C022BB26FC94841CC034C7DF9D4B7441C0DBF32EDFC0841CC01C785EB3737441C06FB4E70715851CC018CB44FF7B7441C02A59A3B542841CC051D84BF2837441C03D8FD75447841CC03C3CD3C5857441C02274D79D38841CC0E2C0F975947441C00949671A59841CC0DEF212BEA97441C0982E0A1DA4841CC0C82EF8B5AB7441C005EC27A280841CC0E68728F4B97441C0682596C7BA841CC0AEA94DD5B77441C0C3CD637CDF841CC03A6EEF55E17441C0E26D1DA386851CC0C609A116E27441C000AD6FA170851CC04091898CFC7441C073B3E97E9A851CC0B6874E88F97441C0F9FD0788E7851CC07EA984A3F37441C0EFA2810367861CC099E551A3EF7441C0A6D8912DE0861CC0786295B6007541C0C2DF63F009871CC0162A3080FC7441C02E8C024E8A871CC0F2CA797F477541C0EB4D496962881CC081C8EA23417541C065FB7FDBD7881CC0B7B1B0EA487541C0FBDEEDB6DB891CC0430C60E7367541C040B91764038A1CC00DCFA20F377541C0C01025EF0B8A1CC01A6C5CD7427541C023268FF7238A1CC0F7BF0694497541C0F6CDD32A3C8A1CC0A6DB052C527541C079A4DD44808A1CC0AB56A0B9577541C014416A00E38A1CC00D1743AF587541C02A813FCA348B1CC0A800A57B577541C0A97226215D8B1CC020C6303B537541C0D26442C8918B1CC0EACBA3354C7541C050121EE4A18B1CC064F567FA417541C01EEEB431D78C1CC09235844C367541C051602654818D1CC0D24C0D7A367541C0EDD12B42D78E1CC0A7C30082207541C015092BA86C911CC063C702BF2E7541C05C7326089D911CC0CCFF45E03C7541C06CB3637FD78F1CC0B136EDC44A7541C03D55EDC5708D1CC09A61376F4C7541C0C22D1830528D1CC0B5931ED7627541C0A4DB2E90B98B1CC0388148DB647541C0F94B7495CC8A1CC0AB65FA7F637541C0CF1EC2F4CA891CC002B40285727541C015B29A30F7881CC0C323BD43787541C016A754527F881CC0594F428A657541C0E06B9A12E6871CC08D79D3B2357541C0D0F195B2B2861CC0BC953A8A2E7541C06AE03757E1861CC0BCE34143247541C09CBBE06898861CC062A832E22B7541C0C374171471861CC0878D3D7B217541C0A479429337851CC077B22C180A7541C0D51CC3942E851CC00C5AB86CF97441C08B494CEE17851CC02599E6E7E67441C03F076B08E4841CC0ABE81B0BD87441C0DB242F089A841CC03C38ABB0BB7441C056B234A8FE831CC0583CA7D5A17441C0D018088FC8831CC0849E6C147A7441C08A13F892A1831CC09E8347A1637441C0930010A0BF831CC0AB14D3DB507441C04073A750F2831CC0DB9987B9457441C076C7D56C1D841CC0A86F5B69217441C06AF05F3290841CC0752629EAF47341C034054CD160841CC048F0D2D8F07341C05968FBF1D8841CC092A591A1FA7341C007175A2F07851CC0F01D1238107441C05D1FF12E3D851CC055552DF7277441C06B812CE43F851CC0214434C8317441C044B38A5031851CC03C777C30377441C08E4F2A1CB7861CC06DBB8AEC457441C04098FA89B2861CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('37','<NAME>','_','40781.666','926.646','4.078','1.00773690496e+001','010600000001000000010300000001000000110000003817F6D69D7141C03C2C2E2F25981CC09DCBD70DB27141C06203AECB<KEY>FD<KEY>BEA961CC068380D2FAB7141C0577D3BB6C2951CC098447D06787141C0EA67C72F86961CC00787D383807141C0A562FF68E1961CC0C9AD56BF887141C00FF13AD21A971CC006981BB9977141C0EA54CFC874971CC08F9310959B7141C07B151D7B98971CC0A77F66579D7141C085707B41C3971CC03817F6D69D7141C03C2C2E2F25981CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('32','Gauchinha II','_','29107.978','938.969','2.911','7.19273807836e+000','01060000000100000001030000000100000013000000A91548C68C7241C005F56DC42FB11CC0FCDD0F7C807241C0D301971050B11CC09BD7073B837241C043B57405D8B11CC0067C5B0B7F7241C0E1385062E4B11CC0B662F7E36D7241C0A6C6CE83ECB31CC09E3D724C6D7241C09B57E76D0FB41CC01858E3D16B7241C0D3EE88D062B41CC047EE929D797241C09085B0F43EB41CC0740CF1C0767241C03292D085D6B31CC053C9E9A7787241C0FBA1DF5B8FB31CC0A3EE4EC4817241C03A901FD878B31CC00CA249EF847241C0D136FF7CC6B31CC01A349013937241C0ED0559D79FB31CC07E2591F8967241C0CC57A4887FB31CC094914128A17241C08296E04556B31CC05220F2E0987241C026FEDAEE37B21CC0836AECA5947241C087D77315B7B11CC02E8ECDFC8E7241C0E1B2F87B36B11CC0A91548C68C7241C005F56DC42FB11CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('46','Nova Vida, Taipa, Vila da Palha/Paz','_','114016.710','2484.741','11.402','2.81741426585e+001','0106000000010000000103000000010000000D000000CC4A09A5157341C082FF68A684BB1CC064F14FAEFD7241C07A18013B26B91CC0C34DCC63307341C0D3C9304A9DB81CC0C31750232E7341C0B49387254CB81CC0162876B7FA7241C0B7A20FF9CCB81CC0658B2A36937241C0A3CDD068D0B91CC0FE84EB00997241C0B84A99432ABA1CC06F931CB8D27241C087FFAC5121BC1CC00181F3C5277341C0276F2E2647BF1CC09D040B5B307341C0CBC58B0102BF1CC0B47BCA91DA7241C07D15C3FC12BC1CC0B2462286DF7241C06F513EF109BC1CC0CC4A09A5157341C082FF68A684BB1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('31','Gauchinha I','_','15816.684','581.201','1.582','3.90838776466e+000','0106000000010000000103000000010000000A0000001A71E22BF77241C09C9248EB3AB21CC095828B29F07241C0A9DDE01951B21CC0254AD151E77241C08316624763B21CC0BBADD1E9E07241C0DE60B0CE6AB21CC0CFD672FBE97241C05227D8BC64B31CC0BAC912F4DD7241C07213D19A9CB31CC065BB4B49E07241C0C6F4A0C9D3B31CC06AA0BBA8E77241C0B2FA0A9643B41CC0D473CD9B037341C075A25F237FB31CC01A71E22BF77241C09C9248EB3AB21CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('68','Timbó I, Timbó II','_','158315.936','1839.015','15.832','3.91207198608e+001','01060000000100000001030000000100000015000000960D36FC276A41C08E305E7483981CC05D1BE92D3E6A41C0130124D49D981CC03403C077406A41C0B482E55BBB971CC0F524011E456A41C06B66773B88961CC0D8684CD2486A41C0039F63D573951CC064637EE84D6A41C017EAED5AEA931CC0D45A9998496A41C0D3F2967B9B931CC0C84A0B9A406A41C09AA0C45163931CC02563B6532F6A41C0AEB88C014A941CC01E53E1972B6A41C01FBF403FD7941CC08BC7DDFA0E6A41C04F1BE4CE2E941CC06C891BCC006A41C0C2BAC7B3C2931CC06D937C62EB6941C0BB7A9EE974941CC030053FB0CC6941C0A5342183D1951CC08CFF720DE46941C02EDA37A257961CC0E39F0CC7D26941C01FA2EC513E971CC07B8857C5DB6941C0C08D115074971CC024B4B0ECF86941C00057C03816981CC0E6F0DD9E076A41C0B577138545981CC066CB78621A6A41C01EA1A87D65981CC0960D36FC276A41C08E305E7483981CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('25','Eucalipto','_','18650.274','879.013','1.865','4.60858316063e+000','010600000001000000010300000001000000080000003BBF33F5D46B41C04D90C1CA88A21CC06ADF2F749E6B41C008B13DFC7AA21CC0A190AD435E6B41C05B1E459671A21CC0599D512B5E6B41C02680D323E4A21CC0C1F545588A6B41C0C104F5A0F6A21CC0ECEC8B62CA6B41C00737375FDFA21CC096D5CDD0D46B41C05C878512CEA21CC03BBF33F5D46B41C04D90C1CA88A21CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('57','Riacho','_','19617.545','597.717','1.962','4.84760103941e+000','010600000001000000010300000001000000090000002663F429576F41C0A395CE47AD711CC0B51B977A306F41C09416089877711CC0FB3C4ADC216F41C01CC99EF773711CC03B8ADFE5146F41C04BE1295B58721CC00C4737211B6F41C03D2657CB72721CC082E04B971C6F41C06023C49E58721CC0C8A16A91206F41C0FE8FA4485F721CC00C5047D84D6F41C07B32C6AD9C721CC02663F429576F41C0A395CE47AD711CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('73','<NAME>','_','37070.119','938.994','3.707','9.16022585032e+000','01060000000100000001030000000100000012000000CCE6FD81C66E41C034DE27CADF711CC016B7DEB9B66E41C0919D22853D721CC0E11DA86CAF6E41C08DE8B41B66721CC0B0DBED52A56E41C005A57A8FB0721CC064D74301B06E41C0A7E89377F7721CC0F9820498BB6E41C07AE9C2D45C731CC05DD6E895C16E41C03EDDD0538C731CC0449B6505CB6E41C06BA60D3CB3731CC0BF4AD228D76E41C0F2F191DBCB731CC02E6E9FECE96E41C07AE161B9F9731CC04EC1FF5FF46E41C08EC2911D3F731CC0CE683D3C066F41C0D23BD1452A721CC04116E411FD6E41C034DF1CE50C721CC035040019E46E41C03007BDFAC3721CC09D75A962D46E41C0810AC35F46721CC02BDC0078D06E41C0B09330B45C721CC0AED6CE70CC6E41C0BA04EE8431721CC0CCE6FD81C66E41C034DE27CADF711CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('30','Frei Vital,Porto do Capim,15 de novembro,Nassau','_','31847.457','1490.865','3.185','7.86967804398e+000','0106000000010000000103000000010000001D0000003F91B790087241C0C9F04D4D09741CC019897014FE7141C082C583B67C731CC0F9DD3BC4FA7141C07749DD8B8E731CC059A2D1F3F67141C014698A6D54731CC0B5CABA1EEF7141C00746542A75731CC060273979E97141C0224C15F226731CC084CB212AF07141C033171F0BDF721CC0CD45D069E57141C00C7ED59F1D721CC021B3B83DE47141C08BB037FAB9711CC0F8AC1EB1E07141C00B41CF9B61711CC0A064D57CDA7141C0CE04DE0119711CC01D195886DC7141C0AF900E4199701CC084265A18E47141C02AAF045E9C701CC0BB23946DE67141C053A895D83A701CC09B600C12E27141C0F58ED15822701CC0982DA63BD87141C0DC432E25EF6F1CC048A8D264C57141C09AD65D0C91701CC09C514FF6AE7141C057D865374C711CC053478DF3B47141C0156316BD7A711CC0BB851CFBCA7141C06B859384CC701CC005BED2C2CF7141C0FB4208181A711CC09324F66DD87141C0FE9B9A39FC711CC024AEEC7EDC7141C0F2F1541E80721CC055B2863AD17141C04111359CAE721CC0B118D858E57141C0AA00B05EEF731CC0AAB2F8F9F37141C0C2BD9CFCBE731CC003C9AB08FC7141C053BEED2543741CC0772ABFF4037241C0181F6DD028741CC03F91B790087241C0C9F04D4D09741CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('38','Laranjeiras','_','154523.450','2094.463','15.452','3.81835761219e+001','01060000000100000001030000000100000016000000CE3456B2906D41C0B772F2424AAF1CC093035237886D41C0228B9D33A2AE1CC0BEA9E4AE776D41C0E04DB4F7E4AE1CC08F3C4D70646D41C0D05B15E753AF1CC065605CBA4D6D41C091CD554331B01CC0A5CDA85B596D41C07C8DB36727B11CC00B8FF91C576D41C05A1CDE8941B11CC05DE930CF4D6D41C0D558D43663B11CC0FEA141F6ED6C41C03F06F695A0B21CC0462F69ABE66C41C0E0632AA0B9B21CC097D85DE6F86C41C06723783BBFB31CC0EAE921280B6D41C0288DD246F9B41CC0381DE02B166D41C083F0ADE18FB51CC0E1CDCD31226D41C0DA4BE4FE17B51CC044553AE43B6D41C0E9ACE6282BB41CC0DC291F3F4C6D41C0C2F9A0448FB31CC066340F1D576D41C05C02C0B114B31CC0EA781B9C686D41C02E347BCF29B21CC05BFED1ED7C6D41C0EF65E84753B11CC05F650811A46D41C0F4A3591307B01CC01EAC58B9976D41C05E51CDF1BBAF1CC0CE3456B2906D41C0B772F2424AAF1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('11','Boa Esperança, Pedra Branca','_','140354.720','1804.908','14.035','3.46824065713e+001','0106000000010000000103000000010000001C000000C681A229E97041C038CBB7F44BAC1CC082E7E409FC7041C0CAE9306031AC1CC0B4E0C6B90A7141C089CB2DC114AC1CC028C3F5DF327141C056794CE88DAB1CC096A7E4E15E7141C054F29DF1DFAA1CC06EE930474F7141C04C56FE719FA91CC0D29A6A2E487141C0A6239D19F2A81CC09E968E7F467141C0DF076FD594A81CC0E56EC5C8377141C0E55A920C99A81CC0662F2D012A7141C0FFEFD63B9DA81CC0AB305142127141C0FA156FD87FA81CC0B5A0DE0D107141C0D24D44C083A81CC067917D79107141C02FBC9A09CBA81CC059EE185CFE7041C0E9E2EAF6F1A81CC0C931719FEA7041C05FC0F1932AA91CC0ACF10592DB7041C026003B2C10A81CC0EE31072AC67041C0DDE651342BA81CC00220E9A8D37041C0DBE7CFE675A91CC0BAEB68DFC27041C0C3C27CABA9A91CC057078CB8C67041C0BE7B292DE6A91CC015683F68CE7041C0536B82CB3BAA1CC0839A2848E47041C00D4EB47701AB1CC019E4C5D1F07041C0AFE4BF0975AB1CC0CAAB39BCF17041C0F9F22BD3A4AB1CC07A7FABE0F07041C0EF6AF876DCAB1CC075B2A257EE7041C0144A3F6EFCAB1CC035EB119CE77041C0EF58302C1BAC1CC0C681A229E97041C038CBB7F44BAC1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('18','Cemitério, Paulo Afonso I','_','93712.199','2023.279','9.371','2.31567887222e+001','010600000001000000010300000001000000130000008D1368C14F7041C097E0933302A11CC023CDCB0A3B7041C00398A60CA0A11CC0C1789EC0297041C03D4D77142AA21CC0AFDABE5A3E7041C0EB21614ECBA21CC09C1DD30E437041C0115C5867F8A21CC03EB19BCB1C7041C0ED43B6D436A41CC00AAB876C217041C087E4549F65A41CC01E0EA6B62E7041C0B75ACA4D07A41CC034B99BB23E7041C0C3952F04A0A31CC0949092204B7041C012338C142EA41CC0BD01DF70577041C045A3227FBEA41CC0CC522E2F5F7041C091558D398FA41CC06EA8EA63787041C02BC1CEAE82A61CC078194DE8857041C081FFE56A98A71CC02DBC0D0BA57041C0627199DA51A71CC06FE8A824987041C0752EBD8154A61CC088CA9FA77F7041C055A2569877A41CC0316D198C687041C05ACF4C08E2A21CC08D1368C14F7041C097E0933302A11CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('58','Riacho Doce/Ceasa','_','11970.440','639.029','1.197','2.95796013523e+000','01060000000100000001030000000100000009000000EF48F641D06E41C05E865DF74BAB1CC0CEB93ED6C56E41C0F8B4B64AE2AB1CC074C0AF38E16E41C0EA84AD906BAC1CC0CCD99361EE6E41C0E6DD8D06BDAC1CC0D38A1C69056F41C0A090E14E4BAD1CC054D413620A6F41C0F1DD8D5C18AD1CC058F76569FD6E41C086DCFC71BBAC1CC0A58938F8EE6E41C020D2B52A46AC1CC0EF48F641D06E41C05E865DF74BAB1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('14','<NAME>, Novo Horizonte','_','71425.356','1335.863','7.143','1.76495897667e+001','01060000000100000001030000000100000019000000E0F28F03117141C0C8DEAE2050961CC04DA1BBE7EF7041C0F553F8F998961CC047384DCAF27041C025BD03F4DA961CC04600AF42F47041C0711C005068971CC0074E923EF27041C064A01AE2E7971CC09C6EBCAAF37041C0573A882B08981CC05B2345F9FA7041C04A05262A57981CC04B7CB585147141C053702BCD19991CC0B190995F257141C0493C9A20AC991CC0DC5B8098287141C08577603EF2991CC03E5AD000297141C083AB654D2B9A1CC006E08B89307141C024453E22079A1CC0B61058CD3D7141C0770423CCB4991CC0B9E78DE44D7141C0EF4B671B56991CC0CB10433C527141C04E32DE68FF981CC03ECD75E9437141C0D84413F4B7981CC0BBF386DA407141C06BBDD39E93981CC0829AF47A3F7141C0FD75B30F67981CC05E6A0F22327141C0DE286167EA971CC01780629B277141C0416BD55F3C971CC035B09368207141C0258EE6809B961CC046E5EB19167141C018AA6574C9951CC02783507D177141C08482112D85951CC0579B438B087141C0B130E470AF951CC0E0F28F03117141C0C8DEAE2050961CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('42','<NAME>','_','71772.549','1501.348','7.177','1.77353830848e+001','010600000001000000010300000001000000180000000472A0150E7141C0E87829ADAEB71CC053D06E6CFC7041C053C2BE30CAB71CC07464BD43FE7041C00E00361F0EB91CC0A0970F3BFA7041C08DD4536620B91CC06A557A7AFC7041C0BE17997EF9BA1CC0DD2EF1FBF17041C0B03AE6EB00BB1CC0A4867DD6F57041C0985C8E91C7BC1CC0CF287CE9317141C028A14126B0BC1CC0F8289A532F7141C0AEE9EF5EBCBB1CC0D160710B217141C00475ABBABABB1CC063D9455A1D7141C03D10D7F228BA1CC012559D99187141C08F3396FC0BBA1CC0454AD3AB147141C0867F9BF9D2B91CC0FEFDBB2D137141C039FB70A0B2B91CC00227EFCB127141C06E27F16C90B91CC0C98F292A137141C0C050FD4A6EB91CC0B2090268137141C05F0B26CF59B91CC02951D806157141C051E008E733B91CC0DBF9D9611A7141C0E7B3619301B91CC0B3495CFC217141C001F44ACE<KEY>0A2320247141C021FEDBBD51B81CC046586ECC1F7141C038659487FAB71CC063F64B63177141C0DCFAE9C0C2B71CC00472A0150E7141C0E87829ADAEB71CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('67','Tanques,Vila União I','_','73605.745','2208.126','7.361','1.81883757905e+001','0106000000010000000103000000010000001C000000C9E61056717241C062A6E3A99B7D1CC009C8AD52987241C09BEB526B087E1CC0A464639DB37241C0D265A6860D7E1CC0F2F81AECF27241C0D5B4D96DCC7D1CC06E2B72EE4D7341C077C5495EE07C1CC0C9500A9B477341C0192180895E7C1CC0A6C814BEFD7241C0B0AD4624D57C1CC05ED5A1B7EE7241C0927B62DC757C1CC099E5F0CCE07241C0968D8949897C1CC029B5A813DA7241C07F0D7196277D1CC094057B26C57241C04C9C01838D7D1CC0B2E20245B37241C080F6D317997D1CC08DEDBCEDA77241C047C8AA1E277D1CC03C5BEB04997241C04B3B52E60D7D1CC04ADB45537A7241C00E3ED9141E7D1CC0AD8E7124707241C09DD8ABA9187D1CC03C33623A677241C069285FF0E47C1CC012A4BC07617241C0BF94921A687C1CC018BCD45A5E7241C04F8FE3290D7C1CC05CDCC82F5D7241C05D12592DBC7B1CC0994D87A25A7241C0A3CC147B4C7B1CC0E715301C527241C0788831C1577B1CC0E628F9F2537241C046D73A77DB7B1CC060CD650C527241C0A7A70241A77C1CC012F6B5D9557241C0056F7285107D1CC03D24B3C55B7241C0D82CA9595B7D1CC0E897A32D637241C0E3E5AE1E837D1CC0C9E61056717241C062A6E3A99B7D1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('62','Santa Emília de Rodat','_','113516.104','2046.413','11.352','2.80504402314e+001','0106000000010000000103000000010000002700000088418AB0FD7141C0B83418B12A841CC07F3A88C1047241C0D993138BE0831CC0F1EEAF9B067241C07D5F5B0FB9831CC0973FC387FC7141C089B0D4D852831CC00B4280C1147241C09D131B4F8A821CC0C81D2B11237241C03F1730C942821CC03444D794277241C0ED562ED6BA811CC0C7B6541F337241C0773682E611811CC09FEF186E3A7241C0F93067FC85801CC0776835B53E7241C083D37A2758801CC08B906373447241C0735F095B34801CC026151E8A547241C01A16E1621E801CC01D46747A5E7241C0284A24CC03801CC0B823EF25677241C0D5193432DF7F1CC0B3742B73747241C0BBFB82949D7F1CC04D3C9CB07C7241C07C20F6165C7F1CC0A796C32D827241C034AE6D5C137F1CC0503FDBB7647241C0CD5A146F777E1CC0A6ACAA8A647241C0E1836481947E1CC09D82739A637241C0B9A63540B97E1CC07837D6725C7241C02E6FE62ACF7E1CC0F4DCBD68567241C0C196B3BFD67E1CC0FEFEA5F24E7241C0B5A0012CE07E1CC08E6A06DC417241C04EE9CC66E57E1CC03553AEF43F7241C0F5AE8812AB7F1CC036ECED1F1A7241C008D85FF8A67F1CC0EFA59B8D0B7241C0382C1C3EA47F1CC0F69FFB0B037241C046AE0526C27F1CC0152D32DE077241C032654EC5FA7F1CC0248188C70B7241C063951A4E49801CC0E9F236E50B7241C023E617CD72801CC09CB9BA330A7241C0EB903D158E801CC0567A3DDD047241C0DB618047D7801CC03EE2C06AF67141C0B181219D58811CC09746F2B2DB7141C0935B94C18E821CC04A132692D97141C0AEEA9BC7B9821CC0E1E8955ACD7141C05AB1F70218841CC0E4FD6189E57141C01C672D683D841CC088418AB0FD7141C0B83418B12A841CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('23','Do S','_','55522.087','2068.700','5.552','1.37198065900e+001','010600000001000000010300000001000000290000003197734D117141C0F1D0B9684E6E1CC0BD18EA23107141C0BA8E78EB196E1CC017DFECCC067141C05A796E47B76D1CC0C9F3C8D6F07041C0703123FFDB6C1CC087853602FA7041C045E4FB484C6C1CC06E4EE366FB7041C0CF10A65DC26B1CC01E3E728AF77041C05A8583CBAE6B1CC0059D924AF27041C09C1819BB4A6C1CC09BE17285F07041C08CFBD956726C1CC0547E91D2E37041C0BA0639E4F76B1CC08967F992DE7041C0835C7CE1186C1CC04654C688D07041C04D9FAB2CD56B1CC00454ED17D67041C0CEB2B713AA6B1CC04C000CFCCA7041C0C0A109C6436B1CC0E43C902ACF7041C08F4203E4076B1CC025D5BDF5C97041C064862D18D76A1CC026424215C47041C07C53AE13D46A1CC0E2C39326B67041C0C5A90693946A1CC0499AA107B27041C0D9332FF0786A1CC0EBCF4663AA7041C057EE8588026A1CC02CF429C7A07041C0711607FDCC691CC098B73BF99A7041C060D46CEEB3691CC07B8FEBF6947041C04AC77CA9A6691CC0DC1EEA7D8B7041C04373705FE0681CC0863001FF7C7041C09F7F928727691CC04B477EDB887041C0D7CA8B1AAC691CC08C72DC72967041C0FEF9795D266A1CC0E106C482AC7041C06284DD22F36A1CC0F60FBCF2A67041C037396880176B1CC04BB571C1C07041C019C16F81F66B1CC02BDBC88CCB7041C0646905585F6C1CC0FFB321DADB7041C0DCE6C11D076D1CC01914BD51E07041C05182F17C5E6D1CC0F95D2F63F67041C07E1A0F95D36D1CC0708760B1E27041C0F289E554CE6D1CC04D9A998BE07041C0E82345C94B6E1CC0753F6AC9E77041C072853085526E1CC0AE2C8CA5F57041C0A3D679114A6E1CC04E315E97FF7041C0B3F8B2FA5A6E1CC05DE57FC8117141C088E61851776E1CC03197734D117141C0F1D0B9684E6E1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('60','Santa Bárbara,Cuiá','_','98324.107','2600.266','9.832','2.42964160198e+001','0106000000010000000103000000010000002300000017AF3E32826B41C0090F80B334C91CC01EE23C477B6B41C01A28532FD7C71CC0112A19355F6B41C001A464D70EC81CC09DD9D8DE5E6B41C0CAC9E37FDEC71CC07BD22466576B41C0A3EA914DE5C71CC0303D4DD3556B41C0AAD41DEA68C71CC0681CFF43506B41C05F8C8E9B64C71CC005A8BC1C416B41C097E4384A39C71CC0D1028FFE346B41C0DE12577B4FC71CC0B93C0546396B41C0D30CFD71F1C71CC0C6402B21306B41C0EC1193E0EBC81CC022D191D8216B41C04A66605260C91CC0667F89AE1D6B41C082B067ECE0C91CC0548E83EC206B41C017321D3EB9CB1CC024DCE16A236B41C0A089F79812CC1CC0AF751D6F276B41C01C8589EF5ACC1CC0C98425C2136B41C0B64B4BBEC0CE1CC0940D32511C6B41C0988C7E7C02D01CC0B3D13474146B41C047CB88C63DD01CC0509EE25E196B41C0416F9D329AD01CC0B53D392A326B41C0DB346EFC21D01CC01E324133296B41C0B4D70BCFA2CF1CC09CA80D841F6B41C0ABC<KEY>CE1CC07388A3D82A6B41C03A36C8EA12CE1CC0681B52D42F6B41C0B9F088FB57CC1CC06D260E33326B41C061AE4811ECCB1CC088ACB635386B41C0A826CF01E8CB1CC0A65D4A0E386B41C0498B11FAB5CA1CC005C5980B446B41C0C62FA11419CA1CC0A199D51E4A6B41C004BAD9A7BCC91CC078829CD0526B41C09E3A17C357C91CC0BB25A89F606B41C05EACA18C46C91CC04051D348726B41C0656EE3983DC91CC017AF3E32826B41C0090F80B334C91CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('74','<NAME>','_','16184.144','515.434','1.618','3.99918898314e+000','010600000001000000010300000001000000060000009050E993876C41C034F2AB374FBE1CC0ADB17BF3686C41C0351A06B954BE1CC0FEAA01A36A6C41C0E5F8D99CE0BF1CC06875E3A17A6C41C07471DF98D9BF1CC073F3CB1A886C41C0DE9A2F7993BF1CC09050E993876C41C034F2AB374FBE1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('19','Citex','_','100271.071','1833.672','10.027','2.47775212654e+001','0106000000010000000103000000010000001A000000F5337D45477041C0F660E3079EB31CC0DB3C1F6D497041C0578D1ECE39B41CC09253B1A34A7041C0B9F48AF557B41CC0E3A5DC966D7041C042EDB4974FB41CC01BBA86D5717041C00E671842E9B31CC034A61817937041C06B5FE1CFA6B31CC09EC95E7F907041C059D495C7FFB21CC0731EC8638D7041C0B14B26836BB21CC08B763C208A7041C0216FCD5918B21CC01631942B8A7041C0890FA33CFDB01CC050A59DCB507041C080AFE4C847B11CC00B3C98C73E7041C03A32820439B11CC0673557263D7041C03C54194F48B01CC0ABBB8D7D1A7041C0F1BB81016BB01CC0B300131D1C7041C0DA50CDF078B01CC093D609812E7041C01D798CA681B01CC0B9AC5C2F2E7041C076FABC2F09B11CC0DBE671922D7041C09B83B4734CB11CC0B9A579502C7041C0831849E994B11CC0477020932B7041C0DF331C41D3B11CC008D3B8C20D7041C0241B0067C7B11CC0384C9C640C7041C0EEEC543D6DB21CC06C1062BA267041C0B3BD5B506DB21CC049CF4708347041C018BF86DD7AB21CC0B861DF31497041C09391ADED84B21CC0F5337D45477041C0F660E3079EB31CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('54','<NAME>','_','12746.975','898.657','1.275','3.14984608404e+000','0106000000010000000103000000010000001400000017EA3E30E96941C06867F8D87AA51CC00D52093C096A41C0203AAA661AA51CC049C651F7076A41C064EAC179F3A41CC0445E5C7FEF6941C048DC44DA2CA51CC09C6F8DC2EA6941C0D17D66580EA51CC0DED07A25E56941C0A2DA72BB02A51CC00B4E89A4DE6941C080C7D5B6EDA41CC07ADFFC3BCF6941C036597A9273A41CC08D59A96CC06941C0E48A47EB09A41CC04305E43DAF6941C0FC4812C288A31CC0A82A70C6A06941C07773B7C87FA31CC0510C0735A06941C0A5651B9CACA31CC09EFD380BA76941C06C6673A9BAA31CC0A7B5AC01B76941C06947FDA404A41CC0E1346985C76941C0D20325E492A41CC0026D7D9CCC6941C0452A9BE2D4A41CC0C8868055CD6941C0812B3B8FF2A41CC0CF4B717ED26941C03E38338C29A51CC0F105BEA0DF6941C062E4A11474A51CC017EA3E30E96941C06867F8D87AA51CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('26','Feirinha','_','20715.068','577.054','2.072','5.11880484016e+000','01060000000100000001030000000100000005000000D48B322B766B41C0F8021E04CBA91CC000CC347A486B41C0DA242218D2A91CC0C1BE97004A6B41C0B58771A20FAB1CC07C447F93776B41C006B9A4680BAB1CC0D48B322B766B41C0F8021E04CBA91CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('22','Do Arame','_','12078.645','1475.242','1.208','2.98469820003e+000','01060000000100000001030000000100000015000000383A8033C47041C0B5756117D6C11CC0D46D588BBF7041C06C97CEEAD6C11CC0D4578435B57041C09EF4038DE0C11CC0F5017D8BB07041C02DE26C04CBC11CC08ACC83B4A87041C033B0D8B5CAC11CC032B41784AB7041C061B1E10BC4C01CC074137C0CAF7041C09099BD9458C01CC07FAF3C72B77041C0C9C02B5C53C01CC033203141B77041C04561FBB98ABF1CC01147BA1CC27041C0491EC6FD0EBE1CC0052F924FCB7041C0295C4E49BCBC1CC0DACF527BC87041C0E1FEEE15BDBC1CC00CEB3204BF7041C0208F35F90CBE1CC049C49619B37041C0B20977FB8CBF1CC0177697FCA87041C00F7AA240D2C01CC07E1D9132A27041C05B029D74CAC11CC0D8B62D5D9F7041C020A4C6A25BC21CC05EEAB355AE7041C05064F79D4FC21CC08E42D6C0AE7041C0A04AA6AE21C21CC06C6031ABC47041C0EAA1898707C21CC0383A8033C47041C0B5756117D6C11CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('7','Bananeiras','_','18742.188','778.040','1.874','4.63129552495e+000','0106000000010000000103000000010000000500000043CF7052477141C077650299F1BF1CC01CBC8B793D7141C0B274072BFDBF1CC04C1CA6F2427141C00C01293D10C31CC0D6930F4D5A7141C08BB45FBAF6C21CC043CF7052477141C077650299F1BF1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('49','<NAME>','_','105387.753','2774.777','10.539','2.60418807963e+001','0106000000010000000103000000010000002C00000097EF5DBA4F6F41C06E4FB74FEA681CC03A7701A50E6F41C06E994AAADC681CC0EC4D5C50ED6E41C0546D3A3CC4681CC0033B24DBE26E41C094AB65F4D7681CC016434DF4DA6E41C0EFBB6CB6F1681CC0E8853EBAD46E41C0BE6E54052A691CC0945093F7D26E41C09EADF51F5F691CC09267B480D26E41C01361D8F3BA691CC00A19BC12C46E41C0571DC6B1166B1CC00BF1C62DD26E41C07D9C37462D6B1CC06AA5136EDC6E41C02B98F8767F691CC06C55E565F76E41C00A4FA3E2BF691CC<KEY>BEBFFD<KEY>EEB5A54DFA681CC097EF5DBA4F6F41C06E4FB74FEA681CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('43','Nova Esperanca','_','49176.690','1740.670','4.918','1.21518247457e+001','0106000000010000000103000000010000000D0000000D57B<KEY>'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('24','<NAME>','_','29327.066','970.662','2.933','7.24687575717e+000','01060000000100000001030000000100000013000000B82B4B1C1F7241C00BBEB33CEDB51CC00005294A227241C05202ABDAEAB51CC08E62D20DFA7141C065548B2D77B41CC09EF928A5D27141C05145768627B31CC0CA7EFBD5CD7141C0A29AEE1E2DB31CC0EF92CEE5C67141C019D123D145B31CC0BCC4F519C27141C0AF2B17A864B31CC034F9F2F2BF7141C06FA5121883B31CC03989351BC17141C096BBD16696B31CC066A08A5CC87141C0E97F0245C1B31CC07407CC93D77141C017D701604BB41CC088F0A27DE17141C029FED3AAA4B41CC09808C345ED7141C0E0EF82C4E5B41CC0007692BCF57141C02C0B361865B51CC0D625E7D1FB7141C0E83CDF90C2B51CC0AB28EAF9F87141C02C5015CACFB51CC01A53EF74FA7141C0F8ECFFE108B61CC04D618F6E0B7241C0E493937CFFB51CC0B82B4B1C1F7241C00BBEB33CEDB51CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('9','<NAME>','_','131922.127','2379.458','13.192','3.25986676138e+001','0106000000010000000103000000010000001E0000001A9D68A2E77341C04D65FEC5B3A31CC01BF5767BE17341C0EAEF82FC8FA31CC0D632DDBBD17341C08183CC8F0CA41CC038E1C16EBA7341C0A200BB9CACA41CC003E8F8F29F7341C05DB873354FA51CC0B5812F7A4E7341C0F04516A14DA71CC0E3F99F02197341C0A6BEFAD990A81CC0FE4E6402187341C04EF8BF727AA91CC0897ED43F267341C06F93F74F9FA91CC0C7228C942E7341C03B0E9148A2A91CC05D8D1E1B377341C07BFCFB0395A91CC0B5946A033F7341C053318CEE72A91CC0C861B4F8477341C0413882E581A91CC0401BD3D6507341C0AE8FAD4E7EA91CC09BBB8B28667341C086DD9EBBC7A81CC0169E013A787341C0C4707B0565A81CC0D6F6117D727341C092EE8B1409A81CC062D4B104817341C0B4A9E79DF0A61CC0B4640C788A7341C08DBE169C10A71CC0C1B109E1967341C0D355C14DECA61CC02F9C0BD7A97341C0DA993CCB7EA61CC00EE89D77B57341C0C9F1B2B418A61CC0FC455112BF7341C01F3F13AA67A51CC062D0F9E9C17341C09F4ADF5264A51CC0E51B5C31E27341C0A8919E40C0A61CC027B66C1EEE7341C0F3794A9B4CA61CC0F324EFD6EE7341C0269F1AA69BA51CC0CA6F5977F17341C06D8472F77FA51CC0DBE361E3EC7341C0EB2F32B8AEA41CC01A9D68A2E77341C04D65FEC5B3A31CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('63','São Domingos, Rabo de Galo','_','73781.450','2017.464','7.378','1.82317933601e+001','0106000000010000000103000000010000001400000002295D10966941C0656FE438AE8C1CC0EF5347E1946941C0F43BE51CC78C1CC0EC7629DD746941C0D253F9337E8C1CC0CA0868AB6F6941C039F471ED098D1CC0308693E9476941C07A189B6DB68C1CC09741536B466941C0C4BF6A15E38C1CC01D11CEC4996941C03870F4FD938D1CC0EBF4C6F9B96941C0A36EC97DCA8D1CC01F4DD3D7D26941C0E775ED81028E1CC0BD93E9252E6A41C06C224296E98E1CC075EEB62C326A41C07915C327768E1CC0A1A30B89396A41C0D3BD6F80898E1CC08982E0083D6A41C0610D41E5388E1CC0F8044EC0EC6941C01596F9078B8D1CC0616EDBE2E96941C06D2EC58E7E8D1CC0EA90ADE0E86941C01DE14B996E8D1CC037FD90E7EE6941C046F2EB68AB8C1CC0E71D9B49BB6941C03BF92B733C8C1CC049DE7F87B46941C0941E02E9F08C1CC002295D10966941C0656FE438AE8C1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('2','Abandonados','_','19603.272','580.040','1.960','4.84407391107e+000','010600000001000000010300000001000000080000004F036686B07041C0078B669204A21CC0E812ED7D8B7041C08B90C71ED7A01CC0D0A6643C787041C0CAF945FC63A11CC055497E39917041C05C994A11D3A21CC05E15BE74977041C044A153429EA21CC03D85C0B1A37041C05BBA2F515AA21CC021E5C363AE7041C07031F90519A21CC04F036686B07041C0078B669204A21CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('70','Travessa Washington Luis','_','24759.311','2073.659','2.476','6.11815910618e+000','0106000000020000000103000000010000002000000092642B37906C41C0BE1F36E3113D1CC052344EE9986C41C07229ABB9563E1CC0BCB121E59C6C41C002366897CD3E1CC04A0A3D389E6C41C0BF161129163F1CC0D35C8F409F6C41C0C4CA2287523F1CC0D94E2D9DA06C41C0200294CBB83F1CC0FC7D7CEB9A6C41C06C5DF8DF08411CC050C8A9509D6C41C02919390B12411CC06F105DBE9A6C41C02956D2D177411CC0B56CA074966C41C0802848BF0D421CC047645ACD916C41C0B138C232B1421CC04FB9D07F8D6C41C066E27DD625431CC045B4A60D8B6C41C0053E1A159E431CC0F1E3742F896C41C064C92DF116441CC06B344937836C41C0560ACCD111451CC09B61E05F766C41C07A2BEFDB19461CC068D380397B6C41C036E8A70B1D461CC0CA5B575D866C41C0B2B2984F84451CC040C2E34D896C41C0C0B5E2221D451CC0B0308DDA8B6C41C0F86A831B95441CC07261E785916C41C0DC26F37398431CC0C7B2C9D1946C41C06FA411E80E431CC0962B1DFA996C41C06B2229DE74421CC03E3B48F7A06C41C0D66D98948E411CC041841358A36C41C03B1702EE25411CC04A0AB2D8A86C41C0F31DE29D51401CC0CC495231AB6C41C0E11759BAA83F1CC0CC1B93D0A66C41C03ABA89820A3F1CC07A029E74A16C41C029AB6894743E1CC0FD375E219E6C41C01A22C0AD3A3E1CC0D6733006996C41C09C4B20720A3D1CC092642B37906C41C0BE1F36E3113D1CC0010300000001000000040000009F42D19C936C41C0AA5526D9433E1CC0CED61632926C41C07C2D6D764B3E1CC0D96F7FA8936C41C01C58D606453E1CC09F42D19C936C41C0AA5526D9433E1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('64','São Luis','_','21279.713','887.736','2.128','5.25833170764e+000','0106000000010000000103000000010000000E000000CD4D77B4446C41C00C7761AEEB4C1CC0264FA775456C41C0CD8993776A4D1CC079D913D5486C41C0F588DCB8574E1CC0EBF1B89C476C41C0BC20732AA04F1CC0A09B9712556C41C02B1013C4BC4F1CC05D20A9535A6C41C038D191B3294E1CC0C554F91C556C41C0CF635CCA154E1CC06989B1A6566C41C04BE3C1DD7A4D1CC0D2521CDC5C6C41C0FD39011A894D1CC0AD7948A85F6C41C0BBB1E89ABE4C1CC0BB29716F496C41C068AE65E9914C1CC05C9C5FC13E6C41C03A1E8E6E7C4C1CC01E847C103C6C41C06D9719E4D64C1CC0CD4D77B4446C41C00C7761AEEB4C1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('4','Asa Branca','_','54228.815','1027.002','5.423','1.34002319876e+001','010600000001000000010300000001000000150000004235864A0B7041C0241E8D8BC26F1CC0E03D4ACC197041C0AC3C5BEC866F1CC016321E08277041C0BA4D73722B6F1CC0E076717D217041C0AD952605F26E1CC013FDF0C4157041C033BBF207606E1CC038609961067041C08FC1A27BCC6D1CC0D6F60028067041C0751D061CB96D1CC04D0A0E61077041C0FC42F819A16D1CC0D727E39D007041C0BBAD36423C6D1CC0854C6759F16F41C024A910E86F6D1CC04316B9C9D46F41C053540196646D1CC027FBEBA1BE6F41C0F5A5ECB7556D1CC08E36E205BD6F41C0DF4A4137D06D1CC0BA9AFC72BE6F41C0331A4FD8116E1CC09C44EDA4CF6F41C0B00EF4BB8B6E1CC0437A85C3DC6F41C0CD35A183BE6E1CC0F4B624DAEA6F41C0CEF2A604E56E1CC066866F01F36F41C0E12B46B0776F1CC00B365CBBF86F41C00AAAD58E956F1CC0367971CFFC6F41C05B29823BE26F1CC04235864A0B7041C0241E8D8BC26F1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('53','Pé de Moleque','_','6948.194','526.314','0.695','1.71693608161e+000','0106000000010000000103000000010000000900000033F440FDE86E41C04B94E972FC6B1CC0455A6925E56E41C0354E3A12336C1CC0C42D134ED66E41C0D4C20BD4E26C1CC0EBE423B6D86E41C04FA5325FF76C1CC00BBCCF0BC36E41C08470D7829E6D1CC078648361C66E41C02BA2FC47C06D1CC077966AE4CE6E41C07A953983856D1CC0B5A1C3CEF56E41C0D0640F074F6C1CC033F440FDE86E41C04B94E972FC6B1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('28','Filipeia','_','7563.268','782.168','0.756','1.86892418113e+000','01060000000100000001030000000100000017000000885A320C1D6F41C0B98649D7ED751CC0DE7B22AF166F41C0E4BE24D615761CC039E05054106F41C01CA8172D4F761CC0F60A0382046F41C0836A989AB6761CC097700697016F41C01D166A6DDB761CC02EAC543F026F41C0B261E12701771CC03CFB3BA9036F41C04F458E7913771CC0E99277FE046F41C0BB6ADCA382771CC05D79AE580D6F41C074E8387AEC771CC0D334C560136F41C0F1198D7F29781CC07DF1B1321E6F41C0042892E5E5781CC037F26814226F41C0D4C1F21BD4781CC07E09EBC3196F41C0DDD9BB7E4D781CC045E498BD136F41C0600A01D7F7771CC0A346EFD7096F41C0E56614BC83771CC003CD7423086F41C06284895D49771CC06AB4CFB8086F41C0CDD0A93916771CC0FF2A66FB0A6F41C08FC52077E5761CC064007ADC0D6F41C030490529C8761CC03454633B146F41C05D00BA9D93761CC06583BC16196F41C08656E36071761CC09F6C95E0236F41C085B4ABE83D761CC0885A320C1D6F41C0B98649D7ED751CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('59','Sanhauá','_','4695.412','375.653','0.470','1.16026155891e+000','01060000000100000001030000000100000007000000C461F7AC487241C0FABF32C95B7B1CC0E5EC7A94457241C0D8D5D8E4057B1CC08CDCA672377241C0749BE095E8791CC0C8988C29347241C04FC7BDBFFF791CC07657AF6F347241C07C19E1C7337A1CC0AB6C8FD63C7241C0CEC66479647B1CC0C461F7AC487241C0FABF32C95B7B1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('72','<NAME>','_','1718.354','184.918','0.172','4.24614615444e-001','01060000000100000001030000000100000006000000F3027800DF7141C09296B96A6F7A1CC0B182CA5CDE7141C0BB5D5EAB337A1CC01E8D6510CB7141C061E3B053457A1CC077C51E3ACB7141C08A4892E9847A1CC039D3324FD67141C085455F63787A1CC0F3027800DF7141C09296B96A6F7A1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('29','<NAME>','_','7155.890','363.548','0.716','1.76825895940e+000','01060000000100000001030000000100000005000000E2848483AF7141C07BE6599CF27A1CC0BA29C04CA27141C08BF10350EF791CC0FDDE2591907141C0BD3CBFA9F5791CC0A6AB10409C7141C0616F82F2027B1CC0E2848483AF7141C07BE6599CF27A1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('55','Redenção,Buraco da Gia, Aratu','_','155425.496','3012.804','15.543','3.84064765112e+001','0106000000010000000103000000010000001B000000E9F4A2B8737341C0FC88D5EF67801CC0E24E86776D7341C015FC02D40F801CC043951238647341C07957A8049E7F1CC07F504257567341C04928EC51267F1CC028ABA1CF3B7341C0471CC5C7677E1CC0EA4672EB277341C0835C006DE47D1CC038687F49557341C03EF872206C7D1CC06233EB7D517341C088BDEEE4F87C1CC01F0096CB1B7341C0E12CC694857D1CC0073A9C27DD7241C02951489B0C7E1CC05DF6EC1BBA7241C0A8364FD63D7E1CC0D23A937EB87241C0CEAFB17E867E1CC053404C63D37241C038719151E57E1CC03FDB4B1F0E7341C0F209114D927F1CC0860C5819247341C0241F94303D801CC0096109394A7341C0759903C92C811CC0F896EA98737341C03B78A1324A821CC0D75CC125A87341C030B1993F66831CC048080C65E37341C0CDCC063571841CC0EF6BFE0AEB7341C0EE80ADB70E841CC02AD3796ABA7341C0F9B7121743831CC0245FFE979C7341C0B20B3BC39B821CC083B327E58C7341C0909C79E106821CC0761DDCD2757341C0E606832048811CC05D8271E17A7341C0B055FF7905811CC0143A2C84727341C0CA92066CAF801CC0E9F4A2B8737341C0FC88D5EF67801CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('27','Feirinha I','_','6060.223','310.735','0.606','1.49751369634e+000','0106000000010000000103000000010000000B00000008E23AFF027541C094A080F55E8B1CC00FD10025097541C0E920BE8EBB8A1CC0B4DDCFC4087541C075E56852A48A1CC066AA47F7067541C084FA1A0D928A1CC0418C4766F77441C08A71DC166D8A1CC09EE3FDA6EF7441C0FF98981C788A1CC049420FF7F07441C0D31E24C29C8A1CC07221AC52F37441C06F40CC90EB8A1CC044102459F27441C09CD862622A8B1CC04B68830EF37441C05B61EACC308B1CC008E23AFF027541C094A080F55E8B1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('3','Acampamento 5 de Julho','_','24713.999','630.274','2.471','6.10696220681e+000','0106000000010000000103000000010000000A0000006A3E03B6BA7441C036639FDA62931CC082B3690EC77441C0536F6E5F18931CC0AEE23048DA7441C0FE6DCFD4C4921CC0B05B3649E47441C02CDE038447921CC00636C845E47441C083F8FEBC2D921CC0FA3B4FF9CA7441C080CD0361E3911CC0BE40219EAC7441C02566A08B9D911CC0F3AD4F64A27441C0F0972C62B0921CC06D171E1DA97441C0BDD4601BCD921CC06A3E03B6BA7441C036639FDA62931CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('15','Cabral Batista','_','18526.004','693.932','1.853','4.57787524346e+000','0106000000010000000103000000010000000D00000047C956C95A7341C05176AA5A619B1CC0820F69655D7341C02B7BE608769B1CC0423F34D2697341C0B3D6B8BE8A9A1CC05CCF421C6F7341C0C37C9A268E9A1CC01FC4C7CD7E7341C0466EDDAEA19A1CC0302504BF7D7341C0E398A4CB169A1CC0F1B44702337341C07F74836C209A1CC0A30D7472357341C0BBD0F325449A1CC02E2FC61D3B7341C0F2364313719A1CC03BDC4F07437341C024BADBF0A29A1CC0A9EEBEF7487341C0384DD501D29A1CC066453412517341C06C150DC81A9B1CC047C956C95A7341C05176AA5A619B1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('41','Ninho da Perua','_','82948.470','1194.632','8.295','2.04970132130e+001','0106000000010000000103000000010000000E000000EE0E0DC8207441C0CECF0A15979C1CC02E8CCACB1D7441C0875779C73E9C1CC02010C299D97341C0A329917D969C1CC04CFFAA80D67341C08FEB061A8C9D1CC036EC9A1CD47341C0D5490CF2B79E1CC016B75594D87341C0DEB2913D209F1CC00119F5F6EA7341C010B26301849F1CC0F5835493FA7341C0765DE147779F1CC09EC554A9137441C076867A8F2E9F1CC0BEEF31981F7441C0F8DED7B2389E1CC0B370C0E3387441C0B25D3C43509C1CC0BAE2204D367441C00DEF55A93F9C1CC098F1ED68297441C0DF2EA4AD849C1CC0EE0E0DC8207441C0CECF0A15979C1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('34','<NAME>','_','106825.818','1340.634','10.683','2.63972344997e+001','0106000000010000000103000000010000001000000021143577217141C00C778751A29E1CC0CC7300601D7141C04BBB457CB09E1CC00CC8F0E7047141C01EFC97A9979F1CC0CF53384A007141C04BEA4FB0BF9F1CC04CC9EE7A027141C092E1BBF5C7A01CC0DFB2AA0E037141C0D907664F1EA11CC0C4EA838F327141C0E7ED9FD826A11CC0E9088EE9857141C0E145E49839A11CC0359E10DA847141C03AFE8077F3A01CC030555C0F7F7141C0420E1CF04FA01CC063D055D37D7141C055941505D49F1CC0E4030CB97D7141C05E67670D0C9F1CC00886C9BB687141C0EE92E932059F1CC02E08A899687141C02CC9EA30AF9E1CC04B245298507141C0B1B30AF6A89E1CC021143577217141C00C778751A29E1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('36','<NAME>','_','20808.300','658.371','2.081','5.14184279648e+000','0106000000010000000103000000010000000700000012A519E6857141C065E12F6AE6A71CC08A458C33B67141C0FAE4A9DD23A81CC0F521A7D5AB7141C0EE71D273C6A61CC0621FD106B17141C0BBBD7B705BA61CC033B5B667A17141C00564CD40FBA51CC06AC50301977141C080102025B0A61CC012A519E6857141C065E12F6AE6A71CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('51','<NAME>','_','18542.594','1758.667','1.854','4.58197481017e+000','0106000000010000000103000000010000000D000000DD079EF7F26F41C0B253C03BDE991CC0CD70BDE9F06F41C08394EFC9C8991CC0E55CBEBBED6F41C01C11044EC7991CC05F0410B2F06F41C01332AB53179B1CC08F1D20A2F46F41C00566A9634F9B1CC09A3DA681FD6F41C00E2E420EC49B1CC022AED492067041C0DAB3E165809C1CC05F832DBC0E7041C0AA11DE1D549C1CC028295EAD4D7041C09015F5DB0BA11CC00CBAD7B64F7041C06518C42FFAA01CC0A56B43AC317041C0E468B8ADB89E1CC0E5189DB6117041C0B90BD8A9339C1CC0DD079EF7F26F41C0B253C03BDE991CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('50','Paturi','_','7710.147','359.988','0.771','1.90521887508e+000','01060000000100000001030000000100000008000000A3C46ADABA6F41C0FEE3BA21C2951CC0959CA596B26F41C0A64159DA91961CC09495D642B16F41C0603D7C3CC0961CC06AE68AEFB96F41C09A649567D5961CC06D9B72B3BA6F41C08AD0CA2BDE961CC0F2171E5BC46F41C0288F4346ED961CC09FCD2252CE6F41C0F20E35B7F2951CC0A3C46ADABA6F41C0FEE3BA21C2951CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('13','Brasília de Palha','_','14923.030','729.036','1.492','3.68756106509e+000','010600000002000000010300000001000000040000009139238E4D6D41C09ECE18E144831CC0E018834B4D6D41C0170CD5E638831CC0326E376B4D6D41C0F5AC2C9D44831CC09139238E4D6D41C09ECE18E144831CC00103000000010000000F000000AF233AC75B6D41C0691C48FF16841CC07CC62EA2706D41C05FAFA6275E841CC0F6543D99806D41C0BFFB921684841CC0825357C58A6D41C030AFE6C283841CC01BB86584856D41C0077786F629841CC0CC3B91FB7D6D41C0A1EAEC5F37841CC0EFA56AF2786D41C0B9AB7C16CF831CC0B6BEE73D6C6D41C0E3F1E905F6831CC04E9F93786C6D41C02AE12B8544831CC09139238E4D6D41C09ECE18E144831CC0E85DF06B4D6D41C00D6C7EE144831CC0326E376B4D6D41C0F5AC2C9D44831CC0C5C059D33B6D41C04182036522831CC09A1F10FC4F6D41C0956BD4B2D3831CC0AF233AC75B6D41C0691C48FF16841CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('16','Cafofo/Liberdade','_','3325.674','236.001','0.333','8.21791991698e-001','01060000000100000001030000000100000007000000FA8D0C4AEF6C41C0786780CF9C811CC0B1E8F9C2FD6C41C03306D8C9AD811CC03AF9A076026D41C0A70BA60647811CC06C41A234FE6C41C0DCB40EE544811CC0BB410DD3FD6C41C02F0A0C2F10811CC01A773137EF6C41C0F5557CFD1B811CC0FA8D0C4AEF6C41C0786780CF9C811CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('75','<NAME>','_','3322.477','230.143','0.332','8.21001932272e-001','0106000000010000000103000000010000000600000012E85F285B6C41C04A14977A457F1CC08758BACD5C6C41C0C60064F4FC7E1CC08D772AFC5C6C41C0AAFC74F8B07E1CC05679E4074D6C41C075055B92B07E1CC021D9D71B4D6C41C0F829205D4C7F1CC012E85F285B6C41C04A14977A457F1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('8','Barreira do Cabo Branco','_','19296.450','1182.862','1.930','4.76825662352e+000','010600000001000000010300000001000000130000007CBAD091ED6941C0495CCBD0C87F1CC0CADB459CC36941C04023FA2CC0811CC099E9C072B06941C05BC6454D7E821CC04326BC4BA66941C06D519B4F82821CC032FD6B8AA06941C0064646E83A831CC0F4DBA8B5946941C03CAE8F27F6831CC065C48EA59C6941C0803BE09011841CC060C3DC24A76941C0FED7DB1C87831CC08BE6FFFEAE6941C08C150B38EF821CC0FE6C9C35B56941C0EB5FE0C1AD821CC0E8E81587C36941C0E57A544D47821CC0969810FFD96941C00857428A56811CC08181DDD1E86941C0BC2E8CD48B801CC0CF84CE5DED6941C0F2BA24D65A801CC0C6290D50F46941C0A61C544E32801CC00E440BF6F36941C075041E23D67F1CC071EDC005F36941C058EE01D1B67F1CC0C582A5F1EF6941C0562419D7B37F1CC07CBAD091ED6941C0495CCBD0C87F1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('20','<NAME>','_','16130.444','614.498','1.613','3.98591962011e+000','0106000000010000000103000000010000000B0000006DC61575506C41C0FD22469E79A81CC0B15454C35A6C41C0E66E63B255A81CC007C2600C6B6C41C04FA5418515A81CC0C12F53CF736C41C0328D5ED2F6A71CC0F8A4ABFD7A6C41C0E6C07683DAA71CC07488FC85886C41C07DB95FF6AFA71CC09774846A926C41C01EA5F8D1A9A71CC0817D6A69926C41C05CDAB7B598A71CC003D58851916C41C07D92540B90A71CC084991F6C5B6C41C0F89F16ECF4A61CC06DC61575506C41C0FD22469E79A81CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('10','Boa Esperança I','_','12956.634','492.398','1.296','3.20165406222e+000','0106000000010000000103000000010000000A00000087E35080A66B41C05D5FBCA9CDB61CC0B92E6FCD8F6B41C0188BD7219AB51CC00A39E095806B41C0FAB5BCDFA0B51CC096A568F1806B41C064A260B942B61CC04DD5129C806B41C050EDEACAB2B61CC0C96EF81A7E6B41C058264204B4B61CC0264E7AEA7D6B41C0314D1D58E6B61CC0B5C62FA9A56B41C043D33636E5B61CC08D54A7A9A66B41C027091FA8DAB61CC087E35080A66B41C05D5FBCA9CDB61CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('77','Vila União','_','6317.098','359.696','0.632','1.56098885254e+000','01060000000100000001030000000100000007000000B8307100C76B41C0468DC8BF58B81CC0FF893ABCD86B41C0C5814A1E49B81CC0B9DE7CF0CD6B41C0FF2BA9BAC4B71CC00AB3EE54CD6B41C077C91FE46DB71CC08C1F5A50CD6B41C015E233FF6BB71CC05E785441B56B41C08BBBCA1572B71CC0B8307100C76B41C0468DC8BF58B81CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('48','Padre Ibiapina','_','20173.731','1060.414','2.017','4.98503748513e+000','0106000000010000000103000000010000000E000000119E913DBA7541C09C40E49B13B91CC0D8C8518AC67541C0249B7BCA50BA1CC013FADFD4A57541C067A18D1ADFBC1CC03138051BAA7541C004166F43E8BC1CC0959CB56BB67541C0FF1406F66FBC1CC0AC59B243BB7541C0E5A70BA540BC1CC09967AC87C97541C0657EE134C3BB1CC0341E4848C37541C066B8AD8DA3BB1CC052B792B3C27541C07B780A3D7DBB1CC0C7861D6AD07541C013DBC6C7B8BA1CC0A22B0682C97541C07E6A4FA48BBA1CC0EAAEB4A1DA7541C08AB6553511B91CC02890B085CC7541C0BF4D991E12B91CC0119E913DBA7541C09C40E49B13B91CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('17','Campo do Americano','_','20049.297','631.274','2.005','4.95428929752e+000','010600000001000000010300000001000000070000005C5036FD4A6B41C09B30F643E6B81CC02151FCFE496B41C0683F9017FDB81CC0F41858DC586B41C0449FF998C4B91CC06F960C8F5A6B41C06B877965BABA1CC0999443F6736B41C0F5B85125B7BA1CC08C8FD355726B41C070AAA037DBB81CC05C5036FD4A6B41C09B30F643E6B81CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('76','<NAME>,J.Coqueiral,Vem-Vem,Beira Molhada I','<NAME>/São Pedro, P. <NAME>, J Mang.I','624182.686','6022.315','62.418','1.54238900837e+002','0106000000010000000103000000010000005E00000017A92C0CB46E41C084126B817B661CC0B672D0BBF66E41C0B98E89009B671CC02FDFE975136F41C011D58DF6EE671CC0003AD0072D6F41C0E797AC1515681CC06046136F3D6F41C03FE98B450D681CC0ABD8923B916F41C0B2F3BEE523681CC070BA477F9C6F41C04EF17F5525681CC017F1F560AB6F41C0302466DB3F681CC025B63201BF6F41C07811F43A75681CC014DB8341D66F41C061E244E4D3681CC0241F8F9BD96F41C04054AEC69D681CC07B85E6AB9C6F41C01D54C683C0671CC0BF330F109B6F41C083EDE48E81671CC0E44F44BE9D6F41C032BD2E7754671CC0B0C03AECA46F41C0E9F53EA01A671CC0B7B84305E26F41C0388EA034BD651CC0FF68AB1FD56F41C00667E1014E651CC0AC1B7010B96F41C01BD4DD2313661CC0EFAAA989B26F41C0CADCDBF31F661CC0B5DFB654AB6F41C08BD728C923661CC02906639A9D6F41C0BCB58E3B3F661CC0EBB19950906F41C030E1F30F45661CC06923945F6D6F41C070654A9515661CC0AAAD623E466F41C00DB9C265B0651CC03819CDCBF16E41C0BF764F3EA9641CC0869ADBC2D26E41C0FD7BCBD452641CC0A7A4EFBABF6E41C0896385F49C651CC079F3A045946E41C08B04EEF710651CC071B75386A06E41C0756BD187B7631CC06FB61D9F9E6E41C08F478471A8631CC0585B7D6FA96E41C02E8D65BE95621CC0CD9E2E49AE6E41C081BE06A9D0611CC00F8A4049B26E41C07ADDB174FC601CC028F706EDB46E41C09BDC662039601CC0993BAF12B56E41C02EE0DEE2BA5F1CC0B801ED26B36E41C0EC872474885F1CC004DB854BA76E41C0D19737480C5F1CC003305E059F6E41C0A99D740B955E1CC0937DF4FF9C6E41C06F47D8B66C5E1CC0DB557B7A926E41C059DA10917F5E1CC032DDBB01856E41C00531C0258F5E1CC0F5DB7FDA7D6E41C029F67E869E5E1CC0CBD8CB4B5E6E41C0CA81068CE45E1CC00BE472FC536E41C03D145113F95E1CC0A76247413D6E41C051DFE119185F1CC00D9D739E366E41C05C9F95F2145F1CC04714B557316E41C0F718623CFF5E1CC0E6B42B1C2D6E41C07083DFF9D65E1CC09FBBAF702C6E41C0BC2D88418B5E1CC04E0F4B7C2A6E41C01887997F155E1CC00D12EA0E276E41C0E0638427A35D1CC090758590256E41C02DA3687D7C5D1CC05A57CEDE236E41C0BB9691076A5D1CC0C3E27AC11D6E41C0AE27A5C25C5D1CC090332E2B0E6E41C0E486B7E4595D1CC0932116D7FF6D41C0D2621FE34C5D1CC03D618FFEFA6D41C0225214AD495D1CC0C96B09E4F86D41C0E555FBCA4E5D1CC0DA73A944F86D41C021FDD353615D1CC0C8C06B49F46D41C0E433B9D9895D1CC0C2FC2532EA6D41C03A9CEC33AF5D1CC0988817A2E66D41C05E0BBAA9D25D1CC05B4EB162E56D41C0CE77C8AEF25D1CC04C778726E86D41C075767774285E1CC09B1DC63FF16D41C064AE2B527C5E1CC0B5C59DEDFD6D41C095397F12D05E1CC0D1587543046E41C0984F4188F15E1CC0F7C7D3EA086E41C0491C57C7195F1CC08CA9B04E106E41C0A03834923E5F1CC0AD746260116E41C04D0A42845E5F1CC0663F81B40F6E41C0C70F2380795F1CC0D12284720A6E41C0D86E3CD1885F1CC05B7CEDD2056E41C0561EC9299D5F1CC0FA1F531A036E41C00AD0D0E9BE5F1CC0A61C6947026E41C0CC520EF8E35F1CC01250EF69046E41C040A5A7201D601CC029ECDEB5056E41C006488EBA5E601CC0A9954E19096E41C0DCD03DA683601CC0888294B10C6E41C000BECD25A0601CC0A41FF5EA106E41C0BB1D8B93B7601CC02C8C01C50F6E41C0C21897CFCB601CC040767449096E41C0F7B77A9728611CC0532E1191066E41C0FD9964064C611CC02E3DBFF7056E41C0FA9CD7AF8D611CC025BD6A0E076E41C0506B1A58D4611CC02A8276320D6E41C0480E40CA15621CC0B317E3210F6E41C0B260FCD564621CC043524142116E41C02E10C9298D621CC0A9EA05E1146E41C09917B027DC621CC098EC93FE146E41C078765D59F0621CC001F63D7B126E41C0861A0B0B0D631CC0B9A25FEE036E41C04A51DB29EA621CC0A5CF3999F76D41C0033C5863A5631CC017A92C0CB46E41C084126B817B661CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('1','<NAME>,<NAME>, Chatuba I,II e III','_','348466.189','5243.088','34.847','8.61078706138e+001','0106000000010000000103000000010000004B0000004B728A8E796A41C036F644A059741CC0C47742318B6A41C01E29A2BCA9741CC07E6608139C6A41C0DAD5204302741CC0F116BAB9A86A41C036AC1FF743741CC03E5F67ACAF6A41C0CB139842C6731CC092094AAAC16A41C09881766494731CC0CEE34184D66A41C04D5DB24D45731CC0C84B431BF36A41C03222B8B29F721CC0CD3BBFAD0E6B41C05DF71D783E721CC0F8C1811F1F6B41C0BE20F89002721CC0F1A9CE074D6B41C02B518FD7D4701CC038B9DF725A6B41C03AEDA48181701CC0BE23EF3E546B41C03DFEE55B3D701CC08DC30CCC636B41C0A8B56F49996F1CC031629A84926B41C04699E7A2346E1CC033B5791D9E6B41C0B46734B8E46D1CC0806639C9C16B41C0FCB90914B56C1CC091750EA4DA6B41C0B81AFB7EE96B1CC026C1FE17F86B41C071AF88A0E46A1CC01158F9740C6C41C0CEFB941A0F6A1CC05DE35C46196C41C07AF6A04A7E691CC04C4B3038306C41C03FFD2BDE68681CC0477A10723F6C41C04E6E51F8A7671CC0757C94FD436C41C00DACB73768671CC0D86AB61E4B6C41C005EAC89C23671CC049F1CF1D4D6C41C0A1707449F8661CC08D6E7807516C41C0C44BAC64DE661CC0DD422EF9536C41C06272AC4CDE661CC0A60A31CE5D6C41C0061126CA75661CC07ECEA645636C41C0DBF2EF5F73661CC03BC02E12666C41C003CEB93369661CC0230A95BC676C41C08BAB828947661CC024824E99666C41C08E63F91427661CC05C5C4701716C41C0E430541B2F661CC093852292736C41C088B07C57A1651CC086D91434646C41C056FECA7582651CC0A8C5BF20586C41C0496920DF5D651CC01ABBA264496C41C0FE42AD5442651CC02AEFB26C386C41C04D945AE839651CC0B41D7F1F2B6C41C094D729105D651CC0158546CE226C41C05C540BA08E651CC09C2108B21A6C41C071124E75B9651CC086BA7FE8176C41C07E66A528DB651CC01D7D89D60F6C41C043B2B9A856661CC0C8D91276056C41C00703B6CB0A671CC0A976EEE6F96B41C04E01389CEE661CC07BA28072F86B41C0592E886311671CC0F43885F2F06B41C04541EEEA9F671CC0CC336DC5DE6B41C0F4BE876191681CC095BB1B42D16B41C05E31DE783F691CC02B61C2ABE26B41C0900441F076691CC01B23B26CD96B41C092E0E9D8116A1CC0E9303428C76B41C0EC1B09BDD86A1CC065F6E2F5B26B41C0796F68DD566B1CC0CD62C591A46B41C0A7A49F09BB6B1CC092EB9EAA9E6B41C0C32A42189E6B1CC0EC85335C946B41C0AE572F3B286C1CC076E57D4F976B41C0DA6F3C76346C1CC0FFA53297886B41C0C6ED2857C46C1CC0C640A8C0756B41C0B818DC33786D1CC0A6DF44B7706B41C0B7706CA68D6D1CC0539851A1646B41C07B82B6E4546D1CC0078FA051576B41C082C8012CF26D1CC0515F61844F6B41C0ADB69622566E1CC039CB6BAB346B41C051FA9691736F1CC0B00011C6116B41C02DDFA525AC701CC0128830CB076B41C0E1A9D2EC78701CC05EB6F235FF6A41C003BAE7BEC8701CC06EBEF75FD96A41C0EF5E8393F1711CC041EF1D92DE6A41C00CC6E9EF1D721CC0616E66ABC26A41C05187A8F4A7721CC0C4A83B5CA26A41C0C5E1DFD545731CC0F7B69D2F906A41C0BD9E92BAAF731CC0827A8EED816A41C0F334837306741CC04B728A8E796A41C036F644A059741CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('71','<NAME>','_','3462.897','417.669','0.346','8.55700517193e-001','0106000000010000000103000000010000000F00000022E0F48BF86A41C08BA749663E791CC047001E06F36A41C0782932D13B791CC07156F638EC6A41C057E32F9E1E791CC0217D49AFE36A41C091959369EB781CC0B55B3252DD6A41C0926B4728A1781CC07FC956E0D76A41C0D07B8C1D54781CC031C1A3AAD56A41C05B917D7723781CC0A456D3F7D16A41C0A1EECEA927781CC0C7A778BCD76A41C07579C322B0781CC0838DBADCDB6A41C0599EC8BDEA781CC0E4FA365EE06A41C0468DFB1F12791CC06FC696D3E96A41C0B62E703846791CC06ABF456EF46A41C082D25C1671791CC0A2CF6A1DF86A41C0F87FAC6777791CC022E0F48BF86A41C08BA749663E791CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('33','Ipês I e II,<NAME>','_','71651.359','1626.366','7.165','1.77054362764e+001','010600000001000000010300000001000000220000008AE4A02D416D41C016DCE76BB0671CC09629277F3C6D41C04D9D95D659671CC0F8B45708386D41C08FA1190043671CC074B60EEC336D41C0F8DC4E4F09671CC0260463E42F6D41C0AF854927B7661CC0A7A2A65E2E6D41C02D27F2D86A661CC0A8623CA54E6D41C04A9338B25E661CC03D537FA9506D41C013645D722E661CC0FADD5C494F6D41C04CC8E0077E651CC0CCA4652A506D41C0FA8CF3927A641CC029F621FF4C6D41C05829154437641CC08E4452A3436D41C0255DC1F021641CC0513D82E4306D41C0D86ACA9567641CC030ED5031166D41C0C13351599A641CC09298EE4B016D41C0FD3AE251C1641CC0D7F19769E66C41C0FC811552A6641CC08DC88528CF6C41C07D4440E288641CC006C37CE2CD6C41C0E989093FCC641CC063112D9DF76C41C061AA232123651CC0EE6ECDFBFA6C41C0E31ED20E5D651CC00CE6F45F016D41C04F62EAF276651CC0B8357E160B6D41C0489C5E2772651CC055809A76116D41C0261AE95B3C661CC0D09700120A6D41C07D72F69C59661CC0E12215440B6D41C086278EE59C661CC0F39340E2166D41C079F31F0B99661CC0A7016CAB106D41C0498ABAEBD7661CC052753D6A116D41C01DB26433FE661CC02C41C0A11D6D41C0FFCB844F1E671CC06AB9BD2A226D41C0B30D7F2A5F671CC05097EBF5266D41C05E316D2C60671CC0B36ECDAC2D6D41C07A52B51EA2671CC0F30C1D2B376D41C0CD86A4CAC1671CC08AE4A02D416D41C016DCE76BB0671CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('39','Mangue','_','24685.500','834.119','2.469','6.09991981989e+000','01060000000100000001030000000100000019000000D2D588EF396D41C00492E0CAD0631CC0540CB00D406D41C0DFDDD598D0631CC098FF69033F6D41C01E24E93FA1631CC08BC3033D3E6D41C020F5516351631CC027A6A1EF426D41C02AEDA75044631CC0674FE20A406D41C00058E536BE621CC05C80A2A6326D41C07590E80FC7621CC02BE95B76246D41C032F27B08E2621CC07F5895251D6D41C02DE886DC46631CC09F2D34160F6D41C043779DAD8A631CC01ACFBD03026D41C0FE5DB1E24A631CC0610BCF02FC6C41C0D35D40CB54631CC06E649356F46C41C0D28C93BCC3631CC041E72CD7F76C41C07508D6D93D641CC0C8CE0295FD6C41C05D51E8E349641CC05F07E113046D41C0DFAC158440641CC030013D7B046D41C0C0103D486B641CC0F7E36F1E046D41C01175680493641CC0C1FC35AB0D6D41C01F4CDF6080641CC049E778800C6D41C0649A34B158641CC0322084560B6D41C0079B011E37641CC027F09CE90F6D41C08C4C65781B641CC00AB80CB1186D41C058A52AA2FC631CC0A058E0692B6D41C05BF1DF88E0631CC0D2D588EF396D41C00492E0CAD0631CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('69','<NAME>','_','34981.210','939.946','3.498','8.64404518167e+000','0106000000010000000103000000010000000B0000001DE2905D0A6B41C07F82C0FB32801CC0D7F1A2B90E6B41C04D69754A55811CC0D6C4E3CA1D6B41C038C15CAA48811CC08DC41A28446B41C05818150E27811CC0988A04237D6B41C0C673E8C0FC801CC0F5AF70857A6B41C07CDDD9AC6A801CC0372FF425716B41C00106AE9E73801CC02CFE602D5C6B41C0AC44368963801CC0CC25ACA2356B41C0DD9428B236801CC010BB18F5266B41C0E05A77C92E801CC01DE2905D0A6B41C07F82C0FB32801CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('40','Miramar','_','30902.170','1044.422','3.090','7.63609262194e+000','01060000000100000001030000000100000014000000E344C5BB066B41C092377720417F1CC0908C1398096B41C00734C14F10801CC082CD4763206B41C0F6AC2C4E09801CC0B09C833C346B41C05758AF6717801CC0FE41B843586B41C0A5F91F043B801CC08551C3906D6B41C089379F574F801CC0640EA6EA796B41C03D19B6B249801CC00DE5F918796B41C0291B61291B801CC0177FEDC0776B41C0CD9066FED07F1CC03D250DBF776B41C08790894AC27F1CC07E699BDD6F6B41C0D8516BFECB7F1CC07B04E2D45F6B41C0CDD73274CB7F1CC0F6224B52466B41C0F3B3F5E8AF7F1CC0CC1A2D7B466B41C00A69F3D0967F1CC04C602943466B41C091092E3D397F1CC00CB290D1326B41C0B6048A82477F1CC08562E5C3326B41C0EB245C8EDE7E1CC01534CE391D6B41C0FE492718D37E1CC0AEE7EE431C6B41C0C2EBEF673D7F1CC0E344C5BB066B41C092377720417F1CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('56','Renascer','_','62134.962','1551.381','6.213','1.53538835808e+001','010600000001000000010300000001000000180000005265F1736F7141C056C1F25F5B841CC057BAF02C717141C0EA4C89D05F851CC0132E69406D7141C00D6B2E59E5851CC042EF76CF537141C0396451209F851CC0B341D8F8517141C053BBC7C870851CC0BD693E3D457141C01B3158BF35851CC093E5D9F43B7141C07352B4F2FE841CC0A1D5C264337141C0107D4E86BC841CC03969B1E82D7141C084863DF36C841CC049B234CC197141C049994382AA841CC0E68F9582057141C06FA03A39F2841CC0E62F69B6EC7041C0661F93496E851CC07511CA3AE47041C08D63C677C8851CC0C6997CB6E17041C01060B3F3F6851CC0CEBDC199F47041C0CA64A0C914861CC086E980DF2A7141C06159C50430861CC0D16E063B357141C0346B573B4B861CC04E86FE90417141C052A62E9443861CC0AEC0BC366E7141C00A04169F50861CC00191A79B707141C050FA6118F0851CC01EB530AF7A7141C0FB98219CED851CC09AA31990857141C090ADC49678841CC0850A1CD9727141C0BC80EECE61841CC05265F1736F7141C056C1F25F5B841CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('66','Saturnino de Brito','_','48037.467','2883.298','4.804','1.18703166088e+001','010600000003000000010300000001000000440000000358DB49567141C01F4B605432831CC0C45A97F3497141C04313C60F3F831CC024EA252D3F7141C02D460EBB70831CC0043B8267347141C0A9807590A8831CC0F7E51417277141C0D55C90041A841CC021ECFDCC087141C0C43937DC85841CC05FDD9659FB7041C0C28AEBC4C7841CC0F5F171E7EB7041C03BCA4B8A22851CC06F99CF5FE37041C05058B5F34F851CC088B60702DF7041C0AC31700A3E851CC056FA18F4D77041C01318C78998851CC02184DA4AD07041C0EADB55233F861CC0A0AF55AFCB7041C0E6201E23CD861CC04374FC23D27041C093B46237CE861CC0FA014EC8D57041C0C2E4246845861CC060852C75DA7041C0CB714A3A3C861CC0D75A178DDB7041C0037D7F44F5851CC0EA55DD73DE7041C07C4FAFB9EE851CC0790FBB9EE27041C03056B323B7851CC06F3C5C70E77041C094155F238B851CC04CC05878F47041C0DD023D0D3C851CC068A1F7210A7141C0D464703BE0841CC05389E6D02D7141C0FF6667E267841CC0F8A15C90387141C055ACFCC900841CC0EABB15E5457141C082489036B0831CC01977CA1D4E7141C0ECB2808FA1831CC0717239D05E7141C0B88E13157E831CC02C490EC26A7141C01F34AB2254831CC0E20018326A7141C0B486A2C110831CC0F34B36776B7141C09088B3E8A7821CC0B246CB96707141C0C62D75B444821CC00E721C5D757141C0BA06DF8CF9811CC0ADCEB37C807141C02C04886B76811CC0D98F358A867141C02F67A27CFE801CC019844B5E967141C0EDB5058D92801CC0745536E1A97141C0C5F04A4735801CC0F3AB71EAB27141C077C7017E22801CC054EB9539C57141C0CAB1D80531801CC0E2EB0027CF7141C07A1591B47F801CC050A2C976D87141C085BDCE6FB1801CC0471822ECDD7141C0D1E767A2D6801CC0CC4418FBE67141C05A2B9A8DEF801CC0309F7FD4EE7141C0B40D5BD7EE801CC0F01992C7F57141C04AE1278BC0801CC0073370FFEE7141C01C04AAD582801CC03210CDE4E97141C0E0ECB0F4AB801CC00ECA1603E47141C03EFEA6299F801CC0C0D7D6BDDC7141C00C4AF27177801CC0FB9EA70FCF7141C03E77C79CF67F1CC006321DC6C87141C0A5E6C14CC37F1CC06C400407BE7141C08C71ADA4CA7F1CC00E14AE2ABD7141C07EA8E2A3E67F1CC03814D6EBAD7141C0976EDA20F07F1CC004884EAEA37141C01984147103801CC0D5EFE9479C7141C00244812E18801CC074EE56F5907141C0497F3BFE39801CC06E79E7D9897141C04800AB2F5D801CC0778486017F7141C080438C8DC7801CC097D7512F7B7141C033D67E7B01811CC0D2893ED6787141C0F3B9018036811CC05E9DDB3B757141C0546BDC9161811CC054B0D223717141C06134AFA29E811CC03B3543EE697141C0DD9320C8EE811CC097903753657141C0ADAEC8E314821CC0B610C25F627141C0258B13E174821CC0BFCB00EE607141C0126F12CEE1821CC0CD36107F5E7141C09601BCF608831CC00358DB49567141C01F4B605432831CC0010300000001000000040000004B38C4257A7141C0930A4D7D6F841CC0835F6D2C7A7141C022FCF0366E841CC065EF2338797141C0A0A538996C841CC04B38C4257A7141C0930A4D7D6F841CC00103000000010000000400000081E79A2C7A7141C0297F99926F841CC04B38C4257A7141C0930A4D7D6F841CC006B399257A7141C0977070856F841CC081E79A2C7A7141C0297F99926F841CC0'); INSERT INTO "jampa"."comunidade" ("número","comunidade","demais_com","area","perimeter","hectares","acres",geom) VALUES ('44','Nova II/Trapich',NULL,'8618.514','617.608','0.862','2.12968118665e+000','010600000001000000010300000001000000080000004B120E2D507241C09D73E26C487B1CC08C579852577241C073D976CC387B1CC06C0F07C0427241C014949D77A0791CC01CEE3190517241C030BB50D345791CC0884A2DD3517241C06A3AF26D2B791CC02A2B57BB487241C0F9E3E28913791CC0E9D7713A357241C04DD6342556791CC04B120E2D507241C09D73E26C487B1CC0'); COMMIT;
-- CreateTable CREATE TABLE `User` ( `id` INTEGER NOT NULL AUTO_INCREMENT, `name` VARCHAR(191) NOT NULL, `nickname` VARCHAR(191) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `Teas` ( `id` INTEGER NOT NULL AUTO_INCREMENT, `name` VARCHAR(191) NOT NULL, `brand` VARCHAR(191) NOT NULL, `type` VARCHAR(191) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `Favouritelist` ( `id` INTEGER NOT NULL, `userId` INTEGER, `teasId` INTEGER NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- AddForeignKey ALTER TABLE `Favouritelist` ADD FOREIGN KEY (`userId`) REFERENCES `User`(`id`) ON DELETE SET NULL ON UPDATE CASCADE;
<gh_stars>0 -- MySQL dump 10.16 Distrib 10.1.30-MariaDB, for Win32 (AMD64) -- -- Host: localhost Database: arlindo -- ------------------------------------------------------ -- Server version 10.1.30-MariaDB /*!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 `tbl_activity` -- DROP TABLE IF EXISTS `tbl_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_activity` ( `id_activity` int(11) NOT NULL DEFAULT '0', `activity_title_id` varchar(150) NOT NULL, `activity_desc_id` text NOT NULL, `activity_title_en` varchar(150) NOT NULL, `activity_desc_en` text NOT NULL, `activity_img` blob NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_activity` -- LOCK TABLES `tbl_activity` WRITE; /*!40000 ALTER TABLE `tbl_activity` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_activity_img` -- DROP TABLE IF EXISTS `tbl_activity_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_activity_img` ( `id_img` int(11) NOT NULL DEFAULT '0', `id_activity` int(11) NOT NULL, `image` blob NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_activity_img` -- LOCK TABLES `tbl_activity_img` WRITE; /*!40000 ALTER TABLE `tbl_activity_img` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_activity_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_admin` -- DROP TABLE IF EXISTS `tbl_admin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_admin` ( `id_admin` int(15) NOT NULL AUTO_INCREMENT, `admin_username` varchar(25) NOT NULL, `admin_password` varchar(120) NOT NULL, `email` varchar(60) NOT NULL, `last_login` datetime DEFAULT NULL, `cookie` varchar(100) DEFAULT NULL, `role` enum('1','2','3') NOT NULL, PRIMARY KEY (`id_admin`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_admin` -- LOCK TABLES `tbl_admin` WRITE; /*!40000 ALTER TABLE `tbl_admin` DISABLE KEYS */; INSERT INTO `tbl_admin` VALUES (1,'admin','827ccb0eea8a706c4c34a16891f84e7b','admin<EMAIL>','2018-05-30 16:25:30','Os80UiGWxPu2AfFHyhkrBqaq6lvayMDvX0QwRkHEwEYY3pnbDunV9Z1NF2fUe7jb','1'); /*!40000 ALTER TABLE `tbl_admin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_faq` -- DROP TABLE IF EXISTS `tbl_faq`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_faq` ( `id_faq` int(11) NOT NULL AUTO_INCREMENT, `question_en` varchar(120) DEFAULT NULL, `answer_en` text, `question_id` varchar(120) DEFAULT NULL, `answer_id` text, PRIMARY KEY (`id_faq`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_faq` -- LOCK TABLES `tbl_faq` WRITE; /*!40000 ALTER TABLE `tbl_faq` DISABLE KEYS */; INSERT INTO `tbl_faq` VALUES (1,'How to Join?','','<NAME>?','<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven&#39;t heard of them accusamus labore sustainable VHS.</p>\r\n'); /*!40000 ALTER TABLE `tbl_faq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_gallery` -- DROP TABLE IF EXISTS `tbl_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_gallery` ( `id_gallery` int(11) NOT NULL DEFAULT '0', `gallery_title_id` varchar(150) NOT NULL, `gallery_desc_id` text NOT NULL, `gallery_title_en` varchar(150) NOT NULL, `gallery_desc_en` text NOT NULL, `gallery_img` blob NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_gallery` -- LOCK TABLES `tbl_gallery` WRITE; /*!40000 ALTER TABLE `tbl_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_gallery_img` -- DROP TABLE IF EXISTS `tbl_gallery_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_gallery_img` ( `id_img` int(11) NOT NULL DEFAULT '0', `id_gallery` int(11) NOT NULL, `image` blob NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_gallery_img` -- LOCK TABLES `tbl_gallery_img` WRITE; /*!40000 ALTER TABLE `tbl_gallery_img` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_gallery_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_history` -- DROP TABLE IF EXISTS `tbl_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_history` ( `id_history` int(11) NOT NULL AUTO_INCREMENT, `history_desc_en` text NOT NULL, `history_desc_id` text NOT NULL, `video` longblob NOT NULL, PRIMARY KEY (`id_history`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_history` -- LOCK TABLES `tbl_history` WRITE; /*!40000 ALTER TABLE `tbl_history` DISABLE KEYS */; INSERT INTO `tbl_history` VALUES (1,'<p><span style=\"font-size:11pt\"><span style=\"background-color:whitesmoke\"><span style=\"font-family:Calibri,sans-serif\"><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">PT.&nbsp;</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">Sayuran Siap Saji</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\"> was established in 2010 as a subsidiary of PT.&nbsp;Saung Mirwan who was established earlier from 1986 who has supplied whole vegetables especially hydroponic vegetables such as tomato recento, cherry tomato, peppers, mini cucumber and shishito to several supermarkets such as <em>Hero, Carrefour, Hypermat, Lion Superindo</em> and <em>Ranch Market</em>.&nbsp;</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">PT. Sayuran Siap Saji</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\"> as a subsidiary of PT.&nbsp;Saung Mirwan focuses more on Horeka market (hotel, re</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">staurant </span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">dan ca</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">thering</span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">) produce fresh vegetables in whole condition, fresh cut and ready to eat mixed salad.</span></span> <span style=\"font-size:12.0pt\"><span style=\"color:#222222\">Currently </span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">PT. Sayuran Siap Saji </span></span><span style=\"font-size:12.0pt\"><span style=\"color:#222222\">supplies to several restaurants such as <em>McDonalds, Bakmi GM, Domino&#39;s Pizza, Burger King, Sate Khas Senayan, Solaria, Pizza Marzano, Purantara Inflight Catering, Lawson, Johny Rockets, PT.&nbsp;Kenkomayo Diamond, Jaddi Foods, Rejuve, Nam Nam Resto &amp; Noodle Bar and Coffee Bean.</em></span></span></span></span></span></p>\r\n','<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran <NAME> didirikan pada tahun 2010 sebagai anak perusahaan dari PT. <NAME> yang telah berdiri sebelumnya dari tahun 1986 yang telah mensuplai sayur utuh khususnya sayuran hidroponik seperti tomat recento, <em>cherry tomato</em>, paprika, timun mini dan shishito ke beberapa supermarket seperti <em>Hero,</em> <em>Carrefour, Hypermat, Lion Superindo</em> dan <em>Ranch Market</em>. PT. Sayuran Siap Saji&nbsp; sebagai anak perusahaan dari PT. Saung Mirwan lebih memfokuskan suplai untuk market Horeka (hotel, restorandan katering) memproduksi sayur segar baik dalam&nbsp; kondisi utuh (<em>whole</em>), sudah dipotong (<em>fresh cut)</em> dan <em>mixed salad ready to eat</em>. Saat ini PT. Sayuran Siap Saji mensuplai ke beberapa restoran seperti <em>McDonalds, Bakmi GM, Domino&rsquo;s Pizza, Burger King,</em> Sate Khas Senayan, Solaria, <em>Pizza Marzano</em>, <em>Purantara Inflight Catering, Lawson, Johny Rockets</em>, PT. Intan Kenkomayo, Jaddi Foods, Rejuve, Nam Nam <em>Resto &amp; Noodle Bar</em> dan <em>Coffee Bean</em>. </span></span></p>\r\n','Capture001.png'); /*!40000 ALTER TABLE `tbl_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_joinus` -- DROP TABLE IF EXISTS `tbl_joinus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_joinus` ( `id_joinus` int(15) NOT NULL AUTO_INCREMENT, `joinus_desc_id` text NOT NULL, `joinus_desc_en` text NOT NULL, PRIMARY KEY (`id_joinus`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_joinus` -- LOCK TABLES `tbl_joinus` WRITE; /*!40000 ALTER TABLE `tbl_joinus` DISABLE KEYS */; INSERT INTO `tbl_joinus` VALUES (1,'',''); /*!40000 ALTER TABLE `tbl_joinus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_kemitraan` -- DROP TABLE IF EXISTS `tbl_kemitraan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_kemitraan` ( `id_kemitraan` int(15) NOT NULL AUTO_INCREMENT, `kemitraan_title_id` varchar(210) NOT NULL, `kemitraan_desc_id` text NOT NULL, `kemitraan_title_en` varchar(210) NOT NULL, `kemitraan_desc_en` text NOT NULL, `email` varchar(210) NOT NULL, `alamat` varchar(300) NOT NULL, `telp` varchar(50) NOT NULL, `kemitraan_date` date NOT NULL, `video` longblob NOT NULL, PRIMARY KEY (`id_kemitraan`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_kemitraan` -- LOCK TABLES `tbl_kemitraan` WRITE; /*!40000 ALTER TABLE `tbl_kemitraan` DISABLE KEYS */; INSERT INTO `tbl_kemitraan` VALUES (7,'<NAME>','<p><span style=\"font-size:11.0pt\">Kemitraan merupakan bagian penting dalam bisnis PT. Sayuran Siap Saji. Bekerja sama dengan pihak lain membantu mencapai tujuan bisnis. PT. Sayuran Siap Saji membuka peluang usaha dan bekerja sama untuk menjadi Mitra kami.</span></p>\r\n','<NAME>','<p><span style=\"font-size:11.0pt\"><span style=\"background-color:white\"><span style=\"color:#212121\">Partnership is an important part of PT. Sayuran Siap Saji. Working with others helps to reach business goals. PT. Sayuran Siap Saji opens for business opportunities and works together to become our Partner.</span></span></span></p>\r\n','<EMAIL>','Jalan Cikopo Selatan No. 134, Kec. Megamendung, Bogor 16770','0812 8999 0505 , 0818 6050 73','0000-00-00',''); /*!40000 ALTER TABLE `tbl_kemitraan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_kemitraan_img` -- DROP TABLE IF EXISTS `tbl_kemitraan_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_kemitraan_img` ( `id_img` int(11) NOT NULL AUTO_INCREMENT, `id_mitra` int(11) NOT NULL, `image` blob NOT NULL, PRIMARY KEY (`id_img`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_kemitraan_img` -- LOCK TABLES `tbl_kemitraan_img` WRITE; /*!40000 ALTER TABLE `tbl_kemitraan_img` DISABLE KEYS */; INSERT INTO `tbl_kemitraan_img` VALUES (12,7,'834c64e9228c52b3b5617626c3eb1f70324_gADOG.JPG'),(8,6,'442a8da40e74d12967bf4adf789899b8e91_Daikon.jpg'),(13,7,'329322a5d95e96c7230e1db6b073c540f_lettuce .jpg'); /*!40000 ALTER TABLE `tbl_kemitraan_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_news` -- DROP TABLE IF EXISTS `tbl_news`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_news` ( `id_news` int(15) NOT NULL AUTO_INCREMENT, `news_title_id` varchar(210) NOT NULL, `news_desc_id` text NOT NULL, `news_title_en` varchar(210) NOT NULL, `news_desc_en` text NOT NULL, `news_date` date NOT NULL, `news_img` blob NOT NULL, PRIMARY KEY (`id_news`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_news` -- LOCK TABLES `tbl_news` WRITE; /*!40000 ALTER TABLE `tbl_news` DISABLE KEYS */; INSERT INTO `tbl_news` VALUES (2,'Pengiriman Kapal Perang Jepang Makinami, Asayuki dan Shimayuki','<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td><img alt=\"\" src=\"http://sayuransiapsaji.co.id/assets/img/makinami.jpg\" style=\"height:203px; width:360px\" /></td>\r\n <td><span style=\"color:#000000\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:14px\">Pada Rabu 22 Februari 2017 PT. Sayuran Siap Saji bekerja sama dengan&nbsp; PT. Trias Tanjung untuk melaksanakan kegiatan pengiriman produk sayuran segar untuk kapal perang jepang yaitu Makinami, Asayuki dan Shimayuki.&nbsp;</span></span></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<p>&nbsp;</p>\r\n</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td><img alt=\"\" src=\"http://sayuransiapsaji.co.id/assets/img/asayuki.jpg\" style=\"height:203px; width:360px\" />&nbsp;</td>\r\n <td><span style=\"color:#000000\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:14px\"><span style=\"background-color:#ffffff\">Pengiriman&nbsp; ini merupakan kegiatan rutin yang dilakukan oleh pihak PT. Trias Tanjung untuk memenuhi segala kebutuhan kapal perang disaat berlabuh di perairan Indonesia. Sebagai&nbsp;&nbsp;perusahaan yang bergerak dibidang Agribisnis, kami PT. Sayuran&nbsp; &nbsp; Siap Saji dipercaya oleh PT. Trias&nbsp;Tanjung&nbsp; untuk memenuhi segala kebutuhan sayuran segar dan berkualitas. &nbsp; </span></span></span></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">&nbsp;</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><span style=\"font-size:14px\">&nbsp;</span></span></span><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><span style=\"font-size:14px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.</span></span></span></div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td><img alt=\"\" src=\"http://sayuransiapsaji.co.id/assets/img/syimayuki.jpg\" style=\"height:203px; width:360px\" /></td>\r\n <td><span style=\"color:#000000\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:14px\">Seluruh produk sayuran yang &nbsp;dikirim, dipersiapkan dengan standar pengemasan PT. Sayuran siap saji dimana kondisi suhu selama proses pengemasan dan pengiriman terjaga dengan baik, sehingga tetap menjaga kualitas produk sayuran.</span></span></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm\">&nbsp;</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm\">&nbsp;</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">&nbsp;</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">&nbsp;</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\"><span style=\"color:#000000\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:14px\">Terima kasih kepada PT. Trias Tanjung yang telah kembali mempercayakan dan menjalin kerjasama yang baik dengan&nbsp; PT. Sayuran Siap Saji.</span></span></span></div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">&nbsp;</div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:center\"><span style=\"color:#000000\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Salam dari <strong>PT Sayuran Siap Saji</strong></span></span></span></div>\r\n\r\n<div style=\"margin-left:0cm; margin-right:0cm; text-align:center\"><span style=\"color:#000000\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong>Fresh And Quality</strong></span></span></span></div>\r\n\r\n<p style=\"margin-left:0cm; margin-right:0cm; text-align:justify\">&nbsp;</p>\r\n','Japan Shipping Warship Makinami, Asayuki, and Shimayuki','<div>\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p><img alt=\"\" src=\"http://sayuransiapsaji.co.id/assets/img/makinami.jpg\" style=\"height:203px; width:360px\" /></p>\r\n </td>\r\n <td style=\"text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><span style=\"font-size:14px\">On Wednesday&nbsp;February 22nd,&nbsp;2017 PT. Sayuran Siap Saji cooperates with PT. <NAME> to carry out the activities of delivering fresh vegetable products for Japanese warships Makinami, Asayuki and Shimayuki.</span></span></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n</div>\r\n\r\n<div>\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td><img alt=\"\" src=\"http://sayuransiapsaji.co.id/assets/img/asayuki.jpg\" style=\"height:203px; width:360px\" /></td>\r\n <td style=\"text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><span style=\"font-size:14px\">Running this is a routine activity conducted by the PT. <NAME> to meet the needs of warships while anchored in the Indonesian port. As a company engaged in Agribusiness, we PT. Sayuran Siap Saji by PT. <NAME> to meet the needs of fresh and quality vegetables.</span></span></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n</div>\r\n\r\n<div>&nbsp;\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td><img alt=\"\" src=\"http://sayuransiapsaji.co.id/assets/img/syimayuki.jpg\" style=\"height:203px; width:360px\" /></td>\r\n <td>\r\n <div style=\"text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><span style=\"font-size:14px\">All vegetable products are shipped, prepared with packaging standard PT. Sayuran Siap Saji where temperature conditions during packaging and shipping process are good, maintaining product quality.</span></span></span></div>\r\n\r\n <p style=\"text-align:justify\">&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n</div>\r\n\r\n<div><br />\r\n&nbsp;</div>\r\n\r\n<div>&nbsp;</div>\r\n\r\n<div>&nbsp;</div>\r\n\r\n<div style=\"text-align:center\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><span style=\"font-size:14px\">Thanks to PT. <NAME> who has returned to trust and establish good cooperation with PT. Sayuran Siap Saji.</span></span></span></div>\r\n\r\n<div>&nbsp;</div>\r\n\r\n<div style=\"text-align:center\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\">Best Regard <strong>PT. Sayuran Siap Saji</strong></span></span></span></div>\r\n\r\n<div style=\"text-align:center\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"color:#27ae60\"><strong>Fresh And Quality</strong></span></span></span></div>\r\n','0000-00-00','MAkinami1.jpg'); /*!40000 ALTER TABLE `tbl_news` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_news_img` -- DROP TABLE IF EXISTS `tbl_news_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_news_img` ( `id_img` int(11) NOT NULL AUTO_INCREMENT, `id_news` int(11) NOT NULL, `image` blob NOT NULL, PRIMARY KEY (`id_img`), CONSTRAINT `tbl_news_img_ibfk_1` FOREIGN KEY (`id_img`) REFERENCES `tbl_news` (`id_news`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_news_img` -- LOCK TABLES `tbl_news_img` WRITE; /*!40000 ALTER TABLE `tbl_news_img` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_news_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_onfarm` -- DROP TABLE IF EXISTS `tbl_onfarm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_onfarm` ( `id_onfarm` int(11) NOT NULL AUTO_INCREMENT, `onfarm_desc_en` text NOT NULL, `onfarm_desc_id` text NOT NULL, PRIMARY KEY (`id_onfarm`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_onfarm` -- LOCK TABLES `tbl_onfarm` WRITE; /*!40000 ALTER TABLE `tbl_onfarm` DISABLE KEYS */; INSERT INTO `tbl_onfarm` VALUES (1,'<p>On farm products are products obtained from plants grown in green house and that they use the media rather than soil. So the result is a clean product and have a brighter color so that the sale price obtained will be higher than the other product.</p>\r\n','<p>On farm products are products obtained from plants grown in green house and that they use the media rather than soil. So the result is a clean product and have a brighter color so that the sale price obtained will be higher than the other product. coba</p>\r\n'); /*!40000 ALTER TABLE `tbl_onfarm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_onfarm_img` -- DROP TABLE IF EXISTS `tbl_onfarm_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_onfarm_img` ( `id_img` int(11) NOT NULL AUTO_INCREMENT, `id_onfarm` int(11) NOT NULL, `image` blob NOT NULL, PRIMARY KEY (`id_img`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_onfarm_img` -- LOCK TABLES `tbl_onfarm_img` WRITE; /*!40000 ALTER TABLE `tbl_onfarm_img` DISABLE KEYS */; INSERT INTO `tbl_onfarm_img` VALUES (2,1,'onfarm-1.jpg'),(3,1,'onfarm-2.jpg'),(4,1,'onfarm-3.jpg'),(5,1,'onfarm-4.jpg'),(6,1,'onfarm-5.jpg'); /*!40000 ALTER TABLE `tbl_onfarm_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_ourpartner` -- DROP TABLE IF EXISTS `tbl_ourpartner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_ourpartner` ( `id_ourpartner` int(11) NOT NULL AUTO_INCREMENT, `ourpartner_name` varchar(120) DEFAULT NULL, `ourpartner_desc_en` text, `ourpartner_desc_id` text, `ourpartner_img` blob, PRIMARY KEY (`id_ourpartner`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_ourpartner` -- LOCK TABLES `tbl_ourpartner` WRITE; /*!40000 ALTER TABLE `tbl_ourpartner` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_ourpartner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_processing` -- DROP TABLE IF EXISTS `tbl_processing`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_processing` ( `id_processing` int(11) NOT NULL AUTO_INCREMENT, `processing_desc_en` text NOT NULL, `processing_desc_id` text NOT NULL, PRIMARY KEY (`id_processing`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_processing` -- LOCK TABLES `tbl_processing` WRITE; /*!40000 ALTER TABLE `tbl_processing` DISABLE KEYS */; INSERT INTO `tbl_processing` VALUES (1,'Product process known fresh-cut products is an end product produced by a the process from raw material into products that are ready to be processed or consumption of which has a much better higenitas. accuracy of the cost of fresh-cut it would be more appropriate than calculating the cost of basic mate. ','Product process known fresh-cut products is an end product produced by a the process from raw material into products that are ready to be processed or consumption of which has a much better higenitas. accuracy of the cost of fresh-cut it would be more appropriate than calculating the cost of basic mate. '); /*!40000 ALTER TABLE `tbl_processing` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_processing_img` -- DROP TABLE IF EXISTS `tbl_processing_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_processing_img` ( `id_img` int(11) NOT NULL AUTO_INCREMENT, `id_processing` int(11) NOT NULL, `image` blob NOT NULL, PRIMARY KEY (`id_img`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_processing_img` -- LOCK TABLES `tbl_processing_img` WRITE; /*!40000 ALTER TABLE `tbl_processing_img` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_processing_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product` -- DROP TABLE IF EXISTS `tbl_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_product` ( `id_product` int(11) NOT NULL AUTO_INCREMENT, `product_title_id` varchar(150) NOT NULL, `product_desc_id` text NOT NULL, `product_title_en` varchar(150) NOT NULL, `product_desc_en` text NOT NULL, `product_img` blob NOT NULL, PRIMARY KEY (`id_product`) ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product` -- LOCK TABLES `tbl_product` WRITE; /*!40000 ALTER TABLE `tbl_product` DISABLE KEYS */; INSERT INTO `tbl_product` VALUES (15,'Tomat','','Tomato','','beef_tomato_(2).jpg'),(16,'Brokoli','','Broccoli','','Brocolly.jpg'),(18,'Caisim','','Caisim','','Caysim1.JPG'),(19,'Lobak Putih','','Daikon','','Daikon.jpg'),(20,'Daun Bawang','','Scallion','','Daun_Bawang.jpg'),(21,'Edamame','','Edamame','','Edamame.jpg'),(23,'Horinso','','Japanese Spinach','','Horinso.jpg'),(24,'Kembang Kol','','Cauliflower','','Kembang_Kol.JPG'),(25,'Kol Putih','','Cabbage','','Kol_Putih.jpg'),(26,'Lettuce Head ','','Lettuce Head ','','Lettuce_Head.jpg'),(27,'Bawang Bombai','','Onion','','onion1.jpg'),(28,'Pak Coy Hijau','','Green Pak Choy','','Pakcoy_Hijau.JPG'),(29,'Paprika Hijau','','Green paprika','','paprika_hijau.JPG'),(30,'Paprika Merah','','Red Paprika','','paprika_merah.JPG'),(31,'Paprika Kuning','','Yellow Paprika','','paprika_kuning.JPG'),(32,'Sawi Putih','','Chinese Cabbage','','Sawi_Putih.jpg'),(33,'Selada keriting','','Lettuce','','Selada_Keriting.jpg'),(34,'Selada Merah','','Red Leaf Lettuce','','Selada_Merah.JPG'),(35,'Seledri Lokal','','Celery','','Seledri_Lokal.JPG'),(36,'Seledri Stik','','Celery','','Seledri_Stik.jpg'),(37,'Tomat Cherry','','Cherry Tomato','','Tomat_Cherry_(2).jpg'),(38,'Wortel Lokal','','Carrot','','wortel_lokal.jpg'),(39,'Timun Jepang','','Zucchini','','zukini.jpg'),(40,'Jamur Champignon','','Jamur Champignon','',''),(41,'Timun Sayur','','Cucumber','',''),(42,'Kentang','','Potato','',''),(43,'Jagung Manis','','Sweet Corn','',''),(44,'Bit','','Bit','',''),(45,'Daun Dil','','Dil Leaf','',''),(46,'Thai Basil','','Thai Basil','',''),(48,'Oakleaf Merah','','Red Oakleaf','',''),(49,'Rocket (Arugula)','','Rocket Wild','',''),(51,'Kangkung','','Kale','',''),(52,'Buncis','','Bean','',''),(53,'Fresh Cut Veggie','','Fresh Cut Veggie','',''); /*!40000 ALTER TABLE `tbl_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_img` -- DROP TABLE IF EXISTS `tbl_product_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_product_img` ( `id_img` int(11) NOT NULL AUTO_INCREMENT, `id_product` int(11) NOT NULL, `image` blob NOT NULL, PRIMARY KEY (`id_img`) ) ENGINE=MyISAM AUTO_INCREMENT=95 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_img` -- LOCK TABLES `tbl_product_img` WRITE; /*!40000 ALTER TABLE `tbl_product_img` DISABLE KEYS */; INSERT INTO `tbl_product_img` VALUES (48,19,'780a8da40e74d12967bf4adf789899b8e91_Daikon.jpg'),(6,39,'62327ee0ca8988a397af2503b6bfe773ff3_DIT_3342 copy.jpg'),(7,39,'2275280fce35fa4c0b535cffc636a44ef6a_DIT_3344 copy.jpg'),(8,39,'790d0c9731c81f2a5a87af4abdc33dad648_DIT_3350 copy.jpg'),(9,38,'49597eb66a191d822b04ef8b7b938371066_DIT_3377 copy.jpg'),(10,38,'621bacf0456a1bb08186a934cf47267a04e_DIT_3381 copy.jpg'),(11,38,'5189410328d3e77c47bf610d0a49e29693e_DIT_3384 copy.jpg'),(12,37,'834e8ed6c614ea2041efda3fdc62f842999_DIT_3482 copy.jpg'),(13,25,'32810930b045e0887c1fbe565986ac63d39_DIT_3427 copy.jpg'),(14,25,'27a467bb117b97d8b2e051aa63a9d73417_DIT_3433 copy.jpg'),(15,25,'8188ac05d0461542d999c2f98b4b56ab903_DIT_3437 copy.jpg'),(21,35,'661499a5c5b73c8de3db140666e036a3d26_DIT_3291 copy.jpg'),(20,35,'4386db6b7a54bb7fd0488e18c25a6dc54d1_DIT_3287 copy.jpg'),(19,36,'5064dcbb739b34653219f7781e91ca4792f_Seledri Stik.jpg'),(22,35,'614fdb9920494aaa280e08dbd46231a98_DIT_3295 copy.jpg'),(23,34,'8062401a9065bffec672392dc9efb87f539_24. Selada Merah.jpg'),(24,33,'47102145a2eab05dd4d23a536c2887a1056_Selada Keriting.jpg'),(25,32,'32322cc12ec3ab8a367d1bbe37de64f5d06_DIT_3464 copy.jpg'),(26,31,'43259ff624db4e82f92961510e44c6ab943_DIT_3420 copy.jpg'),(27,30,'875f17301a9b5d87f4f0794908751e746be_DIT_3406 copy.jpg'),(28,30,'776742060c7a8b4086194b06ce1d0bb0c8a_DIT_3412 copy.jpg'),(29,30,'872b2cee2fa9bd7d45f9a6ac66161d0b5ea_DIT_3416 copy.jpg'),(30,29,'55133d1c3f35bbb04a7395ccc25b7d7d32b_DIT_3394 copy.jpg'),(31,28,'604ff537c28a9d5c9b54310c88349231900_Pakcoy Hijau.JPG'),(32,27,'46876c8706b967f862c9c2b676d1a4aacc1_DIT_3449 copy.jpg'),(33,27,'604b4654eeb46046d9a0a845c5a8a1eafcc_DIT_3446 copy.jpg'),(34,27,'5510b64b2d68f3c014d978ac94de68fecd1_DIT_3453 copy.jpg'),(35,26,'52809b2eba447e3f06315ae476f701ebec0_DIT_3256 copy.jpg'),(36,26,'658fec7399caf23b557b83ea62bc1a3f8ca_DIT_3251 copy.jpg'),(37,26,'2569ba4388ee4d59421d8ed84f9636ea3b5_DIT_3259 copy.jpg'),(38,24,'2770104c78dc65148ea5c2ced19c479d59a_DIT_3264 copy.jpg'),(39,24,'82633ae826cbd13a71ca4d6da49e55c1a4d_DIT_3270 copy.jpg'),(40,24,'87469b2e1a3d411b097eec63354b3e7a548_DIT_3282 copy.jpg'),(41,23,'904b299e7b7fbc52a806d345cf2ada99c95_Horinso.jpg'),(42,21,'663287e4a6770b463d65b10dfa5b9326083_Edamame.jpg'),(43,20,'88176d27820e3709bd32f4ee3ab5e4fd612_DIT_3304 copy.jpg'),(44,20,'5774d23ccdf20864605abe17fb2a8a534d2_DIT_3301 copy.jpg'),(45,20,'2138dc89902d3f6bcce813bb26aadea7dba_DIT_3309 copy.jpg'),(46,20,'32242c35f9c526d560aa9b964b06e410a82_DIT_3494 copy.jpg'),(47,20,'694b58541e52cb52454ea35e8091b26f40e_DIT_3498 copy.jpg'),(49,18,'5833e1f949e6674ca5596dfa71e149ff16b_DIT_3370 copy.jpg'),(50,18,'3356c8b274331517e6842049d7ce3aed3fc_DIT_3367 copy.jpg'),(51,18,'7334cd5b086452aafb40994df13d7864f82_DIT_3373 copy.jpg'),(52,16,'196947e40e3e32c9eead9490bb2aba5f521_DIT_3359 copy.jpg'),(53,16,'985b7bc58e2eda60c3df8b20de8b9cc0d4c_DIT_3356 copy.jpg'),(54,16,'20971919c30cf2b0d809ba43f6198b7ce04_DIT_3363 copy.jpg'),(55,15,'645556a9dec8bfbd859eb849e59610e3fce_DIT_3329 copy.jpg'),(56,15,'443141c4013872aab9a703430084a960384_DIT_3333 copy.jpg'),(57,15,'20477a2643ad3596d86fbfe18a8501bf783_DIT_3337 copy.jpg'),(58,40,'1609aa611ed7ffd6a440074cd0d0de13847_DIT_3315 copy.jpg'),(59,40,'13389f487eae1fcffaae33fd570518409fc_DIT_3319 copy.jpg'),(60,40,'823563bef279f69d3c1cc51cba6a2f0c807_DIT_3325 copy.jpg'),(61,41,'5082b8aaf978b0dce9ae6b61770e198cdc1_DIT_3477 copy.jpg'),(62,42,'43419eef487863f9aa332fba11fef31f419_DIT_3456 copy.jpg'),(63,42,'91c3cca617a2e83529f4dd5b47f8f31dbd_DIT_3459 copy.jpg'),(64,43,'851e5eed1bc1697ca32085ba0e92cd00675_DIT_3466 copy.jpg'),(65,43,'921b07834ca9d5ca647a225074427bf8fe9_DIT_3469 copy.jpg'),(66,43,'773c0dd14dbfc1590d53277f7184f2fc1b_DIT_3473 copy.jpg'),(67,44,'376f24fab464f1e6f0b531b0fd2a9ecb6bd_21. Bit.jpg'),(68,45,'469dcc696f9d95ba16d7118489ca5c80a93_22. Daun Dil.jpg'),(69,46,'70c16761a4626e1d62638a2872c16b9f3c_23. Thai Basil.jpg'),(70,48,'900e7f383cadeaf98e57d4a98b7f0b22a8_25. Oak Leaf.jpg'),(71,49,'34183f9feeed230cbbcf6f1d1e946e825c5_26. Rokula.jpg'),(72,50,'443a6e94e2fb71dc1ea84ef06e471514570_kangkung.jpg'),(73,51,'1389e83ea86ff0763d15c8a5e05f23a8027_membersihkan-dan-mengolah-kangkung-choysum.org_.jpg'),(74,44,'4690d18aec322f272558d262e544db9301e_dice bit.jpg'),(75,42,'663ff407718c2fb5565ef182a5fc2556ea5_potato salad.jpg'),(76,42,'864f7224ccacbffbfc7877c659241428cc1_potato dice pack.jpg'),(77,26,'296cf6caddd3b5f147665c15f18eedd7622_shreded lettuce.jpg'),(78,24,'3260fd01cd6e45e590a3de02bdc96d8c8f4_cauliflower cut.jpg'),(79,20,'7975f109bba76257ff550b1152c4b71e097_spring onion slice.jpg'),(80,38,'2711bb4183fa8e5c40d920efdc443153c0a_carrot triangle.jpg'),(81,31,'227af290c05e038abcc35790d66bdc9f6a2_yellow pepper cut.JPG'),(82,31,'2403dfff85e8b355d2e251cad1e273ded1e_yellow pepper ring.JPG'),(83,31,'874f346a1e5033a47e7df1740c490c8e0de_yellow pepper slice.JPG'),(84,16,'94268dce0bd66f80895b1c6915d159b9bcc_broccoli.jpg'),(85,25,'84b3e859d27824df6ca91a205779a722c8_Cabbage juliane.JPG'),(86,25,'4388b4357caa67af2ab56d1261e48610327_cabbage cut.JPG'),(87,32,'5023254e1ae7e94711913eb1a61e864c4df_chinese cabbage slice.JPG'),(88,27,'40d4c6adeb901649704dce10bccd542636_Onion ring burger king.JPG'),(91,52,'391f97672facc96b38feaff0093da52f153_Bean slice stick.JPG'),(90,52,'931a90e4efacf0e5af1a8f5337b766db04e_Bean slice.JPG'),(92,38,'979046625e2d79717a2483ea8b4a62a70c1_Carrot stick.JPG'),(93,53,'155e531d4144a9b54691d228e0672faa659_fresh cut veggie (1).jpg'),(94,53,'9147305f578b70bc05bb6ba22f4c45a1ade_fresh cut veggie.jpg'); /*!40000 ALTER TABLE `tbl_product_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_profile` -- DROP TABLE IF EXISTS `tbl_profile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_profile` ( `id` int(5) NOT NULL AUTO_INCREMENT, `profile_id` text NOT NULL, `profile_en` text NOT NULL, `address` varchar(120) NOT NULL, `telephone` varchar(150) NOT NULL, `email` varchar(150) NOT NULL, `email_purchasing` varchar(150) NOT NULL, `email_kemitraan` varchar(150) NOT NULL, `email_sales` varchar(150) NOT NULL, `fax` varchar(50) NOT NULL, `facebook` varchar(200) NOT NULL, `twitter` varchar(200) NOT NULL, `instagram` varchar(200) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_profile` -- LOCK TABLES `tbl_profile` WRITE; /*!40000 ALTER TABLE `tbl_profile` DISABLE KEYS */; INSERT INTO `tbl_profile` VALUES (1,'<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Hortikultura merupakan salah satu komoditas pertanian yang utama di Indonesia. Salah satu produk hortikultura yang memiliki prospek di masa mendatang yaitu sayuran. Meksipun Indonesia negeri yang subur dan menghasilkan sayuran yang tinggi, akan tetapi Indonesia masih mengimpor sayuran dari luar negeri. Pemanfaatan sayuran ini tidak hanya sebatas pada industri rumah tangga, tetapi juga lebih mengarah pada indrustri bisnis seperti rumah makan, restoran siap saji, hotel, dan hal-hal yang berkaitan dengan industri pengolahan makanan. </span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Komoditas pertanian mempunyai karakteristik khusus, yaitu (1) <em>Perishable</em> atau mudah rusak, (2) Proses penanaman, pertumbuhan, dan pemanen tergantung pada iklim dan musim, (3) Hasil panen memiliki bentuk dan ukuran yang bervariasi. Faktor tersebut sangat penting dipertimbangkan untuk menganalisis strategi yang tepat dalam pemasaran. </span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Oleh sebab itu langkah pertama yang harus dilakukan oleh suatu industri adalah mengetahui terlebih dahulu produk seperti apa yang diminta oleh pasar, baru kemudian memproduksi sesuai harapan pelanggan dengan syarat produk yang ditawarkan oleh perusahaan harus memiliki kualitas bersaing dengan produk perusahaan yang sejenis.</span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Untuk mengetahui harapan dari pelanggan diperlukan suatu analisa yang dapat menangkap dengan jeli keinginan konsumen terhadap produk yang dihasilkan perusahaan, dan menentukan aspek-aspek yang harus menjadi prioritas dan harus diperhatikan oleh pihak perusahaan dalam upaya pemenuhan dan peningkatan kepuasan konsumen yang berarti pula untuk peningkatan kualitas industri. Untuk menghasilkan produk yang memenuhi harapan pelanggan diperlukan perbaikan kualitas yang dapat dilakukan melalu suatu pengendalian proses produksi. Aplikasi pengendalian proses pada suatu industri bertujuan untuk mengetahui kesesuaian proses yang dilakukan perusahaan dengan standar yang telah ditentukan. </span></span></p>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><strong>Sejarah perusahaan</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px; margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran Siap Saji didirikan pada tahun 2010 sebagai anak perusahaan dari PT. <NAME> yang telah berdiri sebelumnya dari tahun 1986 yang telah mensuplai sayur utuh khususnya sayuran hidroponik seperti tomat recento, <em>cherry tomato</em>, paprika, timun mini dan shishito ke beberapa supermarket seperti <em>Hero,</em> <em>Carrefour, Hypermat, Lion Superindo</em> dan <em>Ranch Market</em>. PT. Sayuran Siap Saji&nbsp; sebagai anak perusahaan dari PT. Saung Mirwan lebih memfokuskan suplai untuk market Horeka (hotel, restorandan katering) memproduksi sayur segar baik dalam&nbsp; kondisi utuh (<em>whole</em>), sudah dipotong (<em>fresh cut)</em> dan <em>mixed salad ready to eat</em>. Saat ini PT. Sayuran Siap Saji mensuplai ke beberapa restoran seperti <em>McDonalds, Bakmi GM, Domino&rsquo;s Pizza, Burger King,</em> Sate Khas Senayan, Solaria, <em>Pizza Marzano</em>, <em>Purantara Inflight Catering, Lawson, Johny Rockets</em>, PT. Intan Kenkomayo, Jaddi Foods, Rejuve, Nam Nam <em>Resto &amp; Noodle Bar</em> dan <em>Coffee Bean</em>.</span></span></p>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><strong>Penjelasan mengenai lokasi, luas perkebunan, produk yg dihasilkan</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px; margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Dalam memproduksi sayuran yang dihasilkan PT. Sayuran Siap Saji bekerjasama dengan beberapa petani di Garut, Lembang, Cipanas dan Gadog sekitarnya, dalam pengawasan Divisi Kemitraan melalui penyuluh yang ditunjuk yang bertanggungjawab membina petani, memberikan penyuluhan untuk budidaya tanaman, memberikan masukan untuk pengendalian hama dan penyakit pada tanaman agar produk yang dihasilkan sesuai baik dalam kualitas maupun kuantitas yang diinginkan.</span></span></p>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><strong>Visi misi perusahaan</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px; margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">&ldquo;Menjadi salah satu <em>leader</em> dalam bidang agribisnis serta produksi sayur fresh cut dengan menerapkan teknologi yang tepat guna untuk meningkatkan peran teknologi yang tepat guna untuk meningkatkan peran serta dan kesejahteraan masyarakat petani dalam membangun Negara Indonesia&rdquo; adalah visi PT. Sayuran Siap Saji yang ditetapkan berdasarkan cita-cita pendiri, latar belakang dan kondisi masyarakat dikembangkan misi dan nilai-nilai luhur perusahaan. </span></span></span></p>\r\n\r\n<p style=\"margin-left:0in; margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\"><strong>Adapun misi PT. Sayuran Siap Saji :</strong></span></span></span></li>\r\n</ul>\r\n\r\n<ol style=\"margin-left:40px\">\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Memproduksi secara berkesinambungan dan secara konsisten menjaga standar mutu yang tinggi sesuai permintaan pasar</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Meningkatkan mutu produk, pelayanan dan SDM untuk menjaga kepuasan pelanggan</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Mengembangkan usaha pertanian dengan memperluas jaringan pasar dan jaringan kemitraan dengan para petani kecil, dan</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Menggalang kerjasama dengan lembaga-lembaga penelitian dan pendidikan untuk mendapatkan teknologi tepat guna yang dapat diaplikasikan oleh masyarakat petani. </span></span></span></li>\r\n</ol>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran Siap Saji melakukan penanganan sayuran dengan standarisasi <em>HACCP</em>. <em><span style=\"background-color:white\">(HACCP)<strong>&nbsp;</strong></span><span style=\"background-color:white\">Hazard Analysis Critical Control Point&nbsp;</span></em><span style=\"background-color:white\">adalah suatu sistem kontrol dalam upaya pencegahan terjadinya masalah yang didasarkan atas identifikasi titik-titik kritis di dalam tahap penanganan dan proses produksi. HACCP merupakan salah satu bentuk manajemen resiko yang dikembangkan untuk menjamin keamanan pangan dengan pendekatan pencegahan (<em>preventive</em>) yang dianggap dapat memberikan jaminan dalam menghasilkan makanan yang aman bagi konsumen.&nbsp;Tujuan dari penerapan HACCP dalam suatu industri pangan adalah untuk mencegah terjadinya bahaya sehingga dapat dipakai sebagai jaminan mutu pangan guna memenuhi tuntutan konsumen. HACCP bersifat sebagai sistem pengendalian mutu sejak bahan&nbsp;baku dipersiapkan sampai produk akhir diproduksi masal dan didistribusikan. </span></span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><span style=\"background-color:white\">Beberapa keunggulan dari sayur potong yang diproduksi oleh PT. Sayuran Siap Saji adalah dengan telah dimilikinya sertifikasi <em>HACCP</em> sebagai salah satu standar keamanan pangan. Pelanggan tidak perlu memotong dan mencuci sayur, berkurangnya proses <em>preparation</em> dan <em>space</em> untuk penyimpanan di store dan tentunya untuk beberapa sayuran seperti <em>mixed salad</em> bisa siap dimakan tanpa proses potong atau dicuci.</span></span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran Siap Saji berkomitmen melaksanakan, mengembangkan dan meningkatkan kinerja proses produksinya di dalam menjamin keamanan pangan produknya melalui :</span></span></span></p>\r\n\r\n<ol style=\"margin-left:40px\">\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan cara pembuatan makanan yang baik berdasarkan <em>Good Manufacturing Practices </em>(GMP);</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan cara pembuatan makanan yag hiegienis berdasarkan <em>Standar Sanitation Operation Procedures</em> (SSOP);</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan sistem analisa bahaya dan pengendalian dan pengendalian titik kritis (<em>Hazard Analysis Critical Control Points</em>-HACCP);</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan sistem mutu dan manajemen keamanan pangan (ISO 22000 : 2005); </span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pentaatan terhadap standar produk <em>fresh cut vegetables</em> serta produk <em>fresh vegetables</em> dan sejumlah regulasi bersesuaian;</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Pemberian kepedulian, pemahaman dan pelatihan yang tepat bagi seluruh jajaran manajemen dan seluruh karyawan di organisasi di perusahaan mengenai aspek keamanan pangan.</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Mengkomunikasikan kepada seluruh organisasi mengenai pentingnya perbaikan berkelanjutan (<em>continous improvement</em>) dan pencapaian kualitas keamanan pangan.</span></span></span></li>\r\n</ol>\r\n','<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Hortikultura merupakan salah satu komoditas pertanian yang utama di Indonesia. Salah satu produk hortikultura yang memiliki prospek di masa mendatang yaitu sayuran. Meksipun Indonesia negeri yang subur dan menghasilkan sayuran yang tinggi, akan tetapi Indonesia masih mengimpor sayuran dari luar negeri. Pemanfaatan sayuran ini tidak hanya sebatas pada industri rumah tangga, tetapi juga lebih mengarah pada indrustri bisnis seperti rumah makan, restoran siap saji, hotel, dan hal-hal yang berkaitan dengan industri pengolahan makanan. </span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Komoditas pertanian mempunyai karakteristik khusus, yaitu (1) <em>Perishable</em> atau mudah rusak, (2) Proses penanaman, pertumbuhan, dan pemanen tergantung pada iklim dan musim, (3) Hasil panen memiliki bentuk dan ukuran yang bervariasi. Faktor tersebut sangat penting dipertimbangkan untuk menganalisis strategi yang tepat dalam pemasaran. </span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Oleh sebab itu langkah pertama yang harus dilakukan oleh suatu industri adalah mengetahui terlebih dahulu produk seperti apa yang diminta oleh pasar, baru kemudian memproduksi sesuai harapan pelanggan dengan syarat produk yang ditawarkan oleh perusahaan harus memiliki kualitas bersaing dengan produk perusahaan yang sejenis.</span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Untuk mengetahui harapan dari pelanggan diperlukan suatu analisa yang dapat menangkap dengan jeli keinginan konsumen terhadap produk yang dihasilkan perusahaan, dan menentukan aspek-aspek yang harus menjadi prioritas dan harus diperhatikan oleh pihak perusahaan dalam upaya pemenuhan dan peningkatan kepuasan konsumen yang berarti pula untuk peningkatan kualitas industri. Untuk menghasilkan produk yang memenuhi harapan pelanggan diperlukan perbaikan kualitas yang dapat dilakukan melalu suatu pengendalian proses produksi. Aplikasi pengendalian proses pada suatu industri bertujuan untuk mengetahui kesesuaian proses yang dilakukan perusahaan dengan standar yang telah ditentukan. </span></span></p>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><strong>Sejarah perusahaan</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px; margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran <NAME> didirikan pada tahun 2010 sebagai anak perusahaan dari PT. <NAME> yang telah berdiri sebelumnya dari tahun 1986 yang telah mensuplai sayur utuh khususnya sayuran hidroponik seperti tomat recento, <em>cherry tomato</em>, paprika, timun mini dan shishito ke beberapa supermarket seperti <em>Hero,</em> <em>Carrefour, Hypermat, Lion Superindo</em> dan <em>Ranch Market</em>. PT. Sayuran Siap Saji&nbsp; sebagai anak perusahaan dari PT. <NAME> lebih memfokuskan suplai untuk market Horeka (hotel, restorandan katering) memproduksi sayur segar baik dalam&nbsp; kondisi utuh (<em>whole</em>), sudah dipotong (<em>fresh cut)</em> dan <em>mixed salad ready to eat</em>. Saat ini PT. Sayuran Siap Saji mensuplai ke beberapa restoran seperti <em>McDonalds, Bakmi GM, Domino&rsquo;s Pizza, Burger King,</em> Sate Khas Senayan, Solaria, <em>Pizza Marzano</em>, <em>Purantara Inflight Catering, Lawson, Johny Rockets</em>, PT. Intan Kenkomayo, Jaddi Foods, Rejuve, Nam Nam <em>Resto &amp; Noodle Bar</em> dan <em>Coffee Bean</em>.</span></span></p>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><strong>Penjelasan mengenai lokasi, luas perkebunan, produk yg dihasilkan</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px; margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Dalam memproduksi sayuran yang dihasilkan PT. Sayuran Siap Saji bekerjasama dengan beberapa petani di Garut, Lembang, Cipanas dan Gadog sekitarnya, dalam pengawasan Divisi Kemitraan melalui penyuluh yang ditunjuk yang bertanggungjawab membina petani, memberikan penyuluhan untuk budidaya tanaman, memberikan masukan untuk pengendalian hama dan penyakit pada tanaman agar produk yang dihasilkan sesuai baik dalam kualitas maupun kuantitas yang diinginkan.</span></span></p>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><strong>Visi misi perusahaan</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px; margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">&ldquo;Menjadi salah satu <em>leader</em> dalam bidang agribisnis serta produksi sayur fresh cut dengan menerapkan teknologi yang tepat guna untuk meningkatkan peran teknologi yang tepat guna untuk meningkatkan peran serta dan kesejahteraan masyarakat petani dalam membangun Negara Indonesia&rdquo; adalah visi PT. Sayuran Siap Saji yang ditetapkan berdasarkan cita-cita pendiri, latar belakang dan kondisi masyarakat dikembangkan misi dan nilai-nilai luhur perusahaan. </span></span></span></p>\r\n\r\n<p style=\"margin-left:0in; margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"margin-left:40px\">\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\"><strong>Adapun misi PT. Sayuran Siap Saji :</strong></span></span></span></li>\r\n</ul>\r\n\r\n<ol style=\"margin-left:40px\">\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Memproduksi secara berkesinambungan dan secara konsisten menjaga standar mutu yang tinggi sesuai permintaan pasar</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Meningkatkan mutu produk, pelayanan dan SDM untuk menjaga kepuasan pelanggan</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Mengembangkan usaha pertanian dengan memperluas jaringan pasar dan jaringan kemitraan dengan para petani kecil, dan</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Menggalang kerjasama dengan lembaga-lembaga penelitian dan pendidikan untuk mendapatkan teknologi tepat guna yang dapat diaplikasikan oleh masyarakat petani. </span></span></span></li>\r\n</ol>\r\n\r\n<p style=\"margin-left:0.5in; margin-right:0in\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran Siap Saji melakukan penanganan sayuran dengan standarisasi <em>HACCP</em>. <em><span style=\"background-color:white\">(HACCP)<strong>&nbsp;</strong></span><span style=\"background-color:white\">Hazard Analysis Critical Control Point&nbsp;</span></em><span style=\"background-color:white\">adalah suatu sistem kontrol dalam upaya pencegahan terjadinya masalah yang didasarkan atas identifikasi titik-titik kritis di dalam tahap penanganan dan proses produksi. HACCP merupakan salah satu bentuk manajemen resiko yang dikembangkan untuk menjamin keamanan pangan dengan pendekatan pencegahan (<em>preventive</em>) yang dianggap dapat memberikan jaminan dalam menghasilkan makanan yang aman bagi konsumen.&nbsp;Tujuan dari penerapan HACCP dalam suatu industri pangan adalah untuk mencegah terjadinya bahaya sehingga dapat dipakai sebagai jaminan mutu pangan guna memenuhi tuntutan konsumen. HACCP bersifat sebagai sistem pengendalian mutu sejak bahan&nbsp;baku dipersiapkan sampai produk akhir diproduksi masal dan didistribusikan. </span></span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\"><span style=\"background-color:white\">Beberapa keunggulan dari sayur potong yang diproduksi oleh PT. Sayuran Siap Saji adalah dengan telah dimilikinya sertifikasi <em>HACCP</em> sebagai salah satu standar keamanan pangan. Pelanggan tidak perlu memotong dan mencuci sayur, berkurangnya proses <em>preparation</em> dan <em>space</em> untuk penyimpanan di store dan tentunya untuk beberapa sayuran seperti <em>mixed salad</em> bisa siap dimakan tanpa proses potong atau dicuci.</span></span></span></p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:0in; text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">PT. Sayuran Siap Saji berkomitmen melaksanakan, mengembangkan dan meningkatkan kinerja proses produksinya di dalam menjamin keamanan pangan produknya melalui :</span></span></span></p>\r\n\r\n<ol style=\"margin-left:40px\">\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan cara pembuatan makanan yang baik berdasarkan <em>Good Manufacturing Practices </em>(GMP);</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan cara pembuatan makanan yag hiegienis berdasarkan <em>Standar Sanitation Operation Procedures</em> (SSOP);</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan sistem analisa bahaya dan pengendalian dan pengendalian titik kritis (<em>Hazard Analysis Critical Control Points</em>-HACCP);</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pemeliharaan sistem mutu dan manajemen keamanan pangan (ISO 22000 : 2005); </span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Penerapan dan pentaatan terhadap standar produk <em>fresh cut vegetables</em> serta produk <em>fresh vegetables</em> dan sejumlah regulasi bersesuaian;</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Pemberian kepedulian, pemahaman dan pelatihan yang tepat bagi seluruh jajaran manajemen dan seluruh karyawan di organisasi di perusahaan mengenai aspek keamanan pangan.</span></span></span></li>\r\n <li style=\"text-align:justify\"><span style=\"font-size:11pt\"><span style=\"background-color:white\"><span style=\"font-family:Calibri,sans-serif\">Mengkomunikasikan kepada seluruh organisasi mengenai pentingnya perbaikan berkelanjutan (<em>continous improvement</em>) dan pencapaian kualitas keamanan pangan.</span></span></span></li>\r\n</ol>\r\n','Jalan Cikopo Selatan No. 134, Kec. Megamendung, Bogor 16770','+62 251-8241269','<EMAIL>','','<EMAIL>','<EMAIL>, <EMAIL>','+62 251-8241268','facebook.com/sayuran.siapsaji','',''); /*!40000 ALTER TABLE `tbl_profile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_slider` -- DROP TABLE IF EXISTS `tbl_slider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tbl_slider` ( `id_slider` int(15) NOT NULL AUTO_INCREMENT, `slider_title_id` varchar(120) NOT NULL, `slider_desc_id` varchar(120) NOT NULL, `slider_title_en` varchar(120) NOT NULL, `slider_desc_en` varchar(120) NOT NULL, `slider_date` date NOT NULL, `slider_img` blob NOT NULL, PRIMARY KEY (`id_slider`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_slider` -- LOCK TABLES `tbl_slider` WRITE; /*!40000 ALTER TABLE `tbl_slider` DISABLE KEYS */; INSERT INTO `tbl_slider` VALUES (10,'Prosesing','Prosesing','Processing','Processing ','0000-00-00','IMG_2635.JPG'),(7,'Mesin Prosesing','Mesin Prosesing','Processing Machine','Processing Machine','0000-00-00','IMG_0108.jpg'),(8,'Prosesing','Prosesing','Processing','Processing ','0000-00-00','IMG_0105.jpg'),(9,'Lahan Sayur','Lahan Sayur','Vegetables Land','Vegetables Land','0000-00-00','Kebun_LTD_Garut.jpg'); /*!40000 ALTER TABLE `tbl_slider` ENABLE KEYS */; UNLOCK TABLES; /*!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 2018-05-30 22:20:31
<reponame>ajitatif/auto-config-challenge<gh_stars>0 INSERT INTO CONFIGURATION(ID, ACTIVE, APPLICATION_NAME, NAME, TYPE, VALUE) VALUES ( nextval('HIBERNATE_SEQUENCE'), true, 'SERVICE-A', 'SiteName', 'STRING', 'trendyol.com' ), ( nextval('HIBERNATE_SEQUENCE'), true, 'SERVICE-B', 'IsBasketEnabled', 'BOOLEAN', 'true' ), ( nextval('HIBERNATE_SEQUENCE'), false, 'SERVICE-A', 'MaxItemCount', 'INT', '50' );
<reponame>wangyingwei/di-platform --创建users表开始 DROP TABLE USERS; -- 创建表 CREATE TABLE USERS( ID INT NOT NULL, USER_NAME VARCHAR(512) NOT NULL, PASSWORD VARCHAR(512) NOT NULL, AGE INT NOT NULL, GENDER INT NOT NULL, PRIMARY KEY(ID) ); --创建自增ID,名称为:表名_字段名_SEQ CREATE SEQUENCE USERID_SEQ INCREMENT BY 1 -- 每次加几个 START WITH 1 -- 从1开始计数 NOMAXVALUE -- 不设置最大值 NOCYCLE -- 一直累加,不循环 CACHE 10; -- CREATE TRIGGER CREATE TRIGGER TG_USERS_INSERT BEFORE INSERT ON USERS REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW DECLARE NEXTVAL INTEGER; BEGIN SELECT USERID_SEQ.NEXTVAL INTO NEXTVAL FROM DUAL; :NEW.ID := NEXTVAL; END; / INSERT INTO USERS(USER_NAME,PASSWORD,AGE,GENDER) VALUES('admin1','<PASSWORD>',24,1); INSERT INTO USERS(USER_NAME,PASSWORD,AGE,GENDER) VALUES('lockedUser','<PASSWORD>',26,0); INSERT INTO USERS(USER_NAME,PASSWORD,AGE,GENDER) VALUES('buyer1','<PASSWORD>',33,0); INSERT INTO USERS(USER_NAME,PASSWORD,AGE,GENDER) VALUES('seller','<PASSWORD>',68,1); SELECT * FROM USERS; --创建users表结束 --创建demo表开始 DROP TABLE DEMO; -- 创建表 CREATE TABLE DEMO( ID INT NOT NULL, NAME VARCHAR(16) NOT NULL, ITEM_DESCRIPTION VARCHAR(16) NOT NULL, UNIT VARCHAR(16) NOT NULL, REMARK VARCHAR(16) NOT NULL, PRIMARY KEY(ID) ); --创建自增ID,名称为:表名_字段名_SEQ CREATE SEQUENCE DEMOID_SEQ INCREMENT BY 1 -- 每次加几个 START WITH 1 -- 从1开始计数 NOMAXVALUE -- 不设置最大值 NOCYCLE -- 一直累加,不循环 CACHE 10; -- CREATE TRIGGER CREATE TRIGGER TG_DEMO_INSERT BEFORE INSERT ON DEMO REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW DECLARE NEXTVAL INTEGER; BEGIN SELECT DEMOID_SEQ.NEXTVAL INTO NEXTVAL FROM DUAL; :NEW.ID := NEXTVAL; END; / INSERT INTO DEMO (NAME,ITEM_DESCRIPTION,UNIT,REMARK) VALUES ('电脑','THINKPADE470','台','研发部购买'); INSERT INTO DEMO (NAME,ITEM_DESCRIPTION,UNIT,REMARK) VALUES ('显示器','DELL','个','实施部购买'); SELECT * FROM DEMO; --创建demo表结束
<reponame>banderous/am-role-assignment-service -- Postgres Function to insert bulk assignment records drop type if exists roleCategories; create type roleCategories as enum('PROFESSIONAL', 'JUDICIAL','LEGAL_OPERATIONS', 'CITIZEN'); drop type if exists professionalRoles; create type professionalRoles as enum('[PETSOLICITOR]', '[RESPSOLICITOR]', '[BARRISTER]', '[CAFCASSSOLICITOR]', '[EPSMANAGING]', '[LABARRISTER]', '[LAMANAGING]', '[LASOLICITOR]', '[SOLICITOR]', '[SOLICITORA]', '[SOLICITORB]', '[SOLICITORC]', '[SOLICITORD]', '[SOLICITORE]', '[SOLICITORF]', '[SOLICITORG]', '[SOLICITORH]', '[SOLICITORI]', '[SOLICITORJ]', '[LEGALREPRESENTATIVE]', '[CREATOR]'); drop type if exists staffRoles; create type staffRoles as enum('tribunal-caseworker', '[CREATOR]'); drop type if exists judgeRoles; create type judgeRoles as enum('judge', '[CREATOR]'); --create function insert_bulk_assignments() RETURNS void AS $$ CREATE or replace FUNCTION insert_bulk_assignments(numberOfActors INT, numberOfRecords INT) RETURNS void AS $$ declare assignmentId uuid; actorId uuid; number_of_assignments INT; professionalRole text; staffRole text; judgeRole text; roleCategory text; finalRole text; begin --300000 FOR counter IN 1..numberOfActors loop --Generate random UUID for Actor actorId := uuid_in(md5(random()::text || clock_timestamp()::text)::cstring); begin --Generate a number between 1-30 SELECT floor(random()*30)+1 into number_of_assignments; --Fetch random Role Category SELECT roleName into roleCategory FROM ( SELECT unnest(enum_range(NULL::roleCategories)) as roleName ) sub ORDER BY random() LIMIT 1; --Fetch random role from enum for Professional category SELECT roleName into professionalRole FROM ( SELECT unnest(enum_range(NULL::professionalRoles)) as roleName ) sub ORDER BY random() LIMIT 1; --Fetch random role from enum for Staff category SELECT roleName into staffRole FROM ( SELECT unnest(enum_range(NULL::staffRoles)) as roleName ) sub ORDER BY random() LIMIT 1; --Fetch random role from enum for Judicial category SELECT roleName into judgeRole FROM ( SELECT unnest(enum_range(NULL::judgeRoles)) as roleName ) sub ORDER BY random() LIMIT 1; IF roleCategory = 'PROFESSIONAL' THEN finalRole = professionalRole; END IF; IF roleCategory = 'CITIZEN' THEN finalRole = '[CREATOR]'; END IF; IF roleCategory = 'JUDICIAL' THEN finalRole = judgeRole; END IF; IF roleCategory = 'LEGAL_OPERATIONS' THEN finalRole = staffRole; END IF; FOR counter IN 1..numberOfRecords loop --Generate random UUID for assignmentId assignmentId := uuid_in(md5(random()::text || clock_timestamp()::text)::cstring); INSERT INTO public.role_assignment (id, actor_id_type, actor_id, role_type, role_name, classification, grant_type, role_category, read_only, begin_time, end_time, "attributes", created) VALUES(assignmentId, 'IDAM', actorId, 'CASE', finalRole, 'RESTRICTED', 'SPECIFIC', roleCategory, false, '2021-01-01 00:00:00.000', null, '{"caseId": "1234567890123456", "caseType": "Asylum", "jurisdiction": "IA"}', now()); end loop; end; -- Insert actor cache records INSERT INTO public.actor_cache_control (actor_id, etag, json_response) VALUES(actorId, 0, '[{}]'); END LOOP; exception when others then begin raise exception 'Exception occured due to unknown issue'; end; end; $$ LANGUAGE plpgsql; select insert_bulk_assignments(10, 10); --select insert_bulk_assignments(18, 1024); --select insert_bulk_assignments(60, 512); --select insert_bulk_assignments(268, 256); --select insert_bulk_assignments(576, 128); --select insert_bulk_assignments(1568, 64); --select insert_bulk_assignments(4924, 32); --select insert_bulk_assignments(13398, 16); --select insert_bulk_assignments(25380, 8); --select insert_bulk_assignments(46660, 4); --select insert_bulk_assignments(221450, 2); --select insert_bulk_assignments(1780686, 1);
-- ------------------------------------------------------ -- ADD AN EMAIL TO A USER -- ------------------------------------------------------ ALTER TABLE haikudepot.user ADD COLUMN email VARCHAR(256); -- ------------------------------------------------------ -- FORGOT PASSWORD -- ------------------------------------------------------ CREATE TABLE haikudepot.user_password_reset_token ( id BIGINT NOT NULL, code VARCHAR(255) NOT NULL, create_timestamp TIMESTAMP NOT NULL, user_id BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE SEQUENCE haikudepot.user_password_reset_token_seq START WITH 4251 INCREMENT BY 1; ALTER TABLE haikudepot.user_password_reset_token ADD FOREIGN KEY (user_id) REFERENCES haikudepot.user (id); CREATE UNIQUE INDEX user_password_reset_token_idx01 ON haikudepot.user_password_reset_token(code); -- ------------------------------------------------------ -- AUTHORIZATION -- ------------------------------------------------------ CREATE TABLE haikudepot.permission ( id BIGINT NOT NULL, code VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE haikudepot.permission_user_pkg ( id BIGINT NOT NULL, permission_id BIGINT NOT NULL, user_id BIGINT NOT NULL, pkg_id BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE TABLE haikudepot.permission_user_repository ( id BIGINT NOT NULL, user_id BIGINT NOT NULL, permission_id BIGINT NOT NULL, repository_id BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE TABLE haikudepot.permission_public_repository ( id BIGINT NOT NULL, permission_id BIGINT NOT NULL, repository_id BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE SEQUENCE haikudepot.permission_seq START WITH 6999 INCREMENT BY 1; CREATE SEQUENCE haikudepot.permission_user_pkg_seq START WITH 5554 INCREMENT BY 1; CREATE SEQUENCE haikudepot.permission_user_repository_seq START WITH 1122 INCREMENT BY 1; CREATE SEQUENCE haikudepot.permission_public_repository_seq START WITH 9174 INCREMENT BY 1; ALTER TABLE haikudepot.permission_user_pkg ADD FOREIGN KEY (user_id) REFERENCES haikudepot.user (id); ALTER TABLE haikudepot.permission_user_pkg ADD FOREIGN KEY (permission_id) REFERENCES haikudepot.permission (id); ALTER TABLE haikudepot.permission_user_pkg ADD FOREIGN KEY (pkg_id) REFERENCES haikudepot.pkg (id); ALTER TABLE haikudepot.permission_user_repository ADD FOREIGN KEY (repository_id) REFERENCES haikudepot.repository (id); ALTER TABLE haikudepot.permission_user_repository ADD FOREIGN KEY (permission_id) REFERENCES haikudepot.permission (id); ALTER TABLE haikudepot.permission_user_repository ADD FOREIGN KEY (user_id) REFERENCES haikudepot.user (id); ALTER TABLE haikudepot.permission_public_repository ADD FOREIGN KEY (permission_id) REFERENCES haikudepot.permission (id); ALTER TABLE haikudepot.permission_public_repository ADD FOREIGN KEY (repository_id) REFERENCES haikudepot.repository (id); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'repository_view', 'View Repository'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'repository_edit','Edit Repository'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'repository_import','Import Repository'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'repository_list','List Repositories'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'repository_list_inactive','List Inactive Repositories'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'repository_add','Add Repository'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'user_view','View User'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'user_edit','Edit User'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'user_changepassword','Change User Password'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'user_list','List Users'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'userrating_edit','Edit User Rating'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'pkg_createuserrating','Create User Rating'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'pkg_editicon','Edit Package Icon'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'pkg_editscreenshot','Edit Package Screenshot'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'pkg_editcategories','Edit Package Categories'); INSERT INTO haikudepot.permission (id, code, name) VALUES ((SELECT nextval('haikudepot.permission_seq')), 'pkg_editversionlocalization','Edit Version Localization'); CREATE UNIQUE INDEX permission_idx01 ON haikudepot.permission(code); CREATE UNIQUE INDEX permission_user_pkg_idx01 ON haikudepot.permission_user_pkg(user_id,pkg_id,permission_id); CREATE UNIQUE INDEX permission_user_repository_idx01 ON haikudepot.permission_user_repository(user_id,repository_id,permission_id); CREATE UNIQUE INDEX permission_public_repository_idx01 ON haikudepot.permission_public_repository(repository_id,permission_id);
<reponame>Art3m198/Ticketing-System-Help-Desk -- phpMyAdmin SQL Dump -- version 3.5.1 -- http://www.phpmyadmin.net -- -- Хост: 127.0.0.1 -- Время создания: Окт 26 2020 г., 22:58 -- Версия сервера: 5.5.25 -- Версия PHP: 5.6.19 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 utf8 */; -- -- База данных: `ticket` -- -- -------------------------------------------------------- -- -- Структура таблицы `reports` -- CREATE TABLE IF NOT EXISTS `reports` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `fromid` int(11) DEFAULT NULL, `status` longtext, `theme` longtext, `priority` longtext, `department` longtext, `email` longtext, `date` longtext, `disc` longtext, `solution` longtext, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=57 ; -- -------------------------------------------------------- -- -- Структура таблицы `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` longtext, `password` longtext, `right` longtext, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Дамп данных таблицы `users` -- INSERT INTO `users` (`id`, `email`, `password`, `right`) VALUES (1, '<EMAIL>', <PASSWORD>', '0'), (2, '<EMAIL>', <PASSWORD>', '1'); /*!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 */;
<reponame>BugsUK/FindApprenticeship<filename>src/SFA.Apprenticeships.Data.AvmsPlus/dbo/Stored Procedures/uspVacancyManagerSelectByEmployerProvider.sql CREATE PROCEDURE [dbo].[uspVacancyManagerSelectByEmployerProvider] @EmployerId INT=null, @TrainingProviderId INT=null, @EmployerName NVARCHAR (510)=null, @EmployerPostcode NVARCHAR (100)=null, @RetrieveAllProviders BIT= 0, @RecruitmentAgentId INT= NULL, @PageIndex INT=1, @PageSize INT=20, @IsSortAsc BIT=1, @SortByField1 NVARCHAR (100)='TrainingProviderName', @SortByField2 NVARCHAR (100)='EmployerName' AS BEGIN SET NOCOUNT ON IF @RecruitmentAgentId = 0 SET @RecruitmentAgentId = NULL /*********Set Page Number**********************************************/ declare @StartRowNo int declare @EndRowNo int set @StartRowNo =((@PageIndex-1)* @PageSize)+1 set @EndRowNo =(@PageIndex * @PageSize) /***********************************************************************/ /**************Total Number of Rows*************************************/ declare @TotalRows int select @TotalRows= count(1) from [VacancyOwnerRelationship] inner join [ProviderSite] on [VacancyOwnerRelationship].[ProviderSiteID] = [ProviderSite].ProviderSiteID inner join Employer on Employer.EmployerId = [VacancyOwnerRelationship].EmployerId Left outer join VacancyProvisionRelationshipStatusType on [VacancyOwnerRelationship].StatusTypeId = VacancyProvisionRelationshipStatusType.VacancyProvisionRelationshipStatusTypeId Left outer join EmployerTrainingProviderStatus ETPS1 on Employer.EmployerStatusTypeId = ETPS1.EmployerTrainingProviderStatusId INNER JOIN ProviderSiteRelationship psrOwner on psrOwner.ProviderSiteID = [ProviderSite].ProviderSiteID AND psrOwner.ProviderSiteRelationShipTypeID =1 LEFT JOIN ProviderSiteRelationship psrRA on psrRA.ProviderID = psrOwner.ProviderID AND psrRA.ProviderSiteRelationShipTypeID =3 AND psrRA.ProviderSiteID = @RecruitmentAgentId LEFT JOIN RecruitmentAgentLinkedRelationships ralr on ralr.ProviderSiteRelationshipID = psrRA.ProviderSiteRelationshipID AND ralr.VacancyOwnerRelationshipID = [VacancyOwnerRelationship].VacancyOwnerRelationshipId where ([VacancyOwnerRelationship].[ProviderSiteID] = @TrainingProviderId or @TrainingProviderId is null) and ([VacancyOwnerRelationship].EmployerId = @EmployerId or @EmployerId is null) and (Employer.FullName like '%' + @EmployerName + '%' or @EmployerName is null) and (Employer.PostCode like @EmployerPostcode + '%' or @EmployerPostcode is null) and VacancyProvisionRelationshipStatusType.FullName != 'Deleted' and (@RetrieveAllProviders = 1 OR [ProviderSite].TrainingProviderStatusTypeId = 1) and ETPS1.FullName != 'Deleted' AND (@RecruitmentAgentId is NULL OR ralr.ProviderSiteRelationshipID IS NOT NULL) /***********************************************************************/ if (@SortByField1 = 'Town') Begin if @EmployerId is null set @SortByField1 = 'EmployerTown' else set @SortByField1 = 'TrainingProviderTown' End if (@SortByField2 = 'Town') Begin if @EmployerId is null set @SortByField2 = 'EmployerTown' else set @SortByField2 = 'TrainingProviderTown' End /*********set the order by**********************************************/ if @IsSortAsc = 1 BEGIN set @SortByField1 = @SortByField1 + ' Asc' END if @IsSortAsc = 0 BEGIN set @SortByField1 = @SortByField1 + ' desc' END if @IsSortAsc = 1 BEGIN set @SortByField2 = @SortByField2 + ' Asc' END if @IsSortAsc = 0 BEGIN set @SortByField2 = @SortByField2 + ' desc' END /***********************************************************************/ select *,@TotalRows as 'TotalRows' from ( select ROW_NUMBER() OVER( ORDER BY Case when @SortByField1='EmployerName Asc' then Employer.FullName End asc, Case when @SortByField1='EmployerName desc' then Employer.FullName End DESC, Case when @SortByField1='TrainingProviderName Asc' then [ProviderSite].TradingName End ASC, Case when @SortByField1='TrainingProviderName desc' then [ProviderSite].TradingName End DESC, Case when @SortByField1='EmployerTown Asc' then Employer.Town End ASC, Case when @SortByField1='TrainingProviderTown desc' then [ProviderSite].Town End DESC, Case when @SortByField2='EmployerName Asc' then Employer.FullName End asc, Case when @SortByField2='EmployerName desc' then Employer.FullName End DESC, Case when @SortByField2='TrainingProviderName Asc' then [ProviderSite].TradingName End ASC, Case when @SortByField2='TrainingProviderName desc' then [ProviderSite].TradingName End DESC, Case when @SortByField2='EmployerTown Asc' then Employer.Town End ASC, Case when @SortByField2='TrainingProviderTown desc' then [ProviderSite].Town End DESC , Case when @SortByField1='EmployerTown Desc' then Employer.Town End DESC, Case when @SortByField1='TrainingProviderTown Asc' then [ProviderSite].Town End ASC ) as RowNum, [VacancyOwnerRelationship].[VacancyOwnerRelationshipId] as RelationshipId, [ProviderSite].ProviderSiteID, [VacancyOwnerRelationship].EmployerId, isnull(Employer.FullName,'') as 'EmployerName', isnull([ProviderSite].TradingName,'') as 'TraingingProviderName', isnull(VacancyProvisionRelationshipStatusType.FullName,'') as 'VacancyRelationShipStatus', isnull(Employer.Town,'') as EmployerTown, isnull(Employer.PostCode,'') as EmployerPostCode, isnull([ProviderSite].Town,'') as TrainingProviderTown, isnull([ProviderSite].PostCode,'') as TrainingProviderPostCode from [VacancyOwnerRelationship] inner join [ProviderSite] on [VacancyOwnerRelationship].[ProviderSiteID] = [ProviderSite].ProviderSiteID inner join Employer on Employer.Employerid = [VacancyOwnerRelationship].EmployerId Left outer join VacancyProvisionRelationshipStatusType on [VacancyOwnerRelationship].StatusTypeId = VacancyProvisionRelationshipStatusType.VacancyProvisionRelationshipStatusTypeId Left outer join EmployerTrainingProviderStatus ETPS1 on Employer.EmployerStatusTypeId = ETPS1.EmployerTrainingProviderStatusId INNER JOIN ProviderSiteRelationship psrOwner on psrOwner.ProviderSiteID = [ProviderSite].ProviderSiteID AND psrOwner.ProviderSiteRelationShipTypeID =1 LEFT JOIN ProviderSiteRelationship psrRA on psrRA.ProviderID = psrOwner.ProviderID AND psrRA.ProviderSiteRelationShipTypeID =3 AND psrRA.ProviderSiteID = @RecruitmentAgentId LEFT JOIN RecruitmentAgentLinkedRelationships ralr on ralr.ProviderSiteRelationshipID = psrRA.ProviderSiteRelationshipID AND ralr.VacancyOwnerRelationshipID = [VacancyOwnerRelationship].VacancyOwnerRelationshipId where ([VacancyOwnerRelationship].[ProviderSiteID] = @TrainingProviderId or @TrainingProviderId is null) and ([VacancyOwnerRelationship].EmployerId = @EmployerId or @EmployerId is null) and (Employer.FullName like '%' + @EmployerName + '%' or @EmployerName is null) and (Employer.PostCode like @EmployerPostcode + '%' or @EmployerPostcode is null) and VacancyProvisionRelationshipStatusType.FullName != 'Deleted' and (@RetrieveAllProviders = 1 OR [ProviderSite].TrainingProviderStatusTypeId = 1) and ETPS1.FullName != 'Deleted' AND (@RecruitmentAgentId is NULL OR ralr.ProviderSiteRelationshipID IS NOT NULL) ) as DerivedTable WHERE RowNum BETWEEN @StartRowNo AND @EndRowNo SET NOCOUNT OFF END
<reponame>CarlosjVar/PR-Dise-o<filename>DB Creation Script/Sales.sql USE CompuHardware; CREATE TABLE Sales( id INT NOT NULL AUTO_INCREMENT, orderId INT NOT NULL, paypalOrderId CHAR(17) NOT NULL, paypalPayerId Char(13) NOT NULL, CONSTRAINT PK_Sales PRIMARY KEY(id), CONSTRAINT UQ_Sales_OrderId UNIQUE(orderId), CONSTRAINT FK_Orders_Sales FOREIGN KEY(orderId) REFERENCES Orders(id) )
<filename>Practice/SQL/Aggregation/Weather_Observation_Station_18.sql SELECT ROUND(ABS((MIN(LAT_N) - MAX(LAT_N))) + ABS((MIN(LONG_W)-MAX(LONG_W))),4) FROM STATION;
Create table If Not Exists Scores (player_name varchar(20), gender varchar(1), day date, score_points int); Truncate table Scores; insert into Scores (player_name, gender, day, score_points) values ('Aron', 'F', '2020-01-01', '17'); insert into Scores (player_name, gender, day, score_points) values ('Alice', 'F', '2020-01-07', '23'); insert into Scores (player_name, gender, day, score_points) values ('Bajrang', 'M', '2020-01-07', '7'); insert into Scores (player_name, gender, day, score_points) values ('Khali', 'M', '2019-12-25', '11'); insert into Scores (player_name, gender, day, score_points) values ('Slaman', 'M', '2019-12-30', '13'); insert into Scores (player_name, gender, day, score_points) values ('Joe', 'M', '2019-12-31', '3'); insert into Scores (player_name, gender, day, score_points) values ('Jose', 'M', '2019-12-18', '2'); insert into Scores (player_name, gender, day, score_points) values ('Priya', 'F', '2019-12-31', '23'); insert into Scores (player_name, gender, day, score_points) values ('Priyanka', 'F', '2019-12-30', '17');
<gh_stars>100-1000 -- crash8.test -- -- db eval {SELECT b FROM main.ab WHERE a = 1} SELECT b FROM main.ab WHERE a = 1
<reponame>Shuttl-Tech/antlr_psql<filename>src/test/resources/sql/copy/9ecd4f69.sql -- file:triggers.sql ln:1375 expect:true copy parted_stmt_trig(a) from stdin
<filename>mydb.sql -- phpMyAdmin SQL Dump -- version 4.9.5deb2 -- https://www.phpmyadmin.net/ -- -- Hôte : localhost:3306 -- Généré le : jeu. 26 août 2021 à 09:59 -- Version du serveur : 8.0.26-0ubuntu0.20.04.2 -- Version de PHP : 7.4.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; 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 */; -- -- Base de données : `mydb` -- -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `attack` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `attack` ( `id_pokemon` int ,`attack` int ); -- -------------------------------------------------------- -- -- Structure de la table `csv` -- CREATE TABLE `csv` ( `name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `type1` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `type2` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `total` int NOT NULL, `hp` int NOT NULL, `attack` int NOT NULL, `defense` int NOT NULL, `special_attack` int NOT NULL, `special_defense` int NOT NULL, `speed` int NOT NULL, `image` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `icon` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `id` int NOT NULL, `generation` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- -- Déchargement des données de la table `csv` -- INSERT INTO `csv` (`name`, `type1`, `type2`, `total`, `hp`, `attack`, `defense`, `special_attack`, `special_defense`, `speed`, `image`, `icon`, `id`, `generation`) VALUES ('Bulbasaur', 'Grass', 'Poison', 318, 45, 49, 49, 65, 65, 45, 'https://img.pokemondb.net/artwork/bulbasaur.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bulbasaur.png', 1, 1), ('Ivysaur', 'Grass', 'Poison', 405, 60, 62, 63, 80, 80, 60, 'https://img.pokemondb.net/artwork/ivysaur.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ivysaur.png', 2, 1), ('Venusaur', 'Grass', 'Poison', 525, 80, 82, 83, 100, 100, 80, 'https://img.pokemondb.net/artwork/venusaur.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/venusaur.png', 3, 1), ('Charmander', 'Fire', '', 309, 39, 52, 43, 60, 50, 65, 'https://img.pokemondb.net/artwork/charmander.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/charmander.png', 4, 1), ('Charmeleon', 'Fire', '', 405, 58, 64, 58, 80, 65, 80, 'https://img.pokemondb.net/artwork/charmeleon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/charmeleon.png', 5, 1), ('Charizard', 'Fire', 'Flying', 534, 78, 84, 78, 109, 85, 100, 'https://img.pokemondb.net/artwork/charizard.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/charizard.png', 6, 1), ('Squirtle', 'Water', '', 314, 44, 48, 65, 50, 64, 43, 'https://img.pokemondb.net/artwork/squirtle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/squirtle.png', 7, 1), ('Wartortle', 'Water', '', 405, 59, 63, 80, 65, 80, 58, 'https://img.pokemondb.net/artwork/wartortle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wartortle.png', 8, 1), ('Blastoise', 'Water', '', 530, 79, 83, 100, 85, 105, 78, 'https://img.pokemondb.net/artwork/blastoise.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/blastoise.png', 9, 1), ('Caterpie', 'Bug', '', 195, 45, 30, 35, 20, 20, 45, 'https://img.pokemondb.net/artwork/caterpie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/caterpie.png', 10, 1), ('Metapod', 'Bug', '', 205, 50, 20, 55, 25, 25, 30, 'https://img.pokemondb.net/artwork/metapod.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/metapod.png', 11, 1), ('Butterfree', 'Bug', 'Flying', 395, 60, 45, 50, 90, 80, 70, 'https://img.pokemondb.net/artwork/butterfree.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/butterfree.png', 12, 1), ('Weedle', 'Bug', 'Poison', 195, 40, 35, 30, 20, 20, 50, 'https://img.pokemondb.net/artwork/weedle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/weedle.png', 13, 1), ('Kakuna', 'Bug', 'Poison', 205, 45, 25, 50, 25, 25, 35, 'https://img.pokemondb.net/artwork/kakuna.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kakuna.png', 14, 1), ('Beedrill', 'Bug', 'Poison', 395, 65, 90, 40, 45, 80, 75, 'https://img.pokemondb.net/artwork/beedrill.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/beedrill.png', 15, 1), ('Pidgey', 'Normal', 'Flying', 251, 40, 45, 40, 35, 35, 56, 'https://img.pokemondb.net/artwork/pidgey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pidgey.png', 16, 1), ('Pidgeotto', 'Normal', 'Flying', 349, 63, 60, 55, 50, 50, 71, 'https://img.pokemondb.net/artwork/pidgeotto.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pidgeotto.png', 17, 1), ('Pidgeot', 'Normal', 'Flying', 479, 83, 80, 75, 70, 70, 101, 'https://img.pokemondb.net/artwork/pidgeot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pidgeot.png', 18, 1), ('Rattata', 'Normal', '', 253, 30, 56, 35, 25, 35, 72, 'https://img.pokemondb.net/artwork/rattata.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rattata.png', 19, 1), ('Raticate', 'Normal', '', 413, 55, 81, 60, 50, 70, 97, 'https://img.pokemondb.net/artwork/raticate.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/raticate.png', 20, 1), ('Spearow', 'Normal', 'Flying', 262, 40, 60, 30, 31, 31, 70, 'https://img.pokemondb.net/artwork/spearow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spearow.png', 21, 1), ('Fearow', 'Normal', 'Flying', 442, 65, 90, 65, 61, 61, 100, 'https://img.pokemondb.net/artwork/fearow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/fearow.png', 22, 1), ('Ekans', 'Poison', '', 288, 35, 60, 44, 40, 54, 55, 'https://img.pokemondb.net/artwork/ekans.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ekans.png', 23, 1), ('Arbok', 'Poison', '', 448, 60, 95, 69, 65, 79, 80, 'https://img.pokemondb.net/artwork/arbok.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/arbok.png', 24, 1), ('Pikachu', 'Electric', '', 320, 35, 55, 40, 50, 50, 90, 'https://img.pokemondb.net/artwork/pikachu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pikachu.png', 25, 1), ('Raichu', 'Electric', '', 485, 60, 90, 55, 90, 80, 110, 'https://img.pokemondb.net/artwork/raichu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/raichu.png', 26, 1), ('Sandshrew', 'Ground', '', 300, 50, 75, 85, 20, 30, 40, 'https://img.pokemondb.net/artwork/sandshrew.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sandshrew.png', 27, 1), ('Sandslash', 'Ground', '', 450, 75, 100, 110, 45, 55, 65, 'https://img.pokemondb.net/artwork/sandslash.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sandslash.png', 28, 1), ('Nidoran♀', 'Poison', '', 275, 55, 47, 52, 40, 40, 41, 'https://img.pokemondb.net/artwork/nidoran-f.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nidoran-f.png', 29, 1), ('Nidorina', 'Poison', '', 365, 70, 62, 67, 55, 55, 56, 'https://img.pokemondb.net/artwork/nidorina.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nidorina.png', 30, 1), ('Nidoqueen', 'Poison', 'Ground', 505, 90, 92, 87, 75, 85, 76, 'https://img.pokemondb.net/artwork/nidoqueen.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nidoqueen.png', 31, 1), ('Nidoran♂', 'Poison', '', 273, 46, 57, 40, 40, 40, 50, 'https://img.pokemondb.net/artwork/nidoran-m.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nidoran-m.png', 32, 1), ('Nidorino', 'Poison', '', 365, 61, 72, 57, 55, 55, 65, 'https://img.pokemondb.net/artwork/nidorino.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nidorino.png', 33, 1), ('Nidoking', 'Poison', 'Ground', 505, 81, 102, 77, 85, 75, 85, 'https://img.pokemondb.net/artwork/nidoking.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nidoking.png', 34, 1), ('Clefairy', 'Fairy', '', 323, 70, 45, 48, 60, 65, 35, 'https://img.pokemondb.net/artwork/clefairy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/clefairy.png', 35, 1), ('Clefable', 'Fairy', '', 483, 95, 70, 73, 95, 90, 60, 'https://img.pokemondb.net/artwork/clefable.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/clefable.png', 36, 1), ('Vulpix', 'Fire', '', 299, 38, 41, 40, 50, 65, 65, 'https://img.pokemondb.net/artwork/vulpix.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vulpix.png', 37, 1), ('Ninetales', 'Fire', '', 505, 73, 76, 75, 81, 100, 100, 'https://img.pokemondb.net/artwork/ninetales.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ninetales.png', 38, 1), ('Jigglypuff', 'Normal', 'Fairy', 270, 115, 45, 20, 45, 25, 20, 'https://img.pokemondb.net/artwork/jigglypuff.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jigglypuff.png', 39, 1), ('Wigglytuff', 'Normal', 'Fairy', 435, 140, 70, 45, 85, 50, 45, 'https://img.pokemondb.net/artwork/wigglytuff.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wigglytuff.png', 40, 1), ('Zubat', 'Poison', 'Flying', 245, 40, 45, 35, 30, 40, 55, 'https://img.pokemondb.net/artwork/zubat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zubat.png', 41, 1), ('Golbat', 'Poison', 'Flying', 455, 75, 80, 70, 65, 75, 90, 'https://img.pokemondb.net/artwork/golbat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/golbat.png', 42, 1), ('Oddish', 'Grass', 'Poison', 320, 45, 50, 55, 75, 65, 30, 'https://img.pokemondb.net/artwork/oddish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/oddish.png', 43, 1), ('Gloom', 'Grass', 'Poison', 395, 60, 65, 70, 85, 75, 40, 'https://img.pokemondb.net/artwork/gloom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gloom.png', 44, 1), ('Vileplume', 'Grass', 'Poison', 490, 75, 80, 85, 110, 90, 50, 'https://img.pokemondb.net/artwork/vileplume.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vileplume.png', 45, 1), ('Paras', 'Bug', 'Grass', 285, 35, 70, 55, 45, 55, 25, 'https://img.pokemondb.net/artwork/paras.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/paras.png', 46, 1), ('Parasect', 'Bug', 'Grass', 405, 60, 95, 80, 60, 80, 30, 'https://img.pokemondb.net/artwork/parasect.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/parasect.png', 47, 1), ('Venonat', 'Bug', 'Poison', 305, 60, 55, 50, 40, 55, 45, 'https://img.pokemondb.net/artwork/venonat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/venonat.png', 48, 1), ('Venomoth', 'Bug', 'Poison', 450, 70, 65, 60, 90, 75, 90, 'https://img.pokemondb.net/artwork/venomoth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/venomoth.png', 49, 1), ('Diglett', 'Ground', '', 265, 10, 55, 25, 35, 45, 95, 'https://img.pokemondb.net/artwork/diglett.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/diglett.png', 50, 1), ('Dugtrio', 'Ground', '', 425, 35, 100, 50, 50, 70, 120, 'https://img.pokemondb.net/artwork/dugtrio.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dugtrio.png', 51, 1), ('Meowth', 'Normal', '', 290, 40, 45, 35, 40, 40, 90, 'https://img.pokemondb.net/artwork/meowth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/meowth.png', 52, 1), ('Persian', 'Normal', '', 440, 65, 70, 60, 65, 65, 115, 'https://img.pokemondb.net/artwork/persian.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/persian.png', 53, 1), ('Psyduck', 'Water', '', 320, 50, 52, 48, 65, 50, 55, 'https://img.pokemondb.net/artwork/psyduck.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/psyduck.png', 54, 1), ('Golduck', 'Water', '', 500, 80, 82, 78, 95, 80, 85, 'https://img.pokemondb.net/artwork/golduck.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/golduck.png', 55, 1), ('Mankey', 'Fighting', '', 305, 40, 80, 35, 35, 45, 70, 'https://img.pokemondb.net/artwork/mankey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mankey.png', 56, 1), ('Primeape', 'Fighting', '', 455, 65, 105, 60, 60, 70, 95, 'https://img.pokemondb.net/artwork/primeape.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/primeape.png', 57, 1), ('Growlithe', 'Fire', '', 350, 55, 70, 45, 70, 50, 60, 'https://img.pokemondb.net/artwork/growlithe.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/growlithe.png', 58, 1), ('Arcanine', 'Fire', '', 555, 90, 110, 80, 100, 80, 95, 'https://img.pokemondb.net/artwork/arcanine.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/arcanine.png', 59, 1), ('Poliwag', 'Water', '', 300, 40, 50, 40, 40, 40, 90, 'https://img.pokemondb.net/artwork/poliwag.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/poliwag.png', 60, 1), ('Poliwhirl', 'Water', '', 385, 65, 65, 65, 50, 50, 90, 'https://img.pokemondb.net/artwork/poliwhirl.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/poliwhirl.png', 61, 1), ('Poliwrath', 'Water', 'Fighting', 510, 90, 95, 95, 70, 90, 70, 'https://img.pokemondb.net/artwork/poliwrath.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/poliwrath.png', 62, 1), ('Abra', 'Psychic', '', 310, 25, 20, 15, 105, 55, 90, 'https://img.pokemondb.net/artwork/abra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/abra.png', 63, 1), ('Kadabra', 'Psychic', '', 400, 40, 35, 30, 120, 70, 105, 'https://img.pokemondb.net/artwork/kadabra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kadabra.png', 64, 1), ('Alakazam', 'Psychic', '', 500, 55, 50, 45, 135, 95, 120, 'https://img.pokemondb.net/artwork/alakazam.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/alakazam.png', 65, 1), ('Machop', 'Fighting', '', 305, 70, 80, 50, 35, 35, 35, 'https://img.pokemondb.net/artwork/machop.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/machop.png', 66, 1), ('Machoke', 'Fighting', '', 405, 80, 100, 70, 50, 60, 45, 'https://img.pokemondb.net/artwork/machoke.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/machoke.png', 67, 1), ('Machamp', 'Fighting', '', 505, 90, 130, 80, 65, 85, 55, 'https://img.pokemondb.net/artwork/machamp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/machamp.png', 68, 1), ('Bellsprout', 'Grass', 'Poison', 300, 50, 75, 35, 70, 30, 40, 'https://img.pokemondb.net/artwork/bellsprout.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bellsprout.png', 69, 1), ('Weepinbell', 'Grass', 'Poison', 390, 65, 90, 50, 85, 45, 55, 'https://img.pokemondb.net/artwork/weepinbell.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/weepinbell.png', 70, 1), ('Victreebel', 'Grass', 'Poison', 490, 80, 105, 65, 100, 70, 70, 'https://img.pokemondb.net/artwork/victreebel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/victreebel.png', 71, 1), ('Tentacool', 'Water', 'Poison', 335, 40, 40, 35, 50, 100, 70, 'https://img.pokemondb.net/artwork/tentacool.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tentacool.png', 72, 1), ('Tentacruel', 'Water', 'Poison', 515, 80, 70, 65, 80, 120, 100, 'https://img.pokemondb.net/artwork/tentacruel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tentacruel.png', 73, 1), ('Geodude', 'Rock', 'Ground', 300, 40, 80, 100, 30, 30, 20, 'https://img.pokemondb.net/artwork/geodude.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/geodude.png', 74, 1), ('Graveler', 'Rock', 'Ground', 390, 55, 95, 115, 45, 45, 35, 'https://img.pokemondb.net/artwork/graveler.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/graveler.png', 75, 1), ('Golem', 'Rock', 'Ground', 495, 80, 120, 130, 55, 65, 45, 'https://img.pokemondb.net/artwork/golem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/golem.png', 76, 1), ('Ponyta', 'Fire', '', 410, 50, 85, 55, 65, 65, 90, 'https://img.pokemondb.net/artwork/ponyta.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ponyta.png', 77, 1), ('Rapidash', 'Fire', '', 500, 65, 100, 70, 80, 80, 105, 'https://img.pokemondb.net/artwork/rapidash.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rapidash.png', 78, 1), ('Slowpoke', 'Water', 'Psychic', 315, 90, 65, 65, 40, 40, 15, 'https://img.pokemondb.net/artwork/slowpoke.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slowpoke.png', 79, 1), ('Slowbro', 'Water', 'Psychic', 490, 95, 75, 110, 100, 80, 30, 'https://img.pokemondb.net/artwork/slowbro.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slowbro.png', 80, 1), ('Magnemite', 'Electric', 'Steel', 325, 25, 35, 70, 95, 55, 45, 'https://img.pokemondb.net/artwork/magnemite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magnemite.png', 81, 1), ('Magneton', 'Electric', 'Steel', 465, 50, 60, 95, 120, 70, 70, 'https://img.pokemondb.net/artwork/magneton.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magneton.png', 82, 1), ('Farfetch\'d', 'Normal', 'Flying', 377, 52, 90, 55, 58, 62, 60, 'https://img.pokemondb.net/artwork/farfetchd.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/farfetchd.png', 83, 1), ('Doduo', 'Normal', 'Flying', 310, 35, 85, 45, 35, 35, 75, 'https://img.pokemondb.net/artwork/doduo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/doduo.png', 84, 1), ('Dodrio', 'Normal', 'Flying', 470, 60, 110, 70, 60, 60, 110, 'https://img.pokemondb.net/artwork/dodrio.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dodrio.png', 85, 1), ('Seel', 'Water', '', 325, 65, 45, 55, 45, 70, 45, 'https://img.pokemondb.net/artwork/seel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/seel.png', 86, 1), ('Dewgong', 'Water', 'Ice', 475, 90, 70, 80, 70, 95, 70, 'https://img.pokemondb.net/artwork/dewgong.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dewgong.png', 87, 1), ('Grimer', 'Poison', '', 325, 80, 80, 50, 40, 50, 25, 'https://img.pokemondb.net/artwork/grimer.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grimer.png', 88, 1), ('Muk', 'Poison', '', 500, 105, 105, 75, 65, 100, 50, 'https://img.pokemondb.net/artwork/muk.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/muk.png', 89, 1), ('Shellder', 'Water', '', 305, 30, 65, 100, 45, 25, 40, 'https://img.pokemondb.net/artwork/shellder.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shellder.png', 90, 1), ('Cloyster', 'Water', 'Ice', 525, 50, 95, 180, 85, 45, 70, 'https://img.pokemondb.net/artwork/cloyster.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cloyster.png', 91, 1), ('Gastly', 'Ghost', 'Poison', 310, 30, 35, 30, 100, 35, 80, 'https://img.pokemondb.net/artwork/gastly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gastly.png', 92, 1), ('Haunter', 'Ghost', 'Poison', 405, 45, 50, 45, 115, 55, 95, 'https://img.pokemondb.net/artwork/haunter.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/haunter.png', 93, 1), ('Gengar', 'Ghost', 'Poison', 500, 60, 65, 60, 130, 75, 110, 'https://img.pokemondb.net/artwork/gengar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gengar.png', 94, 1), ('Onix', 'Rock', 'Ground', 385, 35, 45, 160, 30, 45, 70, 'https://img.pokemondb.net/artwork/onix.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/onix.png', 95, 1), ('Drowzee', 'Psychic', '', 328, 60, 48, 45, 43, 90, 42, 'https://img.pokemondb.net/artwork/drowzee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drowzee.png', 96, 1), ('Hypno', 'Psychic', '', 483, 85, 73, 70, 73, 115, 67, 'https://img.pokemondb.net/artwork/hypno.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hypno.png', 97, 1), ('Krabby', 'Water', '', 325, 30, 105, 90, 25, 25, 50, 'https://img.pokemondb.net/artwork/krabby.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/krabby.png', 98, 1), ('Kingler', 'Water', '', 475, 55, 130, 115, 50, 50, 75, 'https://img.pokemondb.net/artwork/kingler.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kingler.png', 99, 1), ('Voltorb', 'Electric', '', 330, 40, 30, 50, 55, 55, 100, 'https://img.pokemondb.net/artwork/voltorb.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/voltorb.png', 100, 1), ('Electrode', 'Electric', '', 490, 60, 50, 70, 80, 80, 150, 'https://img.pokemondb.net/artwork/electrode.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/electrode.png', 101, 1), ('Exeggcute', 'Grass', 'Psychic', 325, 60, 40, 80, 60, 45, 40, 'https://img.pokemondb.net/artwork/exeggcute.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/exeggcute.png', 102, 1), ('Exeggutor', 'Grass', 'Psychic', 530, 95, 95, 85, 125, 75, 55, 'https://img.pokemondb.net/artwork/exeggutor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/exeggutor.png', 103, 1), ('Cubone', 'Ground', '', 320, 50, 50, 95, 40, 50, 35, 'https://img.pokemondb.net/artwork/cubone.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cubone.png', 104, 1), ('Marowak', 'Ground', '', 425, 60, 80, 110, 50, 80, 45, 'https://img.pokemondb.net/artwork/marowak.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/marowak.png', 105, 1), ('Hitmonlee', 'Fighting', '', 455, 50, 120, 53, 35, 110, 87, 'https://img.pokemondb.net/artwork/hitmonlee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hitmonlee.png', 106, 1), ('Hitmonchan', 'Fighting', '', 455, 50, 105, 79, 35, 110, 76, 'https://img.pokemondb.net/artwork/hitmonchan.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hitmonchan.png', 107, 1), ('Lickitung', 'Normal', '', 385, 90, 55, 75, 60, 75, 30, 'https://img.pokemondb.net/artwork/lickitung.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lickitung.png', 108, 1), ('Koffing', 'Poison', '', 340, 40, 65, 95, 60, 45, 35, 'https://img.pokemondb.net/artwork/koffing.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/koffing.png', 109, 1), ('Weezing', 'Poison', '', 490, 65, 90, 120, 85, 70, 60, 'https://img.pokemondb.net/artwork/weezing.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/weezing.png', 110, 1), ('Rhyhorn', 'Ground', 'Rock', 345, 80, 85, 95, 30, 30, 25, 'https://img.pokemondb.net/artwork/rhyhorn.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rhyhorn.png', 111, 1), ('Rhydon', 'Ground', 'Rock', 485, 105, 130, 120, 45, 45, 40, 'https://img.pokemondb.net/artwork/rhydon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rhydon.png', 112, 1), ('Chansey', 'Normal', '', 450, 250, 5, 5, 35, 105, 50, 'https://img.pokemondb.net/artwork/chansey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chansey.png', 113, 1), ('Tangela', 'Grass', '', 435, 65, 55, 115, 100, 40, 60, 'https://img.pokemondb.net/artwork/tangela.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tangela.png', 114, 1), ('Kangaskhan', 'Normal', '', 490, 105, 95, 80, 40, 80, 90, 'https://img.pokemondb.net/artwork/kangaskhan.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kangaskhan.png', 115, 1), ('Horsea', 'Water', '', 295, 30, 40, 70, 70, 25, 60, 'https://img.pokemondb.net/artwork/horsea.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/horsea.png', 116, 1), ('Seadra', 'Water', '', 440, 55, 65, 95, 95, 45, 85, 'https://img.pokemondb.net/artwork/seadra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/seadra.png', 117, 1), ('Goldeen', 'Water', '', 320, 45, 67, 60, 35, 50, 63, 'https://img.pokemondb.net/artwork/goldeen.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/goldeen.png', 118, 1), ('Seaking', 'Water', '', 450, 80, 92, 65, 65, 80, 68, 'https://img.pokemondb.net/artwork/seaking.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/seaking.png', 119, 1), ('Staryu', 'Water', '', 340, 30, 45, 55, 70, 55, 85, 'https://img.pokemondb.net/artwork/staryu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/staryu.png', 120, 1), ('Starmie', 'Water', 'Psychic', 520, 60, 75, 85, 100, 85, 115, 'https://img.pokemondb.net/artwork/starmie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/starmie.png', 121, 1), ('Mr. Mime', 'Psychic', 'Fairy', 460, 40, 45, 65, 100, 120, 90, 'https://img.pokemondb.net/artwork/mr-mime.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mr-mime.png', 122, 1), ('Scyther', 'Bug', 'Flying', 500, 70, 110, 80, 55, 80, 105, 'https://img.pokemondb.net/artwork/scyther.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scyther.png', 123, 1), ('Jynx', 'Ice', 'Psychic', 455, 65, 50, 35, 115, 95, 95, 'https://img.pokemondb.net/artwork/jynx.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jynx.png', 124, 1), ('Electabuzz', 'Electric', '', 490, 65, 83, 57, 95, 85, 105, 'https://img.pokemondb.net/artwork/electabuzz.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/electabuzz.png', 125, 1), ('Magmar', 'Fire', '', 495, 65, 95, 57, 100, 85, 93, 'https://img.pokemondb.net/artwork/magmar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magmar.png', 126, 1), ('Pinsir', 'Bug', '', 500, 65, 125, 100, 55, 70, 85, 'https://img.pokemondb.net/artwork/pinsir.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pinsir.png', 127, 1), ('Tauros', 'Normal', '', 490, 75, 100, 95, 40, 70, 110, 'https://img.pokemondb.net/artwork/tauros.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tauros.png', 128, 1), ('Magikarp', 'Water', '', 200, 20, 10, 55, 15, 20, 80, 'https://img.pokemondb.net/artwork/magikarp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magikarp.png', 129, 1), ('Gyarados', 'Water', 'Flying', 540, 95, 125, 79, 60, 100, 81, 'https://img.pokemondb.net/artwork/gyarados.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gyarados.png', 130, 1), ('Lapras', 'Water', 'Ice', 535, 130, 85, 80, 85, 95, 60, 'https://img.pokemondb.net/artwork/lapras.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lapras.png', 131, 1), ('Ditto', 'Normal', '', 288, 48, 48, 48, 48, 48, 48, 'https://img.pokemondb.net/artwork/ditto.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ditto.png', 132, 1), ('Eevee', 'Normal', '', 325, 55, 55, 50, 45, 65, 55, 'https://img.pokemondb.net/artwork/eevee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/eevee.png', 133, 1), ('Vaporeon', 'Water', '', 525, 130, 65, 60, 110, 95, 65, 'https://img.pokemondb.net/artwork/vaporeon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vaporeon.png', 134, 1), ('Jolteon', 'Electric', '', 525, 65, 65, 60, 110, 95, 130, 'https://img.pokemondb.net/artwork/jolteon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jolteon.png', 135, 1), ('Flareon', 'Fire', '', 525, 65, 130, 60, 95, 110, 65, 'https://img.pokemondb.net/artwork/flareon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/flareon.png', 136, 1), ('Porygon', 'Normal', '', 395, 65, 60, 70, 85, 75, 40, 'https://img.pokemondb.net/artwork/porygon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/porygon.png', 137, 1), ('Omanyte', 'Rock', 'Water', 355, 35, 40, 100, 90, 55, 35, 'https://img.pokemondb.net/artwork/omanyte.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/omanyte.png', 138, 1), ('Omastar', 'Rock', 'Water', 495, 70, 60, 125, 115, 70, 55, 'https://img.pokemondb.net/artwork/omastar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/omastar.png', 139, 1), ('Kabuto', 'Rock', 'Water', 355, 30, 80, 90, 55, 45, 55, 'https://img.pokemondb.net/artwork/kabuto.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kabuto.png', 140, 1), ('Kabutops', 'Rock', 'Water', 495, 60, 115, 105, 65, 70, 80, 'https://img.pokemondb.net/artwork/kabutops.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kabutops.png', 141, 1), ('Aerodactyl', 'Rock', 'Flying', 515, 80, 105, 65, 60, 75, 130, 'https://img.pokemondb.net/artwork/aerodactyl.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aerodactyl.png', 142, 1), ('Snorlax', 'Normal', '', 540, 160, 110, 65, 65, 110, 30, 'https://img.pokemondb.net/artwork/snorlax.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/snorlax.png', 143, 1), ('Articuno', 'Ice', 'Flying', 580, 90, 85, 100, 95, 125, 85, 'https://img.pokemondb.net/artwork/articuno.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/articuno.png', 144, 1), ('Zapdos', 'Electric', 'Flying', 580, 90, 90, 85, 125, 90, 100, 'https://img.pokemondb.net/artwork/zapdos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zapdos.png', 145, 1), ('Moltres', 'Fire', 'Flying', 580, 90, 100, 90, 125, 85, 90, 'https://img.pokemondb.net/artwork/moltres.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/moltres.png', 146, 1), ('Dratini', 'Dragon', '', 300, 41, 64, 45, 50, 50, 50, 'https://img.pokemondb.net/artwork/dratini.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dratini.png', 147, 1), ('Dragonair', 'Dragon', '', 420, 61, 84, 65, 70, 70, 70, 'https://img.pokemondb.net/artwork/dragonair.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dragonair.png', 148, 1), ('Dragonite', 'Dragon', 'Flying', 600, 91, 134, 95, 100, 100, 80, 'https://img.pokemondb.net/artwork/dragonite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dragonite.png', 149, 1), ('Mewtwo', 'Psychic', '', 680, 106, 110, 90, 154, 90, 130, 'https://img.pokemondb.net/artwork/mewtwo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mewtwo.png', 150, 1), ('Mew', 'Psychic', '', 600, 100, 100, 100, 100, 100, 100, 'https://img.pokemondb.net/artwork/mew.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mew.png', 151, 1), ('Chikorita', 'Grass', '', 318, 45, 49, 65, 49, 65, 45, 'https://img.pokemondb.net/artwork/chikorita.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chikorita.png', 152, 2), ('Bayleef', 'Grass', '', 405, 60, 62, 80, 63, 80, 60, 'https://img.pokemondb.net/artwork/bayleef.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bayleef.png', 153, 2), ('Meganium', 'Grass', '', 525, 80, 82, 100, 83, 100, 80, 'https://img.pokemondb.net/artwork/meganium.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/meganium.png', 154, 2), ('Cyndaquil', 'Fire', '', 309, 39, 52, 43, 60, 50, 65, 'https://img.pokemondb.net/artwork/cyndaquil.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cyndaquil.png', 155, 2), ('Quilava', 'Fire', '', 405, 58, 64, 58, 80, 65, 80, 'https://img.pokemondb.net/artwork/quilava.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/quilava.png', 156, 2), ('Typhlosion', 'Fire', '', 534, 78, 84, 78, 109, 85, 100, 'https://img.pokemondb.net/artwork/typhlosion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/typhlosion.png', 157, 2), ('Totodile', 'Water', '', 314, 50, 65, 64, 44, 48, 43, 'https://img.pokemondb.net/artwork/totodile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/totodile.png', 158, 2), ('Croconaw', 'Water', '', 405, 65, 80, 80, 59, 63, 58, 'https://img.pokemondb.net/artwork/croconaw.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/croconaw.png', 159, 2), ('Feraligatr', 'Water', '', 530, 85, 105, 100, 79, 83, 78, 'https://img.pokemondb.net/artwork/feraligatr.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/feraligatr.png', 160, 2), ('Sentret', 'Normal', '', 215, 35, 46, 34, 35, 45, 20, 'https://img.pokemondb.net/artwork/sentret.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sentret.png', 161, 2), ('Furret', 'Normal', '', 415, 85, 76, 64, 45, 55, 90, 'https://img.pokemondb.net/artwork/furret.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/furret.png', 162, 2), ('Hoothoot', 'Normal', 'Flying', 262, 60, 30, 30, 36, 56, 50, 'https://img.pokemondb.net/artwork/hoothoot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hoothoot.png', 163, 2), ('Noctowl', 'Normal', 'Flying', 452, 100, 50, 50, 86, 96, 70, 'https://img.pokemondb.net/artwork/noctowl.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/noctowl.png', 164, 2), ('Ledyba', 'Bug', 'Flying', 265, 40, 20, 30, 40, 80, 55, 'https://img.pokemondb.net/artwork/ledyba.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ledyba.png', 165, 2), ('Ledian', 'Bug', 'Flying', 390, 55, 35, 50, 55, 110, 85, 'https://img.pokemondb.net/artwork/ledian.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ledian.png', 166, 2), ('Spinarak', 'Bug', 'Poison', 250, 40, 60, 40, 40, 40, 30, 'https://img.pokemondb.net/artwork/spinarak.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spinarak.png', 167, 2), ('Ariados', 'Bug', 'Poison', 400, 70, 90, 70, 60, 70, 40, 'https://img.pokemondb.net/artwork/ariados.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ariados.png', 168, 2), ('Crobat', 'Poison', 'Flying', 535, 85, 90, 80, 70, 80, 130, 'https://img.pokemondb.net/artwork/crobat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/crobat.png', 169, 2), ('Chinchou', 'Water', 'Electric', 330, 75, 38, 38, 56, 56, 67, 'https://img.pokemondb.net/artwork/chinchou.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chinchou.png', 170, 2), ('Lanturn', 'Water', 'Electric', 460, 125, 58, 58, 76, 76, 67, 'https://img.pokemondb.net/artwork/lanturn.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lanturn.png', 171, 2), ('Pichu', 'Electric', '', 205, 20, 40, 15, 35, 35, 60, 'https://img.pokemondb.net/artwork/pichu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pichu.png', 172, 2), ('Cleffa', 'Fairy', '', 218, 50, 25, 28, 45, 55, 15, 'https://img.pokemondb.net/artwork/cleffa.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cleffa.png', 173, 2), ('Igglybuff', 'Normal', 'Fairy', 210, 90, 30, 15, 40, 20, 15, 'https://img.pokemondb.net/artwork/igglybuff.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/igglybuff.png', 174, 2), ('Togepi', 'Fairy', '', 245, 35, 20, 65, 40, 65, 20, 'https://img.pokemondb.net/artwork/togepi.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/togepi.png', 175, 2), ('Togetic', 'Fairy', 'Flying', 405, 55, 40, 85, 80, 105, 40, 'https://img.pokemondb.net/artwork/togetic.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/togetic.png', 176, 2), ('Natu', 'Psychic', 'Flying', 320, 40, 50, 45, 70, 45, 70, 'https://img.pokemondb.net/artwork/natu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/natu.png', 177, 2), ('Xatu', 'Psychic', 'Flying', 470, 65, 75, 70, 95, 70, 95, 'https://img.pokemondb.net/artwork/xatu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/xatu.png', 178, 2), ('Mareep', 'Electric', '', 280, 55, 40, 40, 65, 45, 35, 'https://img.pokemondb.net/artwork/mareep.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mareep.png', 179, 2), ('Flaaffy', 'Electric', '', 365, 70, 55, 55, 80, 60, 45, 'https://img.pokemondb.net/artwork/flaaffy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/flaaffy.png', 180, 2), ('Ampharos', 'Electric', '', 510, 90, 75, 85, 115, 90, 55, 'https://img.pokemondb.net/artwork/ampharos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ampharos.png', 181, 2), ('Bellossom', 'Grass', '', 490, 75, 80, 95, 90, 100, 50, 'https://img.pokemondb.net/artwork/bellossom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bellossom.png', 182, 2), ('Marill', 'Water', 'Fairy', 250, 70, 20, 50, 20, 50, 40, 'https://img.pokemondb.net/artwork/marill.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/marill.png', 183, 2), ('Azumarill', 'Water', 'Fairy', 420, 100, 50, 80, 60, 80, 50, 'https://img.pokemondb.net/artwork/azumarill.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/azumarill.png', 184, 2), ('Sudowoodo', 'Rock', '', 410, 70, 100, 115, 30, 65, 30, 'https://img.pokemondb.net/artwork/sudowoodo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sudowoodo.png', 185, 2), ('Politoed', 'Water', '', 500, 90, 75, 75, 90, 100, 70, 'https://img.pokemondb.net/artwork/politoed.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/politoed.png', 186, 2), ('Hoppip', 'Grass', 'Flying', 250, 35, 35, 40, 35, 55, 50, 'https://img.pokemondb.net/artwork/hoppip.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hoppip.png', 187, 2), ('Skiploom', 'Grass', 'Flying', 340, 55, 45, 50, 45, 65, 80, 'https://img.pokemondb.net/artwork/skiploom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skiploom.png', 188, 2), ('Jumpluff', 'Grass', 'Flying', 460, 75, 55, 70, 55, 95, 110, 'https://img.pokemondb.net/artwork/jumpluff.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jumpluff.png', 189, 2), ('Aipom', 'Normal', '', 360, 55, 70, 55, 40, 55, 85, 'https://img.pokemondb.net/artwork/aipom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aipom.png', 190, 2), ('Sunkern', 'Grass', '', 180, 30, 30, 30, 30, 30, 30, 'https://img.pokemondb.net/artwork/sunkern.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sunkern.png', 191, 2), ('Sunflora', 'Grass', '', 425, 75, 75, 55, 105, 85, 30, 'https://img.pokemondb.net/artwork/sunflora.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sunflora.png', 192, 2), ('Yanma', 'Bug', 'Flying', 390, 65, 65, 45, 75, 45, 95, 'https://img.pokemondb.net/artwork/yanma.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/yanma.png', 193, 2), ('Wooper', 'Water', 'Ground', 210, 55, 45, 45, 25, 25, 15, 'https://img.pokemondb.net/artwork/wooper.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wooper.png', 194, 2), ('Quagsire', 'Water', 'Ground', 430, 95, 85, 85, 65, 65, 35, 'https://img.pokemondb.net/artwork/quagsire.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/quagsire.png', 195, 2), ('Espeon', 'Psychic', '', 525, 65, 65, 60, 130, 95, 110, 'https://img.pokemondb.net/artwork/espeon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/espeon.png', 196, 2), ('Umbreon', 'Dark', '', 525, 95, 65, 110, 60, 130, 65, 'https://img.pokemondb.net/artwork/umbreon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/umbreon.png', 197, 2), ('Murkrow', 'Dark', 'Flying', 405, 60, 85, 42, 85, 42, 91, 'https://img.pokemondb.net/artwork/murkrow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/murkrow.png', 198, 2), ('Slowking', 'Water', 'Psychic', 490, 95, 75, 80, 100, 110, 30, 'https://img.pokemondb.net/artwork/slowking.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slowking.png', 199, 2), ('Misdreavus', 'Ghost', '', 435, 60, 60, 60, 85, 85, 85, 'https://img.pokemondb.net/artwork/misdreavus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/misdreavus.png', 200, 2), ('Unown', 'Psychic', '', 336, 48, 72, 48, 72, 48, 48, 'https://img.pokemondb.net/artwork/unown.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/unown.png', 201, 2), ('Wobbuffet', 'Psychic', '', 405, 190, 33, 58, 33, 58, 33, 'https://img.pokemondb.net/artwork/wobbuffet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wobbuffet.png', 202, 2), ('Girafarig', 'Normal', 'Psychic', 455, 70, 80, 65, 90, 65, 85, 'https://img.pokemondb.net/artwork/girafarig.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/girafarig.png', 203, 2), ('Pineco', 'Bug', '', 290, 50, 65, 90, 35, 35, 15, 'https://img.pokemondb.net/artwork/pineco.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pineco.png', 204, 2), ('Forretress', 'Bug', 'Steel', 465, 75, 90, 140, 60, 60, 40, 'https://img.pokemondb.net/artwork/forretress.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/forretress.png', 205, 2), ('Dunsparce', 'Normal', '', 415, 100, 70, 70, 65, 65, 45, 'https://img.pokemondb.net/artwork/dunsparce.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dunsparce.png', 206, 2), ('Gligar', 'Ground', 'Flying', 430, 65, 75, 105, 35, 65, 85, 'https://img.pokemondb.net/artwork/gligar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gligar.png', 207, 2), ('Steelix', 'Steel', 'Ground', 510, 75, 85, 200, 55, 65, 30, 'https://img.pokemondb.net/artwork/steelix.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/steelix.png', 208, 2), ('Snubbull', 'Fairy', '', 300, 60, 80, 50, 40, 40, 30, 'https://img.pokemondb.net/artwork/snubbull.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/snubbull.png', 209, 2), ('Granbull', 'Fairy', '', 450, 90, 120, 75, 60, 60, 45, 'https://img.pokemondb.net/artwork/granbull.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/granbull.png', 210, 2), ('Qwilfish', 'Water', 'Poison', 440, 65, 95, 85, 55, 55, 85, 'https://img.pokemondb.net/artwork/qwilfish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/qwilfish.png', 211, 2), ('Scizor', 'Bug', 'Steel', 500, 70, 130, 100, 55, 80, 65, 'https://img.pokemondb.net/artwork/scizor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scizor.png', 212, 2), ('Shuckle', 'Bug', 'Rock', 505, 20, 10, 230, 10, 230, 5, 'https://img.pokemondb.net/artwork/shuckle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shuckle.png', 213, 2), ('Heracross', 'Bug', 'Fighting', 500, 80, 125, 75, 40, 95, 85, 'https://img.pokemondb.net/artwork/heracross.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/heracross.png', 214, 2), ('Sneasel', 'Dark', 'Ice', 430, 55, 95, 55, 35, 75, 115, 'https://img.pokemondb.net/artwork/sneasel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sneasel.png', 215, 2), ('Teddiursa', 'Normal', '', 330, 60, 80, 50, 50, 50, 40, 'https://img.pokemondb.net/artwork/teddiursa.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/teddiursa.png', 216, 2), ('Ursaring', 'Normal', '', 500, 90, 130, 75, 75, 75, 55, 'https://img.pokemondb.net/artwork/ursaring.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ursaring.png', 217, 2), ('Slugma', 'Fire', '', 250, 40, 40, 40, 70, 40, 20, 'https://img.pokemondb.net/artwork/slugma.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slugma.png', 218, 2), ('Magcargo', 'Fire', 'Rock', 430, 60, 50, 120, 90, 80, 30, 'https://img.pokemondb.net/artwork/magcargo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magcargo.png', 219, 2), ('Swinub', 'Ice', 'Ground', 250, 50, 50, 40, 30, 30, 50, 'https://img.pokemondb.net/artwork/swinub.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swinub.png', 220, 2), ('Piloswine', 'Ice', 'Ground', 450, 100, 100, 80, 60, 60, 50, 'https://img.pokemondb.net/artwork/piloswine.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/piloswine.png', 221, 2), ('Corsola', 'Water', 'Rock', 410, 65, 55, 95, 65, 95, 35, 'https://img.pokemondb.net/artwork/corsola.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/corsola.png', 222, 2), ('Remoraid', 'Water', '', 300, 35, 65, 35, 65, 35, 65, 'https://img.pokemondb.net/artwork/remoraid.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/remoraid.png', 223, 2), ('Octillery', 'Water', '', 480, 75, 105, 75, 105, 75, 45, 'https://img.pokemondb.net/artwork/octillery.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/octillery.png', 224, 2), ('Delibird', 'Ice', 'Flying', 330, 45, 55, 45, 65, 45, 75, 'https://img.pokemondb.net/artwork/delibird.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/delibird.png', 225, 2), ('Mantine', 'Water', 'Flying', 485, 85, 40, 70, 80, 140, 70, 'https://img.pokemondb.net/artwork/mantine.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mantine.png', 226, 2), ('Skarmory', 'Steel', 'Flying', 465, 65, 80, 140, 40, 70, 70, 'https://img.pokemondb.net/artwork/skarmory.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skarmory.png', 227, 2), ('Houndour', 'Dark', 'Fire', 330, 45, 60, 30, 80, 50, 65, 'https://img.pokemondb.net/artwork/houndour.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/houndour.png', 228, 2), ('Houndoom', 'Dark', 'Fire', 500, 75, 90, 50, 110, 80, 95, 'https://img.pokemondb.net/artwork/houndoom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/houndoom.png', 229, 2), ('Kingdra', 'Water', 'Dragon', 540, 75, 95, 95, 95, 95, 85, 'https://img.pokemondb.net/artwork/kingdra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kingdra.png', 230, 2), ('Phanpy', 'Ground', '', 330, 90, 60, 60, 40, 40, 40, 'https://img.pokemondb.net/artwork/phanpy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/phanpy.png', 231, 2), ('Donphan', 'Ground', '', 500, 90, 120, 120, 60, 60, 50, 'https://img.pokemondb.net/artwork/donphan.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/donphan.png', 232, 2), ('Porygon2', 'Normal', '', 515, 85, 80, 90, 105, 95, 60, 'https://img.pokemondb.net/artwork/porygon2.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/porygon2.png', 233, 2), ('Stantler', 'Normal', '', 465, 73, 95, 62, 85, 65, 85, 'https://img.pokemondb.net/artwork/stantler.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stantler.png', 234, 2), ('Smeargle', 'Normal', '', 250, 55, 20, 35, 20, 45, 75, 'https://img.pokemondb.net/artwork/smeargle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/smeargle.png', 235, 2), ('Tyrogue', 'Fighting', '', 210, 35, 35, 35, 35, 35, 35, 'https://img.pokemondb.net/artwork/tyrogue.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tyrogue.png', 236, 2), ('Hitmontop', 'Fighting', '', 455, 50, 95, 95, 35, 110, 70, 'https://img.pokemondb.net/artwork/hitmontop.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hitmontop.png', 237, 2), ('Smoochum', 'Ice', 'Psychic', 305, 45, 30, 15, 85, 65, 65, 'https://img.pokemondb.net/artwork/smoochum.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/smoochum.png', 238, 2), ('Elekid', 'Electric', '', 360, 45, 63, 37, 65, 55, 95, 'https://img.pokemondb.net/artwork/elekid.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/elekid.png', 239, 2), ('Magby', 'Fire', '', 365, 45, 75, 37, 70, 55, 83, 'https://img.pokemondb.net/artwork/magby.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magby.png', 240, 2), ('Miltank', 'Normal', '', 490, 95, 80, 105, 40, 70, 100, 'https://img.pokemondb.net/artwork/miltank.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/miltank.png', 241, 2), ('Blissey', 'Normal', '', 540, 255, 10, 10, 75, 135, 55, 'https://img.pokemondb.net/artwork/blissey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/blissey.png', 242, 2), ('Raikou', 'Electric', '', 580, 90, 85, 75, 115, 100, 115, 'https://img.pokemondb.net/artwork/raikou.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/raikou.png', 243, 2), ('Entei', 'Fire', '', 580, 115, 115, 85, 90, 75, 100, 'https://img.pokemondb.net/artwork/entei.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/entei.png', 244, 2), ('Suicune', 'Water', '', 580, 100, 75, 115, 90, 115, 85, 'https://img.pokemondb.net/artwork/suicune.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/suicune.png', 245, 2), ('Larvitar', 'Rock', 'Ground', 300, 50, 64, 50, 45, 50, 41, 'https://img.pokemondb.net/artwork/larvitar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/larvitar.png', 246, 2), ('Pupitar', 'Rock', 'Ground', 410, 70, 84, 70, 65, 70, 51, 'https://img.pokemondb.net/artwork/pupitar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pupitar.png', 247, 2), ('Tyranitar', 'Rock', 'Dark', 600, 100, 134, 110, 95, 100, 61, 'https://img.pokemondb.net/artwork/tyranitar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tyranitar.png', 248, 2), ('Lugia', 'Psychic', 'Flying', 680, 106, 90, 130, 90, 154, 110, 'https://img.pokemondb.net/artwork/lugia.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lugia.png', 249, 2), ('Ho-oh', 'Fire', 'Flying', 680, 106, 130, 90, 110, 154, 90, 'https://img.pokemondb.net/artwork/ho-oh.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ho-oh.png', 250, 2), ('Celebi', 'Psychic', 'Grass', 600, 100, 100, 100, 100, 100, 100, 'https://img.pokemondb.net/artwork/celebi.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/celebi.png', 251, 2), ('Treecko', 'Grass', '', 310, 40, 45, 35, 65, 55, 70, 'https://img.pokemondb.net/artwork/treecko.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/treecko.png', 252, 3), ('Grovyle', 'Grass', '', 405, 50, 65, 45, 85, 65, 95, 'https://img.pokemondb.net/artwork/grovyle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grovyle.png', 253, 3), ('Sceptile', 'Grass', '', 530, 70, 85, 65, 105, 85, 120, 'https://img.pokemondb.net/artwork/sceptile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sceptile.png', 254, 3), ('Torchic', 'Fire', '', 310, 45, 60, 40, 70, 50, 45, 'https://img.pokemondb.net/artwork/torchic.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/torchic.png', 255, 3), ('Combusken', 'Fire', 'Fighting', 405, 60, 85, 60, 85, 60, 55, 'https://img.pokemondb.net/artwork/combusken.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/combusken.png', 256, 3), ('Blaziken', 'Fire', 'Fighting', 530, 80, 120, 70, 110, 70, 80, 'https://img.pokemondb.net/artwork/blaziken.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/blaziken.png', 257, 3), ('Mudkip', 'Water', '', 310, 50, 70, 50, 50, 50, 40, 'https://img.pokemondb.net/artwork/mudkip.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mudkip.png', 258, 3), ('Marshtomp', 'Water', 'Ground', 405, 70, 85, 70, 60, 70, 50, 'https://img.pokemondb.net/artwork/marshtomp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/marshtomp.png', 259, 3), ('Swampert', 'Water', 'Ground', 535, 100, 110, 90, 85, 90, 60, 'https://img.pokemondb.net/artwork/swampert.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swampert.png', 260, 3), ('Poochyena', 'Dark', '', 220, 35, 55, 35, 30, 30, 35, 'https://img.pokemondb.net/artwork/poochyena.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/poochyena.png', 261, 3), ('Mightyena', 'Dark', '', 420, 70, 90, 70, 60, 60, 70, 'https://img.pokemondb.net/artwork/mightyena.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mightyena.png', 262, 3), ('Zigzagoon', 'Normal', '', 240, 38, 30, 41, 30, 41, 60, 'https://img.pokemondb.net/artwork/zigzagoon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zigzagoon.png', 263, 3), ('Linoone', 'Normal', '', 420, 78, 70, 61, 50, 61, 100, 'https://img.pokemondb.net/artwork/linoone.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/linoone.png', 264, 3), ('Wurmple', 'Bug', '', 195, 45, 45, 35, 20, 30, 20, 'https://img.pokemondb.net/artwork/wurmple.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wurmple.png', 265, 3), ('Silcoon', 'Bug', '', 205, 50, 35, 55, 25, 25, 15, 'https://img.pokemondb.net/artwork/silcoon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/silcoon.png', 266, 3), ('Beautifly', 'Bug', 'Flying', 395, 60, 70, 50, 100, 50, 65, 'https://img.pokemondb.net/artwork/beautifly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/beautifly.png', 267, 3), ('Cascoon', 'Bug', '', 205, 50, 35, 55, 25, 25, 15, 'https://img.pokemondb.net/artwork/cascoon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cascoon.png', 268, 3), ('Dustox', 'Bug', 'Poison', 385, 60, 50, 70, 50, 90, 65, 'https://img.pokemondb.net/artwork/dustox.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dustox.png', 269, 3), ('Lotad', 'Water', 'Grass', 220, 40, 30, 30, 40, 50, 30, 'https://img.pokemondb.net/artwork/lotad.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lotad.png', 270, 3), ('Lombre', 'Water', 'Grass', 340, 60, 50, 50, 60, 70, 50, 'https://img.pokemondb.net/artwork/lombre.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lombre.png', 271, 3), ('Ludicolo', 'Water', 'Grass', 480, 80, 70, 70, 90, 100, 70, 'https://img.pokemondb.net/artwork/ludicolo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ludicolo.png', 272, 3), ('Seedot', 'Grass', '', 220, 40, 40, 50, 30, 30, 30, 'https://img.pokemondb.net/artwork/seedot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/seedot.png', 273, 3), ('Nuzleaf', 'Grass', 'Dark', 340, 70, 70, 40, 60, 40, 60, 'https://img.pokemondb.net/artwork/nuzleaf.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nuzleaf.png', 274, 3), ('Shiftry', 'Grass', 'Dark', 480, 90, 100, 60, 90, 60, 80, 'https://img.pokemondb.net/artwork/shiftry.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shiftry.png', 275, 3); INSERT INTO `csv` (`name`, `type1`, `type2`, `total`, `hp`, `attack`, `defense`, `special_attack`, `special_defense`, `speed`, `image`, `icon`, `id`, `generation`) VALUES ('Taillow', 'Normal', 'Flying', 270, 40, 55, 30, 30, 30, 85, 'https://img.pokemondb.net/artwork/taillow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/taillow.png', 276, 3), ('Swellow', 'Normal', 'Flying', 455, 60, 85, 60, 75, 50, 125, 'https://img.pokemondb.net/artwork/swellow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swellow.png', 277, 3), ('Wingull', 'Water', 'Flying', 270, 40, 30, 30, 55, 30, 85, 'https://img.pokemondb.net/artwork/wingull.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wingull.png', 278, 3), ('Pelipper', 'Water', 'Flying', 440, 60, 50, 100, 95, 70, 65, 'https://img.pokemondb.net/artwork/pelipper.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pelipper.png', 279, 3), ('Ralts', 'Psychic', 'Fairy', 198, 28, 25, 25, 45, 35, 40, 'https://img.pokemondb.net/artwork/ralts.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ralts.png', 280, 3), ('Kirlia', 'Psychic', 'Fairy', 278, 38, 35, 35, 65, 55, 50, 'https://img.pokemondb.net/artwork/kirlia.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kirlia.png', 281, 3), ('Gardevoir', 'Psychic', 'Fairy', 518, 68, 65, 65, 125, 115, 80, 'https://img.pokemondb.net/artwork/gardevoir.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gardevoir.png', 282, 3), ('Surskit', 'Bug', 'Water', 269, 40, 30, 32, 50, 52, 65, 'https://img.pokemondb.net/artwork/surskit.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/surskit.png', 283, 3), ('Masquerain', 'Bug', 'Flying', 454, 70, 60, 62, 100, 82, 80, 'https://img.pokemondb.net/artwork/masquerain.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/masquerain.png', 284, 3), ('Shroomish', 'Grass', '', 295, 60, 40, 60, 40, 60, 35, 'https://img.pokemondb.net/artwork/shroomish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shroomish.png', 285, 3), ('Breloom', 'Grass', 'Fighting', 460, 60, 130, 80, 60, 60, 70, 'https://img.pokemondb.net/artwork/breloom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/breloom.png', 286, 3), ('Slakoth', 'Normal', '', 280, 60, 60, 60, 35, 35, 30, 'https://img.pokemondb.net/artwork/slakoth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slakoth.png', 287, 3), ('Vigoroth', 'Normal', '', 440, 80, 80, 80, 55, 55, 90, 'https://img.pokemondb.net/artwork/vigoroth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vigoroth.png', 288, 3), ('Slaking', 'Normal', '', 670, 150, 160, 100, 95, 65, 100, 'https://img.pokemondb.net/artwork/slaking.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slaking.png', 289, 3), ('Nincada', 'Bug', 'Ground', 266, 31, 45, 90, 30, 30, 40, 'https://img.pokemondb.net/artwork/nincada.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nincada.png', 290, 3), ('Ninjask', 'Bug', 'Flying', 456, 61, 90, 45, 50, 50, 160, 'https://img.pokemondb.net/artwork/ninjask.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ninjask.png', 291, 3), ('Shedinja', 'Bug', 'Ghost', 236, 1, 90, 45, 30, 30, 40, 'https://img.pokemondb.net/artwork/shedinja.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shedinja.png', 292, 3), ('Whismur', 'Normal', '', 240, 64, 51, 23, 51, 23, 28, 'https://img.pokemondb.net/artwork/whismur.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/whismur.png', 293, 3), ('Loudred', 'Normal', '', 360, 84, 71, 43, 71, 43, 48, 'https://img.pokemondb.net/artwork/loudred.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/loudred.png', 294, 3), ('Exploud', 'Normal', '', 490, 104, 91, 63, 91, 73, 68, 'https://img.pokemondb.net/artwork/exploud.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/exploud.png', 295, 3), ('Makuhita', 'Fighting', '', 237, 72, 60, 30, 20, 30, 25, 'https://img.pokemondb.net/artwork/makuhita.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/makuhita.png', 296, 3), ('Hariyama', 'Fighting', '', 474, 144, 120, 60, 40, 60, 50, 'https://img.pokemondb.net/artwork/hariyama.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hariyama.png', 297, 3), ('Azurill', 'Normal', 'Fairy', 190, 50, 20, 40, 20, 40, 20, 'https://img.pokemondb.net/artwork/azurill.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/azurill.png', 298, 3), ('Nosepass', 'Rock', '', 375, 30, 45, 135, 45, 90, 30, 'https://img.pokemondb.net/artwork/nosepass.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nosepass.png', 299, 3), ('Skitty', 'Normal', '', 260, 50, 45, 45, 35, 35, 50, 'https://img.pokemondb.net/artwork/skitty.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skitty.png', 300, 3), ('Delcatty', 'Normal', '', 400, 70, 65, 65, 55, 55, 90, 'https://img.pokemondb.net/artwork/delcatty.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/delcatty.png', 301, 3), ('Sableye', 'Dark', 'Ghost', 380, 50, 75, 75, 65, 65, 50, 'https://img.pokemondb.net/artwork/sableye.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sableye.png', 302, 3), ('Mawile', 'Steel', 'Fairy', 380, 50, 85, 85, 55, 55, 50, 'https://img.pokemondb.net/artwork/mawile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mawile.png', 303, 3), ('Aron', 'Steel', 'Rock', 330, 50, 70, 100, 40, 40, 30, 'https://img.pokemondb.net/artwork/aron.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aron.png', 304, 3), ('Lairon', 'Steel', 'Rock', 430, 60, 90, 140, 50, 50, 40, 'https://img.pokemondb.net/artwork/lairon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lairon.png', 305, 3), ('Aggron', 'Steel', 'Rock', 530, 70, 110, 180, 60, 60, 50, 'https://img.pokemondb.net/artwork/aggron.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aggron.png', 306, 3), ('Meditite', 'Fighting', 'Psychic', 280, 30, 40, 55, 40, 55, 60, 'https://img.pokemondb.net/artwork/meditite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/meditite.png', 307, 3), ('Medicham', 'Fighting', 'Psychic', 410, 60, 60, 75, 60, 75, 80, 'https://img.pokemondb.net/artwork/medicham.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/medicham.png', 308, 3), ('Electrike', 'Electric', '', 295, 40, 45, 40, 65, 40, 65, 'https://img.pokemondb.net/artwork/electrike.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/electrike.png', 309, 3), ('Manectric', 'Electric', '', 475, 70, 75, 60, 105, 60, 105, 'https://img.pokemondb.net/artwork/manectric.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/manectric.png', 310, 3), ('Plusle', 'Electric', '', 405, 60, 50, 40, 85, 75, 95, 'https://img.pokemondb.net/artwork/plusle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/plusle.png', 311, 3), ('Minun', 'Electric', '', 405, 60, 40, 50, 75, 85, 95, 'https://img.pokemondb.net/artwork/minun.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/minun.png', 312, 3), ('Volbeat', 'Bug', '', 430, 65, 73, 75, 47, 85, 85, 'https://img.pokemondb.net/artwork/volbeat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/volbeat.png', 313, 3), ('Illumise', 'Bug', '', 430, 65, 47, 75, 73, 85, 85, 'https://img.pokemondb.net/artwork/illumise.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/illumise.png', 314, 3), ('Roselia', 'Grass', 'Poison', 400, 50, 60, 45, 100, 80, 65, 'https://img.pokemondb.net/artwork/roselia.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/roselia.png', 315, 3), ('Gulpin', 'Poison', '', 302, 70, 43, 53, 43, 53, 40, 'https://img.pokemondb.net/artwork/gulpin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gulpin.png', 316, 3), ('Swalot', 'Poison', '', 467, 100, 73, 83, 73, 83, 55, 'https://img.pokemondb.net/artwork/swalot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swalot.png', 317, 3), ('Carvanha', 'Water', 'Dark', 305, 45, 90, 20, 65, 20, 65, 'https://img.pokemondb.net/artwork/carvanha.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/carvanha.png', 318, 3), ('Sharpedo', 'Water', 'Dark', 460, 70, 120, 40, 95, 40, 95, 'https://img.pokemondb.net/artwork/sharpedo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sharpedo.png', 319, 3), ('Wailmer', 'Water', '', 400, 130, 70, 35, 70, 35, 60, 'https://img.pokemondb.net/artwork/wailmer.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wailmer.png', 320, 3), ('Wailord', 'Water', '', 500, 170, 90, 45, 90, 45, 60, 'https://img.pokemondb.net/artwork/wailord.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wailord.png', 321, 3), ('Numel', 'Fire', 'Ground', 305, 60, 60, 40, 65, 45, 35, 'https://img.pokemondb.net/artwork/numel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/numel.png', 322, 3), ('Camerupt', 'Fire', 'Ground', 460, 70, 100, 70, 105, 75, 40, 'https://img.pokemondb.net/artwork/camerupt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/camerupt.png', 323, 3), ('Torkoal', 'Fire', '', 470, 70, 85, 140, 85, 70, 20, 'https://img.pokemondb.net/artwork/torkoal.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/torkoal.png', 324, 3), ('Spoink', 'Psychic', '', 330, 60, 25, 35, 70, 80, 60, 'https://img.pokemondb.net/artwork/spoink.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spoink.png', 325, 3), ('Grumpig', 'Psychic', '', 470, 80, 45, 65, 90, 110, 80, 'https://img.pokemondb.net/artwork/grumpig.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grumpig.png', 326, 3), ('Spinda', 'Normal', '', 360, 60, 60, 60, 60, 60, 60, 'https://img.pokemondb.net/artwork/spinda.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spinda.png', 327, 3), ('Trapinch', 'Ground', '', 290, 45, 100, 45, 45, 45, 10, 'https://img.pokemondb.net/artwork/trapinch.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/trapinch.png', 328, 3), ('Vibrava', 'Ground', 'Dragon', 340, 50, 70, 50, 50, 50, 70, 'https://img.pokemondb.net/artwork/vibrava.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vibrava.png', 329, 3), ('Flygon', 'Ground', 'Dragon', 520, 80, 100, 80, 80, 80, 100, 'https://img.pokemondb.net/artwork/flygon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/flygon.png', 330, 3), ('Cacnea', 'Grass', '', 335, 50, 85, 40, 85, 40, 35, 'https://img.pokemondb.net/artwork/cacnea.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cacnea.png', 331, 3), ('Cacturne', 'Grass', 'Dark', 475, 70, 115, 60, 115, 60, 55, 'https://img.pokemondb.net/artwork/cacturne.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cacturne.png', 332, 3), ('Swablu', 'Normal', 'Flying', 310, 45, 40, 60, 40, 75, 50, 'https://img.pokemondb.net/artwork/swablu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swablu.png', 333, 3), ('Altaria', 'Dragon', 'Flying', 490, 75, 70, 90, 70, 105, 80, 'https://img.pokemondb.net/artwork/altaria.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/altaria.png', 334, 3), ('Zangoose', 'Normal', '', 458, 73, 115, 60, 60, 60, 90, 'https://img.pokemondb.net/artwork/zangoose.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zangoose.png', 335, 3), ('Seviper', 'Poison', '', 458, 73, 100, 60, 100, 60, 65, 'https://img.pokemondb.net/artwork/seviper.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/seviper.png', 336, 3), ('Lunatone', 'Rock', 'Psychic', 460, 90, 55, 65, 95, 85, 70, 'https://img.pokemondb.net/artwork/lunatone.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lunatone.png', 337, 3), ('Solrock', 'Rock', 'Psychic', 460, 90, 95, 85, 55, 65, 70, 'https://img.pokemondb.net/artwork/solrock.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/solrock.png', 338, 3), ('Barboach', 'Water', 'Ground', 288, 50, 48, 43, 46, 41, 60, 'https://img.pokemondb.net/artwork/barboach.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/barboach.png', 339, 3), ('Whiscash', 'Water', 'Ground', 468, 110, 78, 73, 76, 71, 60, 'https://img.pokemondb.net/artwork/whiscash.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/whiscash.png', 340, 3), ('Corphish', 'Water', '', 308, 43, 80, 65, 50, 35, 35, 'https://img.pokemondb.net/artwork/corphish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/corphish.png', 341, 3), ('Crawdaunt', 'Water', 'Dark', 468, 63, 120, 85, 90, 55, 55, 'https://img.pokemondb.net/artwork/crawdaunt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/crawdaunt.png', 342, 3), ('Baltoy', 'Ground', 'Psychic', 300, 40, 40, 55, 40, 70, 55, 'https://img.pokemondb.net/artwork/baltoy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/baltoy.png', 343, 3), ('Claydol', 'Ground', 'Psychic', 500, 60, 70, 105, 70, 120, 75, 'https://img.pokemondb.net/artwork/claydol.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/claydol.png', 344, 3), ('Lileep', 'Rock', 'Grass', 355, 66, 41, 77, 61, 87, 23, 'https://img.pokemondb.net/artwork/lileep.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lileep.png', 345, 3), ('Cradily', 'Rock', 'Grass', 495, 86, 81, 97, 81, 107, 43, 'https://img.pokemondb.net/artwork/cradily.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cradily.png', 346, 3), ('Anorith', 'Rock', 'Bug', 355, 45, 95, 50, 40, 50, 75, 'https://img.pokemondb.net/artwork/anorith.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/anorith.png', 347, 3), ('Armaldo', 'Rock', 'Bug', 495, 75, 125, 100, 70, 80, 45, 'https://img.pokemondb.net/artwork/armaldo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/armaldo.png', 348, 3), ('Feebas', 'Water', '', 200, 20, 15, 20, 10, 55, 80, 'https://img.pokemondb.net/artwork/feebas.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/feebas.png', 349, 3), ('Milotic', 'Water', '', 540, 95, 60, 79, 100, 125, 81, 'https://img.pokemondb.net/artwork/milotic.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/milotic.png', 350, 3), ('Castform', 'Normal', '', 420, 70, 70, 70, 70, 70, 70, 'https://img.pokemondb.net/artwork/castform.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/castform.png', 351, 3), ('Kecleon', 'Normal', '', 440, 60, 90, 70, 60, 120, 40, 'https://img.pokemondb.net/artwork/kecleon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kecleon.png', 352, 3), ('Shuppet', 'Ghost', '', 295, 44, 75, 35, 63, 33, 45, 'https://img.pokemondb.net/artwork/shuppet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shuppet.png', 353, 3), ('Banette', 'Ghost', '', 455, 64, 115, 65, 83, 63, 65, 'https://img.pokemondb.net/artwork/banette.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/banette.png', 354, 3), ('Duskull', 'Ghost', '', 295, 20, 40, 90, 30, 90, 25, 'https://img.pokemondb.net/artwork/duskull.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/duskull.png', 355, 3), ('Dusclops', 'Ghost', '', 455, 40, 70, 130, 60, 130, 25, 'https://img.pokemondb.net/artwork/dusclops.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dusclops.png', 356, 3), ('Tropius', 'Grass', 'Flying', 460, 99, 68, 83, 72, 87, 51, 'https://img.pokemondb.net/artwork/tropius.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tropius.png', 357, 3), ('Chimecho', 'Psychic', '', 455, 75, 50, 80, 95, 90, 65, 'https://img.pokemondb.net/artwork/chimecho.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chimecho.png', 358, 3), ('Absol', 'Dark', '', 465, 65, 130, 60, 75, 60, 75, 'https://img.pokemondb.net/artwork/absol.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/absol.png', 359, 3), ('Wynaut', 'Psychic', '', 260, 95, 23, 48, 23, 48, 23, 'https://img.pokemondb.net/artwork/wynaut.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wynaut.png', 360, 3), ('Snorunt', 'Ice', '', 300, 50, 50, 50, 50, 50, 50, 'https://img.pokemondb.net/artwork/snorunt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/snorunt.png', 361, 3), ('Glalie', 'Ice', '', 480, 80, 80, 80, 80, 80, 80, 'https://img.pokemondb.net/artwork/glalie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/glalie.png', 362, 3), ('Spheal', 'Ice', 'Water', 290, 70, 40, 50, 55, 50, 25, 'https://img.pokemondb.net/artwork/spheal.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spheal.png', 363, 3), ('Sealeo', 'Ice', 'Water', 410, 90, 60, 70, 75, 70, 45, 'https://img.pokemondb.net/artwork/sealeo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sealeo.png', 364, 3), ('Walrein', 'Ice', 'Water', 530, 110, 80, 90, 95, 90, 65, 'https://img.pokemondb.net/artwork/walrein.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/walrein.png', 365, 3), ('Clamperl', 'Water', '', 345, 35, 64, 85, 74, 55, 32, 'https://img.pokemondb.net/artwork/clamperl.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/clamperl.png', 366, 3), ('Huntail', 'Water', '', 485, 55, 104, 105, 94, 75, 52, 'https://img.pokemondb.net/artwork/huntail.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/huntail.png', 367, 3), ('Gorebyss', 'Water', '', 485, 55, 84, 105, 114, 75, 52, 'https://img.pokemondb.net/artwork/gorebyss.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gorebyss.png', 368, 3), ('Relicanth', 'Water', 'Rock', 485, 100, 90, 130, 45, 65, 55, 'https://img.pokemondb.net/artwork/relicanth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/relicanth.png', 369, 3), ('Luvdisc', 'Water', '', 330, 43, 30, 55, 40, 65, 97, 'https://img.pokemondb.net/artwork/luvdisc.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/luvdisc.png', 370, 3), ('Bagon', 'Dragon', '', 300, 45, 75, 60, 40, 30, 50, 'https://img.pokemondb.net/artwork/bagon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bagon.png', 371, 3), ('Shelgon', 'Dragon', '', 420, 65, 95, 100, 60, 50, 50, 'https://img.pokemondb.net/artwork/shelgon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shelgon.png', 372, 3), ('Salamence', 'Dragon', 'Flying', 600, 95, 135, 80, 110, 80, 100, 'https://img.pokemondb.net/artwork/salamence.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/salamence.png', 373, 3), ('Beldum', 'Steel', 'Psychic', 300, 40, 55, 80, 35, 60, 30, 'https://img.pokemondb.net/artwork/beldum.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/beldum.png', 374, 3), ('Metang', 'Steel', 'Psychic', 420, 60, 75, 100, 55, 80, 50, 'https://img.pokemondb.net/artwork/metang.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/metang.png', 375, 3), ('Metagross', 'Steel', 'Psychic', 600, 80, 135, 130, 95, 90, 70, 'https://img.pokemondb.net/artwork/metagross.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/metagross.png', 376, 3), ('Regirock', 'Rock', '', 580, 80, 100, 200, 50, 100, 50, 'https://img.pokemondb.net/artwork/regirock.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/regirock.png', 377, 3), ('Regice', 'Ice', '', 580, 80, 50, 100, 100, 200, 50, 'https://img.pokemondb.net/artwork/regice.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/regice.png', 378, 3), ('Registeel', 'Steel', '', 580, 80, 75, 150, 75, 150, 50, 'https://img.pokemondb.net/artwork/registeel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/registeel.png', 379, 3), ('Latias', 'Dragon', 'Psychic', 600, 80, 80, 90, 110, 130, 110, 'https://img.pokemondb.net/artwork/latias.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/latias.png', 380, 3), ('Latios', 'Dragon', 'Psychic', 600, 80, 90, 80, 130, 110, 110, 'https://img.pokemondb.net/artwork/latios.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/latios.png', 381, 3), ('Kyogre', 'Water', '', 670, 100, 100, 90, 150, 140, 90, 'https://img.pokemondb.net/artwork/kyogre.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kyogre.png', 382, 3), ('Groudon', 'Ground', '', 670, 100, 150, 140, 100, 90, 90, 'https://img.pokemondb.net/artwork/groudon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/groudon.png', 383, 3), ('Rayquaza', 'Dragon', 'Flying', 680, 105, 150, 90, 150, 90, 95, 'https://img.pokemondb.net/artwork/rayquaza.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rayquaza.png', 384, 3), ('Jirachi', 'Steel', 'Psychic', 600, 100, 100, 100, 100, 100, 100, 'https://img.pokemondb.net/artwork/jirachi.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jirachi.png', 385, 3), ('Deoxys', 'Psychic', '', 600, 50, 150, 50, 150, 50, 150, 'https://img.pokemondb.net/artwork/deoxys.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/deoxys-normal.png', 386, 3), ('Turtwig', 'Grass', '', 318, 55, 68, 64, 45, 55, 31, 'https://img.pokemondb.net/artwork/turtwig.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/turtwig.png', 387, 4), ('Grotle', 'Grass', '', 405, 75, 89, 85, 55, 65, 36, 'https://img.pokemondb.net/artwork/grotle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grotle.png', 388, 4), ('Torterra', 'Grass', 'Ground', 525, 95, 109, 105, 75, 85, 56, 'https://img.pokemondb.net/artwork/torterra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/torterra.png', 389, 4), ('Chimchar', 'Fire', '', 309, 44, 58, 44, 58, 44, 61, 'https://img.pokemondb.net/artwork/chimchar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chimchar.png', 390, 4), ('Monferno', 'Fire', 'Fighting', 405, 64, 78, 52, 78, 52, 81, 'https://img.pokemondb.net/artwork/monferno.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/monferno.png', 391, 4), ('Infernape', 'Fire', 'Fighting', 534, 76, 104, 71, 104, 71, 108, 'https://img.pokemondb.net/artwork/infernape.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/infernape.png', 392, 4), ('Piplup', 'Water', '', 314, 53, 51, 53, 61, 56, 40, 'https://img.pokemondb.net/artwork/piplup.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/piplup.png', 393, 4), ('Prinplup', 'Water', '', 405, 64, 66, 68, 81, 76, 50, 'https://img.pokemondb.net/artwork/prinplup.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/prinplup.png', 394, 4), ('Empoleon', 'Water', 'Steel', 530, 84, 86, 88, 111, 101, 60, 'https://img.pokemondb.net/artwork/empoleon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/empoleon.png', 395, 4), ('Starly', 'Normal', 'Flying', 245, 40, 55, 30, 30, 30, 60, 'https://img.pokemondb.net/artwork/starly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/starly.png', 396, 4), ('Staravia', 'Normal', 'Flying', 340, 55, 75, 50, 40, 40, 80, 'https://img.pokemondb.net/artwork/staravia.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/staravia.png', 397, 4), ('Staraptor', 'Normal', 'Flying', 485, 85, 120, 70, 50, 60, 100, 'https://img.pokemondb.net/artwork/staraptor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/staraptor.png', 398, 4), ('Bidoof', 'Normal', '', 250, 59, 45, 40, 35, 40, 31, 'https://img.pokemondb.net/artwork/bidoof.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bidoof.png', 399, 4), ('Bibarel', 'Normal', 'Water', 410, 79, 85, 60, 55, 60, 71, 'https://img.pokemondb.net/artwork/bibarel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bibarel.png', 400, 4), ('Kricketot', 'Bug', '', 194, 37, 25, 41, 25, 41, 25, 'https://img.pokemondb.net/artwork/kricketot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kricketot.png', 401, 4), ('Kricketune', 'Bug', '', 384, 77, 85, 51, 55, 51, 65, 'https://img.pokemondb.net/artwork/kricketune.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kricketune.png', 402, 4), ('Shinx', 'Electric', '', 263, 45, 65, 34, 40, 34, 45, 'https://img.pokemondb.net/artwork/shinx.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shinx.png', 403, 4), ('Luxio', 'Electric', '', 363, 60, 85, 49, 60, 49, 60, 'https://img.pokemondb.net/artwork/luxio.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/luxio.png', 404, 4), ('Luxray', 'Electric', '', 523, 80, 120, 79, 95, 79, 70, 'https://img.pokemondb.net/artwork/luxray.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/luxray.png', 405, 4), ('Budew', 'Grass', 'Poison', 280, 40, 30, 35, 50, 70, 55, 'https://img.pokemondb.net/artwork/budew.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/budew.png', 406, 4), ('Roserade', 'Grass', 'Poison', 515, 60, 70, 65, 125, 105, 90, 'https://img.pokemondb.net/artwork/roserade.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/roserade.png', 407, 4), ('Cranidos', 'Rock', '', 350, 67, 125, 40, 30, 30, 58, 'https://img.pokemondb.net/artwork/cranidos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cranidos.png', 408, 4), ('Rampardos', 'Rock', '', 495, 97, 165, 60, 65, 50, 58, 'https://img.pokemondb.net/artwork/rampardos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rampardos.png', 409, 4), ('Shieldon', 'Rock', 'Steel', 350, 30, 42, 118, 42, 88, 30, 'https://img.pokemondb.net/artwork/shieldon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shieldon.png', 410, 4), ('Bastiodon', 'Rock', 'Steel', 495, 60, 52, 168, 47, 138, 30, 'https://img.pokemondb.net/artwork/bastiodon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bastiodon.png', 411, 4), ('Burmy', 'Bug', '', 224, 40, 29, 45, 29, 45, 36, 'https://img.pokemondb.net/artwork/burmy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/burmy.png', 412, 4), ('Wormadam', 'Bug', 'Grass', 424, 60, 59, 85, 79, 105, 36, 'https://img.pokemondb.net/artwork/wormadam.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wormadam-plant.png', 413, 4), ('Mothim', 'Bug', 'Flying', 424, 70, 94, 50, 94, 50, 66, 'https://img.pokemondb.net/artwork/mothim.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mothim.png', 414, 4), ('Combee', 'Bug', 'Flying', 244, 30, 30, 42, 30, 42, 70, 'https://img.pokemondb.net/artwork/combee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/combee.png', 415, 4), ('Vespiquen', 'Bug', 'Flying', 474, 70, 80, 102, 80, 102, 40, 'https://img.pokemondb.net/artwork/vespiquen.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vespiquen.png', 416, 4), ('Pachirisu', 'Electric', '', 405, 60, 45, 70, 45, 90, 95, 'https://img.pokemondb.net/artwork/pachirisu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pachirisu.png', 417, 4), ('Buizel', 'Water', '', 330, 55, 65, 35, 60, 30, 85, 'https://img.pokemondb.net/artwork/buizel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/buizel.png', 418, 4), ('Floatzel', 'Water', '', 495, 85, 105, 55, 85, 50, 115, 'https://img.pokemondb.net/artwork/floatzel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/floatzel.png', 419, 4), ('Cherubi', 'Grass', '', 275, 45, 35, 45, 62, 53, 35, 'https://img.pokemondb.net/artwork/cherubi.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cherubi.png', 420, 4), ('Cherrim', 'Grass', '', 450, 70, 60, 70, 87, 78, 85, 'https://img.pokemondb.net/artwork/cherrim.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cherrim.png', 421, 4), ('Shellos', 'Water', '', 325, 76, 48, 48, 57, 62, 34, 'https://img.pokemondb.net/artwork/shellos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shellos.png', 422, 4), ('Gastrodon', 'Water', 'Ground', 475, 111, 83, 68, 92, 82, 39, 'https://img.pokemondb.net/artwork/gastrodon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gastrodon.png', 423, 4), ('Ambipom', 'Normal', '', 482, 75, 100, 66, 60, 66, 115, 'https://img.pokemondb.net/artwork/ambipom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ambipom.png', 424, 4), ('Drifloon', 'Ghost', 'Flying', 348, 90, 50, 34, 60, 44, 70, 'https://img.pokemondb.net/artwork/drifloon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drifloon.png', 425, 4), ('Drifblim', 'Ghost', 'Flying', 498, 150, 80, 44, 90, 54, 80, 'https://img.pokemondb.net/artwork/drifblim.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drifblim.png', 426, 4), ('Buneary', 'Normal', '', 350, 55, 66, 44, 44, 56, 85, 'https://img.pokemondb.net/artwork/buneary.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/buneary.png', 427, 4), ('Lopunny', 'Normal', '', 480, 65, 76, 84, 54, 96, 105, 'https://img.pokemondb.net/artwork/lopunny.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lopunny.png', 428, 4), ('Mismagius', 'Ghost', '', 495, 60, 60, 60, 105, 105, 105, 'https://img.pokemondb.net/artwork/mismagius.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mismagius.png', 429, 4), ('Honchkrow', 'Dark', 'Flying', 505, 100, 125, 52, 105, 52, 71, 'https://img.pokemondb.net/artwork/honchkrow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/honchkrow.png', 430, 4), ('Glameow', 'Normal', '', 310, 49, 55, 42, 42, 37, 85, 'https://img.pokemondb.net/artwork/glameow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/glameow.png', 431, 4), ('Purugly', 'Normal', '', 452, 71, 82, 64, 64, 59, 112, 'https://img.pokemondb.net/artwork/purugly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/purugly.png', 432, 4), ('Chingling', 'Psychic', '', 285, 45, 30, 50, 65, 50, 45, 'https://img.pokemondb.net/artwork/chingling.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chingling.png', 433, 4), ('Stunky', 'Poison', 'Dark', 329, 63, 63, 47, 41, 41, 74, 'https://img.pokemondb.net/artwork/stunky.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stunky.png', 434, 4), ('Skuntank', 'Poison', 'Dark', 479, 103, 93, 67, 71, 61, 84, 'https://img.pokemondb.net/artwork/skuntank.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skuntank.png', 435, 4), ('Bronzor', 'Steel', 'Psychic', 300, 57, 24, 86, 24, 86, 23, 'https://img.pokemondb.net/artwork/bronzor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bronzor.png', 436, 4), ('Bronzong', 'Steel', 'Psychic', 500, 67, 89, 116, 79, 116, 33, 'https://img.pokemondb.net/artwork/bronzong.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bronzong.png', 437, 4), ('Bonsly', 'Rock', '', 290, 50, 80, 95, 10, 45, 10, 'https://img.pokemondb.net/artwork/bonsly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bonsly.png', 438, 4), ('Mime Jr.', 'Psychic', 'Fairy', 310, 20, 25, 45, 70, 90, 60, 'https://img.pokemondb.net/artwork/mime-jr.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mime-jr.png', 439, 4), ('Happiny', 'Normal', '', 220, 100, 5, 5, 15, 65, 30, 'https://img.pokemondb.net/artwork/happiny.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/happiny.png', 440, 4), ('Chatot', 'Normal', 'Flying', 411, 76, 65, 45, 92, 42, 91, 'https://img.pokemondb.net/artwork/chatot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chatot.png', 441, 4), ('Spiritomb', 'Ghost', 'Dark', 485, 50, 92, 108, 92, 108, 35, 'https://img.pokemondb.net/artwork/spiritomb.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spiritomb.png', 442, 4), ('Gible', 'Dragon', 'Ground', 300, 58, 70, 45, 40, 45, 42, 'https://img.pokemondb.net/artwork/gible.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gible.png', 443, 4), ('Gabite', 'Dragon', 'Ground', 410, 68, 90, 65, 50, 55, 82, 'https://img.pokemondb.net/artwork/gabite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gabite.png', 444, 4), ('Garchomp', 'Dragon', 'Ground', 600, 108, 130, 95, 80, 85, 102, 'https://img.pokemondb.net/artwork/garchomp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/garchomp.png', 445, 4), ('Munchlax', 'Normal', '', 390, 135, 85, 40, 40, 85, 5, 'https://img.pokemondb.net/artwork/munchlax.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/munchlax.png', 446, 4), ('Riolu', 'Fighting', '', 285, 40, 70, 40, 35, 40, 60, 'https://img.pokemondb.net/artwork/riolu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/riolu.png', 447, 4), ('Lucario', 'Fighting', 'Steel', 525, 70, 110, 70, 115, 70, 90, 'https://img.pokemondb.net/artwork/lucario.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lucario.png', 448, 4), ('Hippopotas', 'Ground', '', 330, 68, 72, 78, 38, 42, 32, 'https://img.pokemondb.net/artwork/hippopotas.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hippopotas.png', 449, 4), ('Hippowdon', 'Ground', '', 525, 108, 112, 118, 68, 72, 47, 'https://img.pokemondb.net/artwork/hippowdon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hippowdon.png', 450, 4), ('Skorupi', 'Poison', 'Bug', 330, 40, 50, 90, 30, 55, 65, 'https://img.pokemondb.net/artwork/skorupi.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skorupi.png', 451, 4), ('Drapion', 'Poison', 'Dark', 500, 70, 90, 110, 60, 75, 95, 'https://img.pokemondb.net/artwork/drapion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drapion.png', 452, 4), ('Croagunk', 'Poison', 'Fighting', 300, 48, 61, 40, 61, 40, 50, 'https://img.pokemondb.net/artwork/croagunk.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/croagunk.png', 453, 4), ('Toxicroak', 'Poison', 'Fighting', 490, 83, 106, 65, 86, 65, 85, 'https://img.pokemondb.net/artwork/toxicroak.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/toxicroak.png', 454, 4), ('Carnivine', 'Grass', '', 454, 74, 100, 72, 90, 72, 46, 'https://img.pokemondb.net/artwork/carnivine.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/carnivine.png', 455, 4), ('Finneon', 'Water', '', 330, 49, 49, 56, 49, 61, 66, 'https://img.pokemondb.net/artwork/finneon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/finneon.png', 456, 4), ('Lumineon', 'Water', '', 460, 69, 69, 76, 69, 86, 91, 'https://img.pokemondb.net/artwork/lumineon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lumineon.png', 457, 4), ('Mantyke', 'Water', 'Flying', 345, 45, 20, 50, 60, 120, 50, 'https://img.pokemondb.net/artwork/mantyke.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mantyke.png', 458, 4), ('Snover', 'Grass', 'Ice', 334, 60, 62, 50, 62, 60, 40, 'https://img.pokemondb.net/artwork/snover.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/snover.png', 459, 4), ('Abomasnow', 'Grass', 'Ice', 494, 90, 92, 75, 92, 85, 60, 'https://img.pokemondb.net/artwork/abomasnow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/abomasnow.png', 460, 4), ('Weavile', 'Dark', 'Ice', 510, 70, 120, 65, 45, 85, 125, 'https://img.pokemondb.net/artwork/weavile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/weavile.png', 461, 4), ('Magnezone', 'Electric', 'Steel', 535, 70, 70, 115, 130, 90, 60, 'https://img.pokemondb.net/artwork/magnezone.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magnezone.png', 462, 4), ('Lickilicky', 'Normal', '', 515, 110, 85, 95, 80, 95, 50, 'https://img.pokemondb.net/artwork/lickilicky.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lickilicky.png', 463, 4), ('Rhyperior', 'Ground', 'Rock', 535, 115, 140, 130, 55, 55, 40, 'https://img.pokemondb.net/artwork/rhyperior.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rhyperior.png', 464, 4), ('Tangrowth', 'Grass', '', 535, 100, 100, 125, 110, 50, 50, 'https://img.pokemondb.net/artwork/tangrowth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tangrowth.png', 465, 4), ('Electivire', 'Electric', '', 540, 75, 123, 67, 95, 85, 95, 'https://img.pokemondb.net/artwork/electivire.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/electivire.png', 466, 4), ('Magmortar', 'Fire', '', 540, 75, 95, 67, 125, 95, 83, 'https://img.pokemondb.net/artwork/magmortar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magmortar.png', 467, 4), ('Togekiss', 'Fairy', 'Flying', 545, 85, 50, 95, 120, 115, 80, 'https://img.pokemondb.net/artwork/togekiss.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/togekiss.png', 468, 4), ('Yanmega', 'Bug', 'Flying', 515, 86, 76, 86, 116, 56, 95, 'https://img.pokemondb.net/artwork/yanmega.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/yanmega.png', 469, 4), ('Leafeon', 'Grass', '', 525, 65, 110, 130, 60, 65, 95, 'https://img.pokemondb.net/artwork/leafeon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/leafeon.png', 470, 4), ('Glaceon', 'Ice', '', 525, 65, 60, 110, 130, 95, 65, 'https://img.pokemondb.net/artwork/glaceon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/glaceon.png', 471, 4), ('Gliscor', 'Ground', 'Flying', 510, 75, 95, 125, 45, 75, 95, 'https://img.pokemondb.net/artwork/gliscor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gliscor.png', 472, 4), ('Mamoswine', 'Ice', 'Ground', 530, 110, 130, 80, 70, 60, 80, 'https://img.pokemondb.net/artwork/mamoswine.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mamoswine.png', 473, 4), ('Porygon-Z', 'Normal', '', 535, 85, 80, 70, 135, 75, 90, 'https://img.pokemondb.net/artwork/porygon-z.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/porygon-z.png', 474, 4), ('Gallade', 'Psychic', 'Fighting', 518, 68, 125, 65, 65, 115, 80, 'https://img.pokemondb.net/artwork/gallade.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gallade.png', 475, 4), ('Probopass', 'Rock', 'Steel', 525, 60, 55, 145, 75, 150, 40, 'https://img.pokemondb.net/artwork/probopass.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/probopass.png', 476, 4), ('Dusknoir', 'Ghost', '', 525, 45, 100, 135, 65, 135, 45, 'https://img.pokemondb.net/artwork/dusknoir.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dusknoir.png', 477, 4), ('Froslass', 'Ice', 'Ghost', 480, 70, 80, 70, 80, 70, 110, 'https://img.pokemondb.net/artwork/froslass.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/froslass.png', 478, 4), ('Rotom', 'Electric', 'Ghost', 440, 50, 50, 77, 95, 77, 91, 'https://img.pokemondb.net/artwork/rotom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rotom.png', 479, 4), ('Uxie', 'Psychic', '', 580, 75, 75, 130, 75, 130, 95, 'https://img.pokemondb.net/artwork/uxie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/uxie.png', 480, 4), ('Mesprit', 'Psychic', '', 580, 80, 105, 105, 105, 105, 80, 'https://img.pokemondb.net/artwork/mesprit.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mesprit.png', 481, 4), ('Azelf', 'Psychic', '', 580, 75, 125, 70, 125, 70, 115, 'https://img.pokemondb.net/artwork/azelf.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/azelf.png', 482, 4), ('Dialga', 'Steel', 'Dragon', 680, 100, 120, 120, 150, 100, 90, 'https://img.pokemondb.net/artwork/dialga.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dialga.png', 483, 4), ('Palkia', 'Water', 'Dragon', 680, 90, 120, 100, 150, 120, 100, 'https://img.pokemondb.net/artwork/palkia.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/palkia.png', 484, 4), ('Heatran', 'Fire', 'Steel', 600, 91, 90, 106, 130, 106, 77, 'https://img.pokemondb.net/artwork/heatran.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/heatran.png', 485, 4), ('Regigigas', 'Normal', '', 670, 110, 160, 110, 80, 110, 100, 'https://img.pokemondb.net/artwork/regigigas.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/regigigas.png', 486, 4), ('Giratina', 'Ghost', 'Dragon', 680, 150, 100, 120, 100, 120, 90, 'https://img.pokemondb.net/artwork/giratina.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/giratina-altered.png', 487, 4), ('Cresselia', 'Psychic', '', 600, 120, 70, 120, 75, 130, 85, 'https://img.pokemondb.net/artwork/cresselia.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cresselia.png', 488, 4), ('Phione', 'Water', '', 480, 80, 80, 80, 80, 80, 80, 'https://img.pokemondb.net/artwork/phione.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/phione.png', 489, 4), ('Manaphy', 'Water', '', 600, 100, 100, 100, 100, 100, 100, 'https://img.pokemondb.net/artwork/manaphy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/manaphy.png', 490, 4), ('Darkrai', 'Dark', '', 600, 70, 90, 90, 135, 90, 125, 'https://img.pokemondb.net/artwork/darkrai.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/darkrai.png', 491, 4), ('Shaymin', 'Grass', '', 600, 100, 100, 100, 100, 100, 100, 'https://img.pokemondb.net/artwork/shaymin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shaymin-land.png', 492, 4), ('Arceus', 'Normal', '', 720, 120, 120, 120, 120, 120, 120, 'https://img.pokemondb.net/artwork/arceus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/arceus.png', 493, 4), ('Victini', 'Psychic', 'Fire', 600, 100, 100, 100, 100, 100, 100, 'https://img.pokemondb.net/artwork/victini.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/victini.png', 494, 5), ('Snivy', 'Grass', '', 308, 45, 45, 55, 45, 55, 63, 'https://img.pokemondb.net/artwork/snivy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/snivy.png', 495, 5), ('Servine', 'Grass', '', 413, 60, 60, 75, 60, 75, 83, 'https://img.pokemondb.net/artwork/servine.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/servine.png', 496, 5), ('Serperior', 'Grass', '', 528, 75, 75, 95, 75, 95, 113, 'https://img.pokemondb.net/artwork/serperior.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/serperior.png', 497, 5), ('Tepig', 'Fire', '', 308, 65, 63, 45, 45, 45, 45, 'https://img.pokemondb.net/artwork/tepig.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tepig.png', 498, 5), ('Pignite', 'Fire', 'Fighting', 418, 90, 93, 55, 70, 55, 55, 'https://img.pokemondb.net/artwork/pignite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pignite.png', 499, 5), ('Emboar', 'Fire', 'Fighting', 528, 110, 123, 65, 100, 65, 65, 'https://img.pokemondb.net/artwork/emboar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/emboar.png', 500, 5), ('Oshawott', 'Water', '', 308, 55, 55, 45, 63, 45, 45, 'https://img.pokemondb.net/artwork/oshawott.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/oshawott.png', 501, 5), ('Dewott', 'Water', '', 413, 75, 75, 60, 83, 60, 60, 'https://img.pokemondb.net/artwork/dewott.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dewott.png', 502, 5), ('Samurott', 'Water', '', 528, 95, 100, 85, 108, 70, 70, 'https://img.pokemondb.net/artwork/samurott.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/samurott.png', 503, 5), ('Patrat', 'Normal', '', 255, 45, 55, 39, 35, 39, 42, 'https://img.pokemondb.net/artwork/patrat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/patrat.png', 504, 5), ('Watchog', 'Normal', '', 420, 60, 85, 69, 60, 69, 77, 'https://img.pokemondb.net/artwork/watchog.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/watchog.png', 505, 5), ('Lillipup', 'Normal', '', 275, 45, 60, 45, 25, 45, 55, 'https://img.pokemondb.net/artwork/lillipup.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lillipup.png', 506, 5), ('Herdier', 'Normal', '', 370, 65, 80, 65, 35, 65, 60, 'https://img.pokemondb.net/artwork/herdier.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/herdier.png', 507, 5), ('Stoutland', 'Normal', '', 500, 85, 110, 90, 45, 90, 80, 'https://img.pokemondb.net/artwork/stoutland.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stoutland.png', 508, 5), ('Purrloin', 'Dark', '', 281, 41, 50, 37, 50, 37, 66, 'https://img.pokemondb.net/artwork/purrloin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/purrloin.png', 509, 5), ('Liepard', 'Dark', '', 446, 64, 88, 50, 88, 50, 106, 'https://img.pokemondb.net/artwork/liepard.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/liepard.png', 510, 5), ('Pansage', 'Grass', '', 316, 50, 53, 48, 53, 48, 64, 'https://img.pokemondb.net/artwork/pansage.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pansage.png', 511, 5), ('Simisage', 'Grass', '', 498, 75, 98, 63, 98, 63, 101, 'https://img.pokemondb.net/artwork/simisage.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/simisage.png', 512, 5), ('Pansear', 'Fire', '', 316, 50, 53, 48, 53, 48, 64, 'https://img.pokemondb.net/artwork/pansear.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pansear.png', 513, 5), ('Simisear', 'Fire', '', 498, 75, 98, 63, 98, 63, 101, 'https://img.pokemondb.net/artwork/simisear.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/simisear.png', 514, 5), ('Panpour', 'Water', '', 316, 50, 53, 48, 53, 48, 64, 'https://img.pokemondb.net/artwork/panpour.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/panpour.png', 515, 5), ('Simipour', 'Water', '', 498, 75, 98, 63, 98, 63, 101, 'https://img.pokemondb.net/artwork/simipour.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/simipour.png', 516, 5), ('Munna', 'Psychic', '', 292, 76, 25, 45, 67, 55, 24, 'https://img.pokemondb.net/artwork/munna.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/munna.png', 517, 5), ('Musharna', 'Psychic', '', 487, 116, 55, 85, 107, 95, 29, 'https://img.pokemondb.net/artwork/musharna.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/musharna.png', 518, 5), ('Pidove', 'Normal', 'Flying', 264, 50, 55, 50, 36, 30, 43, 'https://img.pokemondb.net/artwork/pidove.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pidove.png', 519, 5), ('Tranquill', 'Normal', 'Flying', 358, 62, 77, 62, 50, 42, 65, 'https://img.pokemondb.net/artwork/tranquill.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tranquill.png', 520, 5), ('Unfezant', 'Normal', 'Flying', 488, 80, 115, 80, 65, 55, 93, 'https://img.pokemondb.net/artwork/unfezant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/unfezant.png', 521, 5), ('Blitzle', 'Electric', '', 295, 45, 60, 32, 50, 32, 76, 'https://img.pokemondb.net/artwork/blitzle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/blitzle.png', 522, 5), ('Zebstrika', 'Electric', '', 497, 75, 100, 63, 80, 63, 116, 'https://img.pokemondb.net/artwork/zebstrika.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zebstrika.png', 523, 5), ('Roggenrola', 'Rock', '', 280, 55, 75, 85, 25, 25, 15, 'https://img.pokemondb.net/artwork/roggenrola.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/roggenrola.png', 524, 5), ('Boldore', 'Rock', '', 390, 70, 105, 105, 50, 40, 20, 'https://img.pokemondb.net/artwork/boldore.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/boldore.png', 525, 5), ('Gigalith', 'Rock', '', 515, 85, 135, 130, 60, 80, 25, 'https://img.pokemondb.net/artwork/gigalith.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gigalith.png', 526, 5), ('Woobat', 'Psychic', 'Flying', 323, 65, 45, 43, 55, 43, 72, 'https://img.pokemondb.net/artwork/woobat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/woobat.png', 527, 5), ('Swoobat', 'Psychic', 'Flying', 425, 67, 57, 55, 77, 55, 114, 'https://img.pokemondb.net/artwork/swoobat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swoobat.png', 528, 5), ('Drilbur', 'Ground', '', 328, 60, 85, 40, 30, 45, 68, 'https://img.pokemondb.net/artwork/drilbur.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drilbur.png', 529, 5), ('Excadrill', 'Ground', 'Steel', 508, 110, 135, 60, 50, 65, 88, 'https://img.pokemondb.net/artwork/excadrill.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/excadrill.png', 530, 5), ('Audino', 'Normal', '', 445, 103, 60, 86, 60, 86, 50, 'https://img.pokemondb.net/artwork/audino.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/audino.png', 531, 5), ('Timburr', 'Fighting', '', 305, 75, 80, 55, 25, 35, 35, 'https://img.pokemondb.net/artwork/timburr.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/timburr.png', 532, 5), ('Gurdurr', 'Fighting', '', 405, 85, 105, 85, 40, 50, 40, 'https://img.pokemondb.net/artwork/gurdurr.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gurdurr.png', 533, 5), ('Conkeldurr', 'Fighting', '', 505, 105, 140, 95, 55, 65, 45, 'https://img.pokemondb.net/artwork/conkeldurr.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/conkeldurr.png', 534, 5), ('Tympole', 'Water', '', 294, 50, 50, 40, 50, 40, 64, 'https://img.pokemondb.net/artwork/tympole.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tympole.png', 535, 5), ('Palpitoad', 'Water', 'Ground', 384, 75, 65, 55, 65, 55, 69, 'https://img.pokemondb.net/artwork/palpitoad.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/palpitoad.png', 536, 5), ('Seismitoad', 'Water', 'Ground', 509, 105, 95, 75, 85, 75, 74, 'https://img.pokemondb.net/artwork/seismitoad.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/seismitoad.png', 537, 5), ('Throh', 'Fighting', '', 465, 120, 100, 85, 30, 85, 45, 'https://img.pokemondb.net/artwork/throh.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/throh.png', 538, 5), ('Sawk', 'Fighting', '', 465, 75, 125, 75, 30, 75, 85, 'https://img.pokemondb.net/artwork/sawk.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sawk.png', 539, 5), ('Sewaddle', 'Bug', 'Grass', 310, 45, 53, 70, 40, 60, 42, 'https://img.pokemondb.net/artwork/sewaddle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sewaddle.png', 540, 5), ('Swadloon', 'Bug', 'Grass', 380, 55, 63, 90, 50, 80, 42, 'https://img.pokemondb.net/artwork/swadloon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swadloon.png', 541, 5), ('Leavanny', 'Bug', 'Grass', 500, 75, 103, 80, 70, 80, 92, 'https://img.pokemondb.net/artwork/leavanny.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/leavanny.png', 542, 5), ('Venipede', 'Bug', 'Poison', 260, 30, 45, 59, 30, 39, 57, 'https://img.pokemondb.net/artwork/venipede.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/venipede.png', 543, 5), ('Whirlipede', 'Bug', 'Poison', 360, 40, 55, 99, 40, 79, 47, 'https://img.pokemondb.net/artwork/whirlipede.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/whirlipede.png', 544, 5), ('Scolipede', 'Bug', 'Poison', 485, 60, 100, 89, 55, 69, 112, 'https://img.pokemondb.net/artwork/scolipede.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scolipede.png', 545, 5), ('Cottonee', 'Grass', 'Fairy', 280, 40, 27, 60, 37, 50, 66, 'https://img.pokemondb.net/artwork/cottonee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cottonee.png', 546, 5), ('Whimsicott', 'Grass', 'Fairy', 480, 60, 67, 85, 77, 75, 116, 'https://img.pokemondb.net/artwork/whimsicott.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/whimsicott.png', 547, 5), ('Petilil', 'Grass', '', 280, 45, 35, 50, 70, 50, 30, 'https://img.pokemondb.net/artwork/petilil.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/petilil.png', 548, 5); INSERT INTO `csv` (`name`, `type1`, `type2`, `total`, `hp`, `attack`, `defense`, `special_attack`, `special_defense`, `speed`, `image`, `icon`, `id`, `generation`) VALUES ('Lilligant', 'Grass', '', 480, 70, 60, 75, 110, 75, 90, 'https://img.pokemondb.net/artwork/lilligant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lilligant.png', 549, 5), ('Basculin', 'Water', '', 460, 70, 92, 65, 80, 55, 98, 'https://img.pokemondb.net/artwork/basculin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/basculin-red-striped.png', 550, 5), ('Sandile', 'Ground', 'Dark', 292, 50, 72, 35, 35, 35, 65, 'https://img.pokemondb.net/artwork/sandile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sandile.png', 551, 5), ('Krokorok', 'Ground', 'Dark', 351, 60, 82, 45, 45, 45, 74, 'https://img.pokemondb.net/artwork/krokorok.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/krokorok.png', 552, 5), ('Krookodile', 'Ground', 'Dark', 519, 95, 117, 80, 65, 70, 92, 'https://img.pokemondb.net/artwork/krookodile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/krookodile.png', 553, 5), ('Darumaka', 'Fire', '', 315, 70, 90, 45, 15, 45, 50, 'https://img.pokemondb.net/artwork/darumaka.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/darumaka.png', 554, 5), ('Darmanitan', 'Fire', '', 480, 105, 140, 55, 30, 55, 95, 'https://img.pokemondb.net/artwork/darmanitan.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/darmanitan-standard.png', 555, 5), ('Maractus', 'Grass', '', 461, 75, 86, 67, 106, 67, 60, 'https://img.pokemondb.net/artwork/maractus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/maractus.png', 556, 5), ('Dwebble', 'Bug', 'Rock', 325, 50, 65, 85, 35, 35, 55, 'https://img.pokemondb.net/artwork/dwebble.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dwebble.png', 557, 5), ('Crustle', 'Bug', 'Rock', 485, 70, 105, 125, 65, 75, 45, 'https://img.pokemondb.net/artwork/crustle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/crustle.png', 558, 5), ('Scraggy', 'Dark', 'Fighting', 348, 50, 75, 70, 35, 70, 48, 'https://img.pokemondb.net/artwork/scraggy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scraggy.png', 559, 5), ('Scrafty', 'Dark', 'Fighting', 488, 65, 90, 115, 45, 115, 58, 'https://img.pokemondb.net/artwork/scrafty.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scrafty.png', 560, 5), ('Sigilyph', 'Psychic', 'Flying', 490, 72, 58, 80, 103, 80, 97, 'https://img.pokemondb.net/artwork/sigilyph.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sigilyph.png', 561, 5), ('Yamask', 'Ghost', '', 303, 38, 30, 85, 55, 65, 30, 'https://img.pokemondb.net/artwork/yamask.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/yamask.png', 562, 5), ('Cofagrigus', 'Ghost', '', 483, 58, 50, 145, 95, 105, 30, 'https://img.pokemondb.net/artwork/cofagrigus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cofagrigus.png', 563, 5), ('Tirtouga', 'Water', 'Rock', 355, 54, 78, 103, 53, 45, 22, 'https://img.pokemondb.net/artwork/tirtouga.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tirtouga.png', 564, 5), ('Carracosta', 'Water', 'Rock', 495, 74, 108, 133, 83, 65, 32, 'https://img.pokemondb.net/artwork/carracosta.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/carracosta.png', 565, 5), ('Archen', 'Rock', 'Flying', 401, 55, 112, 45, 74, 45, 70, 'https://img.pokemondb.net/artwork/archen.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/archen.png', 566, 5), ('Archeops', 'Rock', 'Flying', 567, 75, 140, 65, 112, 65, 110, 'https://img.pokemondb.net/artwork/archeops.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/archeops.png', 567, 5), ('Trubbish', 'Poison', '', 329, 50, 50, 62, 40, 62, 65, 'https://img.pokemondb.net/artwork/trubbish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/trubbish.png', 568, 5), ('Garbodor', 'Poison', '', 474, 80, 95, 82, 60, 82, 75, 'https://img.pokemondb.net/artwork/garbodor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/garbodor.png', 569, 5), ('Zorua', 'Dark', '', 330, 40, 65, 40, 80, 40, 65, 'https://img.pokemondb.net/artwork/zorua.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zorua.png', 570, 5), ('Zoroark', 'Dark', '', 510, 60, 105, 60, 120, 60, 105, 'https://img.pokemondb.net/artwork/zoroark.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zoroark.png', 571, 5), ('Minccino', 'Normal', '', 300, 55, 50, 40, 40, 40, 75, 'https://img.pokemondb.net/artwork/minccino.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/minccino.png', 572, 5), ('Cinccino', 'Normal', '', 470, 75, 95, 60, 65, 60, 115, 'https://img.pokemondb.net/artwork/cinccino.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cinccino.png', 573, 5), ('Gothita', 'Psychic', '', 290, 45, 30, 50, 55, 65, 45, 'https://img.pokemondb.net/artwork/gothita.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gothita.png', 574, 5), ('Gothorita', 'Psychic', '', 390, 60, 45, 70, 75, 85, 55, 'https://img.pokemondb.net/artwork/gothorita.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gothorita.png', 575, 5), ('Gothitelle', 'Psychic', '', 490, 70, 55, 95, 95, 110, 65, 'https://img.pokemondb.net/artwork/gothitelle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gothitelle.png', 576, 5), ('Solosis', 'Psychic', '', 290, 45, 30, 40, 105, 50, 20, 'https://img.pokemondb.net/artwork/solosis.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/solosis.png', 577, 5), ('Duosion', 'Psychic', '', 370, 65, 40, 50, 125, 60, 30, 'https://img.pokemondb.net/artwork/duosion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/duosion.png', 578, 5), ('Reuniclus', 'Psychic', '', 490, 110, 65, 75, 125, 85, 30, 'https://img.pokemondb.net/artwork/reuniclus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/reuniclus.png', 579, 5), ('Ducklett', 'Water', 'Flying', 305, 62, 44, 50, 44, 50, 55, 'https://img.pokemondb.net/artwork/ducklett.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ducklett.png', 580, 5), ('Swanna', 'Water', 'Flying', 473, 75, 87, 63, 87, 63, 98, 'https://img.pokemondb.net/artwork/swanna.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swanna.png', 581, 5), ('Vanillite', 'Ice', '', 305, 36, 50, 50, 65, 60, 44, 'https://img.pokemondb.net/artwork/vanillite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vanillite.png', 582, 5), ('Vanillish', 'Ice', '', 395, 51, 65, 65, 80, 75, 59, 'https://img.pokemondb.net/artwork/vanillish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vanillish.png', 583, 5), ('Vanilluxe', 'Ice', '', 535, 71, 95, 85, 110, 95, 79, 'https://img.pokemondb.net/artwork/vanilluxe.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vanilluxe.png', 584, 5), ('Deerling', 'Normal', 'Grass', 335, 60, 60, 50, 40, 50, 75, 'https://img.pokemondb.net/artwork/deerling.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/deerling.png', 585, 5), ('Sawsbuck', 'Normal', 'Grass', 475, 80, 100, 70, 60, 70, 95, 'https://img.pokemondb.net/artwork/sawsbuck.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sawsbuck.png', 586, 5), ('Emolga', 'Electric', 'Flying', 428, 55, 75, 60, 75, 60, 103, 'https://img.pokemondb.net/artwork/emolga.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/emolga.png', 587, 5), ('Karrablast', 'Bug', '', 315, 50, 75, 45, 40, 45, 60, 'https://img.pokemondb.net/artwork/karrablast.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/karrablast.png', 588, 5), ('Escavalier', 'Bug', 'Steel', 495, 70, 135, 105, 60, 105, 20, 'https://img.pokemondb.net/artwork/escavalier.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/escavalier.png', 589, 5), ('Foongus', 'Grass', 'Poison', 294, 69, 55, 45, 55, 55, 15, 'https://img.pokemondb.net/artwork/foongus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/foongus.png', 590, 5), ('Amoonguss', 'Grass', 'Poison', 464, 114, 85, 70, 85, 80, 30, 'https://img.pokemondb.net/artwork/amoonguss.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/amoonguss.png', 591, 5), ('Frillish', 'Water', 'Ghost', 335, 55, 40, 50, 65, 85, 40, 'https://img.pokemondb.net/artwork/frillish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/frillish.png', 592, 5), ('Jellicent', 'Water', 'Ghost', 480, 100, 60, 70, 85, 105, 60, 'https://img.pokemondb.net/artwork/jellicent.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jellicent.png', 593, 5), ('Alomomola', 'Water', '', 470, 165, 75, 80, 40, 45, 65, 'https://img.pokemondb.net/artwork/alomomola.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/alomomola.png', 594, 5), ('Joltik', 'Bug', 'Electric', 319, 50, 47, 50, 57, 50, 65, 'https://img.pokemondb.net/artwork/joltik.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/joltik.png', 595, 5), ('Galvantula', 'Bug', 'Electric', 472, 70, 77, 60, 97, 60, 108, 'https://img.pokemondb.net/artwork/galvantula.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/galvantula.png', 596, 5), ('Ferroseed', 'Grass', 'Steel', 305, 44, 50, 91, 24, 86, 10, 'https://img.pokemondb.net/artwork/ferroseed.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ferroseed.png', 597, 5), ('Ferrothorn', 'Grass', 'Steel', 489, 74, 94, 131, 54, 116, 20, 'https://img.pokemondb.net/artwork/ferrothorn.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ferrothorn.png', 598, 5), ('Klink', 'Steel', '', 300, 40, 55, 70, 45, 60, 30, 'https://img.pokemondb.net/artwork/klink.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/klink.png', 599, 5), ('Klang', 'Steel', '', 440, 60, 80, 95, 70, 85, 50, 'https://img.pokemondb.net/artwork/klang.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/klang.png', 600, 5), ('Klinklang', 'Steel', '', 520, 60, 100, 115, 70, 85, 90, 'https://img.pokemondb.net/artwork/klinklang.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/klinklang.png', 601, 5), ('Tynamo', 'Electric', '', 275, 35, 55, 40, 45, 40, 60, 'https://img.pokemondb.net/artwork/tynamo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tynamo.png', 602, 5), ('Eelektrik', 'Electric', '', 405, 65, 85, 70, 75, 70, 40, 'https://img.pokemondb.net/artwork/eelektrik.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/eelektrik.png', 603, 5), ('Eelektross', 'Electric', '', 515, 85, 115, 80, 105, 80, 50, 'https://img.pokemondb.net/artwork/eelektross.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/eelektross.png', 604, 5), ('Elgyem', 'Psychic', '', 335, 55, 55, 55, 85, 55, 30, 'https://img.pokemondb.net/artwork/elgyem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/elgyem.png', 605, 5), ('Beheeyem', 'Psychic', '', 485, 75, 75, 75, 125, 95, 40, 'https://img.pokemondb.net/artwork/beheeyem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/beheeyem.png', 606, 5), ('Litwick', 'Ghost', 'Fire', 275, 50, 30, 55, 65, 55, 20, 'https://img.pokemondb.net/artwork/litwick.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/litwick.png', 607, 5), ('Lampent', 'Ghost', 'Fire', 370, 60, 40, 60, 95, 60, 55, 'https://img.pokemondb.net/artwork/lampent.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lampent.png', 608, 5), ('Chandelure', 'Ghost', 'Fire', 520, 60, 55, 90, 145, 90, 80, 'https://img.pokemondb.net/artwork/chandelure.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chandelure.png', 609, 5), ('Axew', 'Dragon', '', 320, 46, 87, 60, 30, 40, 57, 'https://img.pokemondb.net/artwork/axew.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/axew.png', 610, 5), ('Fraxure', 'Dragon', '', 410, 66, 117, 70, 40, 50, 67, 'https://img.pokemondb.net/artwork/fraxure.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/fraxure.png', 611, 5), ('Haxorus', 'Dragon', '', 540, 76, 147, 90, 60, 70, 97, 'https://img.pokemondb.net/artwork/haxorus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/haxorus.png', 612, 5), ('Cubchoo', 'Ice', '', 305, 55, 70, 40, 60, 40, 40, 'https://img.pokemondb.net/artwork/cubchoo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cubchoo.png', 613, 5), ('Beartic', 'Ice', '', 505, 95, 130, 80, 70, 80, 50, 'https://img.pokemondb.net/artwork/beartic.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/beartic.png', 614, 5), ('Cryogonal', 'Ice', '', 515, 80, 50, 50, 95, 135, 105, 'https://img.pokemondb.net/artwork/cryogonal.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cryogonal.png', 615, 5), ('Shelmet', 'Bug', '', 305, 50, 40, 85, 40, 65, 25, 'https://img.pokemondb.net/artwork/shelmet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shelmet.png', 616, 5), ('Accelgor', 'Bug', '', 495, 80, 70, 40, 100, 60, 145, 'https://img.pokemondb.net/artwork/accelgor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/accelgor.png', 617, 5), ('Stunfisk', 'Ground', 'Electric', 471, 109, 66, 84, 81, 99, 32, 'https://img.pokemondb.net/artwork/stunfisk.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stunfisk.png', 618, 5), ('Mienfoo', 'Fighting', '', 350, 45, 85, 50, 55, 50, 65, 'https://img.pokemondb.net/artwork/mienfoo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mienfoo.png', 619, 5), ('Mienshao', 'Fighting', '', 510, 65, 125, 60, 95, 60, 105, 'https://img.pokemondb.net/artwork/mienshao.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mienshao.png', 620, 5), ('Druddigon', 'Dragon', '', 485, 77, 120, 90, 60, 90, 48, 'https://img.pokemondb.net/artwork/druddigon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/druddigon.png', 621, 5), ('Golett', 'Ground', 'Ghost', 303, 59, 74, 50, 35, 50, 35, 'https://img.pokemondb.net/artwork/golett.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/golett.png', 622, 5), ('Golurk', 'Ground', 'Ghost', 483, 89, 124, 80, 55, 80, 55, 'https://img.pokemondb.net/artwork/golurk.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/golurk.png', 623, 5), ('Pawniard', 'Dark', 'Steel', 340, 45, 85, 70, 40, 40, 60, 'https://img.pokemondb.net/artwork/pawniard.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pawniard.png', 624, 5), ('Bisharp', 'Dark', 'Steel', 490, 65, 125, 100, 60, 70, 70, 'https://img.pokemondb.net/artwork/bisharp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bisharp.png', 625, 5), ('Bouffalant', 'Normal', '', 490, 95, 110, 95, 40, 95, 55, 'https://img.pokemondb.net/artwork/bouffalant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bouffalant.png', 626, 5), ('Rufflet', 'Normal', 'Flying', 350, 70, 83, 50, 37, 50, 60, 'https://img.pokemondb.net/artwork/rufflet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rufflet.png', 627, 5), ('Braviary', 'Normal', 'Flying', 510, 100, 123, 75, 57, 75, 80, 'https://img.pokemondb.net/artwork/braviary.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/braviary.png', 628, 5), ('Vullaby', 'Dark', 'Flying', 370, 70, 55, 75, 45, 65, 60, 'https://img.pokemondb.net/artwork/vullaby.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vullaby.png', 629, 5), ('Mandibuzz', 'Dark', 'Flying', 510, 110, 65, 105, 55, 95, 80, 'https://img.pokemondb.net/artwork/mandibuzz.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mandibuzz.png', 630, 5), ('Heatmor', 'Fire', '', 484, 85, 97, 66, 105, 66, 65, 'https://img.pokemondb.net/artwork/heatmor.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/heatmor.png', 631, 5), ('Durant', 'Bug', 'Steel', 484, 58, 109, 112, 48, 48, 109, 'https://img.pokemondb.net/artwork/durant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/durant.png', 632, 5), ('Deino', 'Dark', 'Dragon', 300, 52, 65, 50, 45, 50, 38, 'https://img.pokemondb.net/artwork/deino.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/deino.png', 633, 5), ('Zweilous', 'Dark', 'Dragon', 420, 72, 85, 70, 65, 70, 58, 'https://img.pokemondb.net/artwork/zweilous.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zweilous.png', 634, 5), ('Hydreigon', 'Dark', 'Dragon', 600, 92, 105, 90, 125, 90, 98, 'https://img.pokemondb.net/artwork/hydreigon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hydreigon.png', 635, 5), ('Larvesta', 'Bug', 'Fire', 360, 55, 85, 55, 50, 55, 60, 'https://img.pokemondb.net/artwork/larvesta.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/larvesta.png', 636, 5), ('Volcarona', 'Bug', 'Fire', 550, 85, 60, 65, 135, 105, 100, 'https://img.pokemondb.net/artwork/volcarona.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/volcarona.png', 637, 5), ('Cobalion', 'Steel', 'Fighting', 580, 91, 90, 129, 90, 72, 108, 'https://img.pokemondb.net/artwork/cobalion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cobalion.png', 638, 5), ('Terrakion', 'Rock', 'Fighting', 580, 91, 129, 90, 72, 90, 108, 'https://img.pokemondb.net/artwork/terrakion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/terrakion.png', 639, 5), ('Virizion', 'Grass', 'Fighting', 580, 91, 90, 72, 90, 129, 108, 'https://img.pokemondb.net/artwork/virizion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/virizion.png', 640, 5), ('Tornadus', 'Flying', '', 580, 79, 115, 70, 125, 80, 111, 'https://img.pokemondb.net/artwork/tornadus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tornadus-incarnate.png', 641, 5), ('Thundurus', 'Electric', 'Flying', 580, 79, 115, 70, 125, 80, 111, 'https://img.pokemondb.net/artwork/thundurus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/thundurus-incarnate.png', 642, 5), ('Reshiram', 'Dragon', 'Fire', 680, 100, 120, 100, 150, 120, 90, 'https://img.pokemondb.net/artwork/reshiram.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/reshiram.png', 643, 5), ('Zekrom', 'Dragon', 'Electric', 680, 100, 150, 120, 120, 100, 90, 'https://img.pokemondb.net/artwork/zekrom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zekrom.png', 644, 5), ('Landorus', 'Ground', 'Flying', 600, 89, 125, 90, 115, 80, 101, 'https://img.pokemondb.net/artwork/landorus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/landorus-incarnate.png', 645, 5), ('Kyurem', 'Dragon', 'Ice', 660, 125, 130, 90, 130, 90, 95, 'https://img.pokemondb.net/artwork/kyurem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kyurem.png', 646, 5), ('Keldeo', 'Water', 'Fighting', 580, 91, 72, 90, 129, 90, 108, 'https://img.pokemondb.net/artwork/keldeo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/keldeo-ordinary.png', 647, 5), ('Meloetta', 'Normal', 'Psychic', 600, 100, 77, 77, 128, 128, 90, 'https://img.pokemondb.net/artwork/meloetta.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/meloetta-aria.png', 648, 5), ('Genesect', 'Bug', 'Steel', 600, 71, 120, 95, 120, 95, 99, 'https://img.pokemondb.net/artwork/genesect.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/genesect.png', 649, 5), ('Chespin', 'Grass', '', 313, 56, 61, 65, 48, 45, 38, 'https://img.pokemondb.net/artwork/chespin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chespin.png', 650, 6), ('Quilladin', 'Grass', '', 405, 61, 78, 95, 56, 58, 57, 'https://img.pokemondb.net/artwork/quilladin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/quilladin.png', 651, 6), ('Chesnaught', 'Grass', 'Fighting', 530, 88, 107, 122, 74, 75, 64, 'https://img.pokemondb.net/artwork/chesnaught.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chesnaught.png', 652, 6), ('Fennekin', 'Fire', '', 307, 40, 45, 40, 62, 60, 60, 'https://img.pokemondb.net/artwork/fennekin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/fennekin.png', 653, 6), ('Braixen', 'Fire', '', 409, 59, 59, 58, 90, 70, 73, 'https://img.pokemondb.net/artwork/braixen.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/braixen.png', 654, 6), ('Delphox', 'Fire', 'Psychic', 534, 75, 69, 72, 114, 100, 104, 'https://img.pokemondb.net/artwork/delphox.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/delphox.png', 655, 6), ('Froakie', 'Water', '', 314, 41, 56, 40, 62, 44, 71, 'https://img.pokemondb.net/artwork/froakie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/froakie.png', 656, 6), ('Frogadier', 'Water', '', 405, 54, 63, 52, 83, 56, 97, 'https://img.pokemondb.net/artwork/frogadier.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/frogadier.png', 657, 6), ('Greninja', 'Water', 'Dark', 530, 72, 95, 67, 103, 71, 122, 'https://img.pokemondb.net/artwork/greninja.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/greninja.png', 658, 6), ('Bunnelby', 'Normal', '', 237, 38, 36, 38, 32, 36, 57, 'https://img.pokemondb.net/artwork/bunnelby.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bunnelby.png', 659, 6), ('Diggersby', 'Normal', 'Ground', 423, 85, 56, 77, 50, 77, 78, 'https://img.pokemondb.net/artwork/diggersby.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/diggersby.png', 660, 6), ('Fletchling', 'Normal', 'Flying', 278, 45, 50, 43, 40, 38, 62, 'https://img.pokemondb.net/artwork/fletchling.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/fletchling.png', 661, 6), ('Fletchinder', 'Fire', 'Flying', 382, 62, 73, 55, 56, 52, 84, 'https://img.pokemondb.net/artwork/fletchinder.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/fletchinder.png', 662, 6), ('Talonflame', 'Fire', 'Flying', 499, 78, 81, 71, 74, 69, 126, 'https://img.pokemondb.net/artwork/talonflame.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/talonflame.png', 663, 6), ('Scatterbug', 'Bug', '', 200, 38, 35, 40, 27, 25, 35, 'https://img.pokemondb.net/artwork/scatterbug.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scatterbug.png', 664, 6), ('Spewpa', 'Bug', '', 213, 45, 22, 60, 27, 30, 29, 'https://img.pokemondb.net/artwork/spewpa.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spewpa.png', 665, 6), ('Vivillon', 'Bug', 'Flying', 411, 80, 52, 50, 90, 50, 89, 'https://img.pokemondb.net/artwork/vivillon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vivillon.png', 666, 6), ('Litleo', 'Fire', 'Normal', 369, 62, 50, 58, 73, 54, 72, 'https://img.pokemondb.net/artwork/litleo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/litleo.png', 667, 6), ('Pyroar', 'Fire', 'Normal', 507, 86, 68, 72, 109, 66, 106, 'https://img.pokemondb.net/artwork/pyroar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pyroar.png', 668, 6), ('Flabébé', 'Fairy', '', 303, 44, 38, 39, 61, 79, 42, 'https://img.pokemondb.net/artwork/flabebe.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/flabebe.png', 669, 6), ('Floette', 'Fairy', '', 371, 54, 45, 47, 75, 98, 52, 'https://img.pokemondb.net/artwork/floette.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/floette.png', 670, 6), ('Florges', 'Fairy', '', 552, 78, 65, 68, 112, 154, 75, 'https://img.pokemondb.net/artwork/florges.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/florges.png', 671, 6), ('Skiddo', 'Grass', '', 350, 66, 65, 48, 62, 57, 52, 'https://img.pokemondb.net/artwork/skiddo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skiddo.png', 672, 6), ('Gogoat', 'Grass', '', 531, 123, 100, 62, 97, 81, 68, 'https://img.pokemondb.net/artwork/gogoat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gogoat.png', 673, 6), ('Pancham', 'Fighting', '', 348, 67, 82, 62, 46, 48, 43, 'https://img.pokemondb.net/artwork/pancham.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pancham.png', 674, 6), ('Pangoro', 'Fighting', 'Dark', 495, 95, 124, 78, 69, 71, 58, 'https://img.pokemondb.net/artwork/pangoro.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pangoro.png', 675, 6), ('Furfrou', 'Normal', '', 472, 75, 80, 60, 65, 90, 102, 'https://img.pokemondb.net/artwork/furfrou.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/furfrou.png', 676, 6), ('Espurr', 'Psychic', '', 355, 62, 48, 54, 63, 60, 68, 'https://img.pokemondb.net/artwork/espurr.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/espurr.png', 677, 6), ('Meowstic', 'Psychic', '', 466, 74, 48, 76, 83, 81, 104, 'https://img.pokemondb.net/artwork/meowstic.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/meowstic-male.png', 678, 6), ('Honedge', 'Steel', 'Ghost', 325, 45, 80, 100, 35, 37, 28, 'https://img.pokemondb.net/artwork/honedge.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/honedge.png', 679, 6), ('Doublade', 'Steel', 'Ghost', 448, 59, 110, 150, 45, 49, 35, 'https://img.pokemondb.net/artwork/doublade.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/doublade.png', 680, 6), ('Aegislash', 'Steel', 'Ghost', 500, 60, 50, 140, 50, 140, 60, 'https://img.pokemondb.net/artwork/aegislash.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aegislash-shield.png', 681, 6), ('Spritzee', 'Fairy', '', 341, 78, 52, 60, 63, 65, 23, 'https://img.pokemondb.net/artwork/spritzee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spritzee.png', 682, 6), ('Aromatisse', 'Fairy', '', 462, 101, 72, 72, 99, 89, 29, 'https://img.pokemondb.net/artwork/aromatisse.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aromatisse.png', 683, 6), ('Swirlix', 'Fairy', '', 341, 62, 48, 66, 59, 57, 49, 'https://img.pokemondb.net/artwork/swirlix.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/swirlix.png', 684, 6), ('Slurpuff', 'Fairy', '', 480, 82, 80, 86, 85, 75, 72, 'https://img.pokemondb.net/artwork/slurpuff.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/slurpuff.png', 685, 6), ('Inkay', 'Dark', 'Psychic', 288, 53, 54, 53, 37, 46, 45, 'https://img.pokemondb.net/artwork/inkay.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/inkay.png', 686, 6), ('Malamar', 'Dark', 'Psychic', 482, 86, 92, 88, 68, 75, 73, 'https://img.pokemondb.net/artwork/malamar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/malamar.png', 687, 6), ('Binacle', 'Rock', 'Water', 306, 42, 52, 67, 39, 56, 50, 'https://img.pokemondb.net/artwork/binacle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/binacle.png', 688, 6), ('Barbaracle', 'Rock', 'Water', 500, 72, 105, 115, 54, 86, 68, 'https://img.pokemondb.net/artwork/barbaracle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/barbaracle.png', 689, 6), ('Skrelp', 'Poison', 'Water', 320, 50, 60, 60, 60, 60, 30, 'https://img.pokemondb.net/artwork/skrelp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skrelp.png', 690, 6), ('Dragalge', 'Poison', 'Dragon', 494, 65, 75, 90, 97, 123, 44, 'https://img.pokemondb.net/artwork/dragalge.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dragalge.png', 691, 6), ('Clauncher', 'Water', '', 330, 50, 53, 62, 58, 63, 44, 'https://img.pokemondb.net/artwork/clauncher.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/clauncher.png', 692, 6), ('Clawitzer', 'Water', '', 500, 71, 73, 88, 120, 89, 59, 'https://img.pokemondb.net/artwork/clawitzer.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/clawitzer.png', 693, 6), ('Helioptile', 'Electric', 'Normal', 289, 44, 38, 33, 61, 43, 70, 'https://img.pokemondb.net/artwork/helioptile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/helioptile.png', 694, 6), ('Heliolisk', 'Electric', 'Normal', 481, 62, 55, 52, 109, 94, 109, 'https://img.pokemondb.net/artwork/heliolisk.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/heliolisk.png', 695, 6), ('Tyrunt', 'Rock', 'Dragon', 362, 58, 89, 77, 45, 45, 48, 'https://img.pokemondb.net/artwork/tyrunt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tyrunt.png', 696, 6), ('Tyrantrum', 'Rock', 'Dragon', 521, 82, 121, 119, 69, 59, 71, 'https://img.pokemondb.net/artwork/tyrantrum.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tyrantrum.png', 697, 6), ('Amaura', 'Rock', 'Ice', 362, 77, 59, 50, 67, 63, 46, 'https://img.pokemondb.net/artwork/amaura.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/amaura.png', 698, 6), ('Aurorus', 'Rock', 'Ice', 521, 123, 77, 72, 99, 92, 58, 'https://img.pokemondb.net/artwork/aurorus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/aurorus.png', 699, 6), ('Sylveon', 'Fairy', '', 525, 95, 65, 65, 110, 130, 60, 'https://img.pokemondb.net/artwork/sylveon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sylveon.png', 700, 6), ('Hawlucha', 'Fighting', 'Flying', 500, 78, 92, 75, 74, 63, 118, 'https://img.pokemondb.net/artwork/hawlucha.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hawlucha.png', 701, 6), ('Dedenne', 'Electric', 'Fairy', 431, 67, 58, 57, 81, 67, 101, 'https://img.pokemondb.net/artwork/dedenne.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dedenne.png', 702, 6), ('Carbink', 'Rock', 'Fairy', 500, 50, 50, 150, 50, 150, 50, 'https://img.pokemondb.net/artwork/carbink.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/carbink.png', 703, 6), ('Goomy', 'Dragon', '', 300, 45, 50, 35, 55, 75, 40, 'https://img.pokemondb.net/artwork/goomy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/goomy.png', 704, 6), ('Sliggoo', 'Dragon', '', 452, 68, 75, 53, 83, 113, 60, 'https://img.pokemondb.net/artwork/sliggoo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sliggoo.png', 705, 6), ('Goodra', 'Dragon', '', 600, 90, 100, 70, 110, 150, 80, 'https://img.pokemondb.net/artwork/goodra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/goodra.png', 706, 6), ('Klefki', 'Steel', 'Fairy', 470, 57, 80, 91, 80, 87, 75, 'https://img.pokemondb.net/artwork/klefki.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/klefki.png', 707, 6), ('Phantump', 'Ghost', 'Grass', 309, 43, 70, 48, 50, 60, 38, 'https://img.pokemondb.net/artwork/phantump.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/phantump.png', 708, 6), ('Trevenant', 'Ghost', 'Grass', 474, 85, 110, 76, 65, 82, 56, 'https://img.pokemondb.net/artwork/trevenant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/trevenant.png', 709, 6), ('Pumpkaboo', 'Ghost', 'Grass', 335, 49, 66, 70, 44, 55, 51, 'https://img.pokemondb.net/artwork/pumpkaboo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pumpkaboo-average.png', 710, 6), ('Gourgeist', 'Ghost', 'Grass', 494, 65, 90, 122, 58, 75, 84, 'https://img.pokemondb.net/artwork/gourgeist.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gourgeist-average.png', 711, 6), ('Bergmite', 'Ice', '', 304, 55, 69, 85, 32, 35, 28, 'https://img.pokemondb.net/artwork/bergmite.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bergmite.png', 712, 6), ('Avalugg', 'Ice', '', 514, 95, 117, 184, 44, 46, 28, 'https://img.pokemondb.net/artwork/avalugg.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/avalugg.png', 713, 6), ('Noibat', 'Flying', 'Dragon', 245, 40, 30, 35, 45, 40, 55, 'https://img.pokemondb.net/artwork/noibat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/noibat.png', 714, 6), ('Noivern', 'Flying', 'Dragon', 535, 85, 70, 80, 97, 80, 123, 'https://img.pokemondb.net/artwork/noivern.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/noivern.png', 715, 6), ('Xerneas', 'Fairy', '', 680, 126, 131, 95, 131, 98, 99, 'https://img.pokemondb.net/artwork/xerneas.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/xerneas.png', 716, 6), ('Yveltal', 'Dark', 'Flying', 680, 126, 131, 95, 131, 98, 99, 'https://img.pokemondb.net/artwork/yveltal.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/yveltal.png', 717, 6), ('Zygarde', 'Dragon', 'Ground', 600, 108, 100, 121, 81, 95, 95, 'https://img.pokemondb.net/artwork/zygarde.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zygarde-50.png', 718, 6), ('Diancie', 'Rock', 'Fairy', 600, 50, 100, 150, 100, 150, 50, 'https://img.pokemondb.net/artwork/diancie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/diancie.png', 719, 6), ('Hoopa', 'Psychic', 'Ghost', 600, 80, 110, 60, 150, 130, 70, 'https://img.pokemondb.net/artwork/hoopa.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hoopa-confined.png', 720, 6), ('Volcanion', 'Fire', 'Water', 600, 80, 110, 120, 130, 90, 70, 'https://img.pokemondb.net/artwork/volcanion.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/volcanion.png', 721, 6), ('Rowlet', 'Grass', 'Flying', 320, 68, 55, 55, 50, 50, 42, 'https://img.pokemondb.net/artwork/rowlet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rowlet.png', 722, 7), ('Dartrix', 'Grass', 'Flying', 420, 78, 75, 75, 70, 70, 52, 'https://img.pokemondb.net/artwork/dartrix.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dartrix.png', 723, 7), ('Decidueye', 'Grass', 'Ghost', 530, 78, 107, 75, 100, 100, 70, 'https://img.pokemondb.net/artwork/decidueye.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/decidueye.png', 724, 7), ('Litten', 'Fire', '', 320, 45, 65, 40, 60, 40, 70, 'https://img.pokemondb.net/artwork/litten.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/litten.png', 725, 7), ('Torracat', 'Fire', '', 420, 65, 85, 50, 80, 50, 90, 'https://img.pokemondb.net/artwork/torracat.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/torracat.png', 726, 7), ('Incineroar', 'Fire', 'Dark', 530, 95, 115, 90, 80, 90, 60, 'https://img.pokemondb.net/artwork/incineroar.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/incineroar.png', 727, 7), ('Popplio', 'Water', '', 320, 50, 54, 54, 66, 56, 40, 'https://img.pokemondb.net/artwork/popplio.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/popplio.png', 728, 7), ('Brionne', 'Water', '', 420, 60, 69, 69, 91, 81, 50, 'https://img.pokemondb.net/artwork/brionne.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/brionne.png', 729, 7), ('Primarina', 'Water', 'Fairy', 530, 80, 74, 74, 126, 116, 60, 'https://img.pokemondb.net/artwork/primarina.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/primarina.png', 730, 7), ('Pikipek', 'Normal', 'Flying', 265, 35, 75, 30, 30, 30, 65, 'https://img.pokemondb.net/artwork/pikipek.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pikipek.png', 731, 7), ('Trumbeak', 'Normal', 'Flying', 355, 55, 85, 50, 40, 50, 75, 'https://img.pokemondb.net/artwork/trumbeak.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/trumbeak.png', 732, 7), ('Toucannon', 'Normal', 'Flying', 485, 80, 120, 75, 75, 75, 60, 'https://img.pokemondb.net/artwork/toucannon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/toucannon.png', 733, 7), ('Yungoos', 'Normal', '', 253, 48, 70, 30, 30, 30, 45, 'https://img.pokemondb.net/artwork/yungoos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/yungoos.png', 734, 7), ('Gumshoos', 'Normal', '', 418, 88, 110, 60, 55, 60, 45, 'https://img.pokemondb.net/artwork/gumshoos.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gumshoos.png', 735, 7), ('Grubbin', 'Bug', '', 300, 47, 62, 45, 55, 45, 46, 'https://img.pokemondb.net/artwork/grubbin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grubbin.png', 736, 7), ('Charjabug', 'Bug', 'Electric', 400, 57, 82, 95, 55, 75, 36, 'https://img.pokemondb.net/artwork/charjabug.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/charjabug.png', 737, 7), ('Vikavolt', 'Bug', 'Electric', 500, 77, 70, 90, 145, 75, 43, 'https://img.pokemondb.net/artwork/vikavolt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/vikavolt.png', 738, 7), ('Crabrawler', 'Fighting', '', 338, 47, 82, 57, 42, 47, 63, 'https://img.pokemondb.net/artwork/crabrawler.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/crabrawler.png', 739, 7), ('Crabominable', 'Fighting', 'Ice', 478, 97, 132, 77, 62, 67, 43, 'https://img.pokemondb.net/artwork/crabominable.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/crabominable.png', 740, 7), ('Oricorio', 'Fire', 'Flying', 476, 75, 70, 70, 98, 70, 93, 'https://img.pokemondb.net/artwork/oricorio.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/oricorio-baile.png', 741, 7), ('Cutiefly', 'Bug', 'Fairy', 304, 40, 45, 40, 55, 40, 84, 'https://img.pokemondb.net/artwork/cutiefly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cutiefly.png', 742, 7), ('Ribombee', 'Bug', 'Fairy', 464, 60, 55, 60, 95, 70, 124, 'https://img.pokemondb.net/artwork/ribombee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/ribombee.png', 743, 7), ('Rockruff', 'Rock', '', 280, 45, 65, 40, 30, 40, 60, 'https://img.pokemondb.net/artwork/rockruff.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rockruff.png', 744, 7), ('Lycanroc', 'Rock', '', 487, 75, 115, 65, 55, 65, 112, 'https://img.pokemondb.net/artwork/lycanroc.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lycanroc-midday.png', 745, 7), ('Wishiwashi', 'Water', '', 175, 45, 20, 20, 25, 25, 40, 'https://img.pokemondb.net/artwork/wishiwashi.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wishiwashi-solo.png', 746, 7), ('Mareanie', 'Poison', 'Water', 305, 50, 53, 62, 43, 52, 45, 'https://img.pokemondb.net/artwork/mareanie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mareanie.png', 747, 7), ('Toxapex', 'Poison', 'Water', 495, 50, 63, 152, 53, 142, 35, 'https://img.pokemondb.net/artwork/toxapex.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/toxapex.png', 748, 7), ('Mudbray', 'Ground', '', 385, 70, 100, 70, 45, 55, 45, 'https://img.pokemondb.net/artwork/mudbray.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mudbray.png', 749, 7), ('Mudsdale', 'Ground', '', 500, 100, 125, 100, 55, 85, 35, 'https://img.pokemondb.net/artwork/mudsdale.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mudsdale.png', 750, 7), ('Dewpider', 'Water', 'Bug', 269, 38, 40, 52, 40, 72, 27, 'https://img.pokemondb.net/artwork/dewpider.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dewpider.png', 751, 7), ('Araquanid', 'Water', 'Bug', 454, 68, 70, 92, 50, 132, 42, 'https://img.pokemondb.net/artwork/araquanid.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/araquanid.png', 752, 7), ('Fomantis', 'Grass', '', 250, 40, 55, 35, 50, 35, 35, 'https://img.pokemondb.net/artwork/fomantis.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/fomantis.png', 753, 7), ('Lurantis', 'Grass', '', 480, 70, 105, 90, 80, 90, 45, 'https://img.pokemondb.net/artwork/lurantis.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lurantis.png', 754, 7), ('Morelull', 'Grass', 'Fairy', 285, 40, 35, 55, 65, 75, 15, 'https://img.pokemondb.net/artwork/morelull.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/morelull.png', 755, 7), ('Shiinotic', 'Grass', 'Fairy', 405, 60, 45, 80, 90, 100, 30, 'https://img.pokemondb.net/artwork/shiinotic.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/shiinotic.png', 756, 7), ('Salandit', 'Poison', 'Fire', 320, 48, 44, 40, 71, 40, 77, 'https://img.pokemondb.net/artwork/salandit.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/salandit.png', 757, 7), ('Salazzle', 'Poison', 'Fire', 480, 68, 64, 60, 111, 60, 117, 'https://img.pokemondb.net/artwork/salazzle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/salazzle.png', 758, 7), ('Stufful', 'Normal', 'Fighting', 340, 70, 75, 50, 45, 50, 50, 'https://img.pokemondb.net/artwork/stufful.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stufful.png', 759, 7), ('Bewear', 'Normal', 'Fighting', 500, 120, 125, 80, 55, 60, 60, 'https://img.pokemondb.net/artwork/bewear.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bewear.png', 760, 7), ('Bounsweet', 'Grass', '', 210, 42, 30, 38, 30, 38, 32, 'https://img.pokemondb.net/artwork/bounsweet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bounsweet.png', 761, 7), ('Steenee', 'Grass', '', 290, 52, 40, 48, 40, 48, 62, 'https://img.pokemondb.net/artwork/steenee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/steenee.png', 762, 7), ('Tsareena', 'Grass', '', 510, 72, 120, 98, 50, 98, 72, 'https://img.pokemondb.net/artwork/tsareena.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tsareena.png', 763, 7), ('Comfey', 'Fairy', '', 485, 51, 52, 90, 82, 110, 100, 'https://img.pokemondb.net/artwork/comfey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/comfey.png', 764, 7), ('Oranguru', 'Normal', 'Psychic', 490, 90, 60, 80, 90, 110, 60, 'https://img.pokemondb.net/artwork/oranguru.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/oranguru.png', 765, 7), ('Passimian', 'Fighting', '', 490, 100, 120, 90, 40, 60, 80, 'https://img.pokemondb.net/artwork/passimian.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/passimian.png', 766, 7), ('Wimpod', 'Bug', 'Water', 230, 25, 35, 40, 20, 30, 80, 'https://img.pokemondb.net/artwork/wimpod.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wimpod.png', 767, 7), ('Golisopod', 'Bug', 'Water', 530, 75, 125, 140, 60, 90, 40, 'https://img.pokemondb.net/artwork/golisopod.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/golisopod.png', 768, 7), ('Sandygast', 'Ghost', 'Ground', 320, 55, 55, 80, 70, 45, 15, 'https://img.pokemondb.net/artwork/sandygast.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sandygast.png', 769, 7), ('Palossand', 'Ghost', 'Ground', 480, 85, 75, 110, 100, 75, 35, 'https://img.pokemondb.net/artwork/palossand.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/palossand.png', 770, 7), ('Pyukumuku', 'Water', '', 410, 55, 60, 130, 30, 130, 5, 'https://img.pokemondb.net/artwork/pyukumuku.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pyukumuku.png', 771, 7), ('Type: Null', 'Normal', '', 534, 95, 95, 95, 95, 95, 59, 'https://img.pokemondb.net/artwork/type-null.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/type-null.png', 772, 7), ('Silvally', 'Normal', '', 570, 95, 95, 95, 95, 95, 95, 'https://img.pokemondb.net/artwork/silvally.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/silvally.png', 773, 7), ('Minior', 'Rock', 'Flying', 440, 60, 60, 100, 60, 100, 60, 'https://img.pokemondb.net/artwork/minior.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/minior-meteor.png', 774, 7), ('Komala', 'Normal', '', 480, 65, 115, 65, 75, 95, 65, 'https://img.pokemondb.net/artwork/komala.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/komala.png', 775, 7), ('Turtonator', 'Fire', 'Dragon', 485, 60, 78, 135, 91, 85, 36, 'https://img.pokemondb.net/artwork/turtonator.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/turtonator.png', 776, 7), ('Togedemaru', 'Electric', 'Steel', 435, 65, 98, 63, 40, 73, 96, 'https://img.pokemondb.net/artwork/togedemaru.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/togedemaru.png', 777, 7), ('Mimikyu', 'Ghost', 'Fairy', 476, 55, 90, 80, 50, 105, 96, 'https://img.pokemondb.net/artwork/mimikyu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mimikyu.png', 778, 7), ('Bruxish', 'Water', 'Psychic', 475, 68, 105, 70, 70, 70, 92, 'https://img.pokemondb.net/artwork/bruxish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/bruxish.png', 779, 7), ('Drampa', 'Normal', 'Dragon', 485, 78, 60, 85, 135, 91, 36, 'https://img.pokemondb.net/artwork/drampa.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drampa.png', 780, 7), ('Dhelmise', 'Ghost', 'Grass', 517, 70, 131, 100, 86, 90, 40, 'https://img.pokemondb.net/artwork/dhelmise.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dhelmise.png', 781, 7), ('Jangmo-o', 'Dragon', '', 300, 45, 55, 65, 45, 45, 45, 'https://img.pokemondb.net/artwork/jangmo-o.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/jangmo-o.png', 782, 7), ('Hakamo-o', 'Dragon', 'Fighting', 420, 55, 75, 90, 65, 70, 65, 'https://img.pokemondb.net/artwork/hakamo-o.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hakamo-o.png', 783, 7), ('Kommo-o', 'Dragon', 'Fighting', 600, 75, 110, 125, 100, 105, 85, 'https://img.pokemondb.net/artwork/kommo-o.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kommo-o.png', 784, 7), ('Tapu Koko', 'Electric', 'Fairy', 570, 70, 115, 85, 95, 75, 130, 'https://img.pokemondb.net/artwork/tapu-koko.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tapu-koko.png', 785, 7), ('<NAME>', 'Psychic', 'Fairy', 570, 70, 85, 75, 130, 115, 95, 'https://img.pokemondb.net/artwork/tapu-lele.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tapu-lele.png', 786, 7), ('<NAME>', 'Grass', 'Fairy', 570, 70, 130, 115, 85, 95, 75, 'https://img.pokemondb.net/artwork/tapu-bulu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tapu-bulu.png', 787, 7), ('<NAME>', 'Water', 'Fairy', 570, 70, 75, 115, 95, 130, 85, 'https://img.pokemondb.net/artwork/tapu-fini.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/tapu-fini.png', 788, 7), ('Cosmog', 'Psychic', '', 200, 43, 29, 31, 29, 31, 37, 'https://img.pokemondb.net/artwork/cosmog.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cosmog.png', 789, 7), ('Cosmoem', 'Psychic', '', 400, 43, 29, 131, 29, 131, 37, 'https://img.pokemondb.net/artwork/cosmoem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cosmoem.png', 790, 7), ('Solgaleo', 'Psychic', 'Steel', 680, 137, 137, 107, 113, 89, 97, 'https://img.pokemondb.net/artwork/solgaleo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/solgaleo.png', 791, 7), ('Lunala', 'Psychic', 'Ghost', 680, 137, 113, 89, 137, 107, 97, 'https://img.pokemondb.net/artwork/lunala.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/lunala.png', 792, 7), ('Nihilego', 'Rock', 'Poison', 570, 109, 53, 47, 127, 131, 103, 'https://img.pokemondb.net/artwork/nihilego.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nihilego.png', 793, 7), ('Buzzwole', 'Bug', 'Fighting', 570, 107, 139, 139, 53, 53, 79, 'https://img.pokemondb.net/artwork/buzzwole.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/buzzwole.png', 794, 7), ('Pheromosa', 'Bug', 'Fighting', 570, 71, 137, 37, 137, 37, 151, 'https://img.pokemondb.net/artwork/pheromosa.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pheromosa.png', 795, 7), ('Xurkitree', 'Electric', '', 570, 83, 89, 71, 173, 71, 83, 'https://img.pokemondb.net/artwork/xurkitree.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/xurkitree.png', 796, 7), ('Celesteela', 'Steel', 'Flying', 570, 97, 101, 103, 107, 101, 61, 'https://img.pokemondb.net/artwork/celesteela.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/celesteela.png', 797, 7), ('Kartana', 'Grass', 'Steel', 570, 59, 181, 131, 59, 31, 109, 'https://img.pokemondb.net/artwork/kartana.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kartana.png', 798, 7), ('Guzzlord', 'Dark', 'Dragon', 570, 223, 101, 53, 97, 53, 43, 'https://img.pokemondb.net/artwork/guzzlord.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/guzzlord.png', 799, 7), ('Necrozma', 'Psychic', '', 600, 97, 107, 101, 127, 89, 79, 'https://img.pokemondb.net/artwork/necrozma.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/necrozma.png', 800, 7), ('Magearna', 'Steel', 'Fairy', 600, 80, 95, 115, 130, 115, 65, 'https://img.pokemondb.net/artwork/magearna.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/magearna.png', 801, 7), ('Marshadow', 'Fighting', 'Ghost', 600, 90, 125, 80, 90, 90, 125, 'https://img.pokemondb.net/artwork/marshadow.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/marshadow.png', 802, 7), ('Poipole', 'Poison', '', 420, 67, 73, 67, 73, 67, 73, 'https://img.pokemondb.net/artwork/poipole.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/poipole.png', 803, 8), ('Naganadel', 'Poison', 'Dragon', 540, 73, 73, 73, 127, 73, 121, 'https://img.pokemondb.net/artwork/naganadel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/naganadel.png', 804, 8), ('Stakataka', 'Rock', 'Steel', 570, 61, 131, 211, 53, 101, 13, 'https://img.pokemondb.net/artwork/stakataka.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stakataka.png', 805, 8), ('Blacephalon', 'Fire', 'Ghost', 570, 53, 127, 53, 151, 79, 107, 'https://img.pokemondb.net/artwork/blacephalon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/blacephalon.png', 806, 8), ('Zeraora', 'Electric', '', 600, 88, 112, 75, 102, 80, 143, 'https://img.pokemondb.net/artwork/zeraora.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zeraora.png', 807, 8), ('Meltan', 'Steel', '', 300, 46, 65, 65, 55, 35, 34, 'https://img.pokemondb.net/artwork/meltan.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/meltan.png', 808, 8), ('Melmetal', 'Steel', '', 600, 135, 143, 143, 80, 65, 34, 'https://img.pokemondb.net/artwork/melmetal.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/melmetal.png', 809, 8), ('Grookey', 'Grass', '', 310, 50, 65, 50, 40, 40, 65, 'https://img.pokemondb.net/artwork/grookey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grookey.png', 810, 8), ('Thwackey', 'Grass', '', 420, 70, 85, 70, 55, 60, 80, 'https://img.pokemondb.net/artwork/thwackey.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/thwackey.png', 811, 8), ('Rillaboom', 'Grass', '', 530, 100, 125, 90, 60, 70, 85, 'https://img.pokemondb.net/artwork/rillaboom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rillaboom.png', 812, 8), ('Scorbunny', 'Fire', '', 310, 50, 71, 40, 40, 40, 69, 'https://img.pokemondb.net/artwork/scorbunny.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/scorbunny.png', 813, 8), ('Raboot', 'Fire', '', 420, 65, 86, 60, 55, 60, 94, 'https://img.pokemondb.net/artwork/raboot.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/raboot.png', 814, 8), ('Cinderace', 'Fire', '', 530, 80, 116, 75, 65, 75, 119, 'https://img.pokemondb.net/artwork/cinderace.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cinderace.png', 815, 8), ('Sobble', 'Water', '', 310, 50, 40, 40, 70, 40, 70, 'https://img.pokemondb.net/artwork/sobble.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sobble.png', 816, 8), ('Drizzile', 'Water', '', 420, 65, 60, 55, 95, 55, 90, 'https://img.pokemondb.net/artwork/drizzile.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drizzile.png', 817, 8), ('Inteleon', 'Water', '', 530, 70, 85, 65, 125, 65, 120, 'https://img.pokemondb.net/artwork/inteleon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/inteleon.png', 818, 8); INSERT INTO `csv` (`name`, `type1`, `type2`, `total`, `hp`, `attack`, `defense`, `special_attack`, `special_defense`, `speed`, `image`, `icon`, `id`, `generation`) VALUES ('Skwovet', 'Normal', '', 275, 70, 55, 55, 35, 35, 25, 'https://img.pokemondb.net/artwork/skwovet.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/skwovet.png', 819, 8), ('Greedent', 'Normal', '', 460, 120, 95, 95, 55, 75, 20, 'https://img.pokemondb.net/artwork/greedent.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/greedent.png', 820, 8), ('Rookidee', 'Flying', '', 245, 38, 47, 35, 33, 35, 57, 'https://img.pokemondb.net/artwork/rookidee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rookidee.png', 821, 8), ('Corvisquire', 'Flying', '', 365, 68, 67, 55, 43, 55, 77, 'https://img.pokemondb.net/artwork/corvisquire.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/corvisquire.png', 822, 8), ('Corviknight', 'Flying', 'Steel', 495, 98, 87, 105, 53, 85, 67, 'https://img.pokemondb.net/artwork/corviknight.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/corviknight.png', 823, 8), ('Blipbug', 'Bug', '', 180, 25, 20, 20, 25, 45, 45, 'https://img.pokemondb.net/artwork/blipbug.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/blipbug.png', 824, 8), ('Dottler', 'Bug', 'Psychic', 335, 50, 35, 80, 50, 90, 30, 'https://img.pokemondb.net/artwork/dottler.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dottler.png', 825, 8), ('Orbeetle', 'Bug', 'Psychic', 505, 60, 45, 110, 80, 120, 90, 'https://img.pokemondb.net/artwork/orbeetle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/orbeetle.png', 826, 8), ('Nickit', 'Dark', '', 245, 40, 28, 28, 47, 52, 50, 'https://img.pokemondb.net/artwork/nickit.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/nickit.png', 827, 8), ('Thievul', 'Dark', '', 455, 70, 58, 58, 87, 92, 90, 'https://img.pokemondb.net/artwork/thievul.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/thievul.png', 828, 8), ('Gossifleur', 'Grass', '', 250, 40, 40, 60, 40, 60, 10, 'https://img.pokemondb.net/artwork/gossifleur.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/gossifleur.png', 829, 8), ('Eldegoss', 'Grass', '', 460, 60, 50, 90, 80, 120, 60, 'https://img.pokemondb.net/artwork/eldegoss.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/eldegoss.png', 830, 8), ('Wooloo', 'Normal', '', 270, 42, 40, 55, 40, 45, 48, 'https://img.pokemondb.net/artwork/wooloo.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/wooloo.png', 831, 8), ('Dubwool', 'Normal', '', 490, 72, 80, 100, 60, 90, 88, 'https://img.pokemondb.net/artwork/dubwool.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dubwool.png', 832, 8), ('Chewtle', 'Water', '', 284, 50, 64, 50, 38, 38, 44, 'https://img.pokemondb.net/artwork/chewtle.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/chewtle.png', 833, 8), ('Drednaw', 'Water', 'Rock', 485, 90, 115, 90, 48, 68, 74, 'https://img.pokemondb.net/artwork/drednaw.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drednaw.png', 834, 8), ('Yamper', 'Electric', '', 270, 59, 45, 50, 40, 50, 26, 'https://img.pokemondb.net/artwork/yamper.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/yamper.png', 835, 8), ('Boltund', 'Electric', '', 490, 69, 90, 60, 90, 60, 121, 'https://img.pokemondb.net/artwork/boltund.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/boltund.png', 836, 8), ('Rolycoly', 'Rock', '', 240, 30, 40, 50, 40, 50, 30, 'https://img.pokemondb.net/artwork/rolycoly.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/rolycoly.png', 837, 8), ('Carkol', 'Rock', 'Fire', 410, 80, 60, 90, 60, 70, 50, 'https://img.pokemondb.net/artwork/carkol.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/carkol.png', 838, 8), ('Coalossal', 'Rock', 'Fire', 510, 110, 80, 120, 80, 90, 30, 'https://img.pokemondb.net/artwork/coalossal.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/coalossal.png', 839, 8), ('Applin', 'Grass', 'Dragon', 260, 40, 40, 80, 40, 40, 20, 'https://img.pokemondb.net/artwork/applin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/applin.png', 840, 8), ('Flapple', 'Grass', 'Dragon', 485, 70, 110, 80, 95, 60, 70, 'https://img.pokemondb.net/artwork/flapple.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/flapple.png', 841, 8), ('Appletun', 'Grass', 'Dragon', 485, 110, 85, 80, 100, 80, 30, 'https://img.pokemondb.net/artwork/appletun.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/appletun.png', 842, 8), ('Silicobra', 'Ground', '', 315, 52, 57, 75, 35, 50, 46, 'https://img.pokemondb.net/artwork/silicobra.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/silicobra.png', 843, 8), ('Sandaconda', 'Ground', '', 510, 72, 107, 125, 65, 70, 71, 'https://img.pokemondb.net/artwork/sandaconda.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sandaconda.png', 844, 8), ('Cramorant', 'Flying', 'Water', 475, 70, 85, 55, 85, 95, 85, 'https://img.pokemondb.net/artwork/cramorant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cramorant.png', 845, 8), ('Arrokuda', 'Water', '', 280, 41, 63, 40, 40, 30, 66, 'https://img.pokemondb.net/artwork/arrokuda.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/arrokuda.png', 846, 8), ('Barraskewda', 'Water', '', 490, 61, 123, 60, 60, 50, 136, 'https://img.pokemondb.net/artwork/barraskewda.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/barraskewda.png', 847, 8), ('Toxel', 'Electric', 'Poison', 242, 40, 38, 35, 54, 35, 40, 'https://img.pokemondb.net/artwork/toxel.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/toxel.png', 848, 8), ('Toxtricity', 'Electric', 'Poison', 502, 75, 98, 70, 114, 70, 75, 'https://img.pokemondb.net/artwork/toxtricity.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/toxtricity-low-key.png', 849, 8), ('Sizzlipede', 'Fire', 'Bug', 305, 50, 65, 45, 50, 50, 45, 'https://img.pokemondb.net/artwork/sizzlipede.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sizzlipede.png', 850, 8), ('Centiskorch', 'Fire', 'Bug', 525, 100, 115, 65, 90, 90, 65, 'https://img.pokemondb.net/artwork/centiskorch.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/centiskorch.png', 851, 8), ('Clobbopus', 'Fighting', '', 310, 50, 68, 60, 50, 50, 32, 'https://img.pokemondb.net/artwork/clobbopus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/clobbopus.png', 852, 8), ('Grapploct', 'Fighting', '', 480, 80, 118, 90, 70, 80, 42, 'https://img.pokemondb.net/artwork/grapploct.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grapploct.png', 853, 8), ('Sinistea', 'Ghost', '', 308, 40, 45, 45, 74, 54, 50, 'https://img.pokemondb.net/artwork/sinistea.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sinistea.png', 854, 8), ('Polteageist', 'Ghost', '', 508, 60, 65, 65, 134, 114, 70, 'https://img.pokemondb.net/artwork/polteageist.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/polteageist.png', 855, 8), ('Hatenna', 'Psychic', '', 265, 42, 30, 45, 56, 53, 39, 'https://img.pokemondb.net/artwork/hatenna.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hatenna.png', 856, 8), ('Hattrem', 'Psychic', '', 370, 57, 40, 65, 86, 73, 49, 'https://img.pokemondb.net/artwork/hattrem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hattrem.png', 857, 8), ('Hatterene', 'Psychic', 'Fairy', 510, 57, 90, 95, 136, 103, 29, 'https://img.pokemondb.net/artwork/hatterene.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/hatterene.png', 858, 8), ('Impidimp', 'Dark', 'Fairy', 265, 45, 45, 30, 55, 40, 50, 'https://img.pokemondb.net/artwork/impidimp.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/impidimp.png', 859, 8), ('Morgrem', 'Dark', 'Fairy', 370, 65, 60, 45, 75, 55, 70, 'https://img.pokemondb.net/artwork/morgrem.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/morgrem.png', 860, 8), ('Grimmsnarl', 'Dark', 'Fairy', 510, 95, 120, 65, 95, 75, 60, 'https://img.pokemondb.net/artwork/grimmsnarl.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/grimmsnarl.png', 861, 8), ('Obstagoon', 'Dark', 'Normal', 520, 93, 90, 101, 60, 81, 95, 'https://img.pokemondb.net/artwork/obstagoon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/obstagoon.png', 862, 8), ('Perrserker', 'Steel', '', 440, 70, 110, 100, 50, 60, 50, 'https://img.pokemondb.net/artwork/perrserker.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/perrserker.png', 863, 8), ('Cursola', 'Ghost', '', 510, 60, 95, 50, 145, 130, 30, 'https://img.pokemondb.net/artwork/cursola.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cursola.png', 864, 8), ('Sirfetch\'d', 'Fighting', '', 507, 62, 135, 95, 68, 82, 65, 'https://img.pokemondb.net/artwork/sirfetchd.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/sirfetchd.png', 865, 8), ('Mr. Rime', 'Ice', 'Psychic', 520, 80, 85, 75, 110, 100, 70, 'https://img.pokemondb.net/artwork/mr-rime.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/mr-rime.png', 866, 8), ('Runerigus', 'Ground', 'Ghost', 483, 58, 95, 145, 50, 105, 30, 'https://img.pokemondb.net/artwork/runerigus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/runerigus.png', 867, 8), ('Milcery', 'Fairy', '', 270, 45, 40, 40, 50, 61, 34, 'https://img.pokemondb.net/artwork/milcery.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/milcery.png', 868, 8), ('Alcremie', 'Fairy', '', 495, 65, 60, 75, 110, 121, 64, 'https://img.pokemondb.net/artwork/alcremie.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/alcremie.png', 869, 8), ('Falinks', 'Fighting', '', 470, 65, 100, 100, 70, 60, 75, 'https://img.pokemondb.net/artwork/falinks.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/falinks.png', 870, 8), ('Pincurchin', 'Electric', '', 435, 48, 101, 95, 91, 85, 15, 'https://img.pokemondb.net/artwork/pincurchin.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/pincurchin.png', 871, 8), ('Snom', 'Ice', 'Bug', 185, 30, 25, 35, 45, 30, 20, 'https://img.pokemondb.net/artwork/snom.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/snom.png', 872, 8), ('Frosmoth', 'Ice', 'Bug', 475, 70, 65, 60, 125, 90, 65, 'https://img.pokemondb.net/artwork/frosmoth.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/frosmoth.png', 873, 8), ('Stonjourner', 'Rock', '', 470, 100, 125, 135, 20, 20, 70, 'https://img.pokemondb.net/artwork/stonjourner.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/stonjourner.png', 874, 8), ('Eiscue', 'Ice', '', 470, 75, 80, 110, 65, 90, 50, 'https://img.pokemondb.net/artwork/eiscue.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/eiscue-ice.png', 875, 8), ('Indeedee', 'Psychic', 'Normal', 475, 60, 65, 55, 105, 95, 95, 'https://img.pokemondb.net/artwork/indeedee.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/indeedee-male.png', 876, 8), ('Morpeko', 'Electric', 'Dark', 436, 58, 95, 58, 70, 58, 97, 'https://img.pokemondb.net/artwork/morpeko.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/morpeko-full-belly.png', 877, 8), ('Cufant', 'Steel', '', 330, 72, 80, 49, 40, 49, 40, 'https://img.pokemondb.net/artwork/cufant.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/cufant.png', 878, 8), ('Copperajah', 'Steel', '', 500, 122, 130, 69, 80, 69, 30, 'https://img.pokemondb.net/artwork/copperajah.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/copperajah.png', 879, 8), ('Dracozolt', 'Electric', 'Dragon', 505, 90, 100, 90, 80, 70, 75, 'https://img.pokemondb.net/artwork/dracozolt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dracozolt.png', 880, 8), ('Arctozolt', 'Electric', 'Ice', 505, 90, 100, 90, 90, 80, 55, 'https://img.pokemondb.net/artwork/arctozolt.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/arctozolt.png', 881, 8), ('Dracovish', 'Water', 'Dragon', 505, 90, 90, 100, 70, 80, 75, 'https://img.pokemondb.net/artwork/dracovish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dracovish.png', 882, 8), ('Arctovish', 'Water', 'Ice', 505, 90, 90, 100, 80, 90, 55, 'https://img.pokemondb.net/artwork/arctovish.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/arctovish.png', 883, 8), ('Duraludon', 'Steel', 'Dragon', 535, 70, 95, 115, 120, 50, 85, 'https://img.pokemondb.net/artwork/duraludon.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/duraludon.png', 884, 8), ('Dreepy', 'Dragon', 'Ghost', 270, 28, 60, 30, 40, 30, 82, 'https://img.pokemondb.net/artwork/dreepy.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dreepy.png', 885, 8), ('Drakloak', 'Dragon', 'Ghost', 410, 68, 80, 50, 60, 50, 102, 'https://img.pokemondb.net/artwork/drakloak.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/drakloak.png', 886, 8), ('Dragapult', 'Dragon', 'Ghost', 600, 88, 120, 75, 100, 75, 142, 'https://img.pokemondb.net/artwork/dragapult.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/dragapult.png', 887, 8), ('Zacian', 'Fairy', 'Steel', 720, 92, 170, 115, 80, 115, 148, 'https://img.pokemondb.net/artwork/zacian.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zacian-crowned.png', 888, 8), ('Zamazenta', 'Fighting', 'Steel', 720, 92, 130, 145, 80, 145, 128, 'https://img.pokemondb.net/artwork/zamazenta.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zamazenta-crowned.png', 889, 8), ('Eternatus', 'Poison', 'Dragon', 690, 140, 85, 95, 145, 95, 130, 'https://img.pokemondb.net/artwork/eternatus.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/eternatus.png', 890, 8), ('Kubfu', 'Fighting', '', 385, 60, 90, 60, 53, 50, 72, 'https://img.pokemondb.net/artwork/kubfu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/kubfu.png', 891, 8), ('Urshifu', 'Fighting', 'Dark', 550, 100, 130, 100, 63, 60, 97, 'https://img.pokemondb.net/artwork/urshifu.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/urshifu-single-strike.png', 892, 8), ('Zarude', 'Dark', 'Grass', 600, 105, 120, 105, 70, 95, 105, 'https://img.pokemondb.net/artwork/zarude.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/zarude.png', 893, 8), ('Regieleki', 'Electric', '', 580, 80, 100, 50, 100, 50, 200, 'https://img.pokemondb.net/artwork/regieleki.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/regieleki.png', 894, 8), ('Regidrago', 'Dragon', '', 580, 200, 100, 50, 100, 50, 80, 'https://img.pokemondb.net/artwork/regidrago.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/regidrago.png', 895, 8), ('Glastrier', 'Ice', '', 580, 100, 145, 130, 65, 110, 30, 'https://img.pokemondb.net/artwork/glastrier.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/glastrier.png', 896, 8), ('Spectrier', 'Ghost', '', 580, 100, 65, 60, 145, 80, 130, 'https://img.pokemondb.net/artwork/spectrier.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/spectrier.png', 897, 8), ('Calyrex', 'Psychic', 'Grass', 500, 100, 80, 80, 80, 80, 80, 'https://img.pokemondb.net/artwork/calyrex.jpg', 'https://img.pokemondb.net/sprites/sword-shield/icon/calyrex.png', 898, 8); -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `defense` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `defense` ( `id_pokemon` int ,`defense` int ); -- -------------------------------------------------------- -- -- Structure de la table `generations` -- CREATE TABLE `generations` ( `id_generations` int NOT NULL, `generation` varchar(45) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- -- Déchargement des données de la table `generations` -- INSERT INTO `generations` (`id_generations`, `generation`) VALUES (1, '1'), (2, '2'), (3, '3'), (4, '4'), (5, '5'), (6, '6'), (7, '7'), (8, '8'); -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `hp` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `hp` ( `id_pokemon` int ,`hp` int ); -- -------------------------------------------------------- -- -- Structure de la table `infos` -- CREATE TABLE `infos` ( `id_pokemon` int NOT NULL, `name` varchar(45) NOT NULL, `url` varchar(1000) NOT NULL, `total` int NOT NULL, `hp` int NOT NULL, `attack` int NOT NULL, `defense` int NOT NULL, `special_attack` int NOT NULL, `special_defense` int NOT NULL, `speed` int NOT NULL, `generations_id_generations` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- -- Déchargement des données de la table `infos` -- INSERT INTO `infos` (`id_pokemon`, `name`, `url`, `total`, `hp`, `attack`, `defense`, `special_attack`, `special_defense`, `speed`, `generations_id_generations`) VALUES (1, 'Bulbasaur', 'https://img.pokemondb.net/artwork/bulbasaur.jpg', 1, 2, 3, 3, 4, 4, 2, 1), (2, 'Ivysaur', 'https://img.pokemondb.net/artwork/ivysaur.jpg', 5, 6, 7, 8, 9, 9, 6, 1), (3, 'Venusaur', 'https://img.pokemondb.net/artwork/venusaur.jpg', 10, 9, 11, 12, 13, 13, 9, 1), (4, 'Charmander', 'https://img.pokemondb.net/artwork/charmander.jpg', 14, 15, 16, 17, 6, 18, 4, 1), (5, 'Charmeleon', 'https://img.pokemondb.net/artwork/charmeleon.jpg', 5, 19, 20, 19, 9, 4, 9, 1), (6, 'Charizard', 'https://img.pokemondb.net/artwork/charizard.jpg', 21, 22, 23, 22, 24, 25, 13, 1), (7, 'Squirtle', 'https://img.pokemondb.net/artwork/squirtle.jpg', 26, 27, 28, 4, 18, 20, 17, 1), (8, 'Wartortle', 'https://img.pokemondb.net/artwork/wartortle.jpg', 5, 29, 8, 9, 4, 9, 19, 1), (9, 'Blastoise', 'https://img.pokemondb.net/artwork/blastoise.jpg', 30, 31, 12, 13, 25, 32, 22, 1), (10, 'Caterpie', 'https://img.pokemondb.net/artwork/caterpie.jpg', 33, 2, 34, 35, 36, 36, 2, 1), (11, 'Metapod', 'https://img.pokemondb.net/artwork/metapod.jpg', 37, 18, 36, 38, 39, 39, 34, 1), (12, 'Butterfree', 'https://img.pokemondb.net/artwork/butterfree.jpg', 40, 6, 2, 18, 41, 9, 42, 1), (13, 'Weedle', 'https://img.pokemondb.net/artwork/weedle.jpg', 33, 43, 35, 34, 36, 36, 18, 1), (14, 'Kakuna', 'https://img.pokemondb.net/artwork/kakuna.jpg', 37, 2, 39, 18, 39, 39, 35, 1), (15, 'Beedrill', 'https://img.pokemondb.net/artwork/beedrill.jpg', 40, 4, 41, 43, 2, 9, 44, 1), (16, 'Pidgey', 'https://img.pokemondb.net/artwork/pidgey.jpg', 45, 43, 2, 43, 35, 35, 46, 1), (17, 'Pidgeotto', 'https://img.pokemondb.net/artwork/pidgeotto.jpg', 47, 8, 6, 38, 18, 18, 48, 1), (18, 'Pidgeot', 'https://img.pokemondb.net/artwork/pidgeot.jpg', 49, 12, 9, 44, 42, 42, 50, 1), (19, 'Rattata', 'https://img.pokemondb.net/artwork/rattata.jpg', 51, 34, 46, 35, 39, 35, 52, 1), (20, 'Raticate', 'https://img.pokemondb.net/artwork/raticate.jpg', 53, 38, 54, 6, 18, 42, 55, 1), (21, 'Spearow', 'https://img.pokemondb.net/artwork/spearow.jpg', 56, 43, 6, 34, 57, 57, 42, 1), (22, 'Fearow', 'https://img.pokemondb.net/artwork/fearow.jpg', 58, 4, 41, 4, 59, 59, 13, 1), (23, 'Ekans', 'https://img.pokemondb.net/artwork/ekans.jpg', 60, 35, 6, 27, 43, 61, 38, 1), (24, 'Arbok', 'https://img.pokemondb.net/artwork/arbok.jpg', 62, 6, 63, 64, 4, 31, 9, 1), (25, 'Pikachu', 'https://img.pokemondb.net/artwork/pikachu.jpg', 65, 35, 38, 43, 18, 18, 41, 1), (26, 'Raichu', 'https://img.pokemondb.net/artwork/raichu.jpg', 66, 6, 41, 38, 41, 9, 67, 1), (27, 'Sandshrew', 'https://img.pokemondb.net/artwork/sandshrew.jpg', 68, 18, 44, 25, 36, 34, 43, 1), (28, 'Sandslash', 'https://img.pokemondb.net/artwork/sandslash.jpg', 69, 44, 13, 67, 2, 38, 4, 1), (29, 'Nidoran♀', 'https://img.pokemondb.net/artwork/nidoran-f.jpg', 70, 38, 71, 16, 43, 43, 72, 1), (30, 'Nidorina', 'https://img.pokemondb.net/artwork/nidorina.jpg', 73, 42, 7, 74, 38, 38, 46, 1), (31, 'Nidoqueen', 'https://img.pokemondb.net/artwork/nidoqueen.jpg', 75, 41, 76, 77, 44, 25, 78, 1), (32, 'Nidoran♂', 'https://img.pokemondb.net/artwork/nidoran-m.jpg', 79, 80, 81, 43, 43, 43, 18, 1), (33, 'Nidorino', 'https://img.pokemondb.net/artwork/nidorino.jpg', 73, 59, 52, 81, 38, 38, 4, 1), (34, 'Nidoking', 'https://img.pokemondb.net/artwork/nidoking.jpg', 75, 54, 82, 83, 25, 44, 25, 1), (35, 'Clefairy', 'https://img.pokemondb.net/artwork/clefairy.jpg', 84, 42, 2, 28, 6, 4, 35, 1), (36, 'Clefable', 'https://img.pokemondb.net/artwork/clefable.jpg', 85, 63, 42, 86, 63, 41, 6, 1), (37, 'Vulpix', 'https://img.pokemondb.net/artwork/vulpix.jpg', 87, 88, 72, 43, 18, 4, 4, 1), (38, 'Ninetales', 'https://img.pokemondb.net/artwork/ninetales.jpg', 75, 86, 78, 44, 54, 13, 13, 1), (39, 'Jigglypuff', 'https://img.pokemondb.net/artwork/jigglypuff.jpg', 89, 90, 2, 36, 2, 39, 36, 1), (40, 'Wigglytuff', 'https://img.pokemondb.net/artwork/wigglytuff.jpg', 91, 92, 42, 2, 25, 18, 2, 1), (41, 'Zubat', 'https://img.pokemondb.net/artwork/zubat.jpg', 93, 43, 2, 35, 34, 43, 38, 1), (42, 'Golbat', 'https://img.pokemondb.net/artwork/golbat.jpg', 94, 44, 9, 42, 4, 44, 41, 1), (43, 'Oddish', 'https://img.pokemondb.net/artwork/oddish.jpg', 65, 2, 18, 38, 44, 4, 34, 1), (44, 'Gloom', 'https://img.pokemondb.net/artwork/gloom.jpg', 40, 6, 4, 42, 25, 44, 43, 1), (45, 'Vileplume', 'https://img.pokemondb.net/artwork/vileplume.jpg', 95, 44, 9, 25, 67, 41, 18, 1), (46, 'Paras', 'https://img.pokemondb.net/artwork/paras.jpg', 96, 35, 42, 38, 2, 38, 39, 1), (47, 'Parasect', 'https://img.pokemondb.net/artwork/parasect.jpg', 5, 6, 63, 9, 6, 9, 34, 1), (48, 'Venonat', 'https://img.pokemondb.net/artwork/venonat.jpg', 97, 6, 38, 18, 43, 38, 2, 1), (49, 'Venomoth', 'https://img.pokemondb.net/artwork/venomoth.jpg', 69, 42, 4, 6, 41, 44, 41, 1), (50, 'Diglett', 'https://img.pokemondb.net/artwork/diglett.jpg', 98, 99, 38, 39, 35, 2, 63, 1), (51, 'Dugtrio', 'https://img.pokemondb.net/artwork/dugtrio.jpg', 100, 35, 13, 18, 18, 42, 101, 1), (52, 'Meowth', 'https://img.pokemondb.net/artwork/meowth.jpg', 102, 43, 2, 35, 43, 43, 41, 1), (53, 'Persian', 'https://img.pokemondb.net/artwork/persian.jpg', 103, 4, 42, 6, 4, 4, 90, 1), (54, 'Psyduck', 'https://img.pokemondb.net/artwork/psyduck.jpg', 65, 18, 16, 28, 4, 18, 38, 1), (55, 'Golduck', 'https://img.pokemondb.net/artwork/golduck.jpg', 104, 9, 11, 22, 63, 9, 25, 1), (56, 'Mankey', 'https://img.pokemondb.net/artwork/mankey.jpg', 97, 43, 9, 35, 35, 2, 42, 1), (57, 'Primeape', 'https://img.pokemondb.net/artwork/primeape.jpg', 94, 4, 32, 6, 6, 42, 63, 1), (58, 'Growlithe', 'https://img.pokemondb.net/artwork/growlithe.jpg', 105, 38, 42, 2, 42, 18, 6, 1), (59, 'Arcanine', 'https://img.pokemondb.net/artwork/arcanine.jpg', 106, 41, 67, 9, 13, 9, 63, 1), (60, 'Poliwag', 'https://img.pokemondb.net/artwork/poliwag.jpg', 68, 43, 18, 43, 43, 43, 41, 1), (61, 'Poliwhirl', 'https://img.pokemondb.net/artwork/poliwhirl.jpg', 107, 4, 4, 4, 18, 18, 41, 1), (62, 'Poliwrath', 'https://img.pokemondb.net/artwork/poliwrath.jpg', 108, 41, 63, 63, 42, 41, 42, 1), (63, 'Abra', 'https://img.pokemondb.net/artwork/abra.jpg', 109, 39, 36, 110, 32, 38, 41, 1), (64, 'Kadabra', 'https://img.pokemondb.net/artwork/kadabra.jpg', 111, 43, 35, 34, 101, 42, 32, 1), (65, 'Alakazam', 'https://img.pokemondb.net/artwork/alakazam.jpg', 104, 38, 18, 2, 112, 63, 101, 1), (66, 'Machop', 'https://img.pokemondb.net/artwork/machop.jpg', 97, 42, 9, 18, 35, 35, 35, 1), (67, 'Machoke', 'https://img.pokemondb.net/artwork/machoke.jpg', 5, 9, 13, 42, 18, 6, 2, 1), (68, 'Machamp', 'https://img.pokemondb.net/artwork/machamp.jpg', 75, 41, 113, 9, 4, 25, 38, 1), (69, 'Bellsprout', 'https://img.pokemondb.net/artwork/bellsprout.jpg', 68, 18, 44, 35, 42, 34, 43, 1), (70, 'Weepinbell', 'https://img.pokemondb.net/artwork/weepinbell.jpg', 114, 4, 41, 18, 25, 2, 38, 1), (71, 'Victreebel', 'https://img.pokemondb.net/artwork/victreebel.jpg', 95, 9, 32, 4, 13, 42, 42, 1), (72, 'Tentacool', 'https://img.pokemondb.net/artwork/tentacool.jpg', 115, 43, 43, 35, 18, 13, 42, 1), (73, 'Tentacruel', 'https://img.pokemondb.net/artwork/tentacruel.jpg', 116, 9, 42, 4, 9, 101, 13, 1), (74, 'Geodude', 'https://img.pokemondb.net/artwork/geodude.jpg', 68, 43, 9, 13, 34, 34, 36, 1), (75, 'Graveler', 'https://img.pokemondb.net/artwork/graveler.jpg', 114, 38, 63, 90, 2, 2, 35, 1), (76, 'Golem', 'https://img.pokemondb.net/artwork/golem.jpg', 117, 9, 101, 113, 38, 4, 2, 1), (77, 'Ponyta', 'https://img.pokemondb.net/artwork/ponyta.jpg', 118, 18, 25, 38, 4, 4, 41, 1), (78, 'Rapidash', 'https://img.pokemondb.net/artwork/rapidash.jpg', 104, 4, 13, 42, 9, 9, 32, 1), (79, 'Slowpoke', 'https://img.pokemondb.net/artwork/slowpoke.jpg', 119, 41, 4, 4, 43, 43, 110, 1), (80, 'Slowbro', 'https://img.pokemondb.net/artwork/slowbro.jpg', 95, 63, 44, 67, 13, 9, 34, 1), (81, 'Magnemite', 'https://img.pokemondb.net/artwork/magnemite.jpg', 120, 39, 35, 42, 63, 38, 2, 1), (82, 'Magneton', 'https://img.pokemondb.net/artwork/magneton.jpg', 121, 18, 6, 63, 101, 42, 42, 1), (83, 'Farfetch\'d', 'https://img.pokemondb.net/artwork/farfetchd.jpg', 122, 16, 41, 38, 19, 7, 6, 1), (84, 'Doduo', 'https://img.pokemondb.net/artwork/doduo.jpg', 109, 35, 25, 2, 35, 35, 44, 1), (85, 'Dodrio', 'https://img.pokemondb.net/artwork/dodrio.jpg', 123, 6, 67, 42, 6, 6, 67, 1), (86, 'Seel', 'https://img.pokemondb.net/artwork/seel.jpg', 120, 4, 2, 38, 2, 42, 2, 1), (87, 'Dewgong', 'https://img.pokemondb.net/artwork/dewgong.jpg', 124, 41, 42, 9, 42, 63, 42, 1), (88, 'Grimer', 'https://img.pokemondb.net/artwork/grimer.jpg', 120, 9, 9, 18, 43, 18, 39, 1), (89, 'Muk', 'https://img.pokemondb.net/artwork/muk.jpg', 104, 32, 32, 44, 4, 13, 18, 1), (90, 'Shellder', 'https://img.pokemondb.net/artwork/shellder.jpg', 97, 34, 4, 13, 2, 39, 43, 1), (91, 'Cloyster', 'https://img.pokemondb.net/artwork/cloyster.jpg', 10, 18, 63, 125, 25, 2, 42, 1), (92, 'Gastly', 'https://img.pokemondb.net/artwork/gastly.jpg', 109, 34, 35, 34, 13, 35, 9, 1), (93, 'Haunter', 'https://img.pokemondb.net/artwork/haunter.jpg', 5, 2, 18, 2, 90, 38, 63, 1), (94, 'Gengar', 'https://img.pokemondb.net/artwork/gengar.jpg', 104, 6, 4, 6, 113, 44, 67, 1), (95, 'Onix', 'https://img.pokemondb.net/artwork/onix.jpg', 107, 35, 2, 126, 34, 2, 42, 1), (96, 'Drowzee', 'https://img.pokemondb.net/artwork/drowzee.jpg', 127, 6, 28, 2, 17, 41, 128, 1), (97, 'Hypno', 'https://img.pokemondb.net/artwork/hypno.jpg', 85, 25, 86, 42, 86, 90, 74, 1), (98, 'Krabby', 'https://img.pokemondb.net/artwork/krabby.jpg', 120, 34, 32, 41, 39, 39, 18, 1), (99, 'Kingler', 'https://img.pokemondb.net/artwork/kingler.jpg', 124, 38, 113, 90, 18, 18, 44, 1), (100, 'Voltorb', 'https://img.pokemondb.net/artwork/voltorb.jpg', 129, 43, 34, 18, 38, 38, 13, 1), (101, 'Electrode', 'https://img.pokemondb.net/artwork/electrode.jpg', 95, 6, 18, 42, 9, 9, 130, 1), (102, 'Exeggcute', 'https://img.pokemondb.net/artwork/exeggcute.jpg', 120, 6, 43, 9, 6, 2, 43, 1), (103, 'Exeggutor', 'https://img.pokemondb.net/artwork/exeggutor.jpg', 30, 63, 63, 25, 131, 44, 38, 1), (104, 'Cubone', 'https://img.pokemondb.net/artwork/cubone.jpg', 65, 18, 18, 63, 43, 18, 35, 1), (105, 'Marowak', 'https://img.pokemondb.net/artwork/marowak.jpg', 100, 6, 9, 67, 18, 9, 2, 1), (106, 'Hitmonlee', 'https://img.pokemondb.net/artwork/hitmonlee.jpg', 94, 18, 101, 132, 35, 67, 77, 1), (107, 'Hitmonchan', 'https://img.pokemondb.net/artwork/hitmonchan.jpg', 94, 18, 32, 31, 35, 67, 78, 1), (108, 'Lickitung', 'https://img.pokemondb.net/artwork/lickitung.jpg', 107, 41, 38, 44, 6, 44, 34, 1), (109, 'Koffing', 'https://img.pokemondb.net/artwork/koffing.jpg', 133, 43, 4, 63, 6, 2, 35, 1), (110, 'Weezing', 'https://img.pokemondb.net/artwork/weezing.jpg', 95, 4, 41, 101, 25, 42, 6, 1), (111, 'Rhyhorn', 'https://img.pokemondb.net/artwork/rhyhorn.jpg', 134, 9, 25, 63, 34, 34, 39, 1), (112, 'Rhydon', 'https://img.pokemondb.net/artwork/rhydon.jpg', 66, 32, 113, 101, 2, 2, 43, 1), (113, 'Chansey', 'https://img.pokemondb.net/artwork/chansey.jpg', 69, 135, 136, 136, 35, 32, 18, 1), (114, 'Tangela', 'https://img.pokemondb.net/artwork/tangela.jpg', 91, 4, 38, 90, 13, 43, 6, 1), (115, 'Kangaskhan', 'https://img.pokemondb.net/artwork/kangaskhan.jpg', 95, 32, 63, 9, 43, 9, 41, 1), (116, 'Horsea', 'https://img.pokemondb.net/artwork/horsea.jpg', 137, 34, 43, 42, 42, 39, 6, 1), (117, 'Seadra', 'https://img.pokemondb.net/artwork/seadra.jpg', 103, 38, 4, 63, 63, 2, 25, 1), (118, 'Goldeen', 'https://img.pokemondb.net/artwork/goldeen.jpg', 65, 2, 74, 6, 35, 18, 8, 1), (119, 'Seaking', 'https://img.pokemondb.net/artwork/seaking.jpg', 69, 9, 76, 4, 4, 9, 138, 1), (120, 'Staryu', 'https://img.pokemondb.net/artwork/staryu.jpg', 133, 34, 2, 38, 42, 38, 25, 1), (121, 'Starmie', 'https://img.pokemondb.net/artwork/starmie.jpg', 139, 6, 44, 25, 13, 25, 90, 1), (122, 'Mr. Mime', 'https://img.pokemondb.net/artwork/mr-mime.jpg', 140, 43, 2, 4, 13, 101, 41, 1), (123, 'Scyther', 'https://img.pokemondb.net/artwork/scyther.jpg', 104, 42, 67, 9, 38, 9, 32, 1), (124, 'Jynx', 'https://img.pokemondb.net/artwork/jynx.jpg', 94, 4, 18, 35, 90, 63, 63, 1), (125, 'Electabuzz', 'https://img.pokemondb.net/artwork/electabuzz.jpg', 95, 4, 12, 81, 63, 25, 32, 1), (126, 'Magmar', 'https://img.pokemondb.net/artwork/magmar.jpg', 117, 4, 63, 81, 13, 25, 141, 1), (127, 'Pinsir', 'https://img.pokemondb.net/artwork/pinsir.jpg', 104, 4, 131, 13, 38, 42, 25, 1), (128, 'Tauros', 'https://img.pokemondb.net/artwork/tauros.jpg', 95, 44, 13, 63, 43, 42, 67, 1), (129, 'Magikarp', 'https://img.pokemondb.net/artwork/magikarp.jpg', 142, 36, 99, 38, 110, 36, 9, 1), (130, 'Gyarados', 'https://img.pokemondb.net/artwork/gyarados.jpg', 143, 63, 131, 31, 6, 13, 54, 1), (131, 'Lapras', 'https://img.pokemondb.net/artwork/lapras.jpg', 144, 113, 25, 9, 25, 63, 6, 1), (132, 'Ditto', 'https://img.pokemondb.net/artwork/ditto.jpg', 60, 28, 28, 28, 28, 28, 28, 1), (133, 'Eevee', 'https://img.pokemondb.net/artwork/eevee.jpg', 120, 38, 38, 18, 2, 4, 38, 1), (134, 'Vaporeon', 'https://img.pokemondb.net/artwork/vaporeon.jpg', 10, 113, 4, 6, 67, 63, 4, 1), (135, 'Jolteon', 'https://img.pokemondb.net/artwork/jolteon.jpg', 10, 4, 4, 6, 67, 63, 113, 1), (136, 'Flareon', 'https://img.pokemondb.net/artwork/flareon.jpg', 10, 4, 113, 6, 63, 67, 4, 1), (137, 'Porygon', 'https://img.pokemondb.net/artwork/porygon.jpg', 40, 4, 6, 42, 25, 44, 43, 1), (138, 'Omanyte', 'https://img.pokemondb.net/artwork/omanyte.jpg', 145, 35, 43, 13, 41, 38, 35, 1), (139, 'Omastar', 'https://img.pokemondb.net/artwork/omastar.jpg', 117, 42, 6, 131, 90, 42, 38, 1), (140, 'Kabuto', 'https://img.pokemondb.net/artwork/kabuto.jpg', 145, 34, 9, 41, 38, 2, 38, 1), (141, 'Kabutops', 'https://img.pokemondb.net/artwork/kabutops.jpg', 117, 6, 90, 32, 4, 42, 9, 1), (142, 'Aerodactyl', 'https://img.pokemondb.net/artwork/aerodactyl.jpg', 116, 9, 32, 4, 6, 44, 113, 1), (143, 'Snorlax', 'https://img.pokemondb.net/artwork/snorlax.jpg', 143, 126, 67, 4, 4, 67, 34, 1), (144, 'Articuno', 'https://img.pokemondb.net/artwork/articuno.jpg', 146, 41, 25, 13, 63, 131, 25, 1), (145, 'Zapdos', 'https://img.pokemondb.net/artwork/zapdos.jpg', 146, 41, 41, 25, 131, 41, 13, 1), (146, 'Moltres', 'https://img.pokemondb.net/artwork/moltres.jpg', 146, 41, 13, 41, 131, 25, 41, 1), (147, 'Dratini', 'https://img.pokemondb.net/artwork/dratini.jpg', 68, 72, 20, 2, 18, 18, 18, 1), (148, 'Dragonair', 'https://img.pokemondb.net/artwork/dragonair.jpg', 147, 59, 23, 4, 42, 42, 42, 1), (149, 'Dragonite', 'https://img.pokemondb.net/artwork/dragonite.jpg', 148, 149, 150, 63, 13, 13, 9, 1), (150, 'Mewtwo', 'https://img.pokemondb.net/artwork/mewtwo.jpg', 151, 152, 67, 41, 153, 41, 113, 1), (151, 'Mew', 'https://img.pokemondb.net/artwork/mew.jpg', 148, 13, 13, 13, 13, 13, 13, 1), (152, 'Chikorita', 'https://img.pokemondb.net/artwork/chikorita.jpg', 1, 2, 3, 4, 3, 4, 2, 2), (153, 'Bayleef', 'https://img.pokemondb.net/artwork/bayleef.jpg', 5, 6, 7, 9, 8, 9, 6, 2), (154, 'Meganium', 'https://img.pokemondb.net/artwork/meganium.jpg', 10, 9, 11, 13, 12, 13, 9, 2), (155, 'Cyndaquil', 'https://img.pokemondb.net/artwork/cyndaquil.jpg', 14, 15, 16, 17, 6, 18, 4, 2), (156, 'Quilava', 'https://img.pokemondb.net/artwork/quilava.jpg', 5, 19, 20, 19, 9, 4, 9, 2), (157, 'Typhlosion', 'https://img.pokemondb.net/artwork/typhlosion.jpg', 21, 22, 23, 22, 24, 25, 13, 2), (158, 'Totodile', 'https://img.pokemondb.net/artwork/totodile.jpg', 26, 18, 4, 20, 27, 28, 17, 2), (159, 'Croconaw', 'https://img.pokemondb.net/artwork/croconaw.jpg', 5, 4, 9, 9, 29, 8, 19, 2), (160, 'Feraligatr', 'https://img.pokemondb.net/artwork/feraligatr.jpg', 30, 25, 32, 13, 31, 12, 22, 2), (161, 'Sentret', 'https://img.pokemondb.net/artwork/sentret.jpg', 154, 35, 80, 155, 35, 2, 36, 2), (162, 'Furret', 'https://img.pokemondb.net/artwork/furret.jpg', 156, 25, 78, 20, 2, 38, 41, 2), (163, 'Hoothoot', 'https://img.pokemondb.net/artwork/hoothoot.jpg', 56, 6, 34, 34, 157, 46, 18, 2), (164, 'Noctowl', 'https://img.pokemondb.net/artwork/noctowl.jpg', 158, 13, 18, 18, 159, 160, 42, 2), (165, 'Ledyba', 'https://img.pokemondb.net/artwork/ledyba.jpg', 98, 43, 36, 34, 43, 9, 38, 2), (166, 'Ledian', 'https://img.pokemondb.net/artwork/ledian.jpg', 114, 38, 35, 18, 38, 67, 25, 2), (167, 'Spinarak', 'https://img.pokemondb.net/artwork/spinarak.jpg', 135, 43, 6, 43, 43, 43, 34, 2), (168, 'Ariados', 'https://img.pokemondb.net/artwork/ariados.jpg', 111, 42, 41, 42, 6, 42, 43, 2), (169, 'Crobat', 'https://img.pokemondb.net/artwork/crobat.jpg', 144, 25, 41, 9, 42, 9, 113, 2), (170, 'Chinchou', 'https://img.pokemondb.net/artwork/chinchou.jpg', 129, 44, 88, 88, 46, 46, 74, 2), (171, 'Lanturn', 'https://img.pokemondb.net/artwork/lanturn.jpg', 140, 131, 19, 19, 78, 78, 74, 2), (172, 'Pichu', 'https://img.pokemondb.net/artwork/pichu.jpg', 37, 36, 43, 110, 35, 35, 6, 2), (173, 'Cleffa', 'https://img.pokemondb.net/artwork/cleffa.jpg', 161, 18, 39, 162, 2, 38, 110, 2), (174, 'Igglybuff', 'https://img.pokemondb.net/artwork/igglybuff.jpg', 163, 41, 34, 110, 43, 36, 110, 2), (175, 'Togepi', 'https://img.pokemondb.net/artwork/togepi.jpg', 93, 35, 36, 4, 43, 4, 36, 2), (176, 'Togetic', 'https://img.pokemondb.net/artwork/togetic.jpg', 5, 38, 43, 25, 9, 32, 43, 2), (177, 'Natu', 'https://img.pokemondb.net/artwork/natu.jpg', 65, 43, 18, 2, 42, 2, 42, 2), (178, 'Xatu', 'https://img.pokemondb.net/artwork/xatu.jpg', 123, 4, 44, 42, 63, 42, 63, 2), (179, 'Mareep', 'https://img.pokemondb.net/artwork/mareep.jpg', 164, 38, 43, 43, 4, 2, 35, 2), (180, 'Flaaffy', 'https://img.pokemondb.net/artwork/flaaffy.jpg', 73, 42, 38, 38, 9, 6, 2, 2), (181, 'Ampharos', 'https://img.pokemondb.net/artwork/ampharos.jpg', 108, 41, 44, 25, 90, 41, 38, 2), (182, 'Bellossom', 'https://img.pokemondb.net/artwork/bellossom.jpg', 95, 44, 9, 63, 41, 13, 18, 2), (183, 'Marill', 'https://img.pokemondb.net/artwork/marill.jpg', 135, 42, 36, 18, 36, 18, 43, 2), (184, 'Azumarill', 'https://img.pokemondb.net/artwork/azumarill.jpg', 147, 13, 18, 9, 6, 9, 18, 2), (185, 'Sudowoodo', 'https://img.pokemondb.net/artwork/sudowoodo.jpg', 118, 42, 13, 90, 34, 4, 34, 2), (186, 'Politoed', 'https://img.pokemondb.net/artwork/politoed.jpg', 104, 41, 44, 44, 41, 13, 42, 2), (187, 'Hoppip', 'https://img.pokemondb.net/artwork/hoppip.jpg', 135, 35, 35, 43, 35, 38, 18, 2), (188, 'Skiploom', 'https://img.pokemondb.net/artwork/skiploom.jpg', 133, 38, 2, 18, 2, 4, 9, 2), (189, 'Jumpluff', 'https://img.pokemondb.net/artwork/jumpluff.jpg', 140, 44, 38, 42, 38, 63, 67, 2), (190, 'Aipom', 'https://img.pokemondb.net/artwork/aipom.jpg', 165, 38, 42, 38, 43, 38, 25, 2), (191, 'Sunkern', 'https://img.pokemondb.net/artwork/sunkern.jpg', 125, 34, 34, 34, 34, 34, 34, 2), (192, 'Sunflora', 'https://img.pokemondb.net/artwork/sunflora.jpg', 100, 44, 44, 38, 32, 25, 34, 2), (193, 'Yanma', 'https://img.pokemondb.net/artwork/yanma.jpg', 114, 4, 4, 2, 44, 2, 63, 2), (194, 'Wooper', 'https://img.pokemondb.net/artwork/wooper.jpg', 163, 38, 2, 2, 39, 39, 110, 2), (195, 'Quagsire', 'https://img.pokemondb.net/artwork/quagsire.jpg', 166, 63, 25, 25, 4, 4, 35, 2), (196, 'Espeon', 'https://img.pokemondb.net/artwork/espeon.jpg', 10, 4, 4, 6, 113, 63, 67, 2), (197, 'Umbreon', 'https://img.pokemondb.net/artwork/umbreon.jpg', 10, 63, 4, 67, 6, 113, 4, 2), (198, 'Murkrow', 'https://img.pokemondb.net/artwork/murkrow.jpg', 5, 6, 25, 128, 25, 128, 149, 2), (199, 'Slowking', 'https://img.pokemondb.net/artwork/slowking.jpg', 95, 63, 44, 9, 13, 67, 34, 2), (200, 'Misdreavus', 'https://img.pokemondb.net/artwork/misdreavus.jpg', 91, 6, 6, 6, 25, 25, 25, 2), (201, 'Unown', 'https://img.pokemondb.net/artwork/unown.jpg', 167, 28, 52, 28, 52, 28, 28, 2), (202, 'Wobbuffet', 'https://img.pokemondb.net/artwork/wobbuffet.jpg', 5, 168, 169, 19, 169, 19, 169, 2), (203, 'Girafarig', 'https://img.pokemondb.net/artwork/girafarig.jpg', 94, 42, 9, 4, 41, 4, 25, 2), (204, 'Pineco', 'https://img.pokemondb.net/artwork/pineco.jpg', 102, 18, 4, 41, 35, 35, 110, 2), (205, 'Forretress', 'https://img.pokemondb.net/artwork/forretress.jpg', 121, 44, 41, 92, 6, 6, 43, 2), (206, 'Dunsparce', 'https://img.pokemondb.net/artwork/dunsparce.jpg', 156, 13, 42, 42, 4, 4, 2, 2), (207, 'Gligar', 'https://img.pokemondb.net/artwork/gligar.jpg', 166, 4, 44, 32, 35, 4, 25, 2), (208, 'Steelix', 'https://img.pokemondb.net/artwork/steelix.jpg', 108, 44, 25, 142, 38, 4, 34, 2), (209, 'Snubbull', 'https://img.pokemondb.net/artwork/snubbull.jpg', 68, 6, 9, 18, 43, 43, 34, 2), (210, 'Granbull', 'https://img.pokemondb.net/artwork/granbull.jpg', 69, 41, 101, 44, 6, 6, 2, 2), (211, 'Qwilfish', 'https://img.pokemondb.net/artwork/qwilfish.jpg', 103, 4, 63, 25, 38, 38, 25, 2), (212, 'Scizor', 'https://img.pokemondb.net/artwork/scizor.jpg', 104, 42, 113, 13, 38, 9, 4, 2), (213, 'Shuckle', 'https://img.pokemondb.net/artwork/shuckle.jpg', 75, 36, 99, 170, 99, 170, 136, 2), (214, 'Heracross', 'https://img.pokemondb.net/artwork/heracross.jpg', 104, 9, 131, 44, 43, 63, 25, 2), (215, 'Sneasel', 'https://img.pokemondb.net/artwork/sneasel.jpg', 166, 38, 63, 38, 35, 44, 90, 2), (216, 'Teddiursa', 'https://img.pokemondb.net/artwork/teddiursa.jpg', 129, 6, 9, 18, 18, 18, 43, 2), (217, 'Ursaring', 'https://img.pokemondb.net/artwork/ursaring.jpg', 104, 41, 113, 44, 44, 44, 38, 2), (218, 'Slugma', 'https://img.pokemondb.net/artwork/slugma.jpg', 135, 43, 43, 43, 42, 43, 36, 2), (219, 'Magcargo', 'https://img.pokemondb.net/artwork/magcargo.jpg', 166, 6, 18, 101, 41, 9, 34, 2), (220, 'Swinub', 'https://img.pokemondb.net/artwork/swinub.jpg', 135, 18, 18, 43, 34, 34, 18, 2), (221, 'Piloswine', 'https://img.pokemondb.net/artwork/piloswine.jpg', 69, 13, 13, 9, 6, 6, 18, 2), (222, 'Corsola', 'https://img.pokemondb.net/artwork/corsola.jpg', 118, 4, 38, 63, 4, 63, 35, 2), (223, 'Remoraid', 'https://img.pokemondb.net/artwork/remoraid.jpg', 68, 35, 4, 35, 4, 35, 4, 2), (224, 'Octillery', 'https://img.pokemondb.net/artwork/octillery.jpg', 171, 44, 32, 44, 32, 44, 2, 2), (225, 'Delibird', 'https://img.pokemondb.net/artwork/delibird.jpg', 129, 2, 38, 2, 4, 2, 44, 2), (226, 'Mantine', 'https://img.pokemondb.net/artwork/mantine.jpg', 66, 25, 43, 42, 9, 92, 42, 2), (227, 'Skarmory', 'https://img.pokemondb.net/artwork/skarmory.jpg', 121, 4, 9, 92, 43, 42, 42, 2), (228, 'Houndour', 'https://img.pokemondb.net/artwork/houndour.jpg', 129, 2, 6, 34, 9, 18, 4, 2), (229, 'Houndoom', 'https://img.pokemondb.net/artwork/houndoom.jpg', 104, 44, 41, 18, 67, 9, 63, 2), (230, 'Kingdra', 'https://img.pokemondb.net/artwork/kingdra.jpg', 143, 44, 63, 63, 63, 63, 25, 2), (231, 'Phanpy', 'https://img.pokemondb.net/artwork/phanpy.jpg', 129, 41, 6, 6, 43, 43, 43, 2), (232, 'Donphan', 'https://img.pokemondb.net/artwork/donphan.jpg', 104, 41, 101, 101, 6, 6, 18, 2), (233, 'Porygon2', 'https://img.pokemondb.net/artwork/porygon2.jpg', 116, 25, 9, 41, 32, 63, 6, 2), (234, 'Stantler', 'https://img.pokemondb.net/artwork/stantler.jpg', 121, 86, 63, 7, 25, 4, 25, 2), (235, 'Smeargle', 'https://img.pokemondb.net/artwork/smeargle.jpg', 135, 38, 36, 35, 36, 2, 44, 2), (236, 'Tyrogue', 'https://img.pokemondb.net/artwork/tyrogue.jpg', 163, 35, 35, 35, 35, 35, 35, 2), (237, 'Hitmontop', 'https://img.pokemondb.net/artwork/hitmontop.jpg', 94, 18, 63, 63, 35, 67, 42, 2), (238, 'Smoochum', 'https://img.pokemondb.net/artwork/smoochum.jpg', 97, 2, 34, 110, 25, 4, 4, 2), (239, 'Elekid', 'https://img.pokemondb.net/artwork/elekid.jpg', 165, 2, 8, 172, 4, 38, 63, 2), (240, 'Magby', 'https://img.pokemondb.net/artwork/magby.jpg', 73, 2, 44, 172, 42, 38, 12, 2), (241, 'Miltank', 'https://img.pokemondb.net/artwork/miltank.jpg', 95, 63, 9, 32, 43, 42, 13, 2), (242, 'Blissey', 'https://img.pokemondb.net/artwork/blissey.jpg', 143, 173, 99, 99, 44, 112, 38, 2), (243, 'Raikou', 'https://img.pokemondb.net/artwork/raikou.jpg', 146, 41, 25, 44, 90, 13, 90, 2), (244, 'Entei', 'https://img.pokemondb.net/artwork/entei.jpg', 146, 90, 90, 25, 41, 44, 13, 2), (245, 'Suicune', 'https://img.pokemondb.net/artwork/suicune.jpg', 146, 13, 44, 90, 41, 90, 25, 2), (246, 'Larvitar', 'https://img.pokemondb.net/artwork/larvitar.jpg', 68, 18, 20, 18, 2, 18, 72, 2), (247, 'Pupitar', 'https://img.pokemondb.net/artwork/pupitar.jpg', 118, 42, 23, 42, 4, 42, 174, 2), (248, 'Tyranitar', 'https://img.pokemondb.net/artwork/tyranitar.jpg', 148, 13, 150, 67, 63, 13, 59, 2), (249, 'Lugia', 'https://img.pokemondb.net/artwork/lugia.jpg', 151, 152, 41, 113, 41, 153, 67, 2), (250, 'Ho-oh', 'https://img.pokemondb.net/artwork/ho-oh.jpg', 151, 152, 113, 41, 67, 153, 41, 2), (251, 'Celebi', 'https://img.pokemondb.net/artwork/celebi.jpg', 148, 13, 13, 13, 13, 13, 13, 2), (252, 'Treecko', 'https://img.pokemondb.net/artwork/treecko.jpg', 109, 43, 2, 35, 4, 38, 42, 3), (253, 'Grovyle', 'https://img.pokemondb.net/artwork/grovyle.jpg', 5, 18, 4, 2, 25, 4, 63, 3), (254, 'Sceptile', 'https://img.pokemondb.net/artwork/sceptile.jpg', 30, 42, 25, 4, 32, 25, 101, 3), (255, 'Torchic', 'https://img.pokemondb.net/artwork/torchic.jpg', 109, 2, 6, 43, 42, 18, 2, 3), (256, 'Combusken', 'https://img.pokemondb.net/artwork/combusken.jpg', 5, 6, 25, 6, 25, 6, 38, 3), (257, 'Blaziken', 'https://img.pokemondb.net/artwork/blaziken.jpg', 30, 9, 101, 42, 67, 42, 9, 3), (258, 'Mudkip', 'https://img.pokemondb.net/artwork/mudkip.jpg', 109, 18, 42, 18, 18, 18, 43, 3), (259, 'Marshtomp', 'https://img.pokemondb.net/artwork/marshtomp.jpg', 5, 42, 25, 42, 6, 42, 18, 3), (260, 'Swampert', 'https://img.pokemondb.net/artwork/swampert.jpg', 144, 13, 67, 41, 25, 41, 6, 3), (261, 'Poochyena', 'https://img.pokemondb.net/artwork/poochyena.jpg', 175, 35, 38, 35, 34, 34, 35, 3), (262, 'Mightyena', 'https://img.pokemondb.net/artwork/mightyena.jpg', 147, 42, 41, 42, 6, 6, 42, 3), (263, 'Zigzagoon', 'https://img.pokemondb.net/artwork/zigzagoon.jpg', 176, 88, 34, 72, 34, 72, 6, 3), (264, 'Linoone', 'https://img.pokemondb.net/artwork/linoone.jpg', 147, 22, 42, 59, 18, 59, 13, 3), (265, 'Wurmple', 'https://img.pokemondb.net/artwork/wurmple.jpg', 33, 2, 2, 35, 36, 34, 36, 3), (266, 'Silcoon', 'https://img.pokemondb.net/artwork/silcoon.jpg', 37, 18, 35, 38, 39, 39, 110, 3), (267, 'Beautifly', 'https://img.pokemondb.net/artwork/beautifly.jpg', 40, 6, 42, 18, 13, 18, 4, 3), (268, 'Cascoon', 'https://img.pokemondb.net/artwork/cascoon.jpg', 37, 18, 35, 38, 39, 39, 110, 3), (269, 'Dustox', 'https://img.pokemondb.net/artwork/dustox.jpg', 107, 6, 18, 42, 18, 41, 4, 3), (270, 'Lotad', 'https://img.pokemondb.net/artwork/lotad.jpg', 175, 43, 34, 34, 43, 18, 34, 3), (271, 'Lombre', 'https://img.pokemondb.net/artwork/lombre.jpg', 133, 6, 18, 18, 6, 42, 18, 3), (272, 'Ludicolo', 'https://img.pokemondb.net/artwork/ludicolo.jpg', 171, 9, 42, 42, 41, 13, 42, 3), (273, 'Seedot', 'https://img.pokemondb.net/artwork/seedot.jpg', 175, 43, 43, 18, 34, 34, 34, 3), (274, 'Nuzleaf', 'https://img.pokemondb.net/artwork/nuzleaf.jpg', 133, 42, 42, 43, 6, 43, 6, 3), (275, 'Shiftry', 'https://img.pokemondb.net/artwork/shiftry.jpg', 171, 41, 13, 6, 41, 6, 9, 3), (276, 'Taillow', 'https://img.pokemondb.net/artwork/taillow.jpg', 89, 43, 38, 34, 34, 34, 25, 3), (277, 'Swellow', 'https://img.pokemondb.net/artwork/swellow.jpg', 94, 6, 25, 6, 44, 18, 131, 3), (278, 'Wingull', 'https://img.pokemondb.net/artwork/wingull.jpg', 89, 43, 34, 34, 38, 34, 25, 3), (279, 'Pelipper', 'https://img.pokemondb.net/artwork/pelipper.jpg', 103, 6, 18, 13, 63, 42, 4, 3), (280, 'Ralts', 'https://img.pokemondb.net/artwork/ralts.jpg', 177, 162, 39, 39, 2, 35, 43, 3), (281, 'Kirlia', 'https://img.pokemondb.net/artwork/kirlia.jpg', 178, 88, 35, 35, 4, 38, 18, 3), (282, 'Gardevoir', 'https://img.pokemondb.net/artwork/gardevoir.jpg', 179, 138, 4, 4, 131, 90, 9, 3), (283, 'Surskit', 'https://img.pokemondb.net/artwork/surskit.jpg', 180, 43, 34, 181, 18, 16, 4, 3), (284, 'Masquerain', 'https://img.pokemondb.net/artwork/masquerain.jpg', 182, 42, 6, 7, 13, 11, 9, 3), (285, 'Shroomish', 'https://img.pokemondb.net/artwork/shroomish.jpg', 137, 6, 43, 6, 43, 6, 35, 3), (286, 'Breloom', 'https://img.pokemondb.net/artwork/breloom.jpg', 140, 6, 113, 9, 6, 6, 42, 3), (287, 'Slakoth', 'https://img.pokemondb.net/artwork/slakoth.jpg', 164, 6, 6, 6, 35, 35, 34, 3), (288, 'Vigoroth', 'https://img.pokemondb.net/artwork/vigoroth.jpg', 103, 9, 9, 9, 38, 38, 41, 3), (289, 'Slaking', 'https://img.pokemondb.net/artwork/slaking.jpg', 183, 130, 126, 13, 63, 4, 13, 3), (290, 'Nincada', 'https://img.pokemondb.net/artwork/nincada.jpg', 184, 57, 2, 41, 34, 34, 43, 3), (291, 'Ninjask', 'https://img.pokemondb.net/artwork/ninjask.jpg', 185, 59, 41, 2, 18, 18, 126, 3), (292, 'Shedinja', 'https://img.pokemondb.net/artwork/shedinja.jpg', 186, 187, 41, 2, 34, 34, 43, 3), (293, 'Whismur', 'https://img.pokemondb.net/artwork/whismur.jpg', 176, 20, 174, 188, 174, 188, 162, 3), (294, 'Loudred', 'https://img.pokemondb.net/artwork/loudred.jpg', 165, 23, 48, 17, 48, 17, 28, 3), (295, 'Exploud', 'https://img.pokemondb.net/artwork/exploud.jpg', 95, 189, 149, 8, 149, 86, 138, 3), (296, 'Makuhita', 'https://img.pokemondb.net/artwork/makuhita.jpg', 190, 52, 6, 34, 36, 34, 39, 3), (297, 'Hariyama', 'https://img.pokemondb.net/artwork/hariyama.jpg', 191, 192, 101, 6, 43, 6, 18, 3), (298, 'Azurill', 'https://img.pokemondb.net/artwork/azurill.jpg', 168, 18, 36, 43, 36, 43, 36, 3), (299, 'Nosepass', 'https://img.pokemondb.net/artwork/nosepass.jpg', 193, 34, 2, 112, 2, 41, 34, 3), (300, 'Skitty', 'https://img.pokemondb.net/artwork/skitty.jpg', 194, 18, 2, 2, 35, 35, 18, 3), (301, 'Delcatty', 'https://img.pokemondb.net/artwork/delcatty.jpg', 111, 42, 4, 4, 38, 38, 41, 3), (302, 'Sableye', 'https://img.pokemondb.net/artwork/sableye.jpg', 195, 18, 44, 44, 4, 4, 18, 3), (303, 'Mawile', 'https://img.pokemondb.net/artwork/mawile.jpg', 195, 18, 25, 25, 38, 38, 18, 3), (304, 'Aron', 'https://img.pokemondb.net/artwork/aron.jpg', 129, 18, 42, 13, 43, 43, 34, 3), (305, 'Lairon', 'https://img.pokemondb.net/artwork/lairon.jpg', 166, 6, 41, 92, 18, 18, 43, 3), (306, 'Aggron', 'https://img.pokemondb.net/artwork/aggron.jpg', 30, 42, 67, 125, 6, 6, 18, 3), (307, 'Meditite', 'https://img.pokemondb.net/artwork/meditite.jpg', 164, 34, 43, 38, 43, 38, 6, 3), (308, 'Medicham', 'https://img.pokemondb.net/artwork/medicham.jpg', 118, 6, 6, 44, 6, 44, 9, 3), (309, 'Electrike', 'https://img.pokemondb.net/artwork/electrike.jpg', 137, 43, 2, 43, 4, 43, 4, 3), (310, 'Manectric', 'https://img.pokemondb.net/artwork/manectric.jpg', 124, 42, 44, 6, 32, 6, 32, 3), (311, 'Plusle', 'https://img.pokemondb.net/artwork/plusle.jpg', 5, 6, 18, 43, 25, 44, 63, 3), (312, 'Minun', 'https://img.pokemondb.net/artwork/minun.jpg', 5, 6, 43, 18, 44, 25, 63, 3), (313, 'Volbeat', 'https://img.pokemondb.net/artwork/volbeat.jpg', 166, 4, 86, 44, 71, 25, 25, 3), (314, 'Illumise', 'https://img.pokemondb.net/artwork/illumise.jpg', 166, 4, 71, 44, 86, 25, 25, 3), (315, 'Roselia', 'https://img.pokemondb.net/artwork/roselia.jpg', 111, 18, 6, 2, 13, 9, 4, 3), (316, 'Gulpin', 'https://img.pokemondb.net/artwork/gulpin.jpg', 196, 42, 17, 132, 17, 132, 43, 3), (317, 'Swalot', 'https://img.pokemondb.net/artwork/swalot.jpg', 197, 13, 86, 12, 86, 12, 38, 3), (318, 'Carvanha', 'https://img.pokemondb.net/artwork/carvanha.jpg', 97, 2, 41, 36, 4, 36, 4, 3), (319, 'Sharpedo', 'https://img.pokemondb.net/artwork/sharpedo.jpg', 140, 42, 101, 43, 63, 43, 63, 3), (320, 'Wailmer', 'https://img.pokemondb.net/artwork/wailmer.jpg', 111, 113, 42, 35, 42, 35, 6, 3), (321, 'Wailord', 'https://img.pokemondb.net/artwork/wailord.jpg', 104, 198, 41, 2, 41, 2, 6, 3), (322, 'Numel', 'https://img.pokemondb.net/artwork/numel.jpg', 97, 6, 6, 43, 4, 2, 35, 3), (323, 'Camerupt', 'https://img.pokemondb.net/artwork/camerupt.jpg', 140, 42, 13, 42, 32, 44, 43, 3), (324, 'Torkoal', 'https://img.pokemondb.net/artwork/torkoal.jpg', 123, 42, 25, 92, 25, 42, 36, 3), (325, 'Spoink', 'https://img.pokemondb.net/artwork/spoink.jpg', 129, 6, 39, 35, 42, 9, 6, 3), (326, 'Grumpig', 'https://img.pokemondb.net/artwork/grumpig.jpg', 123, 9, 2, 4, 41, 67, 9, 3), (327, 'Spinda', 'https://img.pokemondb.net/artwork/spinda.jpg', 165, 6, 6, 6, 6, 6, 6, 3), (328, 'Trapinch', 'https://img.pokemondb.net/artwork/trapinch.jpg', 102, 2, 13, 2, 2, 2, 99, 3), (329, 'Vibrava', 'https://img.pokemondb.net/artwork/vibrava.jpg', 133, 18, 42, 18, 18, 18, 42, 3), (330, 'Flygon', 'https://img.pokemondb.net/artwork/flygon.jpg', 139, 9, 13, 9, 9, 9, 13, 3), (331, 'Cacnea', 'https://img.pokemondb.net/artwork/cacnea.jpg', 115, 18, 25, 43, 25, 43, 35, 3), (332, 'Cacturne', 'https://img.pokemondb.net/artwork/cacturne.jpg', 124, 42, 90, 6, 90, 6, 38, 3), (333, 'Swablu', 'https://img.pokemondb.net/artwork/swablu.jpg', 109, 2, 43, 6, 43, 44, 18, 3), (334, 'Altaria', 'https://img.pokemondb.net/artwork/altaria.jpg', 95, 44, 42, 41, 42, 32, 9, 3), (335, 'Zangoose', 'https://img.pokemondb.net/artwork/zangoose.jpg', 199, 86, 90, 6, 6, 6, 41, 3), (336, 'Seviper', 'https://img.pokemondb.net/artwork/seviper.jpg', 199, 86, 13, 6, 13, 6, 4, 3), (337, 'Lunatone', 'https://img.pokemondb.net/artwork/lunatone.jpg', 140, 41, 38, 4, 63, 25, 42, 3), (338, 'Solrock', 'https://img.pokemondb.net/artwork/solrock.jpg', 140, 41, 63, 25, 38, 4, 42, 3), (339, 'Barboach', 'https://img.pokemondb.net/artwork/barboach.jpg', 60, 18, 28, 17, 80, 72, 6, 3), (340, 'Whiscash', 'https://img.pokemondb.net/artwork/whiscash.jpg', 200, 67, 22, 86, 78, 48, 6, 3), (341, 'Corphish', 'https://img.pokemondb.net/artwork/corphish.jpg', 201, 17, 9, 4, 18, 35, 35, 3), (342, 'Crawdaunt', 'https://img.pokemondb.net/artwork/crawdaunt.jpg', 200, 8, 101, 25, 41, 38, 38, 3), (343, 'Baltoy', 'https://img.pokemondb.net/artwork/baltoy.jpg', 68, 43, 43, 38, 43, 42, 38, 3), (344, 'Claydol', 'https://img.pokemondb.net/artwork/claydol.jpg', 104, 6, 42, 32, 42, 101, 44, 3), (345, 'Lileep', 'https://img.pokemondb.net/artwork/lileep.jpg', 145, 202, 72, 83, 59, 77, 188, 3), (346, 'Cradily', 'https://img.pokemondb.net/artwork/cradily.jpg', 117, 159, 54, 55, 54, 203, 17, 3), (347, 'Anorith', 'https://img.pokemondb.net/artwork/anorith.jpg', 145, 2, 63, 18, 43, 18, 44, 3), (348, 'Armaldo', 'https://img.pokemondb.net/artwork/armaldo.jpg', 117, 44, 131, 13, 42, 9, 2, 3), (349, 'Feebas', 'https://img.pokemondb.net/artwork/feebas.jpg', 142, 36, 110, 36, 99, 38, 9, 3), (350, 'Milotic', 'https://img.pokemondb.net/artwork/milotic.jpg', 143, 63, 6, 31, 13, 131, 54, 3), (351, 'Castform', 'https://img.pokemondb.net/artwork/castform.jpg', 147, 42, 42, 42, 42, 42, 42, 3), (352, 'Kecleon', 'https://img.pokemondb.net/artwork/kecleon.jpg', 103, 6, 41, 42, 6, 101, 43, 3), (353, 'Shuppet', 'https://img.pokemondb.net/artwork/shuppet.jpg', 137, 27, 44, 35, 8, 169, 2, 3), (354, 'Banette', 'https://img.pokemondb.net/artwork/banette.jpg', 94, 20, 90, 4, 12, 8, 4, 3), (355, 'Duskull', 'https://img.pokemondb.net/artwork/duskull.jpg', 137, 36, 43, 41, 34, 41, 39, 3), (356, 'Dusclops', 'https://img.pokemondb.net/artwork/dusclops.jpg', 94, 43, 42, 113, 6, 113, 39, 3), (357, 'Tropius', 'https://img.pokemondb.net/artwork/tropius.jpg', 140, 204, 138, 12, 52, 77, 174, 3), (358, 'Chimecho', 'https://img.pokemondb.net/artwork/chimecho.jpg', 94, 44, 18, 9, 63, 41, 4, 3), (359, 'Absol', 'https://img.pokemondb.net/artwork/absol.jpg', 121, 4, 113, 6, 44, 6, 44, 3), (360, 'Wynaut', 'https://img.pokemondb.net/artwork/wynaut.jpg', 194, 63, 188, 28, 188, 28, 188, 3), (361, 'Snorunt', 'https://img.pokemondb.net/artwork/snorunt.jpg', 68, 18, 18, 18, 18, 18, 18, 3), (362, 'Glalie', 'https://img.pokemondb.net/artwork/glalie.jpg', 171, 9, 9, 9, 9, 9, 9, 3), (363, 'Spheal', 'https://img.pokemondb.net/artwork/spheal.jpg', 102, 42, 43, 18, 38, 18, 39, 3), (364, 'Sealeo', 'https://img.pokemondb.net/artwork/sealeo.jpg', 118, 41, 6, 42, 44, 42, 2, 3), (365, 'Walrein', 'https://img.pokemondb.net/artwork/walrein.jpg', 30, 67, 9, 41, 63, 41, 4, 3), (366, 'Clamperl', 'https://img.pokemondb.net/artwork/clamperl.jpg', 134, 35, 20, 25, 205, 38, 181, 3), (367, 'Huntail', 'https://img.pokemondb.net/artwork/huntail.jpg', 66, 38, 189, 32, 206, 44, 16, 3), (368, 'Gorebyss', 'https://img.pokemondb.net/artwork/gorebyss.jpg', 66, 38, 23, 32, 207, 44, 16, 3), (369, 'Relicanth', 'https://img.pokemondb.net/artwork/relicanth.jpg', 66, 13, 41, 113, 2, 4, 38, 3), (370, 'Luvdisc', 'https://img.pokemondb.net/artwork/luvdisc.jpg', 129, 17, 34, 38, 43, 4, 55, 3), (371, 'Bagon', 'https://img.pokemondb.net/artwork/bagon.jpg', 68, 2, 44, 6, 43, 34, 18, 3), (372, 'Shelgon', 'https://img.pokemondb.net/artwork/shelgon.jpg', 147, 4, 63, 13, 6, 18, 18, 3), (373, 'Salamence', 'https://img.pokemondb.net/artwork/salamence.jpg', 148, 63, 112, 9, 67, 9, 13, 3), (374, 'Beldum', 'https://img.pokemondb.net/artwork/beldum.jpg', 68, 43, 38, 9, 35, 6, 34, 3), (375, 'Metang', 'https://img.pokemondb.net/artwork/metang.jpg', 147, 6, 44, 13, 38, 9, 18, 3), (376, 'Metagross', 'https://img.pokemondb.net/artwork/metagross.jpg', 148, 9, 112, 113, 63, 41, 42, 3), (377, 'Regirock', 'https://img.pokemondb.net/artwork/regirock.jpg', 146, 9, 13, 142, 18, 13, 18, 3), (378, 'Regice', 'https://img.pokemondb.net/artwork/regice.jpg', 146, 9, 18, 13, 13, 142, 18, 3), (379, 'Registeel', 'https://img.pokemondb.net/artwork/registeel.jpg', 146, 9, 44, 130, 44, 130, 18, 3), (380, 'Latias', 'https://img.pokemondb.net/artwork/latias.jpg', 148, 9, 9, 41, 67, 113, 67, 3), (381, 'Latios', 'https://img.pokemondb.net/artwork/latios.jpg', 148, 9, 41, 9, 113, 67, 67, 3), (382, 'Kyogre', 'https://img.pokemondb.net/artwork/kyogre.jpg', 183, 13, 13, 41, 130, 92, 41, 3), (383, 'Groudon', 'https://img.pokemondb.net/artwork/groudon.jpg', 183, 13, 130, 92, 13, 41, 41, 3), (384, 'Rayquaza', 'https://img.pokemondb.net/artwork/rayquaza.jpg', 151, 32, 130, 41, 130, 41, 63, 3), (385, 'Jirachi', 'https://img.pokemondb.net/artwork/jirachi.jpg', 148, 13, 13, 13, 13, 13, 13, 3), (386, 'Deoxys', 'https://img.pokemondb.net/artwork/deoxys.jpg', 148, 18, 130, 18, 130, 18, 130, 3), (387, 'Turtwig', 'https://img.pokemondb.net/artwork/turtwig.jpg', 1, 38, 138, 20, 2, 38, 57, 4), (388, 'Grotle', 'https://img.pokemondb.net/artwork/grotle.jpg', 5, 44, 208, 25, 38, 4, 157, 4), (389, 'Torterra', 'https://img.pokemondb.net/artwork/torterra.jpg', 10, 63, 24, 32, 44, 25, 46, 4), (390, 'Chimchar', 'https://img.pokemondb.net/artwork/chimchar.jpg', 14, 27, 19, 27, 19, 27, 59, 4), (391, 'Monferno', 'https://img.pokemondb.net/artwork/monferno.jpg', 5, 20, 22, 16, 22, 16, 54, 4), (392, 'Infernape', 'https://img.pokemondb.net/artwork/infernape.jpg', 21, 78, 189, 48, 189, 48, 209, 4), (393, 'Piplup', 'https://img.pokemondb.net/artwork/piplup.jpg', 26, 132, 174, 132, 59, 46, 43, 4), (394, 'Prinplup', 'https://img.pokemondb.net/artwork/prinplup.jpg', 5, 20, 202, 138, 54, 78, 18, 4), (395, 'Empoleon', 'https://img.pokemondb.net/artwork/empoleon.jpg', 30, 23, 159, 210, 211, 50, 6, 4), (396, 'Starly', 'https://img.pokemondb.net/artwork/starly.jpg', 93, 43, 38, 34, 34, 34, 6, 4), (397, 'Staravia', 'https://img.pokemondb.net/artwork/staravia.jpg', 133, 38, 44, 18, 43, 43, 9, 4), (398, 'Staraptor', 'https://img.pokemondb.net/artwork/staraptor.jpg', 66, 25, 101, 42, 18, 6, 13, 4), (399, 'Bidoof', 'https://img.pokemondb.net/artwork/bidoof.jpg', 135, 29, 2, 43, 35, 43, 57, 4), (400, 'Bibarel', 'https://img.pokemondb.net/artwork/bibarel.jpg', 118, 31, 25, 6, 38, 6, 48, 4), (401, 'Kricketot', 'https://img.pokemondb.net/artwork/kricketot.jpg', 212, 172, 39, 72, 39, 72, 39, 4), (402, 'Kricketune', 'https://img.pokemondb.net/artwork/kricketune.jpg', 213, 83, 25, 174, 38, 174, 4, 4), (403, 'Shinx', 'https://img.pokemondb.net/artwork/shinx.jpg', 214, 2, 4, 155, 43, 155, 2, 4), (404, 'Luxio', 'https://img.pokemondb.net/artwork/luxio.jpg', 215, 6, 25, 3, 6, 3, 6, 4), (405, 'Luxray', 'https://img.pokemondb.net/artwork/luxray.jpg', 216, 9, 101, 31, 63, 31, 42, 4), (406, 'Budew', 'https://img.pokemondb.net/artwork/budew.jpg', 164, 43, 34, 35, 18, 42, 38, 4), (407, 'Roserade', 'https://img.pokemondb.net/artwork/roserade.jpg', 116, 6, 42, 4, 131, 32, 41, 4), (408, 'Cranidos', 'https://img.pokemondb.net/artwork/cranidos.jpg', 105, 74, 131, 43, 34, 34, 19, 4), (409, 'Rampardos', 'https://img.pokemondb.net/artwork/rampardos.jpg', 117, 55, 217, 6, 4, 18, 19, 4), (410, 'Shieldon', 'https://img.pokemondb.net/artwork/shieldon.jpg', 105, 34, 128, 218, 128, 210, 34, 4), (411, 'Bastiodon', 'https://img.pokemondb.net/artwork/bastiodon.jpg', 117, 6, 16, 219, 71, 220, 34, 4), (412, 'Burmy', 'https://img.pokemondb.net/artwork/burmy.jpg', 221, 43, 222, 2, 222, 2, 157, 4), (413, 'Wormadam', 'https://img.pokemondb.net/artwork/wormadam.jpg', 223, 6, 29, 25, 31, 32, 157, 4), (414, 'Mothim', 'https://img.pokemondb.net/artwork/mothim.jpg', 223, 42, 206, 18, 206, 18, 202, 4), (415, 'Combee', 'https://img.pokemondb.net/artwork/combee.jpg', 224, 34, 34, 128, 34, 128, 42, 4), (416, 'Vespiquen', 'https://img.pokemondb.net/artwork/vespiquen.jpg', 191, 42, 9, 82, 9, 82, 43, 4), (417, 'Pachirisu', 'https://img.pokemondb.net/artwork/pachirisu.jpg', 5, 6, 2, 42, 2, 41, 63, 4), (418, 'Buizel', 'https://img.pokemondb.net/artwork/buizel.jpg', 129, 38, 4, 35, 6, 34, 25, 4), (419, 'Floatzel', 'https://img.pokemondb.net/artwork/floatzel.jpg', 117, 25, 32, 38, 25, 18, 90, 4), (420, 'Cherubi', 'https://img.pokemondb.net/artwork/cherubi.jpg', 70, 2, 35, 2, 7, 132, 35, 4), (421, 'Cherrim', 'https://img.pokemondb.net/artwork/cherrim.jpg', 69, 42, 6, 42, 77, 22, 25, 4), (422, 'Shellos', 'https://img.pokemondb.net/artwork/shellos.jpg', 120, 78, 28, 28, 81, 7, 155, 4), (423, 'Gastrodon', 'https://img.pokemondb.net/artwork/gastrodon.jpg', 124, 211, 12, 138, 76, 11, 15, 4), (424, 'Ambipom', 'https://img.pokemondb.net/artwork/ambipom.jpg', 225, 44, 13, 202, 6, 202, 90, 4), (425, 'Drifloon', 'https://img.pokemondb.net/artwork/drifloon.jpg', 226, 41, 18, 155, 6, 27, 42, 4), (426, 'Drifblim', 'https://img.pokemondb.net/artwork/drifblim.jpg', 227, 130, 9, 27, 41, 61, 9, 4), (427, 'Buneary', 'https://img.pokemondb.net/artwork/buneary.jpg', 105, 38, 202, 27, 27, 46, 25, 4), (428, 'Lopunny', 'https://img.pokemondb.net/artwork/lopunny.jpg', 171, 4, 78, 23, 61, 160, 32, 4), (429, 'Mismagius', 'https://img.pokemondb.net/artwork/mismagius.jpg', 117, 6, 6, 6, 32, 32, 32, 4), (430, 'Honchkrow', 'https://img.pokemondb.net/artwork/honchkrow.jpg', 75, 13, 131, 16, 32, 16, 48, 4), (431, 'Glameow', 'https://img.pokemondb.net/artwork/glameow.jpg', 109, 3, 38, 128, 128, 172, 25, 4), (432, 'Purugly', 'https://img.pokemondb.net/artwork/purugly.jpg', 158, 48, 11, 20, 20, 29, 228, 4), (433, 'Chingling', 'https://img.pokemondb.net/artwork/chingling.jpg', 96, 2, 34, 18, 4, 18, 2, 4), (434, 'Stunky', 'https://img.pokemondb.net/artwork/stunky.jpg', 229, 8, 8, 71, 72, 72, 205, 4), (435, 'Skuntank', 'https://img.pokemondb.net/artwork/skuntank.jpg', 49, 230, 141, 74, 48, 59, 23, 4), (436, 'Bronzor', 'https://img.pokemondb.net/artwork/bronzor.jpg', 68, 81, 231, 159, 231, 159, 188, 4), (437, 'Bronzong', 'https://img.pokemondb.net/artwork/bronzong.jpg', 104, 74, 208, 232, 31, 232, 169, 4), (438, 'Bonsly', 'https://img.pokemondb.net/artwork/bonsly.jpg', 102, 18, 9, 63, 99, 2, 99, 4), (439, 'Mime Jr.', 'https://img.pokemondb.net/artwork/mime-jr.jpg', 109, 36, 39, 2, 42, 41, 6, 4), (440, 'Happiny', 'https://img.pokemondb.net/artwork/happiny.jpg', 175, 13, 136, 136, 110, 4, 34, 4), (441, 'Chatot', 'https://img.pokemondb.net/artwork/chatot.jpg', 233, 78, 4, 2, 76, 128, 149, 4), (442, 'Spiritomb', 'https://img.pokemondb.net/artwork/spiritomb.jpg', 66, 18, 76, 209, 76, 209, 35, 4), (443, 'Gible', 'https://img.pokemondb.net/artwork/gible.jpg', 68, 19, 42, 2, 43, 2, 128, 4), (444, 'Gabite', 'https://img.pokemondb.net/artwork/gabite.jpg', 118, 138, 41, 4, 18, 38, 11, 4), (445, 'Garchomp', 'https://img.pokemondb.net/artwork/garchomp.jpg', 148, 209, 113, 63, 9, 25, 82, 4), (446, 'Munchlax', 'https://img.pokemondb.net/artwork/munchlax.jpg', 114, 112, 25, 43, 43, 25, 136, 4), (447, 'Riolu', 'https://img.pokemondb.net/artwork/riolu.jpg', 96, 43, 42, 43, 35, 43, 6, 4), (448, 'Lucario', 'https://img.pokemondb.net/artwork/lucario.jpg', 10, 42, 67, 42, 90, 42, 41, 4), (449, 'Hippopotas', 'https://img.pokemondb.net/artwork/hippopotas.jpg', 129, 138, 52, 22, 88, 128, 181, 4), (450, 'Hippowdon', 'https://img.pokemondb.net/artwork/hippowdon.jpg', 10, 209, 228, 218, 138, 52, 71, 4), (451, 'Skorupi', 'https://img.pokemondb.net/artwork/skorupi.jpg', 129, 43, 18, 41, 34, 38, 4, 4), (452, 'Drapion', 'https://img.pokemondb.net/artwork/drapion.jpg', 104, 42, 41, 67, 6, 44, 63, 4), (453, 'Croagunk', 'https://img.pokemondb.net/artwork/croagunk.jpg', 68, 28, 59, 43, 59, 43, 18, 4), (454, 'Toxicroak', 'https://img.pokemondb.net/artwork/toxicroak.jpg', 95, 12, 152, 4, 159, 4, 25, 4), (455, 'Carnivine', 'https://img.pokemondb.net/artwork/carnivine.jpg', 182, 205, 13, 52, 41, 52, 80, 4), (456, 'Finneon', 'https://img.pokemondb.net/artwork/finneon.jpg', 129, 3, 3, 46, 3, 59, 202, 4), (457, 'Lumineon', 'https://img.pokemondb.net/artwork/lumineon.jpg', 140, 64, 64, 78, 64, 159, 149, 4), (458, 'Mantyke', 'https://img.pokemondb.net/artwork/mantyke.jpg', 134, 2, 36, 18, 6, 101, 18, 4), (459, 'Snover', 'https://img.pokemondb.net/artwork/snover.jpg', 234, 6, 7, 18, 7, 6, 43, 4), (460, 'Abomasnow', 'https://img.pokemondb.net/artwork/abomasnow.jpg', 235, 41, 76, 44, 76, 25, 6, 4), (461, 'Weavile', 'https://img.pokemondb.net/artwork/weavile.jpg', 108, 42, 101, 4, 2, 25, 131, 4), (462, 'Magnezone', 'https://img.pokemondb.net/artwork/magnezone.jpg', 144, 42, 42, 90, 113, 41, 6, 4), (463, 'Lickilicky', 'https://img.pokemondb.net/artwork/lickilicky.jpg', 116, 67, 25, 63, 9, 63, 18, 4), (464, 'Rhyperior', 'https://img.pokemondb.net/artwork/rhyperior.jpg', 144, 90, 92, 113, 38, 38, 43, 4), (465, 'Tangrowth', 'https://img.pokemondb.net/artwork/tangrowth.jpg', 144, 13, 13, 131, 67, 18, 18, 4), (466, 'Electivire', 'https://img.pokemondb.net/artwork/electivire.jpg', 143, 44, 236, 74, 63, 25, 63, 4), (467, 'Magmortar', 'https://img.pokemondb.net/artwork/magmortar.jpg', 143, 44, 63, 74, 131, 63, 12, 4), (468, 'Togekiss', 'https://img.pokemondb.net/artwork/togekiss.jpg', 237, 25, 18, 63, 101, 90, 9, 4), (469, 'Yanmega', 'https://img.pokemondb.net/artwork/yanmega.jpg', 116, 159, 78, 159, 232, 46, 63, 4), (470, 'Leafeon', 'https://img.pokemondb.net/artwork/leafeon.jpg', 10, 4, 67, 113, 6, 4, 63, 4), (471, 'Glaceon', 'https://img.pokemondb.net/artwork/glaceon.jpg', 10, 4, 6, 67, 113, 63, 4, 4), (472, 'Gliscor', 'https://img.pokemondb.net/artwork/gliscor.jpg', 108, 44, 63, 131, 2, 44, 63, 4), (473, 'Mamoswine', 'https://img.pokemondb.net/artwork/mamoswine.jpg', 30, 67, 113, 9, 42, 6, 9, 4), (474, 'Porygon-Z', 'https://img.pokemondb.net/artwork/porygon-z.jpg', 144, 25, 9, 42, 112, 44, 41, 4), (475, 'Gallade', 'https://img.pokemondb.net/artwork/gallade.jpg', 179, 138, 131, 4, 4, 90, 9, 4), (476, 'Probopass', 'https://img.pokemondb.net/artwork/probopass.jpg', 10, 6, 38, 238, 44, 130, 43, 4), (477, 'Dusknoir', 'https://img.pokemondb.net/artwork/dusknoir.jpg', 10, 2, 13, 112, 4, 112, 2, 4), (478, 'Froslass', 'https://img.pokemondb.net/artwork/froslass.jpg', 171, 42, 9, 42, 9, 42, 67, 4), (479, 'Rotom', 'https://img.pokemondb.net/artwork/rotom.jpg', 103, 18, 18, 83, 63, 83, 149, 4), (480, 'Uxie', 'https://img.pokemondb.net/artwork/uxie.jpg', 146, 44, 44, 113, 44, 113, 63, 4), (481, 'Mesprit', 'https://img.pokemondb.net/artwork/mesprit.jpg', 146, 9, 32, 32, 32, 32, 9, 4), (482, 'Azelf', 'https://img.pokemondb.net/artwork/azelf.jpg', 146, 44, 131, 42, 131, 42, 90, 4), (483, 'Dialga', 'https://img.pokemondb.net/artwork/dialga.jpg', 151, 13, 101, 101, 130, 13, 41, 4), (484, 'Palkia', 'https://img.pokemondb.net/artwork/palkia.jpg', 151, 41, 101, 13, 130, 101, 13, 4), (485, 'Heatran', 'https://img.pokemondb.net/artwork/heatran.jpg', 148, 149, 41, 152, 113, 152, 83, 4), (486, 'Regigigas', 'https://img.pokemondb.net/artwork/regigigas.jpg', 183, 67, 126, 67, 9, 67, 13, 4), (487, 'Giratina', 'https://www.pokepedia.fr/images/a/af/Giratina-DP.png ', 151, 130, 13, 101, 13, 101, 41, 4), (488, 'Cresselia', 'https://img.pokemondb.net/artwork/cresselia.jpg', 148, 101, 42, 101, 44, 113, 25, 4), (489, 'Phione', 'https://img.pokemondb.net/artwork/phione.jpg', 171, 9, 9, 9, 9, 9, 9, 4), (490, 'Manaphy', 'https://img.pokemondb.net/artwork/manaphy.jpg', 148, 13, 13, 13, 13, 13, 13, 4), (491, 'Darkrai', 'https://img.pokemondb.net/artwork/darkrai.jpg', 148, 42, 41, 41, 112, 41, 131, 4), (492, 'Shaymin', 'https://www.pokepedia.fr/images/0/05/Shaymin_(Forme_Terrestre)-DP.png ', 148, 13, 13, 13, 13, 13, 13, 4), (493, 'Arceus', 'https://img.pokemondb.net/artwork/arceus.jpg', 239, 101, 101, 101, 101, 101, 101, 4), (494, 'Victini', 'https://img.pokemondb.net/artwork/victini.jpg', 148, 13, 13, 13, 13, 13, 13, 5), (495, 'Snivy', 'https://img.pokemondb.net/artwork/snivy.jpg', 201, 2, 2, 38, 2, 38, 8, 5), (496, 'Servine', 'https://img.pokemondb.net/artwork/servine.jpg', 53, 6, 6, 44, 6, 44, 12, 5), (497, 'Serperior', 'https://img.pokemondb.net/artwork/serperior.jpg', 240, 44, 44, 63, 44, 63, 241, 5), (498, 'Tepig', 'https://img.pokemondb.net/artwork/tepig.jpg', 201, 4, 8, 2, 2, 2, 2, 5), (499, 'Pignite', 'https://img.pokemondb.net/artwork/pignite.jpg', 242, 41, 141, 38, 42, 38, 38, 5), (500, 'Emboar', 'https://img.pokemondb.net/artwork/emboar.jpg', 240, 67, 236, 4, 13, 4, 4, 5), (501, 'Oshawott', 'https://img.pokemondb.net/artwork/oshawott.jpg', 201, 38, 38, 2, 8, 2, 2, 5), (502, 'Dewott', 'https://img.pokemondb.net/artwork/dewott.jpg', 53, 44, 44, 6, 12, 6, 6, 5), (503, 'Samurott', 'https://img.pokemondb.net/artwork/samurott.jpg', 240, 63, 13, 25, 209, 42, 42, 5), (504, 'Patrat', 'https://img.pokemondb.net/artwork/patrat.jpg', 173, 2, 38, 15, 35, 15, 128, 5), (505, 'Watchog', 'https://img.pokemondb.net/artwork/watchog.jpg', 147, 6, 25, 64, 6, 64, 83, 5), (506, 'Lillipup', 'https://img.pokemondb.net/artwork/lillipup.jpg', 70, 2, 6, 2, 39, 2, 38, 5), (507, 'Herdier', 'https://img.pokemondb.net/artwork/herdier.jpg', 243, 4, 9, 4, 35, 4, 6, 5), (508, 'Stoutland', 'https://img.pokemondb.net/artwork/stoutland.jpg', 104, 25, 67, 41, 2, 41, 9, 5), (509, 'Purrloin', 'https://img.pokemondb.net/artwork/purrloin.jpg', 244, 72, 18, 172, 18, 172, 202, 5), (510, 'Liepard', 'https://img.pokemondb.net/artwork/liepard.jpg', 245, 20, 210, 18, 210, 18, 152, 5), (511, 'Pansage', 'https://img.pokemondb.net/artwork/pansage.jpg', 246, 18, 132, 28, 132, 28, 20, 5), (512, 'Simisage', 'https://img.pokemondb.net/artwork/simisage.jpg', 227, 44, 247, 8, 247, 8, 50, 5), (513, 'Pansear', 'https://img.pokemondb.net/artwork/pansear.jpg', 246, 18, 132, 28, 132, 28, 20, 5), (514, 'Simisear', 'https://img.pokemondb.net/artwork/simisear.jpg', 227, 44, 247, 8, 247, 8, 50, 5), (515, 'Panpour', 'https://img.pokemondb.net/artwork/panpour.jpg', 246, 18, 132, 28, 132, 28, 20, 5), (516, 'Simipour', 'https://img.pokemondb.net/artwork/simipour.jpg', 227, 44, 247, 8, 247, 8, 50, 5), (517, 'Munna', 'https://img.pokemondb.net/artwork/munna.jpg', 248, 78, 39, 2, 74, 38, 231, 5); INSERT INTO `infos` (`id_pokemon`, `name`, `url`, `total`, `hp`, `attack`, `defense`, `special_attack`, `special_defense`, `speed`, `generations_id_generations`) VALUES (518, 'Musharna', 'https://img.pokemondb.net/artwork/musharna.jpg', 249, 232, 38, 25, 203, 63, 222, 5), (519, 'Pidove', 'https://img.pokemondb.net/artwork/pidove.jpg', 250, 18, 38, 18, 157, 34, 17, 5), (520, 'Tranquill', 'https://img.pokemondb.net/artwork/tranquill.jpg', 251, 7, 83, 7, 18, 128, 4, 5), (521, 'Unfezant', 'https://img.pokemondb.net/artwork/unfezant.jpg', 252, 9, 90, 9, 4, 38, 141, 5), (522, 'Blitzle', 'https://img.pokemondb.net/artwork/blitzle.jpg', 137, 2, 6, 181, 18, 181, 78, 5), (523, 'Zebstrika', 'https://img.pokemondb.net/artwork/zebstrika.jpg', 253, 44, 13, 8, 9, 8, 232, 5), (524, 'Roggenrola', 'https://img.pokemondb.net/artwork/roggenrola.jpg', 164, 38, 44, 25, 39, 39, 110, 5), (525, 'Boldore', 'https://img.pokemondb.net/artwork/boldore.jpg', 114, 42, 32, 32, 18, 43, 36, 5), (526, 'Gigalith', 'https://img.pokemondb.net/artwork/gigalith.jpg', 116, 25, 112, 113, 6, 9, 39, 5), (527, 'Woobat', 'https://img.pokemondb.net/artwork/woobat.jpg', 84, 4, 2, 17, 38, 17, 52, 5), (528, 'Swoobat', 'https://img.pokemondb.net/artwork/swoobat.jpg', 100, 74, 81, 38, 83, 38, 207, 5), (529, 'Drilbur', 'https://img.pokemondb.net/artwork/drilbur.jpg', 127, 6, 25, 43, 34, 2, 138, 5), (530, 'Excadrill', 'https://img.pokemondb.net/artwork/excadrill.jpg', 254, 67, 112, 6, 18, 4, 210, 5), (531, 'Audino', 'https://img.pokemondb.net/artwork/audino.jpg', 255, 230, 6, 159, 6, 159, 18, 5), (532, 'Timburr', 'https://img.pokemondb.net/artwork/timburr.jpg', 97, 44, 9, 38, 39, 35, 35, 5), (533, 'Gurdurr', 'https://img.pokemondb.net/artwork/gurdurr.jpg', 5, 25, 32, 25, 43, 18, 43, 5), (534, 'Conkeldurr', 'https://img.pokemondb.net/artwork/conkeldurr.jpg', 75, 32, 92, 63, 38, 4, 2, 5), (535, 'Tympole', 'https://img.pokemondb.net/artwork/tympole.jpg', 256, 18, 18, 43, 18, 43, 20, 5), (536, 'Palpitoad', 'https://img.pokemondb.net/artwork/palpitoad.jpg', 213, 44, 4, 38, 4, 38, 64, 5), (537, 'Seismitoad', 'https://img.pokemondb.net/artwork/seismitoad.jpg', 257, 32, 63, 44, 25, 44, 205, 5), (538, 'Throh', 'https://img.pokemondb.net/artwork/throh.jpg', 121, 101, 13, 25, 34, 25, 2, 5), (539, 'Sawk', 'https://img.pokemondb.net/artwork/sawk.jpg', 121, 44, 131, 44, 34, 44, 25, 5), (540, 'Sewaddle', 'https://img.pokemondb.net/artwork/sewaddle.jpg', 109, 2, 132, 42, 43, 6, 128, 5), (541, 'Swadloon', 'https://img.pokemondb.net/artwork/swadloon.jpg', 195, 38, 8, 41, 18, 9, 128, 5), (542, 'Leavanny', 'https://img.pokemondb.net/artwork/leavanny.jpg', 104, 44, 230, 9, 42, 9, 76, 5), (543, 'Venipede', 'https://img.pokemondb.net/artwork/venipede.jpg', 194, 34, 2, 29, 34, 15, 81, 5), (544, 'Whirlipede', 'https://img.pokemondb.net/artwork/whirlipede.jpg', 165, 43, 38, 204, 43, 31, 71, 5), (545, 'Scolipede', 'https://img.pokemondb.net/artwork/scolipede.jpg', 66, 6, 13, 208, 38, 64, 228, 5), (546, 'Cottonee', 'https://img.pokemondb.net/artwork/cottonee.jpg', 164, 43, 258, 6, 172, 18, 202, 5), (547, 'Whimsicott', 'https://img.pokemondb.net/artwork/whimsicott.jpg', 171, 6, 74, 25, 83, 44, 232, 5), (548, 'Petilil', 'https://img.pokemondb.net/artwork/petilil.jpg', 164, 2, 35, 18, 42, 18, 34, 5), (549, 'Lilligant', 'https://img.pokemondb.net/artwork/lilligant.jpg', 171, 42, 6, 44, 67, 44, 41, 5), (550, 'Basculin', 'https://img.pokemondb.net/artwork/basculin.jpg', 140, 42, 76, 4, 9, 38, 247, 5), (551, 'Sandile', 'https://img.pokemondb.net/artwork/sandile.jpg', 248, 18, 52, 35, 35, 35, 4, 5), (552, 'Krokorok', 'https://img.pokemondb.net/artwork/krokorok.jpg', 259, 6, 11, 2, 2, 2, 205, 5), (553, 'Krookodile', 'https://img.pokemondb.net/artwork/krookodile.jpg', 260, 63, 261, 9, 4, 42, 76, 5), (554, 'Darumaka', 'https://img.pokemondb.net/artwork/darumaka.jpg', 119, 42, 41, 2, 110, 2, 18, 5), (555, 'Darmanitan', 'https://img.pokemondb.net/artwork/darmanitan.jpg', 171, 32, 92, 38, 34, 38, 63, 5), (556, 'Maractus', 'https://img.pokemondb.net/artwork/maractus.jpg', 262, 44, 159, 74, 152, 74, 6, 5), (557, 'Dwebble', 'https://img.pokemondb.net/artwork/dwebble.jpg', 120, 18, 4, 25, 35, 35, 38, 5), (558, 'Crustle', 'https://img.pokemondb.net/artwork/crustle.jpg', 66, 42, 32, 131, 4, 44, 2, 5), (559, 'Scraggy', 'https://img.pokemondb.net/artwork/scraggy.jpg', 226, 18, 44, 42, 35, 42, 28, 5), (560, 'Scrafty', 'https://img.pokemondb.net/artwork/scrafty.jpg', 252, 4, 41, 90, 2, 90, 19, 5), (561, 'Sigilyph', 'https://img.pokemondb.net/artwork/sigilyph.jpg', 95, 52, 19, 9, 230, 9, 55, 5), (562, 'Yamask', 'https://img.pokemondb.net/artwork/yamask.jpg', 263, 88, 34, 25, 38, 4, 34, 5), (563, 'Cofagrigus', 'https://img.pokemondb.net/artwork/cofagrigus.jpg', 85, 19, 18, 238, 63, 32, 34, 5), (564, 'Tirtouga', 'https://img.pokemondb.net/artwork/tirtouga.jpg', 145, 61, 22, 230, 132, 2, 264, 5), (565, 'Carracosta', 'https://img.pokemondb.net/artwork/carracosta.jpg', 117, 205, 209, 265, 12, 4, 181, 5), (566, 'Archen', 'https://img.pokemondb.net/artwork/archen.jpg', 266, 38, 228, 2, 205, 2, 42, 5), (567, 'Archeops', 'https://img.pokemondb.net/artwork/archeops.jpg', 267, 44, 92, 4, 228, 4, 67, 5), (568, 'Trubbish', 'https://img.pokemondb.net/artwork/trubbish.jpg', 229, 18, 18, 7, 43, 7, 4, 5), (569, 'Garbodor', 'https://img.pokemondb.net/artwork/garbodor.jpg', 191, 9, 63, 11, 6, 11, 44, 5), (570, 'Zorua', 'https://img.pokemondb.net/artwork/zorua.jpg', 129, 43, 4, 43, 9, 43, 4, 5), (571, 'Zoroark', 'https://img.pokemondb.net/artwork/zoroark.jpg', 108, 6, 32, 6, 101, 6, 32, 5), (572, 'Minccino', 'https://img.pokemondb.net/artwork/minccino.jpg', 68, 38, 18, 43, 43, 43, 44, 5), (573, 'Cinccino', 'https://img.pokemondb.net/artwork/cinccino.jpg', 123, 44, 63, 6, 4, 6, 90, 5), (574, 'Gothita', 'https://img.pokemondb.net/artwork/gothita.jpg', 102, 2, 34, 18, 38, 4, 2, 5), (575, 'Gothorita', 'https://img.pokemondb.net/artwork/gothorita.jpg', 114, 6, 2, 42, 44, 25, 38, 5), (576, 'Gothitelle', 'https://img.pokemondb.net/artwork/gothitelle.jpg', 95, 42, 38, 63, 63, 67, 4, 5), (577, 'Solosis', 'https://img.pokemondb.net/artwork/solosis.jpg', 102, 2, 34, 43, 32, 18, 36, 5), (578, 'Duosion', 'https://img.pokemondb.net/artwork/duosion.jpg', 243, 4, 43, 18, 131, 6, 34, 5), (579, 'Reuniclus', 'https://img.pokemondb.net/artwork/reuniclus.jpg', 95, 67, 4, 44, 131, 25, 34, 5), (580, 'Ducklett', 'https://img.pokemondb.net/artwork/ducklett.jpg', 97, 7, 27, 18, 27, 18, 38, 5), (581, 'Swanna', 'https://img.pokemondb.net/artwork/swanna.jpg', 268, 44, 77, 8, 77, 8, 247, 5), (582, 'Vanillite', 'https://img.pokemondb.net/artwork/vanillite.jpg', 97, 157, 18, 18, 4, 6, 27, 5), (583, 'Vanillish', 'https://img.pokemondb.net/artwork/vanillish.jpg', 40, 174, 4, 4, 9, 44, 29, 5), (584, 'Vanilluxe', 'https://img.pokemondb.net/artwork/vanilluxe.jpg', 144, 48, 63, 25, 67, 63, 31, 5), (585, 'Deerling', 'https://img.pokemondb.net/artwork/deerling.jpg', 115, 6, 6, 18, 43, 18, 44, 5), (586, 'Sawsbuck', 'https://img.pokemondb.net/artwork/sawsbuck.jpg', 124, 9, 13, 42, 6, 42, 63, 5), (587, 'Emolga', 'https://img.pokemondb.net/artwork/emolga.jpg', 269, 38, 44, 6, 44, 6, 230, 5), (588, 'Karrablast', 'https://img.pokemondb.net/artwork/karrablast.jpg', 119, 18, 44, 2, 43, 2, 6, 5), (589, 'Escavalier', 'https://img.pokemondb.net/artwork/escavalier.jpg', 117, 42, 112, 32, 6, 32, 36, 5), (590, 'Foongus', 'https://img.pokemondb.net/artwork/foongus.jpg', 256, 64, 38, 2, 38, 38, 110, 5), (591, 'Amoonguss', 'https://img.pokemondb.net/artwork/amoonguss.jpg', 270, 207, 25, 42, 25, 9, 34, 5), (592, 'Frillish', 'https://img.pokemondb.net/artwork/frillish.jpg', 115, 38, 43, 18, 4, 25, 43, 5), (593, 'Jellicent', 'https://img.pokemondb.net/artwork/jellicent.jpg', 171, 13, 6, 42, 25, 32, 6, 5), (594, 'Alomomola', 'https://img.pokemondb.net/artwork/alomomola.jpg', 123, 217, 44, 9, 43, 2, 4, 5), (595, 'Joltik', 'https://img.pokemondb.net/artwork/joltik.jpg', 271, 18, 71, 18, 81, 18, 4, 5), (596, 'Galvantula', 'https://img.pokemondb.net/artwork/galvantula.jpg', 272, 42, 83, 6, 55, 6, 209, 5), (597, 'Ferroseed', 'https://img.pokemondb.net/artwork/ferroseed.jpg', 97, 27, 18, 149, 231, 159, 99, 5), (598, 'Ferrothorn', 'https://img.pokemondb.net/artwork/ferrothorn.jpg', 273, 205, 206, 274, 61, 232, 36, 5), (599, 'Klink', 'https://img.pokemondb.net/artwork/klink.jpg', 68, 43, 38, 42, 2, 6, 34, 5), (600, 'Klang', 'https://img.pokemondb.net/artwork/klang.jpg', 103, 6, 9, 63, 42, 25, 18, 5), (601, 'Klinklang', 'https://img.pokemondb.net/artwork/klinklang.jpg', 139, 6, 13, 90, 42, 25, 41, 5), (602, 'Tynamo', 'https://img.pokemondb.net/artwork/tynamo.jpg', 70, 35, 38, 43, 2, 43, 6, 5), (603, 'Eelektrik', 'https://img.pokemondb.net/artwork/eelektrik.jpg', 5, 4, 25, 42, 44, 42, 43, 5), (604, 'Eelektross', 'https://img.pokemondb.net/artwork/eelektross.jpg', 116, 25, 90, 9, 32, 9, 18, 5), (605, 'Elgyem', 'https://img.pokemondb.net/artwork/elgyem.jpg', 115, 38, 38, 38, 25, 38, 34, 5), (606, 'Beheeyem', 'https://img.pokemondb.net/artwork/beheeyem.jpg', 66, 44, 44, 44, 131, 63, 43, 5), (607, 'Litwick', 'https://img.pokemondb.net/artwork/litwick.jpg', 70, 18, 34, 38, 4, 38, 36, 5), (608, 'Lampent', 'https://img.pokemondb.net/artwork/lampent.jpg', 243, 6, 43, 6, 63, 6, 38, 5), (609, 'Chandelure', 'https://img.pokemondb.net/artwork/chandelure.jpg', 139, 6, 38, 41, 238, 41, 9, 5), (610, 'Axew', 'https://img.pokemondb.net/artwork/axew.jpg', 65, 80, 77, 6, 34, 43, 81, 5), (611, 'Fraxure', 'https://img.pokemondb.net/artwork/fraxure.jpg', 118, 202, 261, 42, 43, 18, 74, 5), (612, 'Haxorus', 'https://img.pokemondb.net/artwork/haxorus.jpg', 143, 78, 275, 41, 6, 42, 55, 5), (613, 'Cubchoo', 'https://img.pokemondb.net/artwork/cubchoo.jpg', 97, 38, 42, 43, 6, 43, 43, 5), (614, 'Beartic', 'https://img.pokemondb.net/artwork/beartic.jpg', 75, 63, 113, 9, 42, 9, 18, 5), (615, 'Cryogonal', 'https://img.pokemondb.net/artwork/cryogonal.jpg', 116, 9, 18, 18, 63, 112, 32, 5), (616, 'Shelmet', 'https://img.pokemondb.net/artwork/shelmet.jpg', 97, 18, 43, 25, 43, 4, 39, 5), (617, 'Accelgor', 'https://img.pokemondb.net/artwork/accelgor.jpg', 117, 9, 42, 43, 13, 6, 238, 5), (618, 'Stunfisk', 'https://img.pokemondb.net/artwork/stunfisk.jpg', 276, 24, 202, 23, 54, 204, 181, 5), (619, 'Mienfoo', 'https://img.pokemondb.net/artwork/mienfoo.jpg', 105, 2, 25, 18, 38, 18, 4, 5), (620, 'Mienshao', 'https://img.pokemondb.net/artwork/mienshao.jpg', 108, 4, 131, 6, 63, 6, 32, 5), (621, 'Druddigon', 'https://img.pokemondb.net/artwork/druddigon.jpg', 66, 83, 101, 41, 6, 41, 28, 5), (622, 'Golett', 'https://img.pokemondb.net/artwork/golett.jpg', 263, 29, 205, 18, 35, 18, 35, 5), (623, 'Golurk', 'https://img.pokemondb.net/artwork/golurk.jpg', 85, 208, 277, 9, 38, 9, 38, 5), (624, 'Pawniard', 'https://img.pokemondb.net/artwork/pawniard.jpg', 133, 2, 25, 42, 43, 43, 6, 5), (625, 'Bisharp', 'https://img.pokemondb.net/artwork/bisharp.jpg', 95, 4, 131, 13, 6, 42, 42, 5), (626, 'Bouffalant', 'https://img.pokemondb.net/artwork/bouffalant.jpg', 95, 63, 67, 63, 43, 63, 38, 5), (627, 'Rufflet', 'https://img.pokemondb.net/artwork/rufflet.jpg', 105, 42, 12, 18, 172, 18, 6, 5), (628, 'Braviary', 'https://img.pokemondb.net/artwork/braviary.jpg', 108, 13, 236, 44, 81, 44, 9, 5), (629, 'Vullaby', 'https://img.pokemondb.net/artwork/vullaby.jpg', 243, 42, 38, 44, 2, 4, 6, 5), (630, 'Mandibuzz', 'https://img.pokemondb.net/artwork/mandibuzz.jpg', 108, 67, 4, 32, 38, 63, 9, 5), (631, 'Heatmor', 'https://img.pokemondb.net/artwork/heatmor.jpg', 278, 25, 55, 202, 32, 202, 4, 5), (632, 'Durant', 'https://img.pokemondb.net/artwork/durant.jpg', 278, 19, 24, 228, 28, 28, 24, 5), (633, 'Deino', 'https://img.pokemondb.net/artwork/deino.jpg', 68, 16, 4, 18, 2, 18, 88, 5), (634, 'Zweilous', 'https://img.pokemondb.net/artwork/zweilous.jpg', 147, 52, 25, 42, 4, 42, 19, 5), (635, 'Hydreigon', 'https://img.pokemondb.net/artwork/hydreigon.jpg', 148, 76, 32, 41, 131, 41, 247, 5), (636, 'Larvesta', 'https://img.pokemondb.net/artwork/larvesta.jpg', 165, 38, 25, 38, 18, 38, 6, 5), (637, 'Volcarona', 'https://img.pokemondb.net/artwork/volcarona.jpg', 279, 25, 6, 4, 112, 32, 13, 5), (638, 'Cobalion', 'https://img.pokemondb.net/artwork/cobalion.jpg', 146, 149, 41, 280, 41, 52, 209, 5), (639, 'Terrakion', 'https://img.pokemondb.net/artwork/terrakion.jpg', 146, 149, 280, 41, 52, 41, 209, 5), (640, 'Virizion', 'https://img.pokemondb.net/artwork/virizion.jpg', 146, 149, 41, 52, 41, 280, 209, 5), (641, 'Tornadus', 'https://img.pokemondb.net/artwork/tornadus.jpg', 146, 31, 90, 42, 131, 9, 211, 5), (642, 'Thundurus', 'https://img.pokemondb.net/artwork/thundurus.jpg', 146, 31, 90, 42, 131, 9, 211, 5), (643, 'Reshiram', 'https://img.pokemondb.net/artwork/reshiram.jpg', 151, 13, 101, 13, 130, 101, 41, 5), (644, 'Zekrom', 'https://img.pokemondb.net/artwork/zekrom.jpg', 151, 13, 130, 101, 101, 13, 41, 5), (645, 'Landorus', 'https://img.pokemondb.net/artwork/landorus.jpg', 148, 208, 131, 41, 90, 9, 50, 5), (646, 'Kyurem', 'https://img.pokemondb.net/artwork/kyurem.jpg', 281, 131, 113, 41, 113, 41, 63, 5), (647, 'Keldeo', 'https://img.pokemondb.net/artwork/keldeo.jpg', 146, 149, 52, 41, 280, 41, 209, 5), (648, 'Meloetta', 'https://img.pokemondb.net/artwork/meloetta.jpg', 148, 13, 83, 83, 282, 282, 41, 5), (649, 'Genesect', 'https://img.pokemondb.net/artwork/genesect.jpg', 148, 48, 101, 63, 101, 63, 204, 5), (650, 'Chespin', 'https://img.pokemondb.net/artwork/chespin.jpg', 283, 46, 59, 4, 28, 2, 88, 6), (651, 'Quilladin', 'https://img.pokemondb.net/artwork/quilladin.jpg', 5, 59, 22, 63, 46, 19, 81, 6), (652, 'Chesnaught', 'https://img.pokemondb.net/artwork/chesnaught.jpg', 30, 210, 203, 284, 205, 44, 20, 6), (653, 'Fennekin', 'https://img.pokemondb.net/artwork/fennekin.jpg', 285, 43, 2, 43, 7, 6, 6, 6), (654, 'Braixen', 'https://img.pokemondb.net/artwork/braixen.jpg', 286, 29, 29, 19, 41, 42, 86, 6), (655, 'Delphox', 'https://img.pokemondb.net/artwork/delphox.jpg', 21, 44, 64, 52, 207, 13, 189, 6), (656, 'Froakie', 'https://img.pokemondb.net/artwork/froakie.jpg', 26, 72, 46, 43, 7, 27, 48, 6), (657, 'Frogadier', 'https://img.pokemondb.net/artwork/frogadier.jpg', 5, 61, 8, 16, 12, 46, 55, 6), (658, 'Greninja', 'https://img.pokemondb.net/artwork/greninja.jpg', 30, 52, 63, 74, 230, 48, 284, 6), (659, 'Bunnelby', 'https://img.pokemondb.net/artwork/bunnelby.jpg', 190, 88, 157, 88, 181, 157, 81, 6), (660, 'Diggersby', 'https://img.pokemondb.net/artwork/diggersby.jpg', 287, 25, 46, 83, 18, 83, 22, 6), (661, 'Fletchling', 'https://img.pokemondb.net/artwork/fletchling.jpg', 178, 2, 18, 17, 43, 88, 7, 6), (662, 'Fletchinder', 'https://img.pokemondb.net/artwork/fletchinder.jpg', 288, 7, 86, 38, 46, 16, 23, 6), (663, 'Talonflame', 'https://img.pokemondb.net/artwork/talonflame.jpg', 289, 22, 54, 48, 205, 64, 290, 6), (664, 'Scatterbug', 'https://img.pokemondb.net/artwork/scatterbug.jpg', 142, 88, 35, 43, 258, 39, 35, 6), (665, 'Spewpa', 'https://img.pokemondb.net/artwork/spewpa.jpg', 291, 2, 264, 6, 258, 34, 222, 6), (666, 'Vivillon', 'https://img.pokemondb.net/artwork/vivillon.jpg', 233, 9, 16, 18, 41, 18, 208, 6), (667, 'Litleo', 'https://img.pokemondb.net/artwork/litleo.jpg', 292, 7, 18, 19, 86, 61, 52, 6), (668, 'Pyroar', 'https://img.pokemondb.net/artwork/pyroar.jpg', 293, 159, 138, 52, 24, 202, 152, 6), (669, 'Flabébé', 'https://img.pokemondb.net/artwork/flabebe.jpg', 263, 27, 88, 15, 59, 31, 128, 6), (670, 'Floette', 'https://img.pokemondb.net/artwork/floette.jpg', 294, 61, 2, 71, 44, 247, 16, 6), (671, 'Florges', 'https://img.pokemondb.net/artwork/florges.jpg', 295, 22, 4, 138, 228, 153, 44, 6), (672, 'Skiddo', 'https://img.pokemondb.net/artwork/skiddo.jpg', 105, 202, 4, 28, 7, 81, 16, 6), (673, 'Gogoat', 'https://img.pokemondb.net/artwork/gogoat.jpg', 296, 236, 13, 7, 55, 54, 138, 6), (674, 'Pancham', 'https://img.pokemondb.net/artwork/pancham.jpg', 226, 74, 11, 7, 80, 28, 17, 6), (675, 'Pangoro', 'https://img.pokemondb.net/artwork/pangoro.jpg', 117, 63, 277, 22, 64, 48, 19, 6), (676, 'Furfrou', 'https://img.pokemondb.net/artwork/furfrou.jpg', 272, 44, 9, 6, 4, 41, 82, 6), (677, 'Espurr', 'https://img.pokemondb.net/artwork/espurr.jpg', 145, 7, 28, 61, 8, 6, 138, 6), (678, 'Meowstic', 'https://img.pokemondb.net/artwork/meowstic.jpg', 297, 205, 28, 78, 12, 54, 189, 6), (679, 'Honedge', 'https://img.pokemondb.net/artwork/honedge.jpg', 120, 2, 9, 13, 35, 172, 162, 6), (680, 'Doublade', 'https://img.pokemondb.net/artwork/doublade.jpg', 62, 29, 67, 130, 2, 3, 35, 6), (681, 'Aegislash', 'https://img.pokemondb.net/artwork/aegislash.jpg', 104, 6, 18, 92, 18, 92, 6, 6), (682, 'Spritzee', 'https://img.pokemondb.net/artwork/spritzee.jpg', 298, 22, 16, 6, 8, 4, 188, 6), (683, 'Aromatisse', 'https://img.pokemondb.net/artwork/aromatisse.jpg', 299, 50, 52, 52, 204, 208, 222, 6), (684, 'Swirlix', 'https://img.pokemondb.net/artwork/swirlix.jpg', 298, 7, 28, 202, 29, 81, 3, 6), (685, 'Slurpuff', 'https://img.pokemondb.net/artwork/slurpuff.jpg', 171, 11, 9, 159, 25, 44, 52, 6), (686, 'Inkay', 'https://img.pokemondb.net/artwork/inkay.jpg', 60, 132, 61, 132, 172, 80, 2, 6), (687, 'Malamar', 'https://img.pokemondb.net/artwork/malamar.jpg', 225, 159, 76, 210, 138, 44, 86, 6), (688, 'Binacle', 'https://img.pokemondb.net/artwork/binacle.jpg', 300, 128, 16, 74, 15, 46, 18, 6), (689, 'Barbaracle', 'https://img.pokemondb.net/artwork/barbaracle.jpg', 104, 52, 32, 90, 61, 159, 138, 6), (690, 'Skrelp', 'https://img.pokemondb.net/artwork/skrelp.jpg', 65, 18, 6, 6, 6, 6, 34, 6), (691, 'Dragalge', 'https://img.pokemondb.net/artwork/dragalge.jpg', 235, 4, 44, 41, 55, 236, 27, 6), (692, 'Clauncher', 'https://img.pokemondb.net/artwork/clauncher.jpg', 129, 18, 132, 7, 19, 8, 27, 6), (693, 'Clawitzer', 'https://img.pokemondb.net/artwork/clawitzer.jpg', 104, 48, 86, 210, 101, 208, 29, 6), (694, 'Helioptile', 'https://img.pokemondb.net/artwork/helioptile.jpg', 301, 27, 88, 169, 59, 17, 42, 6), (695, 'Heliolisk', 'https://img.pokemondb.net/artwork/heliolisk.jpg', 302, 7, 38, 16, 24, 206, 24, 6), (696, 'Tyrunt', 'https://img.pokemondb.net/artwork/tyrunt.jpg', 303, 19, 208, 83, 2, 2, 28, 6), (697, 'Tyrantrum', 'https://img.pokemondb.net/artwork/tyrantrum.jpg', 304, 11, 305, 306, 64, 29, 48, 6), (698, 'Amaura', 'https://img.pokemondb.net/artwork/amaura.jpg', 303, 83, 29, 18, 74, 8, 80, 6), (699, 'Aurorus', 'https://img.pokemondb.net/artwork/aurorus.jpg', 304, 236, 83, 52, 204, 76, 19, 6), (700, 'Sylveon', 'https://img.pokemondb.net/artwork/sylveon.jpg', 10, 63, 4, 4, 67, 113, 6, 6), (701, 'Hawlucha', 'https://img.pokemondb.net/artwork/hawlucha.jpg', 104, 22, 76, 44, 205, 8, 218, 6), (702, 'Dedenne', 'https://img.pokemondb.net/artwork/dedenne.jpg', 307, 74, 19, 81, 54, 74, 50, 6), (703, 'Carbink', 'https://img.pokemondb.net/artwork/carbink.jpg', 104, 18, 18, 130, 18, 130, 18, 6), (704, 'Goomy', 'https://img.pokemondb.net/artwork/goomy.jpg', 68, 2, 18, 35, 38, 44, 43, 6), (705, 'Sliggoo', 'https://img.pokemondb.net/artwork/sliggoo.jpg', 158, 138, 44, 132, 12, 241, 6, 6), (706, 'Goodra', 'https://img.pokemondb.net/artwork/goodra.jpg', 148, 41, 13, 42, 67, 130, 9, 6), (707, 'Klefki', 'https://img.pokemondb.net/artwork/klefki.jpg', 123, 81, 9, 149, 9, 77, 44, 6), (708, 'Phantump', 'https://img.pokemondb.net/artwork/phantump.jpg', 14, 17, 42, 28, 18, 6, 88, 6), (709, 'Trevenant', 'https://img.pokemondb.net/artwork/trevenant.jpg', 191, 25, 67, 78, 4, 11, 46, 6), (710, 'Pumpkaboo', 'https://img.pokemondb.net/artwork/pumpkaboo.jpg', 115, 3, 202, 42, 27, 38, 174, 6), (711, 'Gourgeist', 'https://img.pokemondb.net/artwork/gourgeist.jpg', 235, 4, 41, 284, 19, 44, 23, 6), (712, 'Bergmite', 'https://img.pokemondb.net/artwork/bergmite.jpg', 308, 38, 64, 25, 181, 35, 162, 6), (713, 'Avalugg', 'https://img.pokemondb.net/artwork/avalugg.jpg', 309, 63, 261, 310, 27, 80, 162, 6), (714, 'Noibat', 'https://img.pokemondb.net/artwork/noibat.jpg', 93, 43, 34, 35, 2, 43, 38, 6), (715, 'Noivern', 'https://img.pokemondb.net/artwork/noivern.jpg', 144, 25, 42, 9, 55, 9, 236, 6), (716, 'Xerneas', 'https://img.pokemondb.net/artwork/xerneas.jpg', 151, 290, 274, 63, 274, 247, 204, 6), (717, 'Yveltal', 'https://img.pokemondb.net/artwork/yveltal.jpg', 151, 290, 274, 63, 274, 247, 204, 6), (718, 'Zygarde', 'https://img.pokemondb.net/artwork/zygarde.jpg', 148, 209, 13, 305, 54, 63, 63, 6), (719, 'Diancie', 'https://img.pokemondb.net/artwork/diancie.jpg', 148, 18, 13, 130, 13, 130, 18, 6), (720, 'Hoopa', 'https://img.pokemondb.net/artwork/hoopa.jpg', 148, 9, 67, 6, 130, 113, 42, 6), (721, 'Volcanion', 'https://img.pokemondb.net/artwork/volcanion.jpg', 148, 9, 67, 101, 113, 41, 42, 6), (722, 'Rowlet', 'https://img.pokemondb.net/artwork/rowlet.jpg', 65, 138, 38, 38, 18, 18, 128, 7), (723, 'Dartrix', 'https://img.pokemondb.net/artwork/dartrix.jpg', 147, 22, 44, 44, 42, 42, 16, 7), (724, 'Decidueye', 'https://img.pokemondb.net/artwork/decidueye.jpg', 30, 22, 203, 44, 13, 13, 42, 7), (725, 'Litten', 'https://img.pokemondb.net/artwork/litten.jpg', 65, 2, 4, 43, 6, 43, 42, 7), (726, 'Torracat', 'https://img.pokemondb.net/artwork/torracat.jpg', 147, 4, 25, 18, 9, 18, 41, 7), (727, 'Incineroar', 'https://img.pokemondb.net/artwork/incineroar.jpg', 30, 63, 90, 41, 9, 41, 6, 7), (728, 'Popplio', 'https://img.pokemondb.net/artwork/popplio.jpg', 65, 18, 61, 61, 202, 46, 43, 7), (729, 'Brionne', 'https://img.pokemondb.net/artwork/brionne.jpg', 147, 6, 64, 64, 149, 54, 18, 7), (730, 'Primarina', 'https://img.pokemondb.net/artwork/primarina.jpg', 30, 9, 205, 205, 290, 232, 6, 7), (731, 'Pikipek', 'https://img.pokemondb.net/artwork/pikipek.jpg', 98, 35, 44, 34, 34, 34, 4, 7), (732, 'Trumbeak', 'https://img.pokemondb.net/artwork/trumbeak.jpg', 145, 38, 25, 18, 43, 18, 44, 7), (733, 'Toucannon', 'https://img.pokemondb.net/artwork/toucannon.jpg', 66, 9, 101, 44, 44, 44, 6, 7), (734, 'Yungoos', 'https://img.pokemondb.net/artwork/yungoos.jpg', 51, 28, 42, 34, 34, 34, 2, 7), (735, 'Gumshoos', 'https://img.pokemondb.net/artwork/gumshoos.jpg', 242, 210, 67, 6, 38, 6, 2, 7), (736, 'Grubbin', 'https://img.pokemondb.net/artwork/grubbin.jpg', 68, 71, 7, 2, 38, 2, 80, 7), (737, 'Charjabug', 'https://img.pokemondb.net/artwork/charjabug.jpg', 111, 81, 11, 63, 38, 44, 157, 7), (738, 'Vikavolt', 'https://img.pokemondb.net/artwork/vikavolt.jpg', 104, 83, 42, 41, 238, 44, 17, 7), (739, 'Crabrawler', 'https://img.pokemondb.net/artwork/crabrawler.jpg', 311, 71, 11, 81, 128, 71, 8, 7), (740, 'Crabominable', 'https://img.pokemondb.net/artwork/crabominable.jpg', 312, 55, 313, 83, 7, 74, 17, 7), (741, 'Oricorio', 'https://www.mangaluxe.com/pokemon/img/plumeline-oricorio-pom-pom.png ', 314, 44, 42, 42, 247, 42, 141, 7), (742, 'Cutiefly', 'https://img.pokemondb.net/artwork/cutiefly.jpg', 308, 43, 2, 43, 38, 43, 23, 7), (743, 'Ribombee', 'https://img.pokemondb.net/artwork/ribombee.jpg', 270, 6, 38, 6, 63, 42, 277, 7), (744, 'Rockruff', 'https://img.pokemondb.net/artwork/rockruff.jpg', 164, 2, 4, 43, 34, 43, 6, 7), (745, 'Lycanroc', 'https://assets.pokemon.com/assets/cms2/img/pokedex/full/746.png ', 249, 44, 90, 4, 38, 4, 228, 7), (746, 'Wishiwashi', 'https://www.pokepedia.fr/images/0/08/Bekaglaçon_(Tête_de_Gel)-EB.png', 315, 2, 36, 36, 39, 39, 43, 7), (747, 'Mareanie', 'https://img.pokemondb.net/artwork/mareanie.jpg', 97, 18, 132, 7, 17, 16, 2, 7), (748, 'Toxapex', 'https://img.pokemondb.net/artwork/toxapex.jpg', 117, 18, 8, 316, 132, 317, 35, 7), (749, 'Mudbray', 'https://img.pokemondb.net/artwork/mudbray.jpg', 107, 42, 13, 42, 2, 38, 2, 7), (750, 'Mudsdale', 'https://img.pokemondb.net/artwork/mudsdale.jpg', 104, 13, 131, 13, 38, 25, 35, 7), (751, 'Dewpider', 'https://img.pokemondb.net/artwork/dewpider.jpg', 180, 88, 43, 16, 43, 52, 258, 7), (752, 'Araquanid', 'https://img.pokemondb.net/artwork/araquanid.jpg', 182, 138, 42, 76, 18, 313, 128, 7), (753, 'Fomantis', 'https://img.pokemondb.net/artwork/fomantis.jpg', 135, 43, 38, 35, 18, 35, 35, 7), (754, 'Lurantis', 'https://img.pokemondb.net/artwork/lurantis.jpg', 171, 42, 32, 41, 9, 41, 2, 7), (755, 'Morelull', 'https://img.pokemondb.net/artwork/morelull.jpg', 96, 43, 35, 38, 4, 44, 110, 7), (756, 'Shiinotic', 'https://img.pokemondb.net/artwork/shiinotic.jpg', 5, 6, 2, 9, 41, 13, 34, 7), (757, 'Salandit', 'https://img.pokemondb.net/artwork/salandit.jpg', 65, 28, 27, 43, 48, 43, 83, 7), (758, 'Salazzle', 'https://img.pokemondb.net/artwork/salazzle.jpg', 171, 138, 20, 6, 211, 6, 261, 7), (759, 'Stufful', 'https://img.pokemondb.net/artwork/stufful.jpg', 133, 42, 44, 18, 2, 18, 18, 7), (760, 'Bewear', 'https://img.pokemondb.net/artwork/bewear.jpg', 104, 101, 131, 9, 38, 6, 6, 7), (761, 'Bounsweet', 'https://img.pokemondb.net/artwork/bounsweet.jpg', 163, 128, 34, 88, 34, 88, 181, 7), (762, 'Steenee', 'https://img.pokemondb.net/artwork/steenee.jpg', 102, 16, 43, 28, 43, 28, 7, 7), (763, 'Tsareena', 'https://img.pokemondb.net/artwork/tsareena.jpg', 108, 52, 101, 247, 18, 247, 52, 7), (764, 'Comfey', 'https://img.pokemondb.net/artwork/comfey.jpg', 66, 174, 16, 41, 11, 67, 13, 7), (765, 'Oranguru', 'https://img.pokemondb.net/artwork/oranguru.jpg', 95, 41, 6, 9, 41, 67, 6, 7), (766, 'Passimian', 'https://img.pokemondb.net/artwork/passimian.jpg', 95, 13, 101, 41, 43, 6, 9, 7), (767, 'Wimpod', 'https://img.pokemondb.net/artwork/wimpod.jpg', 170, 39, 35, 43, 36, 34, 9, 7), (768, 'Golisopod', 'https://img.pokemondb.net/artwork/golisopod.jpg', 30, 44, 131, 92, 6, 41, 43, 7), (769, 'Sandygast', 'https://img.pokemondb.net/artwork/sandygast.jpg', 65, 38, 38, 9, 42, 2, 110, 7), (770, 'Palossand', 'https://img.pokemondb.net/artwork/palossand.jpg', 171, 25, 44, 67, 13, 44, 35, 7), (771, 'Pyukumuku', 'https://img.pokemondb.net/artwork/pyukumuku.jpg', 118, 38, 6, 113, 34, 113, 136, 7), (772, 'Type: Null', 'https://img.pokemondb.net/artwork/type-null.jpg', 21, 63, 63, 63, 63, 63, 29, 7), (773, 'Silvally', 'https://img.pokemondb.net/artwork/silvally.jpg', 318, 63, 63, 63, 63, 63, 63, 7), (774, 'Minior', 'https://img.pokemondb.net/artwork/minior.jpg', 103, 6, 6, 13, 6, 13, 6, 7), (775, 'Komala', 'https://img.pokemondb.net/artwork/komala.jpg', 171, 4, 90, 4, 44, 63, 4, 7), (776, 'Turtonator', 'https://img.pokemondb.net/artwork/turtonator.jpg', 66, 6, 22, 112, 149, 25, 157, 7), (777, 'Togedemaru', 'https://img.pokemondb.net/artwork/togedemaru.jpg', 91, 4, 247, 8, 43, 86, 160, 7), (778, 'Mimikyu', 'https://img.pokemondb.net/artwork/mimikyu.jpg', 314, 38, 41, 9, 18, 32, 160, 7), (779, 'Bruxish', 'https://img.pokemondb.net/artwork/bruxish.jpg', 124, 138, 32, 42, 42, 42, 76, 7), (780, 'Drampa', 'https://img.pokemondb.net/artwork/drampa.jpg', 66, 22, 6, 25, 112, 149, 157, 7), (781, 'Dhelmise', 'https://img.pokemondb.net/artwork/dhelmise.jpg', 319, 42, 274, 13, 159, 41, 43, 7), (782, 'Jangmo-o', 'https://img.pokemondb.net/artwork/jangmo-o.jpg', 68, 2, 38, 4, 2, 2, 2, 7), (783, 'Hakamo-o', 'https://img.pokemondb.net/artwork/hakamo-o.jpg', 147, 38, 44, 41, 4, 42, 4, 7), (784, 'Kommo-o', 'https://img.pokemondb.net/artwork/kommo-o.jpg', 148, 44, 67, 131, 13, 32, 25, 7), (785, '<NAME>', 'https://img.pokemondb.net/artwork/tapu-koko.jpg', 318, 42, 90, 25, 63, 44, 113, 7), (786, '<NAME>', 'https://img.pokemondb.net/artwork/tapu-lele.jpg', 318, 42, 25, 44, 113, 90, 63, 7), (787, '<NAME>', 'https://img.pokemondb.net/artwork/tapu-bulu.jpg', 318, 42, 113, 90, 25, 63, 44, 7), (788, '<NAME>', 'https://img.pokemondb.net/artwork/tapu-fini.jpg', 318, 42, 44, 90, 63, 113, 25, 7), (789, 'Cosmog', 'https://img.pokemondb.net/artwork/cosmog.jpg', 142, 17, 222, 57, 222, 57, 172, 7), (790, 'Cosmoem', 'https://img.pokemondb.net/artwork/cosmoem.jpg', 111, 17, 222, 274, 222, 274, 172, 7), (791, 'Solgaleo', 'https://img.pokemondb.net/artwork/solgaleo.jpg', 151, 320, 320, 203, 241, 208, 55, 7), (792, 'Lunala', 'https://img.pokemondb.net/artwork/lunala.jpg', 151, 320, 241, 208, 320, 203, 55, 7), (793, 'Nihilego', 'https://img.pokemondb.net/artwork/nihilego.jpg', 318, 24, 132, 71, 321, 274, 230, 7), (794, 'Buzzwole', 'https://img.pokemondb.net/artwork/buzzwole.jpg', 318, 203, 322, 322, 132, 132, 31, 7), (795, 'Pheromosa', 'https://img.pokemondb.net/artwork/pheromosa.jpg', 318, 48, 320, 172, 320, 172, 323, 7), (796, 'Xurkitree', 'https://img.pokemondb.net/artwork/xurkitree.jpg', 318, 12, 208, 48, 324, 48, 12, 7), (797, 'Celesteela', 'https://img.pokemondb.net/artwork/celesteela.jpg', 318, 55, 50, 230, 203, 50, 59, 7), (798, 'Kartana', 'https://img.pokemondb.net/artwork/kartana.jpg', 318, 29, 325, 274, 29, 57, 24, 7), (799, 'Guzzlord', 'https://img.pokemondb.net/artwork/guzzlord.jpg', 318, 326, 50, 132, 55, 132, 17, 7), (800, 'Necrozma', 'https://img.pokemondb.net/artwork/necrozma.jpg', 148, 55, 203, 50, 321, 208, 31, 7), (801, 'Magearna', 'https://img.pokemondb.net/artwork/magearna.jpg', 148, 9, 63, 90, 113, 90, 4, 7), (802, 'Marshadow', 'https://img.pokemondb.net/artwork/marshadow.jpg', 148, 41, 131, 9, 41, 41, 131, 7), (803, 'Poipole', 'https://img.pokemondb.net/artwork/poipole.jpg', 147, 74, 86, 74, 86, 74, 86, 8), (804, 'Naganadel', 'https://img.pokemondb.net/artwork/naganadel.jpg', 143, 86, 86, 86, 321, 86, 305, 8), (805, 'Stakataka', 'https://img.pokemondb.net/artwork/stakataka.jpg', 318, 59, 274, 327, 132, 50, 328, 8), (806, 'Blacephalon', 'https://img.pokemondb.net/artwork/blacephalon.jpg', 318, 132, 321, 132, 323, 31, 203, 8), (807, 'Zeraora', 'https://img.pokemondb.net/artwork/zeraora.jpg', 148, 210, 228, 44, 82, 9, 329, 8), (808, 'Meltan', 'https://img.pokemondb.net/artwork/meltan.jpg', 68, 80, 4, 4, 38, 35, 155, 8), (809, 'Melmetal', 'https://img.pokemondb.net/artwork/melmetal.jpg', 148, 112, 329, 329, 9, 4, 155, 8), (810, 'Grookey', 'https://img.pokemondb.net/artwork/grookey.jpg', 109, 18, 4, 18, 43, 43, 4, 8), (811, 'Thwackey', 'https://img.pokemondb.net/artwork/thwackey.jpg', 147, 42, 25, 42, 38, 6, 9, 8), (812, 'Rillaboom', 'https://img.pokemondb.net/artwork/rillaboom.jpg', 30, 13, 131, 41, 6, 42, 25, 8), (813, 'Scorbunny', 'https://img.pokemondb.net/artwork/scorbunny.jpg', 109, 18, 48, 43, 43, 43, 64, 8), (814, 'Raboot', 'https://img.pokemondb.net/artwork/raboot.jpg', 147, 4, 159, 6, 38, 6, 206, 8), (815, 'Cinderace', 'https://img.pokemondb.net/artwork/cinderace.jpg', 30, 9, 232, 44, 4, 44, 306, 8), (816, 'Sobble', 'https://img.pokemondb.net/artwork/sobble.jpg', 109, 18, 43, 43, 42, 43, 42, 8), (817, 'Drizzile', 'https://img.pokemondb.net/artwork/drizzile.jpg', 147, 4, 6, 38, 63, 38, 41, 8), (818, 'Inteleon', 'https://img.pokemondb.net/artwork/inteleon.jpg', 30, 42, 25, 4, 131, 4, 101, 8), (819, 'Skwovet', 'https://img.pokemondb.net/artwork/skwovet.jpg', 70, 42, 38, 38, 35, 35, 39, 8), (820, 'Greedent', 'https://img.pokemondb.net/artwork/greedent.jpg', 140, 101, 63, 63, 38, 44, 36, 8), (821, 'Rookidee', 'https://img.pokemondb.net/artwork/rookidee.jpg', 93, 88, 71, 35, 169, 35, 81, 8), (822, 'Corvisquire', 'https://img.pokemondb.net/artwork/corvisquire.jpg', 73, 138, 74, 38, 17, 38, 83, 8), (823, 'Corviknight', 'https://img.pokemondb.net/artwork/corviknight.jpg', 117, 247, 77, 32, 132, 25, 74, 8), (824, 'Blipbug', 'https://img.pokemondb.net/artwork/blipbug.jpg', 125, 39, 36, 36, 39, 2, 2, 8), (825, 'Dottler', 'https://img.pokemondb.net/artwork/dottler.jpg', 115, 18, 35, 9, 18, 41, 34, 8), (826, 'Orbeetle', 'https://img.pokemondb.net/artwork/orbeetle.jpg', 75, 6, 2, 67, 9, 101, 41, 8), (827, 'Nickit', 'https://img.pokemondb.net/artwork/nickit.jpg', 93, 43, 162, 162, 71, 16, 18, 8), (828, 'Thievul', 'https://img.pokemondb.net/artwork/thievul.jpg', 94, 42, 19, 19, 77, 76, 41, 8), (829, 'Gossifleur', 'https://img.pokemondb.net/artwork/gossifleur.jpg', 135, 43, 43, 6, 43, 6, 99, 8), (830, 'Eldegoss', 'https://img.pokemondb.net/artwork/eldegoss.jpg', 140, 6, 18, 41, 9, 101, 6, 8), (831, 'Wooloo', 'https://img.pokemondb.net/artwork/wooloo.jpg', 89, 128, 43, 38, 43, 2, 28, 8), (832, 'Dubwool', 'https://img.pokemondb.net/artwork/dubwool.jpg', 95, 52, 9, 13, 6, 41, 210, 8), (833, 'Chewtle', 'https://img.pokemondb.net/artwork/chewtle.jpg', 330, 18, 20, 18, 88, 88, 27, 8), (834, 'Drednaw', 'https://img.pokemondb.net/artwork/drednaw.jpg', 66, 41, 90, 41, 28, 138, 205, 8), (835, 'Yamper', 'https://img.pokemondb.net/artwork/yamper.jpg', 89, 29, 2, 18, 43, 18, 331, 8), (836, 'Boltund', 'https://img.pokemondb.net/artwork/boltund.jpg', 95, 64, 41, 6, 41, 6, 305, 8), (837, 'Rolycoly', 'https://img.pokemondb.net/artwork/rolycoly.jpg', 176, 34, 43, 18, 43, 18, 34, 8), (838, 'Carkol', 'https://img.pokemondb.net/artwork/carkol.jpg', 118, 9, 6, 41, 6, 42, 18, 8), (839, 'Coalossal', 'https://img.pokemondb.net/artwork/coalossal.jpg', 108, 67, 9, 101, 9, 41, 34, 8), (840, 'Applin', 'https://img.pokemondb.net/artwork/applin.jpg', 194, 43, 43, 9, 43, 43, 36, 8), (841, 'Flapple', 'https://img.pokemondb.net/artwork/flapple.jpg', 66, 42, 67, 9, 63, 6, 42, 8), (842, 'Appletun', 'https://img.pokemondb.net/artwork/appletun.jpg', 66, 67, 25, 9, 13, 9, 34, 8), (843, 'Silicobra', 'https://img.pokemondb.net/artwork/silicobra.jpg', 119, 16, 81, 44, 35, 18, 80, 8), (844, 'Sandaconda', 'https://img.pokemondb.net/artwork/sandaconda.jpg', 108, 52, 203, 131, 4, 42, 48, 8), (845, 'Cramorant', 'https://img.pokemondb.net/artwork/cramorant.jpg', 124, 42, 25, 38, 25, 63, 25, 8), (846, 'Arrokuda', 'https://img.pokemondb.net/artwork/arrokuda.jpg', 164, 72, 8, 43, 43, 34, 202, 8), (847, 'Barraskewda', 'https://img.pokemondb.net/artwork/barraskewda.jpg', 95, 59, 236, 6, 6, 18, 332, 8), (848, 'Toxel', 'https://img.pokemondb.net/artwork/toxel.jpg', 333, 43, 88, 35, 61, 35, 43, 8), (849, 'Toxtricity', 'https://img.pokemondb.net/artwork/toxtricity.jpg', 334, 44, 247, 42, 207, 42, 44, 8), (850, 'Sizzlipede', 'https://img.pokemondb.net/artwork/sizzlipede.jpg', 97, 18, 4, 2, 18, 18, 2, 8), (851, 'Centiskorch', 'https://img.pokemondb.net/artwork/centiskorch.jpg', 10, 13, 90, 4, 41, 41, 4, 8), (852, 'Clobbopus', 'https://img.pokemondb.net/artwork/clobbopus.jpg', 109, 18, 138, 6, 18, 18, 181, 8), (853, 'Grapploct', 'https://img.pokemondb.net/artwork/grapploct.jpg', 171, 9, 218, 41, 42, 9, 128, 8), (854, 'Sinistea', 'https://img.pokemondb.net/artwork/sinistea.jpg', 201, 43, 2, 2, 205, 61, 18, 8), (855, 'Polteageist', 'https://img.pokemondb.net/artwork/polteageist.jpg', 254, 6, 4, 4, 150, 207, 42, 8), (856, 'Hatenna', 'https://img.pokemondb.net/artwork/hatenna.jpg', 98, 128, 34, 2, 46, 132, 15, 8), (857, 'Hattrem', 'https://img.pokemondb.net/artwork/hattrem.jpg', 243, 81, 43, 4, 159, 86, 3, 8), (858, 'Hatterene', 'https://img.pokemondb.net/artwork/hatterene.jpg', 108, 81, 41, 63, 332, 230, 222, 8), (859, 'Impidimp', 'https://img.pokemondb.net/artwork/impidimp.jpg', 98, 2, 2, 34, 38, 43, 18, 8), (860, 'Morgrem', 'https://img.pokemondb.net/artwork/morgrem.jpg', 243, 4, 6, 2, 44, 38, 42, 8), (861, 'Grimmsnarl', 'https://img.pokemondb.net/artwork/grimmsnarl.jpg', 108, 63, 101, 4, 63, 44, 6, 8), (862, 'Obstagoon', 'https://img.pokemondb.net/artwork/obstagoon.jpg', 139, 141, 41, 50, 6, 54, 63, 8), (863, 'Perrserker', 'https://img.pokemondb.net/artwork/perrserker.jpg', 103, 42, 67, 13, 18, 6, 18, 8), (864, 'Cursola', 'https://img.pokemondb.net/artwork/cursola.jpg', 108, 6, 63, 18, 238, 113, 34, 8), (865, 'Sirfetch\'d', 'https://img.pokemondb.net/artwork/sirfetchd.jpg', 293, 7, 112, 63, 138, 11, 4, 8), (866, '<NAME>', 'https://img.pokemondb.net/artwork/mr-rime.jpg', 139, 9, 25, 44, 67, 13, 42, 8), (867, 'Runerigus', 'https://img.pokemondb.net/artwork/runerigus.jpg', 85, 19, 63, 238, 18, 32, 34, 8), (868, 'Milcery', 'https://img.pokemondb.net/artwork/milcery.jpg', 89, 2, 43, 43, 18, 59, 155, 8), (869, 'Alcremie', 'https://img.pokemondb.net/artwork/alcremie.jpg', 117, 4, 6, 44, 67, 305, 20, 8), (870, 'Falinks', 'https://img.pokemondb.net/artwork/falinks.jpg', 123, 4, 13, 13, 42, 6, 44, 8), (871, 'Pincurchin', 'https://img.pokemondb.net/artwork/pincurchin.jpg', 91, 28, 50, 63, 149, 25, 110, 8), (872, 'Snom', 'https://img.pokemondb.net/artwork/snom.jpg', 335, 34, 39, 35, 2, 34, 36, 8), (873, 'Frosmoth', 'https://img.pokemondb.net/artwork/frosmoth.jpg', 124, 42, 4, 6, 131, 41, 4, 8), (874, 'Stonjourner', 'https://img.pokemondb.net/artwork/stonjourner.jpg', 123, 13, 131, 112, 36, 36, 42, 8), (875, 'Eiscue', 'https://www.pokepedia.fr/images/0/08/Bekaglaçon_(Tête_de_Gel)-EB.png ', 123, 44, 9, 67, 4, 41, 18, 8), (876, 'Indeedee', 'https://img.pokemondb.net/artwork/indeedee.jpg', 124, 6, 4, 38, 32, 63, 63, 8), (877, 'Morpeko', 'https://www.pokepedia.fr/images/thumb/c/c8/Morpeko_(Mode_Rassasié)-EB.png/671px-Morpeko_(Mode_Rassasié)-EB.png', 336, 19, 63, 19, 42, 19, 55, 8), (878, 'Cufant', 'https://img.pokemondb.net/artwork/cufant.jpg', 129, 52, 9, 3, 43, 3, 43, 8), (879, 'Copperajah', 'https://img.pokemondb.net/artwork/copperajah.jpg', 104, 284, 113, 64, 9, 64, 34, 8), (880, 'Dracozolt', 'https://img.pokemondb.net/artwork/dracozolt.jpg', 75, 41, 13, 41, 9, 42, 44, 8), (881, 'Arctozolt', 'https://img.pokemondb.net/artwork/arctozolt.jpg', 75, 41, 13, 41, 41, 9, 38, 8), (882, 'Dracovish', 'https://img.pokemondb.net/artwork/dracovish.jpg', 75, 41, 41, 13, 42, 9, 44, 8), (883, 'Arctovish', 'https://img.pokemondb.net/artwork/arctovish.jpg', 75, 41, 41, 13, 9, 41, 38, 8), (884, 'Duraludon', 'https://img.pokemondb.net/artwork/duraludon.jpg', 144, 42, 63, 90, 101, 18, 25, 8), (885, 'Dreepy', 'https://img.pokemondb.net/artwork/dreepy.jpg', 89, 162, 6, 34, 43, 34, 11, 8), (886, 'Drakloak', 'https://img.pokemondb.net/artwork/drakloak.jpg', 118, 138, 9, 18, 6, 18, 82, 8), (887, 'Dragapult', 'https://img.pokemondb.net/artwork/dragapult.jpg', 148, 210, 101, 44, 13, 44, 317, 8), (888, 'Zacian', 'https://img.pokemondb.net/artwork/zacian.jpg', 239, 76, 198, 90, 9, 90, 337, 8), (889, 'Zamazenta', 'https://img.pokemondb.net/artwork/zamazenta.jpg', 239, 76, 113, 238, 9, 238, 282, 8), (890, 'Eternatus', 'https://img.pokemondb.net/artwork/eternatus.jpg', 338, 92, 25, 63, 238, 63, 113, 8), (891, 'Kubfu', 'https://img.pokemondb.net/artwork/kubfu.jpg', 107, 6, 41, 6, 132, 18, 52, 8), (892, 'Urshifu', 'https://swordshield.pokemon.com/assets/img/articles/ex/pokemon_urshifu_2x.png', 279, 13, 113, 13, 8, 6, 55, 8), (893, 'Zarude', 'https://img.pokemondb.net/artwork/zarude.jpg', 148, 32, 101, 32, 42, 63, 32, 8), (894, 'Regieleki', 'https://img.pokemondb.net/artwork/regieleki.jpg', 146, 9, 13, 18, 13, 18, 142, 8), (895, 'Regidrago', 'https://img.pokemondb.net/artwork/regidrago.jpg', 146, 142, 13, 18, 13, 18, 9, 8), (896, 'Glastrier', 'https://img.pokemondb.net/artwork/glastrier.jpg', 146, 13, 238, 113, 4, 67, 34, 8), (897, 'Spectrier', 'https://img.pokemondb.net/artwork/spectrier.jpg', 146, 13, 4, 6, 238, 9, 113, 8), (898, 'Calyrex', 'https://img.pokemondb.net/artwork/calyrex.jpg', 104, 13, 9, 9, 9, 9, 9, 8); -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `special_attack` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `special_attack` ( `id_pokemon` int ,`special_attack` int ); -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `special_defense` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `special_defense` ( `id_pokemon` int ,`special_defense` int ); -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `speed` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `speed` ( `id_pokemon` int ,`speed` int ); -- -------------------------------------------------------- -- -- Structure de la table `stats` -- CREATE TABLE `stats` ( `id_stats` int NOT NULL, `value` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- -- Déchargement des données de la table `stats` -- INSERT INTO `stats` (`id_stats`, `value`) VALUES (1, 318), (2, 45), (3, 49), (4, 65), (5, 405), (6, 60), (7, 62), (8, 63), (9, 80), (10, 525), (11, 82), (12, 83), (13, 100), (14, 309), (15, 39), (16, 52), (17, 43), (18, 50), (19, 58), (20, 64), (21, 534), (22, 78), (23, 84), (24, 109), (25, 85), (26, 314), (27, 44), (28, 48), (29, 59), (30, 530), (31, 79), (32, 105), (33, 195), (34, 30), (35, 35), (36, 20), (37, 205), (38, 55), (39, 25), (40, 395), (41, 90), (42, 70), (43, 40), (44, 75), (45, 251), (46, 56), (47, 349), (48, 71), (49, 479), (50, 101), (51, 253), (52, 72), (53, 413), (54, 81), (55, 97), (56, 262), (57, 31), (58, 442), (59, 61), (60, 288), (61, 54), (62, 448), (63, 95), (64, 69), (65, 320), (66, 485), (67, 110), (68, 300), (69, 450), (70, 275), (71, 47), (72, 41), (73, 365), (74, 67), (75, 505), (76, 92), (77, 87), (78, 76), (79, 273), (80, 46), (81, 57), (82, 102), (83, 77), (84, 323), (85, 483), (86, 73), (87, 299), (88, 38), (89, 270), (90, 115), (91, 435), (92, 140), (93, 245), (94, 455), (95, 490), (96, 285), (97, 305), (98, 265), (99, 10), (100, 425), (101, 120), (102, 290), (103, 440), (104, 500), (105, 350), (106, 555), (107, 385), (108, 510), (109, 310), (110, 15), (111, 400), (112, 135), (113, 130), (114, 390), (115, 335), (116, 515), (117, 495), (118, 410), (119, 315), (120, 325), (121, 465), (122, 377), (123, 470), (124, 475), (125, 180), (126, 160), (127, 328), (128, 42), (129, 330), (130, 150), (131, 125), (132, 53), (133, 340), (134, 345), (135, 250), (136, 5), (137, 295), (138, 68), (139, 520), (140, 460), (141, 93), (142, 200), (143, 540), (144, 535), (145, 355), (146, 580), (147, 420), (148, 600), (149, 91), (150, 134), (151, 680), (152, 106), (153, 154), (154, 215), (155, 34), (156, 415), (157, 36), (158, 452), (159, 86), (160, 96), (161, 218), (162, 28), (163, 210), (164, 280), (165, 360), (166, 430), (167, 336), (168, 190), (169, 33), (170, 230), (171, 480), (172, 37), (173, 255), (174, 51), (175, 220), (176, 240), (177, 198), (178, 278), (179, 518), (180, 269), (181, 32), (182, 454), (183, 670), (184, 266), (185, 456), (186, 236), (187, 1), (188, 23), (189, 104), (190, 237), (191, 474), (192, 144), (193, 375), (194, 260), (195, 380), (196, 302), (197, 467), (198, 170), (199, 458), (200, 468), (201, 308), (202, 66), (203, 107), (204, 99), (205, 74), (206, 94), (207, 114), (208, 89), (209, 108), (210, 88), (211, 111), (212, 194), (213, 384), (214, 263), (215, 363), (216, 523), (217, 165), (218, 118), (219, 168), (220, 138), (221, 224), (222, 29), (223, 424), (224, 244), (225, 482), (226, 348), (227, 498), (228, 112), (229, 329), (230, 103), (231, 24), (232, 116), (233, 411), (234, 334), (235, 494), (236, 123), (237, 545), (238, 145), (239, 720), (240, 528), (241, 113), (242, 418), (243, 370), (244, 281), (245, 446), (246, 316), (247, 98), (248, 292), (249, 487), (250, 264), (251, 358), (252, 488), (253, 497), (254, 508), (255, 445), (256, 294), (257, 509), (258, 27), (259, 351), (260, 519), (261, 117), (262, 461), (263, 303), (264, 22), (265, 133), (266, 401), (267, 567), (268, 473), (269, 428), (270, 464), (271, 319), (272, 472), (273, 489), (274, 131), (275, 147), (276, 471), (277, 124), (278, 484), (279, 550), (280, 129), (281, 660), (282, 128), (283, 313), (284, 122), (285, 307), (286, 409), (287, 423), (288, 382), (289, 499), (290, 126), (291, 213), (292, 369), (293, 507), (294, 371), (295, 552), (296, 531), (297, 466), (298, 341), (299, 462), (300, 306), (301, 289), (302, 481), (303, 362), (304, 521), (305, 121), (306, 119), (307, 431), (308, 304), (309, 514), (310, 184), (311, 338), (312, 478), (313, 132), (314, 476), (315, 175), (316, 152), (317, 142), (318, 570), (319, 517), (320, 137), (321, 127), (322, 139), (323, 151), (324, 173), (325, 181), (326, 223), (327, 211), (328, 13), (329, 143), (330, 284), (331, 26), (332, 136), (333, 242), (334, 502), (335, 185), (336, 436), (337, 148), (338, 690); -- -------------------------------------------------------- -- -- Doublure de structure pour la vue `total` -- (Voir ci-dessous la vue réelle) -- CREATE TABLE `total` ( `id_pokemon` int ,`total` int ); -- -------------------------------------------------------- -- -- Structure de la table `types` -- CREATE TABLE `types` ( `id_type` int NOT NULL, `type` varchar(45) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- -- Déchargement des données de la table `types` -- INSERT INTO `types` (`id_type`, `type`) VALUES (1, 'Grass'), (2, 'Poison'), (3, 'Fire'), (4, 'Flying'), (5, 'Bug'), (6, 'Normal'), (7, 'Ground'), (8, 'Fairy'), (9, 'Water'), (10, 'Fighting'), (11, 'Rock'), (12, 'Psychic'), (13, 'Electric'), (14, 'Steel'), (15, 'Ice'), (16, 'Ghost'), (17, 'Dragon'), (18, 'Dark'); -- -------------------------------------------------------- -- -- Structure de la table `types_has_infos` -- CREATE TABLE `types_has_infos` ( `types_id_type` int NOT NULL, `infos_id_pokemon` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- -- Déchargement des données de la table `types_has_infos` -- INSERT INTO `types_has_infos` (`types_id_type`, `infos_id_pokemon`) VALUES (1, 1), (2, 1), (1, 2), (2, 2), (1, 3), (2, 3), (3, 4), (3, 5), (3, 6), (4, 6), (9, 7), (9, 8), (9, 9), (5, 10), (5, 11), (4, 12), (5, 12), (2, 13), (5, 13), (2, 14), (5, 14), (2, 15), (5, 15), (4, 16), (6, 16), (4, 17), (6, 17), (4, 18), (6, 18), (6, 19), (6, 20), (4, 21), (6, 21), (4, 22), (6, 22), (2, 23), (2, 24), (13, 25), (13, 26), (7, 27), (7, 28), (2, 29), (2, 30), (2, 31), (7, 31), (2, 32), (2, 33), (2, 34), (7, 34), (8, 35), (8, 36), (3, 37), (3, 38), (6, 39), (8, 39), (6, 40), (8, 40), (2, 41), (4, 41), (2, 42), (4, 42), (1, 43), (2, 43), (1, 44), (2, 44), (1, 45), (2, 45), (1, 46), (5, 46), (1, 47), (5, 47), (2, 48), (5, 48), (2, 49), (5, 49), (7, 50), (7, 51), (6, 52), (6, 53), (9, 54), (9, 55), (10, 56), (10, 57), (3, 58), (3, 59), (9, 60), (9, 61), (9, 62), (10, 62), (12, 63), (12, 64), (12, 65), (10, 66), (10, 67), (10, 68), (1, 69), (2, 69), (1, 70), (2, 70), (1, 71), (2, 71), (2, 72), (9, 72), (2, 73), (9, 73), (7, 74), (11, 74), (7, 75), (11, 75), (7, 76), (11, 76), (3, 77), (3, 78), (9, 79), (12, 79), (9, 80), (12, 80), (13, 81), (14, 81), (13, 82), (14, 82), (4, 83), (6, 83), (4, 84), (6, 84), (4, 85), (6, 85), (9, 86), (9, 87), (15, 87), (2, 88), (2, 89), (9, 90), (9, 91), (15, 91), (2, 92), (16, 92), (2, 93), (16, 93), (2, 94), (16, 94), (7, 95), (11, 95), (12, 96), (12, 97), (9, 98), (9, 99), (13, 100), (13, 101), (1, 102), (12, 102), (1, 103), (12, 103), (7, 104), (7, 105), (10, 106), (10, 107), (6, 108), (2, 109), (2, 110), (7, 111), (11, 111), (7, 112), (11, 112), (6, 113), (1, 114), (6, 115), (9, 116), (9, 117), (9, 118), (9, 119), (9, 120), (9, 121), (12, 121), (8, 122), (12, 122), (4, 123), (5, 123), (12, 124), (15, 124), (13, 125), (3, 126), (5, 127), (6, 128), (9, 129), (4, 130), (9, 130), (9, 131), (15, 131), (6, 132), (6, 133), (9, 134), (13, 135), (3, 136), (6, 137), (9, 138), (11, 138), (9, 139), (11, 139), (9, 140), (11, 140), (9, 141), (11, 141), (4, 142), (11, 142), (6, 143), (4, 144), (15, 144), (4, 145), (13, 145), (3, 146), (4, 146), (17, 147), (17, 148), (4, 149), (17, 149), (12, 150), (12, 151), (1, 152), (1, 153), (1, 154), (3, 155), (3, 156), (3, 157), (9, 158), (9, 159), (9, 160), (6, 161), (6, 162), (4, 163), (6, 163), (4, 164), (6, 164), (4, 165), (5, 165), (4, 166), (5, 166), (2, 167), (5, 167), (2, 168), (5, 168), (2, 169), (4, 169), (9, 170), (13, 170), (9, 171), (13, 171), (13, 172), (8, 173), (6, 174), (8, 174), (8, 175), (4, 176), (8, 176), (4, 177), (12, 177), (4, 178), (12, 178), (13, 179), (13, 180), (13, 181), (1, 182), (8, 183), (9, 183), (8, 184), (9, 184), (11, 185), (9, 186), (1, 187), (4, 187), (1, 188), (4, 188), (1, 189), (4, 189), (6, 190), (1, 191), (1, 192), (4, 193), (5, 193), (7, 194), (9, 194), (7, 195), (9, 195), (12, 196), (18, 197), (4, 198), (18, 198), (9, 199), (12, 199), (16, 200), (12, 201), (12, 202), (6, 203), (12, 203), (5, 204), (5, 205), (14, 205), (6, 206), (4, 207), (7, 207), (7, 208), (14, 208), (8, 209), (8, 210), (2, 211), (9, 211), (5, 212), (14, 212), (5, 213), (11, 213), (5, 214), (10, 214), (15, 215), (18, 215), (6, 216), (6, 217), (3, 218), (3, 219), (11, 219), (7, 220), (15, 220), (7, 221), (15, 221), (9, 222), (11, 222), (9, 223), (9, 224), (4, 225), (15, 225), (4, 226), (9, 226), (4, 227), (14, 227), (3, 228), (18, 228), (3, 229), (18, 229), (9, 230), (17, 230), (7, 231), (7, 232), (6, 233), (6, 234), (6, 235), (10, 236), (10, 237), (12, 238), (15, 238), (13, 239), (3, 240), (6, 241), (6, 242), (13, 243), (3, 244), (9, 245), (7, 246), (11, 246), (7, 247), (11, 247), (11, 248), (18, 248), (4, 249), (12, 249), (3, 250), (4, 250), (1, 251), (12, 251), (1, 252), (1, 253), (1, 254), (3, 255), (3, 256), (10, 256), (3, 257), (10, 257), (9, 258), (7, 259), (9, 259), (7, 260), (9, 260), (18, 261), (18, 262), (6, 263), (6, 264), (5, 265), (5, 266), (4, 267), (5, 267), (5, 268), (2, 269), (5, 269), (1, 270), (9, 270), (1, 271), (9, 271), (1, 272), (9, 272), (1, 273), (1, 274), (18, 274), (1, 275), (18, 275), (4, 276), (6, 276), (4, 277), (6, 277), (4, 278), (9, 278), (4, 279), (9, 279), (8, 280), (12, 280), (8, 281), (12, 281), (8, 282), (12, 282), (5, 283), (9, 283), (4, 284), (5, 284), (1, 285), (1, 286), (10, 286), (6, 287), (6, 288), (6, 289), (5, 290), (7, 290), (4, 291), (5, 291), (5, 292), (16, 292), (6, 293), (6, 294), (6, 295), (10, 296), (10, 297), (6, 298), (8, 298), (11, 299), (6, 300), (6, 301), (16, 302), (18, 302), (8, 303), (14, 303), (11, 304), (14, 304), (11, 305), (14, 305), (11, 306), (14, 306), (10, 307), (12, 307), (10, 308), (12, 308), (13, 309), (13, 310), (13, 311), (13, 312), (5, 313), (5, 314), (1, 315), (2, 315), (2, 316), (2, 317), (9, 318), (18, 318), (9, 319), (18, 319), (9, 320), (9, 321), (3, 322), (7, 322), (3, 323), (7, 323), (3, 324), (12, 325), (12, 326), (6, 327), (7, 328), (7, 329), (17, 329), (7, 330), (17, 330), (1, 331), (1, 332), (18, 332), (4, 333), (6, 333), (4, 334), (17, 334), (6, 335), (2, 336), (11, 337), (12, 337), (11, 338), (12, 338), (7, 339), (9, 339), (7, 340), (9, 340), (9, 341), (9, 342), (18, 342), (7, 343), (12, 343), (7, 344), (12, 344), (1, 345), (11, 345), (1, 346), (11, 346), (5, 347), (11, 347), (5, 348), (11, 348), (9, 349), (9, 350), (6, 351), (6, 352), (16, 353), (16, 354), (16, 355), (16, 356), (1, 357), (4, 357), (12, 358), (18, 359), (12, 360), (15, 361), (15, 362), (9, 363), (15, 363), (9, 364), (15, 364), (9, 365), (15, 365), (9, 366), (9, 367), (9, 368), (9, 369), (11, 369), (9, 370), (17, 371), (17, 372), (4, 373), (17, 373), (12, 374), (14, 374), (12, 375), (14, 375), (12, 376), (14, 376), (11, 377), (15, 378), (14, 379), (12, 380), (17, 380), (12, 381), (17, 381), (9, 382), (7, 383), (4, 384), (17, 384), (12, 385), (14, 385), (12, 386), (1, 387), (1, 388), (1, 389), (7, 389), (3, 390), (3, 391), (10, 391), (3, 392), (10, 392), (9, 393), (9, 394), (9, 395), (14, 395), (4, 396), (6, 396), (4, 397), (6, 397), (4, 398), (6, 398), (6, 399), (6, 400), (9, 400), (5, 401), (5, 402), (13, 403), (13, 404), (13, 405), (1, 406), (2, 406), (1, 407), (2, 407), (11, 408), (11, 409), (11, 410), (14, 410), (11, 411), (14, 411), (5, 412), (1, 413), (5, 413), (4, 414), (5, 414), (4, 415), (5, 415), (4, 416), (5, 416), (13, 417), (9, 418), (9, 419), (1, 420), (1, 421), (9, 422), (7, 423), (9, 423), (6, 424), (4, 425), (16, 425), (4, 426), (16, 426), (6, 427), (6, 428), (16, 429), (4, 430), (18, 430), (6, 431), (6, 432), (12, 433), (2, 434), (18, 434), (2, 435), (18, 435), (12, 436), (14, 436), (12, 437), (14, 437), (11, 438), (8, 439), (12, 439), (6, 440), (4, 441), (6, 441), (16, 442), (18, 442), (7, 443), (17, 443), (7, 444), (17, 444), (7, 445), (17, 445), (6, 446), (10, 447), (10, 448), (14, 448), (7, 449), (7, 450), (2, 451), (5, 451), (2, 452), (18, 452), (2, 453), (10, 453), (2, 454), (10, 454), (1, 455), (9, 456), (9, 457), (4, 458), (9, 458), (1, 459), (15, 459), (1, 460), (15, 460), (15, 461), (18, 461), (13, 462), (14, 462), (6, 463), (7, 464), (11, 464), (1, 465), (13, 466), (3, 467), (4, 468), (8, 468), (4, 469), (5, 469), (1, 470), (15, 471), (4, 472), (7, 472), (7, 473), (15, 473), (6, 474), (10, 475), (12, 475), (11, 476), (14, 476), (16, 477), (15, 478), (16, 478), (13, 479), (16, 479), (12, 480), (12, 481), (12, 482), (14, 483), (17, 483), (9, 484), (17, 484), (3, 485), (14, 485), (6, 486), (16, 487), (17, 487), (12, 488), (9, 489), (9, 490), (18, 491), (1, 492), (6, 493), (3, 494), (12, 494), (1, 495), (1, 496), (1, 497), (3, 498), (3, 499), (10, 499), (3, 500), (10, 500), (9, 501), (9, 502), (9, 503), (6, 504), (6, 505), (6, 506), (6, 507), (6, 508), (18, 509), (18, 510), (1, 511), (1, 512), (3, 513), (3, 514), (9, 515), (9, 516), (12, 517), (12, 518), (4, 519), (6, 519), (4, 520), (6, 520), (4, 521), (6, 521), (13, 522), (13, 523), (11, 524), (11, 525), (11, 526), (4, 527), (12, 527), (4, 528), (12, 528), (7, 529), (7, 530), (14, 530), (6, 531), (10, 532), (10, 533), (10, 534), (9, 535), (7, 536), (9, 536), (7, 537), (9, 537), (10, 538), (10, 539), (1, 540), (5, 540), (1, 541), (5, 541), (1, 542), (5, 542), (2, 543), (5, 543), (2, 544), (5, 544), (2, 545), (5, 545), (1, 546), (8, 546), (1, 547), (8, 547), (1, 548), (1, 549), (9, 550), (7, 551), (18, 551), (7, 552), (18, 552), (7, 553), (18, 553), (3, 554), (3, 555), (1, 556), (5, 557), (11, 557), (5, 558), (11, 558), (10, 559), (18, 559), (10, 560), (18, 560), (4, 561), (12, 561), (16, 562), (16, 563), (9, 564), (11, 564), (9, 565), (11, 565), (4, 566), (11, 566), (4, 567), (11, 567), (2, 568), (2, 569), (18, 570), (18, 571), (6, 572), (6, 573), (12, 574), (12, 575), (12, 576), (12, 577), (12, 578), (12, 579), (4, 580), (9, 580), (4, 581), (9, 581), (15, 582), (15, 583), (15, 584), (1, 585), (6, 585), (1, 586), (6, 586), (4, 587), (13, 587), (5, 588), (5, 589), (14, 589), (1, 590), (2, 590), (1, 591), (2, 591), (9, 592), (16, 592), (9, 593), (16, 593), (9, 594), (5, 595), (13, 595), (5, 596), (13, 596), (1, 597), (14, 597), (1, 598), (14, 598), (14, 599), (14, 600), (14, 601), (13, 602), (13, 603), (13, 604), (12, 605), (12, 606), (3, 607), (16, 607), (3, 608), (16, 608), (3, 609), (16, 609), (17, 610), (17, 611), (17, 612), (15, 613), (15, 614), (15, 615), (5, 616), (5, 617), (7, 618), (13, 618), (10, 619), (10, 620), (17, 621), (7, 622), (16, 622), (7, 623), (16, 623), (14, 624), (18, 624), (14, 625), (18, 625), (6, 626), (4, 627), (6, 627), (4, 628), (6, 628), (4, 629), (18, 629), (4, 630), (18, 630), (3, 631), (5, 632), (14, 632), (17, 633), (18, 633), (17, 634), (18, 634), (17, 635), (18, 635), (3, 636), (5, 636), (3, 637), (5, 637), (10, 638), (14, 638), (10, 639), (11, 639), (1, 640), (10, 640), (4, 641), (4, 642), (13, 642), (3, 643), (17, 643), (13, 644), (17, 644), (4, 645), (7, 645), (15, 646), (17, 646), (9, 647), (10, 647), (6, 648), (12, 648), (5, 649), (14, 649), (1, 650), (1, 651), (1, 652), (10, 652), (3, 653), (3, 654), (3, 655), (12, 655), (9, 656), (9, 657), (9, 658), (18, 658), (6, 659), (6, 660), (7, 660), (4, 661), (6, 661), (3, 662), (4, 662), (3, 663), (4, 663), (5, 664), (5, 665), (4, 666), (5, 666), (3, 667), (6, 667), (3, 668), (6, 668), (8, 669), (8, 670), (8, 671), (1, 672), (1, 673), (10, 674), (10, 675), (18, 675), (6, 676), (12, 677), (12, 678), (14, 679), (16, 679), (14, 680), (16, 680), (14, 681), (16, 681), (8, 682), (8, 683), (8, 684), (8, 685), (12, 686), (18, 686), (12, 687), (18, 687), (9, 688), (11, 688), (9, 689), (11, 689), (2, 690), (9, 690), (2, 691), (17, 691), (9, 692), (9, 693), (6, 694), (13, 694), (6, 695), (13, 695), (11, 696), (17, 696), (11, 697), (17, 697), (11, 698), (15, 698), (11, 699), (15, 699), (8, 700), (4, 701), (10, 701), (8, 702), (13, 702), (8, 703), (11, 703), (17, 704), (17, 705), (17, 706), (8, 707), (14, 707), (1, 708), (16, 708), (1, 709), (16, 709), (1, 710), (16, 710), (1, 711), (16, 711), (15, 712), (15, 713), (4, 714), (17, 714), (4, 715), (17, 715), (8, 716), (4, 717), (18, 717), (7, 718), (17, 718), (8, 719), (11, 719), (12, 720), (16, 720), (3, 721), (9, 721), (1, 722), (4, 722), (1, 723), (4, 723), (1, 724), (16, 724), (3, 725), (3, 726), (3, 727), (18, 727), (9, 728), (9, 729), (8, 730), (9, 730), (4, 731), (6, 731), (4, 732), (6, 732), (4, 733), (6, 733), (6, 734), (6, 735), (5, 736), (5, 737), (13, 737), (5, 738), (13, 738), (10, 739), (10, 740), (15, 740), (3, 741), (4, 741), (5, 742), (8, 742), (5, 743), (8, 743), (11, 744), (11, 745), (9, 746), (2, 747), (9, 747), (2, 748), (9, 748), (7, 749), (7, 750), (5, 751), (9, 751), (5, 752), (9, 752), (1, 753), (1, 754), (1, 755), (8, 755), (1, 756), (8, 756), (2, 757), (3, 757), (2, 758), (3, 758), (6, 759), (10, 759), (6, 760), (10, 760), (1, 761), (1, 762), (1, 763), (8, 764), (6, 765), (12, 765), (10, 766), (5, 767), (9, 767), (5, 768), (9, 768), (7, 769), (16, 769), (7, 770), (16, 770), (9, 771), (6, 772), (6, 773), (4, 774), (11, 774), (6, 775), (3, 776), (17, 776), (13, 777), (14, 777), (8, 778), (16, 778), (9, 779), (12, 779), (6, 780), (17, 780), (1, 781), (16, 781), (17, 782), (10, 783), (17, 783), (10, 784), (17, 784), (8, 785), (13, 785), (8, 786), (12, 786), (1, 787), (8, 787), (8, 788), (9, 788), (12, 789), (12, 790), (12, 791), (14, 791), (12, 792), (16, 792), (2, 793), (11, 793), (5, 794), (10, 794), (5, 795), (10, 795), (13, 796), (4, 797), (14, 797), (1, 798), (14, 798), (17, 799), (18, 799), (12, 800), (8, 801), (14, 801), (10, 802), (16, 802), (2, 803), (2, 804), (17, 804), (11, 805), (14, 805), (3, 806), (16, 806), (13, 807), (14, 808), (14, 809), (1, 810), (1, 811), (1, 812), (3, 813), (3, 814), (3, 815), (9, 816), (9, 817), (9, 818), (6, 819), (6, 820), (4, 821), (4, 822), (4, 823), (14, 823), (5, 824), (5, 825), (12, 825), (5, 826), (12, 826), (18, 827), (18, 828), (1, 829), (1, 830), (6, 831), (6, 832), (9, 833), (9, 834), (11, 834), (13, 835), (13, 836), (11, 837), (3, 838), (11, 838), (3, 839), (11, 839), (1, 840), (17, 840), (1, 841), (17, 841), (1, 842), (17, 842), (7, 843), (7, 844), (4, 845), (9, 845), (9, 846), (9, 847), (2, 848), (13, 848), (2, 849), (13, 849), (3, 850), (5, 850), (3, 851), (5, 851), (10, 852), (10, 853), (16, 854), (16, 855), (12, 856), (12, 857), (8, 858), (12, 858), (8, 859), (18, 859), (8, 860), (18, 860), (8, 861), (18, 861), (6, 862), (18, 862), (14, 863), (16, 864), (10, 865), (12, 866), (15, 866), (7, 867), (16, 867), (8, 868), (8, 869), (10, 870), (13, 871), (5, 872), (15, 872), (5, 873), (15, 873), (11, 874), (15, 875), (6, 876), (12, 876), (13, 877), (18, 877), (14, 878), (14, 879), (13, 880), (17, 880), (13, 881), (15, 881), (9, 882), (17, 882), (9, 883), (15, 883), (14, 884), (17, 884), (16, 885), (17, 885), (16, 886), (17, 886), (16, 887), (17, 887), (8, 888), (14, 888), (10, 889), (14, 889), (2, 890), (17, 890), (10, 891), (10, 892), (18, 892), (1, 893), (18, 893), (13, 894), (17, 895), (15, 896), (16, 897), (1, 898), (12, 898); -- -------------------------------------------------------- -- -- Structure de la vue `attack` -- DROP TABLE IF EXISTS `attack`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `attack` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `attack` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`attack`))) ; -- -------------------------------------------------------- -- -- Structure de la vue `defense` -- DROP TABLE IF EXISTS `defense`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `defense` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `defense` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`defense`))) ; -- -------------------------------------------------------- -- -- Structure de la vue `hp` -- DROP TABLE IF EXISTS `hp`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `hp` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `hp` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`hp`))) ; -- -------------------------------------------------------- -- -- Structure de la vue `special_attack` -- DROP TABLE IF EXISTS `special_attack`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `special_attack` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `special_attack` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`special_attack`))) ; -- -------------------------------------------------------- -- -- Structure de la vue `special_defense` -- DROP TABLE IF EXISTS `special_defense`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `special_defense` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `special_defense` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`special_defense`))) ; -- -------------------------------------------------------- -- -- Structure de la vue `speed` -- DROP TABLE IF EXISTS `speed`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `speed` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `speed` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`speed`))) ; -- -------------------------------------------------------- -- -- Structure de la vue `total` -- DROP TABLE IF EXISTS `total`; CREATE ALGORITHM=UNDEFINED DEFINER=`margauxcoppi`@`localhost` SQL SECURITY DEFINER VIEW `total` AS select `infos`.`id_pokemon` AS `id_pokemon`,`stats`.`value` AS `total` from (`infos` join `stats` on((`stats`.`id_stats` = `infos`.`total`))) ; -- -- Index pour les tables déchargées -- -- -- Index pour la table `generations` -- ALTER TABLE `generations` ADD PRIMARY KEY (`id_generations`); -- -- Index pour la table `infos` -- ALTER TABLE `infos` ADD PRIMARY KEY (`id_pokemon`), ADD KEY `fk_infos_generations1_idx` (`generations_id_generations`); -- -- Index pour la table `stats` -- ALTER TABLE `stats` ADD PRIMARY KEY (`id_stats`); -- -- Index pour la table `types` -- ALTER TABLE `types` ADD PRIMARY KEY (`id_type`); -- -- Index pour la table `types_has_infos` -- ALTER TABLE `types_has_infos` ADD PRIMARY KEY (`types_id_type`,`infos_id_pokemon`), ADD KEY `fk_types_has_infos_infos1_idx` (`infos_id_pokemon`), ADD KEY `fk_types_has_infos_types1_idx` (`types_id_type`); -- -- AUTO_INCREMENT pour les tables déchargées -- -- -- AUTO_INCREMENT pour la table `generations` -- ALTER TABLE `generations` MODIFY `id_generations` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT pour la table `infos` -- ALTER TABLE `infos` MODIFY `id_pokemon` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=899; -- -- AUTO_INCREMENT pour la table `stats` -- ALTER TABLE `stats` MODIFY `id_stats` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=339; -- -- AUTO_INCREMENT pour la table `types` -- ALTER TABLE `types` MODIFY `id_type` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- Contraintes pour les tables déchargées -- -- -- Contraintes pour la table `infos` -- ALTER TABLE `infos` ADD CONSTRAINT `fk_infos_generations1` FOREIGN KEY (`generations_id_generations`) REFERENCES `generations` (`id_generations`); -- -- Contraintes pour la table `types_has_infos` -- ALTER TABLE `types_has_infos` ADD CONSTRAINT `fk_types_has_infos_infos1` FOREIGN KEY (`infos_id_pokemon`) REFERENCES `infos` (`id_pokemon`), ADD CONSTRAINT `fk_types_has_infos_types1` FOREIGN KEY (`types_id_type`) REFERENCES `types` (`id_type`); COMMIT; /*!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 */;
<reponame>m-rgba/hasura-watchtower<filename>recipes/cli-deploy/hasura/migrations/default/1647810949262_apply_sql_template_pg-hello-world/down.sql<gh_stars>0 DROP SCHEMA IF EXISTS _helloworld;
<reponame>Fuxuandi-Michelle/importer-exporter-BuildingADE -- 3D City Database - The Open Source CityGML Database -- http://www.3dcitydb.org/ -- -- Copyright 2013 - 2016 -- Chair of Geoinformatics -- Technical University of Munich, Germany -- https://www.gis.bgu.tum.de/ -- -- The 3D City Database is jointly developed with the following -- cooperation partners: -- -- virtualcitySYSTEMS GmbH, Berlin <http://www.virtualcitysystems.de/> -- M.O.S.S. Computer Grafik Systeme GmbH, Taufkirchen <http://www.moss.de/> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- /***************************************************************** * CONTENT * * FUNCTIONS: * change_column_srid(table_name TEXT, column_name TEXT, dim INTEGER, schema_srid INTEGER, * transform INTEGER DEFAULT 0, geom_type TEXT DEFAULT 'GEOMETRY', schema_name TEXT DEFAULT 'citydb') RETURNS SETOF VOID * change_schema_srid(schema_srid INTEGER, schema_gml_srs_name TEXT, * transform INTEGER DEFAULT 0, schema_name TEXT DEFAULT 'citydb') RETURNS SETOF VOID * check_srid(srsno INTEGER DEFAULT 0) RETURNS TEXT * is_coord_ref_sys_3d(schema_srid INTEGER) RETURNS INTEGER * is_db_coord_ref_sys_3d() RETURNS INTEGER * transform_or_null(geom GEOMETRY, srid INTEGER) RETURNS GEOMETRY ******************************************************************/ /****************************************************************** * is_coord_ref_sys_3d * * no 3D-Coord.-Reference-System defined in the spatial_ref_sys-table * of PostGIS 2.0 by default. Refer to spatialreference.org for * INSERT-statements of 3D-SRIDs. They can be identified by the AXIS * UP in the srtext * * @param schema_srid the SRID of the coordinate system to be checked * @RETURN NUMERIC the boolean result encoded as NUMERIC: 0 = false, 1 = true ******************************************************************/ CREATE OR REPLACE FUNCTION citydb_pkg.is_coord_ref_sys_3d(schema_srid INTEGER) RETURNS INTEGER AS $$ DECLARE is_3d INTEGER := 0; BEGIN EXECUTE 'SELECT 1 FROM spatial_ref_sys WHERE auth_srid=$1 AND srtext LIKE ''%UP]%''' INTO is_3d USING schema_srid; RETURN is_3d; END; $$ LANGUAGE plpgsql; /****************************************************************** * is_db_coord_ref_sys_3d * * @RETURN NUMERIC the boolean result encoded as NUMERIC: 0 = false, 1 = true ******************************************************************/ CREATE OR REPLACE FUNCTION citydb_pkg.is_db_coord_ref_sys_3d() RETURNS INTEGER AS $$ DECLARE schema_srid INTEGER; BEGIN EXECUTE 'SELECT srid from DATABASE_SRS' INTO schema_srid; RETURN citydb_pkg.is_coord_ref_sys_3d(schema_srid); END; $$ LANGUAGE plpgsql; /******************************************************************* * check_srid * * @param srsno the chosen SRID to be further used in the database * * @RETURN TEXT status of srid check *******************************************************************/ CREATE OR REPLACE FUNCTION citydb_pkg.check_srid(srsno INTEGER DEFAULT 0) RETURNS TEXT AS $$ DECLARE schema_srid INTEGER; BEGIN EXECUTE 'SELECT srid FROM spatial_ref_sys WHERE srid = $1' INTO schema_srid USING srsno; IF schema_srid IS NULL THEN RAISE EXCEPTION 'Table spatial_ref_sys does not contain the SRID %. Insert commands for missing SRIDs can be found at spatialreference.org', srsno; RETURN 'SRID not ok'; END IF; RETURN 'SRID ok'; END; $$ LANGUAGE plpgsql; /****************************************************************** * transform_or_null * * @param geom the geometry whose representation is to be transformed using another coordinate system * @param srid the SRID of the coordinate system to be used for the transformation. * @RETURN GEOMETRY the transformed geometry representation ******************************************************************/ CREATE OR REPLACE FUNCTION citydb_pkg.transform_or_null( geom GEOMETRY, srid INTEGER ) RETURNS GEOMETRY AS $$ BEGIN IF geom IS NOT NULL THEN RETURN ST_Transform(geom, srid); ELSE RETURN NULL; END IF; END; $$ LANGUAGE plpgsql; /***************************************************************** * change_column_srid * * @param table_name name of table * @param column_name name of spatial column * @param dim dimension of geometry * @param schema_srid the SRID of the coordinate system to be further used in the database * @param transform 1 if existing data shall be transformed, 0 if not * @param geom_type the geometry type of the given spatial column * @param schema_name name of schema ******************************************************************/ CREATE OR REPLACE FUNCTION citydb_pkg.change_column_srid( table_name TEXT, column_name TEXT, dim INTEGER, schema_srid INTEGER, transform INTEGER DEFAULT 0, geom_type TEXT DEFAULT 'GEOMETRY', schema_name TEXT DEFAULT 'citydb' ) RETURNS SETOF VOID AS $$ DECLARE idx_name TEXT; opclass_param TEXT; geometry_type TEXT; BEGIN -- check if a spatial index is defined for the column SELECT pgc_i.relname, pgoc.opcname INTO idx_name, opclass_param FROM pg_class pgc_t JOIN pg_index pgi ON pgi.indrelid = pgc_t.oid JOIN pg_class pgc_i ON pgc_i.oid = pgi.indexrelid JOIN pg_opclass pgoc ON pgoc.oid = pgi.indclass[0] JOIN pg_am pgam ON pgam.oid = pgc_i.relam JOIN pg_attribute pga ON pga.attrelid = pgc_i.oid JOIN pg_namespace pgns ON pgns.oid = pgc_i.relnamespace WHERE pgns.nspname = $7 AND pgc_t.relname = $1 AND pga.attname = $2 AND pgam.amname = 'gist'; IF idx_name IS NOT NULL THEN -- drop spatial index if exists EXECUTE format('DROP INDEX %I.%I', $7, idx_name); END IF; IF transform <> 0 THEN -- construct correct geometry type IF dim = 3 AND substr($6,length($6),length($6)) <> 'M' THEN geometry_type := $6 || 'Z'; ELSIF dim = 4 THEN geometry_type := $6 || 'ZM'; ELSE geometry_type := $6; END IF; -- coordinates of existent geometries will be transformed EXECUTE format('ALTER TABLE %I.%I ALTER COLUMN %I TYPE geometry(%I,%L) USING ST_Transform(%I,%L)', $7, $1, $2, geometry_type, $4, $2, $4); ELSE -- only metadata of geometry columns is updated, coordinates keep unchanged PERFORM UpdateGeometrySRID($7, $1, $2, $4); END IF; IF idx_name IS NOT NULL THEN -- recreate spatial index again EXECUTE format('CREATE INDEX %I ON %I.%I USING GIST (%I %I)', idx_name, $7, $1, $2, opclass_param); END IF; END; $$ LANGUAGE plpgsql STRICT; /******************************************************************* * change_schema_srid * * @param schema_srid the SRID of the coordinate system to be * further used in the database * @param db_gml_srs_name the GML_SRS_NAME of the coordinate system * to be further used in the database * @param transform 1 if existing data shall be transformed, 0 if not * @param schema name name of schema *******************************************************************/ CREATE OR REPLACE FUNCTION citydb_pkg.change_schema_srid( schema_srid INTEGER, schema_gml_srs_name TEXT, transform INTEGER DEFAULT 0, schema_name TEXT DEFAULT 'citydb' ) RETURNS SETOF VOID AS $$ DECLARE is_set_srs_info INTEGER; BEGIN -- check if user selected valid srid EXECUTE 'SELECT citydb_pkg.check_srid($1)' USING schema_srid; EXECUTE 'SELECT 1 FROM pg_tables WHERE schemaname = $1 AND tablename = ''database_srs''' INTO is_set_srs_info USING schema_name; IF is_set_srs_info IS NOT NULL THEN -- update entry in DATABASE_SRS table first EXECUTE format('UPDATE %I.database_srs SET srid = %L, gml_srs_name = %L', schema_name, schema_srid, schema_gml_srs_name); END IF; -- change srid of each spatially enabled table EXECUTE 'SELECT citydb_pkg.change_column_srid(f_table_name, f_geometry_column, coord_dimension, $1, $2, type, f_table_schema) FROM geometry_columns WHERE f_table_schema = $3 AND f_geometry_column != ''implicit_geometry'' AND f_geometry_column != ''relative_other_geom'' AND f_geometry_column != ''texture_coordinates''' USING schema_srid, transform, schema_name; END; $$ LANGUAGE plpgsql;
-- ===============LICENSE_START======================================================= -- Acumos Apache-2.0 -- =================================================================================== -- Copyright (C) 2019 AT&T Intellectual Property & Tech Mahindra. All rights reserved. -- =================================================================================== -- This Acumos software file is distributed by AT&T and Tech Mahindra -- under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- This file is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ===============LICENSE_END========================================================= -- Script to upgrade database used by the Common Data Service -- FROM version 2.2 TO version 3.0 -- No database name is set to allow flexible deployment. CREATE TABLE C_LICENSE_PROFILE_TEMPLATE ( TEMPLATE_ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT, TEMPLATE_NAME VARCHAR(50) NOT NULL, TEMPLATE VARCHAR(8192) NOT NULL CHECK (JSON_VALID(TEMPLATE)), PRIORITY INT NOT NULL, USER_ID CHAR(36) NOT NULL, CREATED_DATE TIMESTAMP NOT NULL DEFAULT 0, MODIFIED_DATE TIMESTAMP NOT NULL, CONSTRAINT C_LICENSE_PROFILE_TEMPLATE_C_USER FOREIGN KEY (USER_ID) REFERENCES C_USER (USER_ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- Record this action in the history INSERT INTO C_HISTORY (COMMENT, CREATED_DATE) VALUES ('cmn-data-svc-upgrade-2.2-to-3.0', NOW());
CREATE TABLE T_USER ( id SERIAL, name VARCHAR(254), firstname VARCHAR(254), email VARCHAR(254) UNIQUE, skill VARCHAR(254), date_connect DATE, PRIMARY KEY (id) ); CREATE TABLE T_USER_IDX ( t_user_id INT NOT NULL, rs_search INT NOT NULL, date_update DATE ); CREATE OR REPLACE FUNCTION index_all () RETURNS VOID AS ' DECLARE BEGIN TRUNCATE t_user_idx; INSERT INTO t_user_idx (t_user_id, rs_search, date_update) SELECT id, 1 AS rs_search, now() AS date_update FROM t_user; END; ' LANGUAGE plpgsql; CREATE OR REPLACE FUNCTION delete_user_idx () RETURNS TRIGGER AS ' DECLARE nb INT; BEGIN SELECT INTO nb COUNT(*) FROM T_USER_IDX WHERE T_USER_ID = OLD.ID; IF (nb >= 1) THEN UPDATE T_USER_IDX SET RS_SEARCH = -1, DATE_UPDATE = now() WHERE T_USER_ID = OLD.ID; ELSE INSERT INTO T_USER_IDX (T_USER_ID, RS_SEARCH, DATE_UPDATE) VALUES (OLD.ID, -1, now()); END IF; RETURN OLD; END; ' LANGUAGE plpgsql; CREATE OR REPLACE FUNCTION update_user_idx () RETURNS TRIGGER AS ' DECLARE nb INT; BEGIN SELECT INTO nb COUNT(*) FROM T_USER_IDX WHERE T_USER_ID = NEW.ID; IF (nb >= 1) THEN UPDATE T_USER_IDX SET RS_SEARCH = 1, DATE_UPDATE = now() WHERE T_USER_ID = NEW.ID; ELSE INSERT INTO T_USER_IDX (T_USER_ID, RS_SEARCH, DATE_UPDATE) VALUES (NEW.ID, 1, now()); END IF; RETURN NEW; END; ' LANGUAGE plpgsql; CREATE TRIGGER t_delete_user_idx AFTER DELETE ON T_USER FOR EACH ROW EXECUTE PROCEDURE delete_user_idx(); CREATE TRIGGER t_update_user_idx_insert BEFORE INSERT ON T_USER FOR EACH ROW EXECUTE PROCEDURE update_user_idx(); CREATE TRIGGER t_update_user_idx_update BEFORE UPDATE ON T_USER FOR EACH ROW EXECUTE PROCEDURE update_user_idx();
-- ----------------------------------------------------------------------------- -- Pifuxel Migrate v1-v2 -- -- This script will migrate a schema from v1 to v2 in place. To use: -- -- mysql -h $HOST -u $USER --password $DB < migrate-001-002.sql ALTER TABLE Games ADD next_expiration TIMESTAMP NOT NULL; UPDATE Games SET next_expiration = NOW() + INTERVAL 2 DAY;
############### # Oct 30, 2013 # Rename table: assessment_run_request # rename table assessment_run_request_assoc # column assessment_run_request_id is unchanged use assessment; drop PROCEDURE if exists upgrade_3; DELIMITER $$ CREATE PROCEDURE upgrade_3 () BEGIN declare script_version_no int; declare cur_db_version_no int; set script_version_no = 3; select max(database_version_no) into cur_db_version_no from assessment.database_version; if cur_db_version_no < script_version_no then begin # rename table assessment_run_request_assoc RENAME TABLE assessment.assessment_run_request_assoc TO assessment.assessment_run_request; # I made a quick fix of renaming the column to match laravel on Monday. This is the long term solution. alter table assessment.assessment_run_request change assessment_run_request_assoc_id assessment_run_request_id INT NOT NULL AUTO_INCREMENT COMMENT 'internal id'; # update database version number insert into assessment.database_version (database_version_no, description) values (script_version_no, 'upgrade'); commit; end; end if; END $$ DELIMITER ;
ALTER TABLE paasos.sys_user ADD mobile VARCHAR(11); drop view openbridge.sys_user; CREATE VIEW openbridge.`sys_user` AS (SELECT * FROM paasos.`sys_user`);
<filename>src/main/sql/second-highest-salary.sql<gh_stars>1-10 # Write your MySQL query statement below select max(Employee.Salary) from Employee where Employee.Salary not in(select max(Employee.Salary) from Employee);
ALTER TABLE [lmsx].[Assignment] ADD [CreatedByOwnershipTokenId] SMALLINT NULL; ALTER TABLE [lmsx].[AssignmentSubmission] ADD [CreatedByOwnershipTokenId] SMALLINT NULL;
DROP TABLE IF EXISTS `plm_file_gallery`; CREATE TABLE `plm_file_gallery` ( `id_file` bigint(20) NOT NULL, `id_data` bigint(20) NULL, `gallery_type` varchar(255) NOT NULL, `position` int(11) NOT NULL, PRIMARY KEY (`id_file`), CONSTRAINT `plm_file_gallery` FOREIGN KEY (`id_file`) REFERENCES `plm_file` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--#SET TERMINATOR @ /* Copyright (c) 2012 - 2014, <NAME> (AngocA) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** * Tests for the logger cache functionality for logger. * * Version: 2022-06-07 1-RC * Author: <NAME> (AngocA) * Made in COLOMBIA. */ SET CURRENT SCHEMA LOG4DB2_CACHE_LOGGERS @ SET PATH = LOG4DB2_CACHE_LOGGERS @ BEGIN DECLARE STATEMENT VARCHAR(128); DECLARE CONTINUE HANDLER FOR SQLSTATE '42710' BEGIN END; SET STATEMENT = 'CREATE SCHEMA LOG4DB2_CACHE_LOGGERS'; EXECUTE IMMEDIATE STATEMENT; END @ BEGIN DECLARE QUERY VARCHAR(4096); -- Drop previous function (if exist) SET QUERY = 'ALTER MODULE LOGGER_1RC.LOGGER DROP FUNCTION GET_LOGGER_DATA2'; BEGIN DECLARE CONTINUE HANDLER FOR SQLSTATE '42704' BEGIN END; EXECUTE IMMEDIATE QUERY; END; SET QUERY = 'ALTER MODULE LOGGER_1RC.LOGGER DROP TYPE LOGGERS_ROW'; BEGIN DECLARE CONTINUE HANDLER FOR SQLSTATE '42611' BEGIN END; EXECUTE IMMEDIATE QUERY; END; SET QUERY = 'ALTER MODULE LOGGER_1RC.LOGGER PUBLISH ' || 'TYPE LOGGERS_ROW AS ROW (' || 'NAME ANCHOR COMPLETE_LOGGER_NAME, ' || 'LEVEL_ID ANCHOR LOGDATA.LEVELS.LEVEL_ID, ' || 'HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY)'; BEGIN DECLARE CONTINUE HANDLER FOR SQLSTATE '42611' BEGIN END; EXECUTE IMMEDIATE QUERY; END; -- Extract the private function and publish it. SELECT REPLACE (REPLACE (REPLACE (REPLACE (REPLACE (BODY, 'ALTER MODULE LOGGER ADD', 'ALTER MODULE LOGGER_1RC.LOGGER PUBLISH'), 'FUNCTION GET_LOGGER_DATA', 'FUNCTION GET_LOGGER_DATA2'), 'SPECIFIC F_GET_LOGGER_DATA', 'SPECIFIC F_GET_LOGGER_DATA2'), 'F_GET_LOGGER_DATA: BEGIN', 'F_GET_LOGGER_DATA2: BEGIN'), 'END F_GET_LOGGER_DATA', 'END F_GET_LOGGER_DATA2') INTO QUERY FROM SYSCAT.FUNCTIONS WHERE FUNCNAME LIKE 'GET_LOGGER_DATA' AND FUNCSCHEMA LIKE 'LOGGER_1RC'; BEGIN EXECUTE IMMEDIATE QUERY; END; COMMIT; END @ CREATE OR REPLACE PROCEDURE UNINSTALL () BEGIN DECLARE QUERY VARCHAR(4096); SET QUERY = 'ALTER MODULE LOGGER DROP FUNCTION GET_LOGGER_DATA2'; EXECUTE IMMEDIATE QUERY; SET QUERY = 'ALTER MODULE LOGGER DROP TYPE LOGGERS_ROW'; EXECUTE IMMEDIATE QUERY; SET QUERY = 'ALTER MODULE LOGGER ADD ' || 'TYPE LOGGERS_ROW AS ROW (' || 'NAME ANCHOR COMPLETE_LOGGER_NAME, ' || 'LEVEL_ID ANCHOR LOGDATA.LEVELS.LEVEL_ID, ' || 'HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY)'; EXECUTE IMMEDIATE QUERY; END @ -- Test fixtures CREATE OR REPLACE PROCEDURE ONE_TIME_SETUP() P_ONE_TIME_SETUP: BEGIN CALL DB2UNIT.SET_AUTONOMOUS(FALSE); UPDATE LOGDATA.CONF_LOGGERS SET LEVEL_ID = 3 WHERE LOGGER_ID = 0; CALL LOGGER.REFRESH_CACHE(); CALL LOGGER.DEACTIVATE_CACHE(); DELETE FROM LOGDATA.CONF_LOGGERS WHERE LOGGER_ID <> 0; END P_ONE_TIME_SETUP @ CREATE OR REPLACE PROCEDURE SETUP() P_SETUP: BEGIN CALL LOGGER.DEACTIVATE_CACHE(); UPDATE LOGDATA.CONFIGURATION SET VALUE = '4' WHERE KEY = 'defaultRootLevelId'; END P_SETUP @ CREATE OR REPLACE PROCEDURE TEAR_DOWN() P_TEAR_DOWN: BEGIN DELETE FROM LOGDATA.CONF_LOGGERS WHERE LOGGER_ID <> 0; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); END P_TEAR_DOWN @ CREATE OR REPLACE PROCEDURE ONE_TIME_TEAR_DOWN() P_ONE_TIME_TEAR_DOWN: BEGIN CALL LOGGER_1RC.LOGADMIN.RESET_TABLES(); CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); END P_ONE_TIME_TEAR_DOWN @ -- Tests -- Test01: Test GetLoggerName with cache old. CREATE OR REPLACE PROCEDURE TEST_01() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 1; SET EXPECTED_NAME = 'LEV01'; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, EXPECTED_NAME, 0, NULL); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test01: Test GetLoggerName with cache old', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test02: Test GetLoggerName with cache. CREATE OR REPLACE PROCEDURE TEST_02() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 2; SET EXPECTED_NAME = 'LEV02'; CALL LOGGER.ACTIVATE_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, EXPECTED_NAME, 0, NULL); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test02: Test GetLoggerName with cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test03: Test GetLoggerName without cache. CREATE OR REPLACE PROCEDURE TEST_03() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 3; SET EXPECTED_NAME = 'LEV03'; CALL LOGGER.DEACTIVATE_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, EXPECTED_NAME, 0, NULL); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test03: Test GetLoggerName without cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test04: Test GetLoggerData with cache old. CREATE OR REPLACE PROCEDURE TEST_04() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 4; SET EXPECTED_NAME = 'LEV04'; SET EXPECTED_LEVEL_ID = 1; SET EXPECTED_HIERARCHY = '0,' || LOG_ID; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, EXPECTED_NAME, 0, EXPECTED_LEVEL_ID); INSERT INTO LOGDATA.CONF_LOGGERS_EFFECTIVE (LOGGER_ID, LEVEL_ID, HIERARCHY) VALUES (LOG_ID, EXPECTED_LEVEL_ID, EXPECTED_HIERARCHY); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test04: Test GetLoggerData with cache old', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test04: Test GetLoggerData with cache old', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test04: Test GetLoggerData with cache old', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test05: Test GetLoggerData with cache. CREATE OR REPLACE PROCEDURE TEST_05() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 5; SET EXPECTED_NAME = 'LEV05'; SET EXPECTED_HIERARCHY = '0,' || LOG_ID; SET EXPECTED_LEVEL_ID = 2; CALL LOGGER.ACTIVATE_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, EXPECTED_NAME, 0, EXPECTED_LEVEL_ID); INSERT INTO LOGDATA.CONF_LOGGERS_EFFECTIVE (LOGGER_ID, LEVEL_ID, HIERARCHY) VALUES (LOG_ID, EXPECTED_LEVEL_ID, EXPECTED_HIERARCHY); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test05: Test GetLoggerData with cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test05: Test GetLoggerData with cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test05: Test GetLoggerData with cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test06: Test GetLoggerData without cache. CREATE OR REPLACE PROCEDURE TEST_06() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 6; SET EXPECTED_NAME = 'LEV06'; SET EXPECTED_HIERARCHY = '0,' || LOG_ID; SET EXPECTED_LEVEL_ID = 4; CALL LOGGER.DEACTIVATE_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, EXPECTED_NAME, 0, EXPECTED_LEVEL_ID); INSERT INTO LOGDATA.CONF_LOGGERS_EFFECTIVE (LOGGER_ID, LEVEL_ID, HIERARCHY) VALUES (LOG_ID, EXPECTED_LEVEL_ID, EXPECTED_HIERARCHY); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test06: Test GetLoggerData without cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test06: Test GetLoggerData without cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test06: Test GetLoggerData without cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test07: Test GetLoggerName inexistant with cache. CREATE OR REPLACE PROCEDURE TEST_07() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 7; SET EXPECTED_NAME = 'Unknown'; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test07: GetLoggerName inexistant cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test08: Test GetLoggerData inexistant with cache. CREATE OR REPLACE PROCEDURE TEST_08() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 8; SET EXPECTED_NAME = 'Unknown'; SET EXPECTED_LEVEL_ID = NULL; SET EXPECTED_HIERARCHY = NULL; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test08: GetLoggerData inexistant cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test08: GetLoggerData inexistant cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test08: GetLoggerData inexistant cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test09: Test GetLoggerName ROOT with cache. CREATE OR REPLACE PROCEDURE TEST_09() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 0; SET EXPECTED_NAME = 'ROOT'; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test09: GetLoggerName ROOT with cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test10: Test GetLoggerName ROOT without cache. CREATE OR REPLACE PROCEDURE TEST_10() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 0; SET EXPECTED_NAME = 'ROOT'; CALL LOGGER.DEACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test1O: GetLoggerName ROOT without cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test11: Test GetLoggerData ROOT with cache. CREATE OR REPLACE PROCEDURE TEST_11() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 0; SET EXPECTED_NAME = 'ROOT'; SET EXPECTED_HIERARCHY = LOG_ID; SET EXPECTED_LEVEL_ID = 3; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test11: 1GetLoggerData ROOT with cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test11: 2GetLoggerData ROOT with cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test11: 3GetLoggerData ROOT with cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test12: Test GetLoggerData ROOT without cache. CREATE OR REPLACE PROCEDURE TEST_12() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 0; SET EXPECTED_NAME = 'ROOT'; SET EXPECTED_HIERARCHY = LOG_ID; SET EXPECTED_LEVEL_ID = 3; CALL LOGGER.DEACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test12: 1GetLoggerData ROOT without cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test12: 2GetLoggerData ROOT without cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test12: 3GetLoggerData ROOT without cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test13: Test GetLoggerName INTERNAL without cache. CREATE OR REPLACE PROCEDURE TEST_13() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = -1; SET EXPECTED_NAME = '-internal-'; CALL LOGGER.DEACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test13: GetLoggerName INTERNAL no cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test14: Test GetLoggerName null. CREATE OR REPLACE PROCEDURE TEST_14() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = NULL; SET EXPECTED_NAME = '-internal-'; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test14: Test GetLoggerName null', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test15: Test GetLoggerData NULL without cache. CREATE OR REPLACE PROCEDURE TEST_15() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = NULL; SET EXPECTED_NAME = '-internal-'; SET EXPECTED_HIERARCHY = LOG_ID; SET EXPECTED_LEVEL_ID = -1; CALL LOGGER.ACTIVATE_CACHE(); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test15: 1GetLoggerData NULL without cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test15: 2GetLoggerData NULL without cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test15: 3GetLoggerData NULL without cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Test16: Test GetLoggerName two levels with cache. CREATE OR REPLACE PROCEDURE TEST_16() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; SET LOG_ID = 17; SET EXPECTED_NAME = 'LEV16A.LEV16B'; CALL LOGGER.ACTIVATE_CACHE(); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (16, 'LEV16A', 0, NULL); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, 'LEV16B', 16, NULL); CALL LOGGER.REFRESH_CACHE(); SET ACTUAL_NAME = LOGGER.GET_LOGGER_NAME(LOG_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test16: GetLoggerName two levels cache', EXPECTED_NAME, ACTUAL_NAME); END@ -- Test17: Test GetLoggerData two levels with cache. CREATE OR REPLACE PROCEDURE TEST_17() BEGIN DECLARE LOG_ID ANCHOR LOGDATA.CONF_LOGGERS.LOGGER_ID; DECLARE EXPECTED_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE EXPECTED_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE EXPECTED_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; DECLARE RET LOGGER.LOGGERS_ROW; DECLARE ACTUAL_NAME ANCHOR LOGDATA.CONF_LOGGERS.NAME; DECLARE ACTUAL_LEVEL_ID ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.LEVEL_ID; DECLARE ACTUAL_HIERARCHY ANCHOR LOGDATA.CONF_LOGGERS_EFFECTIVE.HIERARCHY; SET LOG_ID = 18; SET EXPECTED_NAME = 'LEV17A.LEV17B'; SET EXPECTED_HIERARCHY = '0,17,' || LOG_ID; SET EXPECTED_LEVEL_ID = 2; CALL LOGGER.ACTIVATE_CACHE(); DELETE FROM LOGDATA.CONF_LOGGERS WHERE LOGGER_ID <> 0; INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (17, 'LEV17A', 0, NULL); INSERT INTO LOGDATA.CONF_LOGGERS_EFFECTIVE (LOGGER_ID, LEVEL_ID, HIERARCHY) VALUES (17, 3, '0,17,'); INSERT INTO LOGDATA.CONF_LOGGERS (LOGGER_ID, NAME, PARENT_ID, LEVEL_ID) VALUES (LOG_ID, 'LEV17B', 17, EXPECTED_LEVEL_ID); INSERT INTO LOGDATA.CONF_LOGGERS_EFFECTIVE (LOGGER_ID, LEVEL_ID, HIERARCHY) VALUES (LOG_ID, EXPECTED_LEVEL_ID, EXPECTED_HIERARCHY); CALL LOGGER.REFRESH_CACHE(); SET RET = LOGGER.GET_LOGGER_DATA2(LOG_ID); SET ACTUAL_LEVEL_ID = RET.LEVEL_ID; SET ACTUAL_HIERARCHY = RET.HIERARCHY; SET ACTUAL_NAME = RET.NAME; CALL DB2UNIT.ASSERT_STRING_EQUALS('Test17: GetLoggerData two levels cache', EXPECTED_NAME, ACTUAL_NAME); CALL DB2UNIT.ASSERT_INT_EQUALS('Test17: GetLoggerData two levels cache', EXPECTED_LEVEL_ID, ACTUAL_LEVEL_ID); CALL DB2UNIT.ASSERT_STRING_EQUALS('Test17: GetLoggerData two levels cache', EXPECTED_HIERARCHY, ACTUAL_HIERARCHY); END@ -- Register the suite. CALL DB2UNIT.REGISTER_SUITE(CURRENT SCHEMA) @
ALTER TABLE packages ADD COLUMN autohide BOOLEAN DEFAULT TRUE;
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 1172.16.58.3 -- Generation Time: Nov 02, 2021 at 11:08 PM -- Server version: 10.4.21-MariaDB -- PHP Version: 7.4.24 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; 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: `iam` -- -- -------------------------------------------------------- -- -- Table structure for table `department` -- CREATE TABLE `department` ( `id` int(255) NOT NULL, `nama_department` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `department` -- INSERT INTO `department` (`id`, `nama_department`) VALUES (8, 'Development'), (10, 'Geology & Survey'), (9, 'Geotechnical Engineering'), (7, 'Production'), (6, 'Safety & Environment'); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `laporan_audit` -- CREATE TABLE `laporan_audit` ( `no_audit` int(10) UNSIGNED NOT NULL, `judul_audit` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tipe_audit` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auditor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `kriteria_audit` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tahun_audit` year(4) NOT NULL, `tanggal_mulai_audit` date DEFAULT NULL, `tanggal_akhir_audit` date DEFAULT NULL, `file` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2019_12_14_000001_create_personal_access_tokens_table', 1), (5, '2021_10_21_051022_create_laporan_audits_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `id_department` int(255) NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `id_department`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (23, 'Wodi', 10, NULL, '$2y$10$H9y2smBbe7VbX6/5VMG.1uigb5cJXLnrxfOXUxQLT4.Ggk6wuCJWC', NULL, '2021-10-29 16:59:02', '2021-10-29 16:59:02'), (24, 'Toti', 9, NULL, '$2y$10$JGhmw3SW.Bbr2a7BmtiKXOefwN.BRyiWE8MF2Vyc8pry/23j8La12', NULL, '2021-10-29 17:01:16', '2021-11-01 17:29:29'), (34, 'Hantu', 8, NULL, '$2y$10$oluGcfr4DtkKfQiovMbxLOsyyEpkvTpNsrq2ZLnOBx4xYINH/kV9G', NULL, '2021-10-31 18:09:20', '2021-10-31 18:09:20'), (36, 'Prabudi', 8, NULL, '$2y$10$nT6o.fLmUb69cZEisFQnl.e7tgUlTueMzGP93PXY9mT.YCEvSeAJm', NULL, '2021-11-01 17:09:35', '2021-11-01 17:24:29'); -- -- Indexes for dumped tables -- -- -- Indexes for table `department` -- ALTER TABLE `department` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `nama_department` (`nama_department`), ADD KEY `id_department` (`id`), ADD KEY `nama_department_2` (`nama_department`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `laporan_audit` -- ALTER TABLE `laporan_audit` ADD PRIMARY KEY (`no_audit`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`), ADD KEY `id` (`id`), ADD KEY `nama_department_2` (`id_department`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `department` -- ALTER TABLE `department` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `laporan_audit` -- ALTER TABLE `laporan_audit` MODIFY `no_audit` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; -- -- Constraints for dumped tables -- -- -- Constraints for table `users` -- ALTER TABLE `users` ADD CONSTRAINT `users_ibfk_1` FOREIGN KEY (`id_department`) REFERENCES `department` (`id`); COMMIT; /*!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 */;
INSERT INTO user(ssn) VALUES('user1'); INSERT INTO user(ssn) VALUES('user2'); INSERT INTO user(ssn) VALUES('user3'); INSERT INTO user(ssn) VALUES('user4'); INSERT INTO user(ssn) VALUES('user5');
<filename>ABS_to_Synapse/MS_test_1/TestCase1PerfResultsTable.sql<gh_stars>0 if object_id('dbo.TestCase1PerfResults ') is not null drop table dbo.TestCase1PerfResults create table TestCase1PerfResults ( ID int IDENTITY(1,1), [DateTime] datetime, DWU int, ResourceClass varchar(100), Method varchar(100), FileType varchar(100), Compression varchar(100), Files int, ScaleFactor int, Duration1 time, Duration2 time, Duration3 time )with (HEAP, DISTRIBUTION=ROUND_ROBIN)
update t_lc_robot_task_his t,t_lc_task ta set t.case_no = ta.case_no where t.task_id = ta.id;
-- Add migration script here ALTER TABLE challenges DROP CONSTRAINT challenges_name_key; CREATE INDEX challenges_name_key ON challenges (name);
USE utilizedNeighbor_db; INSERT INTO serviceOffers(serviceName) VALUE ("Accounting / Finances"), ("Beauty"), ("Automotive"), ("Clothing"), ("Tutoring"), ("Computer"), ("Cooking"), ("Yard Work"), ("Delivery"), ("Furniture"), ("Health / Wellness"), ("Real Estate"), ("Home Services"), ("Electrical"), ("Plumbing"), ("Handy Man"), ("Roofing"), ("Pest"), ("Creative"), ("Pets"), ("Lessons"), ("Legal")
<filename>test/migrations/V005__timezoned_qcdate.sql ALTER TABLE FileQC ALTER qcdate TYPE timestamptz USING qcdate;
SELECT name FROM people where id IN (SELECT person_id FROM stars WHERE movie_id IN (SELECT id FROM movies where year = 2004)) ORDER BY birth;
<gh_stars>1-10 IF OBJECT_ID('tempdb..#tmp') IS NOT NULL DROP TABLE #tmp; CREATE TABLE #tmp (DBName SYSNAME, SchemaName SYSNAME, TableName SYSNAME, FullTableName AS QUOTENAME(SchemaName) + N'.' + QUOTENAME(TableName), UntrustedObject SYSNAME); INSERT INTO #tmp(DBName, SchemaName, TableName, UntrustedObject) EXEC sp_MSforeachdb 'IF EXISTS (SELECT * FROM sys.databases WHERE state_desc = ''ONLINE'' AND name = ''?'' AND DATABASEPROPERTYEX(''?'', ''Updateability'') = ''READ_WRITE'') BEGIN USE [?]; SELECT ''?'', OBJECT_SCHEMA_NAME(parent_object_id), OBJECT_NAME(parent_object_id), [name] FROM [?].sys.foreign_keys WHERE is_not_trusted = 1 AND is_not_for_replication = 0 AND is_disabled = 0; END' SELECT * , CommandToRemediate = N'USE ' + QUOTENAME(DBName) + N'; ALTER TABLE ' + FullTableName + N' WITH CHECK CHECK CONSTRAINT ' + QUOTENAME(UntrustedObject) + N';' FROM #tmp
use 30daysSQL; CREATE TABLE Customer( id INT(5) AUTO_INCREMENT, customer_name varchar(50), country varchar(25), age int(3), PRIMARY KEY(id) ); INSERT INTO Customer(customer_name, country, age) VALUES ('<NAME>', 'America', 50), ('<NAME>', 'Korea', 55), ('<NAME>', 'America', 45), ('<NAME>', 'America', 48);
ALTER TABLE objective8.comments DROP COLUMN removed_by_admin;
--删除表空间 HS_SYS_DATA declare v_rowcount integer; begin select count(*) into v_rowcount from dual where exists(select * from dba_tablespaces a where a.TABLESPACE_NAME = upper('HS_SYS_DATA')); if v_rowcount > 0 then execute immediate 'DROP tablespace HS_SYS_DATA including contents and datafiles'; end if; end; / --创建表空间HS_SYS_DATA create tablespace HS_SYS_DATA datafile '/opt/data/sysdat01.dbf' size 100M autoextend on next 10m maxsize unlimited extent management local uniform size 8m segment space management auto; --删除表空间 HS_SYS_IDX declare v_rowcount integer; begin select count(*) into v_rowcount from dual where exists(select * from dba_tablespaces a where a.TABLESPACE_NAME = upper('HS_SYS_IDX')); if v_rowcount > 0 then execute immediate 'DROP tablespace HS_SYS_IDX including contents and datafiles'; end if; end; / --创建表空间HS_SYS_IDX create tablespace HS_SYS_IDX datafile '/opt/data/sysidx01.dbf' size 100M autoextend on next 10m maxsize unlimited extent management local uniform size 8m segment space management auto; --删除用户 hs_sys declare v_rowcount integer; begin select count(*) into v_rowcount from dual where exists(select * from all_users a where a.username = upper('hs_sys')); if v_rowcount > 0 then execute immediate 'DROP USER hs_sys CASCADE'; end if; end; / --创建用户 hs_sys CREATE USER hs_sys IDENTIFIED BY "Hundsun123" DEFAULT TABLESPACE HS_SYS_DATA TEMPORARY TABLESPACE TEMP; --用户 hs_sys 赋权限 GRANT CONNECT TO hs_sys; GRANT RESOURCE TO hs_sys; GRANT DBA TO hs_sys; GRANT UNLIMITED TABLESPACE TO hs_sys; GRANT create any table TO hs_sys; GRANT select any table TO hs_sys; GRANT drop any table TO hs_sys; GRANT create any index TO hs_sys; GRANT delete any table TO hs_sys; GRANT insert any table TO hs_sys; GRANT update any table TO hs_sys; GRANT create any directory TO hs_sys;
<reponame>seung-dev/seung-spring-gomtang<gh_stars>0 DROP TABLE IF EXISTS t_eb_t1903 CASCADE; CREATE TABLE t_eb_t1903 ( shcode varchar(6) , date varchar(8) , date_inst timestamp DEFAULT NOW() , date_updt timestamp DEFAULT NOW() , hash varchar(32) , price int , sign varchar(1) , change int , volume bigint , navdiff decimal(9, 2) , nav decimal(9, 2) , navchange decimal(9, 2) , crate decimal(9, 2) , grate decimal(9, 2) , jisu decimal(8, 2) , jichange decimal(8, 2) , jirate decimal(8, 2) ); CREATE UNIQUE INDEX uni_t_eb_t1903 ON t_eb_t1903 (shcode, date DESC); COMMENT ON TABLE t_eb_t1903 IS '이베스트 ETF 종목 일별 내역'; COMMENT ON COLUMN t_eb_t1903.shcode IS '종목코드'; COMMENT ON COLUMN t_eb_t1903.date IS '거래일자'; COMMENT ON COLUMN t_eb_t1903.date_inst IS '등록일시'; COMMENT ON COLUMN t_eb_t1903.date_updt IS '수정일시'; COMMENT ON COLUMN t_eb_t1903.hash IS 'data hash'; COMMENT ON COLUMN t_eb_t1903.price IS '현재가'; COMMENT ON COLUMN t_eb_t1903.sign IS '종가등락구분 - 1: 상한, 2: 상승, 3: 보합'; COMMENT ON COLUMN t_eb_t1903.change IS '전일대비'; COMMENT ON COLUMN t_eb_t1903.volume IS '누적거래량'; COMMENT ON COLUMN t_eb_t1903.navdiff IS 'NAV대비'; COMMENT ON COLUMN t_eb_t1903.nav IS 'NAV'; COMMENT ON COLUMN t_eb_t1903.navchange IS 'NAV전일대비'; COMMENT ON COLUMN t_eb_t1903.crate IS '추적오차'; COMMENT ON COLUMN t_eb_t1903.grate IS '괴리'; COMMENT ON COLUMN t_eb_t1903.jisu IS '지수'; COMMENT ON COLUMN t_eb_t1903.jichange IS '지수전일대비'; COMMENT ON COLUMN t_eb_t1903.jirate IS '지수전일대비율'; COMMIT;
drop procedure if exists ui_expire_invalid_sessions; delimiter $$ create procedure ui_expire_invalid_sessions() begin update sessions set session_expired = 'Y' where session_expired = 'N' and actions_expired = 'Y'; select 'OK' status, null error_message; end $$ delimiter ; call save_routine_information('ui_expire_invalid_sessions', concat_ws(',', 'status varchar', 'error_message varchar' ) );
---------------------------------------- -- INPUTS -- location: neighborhood -- :nb_boundary_buffer psql var must be set before running this script, -- e.g. psql -v nb_boundary_buffer=11000 -f school_roads.sql ---------------------------------------- DROP TABLE IF EXISTS generated.neighborhood_school_roads; CREATE TABLE generated.neighborhood_school_roads ( id SERIAL PRIMARY KEY, school_id INT, road_id INT ); -- polygons take any road within 50 feet INSERT INTO generated.neighborhood_school_roads ( school_id, road_id ) SELECT schools.id, ways.road_id FROM neighborhood_schools schools, neighborhood_ways ways WHERE EXISTS ( SELECT 1 FROM neighborhood_boundary AS b WHERE ST_DWithin(b.geom, schools.geom_pt, :nb_boundary_buffer) ) AND schools.geom_poly IS NOT NULL AND ST_DWithin(schools.geom_poly,ways.geom,50); -- points take the nearest road INSERT INTO generated.neighborhood_school_roads ( school_id, road_id ) SELECT schools.id, ( SELECT ways.road_id FROM neighborhood_ways ways ORDER BY ST_Distance(ways.geom,schools.geom_pt) ASC LIMIT 1 ) FROM neighborhood_schools schools WHERE EXISTS ( SELECT 1 FROM neighborhood_boundary AS b WHERE ST_DWithin(b.geom, schools.geom_pt, :nb_boundary_buffer) ) AND NOT EXISTS ( SELECT 1 FROM neighborhood_school_roads r WHERE schools.id = r.school_id ); CREATE INDEX IF NOT EXISTS idx_neighborhood_schlrds_schlid ON generated.neighborhood_school_roads (school_id); CREATE INDEX IF NOT EXISTS idx_neighborhood_schlrds_rdid ON generated.neighborhood_school_roads (road_id); ANALYZE generated.neighborhood_school_roads (school_id, road_id);
CREATE UNIQUE INDEX IF NOT EXISTS resources_kind_app_appversion_unique ON resources( (raw ->> 'kind'), (raw ->> 'app'), (raw ->> 'appVersion'), (raw ->> 'version'));
<gh_stars>1-10 BEGIN TRANSACTION IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'implementationguide_file' AND COLUMN_NAME = 'url') BEGIN ALTER TABLE dbo.implementationguide_file ADD url nvarchar(255) NULL END COMMIT TRANSACTION
------------------------------------------------------------------------------- -- -- PLEASE NOTE -- -- No warranty, no liability, no support. -- -- This script is 100% at your own risk to use. -- ------------------------------------------------------------------------------- set verify off select table_name, constraint_name, ( select table_name from dba_constraints where constraint_name = d.r_constraint_name and owner = d.r_owner ) r_table, status from dba_constraints d where (r_owner,r_constraint_name) in ( select owner, constraint_name from dba_constraints where table_name = upper('&table_name_req') and constraint_type in ('P','U') );
/*L Copyright SAIC Distributed under the OSI-approved BSD 3-Clause License. See http://ncip.github.com/cabio/LICENSE.txt for details. L*/ create index CYTOBANDBAND_CHROMOSOME on CYTOBAND(CHROMOSOME_ID) PARALLEL NOLOGGING tablespace CABIO_FUT; create index CYTOBANDBAND_PHYSICAL_L on CYTOBAND(PHYSICAL_LOCATION_ID) PARALLEL NOLOGGING tablespace CABIO_FUT; create index CYTOBANDBAND_NAME on CYTOBAND(NAME) PARALLEL NOLOGGING tablespace CABIO_FUT; create index CYTOBANDBAND_ID on CYTOBAND(ID) PARALLEL NOLOGGING tablespace CABIO_FUT; --EXIT;
# Host: localhost (Version: 5.7.26) # Date: 2020-10-10 16:04:17 # Generator: MySQL-Front 5.3 (Build 4.234) /*!40101 SET NAMES utf8 */; # # Structure for table "wphgoods" # CREATE TABLE `wphgoods` ( `sid` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(999) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `title` varchar(999) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `zhekou` float(7,1) NOT NULL DEFAULT '0.0', `zheqi` varchar(999) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`sid`) ) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; # # Data for table "wphgoods" # INSERT INTO `wphgoods` VALUES (1,'https://a.appsimg.com/upload/brand/upcb/2020/10/04/176/ias_160177353576578.jpg!75.webp','音儿YINER女装--时尚风暴专场',0.8,'折起'),(2,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/8/ias_160138338332846.jpg!75.webp','诗篇PSALTER女装-时尚风暴专场',0.8,'折起'),(3,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/92/ias_160102364416710.jpg!75.webp','德玛纳女装-时尚风暴专场',4.8,'折封顶'),(4,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/99/ias_160137865921786.jpg!75.webp','恩裳INSUN女装-时尚风暴专场',0.7,'折起'),(5,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/165/ias_160102141800123.jpg!75.webp','丝柏舍-时尚风暴专场',3.7,'折封顶'),(6,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/193/ias_160102388891045.jpg!75.webp','CACHE CACHE女装-时尚风暴专场',1.1,'折起'),(7,'https://a.appsimg.com/upload/brand/upcb/2020/09/02/61/ias_159901934005258.jpg!75.webp','VING女装-时尚风暴专场',3.2,'折封顶'),(8,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/133/ias_160136355481311.jpg!75.webp','lisa.lisa女装-时尚风暴3折封顶专场',3.2,'折封顶'),(9,'https://a.appsimg.com/upload/brand/upcb/2020/09/28/147/ias_160127269612260.jpg!75.webp','Miss Sixty意式潮奢女装-时尚风暴专场',1.0,'折起'),(10,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/184/ias_160137532298322.jpg!75.webp','La Chapelle SPORT女装-时尚风暴专场',3.9,'折封顶'),(11,'https://a.appsimg.com/upload/brand/upcb/2020/09/04/183/ias_159919679374877.jpg!75.webp','HAVVA-时尚风暴专场',3.8,'折封顶'),(12,'https://a.appsimg.com/upload/brand/upcb/2020/09/27/0/ias_160118866875439.jpg!75.webp','猫人Miiow女装-时尚风暴专场',3.0,'折封顶'),(13,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/86/ias_160137068666685.jpg!75.webp','ZARA专场 即刻开启时尚之旅-时尚风暴专场',1.5,'折起'),(14,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/133/ias_160136809362814.jpg!75.webp','BERSHKA专场 新品速递-时尚风暴专场',1.5,'折起'),(15,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/192/ias_160135058979699.jpg!75.webp','MO&Co.女装-时尚风暴专场',0.8,'折起'),(16,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/61/ias_160102027163939.jpg!75.webp','KORAKANE女装-时尚风暴专场',2.7,'折封顶'),(17,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/156/ias_160137556046420.jpg!75.webp','马克华菲女装-时尚风暴专场',5.0,'折封顶'),(18,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/91/ias_160100206893535.jpg!75.webp','丽丽LILY商务女装-时尚风暴专场',1.2,'折起'),(19,'https://a.appsimg.com/upload/brand/upcb/2020/09/27/57/ias_160120549949423.jpg!75.webp','FIVE PLUS女装-时尚风暴专场',3.0,'折起'),(20,'https://a.appsimg.com/upload/brand/upcb/2020/10/09/128/ias_160221109167011.jpg!75.webp','尚都比拉女装-国庆特卖节专场',3.8,'折封顶'),(21,'https://a.appsimg.com/upload/brand/upcb/2020/09/30/89/ias_160144525175586.jpg!75.webp','玖姿JUZUI女装-时尚风暴专场',1.0,'折起'),(22,'https://a.appsimg.com/upload/brand/upcb/2020/09/26/66/ias_160110401922948.jpg!75.webp','Puella女装-时尚风暴专场',3.5,'折封顶'),(23,'https://a.appsimg.com/upload/brand/upcb/2020/09/28/110/ias_160127449296720.jpg!75.webp','IAIZO女装-时尚风暴专场',4.0,'折封顶'),(24,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/168/ias_160137264816788.jpg!75.webp','乐町女装-时尚风暴专场',1.2,'折起'),(25,'https://a.appsimg.com/upload/brand/upcb/2020/09/28/31/ias_160125410307640.jpg!75.webp','台格品质妈妈装-国庆特卖节专场',3.5,'折封顶'),(26,'https://a.appsimg.com/upload/brand/upcb/2020/09/30/90/ias_160145260381948.jpg!75.webp','斯尔丽羽绒-时尚风暴专场',3.7,'折封顶'),(27,'https://a.appsimg.com/upload/brand/upcb/2020/09/18/17/ias_160041383529544.jpg!75.webp','小熊Teenie Weenie男女装-时尚风暴专场',1.8,'折起'),(28,'https://a.appsimg.com/upload/brand/upcb/2020/09/27/143/ias_160118505065280.jpg!75.webp','小熊Teenie Weenie男装-时尚风暴专场',0.9,'折起'),(29,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/88/ias_160135891970854.jpg!75.webp','nissen女装-时尚风暴专场',3.2,'折封顶'),(30,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/86/ias_160137068666685.jpg!75.webp','ZARA专场 即刻开启时尚之旅-时尚风暴专场',1.5,'折起'),(31,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/192/ias_160135058979699.jpg!75.webp','MO&Co.女装-时尚风暴专场',0.8,'折起'),(32,'https://a.appsimg.com/upload/brand/upcb/2020/09/29/133/ias_160136809362814.jpg!75.webp','BERSHKA专场 新品速递-时尚风暴专场',1.5,'折起'),(33,'https://a.appsimg.com/upload/brand/upcb/2020/09/28/83/ias_160128589393575.jpg!75.webp','DVF纽约摩登女装-时尚风暴专场',3.6,'折起'),(34,'https://a.appsimg.com/upload/brand/upcb/2020/09/27/165/ias_160117457782885.jpg!75.webp','韩国pdf牛仔女装-时尚风暴专场',2.3,'折封顶'),(35,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/119/ias_160100588622342.jpg!75.webp','柯利亚诺Koreano职场商务高端女装-时尚风暴专场',5.0,'折封顶'),(36,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/56/ias_160102477527092.jpg!75.webp','MOUSSY女装-时尚风暴专场',5.0,'折封顶'),(37,'https://a.appsimg.com/upload/brand/upcb/2020/08/17/85/ias_159765883449874.jpg!75.webp','巴黎世家BALENCIAGA奢品鞋包-时尚风暴专场',4.5,'折封顶'),(38,'https://a.appsimg.com/upload/brand/upcb/2020/09/27/109/ias_160119286693354.jpg!75.webp','美国CK女装-时尚风暴专场',2.2,'折封顶'),(39,'https://a.appsimg.com/upload/brand/upcb/2020/09/25/149/ias_160102574208184.jpg!75.webp','SLY女装-时尚风暴专场',4.3,'折封顶'),(40,'https://a.appsimg.com/upload/brand/upcb/2020/09/30/104/ias_160144768199233.jpg!75.webp','cocktail la mode全球奢品折扣-时尚风暴专场',0.5,'折起');
<filename>internal/sqlparser/testdata/statements/abort3.sql ABORT AND CHAIN;
-- -- PostgreSQL database dump -- -- Dumped from database version 10.1 -- Dumped by pg_dump version 10.1 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; -- -- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public; -- -- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)'; SET search_path = public, pg_catalog; -- -- Name: floatrange; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE floatrange AS RANGE ( subtype = double precision, subtype_diff = float8mi ); -- -- Name: histogram_result; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE histogram_result AS ( count integer, bucket integer, range floatrange ); -- -- Name: hist_sfunc(histogram_result[], double precision, double precision, double precision, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION hist_sfunc(state histogram_result[], val double precision, min double precision, max double precision, nbuckets integer) RETURNS histogram_result[] LANGUAGE plpgsql IMMUTABLE AS $$ DECLARE bucket INTEGER; width float8; i INTEGER; BEGIN -- width_bucket uses nbuckets + 1 (!) and starts at 1. bucket := width_bucket(val, min, max, nbuckets - 1) - 1; -- Init the array with the correct number of 0's so the caller doesn't see NULLs IF state[0] IS NULL THEN width := (max - min) / nbuckets; FOR i IN SELECT * FROM generate_series(0, nbuckets - 1) LOOP state[i] := (0, i, floatrange(i * width, (i + 1) * width)); END LOOP; END IF; state[bucket] = (state[bucket].count + 1, state[bucket].bucket, state[bucket].range); RETURN state; END; $$; -- -- Name: histobar(double precision, double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION histobar(v double precision, tick_size double precision) RETURNS text LANGUAGE sql AS $$ SELECT repeat('=', (v * tick_size)::integer); $$; -- -- Name: histogram_bucket(histogram_result[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION histogram_bucket(h histogram_result[]) RETURNS SETOF integer LANGUAGE plpgsql AS $$ DECLARE r histogram_result; BEGIN FOREACH r IN ARRAY h LOOP IF r.bucket IS NULL THEN CONTINUE; END IF; RETURN QUERY VALUES (r.bucket); END loop; END; $$; -- -- Name: histogram_count(histogram_result[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION histogram_count(h histogram_result[]) RETURNS SETOF integer LANGUAGE plpgsql AS $$ DECLARE r histogram_result; BEGIN FOREACH r IN ARRAY h LOOP IF r.bucket IS NULL THEN CONTINUE; END IF; RETURN QUERY VALUES (r.count); END loop; END; $$; -- -- Name: histogram_range(histogram_result[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION histogram_range(h histogram_result[]) RETURNS SETOF floatrange LANGUAGE plpgsql AS $$ DECLARE r histogram_result; BEGIN FOREACH r IN ARRAY h LOOP IF r.bucket IS NULL THEN CONTINUE; END IF; RETURN QUERY VALUES (r.range); END loop; END; $$; -- -- Name: show_histogram(histogram_result[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION show_histogram(h histogram_result[]) RETURNS TABLE(bucket integer, range floatrange, count integer, bar text, cumbar text, cumsum integer, cumpct numeric) LANGUAGE plpgsql AS $$ DECLARE r histogram_result; min_count integer := (select min(x.count) from unnest(h) as x); max_count integer := (select max(x.count) from unnest(h) as x); total_count integer := (select sum(x.count) from unnest(h) as x); bar_max_width integer := 30; bar_tick_size float8 := bar_max_width / (max_count - min_count)::float8; bar text; cumsum integer := 0; cumpct numeric; BEGIN FOREACH r IN ARRAY h LOOP IF r.bucket IS NULL THEN CONTINUE; END IF; cumsum := cumsum + r.count; cumpct := (cumsum::numeric / total_count); bar := histobar(r.count, bar_tick_size); RETURN QUERY VALUES ( r.bucket, r.range, r.count, bar, histobar(cumpct, bar_max_width), cumsum, cumpct ); END loop; END; $$; -- -- Name: histogram(double precision, double precision, double precision, integer); Type: AGGREGATE; Schema: public; Owner: - -- CREATE AGGREGATE histogram(double precision, double precision, double precision, integer) ( SFUNC = hist_sfunc, STYPE = histogram_result[] ); SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: applications; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE applications ( id integer NOT NULL, user_id integer, name character varying, license_key character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: applications_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE applications_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE applications_id_seq OWNED BY applications.id; -- -- Name: backtraces; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE backtraces ( id integer NOT NULL, backtraceable_id character varying, backtraceable_type character varying, backtrace text, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: backtraces_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE backtraces_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: backtraces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE backtraces_id_seq OWNED BY backtraces.id; -- -- Name: database_calls; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE database_calls ( id integer NOT NULL, application_id integer, host_id integer, database_type_id integer, layer_id integer, span_id character varying, statement character varying, "timestamp" timestamp without time zone, duration double precision, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: database_calls_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE database_calls_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: database_calls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE database_calls_id_seq OWNED BY database_calls.id; -- -- Name: database_types; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE database_types ( id integer NOT NULL, application_id integer, name character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: database_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE database_types_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: database_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE database_types_id_seq OWNED BY database_types.id; -- -- Name: error_data; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE error_data ( id integer NOT NULL, application_id integer, host_id integer, error_message_id integer, transaction_id character varying, message character varying, backtrace text, "timestamp" timestamp without time zone, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, source text, span_id character varying ); -- -- Name: error_data_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE error_data_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: error_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE error_data_id_seq OWNED BY error_data.id; -- -- Name: error_messages; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE error_messages ( id integer NOT NULL, application_id integer, fingerprint character varying, error_class character varying, error_message character varying, last_error_at timestamp without time zone, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: error_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE error_messages_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: error_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE error_messages_id_seq OWNED BY error_messages.id; -- -- Name: events; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE events ( id integer NOT NULL, type character varying, application_id integer, start_time timestamp without time zone, end_time timestamp without time zone, title character varying, description character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: events_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE events_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE events_id_seq OWNED BY events.id; -- -- Name: hosts; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE hosts ( id integer NOT NULL, name character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: hosts_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE hosts_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: hosts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE hosts_id_seq OWNED BY hosts.id; -- -- Name: layers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE layers ( id integer NOT NULL, application_id integer, name character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: layers_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE layers_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: layers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE layers_id_seq OWNED BY layers.id; -- -- Name: log_entries; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE log_entries ( id integer NOT NULL, span_id character varying, event character varying, "timestamp" timestamp without time zone, fields text, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: log_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE log_entries_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: log_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE log_entries_id_seq OWNED BY log_entries.id; -- -- Name: metric_data; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE metric_data ( id integer NOT NULL, host_id integer, metric_id integer, "timestamp" timestamp without time zone, value double precision, tags jsonb DEFAULT '{}'::jsonb ); -- -- Name: metric_data_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE metric_data_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: metric_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE metric_data_id_seq OWNED BY metric_data.id; -- -- Name: metrics; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE metrics ( id integer NOT NULL, application_id integer, name character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: metrics_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE metrics_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: metrics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE metrics_id_seq OWNED BY metrics.id; -- -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE schema_migrations ( version character varying NOT NULL ); -- -- Name: spans; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE spans ( application_id integer, host_id integer, layer_id integer, trace_id character varying, name character varying, "timestamp" timestamp without time zone, duration double precision, exclusive_duration double precision, uuid character varying, payload jsonb, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, parent_id character varying, operation_name character varying, id uuid DEFAULT uuid_generate_v4() NOT NULL ); -- -- Name: traces; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE traces ( id integer NOT NULL, application_id integer, host_id integer, trace_key character varying, "timestamp" timestamp without time zone, duration double precision, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: traces_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE traces_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: traces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE traces_id_seq OWNED BY traces.id; -- -- Name: users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE users ( id integer NOT NULL, email character varying, license_key character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, name character varying, encrypted_password character varying DEFAULT ''::character varying NOT NULL, reset_password_token character varying, reset_password_sent_at timestamp without time zone, remember_created_at timestamp without time zone, sign_in_count integer DEFAULT 0 NOT NULL, current_sign_in_at timestamp without time zone, last_sign_in_at timestamp without time zone, current_sign_in_ip inet, last_sign_in_ip inet, invitation_token character varying, invitation_created_at timestamp without time zone, invitation_sent_at timestamp without time zone, invitation_accepted_at timestamp without time zone, invitation_limit integer, invited_by_id integer, invited_by_type character varying, invitations_count integer DEFAULT 0 ); -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE users_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE users_id_seq OWNED BY users.id; -- -- Name: applications id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY applications ALTER COLUMN id SET DEFAULT nextval('applications_id_seq'::regclass); -- -- Name: backtraces id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY backtraces ALTER COLUMN id SET DEFAULT nextval('backtraces_id_seq'::regclass); -- -- Name: database_calls id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY database_calls ALTER COLUMN id SET DEFAULT nextval('database_calls_id_seq'::regclass); -- -- Name: database_types id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY database_types ALTER COLUMN id SET DEFAULT nextval('database_types_id_seq'::regclass); -- -- Name: error_data id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY error_data ALTER COLUMN id SET DEFAULT nextval('error_data_id_seq'::regclass); -- -- Name: error_messages id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY error_messages ALTER COLUMN id SET DEFAULT nextval('error_messages_id_seq'::regclass); -- -- Name: events id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY events ALTER COLUMN id SET DEFAULT nextval('events_id_seq'::regclass); -- -- Name: hosts id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY hosts ALTER COLUMN id SET DEFAULT nextval('hosts_id_seq'::regclass); -- -- Name: layers id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY layers ALTER COLUMN id SET DEFAULT nextval('layers_id_seq'::regclass); -- -- Name: log_entries id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY log_entries ALTER COLUMN id SET DEFAULT nextval('log_entries_id_seq'::regclass); -- -- Name: metric_data id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY metric_data ALTER COLUMN id SET DEFAULT nextval('metric_data_id_seq'::regclass); -- -- Name: metrics id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY metrics ALTER COLUMN id SET DEFAULT nextval('metrics_id_seq'::regclass); -- -- Name: traces id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY traces ALTER COLUMN id SET DEFAULT nextval('traces_id_seq'::regclass); -- -- Name: users id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass); -- -- Name: applications applications_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY applications ADD CONSTRAINT applications_pkey PRIMARY KEY (id); -- -- Name: backtraces backtraces_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY backtraces ADD CONSTRAINT backtraces_pkey PRIMARY KEY (id); -- -- Name: database_calls database_calls_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_calls ADD CONSTRAINT database_calls_pkey PRIMARY KEY (id); -- -- Name: database_types database_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_types ADD CONSTRAINT database_types_pkey PRIMARY KEY (id); -- -- Name: error_data error_data_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY error_data ADD CONSTRAINT error_data_pkey PRIMARY KEY (id); -- -- Name: error_messages error_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY error_messages ADD CONSTRAINT error_messages_pkey PRIMARY KEY (id); -- -- Name: events events_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY events ADD CONSTRAINT events_pkey PRIMARY KEY (id); -- -- Name: hosts hosts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY hosts ADD CONSTRAINT hosts_pkey PRIMARY KEY (id); -- -- Name: layers layers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY layers ADD CONSTRAINT layers_pkey PRIMARY KEY (id); -- -- Name: log_entries log_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY log_entries ADD CONSTRAINT log_entries_pkey PRIMARY KEY (id); -- -- Name: metric_data metric_data_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY metric_data ADD CONSTRAINT metric_data_pkey PRIMARY KEY (id); -- -- Name: metrics metrics_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY metrics ADD CONSTRAINT metrics_pkey PRIMARY KEY (id); -- -- Name: spans spans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY spans ADD CONSTRAINT spans_pkey PRIMARY KEY (id); -- -- Name: traces traces_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY traces ADD CONSTRAINT traces_pkey PRIMARY KEY (id); -- -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: idx_metric_data_tags; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX idx_metric_data_tags ON metric_data USING gin (tags jsonb_path_ops); -- -- Name: idx_spans_payload; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX idx_spans_payload ON spans USING gin (payload jsonb_path_ops); -- -- Name: index_applications_on_name_and_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_applications_on_name_and_user_id ON applications USING btree (name, user_id); -- -- Name: index_applications_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_applications_on_user_id ON applications USING btree (user_id); -- -- Name: index_backtraces_on_backtraceable_type_and_backtraceable_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_backtraces_on_backtraceable_type_and_backtraceable_id ON backtraces USING btree (backtraceable_type, backtraceable_id); -- -- Name: index_database_calls_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_calls_on_application_id ON database_calls USING btree (application_id); -- -- Name: index_database_calls_on_database_type_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_calls_on_database_type_id ON database_calls USING btree (database_type_id); -- -- Name: index_database_calls_on_host_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_calls_on_host_id ON database_calls USING btree (host_id); -- -- Name: index_database_calls_on_layer_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_calls_on_layer_id ON database_calls USING btree (layer_id); -- -- Name: index_database_calls_on_span_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_calls_on_span_id ON database_calls USING btree (span_id); -- -- Name: index_database_calls_on_timestamp; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_calls_on_timestamp ON database_calls USING btree ("timestamp"); -- -- Name: index_database_types_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_database_types_on_application_id ON database_types USING btree (application_id); -- -- Name: index_error_data_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_error_data_on_application_id ON error_data USING btree (application_id); -- -- Name: index_error_data_on_error_message_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_error_data_on_error_message_id ON error_data USING btree (error_message_id); -- -- Name: index_error_data_on_host_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_error_data_on_host_id ON error_data USING btree (host_id); -- -- Name: index_error_messages_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_error_messages_on_application_id ON error_messages USING btree (application_id); -- -- Name: index_events_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_events_on_application_id ON events USING btree (application_id); -- -- Name: index_layers_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_layers_on_application_id ON layers USING btree (application_id); -- -- Name: index_layers_on_name_and_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_layers_on_name_and_application_id ON layers USING btree (name, application_id); -- -- Name: index_log_entries_on_span_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_log_entries_on_span_id ON log_entries USING btree (span_id); -- -- Name: index_metric_data_on_host_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_metric_data_on_host_id ON metric_data USING btree (host_id); -- -- Name: index_metric_data_on_metric_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_metric_data_on_metric_id ON metric_data USING btree (metric_id); -- -- Name: index_metrics_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_metrics_on_application_id ON metrics USING btree (application_id); -- -- Name: index_spans_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_spans_on_application_id ON spans USING btree (application_id); -- -- Name: index_spans_on_host_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_spans_on_host_id ON spans USING btree (host_id); -- -- Name: index_spans_on_layer_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_spans_on_layer_id ON spans USING btree (layer_id); -- -- Name: index_spans_on_parent_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_spans_on_parent_id ON spans USING btree (parent_id); -- -- Name: index_spans_on_timestamp; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_spans_on_timestamp ON spans USING btree ("timestamp"); -- -- Name: index_spans_on_trace_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_spans_on_trace_id ON spans USING btree (trace_id); -- -- Name: index_traces_on_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_traces_on_application_id ON traces USING btree (application_id); -- -- Name: index_traces_on_host_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_traces_on_host_id ON traces USING btree (host_id); -- -- Name: index_traces_on_timestamp; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_traces_on_timestamp ON traces USING btree ("timestamp"); -- -- Name: index_traces_on_trace_key_and_application_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_traces_on_trace_key_and_application_id ON traces USING btree (trace_key, application_id); -- -- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_users_on_email ON users USING btree (email); -- -- Name: index_users_on_invitation_token; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_users_on_invitation_token ON users USING btree (invitation_token); -- -- Name: index_users_on_invitations_count; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_users_on_invitations_count ON users USING btree (invitations_count); -- -- Name: index_users_on_invited_by_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_users_on_invited_by_id ON users USING btree (invited_by_id); -- -- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_users_on_reset_password_token ON users USING btree (reset_password_token); -- -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version); -- -- Name: metrics fk_rails_011a3e569f; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY metrics ADD CONSTRAINT fk_rails_011a3e569f FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: database_calls fk_rails_1025ac6d1a; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_calls ADD CONSTRAINT fk_rails_1025ac6d1a FOREIGN KEY (layer_id) REFERENCES layers(id); -- -- Name: spans fk_rails_238b63daa9; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY spans ADD CONSTRAINT fk_rails_238b63daa9 FOREIGN KEY (host_id) REFERENCES hosts(id); -- -- Name: error_messages fk_rails_384d6fa11a; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY error_messages ADD CONSTRAINT fk_rails_384d6fa11a FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: traces fk_rails_3f4665e0b5; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY traces ADD CONSTRAINT fk_rails_3f4665e0b5 FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: database_calls fk_rails_40b3ccef67; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_calls ADD CONSTRAINT fk_rails_40b3ccef67 FOREIGN KEY (host_id) REFERENCES hosts(id); -- -- Name: database_types fk_rails_40cfd232fc; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_types ADD CONSTRAINT fk_rails_40cfd232fc FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: events fk_rails_5502771cf0; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY events ADD CONSTRAINT fk_rails_5502771cf0 FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: traces fk_rails_6c5cd9a577; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY traces ADD CONSTRAINT fk_rails_6c5cd9a577 FOREIGN KEY (host_id) REFERENCES hosts(id); -- -- Name: error_data fk_rails_6f4ca3da14; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY error_data ADD CONSTRAINT fk_rails_6f4ca3da14 FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: applications fk_rails_703c720730; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY applications ADD CONSTRAINT fk_rails_703c720730 FOREIGN KEY (user_id) REFERENCES users(id); -- -- Name: layers fk_rails_7347a524b6; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY layers ADD CONSTRAINT fk_rails_7347a524b6 FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: spans fk_rails_75ce7a410c; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY spans ADD CONSTRAINT fk_rails_75ce7a410c FOREIGN KEY (layer_id) REFERENCES layers(id); -- -- Name: spans fk_rails_9516b75a98; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY spans ADD CONSTRAINT fk_rails_9516b75a98 FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: metric_data fk_rails_9fc5ea3242; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY metric_data ADD CONSTRAINT fk_rails_9fc5ea3242 FOREIGN KEY (host_id) REFERENCES hosts(id); -- -- Name: metric_data fk_rails_b2e9a5a928; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY metric_data ADD CONSTRAINT fk_rails_b2e9a5a928 FOREIGN KEY (metric_id) REFERENCES metrics(id); -- -- Name: error_data fk_rails_b51fd68f43; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY error_data ADD CONSTRAINT fk_rails_b51fd68f43 FOREIGN KEY (host_id) REFERENCES hosts(id); -- -- Name: error_data fk_rails_d74ab25774; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY error_data ADD CONSTRAINT fk_rails_d74ab25774 FOREIGN KEY (error_message_id) REFERENCES error_messages(id); -- -- Name: database_calls fk_rails_e1ffc54547; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_calls ADD CONSTRAINT fk_rails_e1ffc54547 FOREIGN KEY (application_id) REFERENCES applications(id); -- -- Name: database_calls fk_rails_e4c11371a0; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY database_calls ADD CONSTRAINT fk_rails_e4c11371a0 FOREIGN KEY (database_type_id) REFERENCES database_types(id); -- -- PostgreSQL database dump complete -- SET search_path TO "$user", public; INSERT INTO schema_migrations (version) VALUES ('20160428204600'); INSERT INTO schema_migrations (version) VALUES ('20160428204603'); INSERT INTO schema_migrations (version) VALUES ('20160507124206'); INSERT INTO schema_migrations (version) VALUES ('20160515180739'); INSERT INTO schema_migrations (version) VALUES ('20160515182837'); INSERT INTO schema_migrations (version) VALUES ('20160519121226'); INSERT INTO schema_migrations (version) VALUES ('20160519121315'); INSERT INTO schema_migrations (version) VALUES ('20160519131250'); INSERT INTO schema_migrations (version) VALUES ('20160519131253'); INSERT INTO schema_migrations (version) VALUES ('20160519131260'); INSERT INTO schema_migrations (version) VALUES ('20160519134740'); INSERT INTO schema_migrations (version) VALUES ('20161230191409'); INSERT INTO schema_migrations (version) VALUES ('20161231022752'); INSERT INTO schema_migrations (version) VALUES ('20170106142559'); INSERT INTO schema_migrations (version) VALUES ('20170108135011'); INSERT INTO schema_migrations (version) VALUES ('20170111003940'); INSERT INTO schema_migrations (version) VALUES ('20170427234422'); INSERT INTO schema_migrations (version) VALUES ('20170428004655'); INSERT INTO schema_migrations (version) VALUES ('20170428145810'); INSERT INTO schema_migrations (version) VALUES ('20170428155739'); INSERT INTO schema_migrations (version) VALUES ('20170428180924'); INSERT INTO schema_migrations (version) VALUES ('20170726010744'); INSERT INTO schema_migrations (version) VALUES ('20170726123049'); INSERT INTO schema_migrations (version) VALUES ('20170727161615'); INSERT INTO schema_migrations (version) VALUES ('20170727172500'); INSERT INTO schema_migrations (version) VALUES ('20170727175217'); INSERT INTO schema_migrations (version) VALUES ('20170728002115'); INSERT INTO schema_migrations (version) VALUES ('20170728002503'); INSERT INTO schema_migrations (version) VALUES ('20170803133120'); INSERT INTO schema_migrations (version) VALUES ('20170803194431'); INSERT INTO schema_migrations (version) VALUES ('20170803194915'); INSERT INTO schema_migrations (version) VALUES ('20170803200634'); INSERT INTO schema_migrations (version) VALUES ('20170812161507'); INSERT INTO schema_migrations (version) VALUES ('20170812162234'); INSERT INTO schema_migrations (version) VALUES ('20170813124637'); INSERT INTO schema_migrations (version) VALUES ('20171025163818'); INSERT INTO schema_migrations (version) VALUES ('20171027003948'); INSERT INTO schema_migrations (version) VALUES ('20171027010303'); INSERT INTO schema_migrations (version) VALUES ('20171028020823'); INSERT INTO schema_migrations (version) VALUES ('20171028131934'); INSERT INTO schema_migrations (version) VALUES ('20171101185138'); INSERT INTO schema_migrations (version) VALUES ('20171106004939'); INSERT INTO schema_migrations (version) VALUES ('20171106015034'); INSERT INTO schema_migrations (version) VALUES ('20180530143857'); INSERT INTO schema_migrations (version) VALUES ('20180530175949'); INSERT INTO schema_migrations (version) VALUES ('20180531135158'); INSERT INTO schema_migrations (version) VALUES ('20181005151705');
DROP schema public cascade; CREATE schema timeLog; GRANT ALL ON SCHEMA timeLog TO "admin"; ALTER ROLE "admin" IN DATABASE "timelog" SET search_path TO timeLog; CREATE TABLE timeLog.USERS ( id INTEGER PRIMARY KEY, username VARCHAR(50) UNIQUE NOT NULL, password VARCHAR(50) NOT NULL, name VARCHAR(50), surname VARCHAR(50), mail VARCHAR(50), role INTEGER NOT NULL ); CREATE TABLE timeLog.TASKS ( id INTEGER PRIMARY KEY, title VARCHAR(50) NOT NULL, description VARCHAR(50) NOT NULL, creation_date TIMESTAMP, due_to_date TIMESTAMP, creator INTEGER REFERENCES timeLog.USERS(id) ); CREATE SEQUENCE timeLog.user_seq INCREMENT BY 1 MINVALUE 0; CREATE SEQUENCE timeLog.task_seq INCREMENT BY 1 MINVALUE 0; INSERT INTO timeLog.USERS VALUES (nextval('timeLog.user_seq'), 'admin', 'admin', 'admin', 'admin', '<EMAIL>', 0); INSERT INTO timeLog.USERS VALUES (nextval('timeLog.user_seq'), 'user', 'user', 'user', 'user', '<EMAIL>', 2); INSERT INTO timelog.USERS VALUES (nextval('timeLog.user_seq'), 'maciej', 'maciej', 'maciej', 'maciej', '<EMAIL>', 1); INSERT INTO timelog.USERS VALUES (nextval('timeLog.user_seq'), 'jakub', 'jakub', 'jakub', 'jakub', '<EMAIL>', 1);
-- Create a new stored procedure called 'SP_DeleteAuthorById' in schema 'dbo' -- Drop the stored procedure if it already exists IF EXISTS ( SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE SPECIFIC_SCHEMA = N'dbo' AND SPECIFIC_NAME = N'SP_DeleteAuthorById' ) DROP PROCEDURE dbo.SP_DeleteAuthorById GO -- Create the stored procedure in the specified schema CREATE PROCEDURE dbo.SP_DeleteAuthorById @id INT AS -- body of the stored procedure DELETE FROM dbo.[Author] WHERE [authorId] = @id GO -- example to execute the stored procedure we just created EXECUTE dbo.SP_DeleteAuthorById 3002 GO
INSERT INTO archfolio.likes(user_id, post_id) VALUES ( :user_id, :post_id ) RETURNING *
<filename>citPOINT.PrefApp.DataBase/Schema Objects/Schemas/dbo/Programmability/Stored Procedures/uspPreferenceSetNegUpdate.proc.sql CREATE PROC [dbo].[uspPreferenceSetNegUpdate] @PreferenceSetNegID uniqueidentifier, @NegID uniqueidentifier, @Percentage decimal(18, 2) , @PreferenceSetID uniqueidentifier, @NegotiationName nvarchar(150), @StatusID uniqueidentifier, @Deleted bit, @DeletedBy uniqueidentifier, @DeletedOn datetime AS SET NOCOUNT ON SET XACT_ABORT ON BEGIN TRAN UPDATE [dbo].[PreferenceSetNeg] SET [PreferenceSetNegID] = @PreferenceSetNegID, [NegID] = @NegID, [Percentage] = @Percentage, [PreferenceSetID] = @PreferenceSetID, [NegotiationName] = @NegotiationName, [StatusID] = @StatusID, [Deleted] = @Deleted, [DeletedBy] = @DeletedBy, [DeletedOn] = @DeletedOn WHERE [PreferenceSetNegID] = @PreferenceSetNegID -- Begin Return Select <- do not remove SELECT [PreferenceSetNegID], [NegID], [Percentage], [PreferenceSetID],[NegotiationName],[StatusID],[Deleted], [DeletedBy], [DeletedOn] FROM [dbo].[PreferenceSetNeg] WHERE [PreferenceSetNegID] = @PreferenceSetNegID -- End Return Select <- do not remove COMMIT TRAN
<gh_stars>0 -- Crea la base de datos CREATE DATABASE IF NOT EXISTS productos_profesor_puntos CHARACTER SET utf8 COLLATE utf8_general_ci; -- Usa la base de datos USE productos_profesor_puntos; CREATE TABLE area ( id_area INT AUTO_INCREMENT PRIMARY KEY, nombre VARCHAR(45) ) ENGINE=InnoDB; -- Creación de la tabla profesor CREATE TABLE profesor ( numero_economico VARCHAR(10) PRIMARY KEY, nombre VARCHAR(45), primer_apellido VARCHAR(45), segundo_apellido VARCHAR(45), grado_academico VARCHAR(45), area_id_area INT NOT NULL, FOREIGN KEY (area_id_area) REFERENCES area (id_area) ON DELETE RESTRICT ON UPDATE RESTRICT) ENGINE=InnoDB; -- Creación de la tabla proyecto_investigacion CREATE TABLE proyecto_investigacion ( id_proyecto_investigacion INT AUTO_INCREMENT PRIMARY KEY, nombre VARCHAR (150), area_id_area INT NOT NULL, FOREIGN KEY (area_id_area) REFERENCES area(id_area) ON DELETE RESTRICT ON UPDATE RESTRICT )ENGINE = InnoDB; -- Creación de la tabla profesor_proyecto_investigacion CREATE TABLE profesor_proyecto_investigacion( id_profesor_proyecto_investigacion INT AUTO_INCREMENT PRIMARY KEY, rol VARCHAR(15), profesor_numero_economico VARCHAR(10) NOT NULL, proyecto_investigacion_id_proyecto_investigacion INT NOT NULL, FOREIGN KEY (profesor_numero_economico) REFERENCES profesor(numero_economico) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (proyecto_investigacion_id_proyecto_investigacion) REFERENCES proyecto_investigacion(id_proyecto_investigacion) ON DELETE CASCADE ON UPDATE CASCADE )ENGINE=InnoDB; INSERT INTO `area` VALUES (1,'Optimización Combinatoria'), (2,'Sistemas Computacionales'), (3,'Sistemas de Información Inteligentes'), (4,'Innovación de Sistemas'), (5,'Estadística e Investigación de Operaciones'); INSERT INTO `profesor` VALUES ('1234','<NAME>','González','Brambila','Doctorado',2), ('2345','<NAME>','Silva','López','Doctorado',3), ('3456','<NAME>','Zaragoza','Martínez','Doctorado',1), ('4567','Lisaura','Rodríguez','Alvarado','Doctorado',4), ('5678','Arturo','Aguilar','Álvarez','Maestría',5), ('6789','Francisco','Cervantes','de la Torre','Doctorado',2), ('7890','Hugo','Pablo','Leyva','Maestría',3), ('8901','Javier','Ramírez','Rojas','Doctorado',1), ('9012','Jesús','Loyo','Quijada','Maestría',4), ('9876','<NAME>','Abreu','Hernández','Maestría',4); INSERT INTO `proyecto_investigacion` VALUES (1,'Identificación de las variaciones control de tráfico en una zona poblada',2), (2,'El efecto de las variaciones en la estadística compleja',5), (3,'Problema de coloreado de gráficas',1), (4,'Coloración de grafos robustos',1), (5,'Navegación por visión en un entorno con obstáculos',2), (6,'Inteligencia artificial aplicada a sistemas',3), (7,'Desarrollo de nuevos sistemas de producción de software',3), (8,'La seguridad en el diseño de sistemas de información',2), (9,'Controles modernos de producción en entornos de riesgo',5); INSERT INTO `profesor_proyecto_investigacion` VALUES (1,'Participante','1234',1), (2,'Responsable','6789',1), (3,'Participante','5678',1), (4,'Participante','9876',1), (5,'Participante','4567',2), (6,'Responsable','9876',2), (7,'Participante','9012',2), (8,'Participante','8901',2), (9,'Participante','3456',3), (10,'Responsable','8901',3), (11,'Participante','9876',3), (12,'Participante','1234',3), (13,'Participante','1234',4), (14,'Responsable','3456',4), (15,'Participante','8901',4), (16,'Participante','6789',4), (17,'Participante','6789',5), (18,'Responsable','4567',5), (19,'Participante','7890',5), (20,'Participante','8901',5), (21,'Participante','1234',6), (22,'Responsable','7890',6), (23,'Participante','3456',6), (24,'Participante','2345',6), (25,'Participante','1234',7), (26,'Responsable','2345',7), (27,'Participante','7890',7), (28,'Participante','6789',7), (29,'Participante','2345',8), (30,'Responsable','1234',8), (31,'Participante','1234',8), (32,'Participante','7890',8), (33,'Responsable','9012',9), (34,'Participante','9876',9), (35,'Participante','4567',9), (36,'Participante','5678',9);
CREATE DATABASE OnlineStore CREATE TABLE Cities ( CityID INT PRIMARY KEY IDENTITY, [Name] VARCHAR(50) NOT NULL ) CREATE TABLE Customers ( CustomerID INT PRIMARY KEY IDENTITY, [Name] VARCHAR(50) NOT NULL, Birthday DATE, CityID INT FOREIGN KEY REFERENCES Cities(CityID) ) CREATE TABLE Orders ( OrderID INT PRIMARY KEY IDENTITY, CustomerID INT FOREIGN KEY REFERENCES Customers(CustomerID) ) CREATE TABLE ItemTypes ( ItemTypeID INT PRIMARY KEY IDENTITY, [Name] VARCHAR(50) NOT NULL ) CREATE TABLE Items ( ItemID INT PRIMARY KEY IDENTITY, [Name] VARCHAR(50) NOT NULL, ItemTypeID INT FOREIGN KEY REFERENCES ItemTypes(ItemTypeID) ) CREATE TABLE OrderItems ( OrderID INT FOREIGN KEY REFERENCES Orders(OrderID), ItemID INT FOREIGN KEY REFERENCES Items(ItemID), CONSTRAINT PK_OrderItems_CompositeOrderIdItemId PRIMARY KEY(OrderID, ItemID) )
DROP TABLE IF EXISTS "user" CASCADE; DROP TABLE IF EXISTS "category" CASCADE; DROP TABLE IF EXISTS "article" CASCADE;
<filename>db/lol.sql /*==============================================================*/ /* DBMS name: MySQL 5.0 */ /* Created on: 2016/5/24 21:00:26 */ /*==============================================================*/ create database lol default charset utf8; use lol; /*==============================================================*/ /* Table: admin */ /*==============================================================*/ create table admin ( aid int not null auto_increment, aname varchar(100), email varchar(100), password varchar(100), issuper int, addtime datetime, primary key (aid) ); insert into admin values(default,'超级管理员','<EMAIL>','admin',0,now()); /*==============================================================*/ /* Table: collect */ /*==============================================================*/ create table collect ( cid int not null auto_increment, imgname varchar(100), imgpath varchar(100), imginfo vrchar(500), uptime datetime, aid int, primary key (cid) ); /*==============================================================*/ /* Table: strategy */ /*==============================================================*/ create table strategy ( sid int not null auto_increment, stitle varchar(100), content mediumtext, pubdate datetime, author int, primary key (sid) );
CREATE PROCEDURE [dbo].[dnn_AddFolderMapping] @PortalID int, @MappingName nvarchar(50), @FolderProviderType nvarchar(50), @CreatedByUserID int AS BEGIN DECLARE @Priority int SELECT TOP 1 @Priority = Priority + 1 FROM dbo.[dnn_FolderMappings] WHERE [PortalID] = @PortalID ORDER BY Priority DESC INSERT INTO dbo.[dnn_FolderMappings] ( PortalID, MappingName, FolderProviderType, Priority, CreatedByUserID, CreatedOnDate, LastModifiedByUserID, LastModifiedOnDate ) VALUES ( @PortalID, @MappingName, @FolderProviderType, @Priority, @CreatedByUserID, GETDATE(), @CreatedByUserID, GETDATE() ) SELECT SCOPE_IDENTITY() END
<gh_stars>1-10 INSERT INTO memberboard (email,title,content,contentstack,techstack,likecnt) VALUES("<EMAIL>","i'm learning","i'm good thank you","a","a",0); INSERT INTO memberboard (email,title,content,contentstack,techstack,likecnt) VALUES("<EMAIL>"," i'm good at algorythm","i'm from korea","a","a",0); INSERT INTO memberboard (email,title,content,contentstack,techstack,likecnt) VALUES("<EMAIL>","i'm specialist ","i'm backend master","a","a",0); INSERT INTO memberboard (email,title,content,contentstack,techstack,likecnt) VALUES("<EMAIL>","i'm leader ","i'm awsome","a","a",0); INSERT INTO memberboard (email,title,content,contentstack,techstack,likecnt) VALUES("<EMAIL>","full stack master plz invite me"," thank you","a","a",0); INSERT INTO memberboard (email,title,content,contentstack,techstack,likecnt) VALUES("<EMAIL>","front master"," bonjour","a","a",0);
<reponame>mezidia/booking-project USE [Hotels_DB] GO /****** Object: StoredProcedure [dbo].[UpdateRooms] ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <Author,,Name> -- Create date: <Create Date,,> -- Description: <Description,,> -- ============================================= CREATE PROCEDURE [dbo].[UpdateRooms] @RoomID int, @Price int, @RoomNumber int, @TV bit, @RoomType nvarchar(max), @NumberOfBeds int, @Balcony bit, @Sale bit AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; UPDATE [dbo].[Rooms] SET [price_int] = @Price, [roomNumber_int] = @RoomNumber, [TV_bool] = @TV, [roomType_str] = @RoomType, [numberOfBeds_int] = @NumberOfBeds, [balcony_bool] = @Balcony, [sale_bool] = @Sale WHERE [room_id] = @RoomID END
SELECT '%c%' as Chapter, sum(case when ticket.status IN ('new','assigned') then 1 else 0 end) as 'New', sum(case when ticket.status='document_interface' then 1 else 0 end) as 'DocumentInterface', sum(case when ticket.status='interface_development' then 1 else 0 end) as 'Interface Development', sum(case when ticket.status='interface_check' then 1 else 0 end) as 'Interface Check', sum(case when ticket.status='document_routine' then 1 else 0 end) as 'Document Routine', sum(case when ticket.status='full_development' then 1 else 0 end) as 'Full Development', sum(case when ticket.status='peer_review_1' then 1 else 0 end) as 'Peer Review One', sum(case when ticket.status='peer_review_2' then 1 else 0 end) as 'Peer Review Two', sum(case when ticket.status='qa' then 1 else 0 end) as 'QA', sum(case when ticket.status='closed' then 1 else 0 end) as 'Closed', count(id) as Total, ticket.id as _id -- One line comment from engine.ticket inner join engine.ticket_custom on ticket.id = ticket_custom.ticket /* Multi line comment */ where ticket_custom.name='chapter' and ticket_custom.value LIKE '%c%' and type='New material' and milestone='1.1.12' and # another one-liner component NOT LIKE 'internal_engine'