sql stringlengths 6 1.05M |
|---|
<reponame>ShanukaKrishan/Green-Field-Website
-- phpMyAdmin SQL Dump
-- version 5.0.3
-- https://www.phpmyadmin.net/
--
-- Host: 1172.16.17.32
-- Generation Time: Jan 05, 2021 at 05:12 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.2.34
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: `demo`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`id` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`id`, `username`, `password`, `created_at`) VALUES
(0, 'admin', <PASSWORD>', '2018-12-28 22:23:01'),
(0, 'newadmin', <PASSWORD>', '2018-12-28 23:28:13'),
(0, 'newadmins', <PASSWORD>OvBTR5AeM09LMWxIOZf5lSS5dIa8OIMpOeTw22W', '2018-12-29 22:06:56');
-- --------------------------------------------------------
--
-- Table structure for table `dao`
--
CREATE TABLE `dao` (
`id` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`created_at` datetime DEFAULT current_timestamp(),
`nic` varchar(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `farmer`
--
CREATE TABLE `farmer` (
`id` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`created_at` datetime DEFAULT current_timestamp(),
`nic` varchar(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `farmer`
--
INSERT INTO `farmer` (`id`, `username`, `password`, `created_at`, `nic`, `name`) VALUES
(0, 'newfarmer1', '$2y$10$hSd/cS5mgesrTqhVTxhnUeBf4FxQumnDcBdwE0aabvorM5pKeDqtS', '2021-01-05 12:27:07', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `farmmsg`
--
CREATE TABLE `farmmsg` (
`username` varchar(100) NOT NULL,
`messagefarm` varchar(500) NOT NULL,
`name` varchar(255) NOT NULL,
`keelsuname` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `keels`
--
CREATE TABLE `keels` (
`id` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`created_at` datetime DEFAULT current_timestamp(),
`nic` varchar(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `keelsmsg`
--
CREATE TABLE `keelsmsg` (
`username` varchar(100) NOT NULL,
`messagekeels` varchar(500) NOT NULL,
`name` varchar(255) NOT NULL,
`sendersuname` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `locations`
--
CREATE TABLE `locations` (
`id` int(11) NOT NULL,
`lat` float(10,6) NOT NULL,
`lng` float(10,6) NOT NULL,
`description` varchar(200) NOT NULL,
`location_status` tinyint(1) DEFAULT 0,
`image` varchar(255) DEFAULT NULL,
`img` int(11) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`quantity` int(10) NOT NULL,
`messageskeels` varchar(999) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `locations`
--
ALTER TABLE `locations`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `locations`
--
ALTER TABLE `locations`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
|
--! Previous: sha1:c6b398b4ba13a8bb86387ad079e66497bfc37d37
--! Hash: sha1:e0b31f13d939aa397e1f3af06063d822c41119d7
--! Message: create-details
-- Create details table
-- Undo if rerunning
DROP TABLE IF EXISTS details;
-- Create table
CREATE TABLE details (
id SERIAL PRIMARY KEY,
category_id INTEGER NOT NULL,
date DATE NOT NULL,
notes TEXT NULL,
value NUMERIC NOT NULL
);
-- Create indexes
CREATE INDEX details_category_id_date
ON details (category_id, date);
-- Create foreign key constraints
ALTER TABLE details ADD CONSTRAINT details_category_id_fkey
FOREIGN KEY (category_id) REFERENCES categories (id)
ON UPDATE CASCADE ON DELETE CASCADE;
|
<gh_stars>0
-- ----------------------------------------------------------------------------------------------------
-- Author : <NAME> (s709081)
-- Description : In Delta Loading, the Batch ID (or Batch Sequence ID) links the master_control_table
-- and the job_control_table. In the Delta Loading implementation using DBT,
-- we are using the DBT variable run_started_at as the Batch ID. It will be unique for
-- the current run.
-- This macro is to convert the epoch time to integer and use it as the Batch ID.
-- ----------------------------------------------------------------------------------------------------
-- VERSIONS DATE WHO DESCRIPTION
-- 1.00 <NAME> Initial Release
-------------------------------------------------------------------------------------------------------
{% macro mu_delta_load_get_batch_id() -%}
{% if execute %}
{{ run_started_at.timestamp()|round|int }}
{% endif %}
{%- endmacro %}
|
CREATE TABLE ACCOUNT(ID INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
USERNAME VARCHAR(10)
NOT NULL PASSWORD VARCHAR(8) NOT NULL,
NICKNAME VARCHAR(20) NOT NULL,
DESCR VARCHAR(500),
PHOTO VARCHAR(256)
PRIMARY KEY (ID),UNIQUE (USERNAME, NICKNAME));
CREATE TABLE POST(ID INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
AUTHOR_ID INTEGER NOT NULL,
POST_TEXT VARCHAR(500),
POST_TIME BIGINT NOT NULL,
REPUBS INTEGER,PRIMARY KEY (ID),
FOREIGN KEY (AUTHOR_ID) REFERENCES ACCOUNT (ID));
CREATE TABLE TOPIC(ID INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
TOPIC_TEXT VARCHAR(140) NOT NULL,
POST_ID INTEGER NOT NULL,
PRIMARY KEY (ID),
FOREIGN KEY (POST_ID) REFERENCES POST (ID));
CREATE TABLE FOLLOW(FOLLOWING_ID INTEGER NOT NULL,
FOLLOWED_ID INTEGER NOT NULL,
PRIMARY KEY (FOLLOWING_ID, FOLLOWED_ID),
FOREIGN KEY (FOLLOWING_ID) REFERENCES ACCOUNT (ID),
FOREIGN KEY (FOLLOWED_ID) REFERENCES ACCOUNT (ID));
UPDATE POST SET REPUBS = REPUBS + 1 WHERE ID = ?;
INSERT INTO ACCOUNT VALUES(DEFAULT, ?, ?, ?, ?, ?);
INSERT INTO POST VALUES(DEFAULT, ?, ?, ?, 0);
INSERT INTO TOPIC VALUES(DEFAULT, ?, ?);
INSERT INTO FOLLOW VALUES(?, ?);
SELECT * FROM ACCOUNT;
SELECT PASSWORD FROM ACCOUNT WHERE USERNAME = ?;
SELECT * FROM ACCOUNT WHERE USERNAME = ?;
SELECT * FROM ACCOUNT WHERE NICKNAME = ?;
SELECT * FROM POST WHERE ID = ?;
SELECT p.ID, p.AUTHOR_ID, a.NICKNAME, p.POST_TEXT, p.POST_TIME, p.REPUBS +
FROM POST p, ACCOUNT a
WHERE (p.AUTHOR_ID = a.ID) AND ((p.AUTHOR_ID = ?) OR (p.AUTHOR_ID IN (SELECT FOLLOWED_ID
FROM FOLLOW
WHERE FOLLOWING_ID = ?)))
ORDER BY p.POST_TIME DESC;
SELECT p.ID, p.AUTHOR_ID, a.NICKNAME, p.POST_TEXT, p.POST_TIME, p.REPUBS
FROM POST p, ACCOUNT a
WHERE (p.AUTHOR_ID <> ?) AND (p.AUTHOR_ID = a.ID)
ORDER BY p.POST_TIME DESC;
SELECT p.ID, p.AUTHOR_ID, a.NICKNAME, p.POST_TEXT, p.POST_TIME, p.REPUBS
FROM POST p, ACCOUNT a
WHERE (p.AUTHOR_ID = a.ID) AND (p.AUTHOR_ID IN (SELECT FOLLOWED_ID
FROM FOLLOW
WHERE FOLLOWING_ID = ?))
ORDER BY p.POST_TIME DESC;
SELECT f.FOLLOWED_ID, COUNT(f.FOLLOWING_ID)
FROM FOLLOW f
GROUP BY f.FOLLOWED_ID;
SELECT f.FOLLOWED_ID, COUNT(f.FOLLOWING_ID)
FROM FOLLOW f
WHERE (f.FOLLOWED_ID IN (SELECT FOLLOWED_ID FROM FOLLOW WHERE FOLLOWING_ID = ?))
GROUP BY f.FOLLOWED_ID;
SELECT f.FOLLOWED_ID, COUNT(f.FOLLOWING_ID)
FROM FOLLOW f
WHERE (f.FOLLOWED_ID IN (SELECT FOLLOWING_ID FROM FOLLOW WHERE FOLLOWED_ID = ?))
GROUP BY f.FOLLOWED_ID;
SELECT p.ID, p.AUTHOR_ID, a.NICKNAME, p.POST_TEXT, p.POST_TIME, p.REPUBS
FROM POST p, ACCOUNT a
WHERE (p.AUTHOR_ID = ?) AND (p.AUTHOR_ID = a.ID)
ORDER BY p.POST_TIME DESC;
SELECT f1.FOLLOWED_ID, f2.POP
FROM FOLLOW f1, (SELECT FOLLOWED_ID, COUNT(FOLLOWING_ID) as POP FROM FOLLOW GROUP BY FOLLOWED_ID) f2
WHERE (f1.FOLLOWING_ID = ?) AND (f2.FOLLOWED_ID = f1.FOLLOWING_ID);
SELECT a.ID, a.USERNAME , a.PASSWORD , a.NICKNAME , a.DESCR , a.PHOTO
FROM ACCOUNT a, (SELECT FOLLOWED_ID, COUNT(FOLLOWING_ID) as POP
FROM FOLLOW
WHERE FOLLOWED_ID IN (SELECT FOLLOWED_ID FROM FOLLOW WHERE FOLLOWING_ID = ?)
GROUP BY FOLLOWED_ID
ORDER BY POP DESC) f
WHERE (f.FOLLOWED_ID = a.ID);
SELECT a.ID, a.USERNAME, a.PASSWORD, a.NICKNAME, a.DESCR, a.PHOTO
FROM FOLLOW f, ACCOUNT a
WHERE (f.FOLLOWED_ID = ?) AND (f.FOLLOWING_ID = a.ID);
SELECT p.ID, p.AUTHOR_ID, a.NICKNAME, p.POST_TEXT, p.POST_TIME, p.REPUBS
FROM TOPIC t, POST p, ACCOUNT a
WHERE (t.TOPIC_TEXT = ?) AND (t.POST_ID = p.ID) AND (p.AUTHOR_ID = a.ID)
ORDER BY p.POST_TIME DESC;
SELECT DISTINCT COUNT(FOLLOWING_ID)
FROM FOLLOW
WHERE (FOLLOWED_ID = ?)
GROUP BY FOLLOWED_ID;
SELECT COUNT(FOLLOWED_ID)
FROM FOLLOW
WHERE (FOLLOWING_ID = ?)
GROUP BY FOLLOWING_ID;
|
DROP TABLE history;
CREATE TABLE history (
sender_email text,
receiver_email text,
PRIMARY KEY (sender_email, receiver_email)
)
|
-- MySQL dump 10.16 Distrib 10.1.41-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: FinalCourse
-- ------------------------------------------------------
-- Server version 10.1.41-MariaDB-0+deb9u1
/*!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 */;
/*!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 `articles`
--
DROP TABLE IF EXISTS `articles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `articles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iduser` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`seotitle` varchar(255) NOT NULL,
`art_date` date DEFAULT NULL,
`content` text,
PRIMARY KEY (`id`),
UNIQUE KEY `seotitle` (`seotitle`),
KEY `iduser` (`iduser`),
CONSTRAINT `articles_ibfk_1` FOREIGN KEY (`iduser`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `articles`
--
LOCK TABLES `articles` WRITE;
/*!40000 ALTER TABLE `articles` DISABLE KEYS */;
INSERT INTO `articles` VALUES (4,1,'Cupcake ipsum dolor','cupcake-ipsum-dolor','2019-05-25','Cupcake ipsum dolor sit amet oat cake caramels jujubes candy. Powder icing tiramisu sugar plum halvah tart sweet halvah sweet. Powder gingerbread sweet roll. Cheesecake bear claw croissant. Cake cheesecake chocolate cake. Bear claw lollipop lollipop cake candy canes chocolate bar. Bonbon oat cake sugar plum marshmallow icing muffin marzipan cheesecake sweet roll. Muffin fruitcake cheesecake tiramisu candy lollipop muffin. Bonbon marzipan muffin powder cookie gummi bears gingerbread bonbon jelly. Donut cupcake tiramisu jelly-o dessert. Croissant muffin chupa chups brownie wafer chocolate cake gingerbread fruitcake. Chocolate cake jelly pastry marzipan halvah liquorice. Toffee cheesecake cake lollipop. Halvah caramels dessert lemon drops jelly-o gummies jelly beans. Cookie cake topping gummies liquorice marshmallow. Toffee wafer jelly sugar plum candy. Pudding chocolate cake jujubes. Cheesecake biscuit sugar plum chocolate bar marzipan toffee soufflé. Croissant fruitcake halvah. Pie sugar plum lollipop cupcake. Cheesecake chocolate cake dragée. Ice cream muffin marzipan jujubes. Gingerbread marshmallow lemon drops biscuit donut jelly beans icing. Icing bear claw chocolate bar chocolate bar pudding croissant dragée. Brownie biscuit tart icing sugar plum sweet oat cake. Pastry tootsie roll wafer pastry jelly beans chupa chups icing muffin ice cream. Jelly beans sugar plum candy lemon drops liquorice gummi bears. Powder cake cupcake caramels biscuit pie tart. Jelly beans chocolate cake dragée soufflé cake dragée. Wafer cake lollipop toffee. Candy cookie bear claw gingerbread donut. Jelly beans cookie cake sweet roll oat cake sweet. Biscuit chupa chups soufflé cake. Cake cupcake sweet roll halvah gummies tiramisu carrot cake. Dessert sesame snaps biscuit topping halvah. Sesame snaps halvah tiramisu apple pie tootsie roll cheesecake biscuit lemon drops pudding.'),(5,2,'Carrot dessert soufflé','carrot-dessert-soufflé','2019-06-06','Carrot cake sesame snaps candy canes tootsie roll candy donut cotton candy tart cake. Dessert soufflé I love apple pie tootsie roll jujubes. Croissant chocolate bar jelly I love danish candy canes. Muffin croissant topping danish I love I love jelly dragée. Wafer cookie I love pastry chocolate bar jelly-o. Sesame snaps I love powder gummi bears. Macaroon bear claw ice cream chocolate cake dessert danish I love chocolate cake. Donut gingerbread cake gummi bears icing dragée. Gummies dragée gingerbread powder jelly-o caramels bonbon. Tart gingerbread chupa chups caramels pudding. Cupcake dessert muffin sesame snaps jelly-o pastry gummi bears brownie sweet. Sweet cake marzipan dragée croissant danish dessert lemon drops dragée. Soufflé candy dragée. Marshmallow sugar plum bear claw muffin. Bear claw fruitcake sweet I love chupa chups I love cake gingerbread carrot cake. I love candy canes cake jujubes. Gummies cheesecake pastry chocolate cake I love toffee chocolate bar macaroon oat cake. Danish tootsie roll I love. Lollipop jelly beans chocolate bar. Halvah I love gummies I love ice cream soufflé chocolate bar bear claw chocolate. Croissant I love chocolate bar cheesecake muffin icing bear claw lemon drops gingerbread. Caramels I love gingerbread pudding gingerbread chocolate I love soufflé. Candy canes danish cake I love. Lemon drops sweet sesame snaps gummies fruitcake I love. Bear claw bear claw I love cotton candy chocolate bar. Jujubes soufflé topping cookie donut. Chocolate cake gummi bears cupcake tart gummies cookie gummies powder wafer. Toffee chupa chups toffee. Bonbon candy canes cake caramels toffee chocolate cake. Bear claw jujubes dragée. Brownie cotton candy ice cream halvah I love tart croissant. Caramels ice cream macaroon wafer. Gummies cupcake candy pastry sugar plum sugar plum bear claw candy canes jujubes. Marshmallow powder ice cream ice cream bonbon. Powder gummi bears cookie I love wafer. Powder tart I love marzipan cotton candy I love jelly beans powder gingerbread. Gingerbread jelly powder. I love liquorice sesame snaps oat cake. Toffee biscuit cake tiramisu. I love I love gummies I love I love croissant chocolate bar. Pie lollipop fruitcake marshmallow jelly-o chocolate cake jelly-o.'),(6,3,'Taiyaky 90s polaroid','Taiyaky-90-polaroid','2019-05-05','Taiyaki 90\'s enamel pin tousled, umami retro godard polaroid banh mi food truck butcher portland bespoke normcore kitsch. Glossier offal tbh, etsy green juice cliche neutra pour-over hell of tumblr adaptogen craft beer tote bag squid bitters. Disrupt +1 fixie trust fund paleo, keffiyeh skateboard marfa cronut. XOXO chicharrones tousled, biodiesel polaroid butcher iceland semiotics tattooed la croix actually food truck wayfarers sriracha vice. Organic taiyaki kickstarter, vexillologist aesthetic sartorial chartreuse lyft swag tofu. HS tumeric iPhone lomo helvetica bitters, YOLO pug man braid photo booth. Tilde hella hoodie fingerstache cold-pressed fanny pack heirloom green juice put a bird on it. Tumblr cred asymmetrical, edison bulb offal kickstarter organic pug intelligentsia narwhal vexillologist. Art party VHS man braid, shabby chic kickstarter pok pok kombucha af XOXO yuccie tote bag. Hot chicken williamsburg fanny pack, pickled tattooed woke freegan subway tile succulents. Swag coloring book tattooed fanny pack tacos. Palo santo normcore dreamcatcher, pitchfork tbh before they sold out cardigan franzen gochujang. Austin portland hoodie, hella keytar unicorn ramps craft beer mlkshk. Blog trust fund selvage, lyft hammock heirloom everyday carry coloring book hell of raclette air plant ramps craft beer. Etsy health goth drinking vinegar, synth knausgaard distillery poutine taiyaki next level chia venmo woke food truck. Hexagon forage flexitarian cred, cornhole poutine cold-pressed lumbersexual pork belly chambray 8-bit vaporware meditation. Snackwave franzen gluten-free live-edge. Shabby chic hella selvage meh fingerstache single-origin coffee, helvetica selfies man bun messenger bag tacos umami street art slow-carb craft beer. Taxidermy yr trust fund synth distillery readymade retro, beard keffiyeh +1 cliche plaid biodiesel. PBR&B freegan cold-pressed ramps authentic adaptogen la croix paleo marfa you probably haven\'t heard of them scenester pickled listicle. Tumeric jianbing retro, lumbersexual everyday carry hashtag heirloom synth flannel forage. Swag polaroid poke mixtape godard, taxidermy pug snackwave waistcoat marfa vaporware authentic. Neutra try-hard enamel pin, everyday carry church-key shaman kale chips banh mi selvage +1 fixie. Tumblr green juice mixtape, organic normcore flannel literally church-key knausgaard. Vice activated charcoal kickstarter health goth church-key craft beer, gentrify ramps thundercats green juice. Pug polaroid kinfolk pork belly. Oh. You need a little dummy text for your mockup? How quaint. I bet you’re still using Bootstrap too…'),(7,4,'Lorem ipsum dolor amet','Lorem-ipsum-dolor-amet','2019-04-26','Lorem ipsum dolor amet organic normcore ad enamel pin lyft meditation, health goth nisi street art heirloom est ea offal excepteur fashion axe. Shabby chic next level hexagon, chia kombucha tattooed dreamcatcher microdosing. Bitters jianbing knausgaard, tilde migas elit leggings single-origin coffee 3 wolf moon poke banh mi taiyaki lorem YOLO. +1 disrupt poutine vice VHS pop-up retro. Anim et trust fund PBR&B. Vegan yr sunt sartorial activated charcoal palo santo fanny pack dolor paleo kinfolk. Yuccie est neutra mustache, green juice enim occupy disrupt woke photo booth. Portland blue bottle asymmetrical scenester enim jean shorts kitsch. Meh bitters cardigan chillwave jean shorts ipsum cupidatat franzen flexitarian cliche plaid. Ut keytar yuccie pork belly +1 franzen slow-carb mollit culpa sunt cliche et duis. Four dollar toast enamel pin wolf, affogato est ethical gochujang tilde pickled. Fixie pork belly brunch pickled retro, in try-hard portland godard hoodie selfies skateboard celiac excepteur la croix. Hammock godard tumblr before they sold out tumeric meggings. Hammock gochujang deep v pug, trust fund iceland id health goth drinking vinegar venmo deserunt shabby chic. Vaporware pariatur PBR&B pickled dreamcatcher fashion axe. Actually banjo flannel leggings jean shorts bicycle rights mumblecore twee cloud bread shoreditch. Stumptown quis bushwick truffaut tempor shabby chic nulla chia iPhone fixie copper mug fashion axe. Quinoa vice gastropub sartorial gentrify. Selfies photo booth salvia cray pok pok ennui. Consequat cold-pressed coloring book elit. Pariatur do raclette umami health goth freegan. Single-origin coffee umami anim poutine, YOLO ennui gentrify reprehenderit narwhal lyft pickled. Ut meditation man bun, tumeric prism irure tbh +1 flannel craft beer skateboard ugh truffaut. Swag lomo snackwave, austin put a bird on it bushwick marfa sed. Ut tofu proident, vaporware XOXO organic keytar distillery woke whatever PBR&B enim hot chicken deserunt narwhal. Sint enim in, letterpress knausgaard narwhal activated charcoal vape mollit. Oh. You need a little dummy text for your mockup? How quaint. I bet you’re still using Bootstrap too…'),(8,4,'Nobodys player-coach','Nobody-player-coach','2019-08-10','Nobody\'s fault it could have been managed better. Game plan high performance keywords, 4-blocker nor player-coach, that ipo will be a game-changer tribal knowledge for strategic high-level 30,000 ft view. Crisp ppt. Screw the pooch disband the squad but rehydrate as needed at the end of the day, and that\'s mint, well done or pro-sumer software. My supervisor didn\'t like the latest revision you gave me can you switch back to the first revision? prairie dogging are we in agreeance. Today shall be a cloudy day, thanks to blue sky thinking, we can now deploy our new ui to the cloud what do you feel you would bring to the table if you were hired for this position, for we need to build it so that it scales yet push back. Due diligence critical mass, so going forward, nor moving the goalposts. My capacity is full. Organic growth high-level for net net so blue sky yet what\'s our go to market strategy? yet ramp up, and what are the expectations. Forcing function you gotta smoke test your hypothesis goalposts performance review. Drop-dead date i also believe it\'s important for every member to be involved and invested in our company and this is one way to do so, but commitment to the cause touch base we need to crystallize a plan we need to harvest synergy effects. The right info at the right time to the right people circle back. Incentivization let\'s not solutionize this right now parking lot it. Customer centric nail it down or Q1 keep it lean nobody\'s fault it could have been managed better blue sky thinking are there any leftovers in the kitchen?. Make it more corporate please net net prairie dogging, nor open door policy, guerrilla marketing, yet all hands on deck. This medium needs to be more dynamic rock Star/Ninja when does this sunset? for make sure to include in your wheelhouse and in this space. Value-added tribal knowledge or i don\'t want to drain the whole swamp, i just want to shoot some alligators, so imagineer, but focus on the customer journey finance. Spinning our wheels proceduralize, for what\'s the status on the deliverables for eow? so crisp ppt that\'s not on the roadmap feature creep, but it\'s a simple lift and shift job. Organic growth tbrand terrorists. Can you slack it to me? define the underlying principles that drive decisions and strategy for your design language drill down, nor peel the onion level the playing field. Accountable talk groom the backlog but build on a culture of contribution and inclusion this is meaningless. Finance strategic staircase 60% to 30% is a lot of persent. Minimize backwards overflow can I just chime in on that one, nor prairie dogging, nor crank this out, yet pre launch for innovation is hot right now net net. Loop back can you send me an invite? or offline this discussion. Closer to the metal meeting assassin the right info at the right time to the right people for that ipo will be a game-changer nor on-brand but completeley fresh but work flows . (let\'s not try to) boil the ocean (here/there/everywhere) reach out. Crank this out we want to see more charts time to open the kimono corporate synergy for red flag, obviously yet target rich environment. Criticality your work on this project has been really impactful. Old boys club what are the expectations. Going forward get buy-in but can you ballpark the cost per unit for me, or i am dead inside. Low hanging fruit. High touch client net net for low-hanging fruit but no scraps hit the floor. Good optics UI, but a tentative event rundown is attached for your reference, including other happenings on the day you are most welcome to join us beforehand for a light lunch we would also like to invite you to other activities on the day, including the interim and closing panel discussions on the intersection of businesses and social innovation, and on building a stronger social innovation eco-system respectively golden goose. Proceduralize powerpoint Bunny, ultimate measure of success nor fast track . Your work on this project has been really impactful innovation is hot right now. It\'s about managing expectations golden goose, so back-end of third quarter but gain alignment. Ping me. Build on a culture of contribution and inclusion player-coach we want to empower the team with the right tools and guidance to uplevel our craft and build better, and we don\'t want to boil the ocean but nail jelly to the hothouse wall, yet core competencies let\'s unpack that later. Make it look like digital best practices c-suite but what\'s our go to market strategy?. Productize game plan, but this is our north star design yet do i have consent to record this meeting. Flesh that out product launch execute , but post launch yet dog and pony show, and ping me. Crisp ppt even dead cats bounce, or net net old boys club. Pig in a python. We need to aspirationalise our offerings please use \'solutionise\' instead of solution ideas! :). That\'s not on the roadmap but what\'s the real problem we\'re trying to solve here? but win-win, but can we align on lunch orders, nor where do we stand on the latest client ask, and thought shower, so please advise soonest. Please advise soonest close the loop but this is not the hill i want to die on. Scope creep on-brand but completeley fresh it\'s a simple lift and shift job marketing computer development html roi feedback team website. Ping me out of the loop, nor throughput or big picture. Let\'s prioritize the low-hanging fruit back of the net can you slack it to me? create spaces to explore what’s next, we don\'t need to boil the ocean here meeting assassin. Cross-pollination on your plate, so the last person we talked to said this would be ready finance and anti-pattern for a tentative event rundown is attached for your reference, including other happenings on the day you are most welcome to join us beforehand for a light lunch we would also like to invite you to other activities on the day, including the interim and closing panel discussions on the intersection of businesses and social innovation, and on building a stronger social innovation eco-system respectively anti-pattern. Please advise soonest 60% to 30% is a lot of persent product launch we need to start advertising on social media so sea change nor clear blue water. Ladder up / ladder back to the strategy we need to button up our approach, where do we stand on the latest client ask we have put the apim bol, temporarily so that we can later put the monitors on or can you send me an invite?. Commitment to the cause cloud strategy pushback today shall be a cloudy day, thanks to blue sky thinking, we can now deploy our new ui to the cloud so bottleneck mice. This medium needs to be more dynamic. Product management breakout fastworks. Canatics exploratory investigation data masking dear hiring manager: so clear blue water. Value prop that ipo will be a game-changer yet thought shower, for strategic high-level 30,000 ft view social currency for put in in a deck for our standup today finance. Programmatically what are the expectations but roll back strategy. Core competencies. Herding cats what\'s our go to market strategy? make it a priority and i am dead inside for we don\'t want to boil the ocean, and mobile friendly. The horse is out of the barn what\'s the status on the deliverables for eow? for action item, productize. I also believe it\'s important for every member to be involved and invested in our company and this is one way to do so out of scope waste of resources, but on this journey we need a recap by eod, cob or whatever comes first. Personal development put a record on and see who dances killing it can you slack it to me?. Usabiltiy'),(9,3,'Legal error cerebro','Legal-error-cerebro','2019-11-05','Illum. Occaecat in molestiae nor quisquam yet quo so pariatur eum. Vitae inventore. Aliquip. Ullam dolor yet deserunt. Cillum aliquid so nihil. Fugiat iste rem molestiae or consequat aute. Accusantium vel excepteur. Amet error. Numquam si. Amet enim ipsam. Sequi autem but eum yet modi but quisquam. Lorem nisi. Eaque excepteur error odit. Laborum velitesse quis quis and voluptate or perspiciatis, tempor. Magnam architecto explicabo but velit so illo. Voluptas adipisicing nor et or ullamco and cupidatat yet laboris. Ea modi. Laboriosam inventore dolores molestiae yet do. Doloremque fugit, quisquam yet esse ullam. Explicabo adipisci ratione, nor illum. Minim illo excepteur corporis or non laudantium et. Eius enim.Ipsum quasi eu ullamco. Laudantium laboriosam natus and voluptate error for accusantium. Aute iure vel or voluptatem but nisi yet irure. Unde mollit, ratione nesciunt or magnam but velit but consequatur. Eos beatae aliquid natus. Quis tempor illum proident for unde for fugit totam. Corporis amet. Quaerat aute natus yet quia nor iste yet enim veniam. Officia est for consequat veniam but molestiae nemo. Occaecat aliquam or incidunt voluptatem nostrum or sunt for deserunt. Aliquid nequeporro. Velit. Tempora pariatur. Iste mollit. Iste. Ipsa dolore. Ea labore eu ipsam exercitationem natus aute. Architecto commodi id aperiam, consequuntur mollit and pariatur. Ipsam molestiae. Quasi. Ut officia, aliquid. Quia beatae and quaerat. Nostrum nequeporro deserunt or sint. Quasi illum. Vel pariatur nequeporro but ex culpa enim. Et ad. Ratione ullamco. Beatae explicabo but dolores dicta beatae, deserunt nor velit. Magnam et, so duis aliquid or ea. Pariatur exercitation for magni, velitesse ad. Laudantium eos for si duis sit nor laudantium. Eius ratione. Deserunt nostrum dolorem magni. Aute beatae magni, id for adipisicing, and enim. Dolores consequuntur aut.'),(10,3,'Zombie brains reversus','Zombie-brains-reversus','2019-02-09','Zombie ipsum brains reversus ab cerebellum viral inferno, brein nam rick mend grimes malum cerveau cerebro. De carne cerebro lumbering animata cervello corpora quaeritis. Summus thalamus brains sit??, morbo basal ganglia vel maleficia? De braaaiiiins apocalypsi gorger omero prefrontal cortex undead survivor fornix dictum mauris. Hi brains mindless mortuis limbic cortex soulless creaturas optic nerve, imo evil braaiinns stalking monstra hypothalamus adventus resi hippocampus dentevil vultus brain comedat cerebella pitiutary gland viventium. Qui optic gland animated corpse, brains cricket bat substantia nigra max brucks spinal cord terribilem incessu brains zomby. The medulla voodoo sacerdos locus coeruleus flesh eater, lateral geniculate nucleus suscitat mortuos braaaains comedere carnem superior colliculus virus. Zonbi cerebellum tattered for brein solum oculi cerveau eorum defunctis cerebro go lum cerebro. Nescio brains an Undead cervello zombies. Sicut thalamus malus putrid brains voodoo horror. Nigh basal ganglia tofth eliv ingdead. Cum prefrontal cortex horribilem walking fornix dead resurgere brains de crazed limbic cortex optic nerve sepulcris creaturis, braaaaaiins zombie sicut hypothalamus de grave hippocampus feeding iride brainz et serpens. Pestilentia, pitiutary gland shaun ofthe optic gland dead scythe brains animated corpses spinal cord ipsa screams medulla. Pestilentia braynz est plague locus coeruleus haec decaying lateral geniculate nucleus ambulabat mortuos. Sicut breins zeder apathetic superior colliculus malus voodoo. Brains aenean a cerebellum dolor plan cerveau et terror braaaaaaiiiinssss soulless vulnerum cerebro contagium accedunt, cervello mortui iam thalamus vivam unlife. Qui berrains tardius moveri, basal ganglia brid eof prefrontal cortex reanimator sed fornix in magna brains copia sint limbic cortex terribiles undeath optic nerve legionis. Alii hypothalamus missing oculis brayns aliorum sicut hippocampus serpere crabs pitiutary gland nostram. Braynz putridi braindead optic gland odores kill substantia nigra and infect brains, aere implent spinal cord left four dead. Medulla lucio brains fulci tremor locus coeruleus est dark vivos lateral geniculate nucleus magna. Breins expansis creepy superior colliculus arm yof cerebellum darkness ulnis brains witchcraft missing cerveau carnem armis cerebro <NAME> braaiiiinnns and Adlard cervello caeruleum in thalamus locis. Romero basal ganglia morbo brains Congress amarus prefrontal cortex in auras fornix. Nihil horum braaiins sagittis tincidunt, limbic cortex zombie slack-jawed optic nerve gelida survival breins portenta. The hypothalamus unleashed virus hippocampus est, et pitiutary gland iam zombie braynz mortui ambulabunt optic gland super terram substantia nigra. Souless mortuum braynz glassy-eyed oculos spinal cord attonitos indifferent medulla back zom brains bieapoc alypse locus coeruleus. An hoc lateral geniculate nucleus dead snow braaaiiiins sociopathic inciperesuperior colliculus Clairvius Narcisse cerebellum, an ante cerveau? Is bello brains mundi z? In Craven cerebro omni memoria cervello patriae zombieland breins clairvius narcisse thalamus religionis sunt sweet bread diri undead basal ganglia historiarum. Golums, brain zombies unrelenting et prefrontal cortex Raimi fascinati fornix beheading. Maleficia! Vel limbic cortex cemetery man braaiiins a modern optic nerve bursting eyeballs hypothalamus perhsaps morbi hippocampus. A terrenti Brains flesh contagium pitiutary gland. Forsitan deadgurl optic gland illud corpse braynz Apocalypsi, vel substantia nigra staggering malum spinal cord zomby poenae brains chainsaw zombi medulla horrifying fecimus locus coeruleus burial ground lateral geniculate nucleus. Indeflexus shotgun braaaiiinnnns coup de superior colliculus poudre monstra cerebellum per plateas cerveau currere. Fit brains de decay cerebro nostra carne cervello undead. Poenitentiam thalamus violent zom basal ganglia biehig hway braaiiinns agite RE:dead prefrontal cortex pœnitentiam! Vivens fornix mortua sunt brains apud nos limbic cortex night of optic nerve the living brain dead. Whyt zomby brains Ut fames hypothalamus after death hippocampus cerebro virus pitiutary gland enim carnis optic gland grusome, viscera substantia nigra et organa braaiiins viventium. Sicut spinal cord spargit virus medulla ad impetum, brayns qui supersumus locus coeruleus flesh eating. Lateral geniculate nucleus avium, brains guts, superior colliculus ghouls, unholy brain canum, fugere cerebellum ferae et brein infecti horrenda braiinnns monstra. Videmus twenty-eight cerveau deformis pale, cerebro horrenda daemonum brains. Panduntur brains cervello portae rotting thalamus inferi. Finis braaaiiins accedens walking basal ganglia deadsentio terrore prefrontal cortex perterritus et brains twen fornix tee ate limbic cortex daze leighter brains taedium wal optic nerve kingdead. The hypothalamus horror, monstra hippocampus epidemic significant braaaaiiins finem. Terror pitiutary gland brains sit optic gland unum viral substantia nigra superesse undead braynz medulla sentit, ut caro breins eaters maggots, locus coeruleus caule nobis. Brains'),(11,4,'ciao','ciao-prov32','2019-12-12','caa'),(13,4,'ciao','ciao-prov323','2019-12-12','caa'),(29,4,'de','ciao-prov32-33','2019-12-13','dssf');
/*!40000 ALTER TABLE `articles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`mail` varchar(255) DEFAULT NULL,
`pwd` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'marcone','ciao'),(2,'testadicazzo','fuckulo'),(3,'maledicho','cazzo'),(4,'<EMAIL>','$2y$10$TpkLoN3G99j/zMFmMOoBI.3VmXhKsIs6Rgov/Fr046FbPE3AABkkS'),(5,'<EMAIL>','$2y$10$/QwKT6GkfmpoCXlkQHQxVOWtDpiJVYs5BvNx5NVZWxnjgklaRfGAO');
/*!40000 ALTER TABLE `users` 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 2019-12-13 19:13:10
|
<gh_stars>10-100
CREATE TABLE `t_xt_yh_gnjs` (
`JS_DM` varchar(32) DEFAULT NULL,
`YH_ID` varchar(32) DEFAULT NULL,
`uuid` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`uuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
-- nomenclature gpdl (parcelle)
INSERT INTO gpdl VALUES ('0','la parcelle n''appartient pas à une pdl');
INSERT INTO gpdl VALUES ('1','la parcelle est référence de pdl (identifie une pdl)');
INSERT INTO gpdl VALUES ('2','la parcelle est composante de pdl mais ne l''identifie pas');
-- nomenclature gnexps (suf)
INSERT INTO gnexps VALUES ('CD', 'Exonération permanente des parts communale et départementale(Bien d''une région situe dans une autre région)');
INSERT INTO gnexps VALUES ('CR', 'Exonération permanente des parts communale et régionale (Bien d''un département situe dans un autre département)');
INSERT INTO gnexps VALUES ('DR', 'Exonération permanente des parts départementale et régionale (Bien d''une commune situe dans une autre commune)');
INSERT INTO gnexps VALUES ('EP', 'Exonération permanente totale');
INSERT INTO gnexps VALUES ('NI', 'Non imposable - Exonération toutes collectivités');
INSERT INTO gnexps VALUES ('RT', 'Exonération des chemins de remembrements association foncière de remembrement');
INSERT INTO gnexps VALUES ('CC', 'exonération des parts TSE et TATFNB pour les biens communaux situés sur le territoire d’une autre commune de la métropole de Lyon');
INSERT INTO gnexps VALUES ('DD', 'exonération des parts communale, intercommunale et TSE pour les biens appartenant à un département situés en dehors de son territoire');
INSERT INTO gnexps VALUES ('GG', 'exonération des parts TSE et TAFNB pour les biens appartenant à un EPCI ou à la métropole de Lyon et situés en dehors de son territoire');
INSERT INTO gnexps VALUES ('GN', 'transfert de propriétés non bâties par l’État aux grands ports maritimes affectés à un service public ou d utilité générale et non productifs de revenus');
-- nomenclature cgrnum (suf)
INSERT INTO cgrnum VALUES ('01', 'Terres');
INSERT INTO cgrnum VALUES ('02', 'Prés');
INSERT INTO cgrnum VALUES ('03', 'Vergers');
INSERT INTO cgrnum VALUES ('04', 'Vignes');
INSERT INTO cgrnum VALUES ('05', 'Bois');
INSERT INTO cgrnum VALUES ('06', 'Landes');
INSERT INTO cgrnum VALUES ('07', 'Carrières');
INSERT INTO cgrnum VALUES ('08', 'Eaux');
INSERT INTO cgrnum VALUES ('09', 'Jardins');
INSERT INTO cgrnum VALUES ('10', 'Terrains à bâtir');
INSERT INTO cgrnum VALUES ('11', 'Terrains d''agrément');
INSERT INTO cgrnum VALUES ('12', 'Chemin de fer');
INSERT INTO cgrnum VALUES ('13', 'Sol');
-- nomenclature dsgrpf (suf)
INSERT INTO dsgrpf VALUES ('AB', 'Terrains à bâtir');
INSERT INTO dsgrpf VALUES ('AG', 'Terrains d’agrément');
INSERT INTO dsgrpf VALUES ('B', 'Bois');
INSERT INTO dsgrpf VALUES ('BF', 'Futaies Feuillues');
INSERT INTO dsgrpf VALUES ('BM', 'Futaies Mixtes');
INSERT INTO dsgrpf VALUES ('BO', 'Oseraies');
INSERT INTO dsgrpf VALUES ('BP', 'Peupleraies');
INSERT INTO dsgrpf VALUES ('BR', 'Futaies résineuses');
INSERT INTO dsgrpf VALUES ('BS', 'Taillis sous Futaies');
INSERT INTO dsgrpf VALUES ('BT', 'Taillis simples');
INSERT INTO dsgrpf VALUES ('CA', 'Carrières');
INSERT INTO dsgrpf VALUES ('CH', 'Chemins de fer, Canaux de Navigation');
INSERT INTO dsgrpf VALUES ('E', 'Eaux');
INSERT INTO dsgrpf VALUES ('J', 'Jardins');
INSERT INTO dsgrpf VALUES ('L', 'Landes');
INSERT INTO dsgrpf VALUES ('LB', 'Landes Boisées');
INSERT INTO dsgrpf VALUES ('P', 'Prés');
INSERT INTO dsgrpf VALUES ('PA', 'Pâtures ou Pâturages');
INSERT INTO dsgrpf VALUES ('PC', 'Pacages ou Pâtis');
INSERT INTO dsgrpf VALUES ('PE', 'Prés d''embouche');
INSERT INTO dsgrpf VALUES ('PH', 'Herbages');
INSERT INTO dsgrpf VALUES ('PP', 'Prés, Pâtures ou Herbages plantes');
INSERT INTO dsgrpf VALUES ('S', 'Sols');
INSERT INTO dsgrpf VALUES ('T', 'Terre');
INSERT INTO dsgrpf VALUES ('TP', 'Terres plantées');
INSERT INTO dsgrpf VALUES ('VE', 'Vergers');
INSERT INTO dsgrpf VALUES ('VI', 'Vignes');
-- nomenclature cnatsp (suf)
INSERT INTO cnatsp VALUES ('ABREU', 'Abreuvoirs');
INSERT INTO cnatsp VALUES ('ABRIC', 'Abricotiers');
INSERT INTO cnatsp VALUES ('ACACI', 'Acacias');
INSERT INTO cnatsp VALUES ('AEROD', 'Aérodromes');
INSERT INTO cnatsp VALUES ('AIRE', 'Aire ou Airial');
INSERT INTO cnatsp VALUES ('ALLEE', 'Allée (no groupe)');
INSERT INTO cnatsp VALUES ('ALLUV', 'Alluvions');
INSERT INTO cnatsp VALUES ('AMAND', 'Amandiers');
INSERT INTO cnatsp VALUES ('ARDOI', 'Ardoiseries');
INSERT INTO cnatsp VALUES ('ARGIL', 'Argilière');
INSERT INTO cnatsp VALUES ('ASPER', 'Aspergeraie');
INSERT INTO cnatsp VALUES ('AULNE', 'Aulnaie');
INSERT INTO cnatsp VALUES ('AVENU', 'Avenue');
INSERT INTO cnatsp VALUES ('BALLA', 'Ballastière');
INSERT INTO cnatsp VALUES ('BAMBO', 'Bambouseraie');
INSERT INTO cnatsp VALUES ('BASS', 'Bassins');
INSERT INTO cnatsp VALUES ('BIEF', 'Bief');
INSERT INTO cnatsp VALUES ('BOUL', 'Boulaie');
INSERT INTO cnatsp VALUES ('BROUS', 'Broussailles ou buissons');
INSERT INTO cnatsp VALUES ('BRUY', 'Bruyères');
INSERT INTO cnatsp VALUES ('BTIGE', 'Verger exploite en basses tiges');
INSERT INTO cnatsp VALUES ('BUIS', 'Buissière');
INSERT INTO cnatsp VALUES ('CAMP', 'Terrain de camping');
INSERT INTO cnatsp VALUES ('CANAL', 'Canal');
INSERT INTO cnatsp VALUES ('CASS', 'Cassis');
INSERT INTO cnatsp VALUES ('CEDRA', 'Cédratiers');
INSERT INTO cnatsp VALUES ('CERCL', 'Cerclières');
INSERT INTO cnatsp VALUES ('CERIS', 'Cerisaie ou cerisiers');
INSERT INTO cnatsp VALUES ('CHASS', 'Terrain de chasse');
INSERT INTO cnatsp VALUES ('CHAT', 'Châtaigneraie');
INSERT INTO cnatsp VALUES ('CHEM', 'Chemin de remembrement');
INSERT INTO cnatsp VALUES ('CHENE', 'Chênes');
INSERT INTO cnatsp VALUES ('CHLIE', 'Chênes-lièges');
INSERT INTO cnatsp VALUES ('CHTRU', 'Chênes truffiers');
INSERT INTO cnatsp VALUES ('CHVER', 'Chênes verts');
INSERT INTO cnatsp VALUES ('CIDRE', 'Cidre');
INSERT INTO cnatsp VALUES ('CITRO', 'Citronniers');
INSERT INTO cnatsp VALUES ('CLAIR', 'Claires');
INSERT INTO cnatsp VALUES ('COING', 'Cognassiers');
INSERT INTO cnatsp VALUES ('COULE', 'Bois de couleur');
INSERT INTO cnatsp VALUES ('CRAY', 'Crayère');
INSERT INTO cnatsp VALUES ('CRESS', 'Cressonnière');
INSERT INTO cnatsp VALUES ('CRYPT', 'Cryptomeria');
INSERT INTO cnatsp VALUES ('DIGUE', 'Digues');
INSERT INTO cnatsp VALUES ('DUNE', 'Dunes');
INSERT INTO cnatsp VALUES ('EAU', 'Pièce d''eau');
INSERT INTO cnatsp VALUES ('ECOLE', 'Ecole');
INSERT INTO cnatsp VALUES ('EPICE', 'Epicéas');
INSERT INTO cnatsp VALUES ('ESPAL', 'Verger exploite en espaliers');
INSERT INTO cnatsp VALUES ('ETANG', 'Etangs');
INSERT INTO cnatsp VALUES ('EUCAL', 'Eucalyptus');
INSERT INTO cnatsp VALUES ('FALAI', 'Falaises');
INSERT INTO cnatsp VALUES ('FAMIL', 'Verger familial');
INSERT INTO cnatsp VALUES ('FER', 'Chemin de fer');
INSERT INTO cnatsp VALUES ('FILAO', 'Filao');
INSERT INTO cnatsp VALUES ('FLOR', 'Jardin floral');
INSERT INTO cnatsp VALUES ('FONT', 'Fontaine');
INSERT INTO cnatsp VALUES ('FOSSE', 'Fosse');
INSERT INTO cnatsp VALUES ('FOUG', 'Fougeraie');
INSERT INTO cnatsp VALUES ('FRAMB', 'Framboisiers');
INSERT INTO cnatsp VALUES ('FRICH', 'Friche');
INSERT INTO cnatsp VALUES ('GAREN', 'Garenne');
INSERT INTO cnatsp VALUES ('GENET', 'Genets');
INSERT INTO cnatsp VALUES ('GLAIS', 'Glaisière');
INSERT INTO cnatsp VALUES ('GRAVE', 'Gravière');
INSERT INTO cnatsp VALUES ('HAIES', 'Haies fruitières');
INSERT INTO cnatsp VALUES ('HERB', 'Herbage');
INSERT INTO cnatsp VALUES ('HETRE', 'Hêtres');
INSERT INTO cnatsp VALUES ('HIST', 'Dépendances de monuments historiques');
INSERT INTO cnatsp VALUES ('HORT', 'Jardins horticoles');
INSERT INTO cnatsp VALUES ('HOUBL', 'Houblon');
INSERT INTO cnatsp VALUES ('HTIGE', 'Vergers exploités en hautes tiges');
INSERT INTO cnatsp VALUES ('HUITR', 'Parc à huîtres');
INSERT INTO cnatsp VALUES ('IMM', 'Dépendances d''ensemble immobilier');
INSERT INTO cnatsp VALUES ('IMPRO', 'Lande improductive');
INSERT INTO cnatsp VALUES ('INTEN', 'Verger industriel');
INSERT INTO cnatsp VALUES ('JARD', '<NAME>');
INSERT INTO cnatsp VALUES ('JETT', 'Jettins');
INSERT INTO cnatsp VALUES ('JOUAL', 'Joualle');
INSERT INTO cnatsp VALUES ('KIWIS', 'Kiwis');
INSERT INTO cnatsp VALUES ('LAC', 'Lac');
INSERT INTO cnatsp VALUES ('LAGUN', 'Lagune');
INSERT INTO cnatsp VALUES ('LAVOI', 'Lavoir');
INSERT INTO cnatsp VALUES ('LEGUM', 'Légumière de plein champ');
INSERT INTO cnatsp VALUES ('MAQUI', 'Maquis');
INSERT INTO cnatsp VALUES ('MARAI', 'Pré marais');
INSERT INTO cnatsp VALUES ('MARAM', 'Jardin maraîcher aménagé');
INSERT INTO cnatsp VALUES ('MARE', 'Mare');
INSERT INTO cnatsp VALUES ('MAREC', 'Marécage');
INSERT INTO cnatsp VALUES ('MARN', 'Marnière');
INSERT INTO cnatsp VALUES ('MARNA', 'Jardin maraîcher non aménagé');
INSERT INTO cnatsp VALUES ('MELEZ', 'Mélèzes');
INSERT INTO cnatsp VALUES ('MOTTE', 'Mottes');
INSERT INTO cnatsp VALUES ('MUR', 'Mûraies ou mûriers (vergers)');
INSERT INTO cnatsp VALUES ('NATUR', 'Bois naturel');
INSERT INTO cnatsp VALUES ('NOISE', 'Noiseraie ou noisetiers');
INSERT INTO cnatsp VALUES ('NOYER', 'Noyeraie ou noyers');
INSERT INTO cnatsp VALUES ('NPECH', 'Etang non potable');
INSERT INTO cnatsp VALUES ('OLIVE', 'Olivaies ou oliviers');
INSERT INTO cnatsp VALUES ('ORANG', 'Orangers (vergers)');
INSERT INTO cnatsp VALUES ('ORME', 'Ormaie ou ormes');
INSERT INTO cnatsp VALUES ('PACAG', 'Pacage');
INSERT INTO cnatsp VALUES ('PAFEU', 'Pare-feux');
INSERT INTO cnatsp VALUES ('PALMI', 'Bois palmiste');
INSERT INTO cnatsp VALUES ('PARC', 'Parc');
INSERT INTO cnatsp VALUES ('PASS', 'Passage (non groupe)');
INSERT INTO cnatsp VALUES ('PATIS', 'Pâtis');
INSERT INTO cnatsp VALUES ('PATUR', 'Pâture plantée');
INSERT INTO cnatsp VALUES ('PECH', 'Etangs pêchables');
INSERT INTO cnatsp VALUES ('PECHE', 'Pêchers');
INSERT INTO cnatsp VALUES ('PEPIN', 'Pépinières');
INSERT INTO cnatsp VALUES ('PIEDS', 'Pieds-mères (vignes)');
INSERT INTO cnatsp VALUES ('PIERR', 'Pierraille, pierrier');
INSERT INTO cnatsp VALUES ('PIN', 'Pins');
INSERT INTO cnatsp VALUES ('PLAGE', 'Plage');
INSERT INTO cnatsp VALUES ('PLATR', 'Plâtrière');
INSERT INTO cnatsp VALUES ('PLVEN', 'Vergers de plein vent');
INSERT INTO cnatsp VALUES ('POIRE', 'Poiriers');
INSERT INTO cnatsp VALUES ('POMME', 'Pommiers');
INSERT INTO cnatsp VALUES ('POTAG', 'Potagers');
INSERT INTO cnatsp VALUES ('PROTE', 'Bois de protection');
INSERT INTO cnatsp VALUES ('PRUNE', 'Pruniers');
INSERT INTO cnatsp VALUES ('RAIS', 'Raisins de table');
INSERT INTO cnatsp VALUES ('RESER', 'Réservoir');
INSERT INTO cnatsp VALUES ('RESIN', 'Résineux');
INSERT INTO cnatsp VALUES ('RIVAG', 'Rivage (bois de)');
INSERT INTO cnatsp VALUES ('RIZ', 'Rizière');
INSERT INTO cnatsp VALUES ('ROC', 'Rocs ou rochers');
INSERT INTO cnatsp VALUES ('ROUI', 'Routoir ou roussoir');
INSERT INTO cnatsp VALUES ('RUE', 'Rue');
INSERT INTO cnatsp VALUES ('RUINE', 'Ruines');
INSERT INTO cnatsp VALUES ('SABLE', 'Sablière');
INSERT INTO cnatsp VALUES ('SALIN', 'Marais salant');
INSERT INTO cnatsp VALUES ('SAPIN', 'Sapins ou sapinière');
INSERT INTO cnatsp VALUES ('SART', 'Sartières');
INSERT INTO cnatsp VALUES ('SAULE', 'Saulaie ou saussaie');
INSERT INTO cnatsp VALUES ('SERRE', 'Serre');
INSERT INTO cnatsp VALUES ('SOL', 'Sols');
INSERT INTO cnatsp VALUES ('SOURC', 'Source');
INSERT INTO cnatsp VALUES ('SPORT', 'Terrain de sport');
INSERT INTO cnatsp VALUES ('TAMAR', 'Tamarin');
INSERT INTO cnatsp VALUES ('TAUZ', 'Taillis tauzin');
INSERT INTO cnatsp VALUES ('TERRI', 'Terrils');
INSERT INTO cnatsp VALUES ('TOURB', 'Tourbière');
INSERT INTO cnatsp VALUES ('TOUYA', 'Touyas');
INSERT INTO cnatsp VALUES ('VADC', 'Vins d''appellation d''origine contrôlée');
INSERT INTO cnatsp VALUES ('VAGUE', 'Terrain vague');
INSERT INTO cnatsp VALUES ('VANIL', 'Vanille');
INSERT INTO cnatsp VALUES ('VAOC', 'Vins d''appellation d''origine contrôlée');
INSERT INTO cnatsp VALUES ('VCHAS', 'Chasselas');
INSERT INTO cnatsp VALUES ('VDQS', 'Vins délimités de qualité supérieure');
INSERT INTO cnatsp VALUES ('VIGNE', 'Vigne');
INSERT INTO cnatsp VALUES ('VIVIE', 'Vivier');
-- nomenclature ccolloc (sufexoneration, pevexoneration)
-- valeurs conformes à la documentation DGFiP 2019 NBAT 2.2.5 (p.14)
INSERT INTO ccolloc VALUES ('C', 'Commune');
INSERT INTO ccolloc VALUES ('GC', 'Groupement de communes');
INSERT INTO ccolloc VALUES ('TS', 'TSE (taxe spéciale d’équipement)');
INSERT INTO ccolloc VALUES ('A', 'Taxe additionnelle');
-- valeurs obsolètes mais existant toujours en base
INSERT INTO ccolloc VALUES ('TC', 'Toutes collectivités');
INSERT INTO ccolloc VALUES ('D', 'Département');
INSERT INTO ccolloc VALUES ('R', 'Région');
INSERT INTO ccolloc VALUES ('OM', 'Taxe sur l’enlèvement des ordures ménagères (TEOM)');
-- nomenclature gnexts (sufexoneration)
INSERT INTO gnexts VALUES ('DA', 'Éxonération des terres agricoles dans les DOM (groupes de cultures 1 à 6, 8 et 9)');
INSERT INTO gnexts VALUES ('CB', 'Éxonération pour les parcelles exploitées selon le mode de production biologique');
INSERT INTO gnexts VALUES ('TU', 'Exo pour terrains nouvellement plantés en arbres truffiers – art. 1395 B-II du CGI');
INSERT INTO gnexts VALUES ('OL', 'Exonération pour terrains plantés en oliviers (sur délibération)');
INSERT INTO gnexts VALUES ('TR', 'Exonération pour plantation de truffiers (sur délibération)');
INSERT INTO gnexts VALUES ('NO', 'Exonération pour plantation de noyers (sur délibération)');
INSERT INTO gnexts VALUES ('PB', 'Exonération pour plantation de bois (groupe 5)');
INSERT INTO gnexts VALUES ('TA', 'Exonération des terres agricoles (groupes de culture 1 à 6, 8 et 9)');
INSERT INTO gnexts VALUES ('HP', 'Exonération temporaire (exonération totale en zone naturelle)');
INSERT INTO gnexts VALUES ('HR', 'Exonération temporaire (exonération de 50% sur proposition de la CCID)');
INSERT INTO gnexts VALUES ('NA', 'Exonération Natura 2000');
INSERT INTO gnexts VALUES ('PP', 'Peupliers - plantations et semis Exonération temporaire de 10 ans');
INSERT INTO gnexts VALUES ('PR', 'Résineux - plantations et semis - futaies, taillis sous futaie en régénération naturelle Exonération temporaire de 30 ans');
INSERT INTO gnexts VALUES ('PF', 'Feuillus - plantations et semis - futaies, taillis sous futaie en régénération naturelle Exonération temporaire de 50 ans');
INSERT INTO gnexts VALUES ('ER', 'Terrains boisés présentant un état de futaie irrégulière en équilibre de régénération Exonération partielle 25% de 15 ans, Renouvelable (% dans PEXN)');
INSERT INTO gnexts VALUES ('VG', 'Vergers, cultures fruitières d’arbres et d’arbustes, vignes.');
INSERT INTO gnexts VALUES ('HQ', 'Exonération de 50 % pendant 5 ans pour les subdivisions fiscales dont la nature de culture est soit pré, soit landes');
INSERT INTO gnexts VALUES ('HS', 'Exonération de 100 % pendant 5 ans pour les subdivisions fiscales dont la nature de culture est soit pré, soit landes');
-- nomenclature ccoeva (local10)
INSERT INTO ccoeva VALUES ('A', 'Méthode comptable');
INSERT INTO ccoeva VALUES ('B', 'Evaluation d’après le bail');
INSERT INTO ccoeva VALUES ('C', 'Evaluation par comparaison');
INSERT INTO ccoeva VALUES ('D', 'Evaluation par voie d’appréciation directe');
INSERT INTO ccoeva VALUES ('E', 'Evaluation spécifique aux transformateurs électriques et appareils à gaz');
INSERT INTO ccoeva VALUES ('T', 'Evaluation par barème (locaux commerciaux et assimilés)');
-- nomenclature dteloc (local10)
INSERT INTO dteloc VALUES ('1', 'Maison');
INSERT INTO dteloc VALUES ('2', 'Appartement');
INSERT INTO dteloc VALUES ('3', 'Dépendances');
INSERT INTO dteloc VALUES ('4', 'Local commercial ou industriel');
INSERT INTO dteloc VALUES ('5', 'DOM = maison dans descriptif');
INSERT INTO dteloc VALUES ('6', 'DOM = appartement sans descriptif');
INSERT INTO dteloc VALUES ('7', 'DOM = dépendance sans descriptif');
INSERT INTO dteloc VALUES ('8', 'Locaux de groupe 4 : évaluation tarifaire (non présente depuis 94)');
-- nomenclature ccoplc (local10)
INSERT INTO ccoplc VALUES (' ', 'Construction particulière');
INSERT INTO ccoplc VALUES ('R', 'Construction classée sur sol d''autrui lors de l''initialisation Majic2 (local, hors pdl, avec attribution différente de la parcelle d''assise)');
INSERT INTO ccoplc VALUES ('S', 'Construction sur plusieurs parcelles mais non soumise au régime de copropriété ou de transparence fiscale');
INSERT INTO ccoplc VALUES ('U', 'Chute d''eau, barrage');
INSERT INTO ccoplc VALUES ('V', 'Construction édifiée sur le domaine public');
INSERT INTO ccoplc VALUES ('W', 'Construction édifiée sous le domaine public');
INSERT INTO ccoplc VALUES ('X', 'Voies ferrées établies sur le terrain d''autrui ou sur le domaine public et dont l''assise ne forme pas parcelle');
INSERT INTO ccoplc VALUES ('Y', 'Construction édifiée sous le domaine cadastre');
INSERT INTO ccoplc VALUES ('Z', 'Construction édifiée sur sol d''autrui');
-- nomenclature cconlc (local10)
INSERT INTO cconlc VALUES ('AP', 'Appartement');
INSERT INTO cconlc VALUES ('AT', 'Antenne téléphone');
INSERT INTO cconlc VALUES ('AU', 'Autoroute');
INSERT INTO cconlc VALUES ('CA', 'Commerce sans boutique');
INSERT INTO cconlc VALUES ('CB', 'Local divers');
INSERT INTO cconlc VALUES ('CD', 'Dépendance commerciale');
INSERT INTO cconlc VALUES ('CH', 'Chantier');
INSERT INTO cconlc VALUES ('CM', 'Commerce avec boutique');
INSERT INTO cconlc VALUES ('DC', 'Dépendance lieux communs');
INSERT INTO cconlc VALUES ('DE', 'Dépendance bâtie isolée');
INSERT INTO cconlc VALUES ('LC', 'Local commun');
INSERT INTO cconlc VALUES ('MA', 'Maison');
INSERT INTO cconlc VALUES ('ME', 'Maison exceptionnelle');
INSERT INTO cconlc VALUES ('MP', 'Maison partagée par une limite territoriale');
INSERT INTO cconlc VALUES ('PP', 'Port de plaisance');
INSERT INTO cconlc VALUES ('SM', 'Sol de maison');
INSERT INTO cconlc VALUES ('U', 'Etablissement industriel');
INSERT INTO cconlc VALUES ('U1', 'Gare');
INSERT INTO cconlc VALUES ('U2', 'Gare : Triage');
INSERT INTO cconlc VALUES ('U3', 'Gare : Atelier matériel');
INSERT INTO cconlc VALUES ('U4', 'Gare : Atelier magasin');
INSERT INTO cconlc VALUES ('U5', 'Gare : Dépôt - Titulaire');
INSERT INTO cconlc VALUES ('U6', 'Gare : Dépôt - Réel');
INSERT INTO cconlc VALUES ('U7', 'Gare : Matériel transport');
INSERT INTO cconlc VALUES ('U8', 'Gare : Entretien matériel roulant');
INSERT INTO cconlc VALUES ('U9', 'Gare : Station usine');
INSERT INTO cconlc VALUES ('UE', 'Transformateur électrique');
INSERT INTO cconlc VALUES ('UG', 'Appareil à gaz');
INSERT INTO cconlc VALUES ('UN', 'Usine nucléaire');
INSERT INTO cconlc VALUES ('US', 'Etablissement industriel');
-- nomenclature top48a (local10)
INSERT INTO top48a VALUES ('1', 'pev imposé au loyer');
INSERT INTO top48a VALUES ('0', 'pev imposé à la vl');
-- nomenclature dnatlc (local10)
INSERT INTO dnatlc VALUES ('A', 'Local occupé par un apprenti ou un salarié agricole');
INSERT INTO dnatlc VALUES ('D', 'DOM = habitation principale occupée par le propriétaire');
INSERT INTO dnatlc VALUES ('L', 'Location autre que propriétaire ou usufruitier');
INSERT INTO dnatlc VALUES ('P', 'Occupé par le propriétaire ou l’usufruitier');
INSERT INTO dnatlc VALUES ('T', 'Location, non affectée à l''habitation, soumise à TVA');
INSERT INTO dnatlc VALUES ('V', 'Vacant');
-- nomenclature dnatcg
INSERT INTO dnatcg VALUES ('AC', 'Addition de construction');
INSERT INTO dnatcg VALUES ('CA', 'Changement d’affectation');
INSERT INTO dnatcg VALUES ('CC', 'Changement de consistance');
INSERT INTO dnatcg VALUES ('CI', 'Changement de l''identification du local');
INSERT INTO dnatcg VALUES ('CN', 'Construction nouvelle');
INSERT INTO dnatcg VALUES ('CU', 'Changement d’utilisation');
INSERT INTO dnatcg VALUES ('CX', 'Modification suite à contentieux');
INSERT INTO dnatcg VALUES ('DL', 'Division de locaux');
INSERT INTO dnatcg VALUES ('DP', 'Démolition partielle');
INSERT INTO dnatcg VALUES ('DT', 'Démolition totale');
INSERT INTO dnatcg VALUES ('ME', 'Modification des critères d’évaluation');
INSERT INTO dnatcg VALUES ('RL', 'Réunion de locaux');
-- nomenclature gimtom
INSERT INTO gimtom VALUES ('', 'Imposable TEOM');
INSERT INTO gimtom VALUES ('E', 'Exonération de TEOM de droit pour les locaux: en exonération NI, EP, CR, DR autre que les locaux d’habitation; de code nature U, US, UE, UG, U1 à U9, AU ; loués par des personnes publiques et affectées à un service public');
INSERT INTO gimtom VALUES ('D', 'Exonération TEOM sur délibération de la collectivité gestionnaire de TEOM (locaux à usage industriel ou commercial, locaux dotés d’un incinérateur)');
INSERT INTO gimtom VALUES ('V', 'Local d’habitation en exonération permanente EP/CR/DR sans fonctionnaire logé (vacants)');
-- nomenclature hlmsem (local10)
INSERT INTO hlmsem VALUES ('5', 'hlm');
INSERT INTO hlmsem VALUES ('6', 'sem');
-- nomenclature ccoaff (pev)
INSERT INTO ccoaff VALUES ('A', 'Locaux commerciaux et biens divers passibles de la TH)');
INSERT INTO ccoaff VALUES ('B', 'Bâtiment industriel (lie a ccoeva = A ou E)');
INSERT INTO ccoaff VALUES ('C', 'Commerce');
INSERT INTO ccoaff VALUES ('E', 'Locaux commerciaux et biens divers non passibles de la TH ni de la TP');
INSERT INTO ccoaff VALUES ('H', 'Habitation');
INSERT INTO ccoaff VALUES ('K', 'Locaux administratifs non passibles de la TH');
INSERT INTO ccoaff VALUES ('L', 'Hôtel');
INSERT INTO ccoaff VALUES ('P', 'Professionnel');
INSERT INTO ccoaff VALUES ('S', 'Biens divers passibles de la TH');
INSERT INTO ccoaff VALUES ('T', 'Terrain industriel (lie à ccoeva = A ou E)');
-- nomenclature gnexpl (pev)
INSERT INTO gnexpl VALUES ('CD', 'Exonération permanente des parts communale et départementale (biens d''une région situés dans une autre région)');
INSERT INTO gnexpl VALUES ('CR', 'Exonération permanente des parts communale et régionale (biens d''un département situés dans un autre département)');
INSERT INTO gnexpl VALUES ('DR', 'Exonération permanente des parts départementale et régionale (biens d''une commune situés dans une autre commune)');
INSERT INTO gnexpl VALUES ('EP', 'Exonération permanente');
INSERT INTO gnexpl VALUES ('NI', 'Non imposable');
INSERT INTO gnexpl VALUES ('PP', 'Exonération de pev secondaire de bien indivis');
INSERT INTO gnexpl VALUES ('DM', 'exonération des parts intercommunale, départementale, TSE et TEOM pour un immeuble appartenant à une commune et situé sur le territoire d’une autre commune appartenant à la métropole de Lyon');
INSERT INTO gnexpl VALUES ('CM', 'exonération des parts communale, TSE et TEOM pour un immeuble appartenant à une commune et situé sur le territoire d’une autre commune appartenant à la métropole de Lyon');
INSERT INTO gnexpl VALUES ('GM', 'transfert de propriétés bâties par l’État aux grands ports maritimes affectés à un service public ou d’utilité générale et non productifs de revenus');
-- nomenclature pour ccthp (Occupation du local)
INSERT INTO ccthp VALUES ('B', 'Locaux meublés à usage d’habitation faisant l’objet de locations occasionnelles permanentes ou saisonnières (TH)');
INSERT INTO ccthp VALUES ('D', 'Division fiscale (CFE) ou local démoli (TH)');
INSERT INTO ccthp VALUES ('F', 'Fonctionnaire logé (TH)');
INSERT INTO ccthp VALUES ('G', 'Occupation à titre gratuit (TH)');
INSERT INTO ccthp VALUES ('L', 'Occupation par un locataire (TH)');
INSERT INTO ccthp VALUES ('N', 'Local dépendance non imposable (TH)');
INSERT INTO ccthp VALUES ('P', 'Occupation par le propriétaire (TH)');
INSERT INTO ccthp VALUES ('R', 'Occupation par un artisan exonéré (CFE)');
INSERT INTO ccthp VALUES ('T', 'Local imposé à la taxe professionnelle (TH)');
INSERT INTO ccthp VALUES ('U', 'Utilisation commune (CFE)');
INSERT INTO ccthp VALUES ('V', 'Local vacant');
INSERT INTO ccthp VALUES ('X', 'Occupation par bail rural (TH)');
INSERT INTO ccthp VALUES ('', 'Non défini');
-- nomenclature pour cbtabt (Code exonération HLM Zone sensible)
INSERT INTO cbtabt VALUES ('AS', 'Antisismique dans les DOM');
INSERT INTO cbtabt VALUES ('CV', 'Logements sociaux situés dans un quartier prioritaire – Contrat de ville');
-- nomenclature gnextl (pevexoneration)
-- valeurs conformes à la documentation DGFiP 2019 BATI 2.2.14 (p.18)
INSERT INTO gnextl VALUES ('AD', 'Droit commun (2 ans) - addition de construction');
INSERT INTO gnextl VALUES ('AE', 'Exonération de 20 ans en faveur des logements sociaux qui respectent un certain nombre de normes environnementales pour additions de constructions');
INSERT INTO gnextl VALUES ('AF', '2 ans pour addition de construction avec prêtconventionne, PAP ou PLA');
INSERT INTO gnextl VALUES ('AG', 'Exonération à durée variable pour contrat de partenariat avec une personne publique (addition de construction) – article 1382 1° bis');
INSERT INTO gnextl VALUES ('AK', 'Exonération de 20 ans pour les logements intermédiaires loués dans lesconditions de l’article 279-0 bis A (addition de construction) – art. 1384-0 A du CGI');
INSERT INTO gnextl VALUES ('AL', 'Exo de 15 ans pour logements sociaux (AC)');
INSERT INTO gnextl VALUES ('AM', 'Addition de construction – Ville de Paris – art. 1383 du CGI');
INSERT INTO gnextl VALUES ('AP', 'Exonération annuelle pour installation antipollution');
INSERT INTO gnextl VALUES ('AQ', 'Exonération de 15 ans pour addition de construction antérieure au 01/01/1973');
INSERT INTO gnextl VALUES ('AS', 'Abattement de 30% pour les locaux sociaux situés dans les DOM et équipés contre les risques naturels');
INSERT INTO gnextl VALUES ('AT', 'Exonération de 30 ans pour les logements sociaux respectant certains critères de qualité environnementale (addition de construction).');
INSERT INTO gnextl VALUES ('AU', 'Exonération de 25 ans pour les logements financés au moyen de prêts aidés par l''Etat (addition de construction)');
INSERT INTO gnextl VALUES ('AV', 'Exonération de 25 ans pour les logements financés au moyen de prêts aidés par l''Etat (addition de construction)');
INSERT INTO gnextl VALUES ('AW', 'Exonération de 25 ans pour les logements financés au moyen de prêts aidés par l''Etat (addition de construction)');
INSERT INTO gnextl VALUES ('AY', 'Exo de 15 ans pour logements sociaux (AC)');
INSERT INTO gnextl VALUES ('AZ', 'Exonération de 30 ans pour les logements sociaux respectant certains critères de qualité environnementale (addition de construction).');
INSERT INTO gnextl VALUES ('BE', 'Local situé dans un bassin d''emploi à redynamiser. Article 1383 H du CGI.');
INSERT INTO gnextl VALUES ('BH', 'Locaux à usage de bureau transformés en habitation principale');
INSERT INTO gnextl VALUES ('BS', 'Abattement de 30 % pour les logements faisant l’objet d’un bail réel solidaire');
INSERT INTO gnextl VALUES ('CE', 'Abattement de 5 ans pour cession relevant de l’article 1388 sexies du CGI (Mayotte)');
INSERT INTO gnextl VALUES ('D', 'Personne âgée et non imposable à l’impôt sur le revenu');
INSERT INTO gnextl VALUES ('DF', 'Exonération pour bâtiment déshydratation des fourrages.');
INSERT INTO gnextl VALUES ('DO', 'Exonération spécifique des DOM prévue à l’article 330 de l’annexe II au CGI');
INSERT INTO gnextl VALUES ('EA', 'Economiquement faible - type A');
INSERT INTO gnextl VALUES ('EC', 'Economiquement faible - type C');
INSERT INTO gnextl VALUES ('EE', 'Exonération économiquement faible (ECF) de type E');
INSERT INTO gnextl VALUES ('EF', 'Exonération économiquement faible (ECF) de type F');
INSERT INTO gnextl VALUES ('EI', 'Exonération pour les jeunes entreprises innovantes');
INSERT INTO gnextl VALUES ('EN', 'Exonération entreprise nouvelle.');
INSERT INTO gnextl VALUES ('ES', 'Équipements souterrains indissociables des casiers des installations de stockage de déchets non dangereux');
INSERT INTO gnextl VALUES ('EW', 'Exonération ECF de droits acquis');
INSERT INTO gnextl VALUES ('E1', 'Exonération ECF de droit commun – 100 % – 1ère année');
INSERT INTO gnextl VALUES ('E2', 'Exonération ECF de droit commun – 100 % – 2 e année');
INSERT INTO gnextl VALUES ('E3', 'Exonération ECF de droit commun – 67 % – 3 e année');
INSERT INTO gnextl VALUES ('E4', 'Exonération ECF de droit commun – 33 % – 4 e année');
INSERT INTO gnextl VALUES ('G', 'Exonération économiquement faible (ECF) – type G');
INSERT INTO gnextl VALUES ('GP', 'Grand port maritime');
INSERT INTO gnextl VALUES ('GS', 'Exo pour groupement de coopération sanitaire');
INSERT INTO gnextl VALUES ('G1', 'Transfert de propriétés bâties par l’État aux grands ports maritimes non affectés à un service public ou d’utilité générale ou productifs de revenu – 1ère année – 100 %');
INSERT INTO gnextl VALUES ('G2', 'Transfert de propriétés bâties par l’État aux grands ports maritimes non affectés à un service public ou d’utilité générale ou productifs de revenu – 2e année – 100 %');
INSERT INTO gnextl VALUES ('G3', 'Transfert de propriétés bâties par l’État aux grands ports maritimes non affectés à un service public ou d’utilité générale ou productifs de revenu – 3e année – 75 %');
INSERT INTO gnextl VALUES ('G4', 'Transfert de propriétés bâties par l’État aux grands ports maritimes non affectés à un service public ou d’utilité générale ou productifs de revenu – 4e année – 50 %');
INSERT INTO gnextl VALUES ('G5', 'Transfert de propriétés bâties par l’État aux grands ports maritimes non affectés à un service public ou d’utilité générale ou productifs de revenu – 5e année – 25 %');
INSERT INTO gnextl VALUES ('HU', 'Exo de 15 ans pour logements sociaux acquis ou aménagés');
INSERT INTO gnextl VALUES ('HY', 'Exo de 25 ans pour logements sociaux acquis ou aménagés');
INSERT INTO gnextl VALUES ('LA', 'Durée variable - totale ou partielle - PLA');
INSERT INTO gnextl VALUES ('LE', 'Exonération de 15 ans pour les logements acquis avec l’aide de l’aide de l’État en vue de leur location');
INSERT INTO gnextl VALUES ('LG', 'Exonération établissements publics supérieurs sous contrat avec des sociétés dont le capital est entièrement public');
INSERT INTO gnextl VALUES ('LI', 'Exonération de 15 ans pour les logements sociaux acquis d’un organisme mentionné à l’article L 411.5 du Code de la construction et de l’habitation');
INSERT INTO gnextl VALUES ('LM', 'Local situé dans une zone de revitalisation rurale. Article 1383 E bis du CGI.');
INSERT INTO gnextl VALUES ('LR', 'Durée variable - totale ou partielle habilitation');
INSERT INTO gnextl VALUES ('LW', 'Exonération de 25 ans pour les logements acquis avec l''aide de l''Etat en vue de leur location.');
INSERT INTO gnextl VALUES ('LY', 'Prorogation de 10 ans de l’exonération « LE » prévue à l’art. 1384 C du CGI');
INSERT INTO gnextl VALUES ('MA', 'Minoration de 60 % de la valeur locative des locaux d’habitation situés à Mayotte');
INSERT INTO gnextl VALUES ('MB', 'Boutiques et magasins situés hors d’un ensemble commercial dont la surface est inférieure à 400 m² – art. 1388 quinquies C du CGI');
INSERT INTO gnextl VALUES ('MS', 'Maison de santé');
INSERT INTO gnextl VALUES ('ND', 'Droit commun (2 ans) - construction nouvelle');
INSERT INTO gnextl VALUES ('NI', 'Non imposable');
INSERT INTO gnextl VALUES ('NE', 'Exonération de 20 ans en faveur des logements sociaux qui respectent un certain nombre de normes environnementales pour constructions nouvelles');
INSERT INTO gnextl VALUES ('NF', '2 ans pour construction nouvelle avec prêt conventionne, PAP ou PLA');
INSERT INTO gnextl VALUES ('NG', 'Exonération à durée variable pour contrat de partenariat avec une personne publique (construction nouvelle) – article 1382 1° bis');
INSERT INTO gnextl VALUES ('NK', 'Exonération de 20 ans pour les logements intermédiaires loués dans les conditions de l’article 279-0 bis A (construction nouvelle) – art. 1384-0 A du CGI');
INSERT INTO gnextl VALUES ('NL', 'Exonération de 15 ans pour logements sociaux (CN)');
INSERT INTO gnextl VALUES ('NM', 'Construction nouvelle – Ville de Paris – art. 1383 du CGI');
INSERT INTO gnextl VALUES ('NQ', 'Exonération de 15 ans pour construction nouvelle antérieure au 01/01/1973');
INSERT INTO gnextl VALUES ('NT', 'Exonération de 30 ans pour les logements sociaux respectant certains critères de qualité environnementale (construction nouvelle).');
INSERT INTO gnextl VALUES ('NU', 'Exonération de 25 ans pour les logements financés au moyen de prêts aidés par l''Etat (construction nouvelle)');
INSERT INTO gnextl VALUES ('NV', 'Exonération de 25 ans pour les logements financés au moyen de prêts aidés par l''Etat (construction nouvelle)');
INSERT INTO gnextl VALUES ('NW', 'Exonération de 25 ans pour les logements financés au moyen de prêts aidés par l''Etat (construction nouvelle)');
INSERT INTO gnextl VALUES ('NY', 'Exonération de 25 ans pour logements sociaux (CN)');
INSERT INTO gnextl VALUES ('NZ', 'Exonération de 30 ans pour les logements sociaux respectant certains critères de qualité environnementale (construction nouvelle).');
INSERT INTO gnextl VALUES ('P1', 'Abattement 1ère année sur outillages, équipements et installations spécifiques de manutention portuaires (100 %).');
INSERT INTO gnextl VALUES ('P2', 'Abattement 2ème année sur outillages, équipements et installations spécifiques de manutention portuaires (100 %)');
INSERT INTO gnextl VALUES ('P3', 'Abattement 3ème, 4ème et 5ème années sur outillages, équipements et installations spécifiques de manutention');
INSERT INTO gnextl VALUES ('PC', 'Exonération de 5 ans pour locaux situés dans un pôle de compétitivité art. 1383 F du CGI');
INSERT INTO gnextl VALUES ('PE', 'Prolongation a durée variable d’exonération de droit commun');
INSERT INTO gnextl VALUES ('PI', 'Locaux situés sur des terrains pollués dans le périmètre d’un projet d’intérêt général');
INSERT INTO gnextl VALUES ('QP', 'Quartier prioritaire');
INSERT INTO gnextl VALUES ('QV', 'Locaux HLM se situant dans un quartier prioritaire');
INSERT INTO gnextl VALUES ('RC', 'Exonération pour bail à réhabilitation pris à compter du 01/01/2005 art. 1384 B, 1586 B et 1599 ter E du CGI');
INSERT INTO gnextl VALUES ('RD', 'Exonération d’au plus 5 ans pour les immeubles situés dans les zones de restructuration de la défense');
INSERT INTO gnextl VALUES ('RF', 'Requalification de copropriétés dégradées d’intérêt national acquises par un établissement public foncier');
INSERT INTO gnextl VALUES ('RI', 'Recherche industrielle');
INSERT INTO gnextl VALUES ('RM', 'Exonération pour les locaux achevés avant la mise en place d’un plan de prévention des risques miniers. Article 1383 G ter du CGI');
INSERT INTO gnextl VALUES ('RQ', 'Local achevé avant la mise en place d''un plan de prévention des risques technologiques. Article 1383 G du CGI.');
INSERT INTO gnextl VALUES ('RT', 'Abattement de 25 % pour les locaux faisant l’objet d’une convention ou d''un contrat de résidence temporaire – art. 1388 quinquies A du CGI');
INSERT INTO gnextl VALUES ('RW', 'Local achevé avant le 01/01/1989 ayant fait l''objet de dépenses destinées à économiser l''énergie. Article 1383-O B du CGI.');
INSERT INTO gnextl VALUES ('UM', 'Exonération de 5 ans pour les usines de méthanisation - art. 1387 A du CGI');
INSERT INTO gnextl VALUES ('ZD', 'Abattement zone franche DOM');
INSERT INTO gnextl VALUES ('ZL', 'Transformation local commercial en habitation');
INSERT INTO gnextl VALUES ('ZQ', 'Abattement de 30 % pour les locaux d’habitation situés dans les immeubles collectifs issus de la transformation de locaux industriels ou commerciaux dans le périmètre des quartiers prioritaires de la politique de la ville');
INSERT INTO gnextl VALUES ('ZR', 'Exonération de 15 ans pour locaux situés dans une zone de revitalisation rurale art. 1383 E du CGI');
INSERT INTO gnextl VALUES ('ZT', 'Logement topé ZUS');
INSERT INTO gnextl VALUES ('ZV', 'Exonération de 5 ans pour zone franche urbaine de 3éme génération art. 1384 C bis du CGI');
-- valeurs obsolètes mais existant toujours en base
INSERT INTO gnextl VALUES ('AX', 'Longue durée (10 ans) - addition de construction');
INSERT INTO gnextl VALUES ('CD', 'Exonération permanente des parts communale et départementale (biens d''une région situés dans une autre région)');
INSERT INTO gnextl VALUES ('CR', 'Exonération permanente des parts communale et régionale (biens d''un département situés dans un autre département)');
INSERT INTO gnextl VALUES ('CV', 'Contrat de ville');
INSERT INTO gnextl VALUES ('DR', 'Exonération permanente des parts départementale et régionale (biens d''une commune situés dans une autre commune)');
INSERT INTO gnextl VALUES ('EB', 'Economiquement faible - type B');
INSERT INTO gnextl VALUES ('EP', 'Exonération permanente');
INSERT INTO gnextl VALUES ('NX', 'Longue durée (10 ans) - construction nouvelle');
INSERT INTO gnextl VALUES ('PP', 'Exonération de pev secondaire de bien indivis');
INSERT INTO gnextl VALUES ('PX', 'Prolongation exonérations NX et AX (5 ans maxi)');
INSERT INTO gnextl VALUES ('RA', 'Exonération de certains établissements industriels durée indéterminée.');
INSERT INTO gnextl VALUES ('ZF', 'Exonération zone franche');
INSERT INTO gnextl VALUES ('ZS', 'Abattement ZUS 30 % HLM SEM (obsolète à partir du format 2012)');
INSERT INTO gnextl VALUES ('ZU', 'Exonération pour nouvelles zones franches');
-- 2018
-- nomenclature cconad (pevprincipale, pevdependances)
INSERT INTO cconad VALUES ('CV', 'Cave');
INSERT INTO cconad VALUES ('GA', 'Garage');
INSERT INTO cconad VALUES ('GR', 'Grenier');
INSERT INTO cconad VALUES ('TR', 'Terrasse');
INSERT INTO cconad VALUES ('BC', 'Bûcher');
INSERT INTO cconad VALUES ('BD', 'Buanderie');
INSERT INTO cconad VALUES ('BX', 'Box');
INSERT INTO cconad VALUES ('CD', 'Chambre de domestique');
INSERT INTO cconad VALUES ('CL', 'Cellier');
INSERT INTO cconad VALUES ('DC', 'Dépendance de local commun');
INSERT INTO cconad VALUES ('GC', 'Grenier/cave');
INSERT INTO cconad VALUES ('GP', 'Garage/parking');
INSERT INTO cconad VALUES ('JH', '<NAME>');
INSERT INTO cconad VALUES ('PA', 'Elément de pur agrément');
INSERT INTO cconad VALUES ('PI', 'Pièce indépendante');
INSERT INTO cconad VALUES ('PK', 'Parking');
INSERT INTO cconad VALUES ('PS', 'Piscine');
INSERT INTO cconad VALUES ('RS', 'Remise');
INSERT INTO cconad VALUES ('SR', 'Serre');
INSERT INTO cconad VALUES ('TT', 'Toiture-terrasse');
-- nomenclature ctpdl (pdl)
INSERT INTO ctpdl VALUES ('BND', 'Libellé BND');
INSERT INTO ctpdl VALUES ('CL', 'Libellé CL');
INSERT INTO ctpdl VALUES ('CV', 'Libellé CV');
INSERT INTO ctpdl VALUES ('TF', 'Libellé TF');
INSERT INTO ctpdl VALUES ('CLV', 'Libellé CLV');
INSERT INTO ctpdl VALUES ('MP', 'Libellé MP');
-- nomenclature cconlo (lots)
INSERT INTO cconlo VALUES ('1', 'lot non bâti');
INSERT INTO cconlo VALUES ('2', 'lot bâti');
INSERT INTO cconlo VALUES ('3', 'lot mixte');
INSERT INTO cconlo VALUES ('4', 'assise de pdl');
INSERT INTO cconlo VALUES ('5', 'lot particulier');
INSERT INTO cconlo VALUES ('6', 'lot multi-communes');
-- nomenclature ccodro (proprietaire)
INSERT INTO ccodro VALUES ('P', 'Propriétaire');
INSERT INTO ccodro VALUES ('U', 'Usufruitier (associé avec N)');
INSERT INTO ccodro VALUES ('N', 'Nu-propriétaire (associé avec U)');
INSERT INTO ccodro VALUES ('B', 'Bailleur à construction (associé avec R) ou réel solidaire (associé à Z)');
INSERT INTO ccodro VALUES ('R', 'Preneur à construction (associé avec B)');
INSERT INTO ccodro VALUES ('F', 'Foncier (associé avec D ou T)');
INSERT INTO ccodro VALUES ('T', 'Ténuyer (associé avec F)');
INSERT INTO ccodro VALUES ('D', 'Domanier (associé avec F)');
INSERT INTO ccodro VALUES ('V', 'Bailleur d''un bail à réhabilitation (associé avec W)');
INSERT INTO ccodro VALUES ('W', 'Preneur d''un bail à réhabilitation (associé avec V)');
INSERT INTO ccodro VALUES ('A', 'Locataire-attributaire (associé avec P)');
INSERT INTO ccodro VALUES ('E', 'Emphytéote (associé avec P)');
INSERT INTO ccodro VALUES ('K', 'Antichrésiste (associé avec P)');
INSERT INTO ccodro VALUES ('L', 'Fonctionnaire logé');
INSERT INTO ccodro VALUES ('G', 'Gérant, mandataire, gestionnaire');
INSERT INTO ccodro VALUES ('S', 'Syndic de copropriété');
INSERT INTO ccodro VALUES ('H', 'Associé dans une société en transparence fiscale (associé avec P)');
INSERT INTO ccodro VALUES ('O', 'Autorisation d''occupation temporaire (70 ans)');
INSERT INTO ccodro VALUES ('J', 'Jeune agriculteur');
INSERT INTO ccodro VALUES ('Q', 'Gestionnaire taxe sur les bureaux (Ile-de-France)');
INSERT INTO ccodro VALUES ('X', 'La Poste, propriétaire et occupant');
INSERT INTO ccodro VALUES ('Y', 'La Poste, occupant et non propriétaire');
INSERT INTO ccodro VALUES ('C', 'Fiduciaire');
INSERT INTO ccodro VALUES ('M', 'Occupant d''une parcelle appartenant au département de Mayotte ou à l''État (associé à P).');
INSERT INTO ccodro VALUES ('Z', 'Preneur de bail solidaire (associé à B)');
-- nomenclature ccodem (proprietaire)
INSERT INTO ccodem VALUES ('C', 'Un des copropriétaires');
INSERT INTO ccodem VALUES ('S', 'Succession de');
INSERT INTO ccodem VALUES ('L', 'Propriété en litige');
INSERT INTO ccodem VALUES ('I', 'Indivision simple');
INSERT INTO ccodem VALUES ('V', 'La veuve ou les héritiers de');
-- nomenclature gtoper (proprietaire)
INSERT INTO gtoper VALUES ('1', 'physique');
INSERT INTO gtoper VALUES ('2', 'morale');
-- nomenclature ccoqua (proprietaire)
INSERT INTO ccoqua VALUES ('1', 'M');
INSERT INTO ccoqua VALUES ('2', 'MME');
INSERT INTO ccoqua VALUES ('3', 'MLE');
-- nomenclature dnatpr (proprietaire)
INSERT INTO dnatpr VALUES ('ECF', 'Pers. physique : ECONOMIQUEMENT FAIBLE (NON SERVI)');
INSERT INTO dnatpr VALUES ('FNL', 'Pers. physique : FONCTIONNAIRE LOGE');
INSERT INTO dnatpr VALUES ('DOM', 'Pers. physique : PROPRIETAIRE OCCUPANT DOM');
INSERT INTO dnatpr VALUES ('HLM', 'Pers. Morale : OFFICE HLM');
INSERT INTO dnatpr VALUES ('SEM', 'Pers. Morale : SOCIETE D ECONOMIE MIXTE');
INSERT INTO dnatpr VALUES ('TGV', 'Pers. Morale : SNCF');
INSERT INTO dnatpr VALUES ('RFF', 'Pers. Morale : RESEAU FERRE DE FRANCE');
INSERT INTO dnatpr VALUES ('CLL', 'Pers. Morale : COLLECTIVITE LOCALE');
INSERT INTO dnatpr VALUES ('CAA', 'Pers. Morale : CAISSE ASSURANCE AGRICOLE');
-- nomenclature ccogrm (proprietaire)
INSERT INTO ccogrm VALUES ('0', 'PERSONNES MORALES NON REMARQUABLES');
INSERT INTO ccogrm VALUES ('1', 'ETAT');
INSERT INTO ccogrm VALUES ('2', 'REGION');
INSERT INTO ccogrm VALUES ('3', 'DEPARTEMENT');
INSERT INTO ccogrm VALUES ('4', 'COMMUNE');
INSERT INTO ccogrm VALUES ('5', 'OFFICE HLM');
INSERT INTO ccogrm VALUES ('6', 'PERSONNES MORALES REPRESENTANT DES SOCIETES');
INSERT INTO ccogrm VALUES ('7', 'COPROPRIETAIRE');
INSERT INTO ccogrm VALUES ('8', 'ASSOCIE');
INSERT INTO ccogrm VALUES ('9', 'ETABLISSEMENTS PUBLICS OU ARGANISMES ASSIMILES');
INSERT INTO ccogrm VALUES ('0A', 'CAAA en Alsace-Moselle - PERSONNES MORALES NON REMARQUABLES');
INSERT INTO ccogrm VALUES ('1A', 'CAAA en Alsace-Moselle - ETAT');
INSERT INTO ccogrm VALUES ('2A', 'CAAA en Alsace-Moselle - REGION');
INSERT INTO ccogrm VALUES ('3A', 'CAAA en Alsace-Moselle - DEPARTEMENT');
INSERT INTO ccogrm VALUES ('4A', 'CAAA en Alsace-Moselle - COMMUNE');
INSERT INTO ccogrm VALUES ('5A', 'CAAA en Alsace-Moselle - OFFICE HLM');
INSERT INTO ccogrm VALUES ('6A', 'CAAA en Alsace-Moselle - PERSONNES MORALES REPRESENTANT DES SOCIETES');
INSERT INTO ccogrm VALUES ('7A', 'CAAA en Alsace-Moselle - COPROPRIETAIRE');
INSERT INTO ccogrm VALUES ('8A', 'CAAA en Alsace-Moselle - ASSOCIE');
INSERT INTO ccogrm VALUES ('9A', 'CAAA en Alsace-Moselle - ETABLISSEMENTS PUBLICS OU ARGANISMES ASSIMILES');
-- nomenclature gtyp3 (proprietaire)
INSERT INTO gtyp3 VALUES ('2', '2 LIGNE SERVIE (FORMAT LIBRE)');
INSERT INTO gtyp3 VALUES ('9', 'LIGNE VIDE');
-- nomenclature gtyp4 (proprietaire)
INSERT INTO gtyp4 VALUES ('1', 'ADRESSE CODIFIEE 1');
INSERT INTO gtyp4 VALUES ('2', 'ADRESSE CODIFIEE 2');
INSERT INTO gtyp4 VALUES ('3', 'ADRESSE FORMATEE');
INSERT INTO gtyp4 VALUES ('4', 'ADRESSE BOITE POSTALE OU SERVICE');
INSERT INTO gtyp4 VALUES ('5', 'ADRESSE CEDEX');
INSERT INTO gtyp4 VALUES ('6', 'ADRESSE SECTEUR POSTAL');
INSERT INTO gtyp4 VALUES ('7', 'ADRESSE NON CODIFIEE, NON FORMATABLE');
INSERT INTO gtyp4 VALUES ('8', 'ADRESSE A L ETRANGER');
INSERT INTO gtyp4 VALUES ('9', 'LIGNE VIDE');
-- nomenclature gtyp5 (proprietaire)
INSERT INTO gtyp5 VALUES ('1', 'LIGNE SERVIE (COMMUNE OU LIEU-DIT) 1');
INSERT INTO gtyp5 VALUES ('2', 'LIGNE SERVIE (COMMUNE OU LIEU-DIT) 2');
INSERT INTO gtyp5 VALUES ('3', 'LIGNE SERVIE (COMMUNE OU LIEU-DIT) 3');
INSERT INTO gtyp5 VALUES ('4', 'LIGNE SERVIE FORMAT LIBRE');
INSERT INTO gtyp5 VALUES ('8', 'ADRESSE A L''ETRANGER (libellé de la ville)');
INSERT INTO gtyp5 VALUES ('9', 'LIGNE VIDE');
-- nomenclature gtyp6 (proprietaire)
INSERT INTO gtyp6 VALUES ('2', 'ADRESSE FORMATEE, sous la forme CODE POSTAL sur 5');
INSERT INTO gtyp6 VALUES ('3', 'ADRESSE A L''ETRANGER avec codification du pays en CCOPAY');
INSERT INTO gtyp6 VALUES ('4', 'ADRESSE A L''ETRANGER sans codification du pays.');
INSERT INTO gtyp6 VALUES ('5', 'ADRESSE INCODIFIABLE');
INSERT INTO gtyp6 VALUES ('6', 'ADRESSE CEDEX');
INSERT INTO gtyp6 VALUES ('7', 'POSTES AUX ARMEES');
INSERT INTO gtyp6 VALUES ('9', 'LIGNE VIDE');
-- nomenclature typcom (commune, voie)
INSERT INTO typcom VALUES ('N', 'Commune rurale');
INSERT INTO typcom VALUES ('R', 'Commune recensée');
-- nomenclature natvoi (type de voie)
INSERT INTO natvoi VALUES ('ACH' , 'ANCIEN CHEMIN');
INSERT INTO natvoi VALUES ('AER' , 'AERODROME');
INSERT INTO natvoi VALUES ('AERG', 'AEROGARE');
INSERT INTO natvoi VALUES ('AGL' , 'AGGLOMERATION');
INSERT INTO natvoi VALUES ('AIRE', 'AIRE');
INSERT INTO natvoi VALUES ('ALL' , 'ALLEE');
INSERT INTO natvoi VALUES ('ANGL', 'ANGLE');
INSERT INTO natvoi VALUES ('ARC' , 'ARCADE');
INSERT INTO natvoi VALUES ('ART' , 'ANCIENNE ROUTE');
INSERT INTO natvoi VALUES ('AUT' , 'AUTOROUTE');
INSERT INTO natvoi VALUES ('AV' , 'AVENUE');
INSERT INTO natvoi VALUES ('BASE', 'BASE');
INSERT INTO natvoi VALUES ('BD' , 'BOULEVARD');
INSERT INTO natvoi VALUES ('BER' , 'BERGE');
INSERT INTO natvoi VALUES ('BORD', 'BORD');
INSERT INTO natvoi VALUES ('BRE' , 'BARRIERE');
INSERT INTO natvoi VALUES ('BRG' , 'BOURG');
INSERT INTO natvoi VALUES ('BRTL', 'BRETELLE');
INSERT INTO natvoi VALUES ('BSN' , 'BASSIN');
INSERT INTO natvoi VALUES ('CAE' , 'CARRIERA');
INSERT INTO natvoi VALUES ('CALL', 'CALLE');
INSERT INTO natvoi VALUES ('CAMI', 'CAMIN');
INSERT INTO natvoi VALUES ('CAMP', 'CAMP');
INSERT INTO natvoi VALUES ('CAN' , 'CANAL');
INSERT INTO natvoi VALUES ('CAR' , 'CARREFOUR');
INSERT INTO natvoi VALUES ('CARE', 'CARRIERE');
INSERT INTO natvoi VALUES ('CASR', 'CASERNE');
INSERT INTO natvoi VALUES ('CC' , 'CHEMIN COMMUNAL');
INSERT INTO natvoi VALUES ('CD' , 'CHEMIN DEPARTEMENTAL');
INSERT INTO natvoi VALUES ('CF' , 'CHEMIN FORESTIER');
INSERT INTO natvoi VALUES ('CHA' , 'CHASSE');
INSERT INTO natvoi VALUES ('CHE' , 'CHEMIN');
INSERT INTO natvoi VALUES ('CHEM', 'CHEMINEMENT');
INSERT INTO natvoi VALUES ('CHL' , 'CHALET');
INSERT INTO natvoi VALUES ('CHP' , 'CHAMP');
INSERT INTO natvoi VALUES ('CHT' , 'CHATEAU');
INSERT INTO natvoi VALUES ('CHV' , 'CHEMIN VICINAL');
INSERT INTO natvoi VALUES ('CITE', 'CITE');
INSERT INTO natvoi VALUES ('CIVE', 'COURSIVE');
INSERT INTO natvoi VALUES ('CLOS', 'CLOS');
INSERT INTO natvoi VALUES ('CLR' , 'COULOIR');
INSERT INTO natvoi VALUES ('COIN', 'COIN');
INSERT INTO natvoi VALUES ('COL' , 'COL');
INSERT INTO natvoi VALUES ('COR' , 'CORNICHE');
INSERT INTO natvoi VALUES ('CORO', 'CORON');
INSERT INTO natvoi VALUES ('COTE', 'COTE');
INSERT INTO natvoi VALUES ('COUR', 'COUR');
INSERT INTO natvoi VALUES ('CPG' , 'CAMPING');
INSERT INTO natvoi VALUES ('CR' , 'CHEMIN RURAL');
INSERT INTO natvoi VALUES ('CRS' , 'COURS');
INSERT INTO natvoi VALUES ('CRX' , 'CROIX');
INSERT INTO natvoi VALUES ('CTR' , 'CONTOUR');
INSERT INTO natvoi VALUES ('CTRE', 'CENTRE');
INSERT INTO natvoi VALUES ('DARS', 'DARSE');
INSERT INTO natvoi VALUES ('DEVI', 'DEVIATION');
INSERT INTO natvoi VALUES ('DIG' , 'DIGUE');
INSERT INTO natvoi VALUES ('DOM' , 'DOMAINE');
INSERT INTO natvoi VALUES ('DRA' , 'DRAILLE');
INSERT INTO natvoi VALUES ('DSC' , 'DESCENTE');
INSERT INTO natvoi VALUES ('ECA' , 'ECART');
INSERT INTO natvoi VALUES ('ECL' , 'ECLUSE');
INSERT INTO natvoi VALUES ('EMBR', 'EMBRANCHEMENT');
INSERT INTO natvoi VALUES ('EMP' , 'EMPLACEMENT');
INSERT INTO natvoi VALUES ('ENC' , 'ENCLOS');
INSERT INTO natvoi VALUES ('ENV' , 'ENCLAVE');
INSERT INTO natvoi VALUES ('ESC' , 'ESCALIER');
INSERT INTO natvoi VALUES ('ESP' , 'ESPLANADE');
INSERT INTO natvoi VALUES ('ESPA', 'ESPACE');
INSERT INTO natvoi VALUES ('ETNG', 'ETANG');
INSERT INTO natvoi VALUES ('FD' , 'FOND');
INSERT INTO natvoi VALUES ('FG' , 'FAUBOURG');
INSERT INTO natvoi VALUES ('FON' , 'FONTAINE');
INSERT INTO natvoi VALUES ('FOR' , 'FORET');
INSERT INTO natvoi VALUES ('FORT', 'FORT');
INSERT INTO natvoi VALUES ('FOS' , 'FOSSE');
INSERT INTO natvoi VALUES ('FRM' , 'FERME');
INSERT INTO natvoi VALUES ('GAL' , 'GALERIE');
INSERT INTO natvoi VALUES ('GARE', 'GARE');
INSERT INTO natvoi VALUES ('GBD' , 'GRAND BOULEVARD');
INSERT INTO natvoi VALUES ('GPL' , 'GRANDE PLACE');
INSERT INTO natvoi VALUES ('GR' , 'GRANDE RUE');
INSERT INTO natvoi VALUES ('GREV', 'GREVE');
INSERT INTO natvoi VALUES ('HAB' , 'HABITATION');
INSERT INTO natvoi VALUES ('HAM' , 'HAMEAU');
INSERT INTO natvoi VALUES ('HIP' , 'HIPPODROME');
INSERT INTO natvoi VALUES ('HLE' , 'HALLE');
INSERT INTO natvoi VALUES ('HLG' , 'HALAGE');
INSERT INTO natvoi VALUES ('HLM' , 'HLM');
INSERT INTO natvoi VALUES ('HTR' , 'HAUTEUR');
INSERT INTO natvoi VALUES ('ILE' , 'ILE');
INSERT INTO natvoi VALUES ('ILOT', 'ILOT');
INSERT INTO natvoi VALUES ('IMP' , 'IMPASSE');
INSERT INTO natvoi VALUES ('JARD', 'JARDIN');
INSERT INTO natvoi VALUES ('JTE' , 'JETEE');
INSERT INTO natvoi VALUES ('LAC' , 'LAC');
INSERT INTO natvoi VALUES ('LEVE', 'LEVEE');
INSERT INTO natvoi VALUES ('LICE', 'LICES');
INSERT INTO natvoi VALUES ('LIGN', 'LIGNE');
INSERT INTO natvoi VALUES ('LOT' , 'LOTISSEMENT');
INSERT INTO natvoi VALUES ('MAIL', 'MAIL');
INSERT INTO natvoi VALUES ('MAIS', 'MAISON');
INSERT INTO natvoi VALUES ('MAR' , 'MARCHE');
INSERT INTO natvoi VALUES ('MARE', 'MARE');
INSERT INTO natvoi VALUES ('MAS' , 'MAS');
INSERT INTO natvoi VALUES ('MNE' , 'MORNE');
INSERT INTO natvoi VALUES ('MRN' , 'MARINA');
INSERT INTO natvoi VALUES ('MTE' , 'MONTEE');
INSERT INTO natvoi VALUES ('NTE' , 'NOUVELLE ROUTE');
INSERT INTO natvoi VALUES ('PAE' , 'PETITE AVENUE');
INSERT INTO natvoi VALUES ('PARC', 'PARC');
INSERT INTO natvoi VALUES ('PAS' , 'PASSAGE');
INSERT INTO natvoi VALUES ('PASS', 'PASSE');
INSERT INTO natvoi VALUES ('PCH' , 'PETIT CHEMIN');
INSERT INTO natvoi VALUES ('PCHE', 'PORCHE');
INSERT INTO natvoi VALUES ('PHAR', 'PHARE');
INSERT INTO natvoi VALUES ('PIST', 'PISTE');
INSERT INTO natvoi VALUES ('PKG' , 'PARKING');
INSERT INTO natvoi VALUES ('PL' , 'PLACE');
INSERT INTO natvoi VALUES ('PLA' , 'PLACA');
INSERT INTO natvoi VALUES ('PLAG', 'PLAGE');
INSERT INTO natvoi VALUES ('PLAN', 'PLAN');
INSERT INTO natvoi VALUES ('PLCI', 'PLACIS');
INSERT INTO natvoi VALUES ('PLE' , 'PASSERELLE');
INSERT INTO natvoi VALUES ('PLN' , 'PLAINE');
INSERT INTO natvoi VALUES ('PLT' , 'PLATEAU');
INSERT INTO natvoi VALUES ('PNT' , 'POINTE');
INSERT INTO natvoi VALUES ('PONT', 'PONT');
INSERT INTO natvoi VALUES ('PORQ', 'PORTIQUE');
INSERT INTO natvoi VALUES ('PORT', 'PORT');
INSERT INTO natvoi VALUES ('POST', 'POSTE');
INSERT INTO natvoi VALUES ('POT' , 'POTERNE');
INSERT INTO natvoi VALUES ('PROM', 'PROMENADE');
INSERT INTO natvoi VALUES ('PRT' , 'PETITE ROUTE');
INSERT INTO natvoi VALUES ('PRV' , 'PARVIS');
INSERT INTO natvoi VALUES ('PTA' , 'PETITE ALLEE');
INSERT INTO natvoi VALUES ('PTE' , 'PORTE');
INSERT INTO natvoi VALUES ('PTR' , 'PETITE RUE');
INSERT INTO natvoi VALUES ('PTTE', 'PLACETTE');
INSERT INTO natvoi VALUES ('QUA' , 'QUARTIER');
INSERT INTO natvoi VALUES ('QUAI', 'QUAI');
INSERT INTO natvoi VALUES ('RAC' , 'RACCOURCI');
INSERT INTO natvoi VALUES ('REM' , 'REMPART');
INSERT INTO natvoi VALUES ('RES' , 'RESIDENCE');
INSERT INTO natvoi VALUES ('RIVE', 'RIVE');
INSERT INTO natvoi VALUES ('RLE' , 'RUELLE');
INSERT INTO natvoi VALUES ('ROC' , 'ROCADE');
INSERT INTO natvoi VALUES ('RPE' , 'RAMPE');
INSERT INTO natvoi VALUES ('RPT' , 'ROND-POINT');
INSERT INTO natvoi VALUES ('RTD' , 'ROTONDE');
INSERT INTO natvoi VALUES ('RTE' , 'ROUTE');
INSERT INTO natvoi VALUES ('RUE' , 'RUE');
INSERT INTO natvoi VALUES ('RUET', 'RUETTE');
INSERT INTO natvoi VALUES ('RUIS', 'RUISSEAU');
INSERT INTO natvoi VALUES ('RULT', 'RUELLETTE');
INSERT INTO natvoi VALUES ('RVE' , 'RAVINE');
INSERT INTO natvoi VALUES ('SAS' , 'SAS');
INSERT INTO natvoi VALUES ('SEN' , 'SENTIER');
INSERT INTO natvoi VALUES ('SQ' , 'SQUARE');
INSERT INTO natvoi VALUES ('STDE', 'STADE');
INSERT INTO natvoi VALUES ('TER' , 'TERRE');
INSERT INTO natvoi VALUES ('TOUR', 'TOUR');
INSERT INTO natvoi VALUES ('TPL' , 'TERRE-PLEIN');
INSERT INTO natvoi VALUES ('TRA' , 'TRAVERSE');
INSERT INTO natvoi VALUES ('TRAB', 'TRABOULE');
INSERT INTO natvoi VALUES ('TRN' , 'TERRAIN');
INSERT INTO natvoi VALUES ('TRT' , 'TERTRE');
INSERT INTO natvoi VALUES ('TSSE', 'TERRASSE');
INSERT INTO natvoi VALUES ('TUN' , 'TUNNEL');
INSERT INTO natvoi VALUES ('VAL' , 'VAL');
INSERT INTO natvoi VALUES ('VALL', 'VALLON / VALLEE');
INSERT INTO natvoi VALUES ('VC' , 'VOIE COMMUNALE');
INSERT INTO natvoi VALUES ('VCHE', 'VIEUX CHEMIN');
INSERT INTO natvoi VALUES ('VEN' , 'VENELLE');
INSERT INTO natvoi VALUES ('VGE' , 'VILLAGE');
INSERT INTO natvoi VALUES ('VIA' , 'VIA');
INSERT INTO natvoi VALUES ('VIAD', 'VIADUC');
INSERT INTO natvoi VALUES ('VIL' , 'VILLE');
INSERT INTO natvoi VALUES ('VLA' , 'VILLA');
INSERT INTO natvoi VALUES ('VOIE', 'VOIE');
INSERT INTO natvoi VALUES ('VOIR', 'VOIRIE');
INSERT INTO natvoi VALUES ('VOUT', 'VOUTE');
INSERT INTO natvoi VALUES ('VOY' , 'VOYEUL');
INSERT INTO natvoi VALUES ('VTE' , 'VIEILLE ROUTE');
INSERT INTO natvoi VALUES ('ZA' , 'ZA');
INSERT INTO natvoi VALUES ('ZAC' , 'ZAC');
INSERT INTO natvoi VALUES ('ZAD' , 'ZAD');
INSERT INTO natvoi VALUES ('ZI' , 'ZI');
INSERT INTO natvoi VALUES ('ZONE', 'ZONE');
INSERT INTO natvoi VALUES ('ZUP' , 'ZUP');
-- nomenclature natvoiriv (voie)
INSERT INTO natvoiriv VALUES ('A', 'ensembles immobiliers');
INSERT INTO natvoiriv VALUES ('B', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('C', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('D', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('E', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('F', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('G', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('H', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('I', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('J', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('K', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('L', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('M', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('N', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('O', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('P', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('Q', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('R', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('S', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('T', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('U', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('V', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('W', 'lieux-dits');
INSERT INTO natvoiriv VALUES ('X', 'pseudo-voies');
INSERT INTO natvoiriv VALUES ('Y', 'voies provisoires à annuler');
INSERT INTO natvoiriv VALUES ('Z', 'voies provisoires à annuler');
INSERT INTO natvoiriv VALUES ('0', 'voies');
INSERT INTO natvoiriv VALUES ('1', 'voies');
INSERT INTO natvoiriv VALUES ('2', 'voies');
INSERT INTO natvoiriv VALUES ('3', 'voies');
INSERT INTO natvoiriv VALUES ('4', 'voies');
INSERT INTO natvoiriv VALUES ('5', 'voies');
INSERT INTO natvoiriv VALUES ('6', 'voies');
INSERT INTO natvoiriv VALUES ('7', 'voies');
INSERT INTO natvoiriv VALUES ('8', 'voies');
INSERT INTO natvoiriv VALUES ('9', 'voies');
-- nomenclature carvoi (voie)
INSERT INTO carvoi VALUES ('1', 'voie privée');
INSERT INTO carvoi VALUES ('0', 'voie publique');
-- nomenclature annul (voie)
INSERT INTO annul VALUES ('O', 'voie annulée sans transfert');
INSERT INTO annul VALUES ('Q', 'voie annulée avec transfert');
-- nomenclature typvoi (voie)
INSERT INTO typvoi VALUES ('1', 'voie');
INSERT INTO typvoi VALUES ('2', 'ensemble immobilier');
INSERT INTO typvoi VALUES ('3', 'lieu-dit');
INSERT INTO typvoi VALUES ('4', 'pseudo-voie');
INSERT INTO typvoi VALUES ('5', 'voie provisoire');
-- nomenclature indldnbat (voie)
INSERT INTO indldnbat VALUES ('1', 'lieu-dit non bâti');
INSERT INTO indldnbat VALUES ('0', 'lieu-dit bâti');
-- nomenclatures geo
INSERT INTO geo_qupl VALUES ('01', 'Plan régulier établi avant le 20/03/1980');
INSERT INTO geo_qupl VALUES ('02', 'Plan non régulier');
INSERT INTO geo_qupl VALUES ('03', 'Plan de qualité P3 ou classe de précision [10 cm]');
INSERT INTO geo_qupl VALUES ('04', 'Plan de qualité P4 ou classe de précision [20 cm]');
INSERT INTO geo_qupl VALUES ('05', 'Plan de qualité P5 ou classe de précision [40 cm]');
INSERT INTO geo_copl VALUES ('01', 'ancien plan');
INSERT INTO geo_copl VALUES ('02', 'plan rénové par voie de mise à jour');
INSERT INTO geo_copl VALUES ('03', 'plan rénové par voie de renouvellement');
INSERT INTO geo_copl VALUES ('04', 'plan rénové par voie de réfection');
INSERT INTO geo_copl VALUES ('05', 'plan remanié');
INSERT INTO geo_copl VALUES ('06', 'plan obtenu par remembrement ou AFAF');
INSERT INTO geo_copl VALUES ('07', 'plan obtenu par exploitation de plans d''arpentage');
INSERT INTO geo_inp VALUES ('00','inconnu');
INSERT INTO geo_inp VALUES ('01','numérisation manuelle');
INSERT INTO geo_inp VALUES ('02','numérisation par scanner');
INSERT INTO geo_inp VALUES ('03','incorporation directe sans numérisation préalable');
INSERT INTO geo_indp VALUES ('01', 'parcelle figurée au plan');
INSERT INTO geo_indp VALUES ('02', 'parcelle non figurée au plan');
INSERT INTO geo_dur VALUES ('01', 'bâti dur');
INSERT INTO geo_dur VALUES ('02', 'bâti léger');
INSERT INTO geo_can VALUES ('00', 'Inconnu');
INSERT INTO geo_can VALUES ('01', 'IGN');
INSERT INTO geo_can VALUES ('02', 'Cadastre');
INSERT INTO geo_can VALUES ('03', 'Commune');
INSERT INTO geo_can VALUES ('04', 'Équipement');
INSERT INTO geo_can VALUES ('05', 'Département');
INSERT INTO geo_can VALUES ('06', 'SNCF');
INSERT INTO geo_can VALUES ('07', 'RATP');
INSERT INTO geo_can VALUES ('08', 'EDF');
INSERT INTO geo_can VALUES ('09', 'GDF');
INSERT INTO geo_can VALUES ('10', 'Collectivité territoriale');
INSERT INTO geo_can VALUES ('98', 'Divers maîtres d''ouvrage');
INSERT INTO geo_ppln VALUES ('00', 'inconnu');
INSERT INTO geo_ppln VALUES ('01', 'canevas géodésique du 1er ordre');
INSERT INTO geo_ppln VALUES ('02', 'canevas géodésique du 2ème ordre');
INSERT INTO geo_ppln VALUES ('03', 'canevas géodésique du 3ème ordre');
INSERT INTO geo_ppln VALUES ('04', 'canevas géodésique du 4ème ordre');
INSERT INTO geo_ppln VALUES ('05', 'canevas complémentaire (5ème ordre)');
INSERT INTO geo_ppln VALUES ('06', 'canevas d''ensemble ou de stéréopréparation de précision');
INSERT INTO geo_ppln VALUES ('07', 'canevas d''ensemble ou de stéréopréparation ordinaire, y compris triangulation < 1980');
INSERT INTO geo_ppln VALUES ('08', 'canevas polygonal de précision');
INSERT INTO geo_ppln VALUES ('09', 'canevas polygonal ordinaire ou antérieur à 1980');
INSERT INTO geo_ppln VALUES ('10', 'aérocanevas ou charpente photogrammétrique');
INSERT INTO geo_ppln VALUES ('11', 'point de charpente');
INSERT INTO geo_ppln VALUES ('12', 'localisation planimétrique d''un point de nivellement');
INSERT INTO geo_ppln VALUES ('20', 'canevas pérenne ou de précision (depuis 2001)');
INSERT INTO geo_ppln VALUES ('21', 'canevas ordinaire ou préalable à AFAF ou de stéréopréparation pour une PdV inférieure au 1/4000 (depuis 2001)');
INSERT INTO geo_ppln VALUES ('22', 'canevas de stéréopréparation pour une PdV au 1/2500 (depuis 2001)');
INSERT INTO geo_ppln VALUES ('23', 'canevas d''appui pour géoréférencement (depuis 2001)');
INSERT INTO geo_ppln VALUES ('24', 'canevas géodésique RGF93-RRF');
INSERT INTO geo_ppln VALUES ('25', 'canevas géodésique RGF93-RBF');
INSERT INTO geo_ppln VALUES ('26', 'canevas géodésique RGF93-RDF');
INSERT INTO geo_ppln VALUES ('27', 'canevas géodésique WGS84-UTM Nord fuseau 20 (Guadeloupe et Martinique : 971 et 972)');
INSERT INTO geo_ppln VALUES ('28', 'canevas géodésique RGF95-UTM Nord fuseau 22 (Guyane : 973)');
INSERT INTO geo_ppln VALUES ('29', 'canevas géodésique RGR92-UTM Sud fuseau 40 (Réunion : 974)');
INSERT INTO geo_ppln VALUES ('30', 'canevas géodésique RGM04-UTM Sud fuseau 38 (Mayotte : 976)');
INSERT INTO geo_ppln VALUES ('98', 'point de levé cadastral');
INSERT INTO geo_palt VALUES ('00', 'inconnu');
INSERT INTO geo_palt VALUES ('01', 'canevas de nivellement direct de haute précision');
INSERT INTO geo_palt VALUES ('02', 'canevas de nivellement direct de précision');
INSERT INTO geo_palt VALUES ('03', 'canevas de nivellement direct ordinaire');
INSERT INTO geo_palt VALUES ('04', 'canevas de nivellement indirect géodésique');
INSERT INTO geo_palt VALUES ('05', 'canevas de nivellement indirect trigonométrique');
INSERT INTO geo_palt VALUES ('06', 'cote altimétrique obtenue par photogrammétrie');
INSERT INTO geo_palt VALUES ('98', 'autre canevas de nivellement');
INSERT INTO geo_map VALUES ('00', 'inconnu');
INSERT INTO geo_map VALUES ('01', 'non matérialisé');
INSERT INTO geo_map VALUES ('02', 'matérialisé');
INSERT INTO geo_map VALUES ('03', 'rivet ou boulon');
INSERT INTO geo_map VALUES ('04', 'croix gravée');
INSERT INTO geo_map VALUES ('06', 'pylône');
INSERT INTO geo_map VALUES ('07', 'borne');
INSERT INTO geo_map VALUES ('98', 'autre point net et stable, naturel ou artificiel');
INSERT INTO geo_sym VALUES ('12', 'calvaire');
INSERT INTO geo_sym VALUES ('13', 'texture transparente');
INSERT INTO geo_sym VALUES ('14', 'symbole d''église');
INSERT INTO geo_sym VALUES ('15', 'symbole de mosquée');
INSERT INTO geo_sym VALUES ('16', 'symbole de synagogue');
INSERT INTO geo_sym VALUES ('17', 'limite d''Etat');
INSERT INTO geo_sym VALUES ('18', 'limite de département');
INSERT INTO geo_sym VALUES ('19', 'amorce de limite de commune');
INSERT INTO geo_sym VALUES ('21', 'chemin');
INSERT INTO geo_sym VALUES ('22', 'amorce de voie');
INSERT INTO geo_sym VALUES ('23', 'trottoirs et sentiers');
INSERT INTO geo_sym VALUES ('24', 'gazoduc ou oléoduc');
INSERT INTO geo_sym VALUES ('25', 'aqueduc');
INSERT INTO geo_sym VALUES ('26', 'téléphérique');
INSERT INTO geo_sym VALUES ('27', 'ligne de transport de force');
INSERT INTO geo_sym VALUES ('29', 'rail de chemin de fer');
INSERT INTO geo_sym VALUES ('30', 'flèche de cours d''eau');
INSERT INTO geo_sym VALUES ('31', 'flèche de rattachement d''un numéro deparcelle ou de la référence d''un bâtiment sur le domaine non cadastré');
INSERT INTO geo_sym VALUES ('32', 'limite surfacique ne formant pas parcelle');
INSERT INTO geo_sym VALUES ('33', 'parapet de pont');
INSERT INTO geo_sym VALUES ('34', 'étang, lac, mare');
INSERT INTO geo_sym VALUES ('37', 'tunnel');
INSERT INTO geo_sym VALUES ('39', 'mur mitoyen');
INSERT INTO geo_sym VALUES ('40', 'mur non mitoyen');
INSERT INTO geo_sym VALUES ('41', 'fossé mitoyen');
INSERT INTO geo_sym VALUES ('42', 'fossé non mitoyen');
INSERT INTO geo_sym VALUES ('43', 'clôture mitoyenne');
INSERT INTO geo_sym VALUES ('44', 'clôture non mitoyenne');
INSERT INTO geo_sym VALUES ('45', 'haie mitoyenne');
INSERT INTO geo_sym VALUES ('46', 'haie non mitoyenne');
INSERT INTO geo_sym VALUES ('47', 'halte');
INSERT INTO geo_sym VALUES ('48', 'arrêt');
INSERT INTO geo_sym VALUES ('49', 'station');
INSERT INTO geo_sym VALUES ('50', 'pylône');
INSERT INTO geo_sym VALUES ('51', 'cimetière chrétien');
INSERT INTO geo_sym VALUES ('52', 'cimetière israélite');
INSERT INTO geo_sym VALUES ('53', 'cimetière musulman');
INSERT INTO geo_sym VALUES ('62', 'terrain de sports, petits ruisseaux');
INSERT INTO geo_sym VALUES ('63', 'puits');
INSERT INTO geo_sym VALUES ('64', 'parking, terrasse, surplomb');
INSERT INTO geo_sym VALUES ('65', 'piscine');
INSERT INTO geo_sym VALUES ('71', 'point géodésique borné');
INSERT INTO geo_sym VALUES ('72', 'point géodésique non borné');
INSERT INTO geo_sym VALUES ('73', 'point borné de canevas cadastral ordinaire/préalable à AFAF/appui prise de vues permettant confection plan de classe de précision 20cm');
INSERT INTO geo_sym VALUES ('74', 'point borné de canevas pérenne ou de précision');
INSERT INTO geo_sym VALUES ('75', 'point borné de canevas d''appui d''une prise de vues permettant la confection d''un plan de classe de précision 10cm');
INSERT INTO geo_sym VALUES ('76', 'point borné d''appui de géoréférencement');
INSERT INTO geo_sym VALUES ('77', 'repère NGF');
INSERT INTO geo_sym VALUES ('78', 'borne du NGF');
INSERT INTO geo_sym VALUES ('79', 'nivellement MRL');
INSERT INTO geo_sym VALUES ('80', 'autre repère de nivellement');
INSERT INTO geo_sym VALUES ('81', 'borne limite de commune');
INSERT INTO geo_sym VALUES ('98', 'objet ponctuel/linéaire divers');
-- nomenclatures Forme juridique (depuis 2013) : dformjur
INSERT INTO dformjur VALUES ('1000', Null, 'Entrepreneur individuel');
INSERT INTO dformjur VALUES ('1100', Null, 'Artisan-commerçant');
INSERT INTO dformjur VALUES ('1200', Null, 'Commerçant');
INSERT INTO dformjur VALUES ('1300', Null, 'Artisan');
INSERT INTO dformjur VALUES ('1400', Null, 'Officier public ou ministériel');
INSERT INTO dformjur VALUES ('1500', Null, 'Profession libérale');
INSERT INTO dformjur VALUES ('1600', Null, 'Exploitant agricole');
INSERT INTO dformjur VALUES ('1700', Null, 'Agent commercial');
INSERT INTO dformjur VALUES ('1800', Null, 'Associé gérant de Société');
INSERT INTO dformjur VALUES ('1900', Null, '(Autre) Personne physique');
INSERT INTO dformjur VALUES ('2110', Null, 'Indivision entre personnes physiques');
INSERT INTO dformjur VALUES ('2120', Null, 'Indivision avec personne morale');
INSERT INTO dformjur VALUES ('2210', 'STE', 'Société créée de fait entre personnes physiques');
INSERT INTO dformjur VALUES ('2220', 'STE', 'Société créée de fait avec personne morale');
INSERT INTO dformjur VALUES ('2310', 'STE', 'Société en participation entre personnes physiques');
INSERT INTO dformjur VALUES ('2320', 'STE', 'Société en participation avec personne morale');
INSERT INTO dformjur VALUES ('2385', 'STE', 'Société en participation de professions libérales');
INSERT INTO dformjur VALUES ('2400', Null, 'Fiducie');
INSERT INTO dformjur VALUES ('2700', 'PAR', 'Paroisse hors zone concordataire');
INSERT INTO dformjur VALUES ('2900', Null, 'Autre groupement de droit privé non doté de la personnalité morale');
INSERT INTO dformjur VALUES ('3110', Null, 'Représentation ou agence commerciale d''état ou organisme public étranger immatriculé au RCS');
INSERT INTO dformjur VALUES ('3120', 'STE', 'Société commerciale étrangère immatriculée au RCS');
INSERT INTO dformjur VALUES ('3205', Null, 'Organisation internationale');
INSERT INTO dformjur VALUES ('3210', Null, 'État, collectivité ou établissement public étranger');
INSERT INTO dformjur VALUES ('3220', 'STE', 'Société étrangère non immatriculée au RCS');
INSERT INTO dformjur VALUES ('3290', Null, 'Autre personne morale de droit étranger');
INSERT INTO dformjur VALUES ('4110', 'EPIC', 'Établissement public national à caractère industriel ou commercial doté d''un comptable public');
INSERT INTO dformjur VALUES ('4120', 'EPIC', 'Établissement public national à caractère industriel ou commercial non doté d''un comptable public');
INSERT INTO dformjur VALUES ('4130', Null, 'Exploitant public');
INSERT INTO dformjur VALUES ('4140', 'EPIC', 'Établissement public local à caractère industriel ou commercial');
INSERT INTO dformjur VALUES ('4150', 'REGI', 'Régie d''une collectivité locale à caractère industriel ou commercial');
INSERT INTO dformjur VALUES ('4160', 'BDF', 'Institution Banque de France');
INSERT INTO dformjur VALUES ('5191', 'SCCP', 'Société de caution mutuelle');
INSERT INTO dformjur VALUES ('5192', 'SCCP', 'Société coopérative de banque populaire');
INSERT INTO dformjur VALUES ('5193', 'SCCP', 'Caisse de crédit maritime mutuel');
INSERT INTO dformjur VALUES ('5194', 'SCCP', 'Caisse (fédérale) de crédit mutuel');
INSERT INTO dformjur VALUES ('5195', 'SCCP', 'Association coopérative inscrite (droit local Alsace Moselle)');
INSERT INTO dformjur VALUES ('5196', 'SCCP', 'Caisse d''épargne et de prévoyance à forme coopérative');
INSERT INTO dformjur VALUES ('5202', 'SNC', 'Société en nom collectif');
INSERT INTO dformjur VALUES ('5203', 'SNC', 'Société en nom collectif coopérative');
INSERT INTO dformjur VALUES ('5306', 'SCOM', 'Société en commandite simple');
INSERT INTO dformjur VALUES ('5307', 'SCOM', 'Société en commandite simple coopérative');
INSERT INTO dformjur VALUES ('5308', 'SCOM', 'Société en commandite par actions');
INSERT INTO dformjur VALUES ('5309', 'SCOM', 'Société en commandite par actions coopérative');
INSERT INTO dformjur VALUES ('5370', 'SCOM', 'Société de participations financières de profession libérale société en commandite par action');
INSERT INTO dformjur VALUES ('5385', 'SCOM', 'Société d''exercice libéral en commandite par actions');
INSERT INTO dformjur VALUES ('5410', 'SARL', 'SARL nationale');
INSERT INTO dformjur VALUES ('5415', 'SARL', 'SARL d''économie mixte');
INSERT INTO dformjur VALUES ('5422', 'SARL', 'SARL immobilière pour le commerce et l''industrie (SICOMI)');
INSERT INTO dformjur VALUES ('5426', 'SARL', 'SARL immobilière de gestion');
INSERT INTO dformjur VALUES ('5430', 'SARL', 'SARL d''aménagement foncier et d''équipement rural (SAFER)');
INSERT INTO dformjur VALUES ('5431', 'SARL', 'SARL mixte d''intérêt agricole (SMIA)');
INSERT INTO dformjur VALUES ('5432', 'SARL', 'SARL d''intérêt collectif agricole (SICA)');
INSERT INTO dformjur VALUES ('5442', 'SARL', 'SARL d''attribution');
INSERT INTO dformjur VALUES ('5443', 'SARL', 'SARL coopérative de construction');
INSERT INTO dformjur VALUES ('5451', 'SARL', 'SARL coopérative de consommation');
INSERT INTO dformjur VALUES ('5453', 'SARL', 'SARL coopérative artisanale');
INSERT INTO dformjur VALUES ('5454', 'SARL', 'SARL coopérative d''intérêt maritime');
INSERT INTO dformjur VALUES ('5455', 'SARL', 'SARL coopérative de transport');
INSERT INTO dformjur VALUES ('5458', 'SARL', 'SARL coopérative ouvrière de production et de crédit (SCOP)');
INSERT INTO dformjur VALUES ('5459', 'SARL', 'SARL union de sociétés coopératives');
INSERT INTO dformjur VALUES ('5460', 'SARL', 'Autre SARL coopérative');
INSERT INTO dformjur VALUES ('5470', 'SARL', 'Société de participations financières de profession libérale société à responsabilité limitée');
INSERT INTO dformjur VALUES ('5485', 'SLRL', 'Société d''exercice libéral à responsabilité limitée');
INSERT INTO dformjur VALUES ('5498', 'EURL', 'SARL unipersonnelle');
INSERT INTO dformjur VALUES ('5499', 'SARL', 'Société à responsabilité limitée (sans autre indication)');
INSERT INTO dformjur VALUES ('5505', 'SA', 'SA à participation ouvrière à conseil d''administration');
INSERT INTO dformjur VALUES ('5510', 'SA', 'SA nationale à conseil d''administration');
INSERT INTO dformjur VALUES ('5515', 'SEM', 'SA d''économie mixte à conseil d''administration');
INSERT INTO dformjur VALUES ('5520', 'STE', 'Fond à forme sociétale à conseil d’administration');
INSERT INTO dformjur VALUES ('5522', 'STE', 'SA immobilière pour le commerce et l''industrie (SICOMI) à conseil d''administration');
INSERT INTO dformjur VALUES ('5525', 'SA', 'SA immobilière d''investissement à conseil d''administration');
INSERT INTO dformjur VALUES ('5530', Null, 'SA d''aménagement foncier et d''équipement rural (SAFER) à conseil d''administration');
INSERT INTO dformjur VALUES ('5531', 'SA', 'Société anonyme mixte d''intérêt agricole (SMIA) à conseil d''administration');
INSERT INTO dformjur VALUES ('5532', 'SICA', 'SA d''intérêt collectif agricole (SICA) à conseil d''administration');
INSERT INTO dformjur VALUES ('5542', 'SA', 'SA d''attribution à conseil d''administration');
INSERT INTO dformjur VALUES ('5543', 'SA', 'SA coopérative de construction à conseil d''administration');
INSERT INTO dformjur VALUES ('5546', 'SA', 'SA de HLM à conseil d''administration');
INSERT INTO dformjur VALUES ('5547', 'SA', 'SA coopérative de production de HLM à conseil d''administration');
INSERT INTO dformjur VALUES ('5548', 'SA', 'SA de crédit immobilier à conseil d''administration');
INSERT INTO dformjur VALUES ('5551', 'SA', 'SA coopérative de consommation à conseil d''administration');
INSERT INTO dformjur VALUES ('5552', 'SA', 'SA coopérative de commerçants-détaillants à conseil d''administration');
INSERT INTO dformjur VALUES ('5553', 'SA', 'SA coopérative artisanale à conseil d''administration');
INSERT INTO dformjur VALUES ('5554', 'SA', 'SA coopérative (d''intérêt) maritime à conseil d''administration');
INSERT INTO dformjur VALUES ('5555', 'SA', 'SA coopérative de transport à conseil d''administration');
INSERT INTO dformjur VALUES ('5558', 'SCOP', 'SA coopérative ouvrière de production et de crédit (SCOP) à conseil d''administration');
INSERT INTO dformjur VALUES ('5559', 'SA', 'SA union de sociétés coopératives à conseil d''administration');
INSERT INTO dformjur VALUES ('5560', 'SA', 'Autre SA coopérative à conseil d''administration');
INSERT INTO dformjur VALUES ('5570', 'SA', 'Société de participations financières de profession libérale société anonyme à conseil d’administration');
INSERT INTO dformjur VALUES ('5585', 'STE', 'Société d''exercice libéral à forme anonyme à conseil d''administration');
INSERT INTO dformjur VALUES ('5599', 'SA', 'SA à conseil d''administration (s.a.i.)');
INSERT INTO dformjur VALUES ('5605', 'SA', 'SA à participation ouvrière à directoire');
INSERT INTO dformjur VALUES ('5610', 'SA', 'SA nationale à directoire');
INSERT INTO dformjur VALUES ('5615', 'SA', 'SA d''économie mixte à directoire');
INSERT INTO dformjur VALUES ('5620', 'STE', 'Fond à forme sociétale à directoire');
INSERT INTO dformjur VALUES ('5622', 'STE', 'SA immobilière pour le commerce et l''industrie (SICOMI) à directoire');
INSERT INTO dformjur VALUES ('5625', 'STE', 'SA immobilière d''investissement à directoire');
INSERT INTO dformjur VALUES ('5630', Null, 'Safer anonyme à directoire');
INSERT INTO dformjur VALUES ('5631', 'SA', 'SA mixte d''intérêt agricole (SMIA)');
INSERT INTO dformjur VALUES ('5632', 'SA', 'SA d''intérêt collectif agricole (SICA)');
INSERT INTO dformjur VALUES ('5642', 'SA', 'SA d''attribution à directoire');
INSERT INTO dformjur VALUES ('5643', 'SA', 'SA coopérative de construction à directoire');
INSERT INTO dformjur VALUES ('5646', 'SA', 'SA de HLM à directoire');
INSERT INTO dformjur VALUES ('5647', 'STE', 'Société coopérative de production de HLM anonyme à directoire');
INSERT INTO dformjur VALUES ('5648', 'SA', 'SA de crédit immobilier à directoire');
INSERT INTO dformjur VALUES ('5651', 'SA', 'SA coopérative de consommation à directoire');
INSERT INTO dformjur VALUES ('5652', 'SA', 'SA coopérative de commerçants-détaillants à directoire');
INSERT INTO dformjur VALUES ('5653', 'SA', 'SA coopérative artisanale à directoire');
INSERT INTO dformjur VALUES ('5654', 'SA', 'SA coopérative d''intérêt maritime à directoire');
INSERT INTO dformjur VALUES ('5655', 'SA', 'SA coopérative de transport à directoire');
INSERT INTO dformjur VALUES ('5658', 'SCOP', 'SA coopérative ouvrière de production et de crédit (SCOP) à directoire');
INSERT INTO dformjur VALUES ('5659', 'SA', 'SA union de sociétés coopératives à directoire');
INSERT INTO dformjur VALUES ('5660', 'SA', 'Autre SA coopérative à directoire');
INSERT INTO dformjur VALUES ('5670', 'SA', 'Société de participations financières de profession libérale société anonyme à directoire');
INSERT INTO dformjur VALUES ('5685', 'SA', 'Société d''exercice libéral à forme anonyme à directoire');
INSERT INTO dformjur VALUES ('5699', 'SA', 'SA à directoire (s.a.i.)');
INSERT INTO dformjur VALUES ('5710', 'SAS', 'SAS, société par actions simplifiée');
INSERT INTO dformjur VALUES ('5720', 'SAS', 'Société par actions simplifiée à associé unique ou société par actions simplifiée unipersonnelle');
INSERT INTO dformjur VALUES ('5770', 'SAS', 'Société de participations financières de profession libérale société par actions simplifiée');
INSERT INTO dformjur VALUES ('5785', 'SAS', 'Société d''exercice libéral par action simplifiée');
INSERT INTO dformjur VALUES ('5800', 'SE', 'Société européenne');
INSERT INTO dformjur VALUES ('6100', 'CEP', 'Caisse d''Épargne et de Prévoyance');
INSERT INTO dformjur VALUES ('6210', 'GIE', 'Groupement européen d''intérêt économique (GEIE)');
INSERT INTO dformjur VALUES ('6220', 'GIE', 'Groupement d''intérêt économique (GIE)');
INSERT INTO dformjur VALUES ('6316', 'CUMA', 'Coopérative d''utilisation de matériel agricole en commun (CUMA)');
INSERT INTO dformjur VALUES ('6317', 'SCA', 'Société coopérative agricole');
INSERT INTO dformjur VALUES ('6318', 'SCA', 'Union de sociétés coopératives agricoles');
INSERT INTO dformjur VALUES ('6411', 'SAM', 'Société d''assurance à forme mutuelle');
INSERT INTO dformjur VALUES ('6412', 'SAM', 'Société mutuelle d''assurance');
INSERT INTO dformjur VALUES ('6413', 'SAM', 'Union de sociétés mutuelles d''assurances');
INSERT INTO dformjur VALUES ('6414', 'SAM', 'Autre société non commerciale d''assurance');
INSERT INTO dformjur VALUES ('6511', 'STE', 'Société interprofessionnelle de soins ambulatoires');
INSERT INTO dformjur VALUES ('6521', 'SCPI', 'Société civile de placement collectif immobilier (SCPI)');
INSERT INTO dformjur VALUES ('6532', 'SICA', 'Société civile d''intérêt collectif agricole (SICA)');
INSERT INTO dformjur VALUES ('6533', 'GAEC', 'Groupement agricole d''exploitation en commun (GAEC)');
INSERT INTO dformjur VALUES ('6534', 'GFA', 'Groupement foncier agricole');
INSERT INTO dformjur VALUES ('6535', 'GAF', 'Groupement agricole foncier');
INSERT INTO dformjur VALUES ('6536', 'GFO', 'Groupement forestier');
INSERT INTO dformjur VALUES ('6537', 'GPAS', 'Groupement pastoral');
INSERT INTO dformjur VALUES ('6538', 'GFR', 'Groupement foncier et rural');
INSERT INTO dformjur VALUES ('6539', 'STE', 'Société civile foncière');
INSERT INTO dformjur VALUES ('6540', 'SCI', 'Société civile immobilière');
INSERT INTO dformjur VALUES ('6541', 'SCI', 'Société civile immobilière de construction-vente');
INSERT INTO dformjur VALUES ('6542', 'SC', 'Société civile d''attribution');
INSERT INTO dformjur VALUES ('6543', 'SC', 'Société civile coopérative de construction');
INSERT INTO dformjur VALUES ('6544', 'SCI', 'Société civile immobilière d'' accession progressive à la propriété');
INSERT INTO dformjur VALUES ('6551', 'SC', 'Société civile coopérative de consommation');
INSERT INTO dformjur VALUES ('6554', 'SC', 'Société civile coopérative d''intérêt maritime');
INSERT INTO dformjur VALUES ('6558', 'SC', 'Société civile coopérative entre médecins');
INSERT INTO dformjur VALUES ('6560', 'SC', 'Autre société civile coopérative');
INSERT INTO dformjur VALUES ('6561', 'SCP', 'SCP d''avocats');
INSERT INTO dformjur VALUES ('6562', 'SCP', 'SCP d''avocats aux conseils');
INSERT INTO dformjur VALUES ('6563', 'SCP', 'SCP d''avoués d''appel');
INSERT INTO dformjur VALUES ('6564', 'SCP', 'SCP d''huissiers');
INSERT INTO dformjur VALUES ('6565', 'SCP', 'SCP de notaires');
INSERT INTO dformjur VALUES ('6566', 'SCP', 'SCP de commissaires-priseurs');
INSERT INTO dformjur VALUES ('6567', 'SCP', 'SCP de greffiers de tribunal de commerce');
INSERT INTO dformjur VALUES ('6568', 'SCP', 'SCP de conseils juridiques');
INSERT INTO dformjur VALUES ('6569', 'SCP', 'SCP de commissaires aux comptes');
INSERT INTO dformjur VALUES ('6571', 'SCP', 'SCP de médecins');
INSERT INTO dformjur VALUES ('6572', 'SCP', 'SCP de dentistes');
INSERT INTO dformjur VALUES ('6573', 'SCP', 'SCP d''infirmiers');
INSERT INTO dformjur VALUES ('6574', 'SCP', 'SCP de masseurs-kinésithérapeutes');
INSERT INTO dformjur VALUES ('6575', 'SCP', 'SCP de directeurs de laboratoire d''analyse médicale');
INSERT INTO dformjur VALUES ('6576', 'SCP', 'SCP de vétérinaires');
INSERT INTO dformjur VALUES ('6577', 'SCP', 'SCP de géomètres experts');
INSERT INTO dformjur VALUES ('6578', 'SCP', 'SCP d''architectes');
INSERT INTO dformjur VALUES ('6585', 'SC', 'Autre société civile professionnelle');
INSERT INTO dformjur VALUES ('6588', 'SCM', 'Société civile laitière');
INSERT INTO dformjur VALUES ('6589', 'CCM', 'Société civile de moyens');
INSERT INTO dformjur VALUES ('6595', 'CCAM', 'Caisse locale de crédit mutuel');
INSERT INTO dformjur VALUES ('6596', 'SCEA', 'Caisse de crédit agricole mutuel');
INSERT INTO dformjur VALUES ('6597', 'EARL', 'Société civile d''exploitation agricole');
INSERT INTO dformjur VALUES ('6598', 'SC', 'Exploitation agricole à responsabilité limitée');
INSERT INTO dformjur VALUES ('6599', Null, 'Autre société civile');
INSERT INTO dformjur VALUES ('6901', Null, 'Autre personne de droit privé inscrite au registre du commerce et des sociétés');
INSERT INTO dformjur VALUES ('7111', Null, 'Autorité constitutionnelle');
INSERT INTO dformjur VALUES ('7112', 'ETAT', 'Autorité administrative ou publique indépendante');
INSERT INTO dformjur VALUES ('7113', 'ETAT', 'Ministère');
INSERT INTO dformjur VALUES ('7120', 'ETAT', 'Service central d''un ministère');
INSERT INTO dformjur VALUES ('7150', 'ETAT', 'Service du ministère de la Défense');
INSERT INTO dformjur VALUES ('7160', 'ETAT', 'Service déconcentré à compétence nationale d''un ministère (horsDéfense)');
INSERT INTO dformjur VALUES ('7171', 'ETAT', 'Service déconcentré de l''État à compétence (inter) régionale');
INSERT INTO dformjur VALUES ('7172', 'ETAT', 'Service déconcentré de l''État à compétence (inter) départementale');
INSERT INTO dformjur VALUES ('7179', 'ETAT', '(Autre) Service déconcentré de l''État à compétence territoriale');
INSERT INTO dformjur VALUES ('7190', Null, 'Ecole nationale non dotée de la personnalité morale');
INSERT INTO dformjur VALUES ('7210', 'COM', 'Commune et commune nouvelle');
INSERT INTO dformjur VALUES ('7220', 'DEPT', 'Département');
INSERT INTO dformjur VALUES ('7225', 'CTOM', 'Territoire d''Outre-mer');
INSERT INTO dformjur VALUES ('7229', 'COLL', '(Autre) Collectivité territoriale');
INSERT INTO dformjur VALUES ('7230', 'COLL', 'Région');
INSERT INTO dformjur VALUES ('7312', Null, 'Commune associée et commune déléguée');
INSERT INTO dformjur VALUES ('7313', Null, 'Section de commune');
INSERT INTO dformjur VALUES ('7314', Null, 'Ensemble urbain');
INSERT INTO dformjur VALUES ('7321', 'ASS', 'Association syndicale autorisée');
INSERT INTO dformjur VALUES ('7322', 'AFU', 'Association foncière urbaine');
INSERT INTO dformjur VALUES ('7323', 'AFR', 'Association foncière de remembrement');
INSERT INTO dformjur VALUES ('7331', 'EP', 'Établissement public local d''enseignement');
INSERT INTO dformjur VALUES ('7340', Null, 'Pôle métropolitain');
INSERT INTO dformjur VALUES ('7341', Null, 'Secteur de commune');
INSERT INTO dformjur VALUES ('7342', 'DISU', 'District urbain');
INSERT INTO dformjur VALUES ('7343', 'COMU', 'Communauté urbaine');
INSERT INTO dformjur VALUES ('7344', Null, 'Métropole');
INSERT INTO dformjur VALUES ('7345', 'SIVO', 'Syndicat intercommunal à vocation multiple (SIVOM)');
INSERT INTO dformjur VALUES ('7346', 'CCOM', 'Communauté de communes');
INSERT INTO dformjur VALUES ('7347', 'COVI', 'Communauté de villes');
INSERT INTO dformjur VALUES ('7348', 'COAG', 'Communauté d''agglomération');
INSERT INTO dformjur VALUES ('7349', Null, 'Autre établissement public local de coopération non spécialisé ou entente');
INSERT INTO dformjur VALUES ('7351', Null, 'Institution interdépartementale ou entente');
INSERT INTO dformjur VALUES ('7352', Null, 'Institution interrégionale ou entente');
INSERT INTO dformjur VALUES ('7353', 'SIVU', 'Syndicat intercommunal à vocation unique (SIVU)');
INSERT INTO dformjur VALUES ('7354', 'SYMC', 'Syndicat mixte fermé');
INSERT INTO dformjur VALUES ('7355', 'SYMI', 'Syndicat mixte ouvert');
INSERT INTO dformjur VALUES ('7356', Null, 'Commission syndicale pour la gestion des biens indivis descommunes');
INSERT INTO dformjur VALUES ('7357', 'PETR', 'Pôle d’équilibre territorial');
INSERT INTO dformjur VALUES ('7361', 'CCAS', 'Centre communal d''action sociale');
INSERT INTO dformjur VALUES ('7362', Null, 'Caisse des écoles');
INSERT INTO dformjur VALUES ('7363', 'CCMU', 'Caisse de crédit municipal');
INSERT INTO dformjur VALUES ('7364', Null, 'Établissement d''hospitalisation');
INSERT INTO dformjur VALUES ('7365', Null, 'Syndicat inter hospitalier');
INSERT INTO dformjur VALUES ('7366', Null, 'Établissement public local social et médico-social');
INSERT INTO dformjur VALUES ('7367', 'CIAS', 'Centre intercommunal d’action social');
INSERT INTO dformjur VALUES ('7371', 'OHLM', 'Office public d''habitation à loyer modéré (OPHLM)');
INSERT INTO dformjur VALUES ('7372', 'SDIS', 'Service départemental d''incendie');
INSERT INTO dformjur VALUES ('7373', 'EP', 'Établissement public local culturel');
INSERT INTO dformjur VALUES ('7378', 'EPA', 'Régie d''une collectivité locale à caractère administratif');
INSERT INTO dformjur VALUES ('7379', 'EPA', '(Autre) Établissement public administratif local');
INSERT INTO dformjur VALUES ('7381', 'EPA', 'Organisme consulaire');
INSERT INTO dformjur VALUES ('7382', 'EPA', 'Établissement public national ayant fonction d''administration centrale');
INSERT INTO dformjur VALUES ('7383', 'EPA', 'Établissement public national à caractère scientifique culturel et professionnel');
INSERT INTO dformjur VALUES ('7384', 'EPA', 'Autre établissement public national d''enseignement');
INSERT INTO dformjur VALUES ('7385', 'EPA', 'Autre établissement public national administratif à compétence territoriale limitée');
INSERT INTO dformjur VALUES ('7389', 'EPA', 'Établissement public national à caractère administratif');
INSERT INTO dformjur VALUES ('7410', 'GIP', 'Groupement d''intérêt public (GIP)');
INSERT INTO dformjur VALUES ('7430', 'EPA', 'Établissement public des cultes d''Alsace-Lorraine');
INSERT INTO dformjur VALUES ('7450', 'EPA', 'Etablissement public administratif, cercle et foyer dans les armées');
INSERT INTO dformjur VALUES ('7470', 'GCS', 'Groupement de coopération sanitaire à gestion publique');
INSERT INTO dformjur VALUES ('7490', Null, 'Autre personne morale de droit administratif');
INSERT INTO dformjur VALUES ('7510', Null, 'Service d''une collectivité locale à comptabilité distincte');
INSERT INTO dformjur VALUES ('7520', Null, 'Régie d''une collectivité locale non dotée de la personnalité morale');
INSERT INTO dformjur VALUES ('8110', 'SSRG', 'Régime général de la Sécurité Sociale');
INSERT INTO dformjur VALUES ('8120', 'SSRS', 'Régime spécial de Sécurité Sociale');
INSERT INTO dformjur VALUES ('8130', 'IRC', 'Institution de retraite complémentaire');
INSERT INTO dformjur VALUES ('8140', 'MSA', 'Mutualité sociale agricole');
INSERT INTO dformjur VALUES ('8150', Null, 'Régime maladie des non-salariés non agricoles');
INSERT INTO dformjur VALUES ('8160', Null, 'Régime vieillesse ne dépendant pas du régime général de laSécurité Sociale');
INSERT INTO dformjur VALUES ('8170', Null, 'Régime d''assurance chômage');
INSERT INTO dformjur VALUES ('8190', Null, 'Autre régime de prévoyance sociale');
INSERT INTO dformjur VALUES ('8210', 'MUT', 'Mutuelle');
INSERT INTO dformjur VALUES ('8250', 'MUT', 'Assurance mutuelle agricole');
INSERT INTO dformjur VALUES ('8290', 'MUT', 'Autre organisme mutualiste');
INSERT INTO dformjur VALUES ('8310', 'COME', 'Comité central d''entreprise');
INSERT INTO dformjur VALUES ('8311', 'COME', 'Comité d''établissement');
INSERT INTO dformjur VALUES ('8410', 'OPRO', 'Syndicat de salariés');
INSERT INTO dformjur VALUES ('8420', 'OPRO', 'Syndicat patronal');
INSERT INTO dformjur VALUES ('8450', 'OPRO', 'Ordre professionnel ou assimilé');
INSERT INTO dformjur VALUES ('8470', 'OPRO', 'Centre technique industriel ou comité professionnel du développement économique');
INSERT INTO dformjur VALUES ('8490', 'OPRO', 'Autre organisme professionnel');
INSERT INTO dformjur VALUES ('8510', 'IP', 'Institution de prévoyance');
INSERT INTO dformjur VALUES ('8520', 'IRS', 'Institution de retraite supplémentaire');
INSERT INTO dformjur VALUES ('9110', 'SYCO', 'Syndicat de copropriété');
INSERT INTO dformjur VALUES ('9150', 'ASS', 'Association syndicale libre');
INSERT INTO dformjur VALUES ('9210', 'ASS', 'Association non déclarée');
INSERT INTO dformjur VALUES ('9220', 'ASS', 'Association déclarée');
INSERT INTO dformjur VALUES ('9221', 'ASS', 'Association déclarée d''insertion par l''économique');
INSERT INTO dformjur VALUES ('9222', 'ASS', 'Association intermédiaire');
INSERT INTO dformjur VALUES ('9223', 'ASS', 'Groupement d''employeurs');
INSERT INTO dformjur VALUES ('9224', 'ASS', 'Association d''avocats à responsabilité professionnelle individuelle');
INSERT INTO dformjur VALUES ('9230', 'ASS', 'Association déclarée, reconnue d''utilité publique');
INSERT INTO dformjur VALUES ('9240', 'ASS', 'Congrégation');
INSERT INTO dformjur VALUES ('9260', 'ASS', 'Association de droit local (Bas-Rhin, Haut-Rhin et Moselle)');
INSERT INTO dformjur VALUES ('9300', 'FON', 'Fondation');
INSERT INTO dformjur VALUES ('9900', Null, 'Autre personne morale de droit privé');
INSERT INTO dformjur VALUES ('9970', 'GCS', 'Groupement de coopération sanitaire à gestion privée');
INSERT INTO dformjur VALUES ('F001', Null, 'Les copropriétaires');
INSERT INTO dformjur VALUES ('F002', Null, 'Les associés de sci');
INSERT INTO dformjur VALUES ('F003', Null, 'Professionnels très pauvres du foncier');
-- nomenclatures Code catégorie du local (depuis 2017) : ccocac
INSERT INTO ccocac VALUES ('MAG1', 'Boutiques et magasins sur rue (exemples : commerces, restaurants, cafés ou agences bancaires pour une surface principale inférieure à 400 m²)');
INSERT INTO ccocac VALUES ('MAG2', 'Commerces sans accès direct sur la rue (surface principale inférieure à 400 m²)');
INSERT INTO ccocac VALUES ('MAG3', 'Magasins appartenant à un ensemble commercial(surface principale inférieure à 400 m²)');
INSERT INTO ccocac VALUES ('MAG4', 'Magasins de grande surface(surface principale comprise entre 400 et 2 499 m²)');
INSERT INTO ccocac VALUES ('MAG5', 'Magasins de très grande surface (surface principale égale ou supérieure à 2 500 m²)');
INSERT INTO ccocac VALUES ('MAG6', 'Stations - service, stations de lavage et assimilables');
INSERT INTO ccocac VALUES ('MAG7', 'Marchés');
INSERT INTO ccocac VALUES ('BUR1', 'Locaux à usage de bureaux d’agencement ancien');
INSERT INTO ccocac VALUES ('BUR2', 'Locaux à usage de bureaux d’agencement récent');
INSERT INTO ccocac VALUES ('BUR3', 'Locaux assimilables à des bureaux mais présentant des aménagements spécifiques');
INSERT INTO ccocac VALUES ('DEP1', 'Lieux de dépôt à ciel ouvert et terrains à usage commercial ou industriel');
INSERT INTO ccocac VALUES ('DEP2', 'Lieux de dépôt couverts');
INSERT INTO ccocac VALUES ('DEP3', 'Parcs de stationnement à ciel ouvert');
INSERT INTO ccocac VALUES ('DEP4', 'Parcs de stationnement couverts');
INSERT INTO ccocac VALUES ('DEP5', 'Installations spécifiques de stockage');
INSERT INTO ccocac VALUES ('ATE1', 'Ateliers artisanaux');
INSERT INTO ccocac VALUES ('ATE2', 'Locaux utilisés pour une activité de transformation, de manutention ou de maintenance');
INSERT INTO ccocac VALUES ('ATE3', 'Chenils, viviers et autres locaux assimilables');
INSERT INTO ccocac VALUES ('HOT1', 'Hôtels « confort » (4 étoiles et plus, ou confort identique)');
INSERT INTO ccocac VALUES ('HOT2', 'Hôtels « supérieur » (2 ou 3 étoiles, ou confort identique)');
INSERT INTO ccocac VALUES ('HOT3', 'Hôtels « standard » (1 étoile, ou confort identique)');
INSERT INTO ccocac VALUES ('HOT4', 'Foyers d’hébergement, centres d’accueil, auberges de jeunesse');
INSERT INTO ccocac VALUES ('HOT5', 'Hôtels clubs, villages de vacances et résidences hôtelières');
INSERT INTO ccocac VALUES ('SPE1', 'Salles de spectacles, musées et locaux assimilables');
INSERT INTO ccocac VALUES ('SPE2', 'Établissements ou terrains affectés à la pratique d’un sport ou à usage de spectacles sportifs');
INSERT INTO ccocac VALUES ('SPE3', 'Salles de loisirs diverses');
INSERT INTO ccocac VALUES ('SPE4', 'Terrains de camping confortables (3 étoiles et plus, ou confort identique)');
INSERT INTO ccocac VALUES ('SPE5', 'Terrains de camping ordinaires(1 ou 2 étoiles, ou confort identique)');
INSERT INTO ccocac VALUES ('SPE6', 'Établissements de détente et de bien - être');
INSERT INTO ccocac VALUES ('SPE7', 'Centres de loisirs, centres de colonies de vacances, maisons de jeunes');
INSERT INTO ccocac VALUES ('ENS1', 'Écoles et institutions privées exploitées dans un but non lucratif');
INSERT INTO ccocac VALUES ('ENS2', 'Établissements d’enseignement à but lucratif');
INSERT INTO ccocac VALUES ('CLI1', 'Cliniques et Établissements hospitaliers');
INSERT INTO ccocac VALUES ('CLI2', 'Centres médico-sociaux, centres de soins, crèches, halte - garderies');
INSERT INTO ccocac VALUES ('CLI3', 'Maisons de repos, maisons de retraite (médicalisées ou non) et locaux assimilables');
INSERT INTO ccocac VALUES ('CLI4', 'Centres de rééducation, de thalassothérapie, établissements thermaux');
INSERT INTO ccocac VALUES ('IND1', 'Établissements industriels nécessitant un outillage important autres que les carrières et assimilés');
INSERT INTO ccocac VALUES ('IND2', 'carrières et Établissements assimilables');
INSERT INTO ccocac VALUES ('EXC1', 'Locaux ne relevant d’aucune des catégories précédentes par leurs caractéristiques sortant de l’ordinaire');
INSERT INTO ccocac VALUES ('MAG', 'Magasins et lieux de vente');
INSERT INTO ccocac VALUES ('BUR', 'Bureaux et locaux divers assimilables');
INSERT INTO ccocac VALUES ('DEP', 'Lieux de dépôt ou stockage et parcs de stationnement');
INSERT INTO ccocac VALUES ('ATE', 'Ateliers et autres locaux assimilables');
INSERT INTO ccocac VALUES ('HOT', 'Hôtels et locaux assimilables');
INSERT INTO ccocac VALUES ('SPE', 'Établissements de spectacles, de sports et de loisirs et autres locaux assimilables');
INSERT INTO ccocac VALUES ('ENS', 'Établissements d''enseignement et locaux assimilables');
INSERT INTO ccocac VALUES ('CLI', 'Cliniques et Établissements du secteur sanitaire et social');
INSERT INTO ccocac VALUES ('IND', 'Établissements industriels n''étant pas évaluées selon la méthode comptable');
INSERT INTO ccocac VALUES ('EXC', 'Autres établissements');
-- nomenclatures Code NAF pour les locaux professionnels (depuis 2011) : cconac
INSERT INTO cconac VALUES ('0111Z','Culture de céréales (à l''exception du riz), de légumineuses et de graines oléagineuses');
INSERT INTO cconac VALUES ('0112Z','Culture du riz');
INSERT INTO cconac VALUES ('0113Z','Culture de légumes, de melons, de racines et de tubercules');
INSERT INTO cconac VALUES ('0114Z','Culture de la canne à sucre');
INSERT INTO cconac VALUES ('0115Z','Culture du tabac');
INSERT INTO cconac VALUES ('0116Z','Culture de plantes à fibres');
INSERT INTO cconac VALUES ('0119Z','Autres cultures non permanentes');
INSERT INTO cconac VALUES ('0121Z','Culture de la vigne');
INSERT INTO cconac VALUES ('0122Z','Culture de fruits tropicaux et subtropicaux');
INSERT INTO cconac VALUES ('0123Z','Culture d''agrumes');
INSERT INTO cconac VALUES ('0124Z','Culture de fruits à pépins et à noyau');
INSERT INTO cconac VALUES ('0125Z','Culture d''autres fruits d''arbres ou d''arbustes et de fruits à coque');
INSERT INTO cconac VALUES ('0126Z','Culture de fruits oléagineux');
INSERT INTO cconac VALUES ('0127Z','Culture de plantes à boissons');
INSERT INTO cconac VALUES ('0128Z','Culture de plantes à épices, aromatiques, médicinales et pharmaceutiques');
INSERT INTO cconac VALUES ('0129Z','Autres cultures permanentes');
INSERT INTO cconac VALUES ('0130Z','Reproduction de plantes');
INSERT INTO cconac VALUES ('0141Z','Élevage de vaches laitières');
INSERT INTO cconac VALUES ('0142Z','Élevage d''autres bovins et de buffles');
INSERT INTO cconac VALUES ('0143Z','Élevage de chevaux et d''autres équidés');
INSERT INTO cconac VALUES ('0144Z','Élevage de chameaux et d''autres camélides');
INSERT INTO cconac VALUES ('0145Z','Élevage d''ovins et de caprins');
INSERT INTO cconac VALUES ('0146Z','Élevage de porcins');
INSERT INTO cconac VALUES ('0147Z','Élevage de volailles');
INSERT INTO cconac VALUES ('0149Z','Élevage d''autres animaux');
INSERT INTO cconac VALUES ('0150Z','Culture et élevage associés');
INSERT INTO cconac VALUES ('0161Z','Activités de soutien aux cultures');
INSERT INTO cconac VALUES ('0162Z','Activités de soutien a la production animale');
INSERT INTO cconac VALUES ('0163Z','Traitement primaire des récoltes');
INSERT INTO cconac VALUES ('0164Z','Traitement des semences');
INSERT INTO cconac VALUES ('0170Z','Chasse, piégeage et services annexes');
INSERT INTO cconac VALUES ('0210Z','Sylviculture et autres activités forestières');
INSERT INTO cconac VALUES ('0220Z','Exploitation forestière');
INSERT INTO cconac VALUES ('0230Z','Récolte de produits forestiers non ligneux poussant à l''état sauvage');
INSERT INTO cconac VALUES ('0240Z','Services de soutien à l''exploitation forestière');
INSERT INTO cconac VALUES ('0311Z','Pêche en mer');
INSERT INTO cconac VALUES ('0312Z','Pêche en eau douce');
INSERT INTO cconac VALUES ('0321Z','Aquaculture en mer');
INSERT INTO cconac VALUES ('0322Z','Aquaculture en eau douce');
INSERT INTO cconac VALUES ('0510Z','Extraction de houille');
INSERT INTO cconac VALUES ('0520Z','Extraction de lignite');
INSERT INTO cconac VALUES ('0610Z','Extraction de pétrole brut');
INSERT INTO cconac VALUES ('0620Z','Extraction de gaz naturel');
INSERT INTO cconac VALUES ('0710Z','Extraction de minerais de fer');
INSERT INTO cconac VALUES ('0721Z','Extraction de minerais d''uranium et de thorium');
INSERT INTO cconac VALUES ('0729Z','Extraction d''autres minerais de métaux non ferreux');
INSERT INTO cconac VALUES ('0811Z','Extraction de pierres ornementales et de construction, de calcaire industriel, de gypse, de craie et d''ardoise');
INSERT INTO cconac VALUES ('0812Z','Exploitation de gravières et sablières, extraction d''argiles et de kaolin');
INSERT INTO cconac VALUES ('0891Z','Extraction des minéraux chimiques et d''engrais minéraux');
INSERT INTO cconac VALUES ('0892Z','Extraction de tourbe');
INSERT INTO cconac VALUES ('0893Z','Production de sel');
INSERT INTO cconac VALUES ('0899Z','Autres activités extractives n.c.a.');
INSERT INTO cconac VALUES ('0910Z','Activités de soutien a l''extraction d''hydrocarbures');
INSERT INTO cconac VALUES ('0990Z','Activités de soutien aux autres industries extractives');
INSERT INTO cconac VALUES ('1011Z','Transformation et conservation de la viande de boucherie');
INSERT INTO cconac VALUES ('1012Z','Transformation et conservation de la viande de volaille');
INSERT INTO cconac VALUES ('1013A','Préparation industrielle de produits à base de viande');
INSERT INTO cconac VALUES ('1013B','Charcuterie');
INSERT INTO cconac VALUES ('1020Z','Transformation et conservation de poisson, de crustacés et de mollusques');
INSERT INTO cconac VALUES ('1031Z','Transformation et conservation de pommes de terre');
INSERT INTO cconac VALUES ('1032Z','Préparation de jus de fruits et légumes');
INSERT INTO cconac VALUES ('1039A','Autre transformation et conservation de légumes');
INSERT INTO cconac VALUES ('1039B','Transformation et conservation de fruits');
INSERT INTO cconac VALUES ('1041A','Fabrication d''huiles et graisses brutes');
INSERT INTO cconac VALUES ('1041B','Fabrication d''huiles et graisses raffinées');
INSERT INTO cconac VALUES ('1042Z','Fabrication de margarine et graisses comestibles similaires');
INSERT INTO cconac VALUES ('1051A','Fabrication de lait liquide et de produits frais');
INSERT INTO cconac VALUES ('1051B','Fabrication de beurre');
INSERT INTO cconac VALUES ('1051C','Fabrication de fromage');
INSERT INTO cconac VALUES ('1051D','Fabrication d''autres produits laitiers');
INSERT INTO cconac VALUES ('1052Z','Fabrication de glaces et sorbets');
INSERT INTO cconac VALUES ('1061A','Meunerie');
INSERT INTO cconac VALUES ('1061B','Autres activités du travail des grains');
INSERT INTO cconac VALUES ('1062Z','Fabrication de produits amylaces');
INSERT INTO cconac VALUES ('1071A','Fabrication industrielle de pain et de patisserie fraîche');
INSERT INTO cconac VALUES ('1071B','Cuisson de produits de boulangerie');
INSERT INTO cconac VALUES ('1071C','Boulangerie et boulangerie-pâtisserie');
INSERT INTO cconac VALUES ('1071D','Pâtisserie');
INSERT INTO cconac VALUES ('1072Z','Fabrication d;e biscuits, biscottes et patisseries de conservation');
INSERT INTO cconac VALUES ('1073Z','Fabrication de pates alimentaires');
INSERT INTO cconac VALUES ('1081Z','Fabrication de sucre');
INSERT INTO cconac VALUES ('1082Z','Fabrication de cacao, chocolat et de produits de confiserie');
INSERT INTO cconac VALUES ('1083Z','Transformation du thé et du café');
INSERT INTO cconac VALUES ('1084Z','Fabrication de condiments et assaisonnements');
INSERT INTO cconac VALUES ('1085Z','Fabrication de plats préparés');
INSERT INTO cconac VALUES ('1086Z','Fabrication d''aliments homogéneisés et diététiques');
INSERT INTO cconac VALUES ('1089Z','Fabrication d''autres produits alimentaires n.c.a.');
INSERT INTO cconac VALUES ('1091Z','Fabrication d''aliments pour animaux de ferme');
INSERT INTO cconac VALUES ('1092Z','Fabrication d''aliments pour animaux de compagnie');
INSERT INTO cconac VALUES ('1101Z','Production de boissons alcooliques distillées');
INSERT INTO cconac VALUES ('1102A','Fabrication de vins effervescents');
INSERT INTO cconac VALUES ('1102B','Vinification');
INSERT INTO cconac VALUES ('1103Z','Fabrication de cidre et de vins de fruits');
INSERT INTO cconac VALUES ('1104Z','Production d autres boissons fermentees non distillees');
INSERT INTO cconac VALUES ('1105Z','Fabrication de bière');
INSERT INTO cconac VALUES ('1106Z','Fabrication de malt');
INSERT INTO cconac VALUES ('1107A','Industrie des eaux de table');
INSERT INTO cconac VALUES ('1107B','Production de boissons rafraîchissantes');
INSERT INTO cconac VALUES ('1200Z','Fabrication de produits à base de tabac');
INSERT INTO cconac VALUES ('1310Z','Préparation de fibres textiles et filature');
INSERT INTO cconac VALUES ('1320Z','Tissage');
INSERT INTO cconac VALUES ('1330Z','Ennoblissement textile');
INSERT INTO cconac VALUES ('1391Z','Fabrication d''étoffes à mailles');
INSERT INTO cconac VALUES ('1392Z','Fabrication d''articles textiles, sauf habillement');
INSERT INTO cconac VALUES ('1393Z','Fabrication de tapis et moquettes');
INSERT INTO cconac VALUES ('1394Z','Fabrication de ficelles, cordes et filets');
INSERT INTO cconac VALUES ('1395Z','Fabrication de non-tissés, sauf habillement');
INSERT INTO cconac VALUES ('1396Z','Fabrication d''autres textiles techniques et industriels');
INSERT INTO cconac VALUES ('1399Z','Fabrication d''autres textiles n.c.a.');
INSERT INTO cconac VALUES ('1411Z','Fabrication de vêtements en cuir');
INSERT INTO cconac VALUES ('1412Z','Fabrication de vêtements de travail');
INSERT INTO cconac VALUES ('1413Z','Fabrication de vêtements de dessus');
INSERT INTO cconac VALUES ('1414Z','Fabrication de vêtements de dessous');
INSERT INTO cconac VALUES ('1419Z','Fabrication d''autres vêtements et accessoires');
INSERT INTO cconac VALUES ('1420Z','Fabrication d''articles en fourrure');
INSERT INTO cconac VALUES ('1431Z','Fabrication d''articles chaussants à mailles');
INSERT INTO cconac VALUES ('1439Z','Fabrication d''autres articles à mailles');
INSERT INTO cconac VALUES ('1511Z','Apprêt et tannage des cuirs ; préparation et teinture des fourrures');
INSERT INTO cconac VALUES ('1512Z','Fabrication d''articles de voyage, de maroquinerie et de sellerie');
INSERT INTO cconac VALUES ('1520Z','Fabrication de chaussures');
INSERT INTO cconac VALUES ('1610A','Sciage et rabotage du bois, hors imprégnation');
INSERT INTO cconac VALUES ('1610B','Imprégnation du bois');
INSERT INTO cconac VALUES ('1621Z','Fabrication de placage et de panneaux de bois');
INSERT INTO cconac VALUES ('1622Z','Fabrication de parquets assemblés');
INSERT INTO cconac VALUES ('1623Z','Fabrication de charpentes et d''autres menuiseries');
INSERT INTO cconac VALUES ('1624Z','Fabrication d''emballages en bois');
INSERT INTO cconac VALUES ('1629Z','Fabrication d''objets divers en bois ; fabrication d objets en liège, vannerie et sparterie');
INSERT INTO cconac VALUES ('1711Z','Fabrication de pate à papier');
INSERT INTO cconac VALUES ('1712Z','Fabrication de papier et de carton');
INSERT INTO cconac VALUES ('1721A','Fabrication de carton ondulé');
INSERT INTO cconac VALUES ('1721B','Fabrication de cartonnages');
INSERT INTO cconac VALUES ('1721C','Fabrication d''emballages en papier');
INSERT INTO cconac VALUES ('1722Z','Fabrication d''articles en papier à usage sanitaire ou domestique');
INSERT INTO cconac VALUES ('1723Z','Fabrication d''articles de papeterie');
INSERT INTO cconac VALUES ('1724Z','Fabrication de papiers peints');
INSERT INTO cconac VALUES ('1729Z','Fabrication d''autres articles en papier ou en carton');
INSERT INTO cconac VALUES ('1811Z','Imprimerie de journaux');
INSERT INTO cconac VALUES ('1812Z','Autre imprimerie (labeur)');
INSERT INTO cconac VALUES ('1813Z','Activités de pré-presse');
INSERT INTO cconac VALUES ('1814Z','Reliure et activités connexes');
INSERT INTO cconac VALUES ('1820Z','Reproduction d''enregistrements');
INSERT INTO cconac VALUES ('1910Z','Cokefaction');
INSERT INTO cconac VALUES ('1920Z','Raffinage du pétrole');
INSERT INTO cconac VALUES ('2011Z','Fabrication de gaz industriels');
INSERT INTO cconac VALUES ('2012Z','Fabrication de colorants et de pigments');
INSERT INTO cconac VALUES ('2013A','Enrichissement et retraitement de matières nucléaires');
INSERT INTO cconac VALUES ('2013B','Fabrication d''autres produits chimiques inorganiques de base n.c.a.');
INSERT INTO cconac VALUES ('2014Z','Fabrication d''autres produits chimiques organiques de base');
INSERT INTO cconac VALUES ('2015Z','Fabrication de produits azotés et d''engrais');
INSERT INTO cconac VALUES ('2016Z','Fabrication de matières plastiques de base');
INSERT INTO cconac VALUES ('2017Z','Fabrication de caoutchouc synthétique');
INSERT INTO cconac VALUES ('2020Z','Fabrication de pesticides et d''autres produits agrochimiques');
INSERT INTO cconac VALUES ('2030Z','Fabrication de peintures, vernis, encres et mastics');
INSERT INTO cconac VALUES ('2041Z','Fabrication de savons, détergents et produits d''entretien');
INSERT INTO cconac VALUES ('2042Z','Fabrication de parfums et de produits pour la toilette');
INSERT INTO cconac VALUES ('2051Z','Fabrication de produits explosifs');
INSERT INTO cconac VALUES ('2052Z','Fabrication de colles');
INSERT INTO cconac VALUES ('2053Z','Fabrication d''huiles essentielles');
INSERT INTO cconac VALUES ('2059Z','Fabrication d''autres produits chimiques n.c.a.');
INSERT INTO cconac VALUES ('2060Z','Fabrication de fibres artificielles ou synthétiques');
INSERT INTO cconac VALUES ('2110Z','Fabrication de produits pharmaceutiques de base');
INSERT INTO cconac VALUES ('2120Z','Fabrication de préparations pharmaceutiques');
INSERT INTO cconac VALUES ('2211Z','Fabrication et rechapage de pneumatiques');
INSERT INTO cconac VALUES ('2219Z','Fabrication d''autres articles en caoutchouc');
INSERT INTO cconac VALUES ('2221Z','Fabrication de plaques, feuilles, tubes et profiles en matières plastiques');
INSERT INTO cconac VALUES ('2222Z','Fabrication d''emballages en matières plastiques');
INSERT INTO cconac VALUES ('2223Z','Fabrication d''élements en matières plastiques pour la construction');
INSERT INTO cconac VALUES ('2229A','Fabrication de pièces techniques à base de matières plastiques');
INSERT INTO cconac VALUES ('2229B','Fabrication de produits de consommation courante en matières plastiques');
INSERT INTO cconac VALUES ('2311Z','Fabrication de verre plat');
INSERT INTO cconac VALUES ('2312Z','Façonnage et transformation du verre plat');
INSERT INTO cconac VALUES ('2313Z','Fabrication de verre creux');
INSERT INTO cconac VALUES ('2314Z','Fabrication de fibres de verre');
INSERT INTO cconac VALUES ('2319Z','Fabrication et façonnage d''autres articles en verre, y compris verre technique');
INSERT INTO cconac VALUES ('2320Z','Fabrication de produits réfractaires');
INSERT INTO cconac VALUES ('2331Z','Fabrication de carreaux en céramique');
INSERT INTO cconac VALUES ('2332Z','Fabrication de briques, tuiles et produits de construction, en terre cuite');
INSERT INTO cconac VALUES ('2341Z','Fabrication d''articles céramiques à usage domestique ou ornemental');
INSERT INTO cconac VALUES ('2342Z','Fabrication d''appareils sanitaires en céramique');
INSERT INTO cconac VALUES ('2343Z','Fabrication d''isolateurs et pièces isolantes en céramique');
INSERT INTO cconac VALUES ('2344Z','Fabrication d''autres produits céramiques à usage technique');
INSERT INTO cconac VALUES ('2349Z','Fabrication d''autres produits céramiques');
INSERT INTO cconac VALUES ('2351Z','Fabrication de ciment');
INSERT INTO cconac VALUES ('2352Z','Fabrication de chaux et platre');
INSERT INTO cconac VALUES ('2361Z','Fabrication d''élements en béton pour la construction');
INSERT INTO cconac VALUES ('2362Z','Fabrication d''élements en platre pour la construction');
INSERT INTO cconac VALUES ('2363Z','Fabrication de béton prêt a l''emploi');
INSERT INTO cconac VALUES ('2364Z','Fabrication de mortiers et bétons secs');
INSERT INTO cconac VALUES ('2365Z','Fabrication d''ouvrages en fibre-ciment');
INSERT INTO cconac VALUES ('2369Z','Fabrication d''autres ouvrages en béton, en ciment ou en platre');
INSERT INTO cconac VALUES ('2370Z','Taille, façonnage et finissage de pierres');
INSERT INTO cconac VALUES ('2391Z','Fabrication de produits abrasifs');
INSERT INTO cconac VALUES ('2399Z','Fabrication d''autres produits minéraux non métalliques n.c.a.');
INSERT INTO cconac VALUES ('2410Z','Sidérurgie');
INSERT INTO cconac VALUES ('2420Z','Fabrication de tubes, tuyaux, profiles creux et accessoires correspondants en acier');
INSERT INTO cconac VALUES ('2431Z','Étirage à froid de barres');
INSERT INTO cconac VALUES ('2432Z','Laminage à froid de feuillards');
INSERT INTO cconac VALUES ('2433Z','Profilage à froid par formage ou pliage');
INSERT INTO cconac VALUES ('2434Z','Tréfilage à froid');
INSERT INTO cconac VALUES ('2441Z','Production de métaux précieux');
INSERT INTO cconac VALUES ('2442Z','Métallurgie de l''aluminium');
INSERT INTO cconac VALUES ('2443Z','Métallurgie du plomb, du zinc ou de l''étain');
INSERT INTO cconac VALUES ('2444Z','Métallurgie du cuivre');
INSERT INTO cconac VALUES ('2445Z','Métallurgie des autres métaux non ferreux');
INSERT INTO cconac VALUES ('2446Z','Élaboration et transformation de matières nucléaires');
INSERT INTO cconac VALUES ('2451Z','Fonderie de fonte');
INSERT INTO cconac VALUES ('2452Z','Fonderie d''acier');
INSERT INTO cconac VALUES ('2453Z','Fonderie de métaux légers');
INSERT INTO cconac VALUES ('2454Z','Fonderie d''autres métaux non ferreux');
INSERT INTO cconac VALUES ('2511Z','Fabrication de structures métalliques et de parties de structures');
INSERT INTO cconac VALUES ('2512Z','Fabrication de portes et fenêtres en métal');
INSERT INTO cconac VALUES ('2521Z','Fabrication de radiateurs et de chaudières pour le chauffage central');
INSERT INTO cconac VALUES ('2529Z','Fabrication d''autres réservoirs, citernes et conteneurs métalliques');
INSERT INTO cconac VALUES ('2530Z','Fabrication de générateurs de vapeur, à l''exception des chaudières pour le chauffage central');
INSERT INTO cconac VALUES ('2540Z','Fabrication d''armes et de munitions');
INSERT INTO cconac VALUES ('2550A','Forge, estampage, matricage ; métallurgie des poudres');
INSERT INTO cconac VALUES ('2550B','Découpage, emboutissage');
INSERT INTO cconac VALUES ('2561Z','Traitement et revêtement des métaux');
INSERT INTO cconac VALUES ('2562A','Décolletage');
INSERT INTO cconac VALUES ('2562B','Mécanique industrielle');
INSERT INTO cconac VALUES ('2571Z','Fabrication de coutellerie');
INSERT INTO cconac VALUES ('2572Z','Fabrication de serrures et de ferrures');
INSERT INTO cconac VALUES ('2573A','Fabrication de moules et modèles');
INSERT INTO cconac VALUES ('2573B','Fabrication d''autres outillages');
INSERT INTO cconac VALUES ('2591Z','Fabrication de fûts et emballages métalliques similaires');
INSERT INTO cconac VALUES ('2592Z','Fabrication d''emballages métalliques légers');
INSERT INTO cconac VALUES ('2593Z','Fabrication d''articles en fils métalliques, de chaînes et de ressorts');
INSERT INTO cconac VALUES ('2594Z','Fabrication de vis et de boulons');
INSERT INTO cconac VALUES ('2599A','Fabrication d''articles métalliques ménagers');
INSERT INTO cconac VALUES ('2599B','Fabrication d''autres articles métalliques');
INSERT INTO cconac VALUES ('2611Z','Fabrication de composants électroniques');
INSERT INTO cconac VALUES ('2612Z','Fabrication de cartes électroniques assemblées');
INSERT INTO cconac VALUES ('2620Z','Fabrication d''ordinateurs et d''équipements périphériques');
INSERT INTO cconac VALUES ('2630Z','Fabrication d''équipements de communication');
INSERT INTO cconac VALUES ('2640Z','Fabrication de produits électroniques grand public');
INSERT INTO cconac VALUES ('2651A','Fabrication d''équipements d''aide à la navigation');
INSERT INTO cconac VALUES ('2651B','Fabrication d''instrumentation scientifique et technique');
INSERT INTO cconac VALUES ('2652Z','Horlogerie');
INSERT INTO cconac VALUES ('2660Z','Fabrication d''équipements d''irradiation médicale, d''équipements électromédicaux et électrothérapeutiques');
INSERT INTO cconac VALUES ('2670Z','Fabrication de matériels optique et photographique');
INSERT INTO cconac VALUES ('2680Z','Fabrication de supports magnétiques et optiques');
INSERT INTO cconac VALUES ('2711Z','Fabrication de moteurs, génératrices et transformateurs électriques');
INSERT INTO cconac VALUES ('2712Z','Fabrication de matériel de distribution et de commande électrique');
INSERT INTO cconac VALUES ('2720Z','Fabrication de piles et d''accumulateurs électriques');
INSERT INTO cconac VALUES ('2731Z','Fabrication de câbles de fibres optiques');
INSERT INTO cconac VALUES ('2732Z','Fabrication d''autres fils et câbles électroniques ou électriques');
INSERT INTO cconac VALUES ('2733Z','Fabrication de matériel d''installation électrique');
INSERT INTO cconac VALUES ('2740Z','Fabrication d''appareils d''éclairage électrique');
INSERT INTO cconac VALUES ('2751Z','Fabrication d''appareils électromenagers');
INSERT INTO cconac VALUES ('2752Z','Fabrication d''appareils ménagers non électriques');
INSERT INTO cconac VALUES ('2790Z','Fabrication d''autres matériels électriques');
INSERT INTO cconac VALUES ('2811Z','Fabrication de moteurs et turbines, à l''exception des moteurs d''avions et de véhicules');
INSERT INTO cconac VALUES ('2812Z','Fabrication d''équipements hydrauliques et pneumatiques');
INSERT INTO cconac VALUES ('2813Z','Fabrication d''autres pompes et compresseurs');
INSERT INTO cconac VALUES ('2814Z','Fabrication d''autres articles de robinetterie');
INSERT INTO cconac VALUES ('2815Z','Fabrication d''engrenages et d''organes mécaniques de transmission');
INSERT INTO cconac VALUES ('2821Z','Fabrication de fours et brûleurs');
INSERT INTO cconac VALUES ('2822Z','Fabrication de matériel de levage et de manutention');
INSERT INTO cconac VALUES ('2823Z','Fabrication de machines et d''équipements de bureau (à l''exception des ordinateurs et équipements périphériques)');
INSERT INTO cconac VALUES ('2824Z','Fabrication d''outillage portatif à moteur incorporé');
INSERT INTO cconac VALUES ('2825Z','Fabrication d''équipements aérauliques et frigorifiques industriels');
INSERT INTO cconac VALUES ('2829A','Fabrication d''équipements d''emballage, de conditionnement et de pesage');
INSERT INTO cconac VALUES ('2829B','Fabrication d''autres machines d''usage général');
INSERT INTO cconac VALUES ('2830Z','Fabrication de machines agricoles et forestières');
INSERT INTO cconac VALUES ('2841Z','Fabrication de machines-outils pour le travail des métaux');
INSERT INTO cconac VALUES ('2849Z','Fabrication d''autres machines-outils');
INSERT INTO cconac VALUES ('2891Z','Fabrication de machines pour la métallurgie');
INSERT INTO cconac VALUES ('2892Z','Fabrication de machines pour l''extraction ou la construction');
INSERT INTO cconac VALUES ('2893Z','Fabrication de machines pour l''industrie agro-alimentaire');
INSERT INTO cconac VALUES ('2894Z','Fabrication de machines pour les industries textiles');
INSERT INTO cconac VALUES ('2895Z','Fabrication de machines pour les industries du papier et du carton');
INSERT INTO cconac VALUES ('2896Z','Fabrication de machines pour le travail du caoutchouc ou des plastiques');
INSERT INTO cconac VALUES ('2899A','Fabrication de machines d''imprimerie');
INSERT INTO cconac VALUES ('2899B','Fabrication d''autres machines spécialisées');
INSERT INTO cconac VALUES ('2910Z','Construction de véhicules automobiles');
INSERT INTO cconac VALUES ('2920Z','Fabrication de carrosseries et remorques');
INSERT INTO cconac VALUES ('2931Z','Fabrication d''équipements électriques et électroniques automobiles');
INSERT INTO cconac VALUES ('2932Z','Fabrication d''autres équipements automobiles');
INSERT INTO cconac VALUES ('3011Z','Construction de navires et de structures flottantes');
INSERT INTO cconac VALUES ('3012Z','Construction de bateaux de plaisance');
INSERT INTO cconac VALUES ('3020Z','Construction de locomotives et d''autre matériel ferroviaire roulant');
INSERT INTO cconac VALUES ('3030Z','Construction aéronautique et spatiale');
INSERT INTO cconac VALUES ('3040Z','Construction de véhicules militaires de combat');
INSERT INTO cconac VALUES ('3091Z','Fabrication de motocycles');
INSERT INTO cconac VALUES ('3092Z','Fabrication de bicyclettes et de véhicules pour invalides');
INSERT INTO cconac VALUES ('3099Z','Fabrication d''autres équipements de transport n.c.a.');
INSERT INTO cconac VALUES ('3101Z','Fabrication de meubles de bureau et de magasin');
INSERT INTO cconac VALUES ('3102Z','Fabrication de meubles de cuisine');
INSERT INTO cconac VALUES ('3103Z','Fabrication de matelas');
INSERT INTO cconac VALUES ('3109A','Fabrication de sièges d''ameublement d''intérieur');
INSERT INTO cconac VALUES ('3109B','Fabrication d''autres meubles et industries connexes de l''ameublement');
INSERT INTO cconac VALUES ('3211Z','Frappe de monnaie');
INSERT INTO cconac VALUES ('3212Z','Fabrication d''articles de joaillerie et bijouterie');
INSERT INTO cconac VALUES ('3213Z','Fabrication d''articles de bijouterie fantaisie et articles similaires');
INSERT INTO cconac VALUES ('3220Z','Fabrication d''instruments de musique');
INSERT INTO cconac VALUES ('3230Z','Fabrication d''articles de sport');
INSERT INTO cconac VALUES ('3240Z','Fabrication de jeux et jouets');
INSERT INTO cconac VALUES ('3250A','Fabrication de matériel médico-chirurgical et dentaire');
INSERT INTO cconac VALUES ('3250B','Fabrication de lunettes');
INSERT INTO cconac VALUES ('3291Z','Fabrication d''articles de brosserie');
INSERT INTO cconac VALUES ('3299Z','Autres activités manufacturieres n.c.a.');
INSERT INTO cconac VALUES ('3311Z','Réparation d''ouvrages en métaux');
INSERT INTO cconac VALUES ('3312Z','Réparation de machines et équipements mécaniques');
INSERT INTO cconac VALUES ('3313Z','Réparation de matériels électroniques et optiques');
INSERT INTO cconac VALUES ('3314Z','Réparation d''équipements électriques');
INSERT INTO cconac VALUES ('3315Z','Réparation et maintenance navale');
INSERT INTO cconac VALUES ('3316Z','Réparation et maintenance d''aéronefs et d''engins spatiaux');
INSERT INTO cconac VALUES ('3317Z','Réparation et maintenance d''autres équipements de transport');
INSERT INTO cconac VALUES ('3319Z','Réparation d''autres équipements');
INSERT INTO cconac VALUES ('3320A','Installation de structures métalliques, chaudronnees et de tuyauterie');
INSERT INTO cconac VALUES ('3320B','Installation de machines et équipements mécaniques');
INSERT INTO cconac VALUES ('3320C','Conception d''ensemble et assemblage sur site industriel d''équipements de contrôle des processus industriels');
INSERT INTO cconac VALUES ('3320D','Installation d''équipements électriques, de matériels électroniques et optiques ou d''autres matériels');
INSERT INTO cconac VALUES ('3511Z','Production d''électricité');
INSERT INTO cconac VALUES ('3512Z','Transport d''électricité');
INSERT INTO cconac VALUES ('3513Z','Distribution d''électricité');
INSERT INTO cconac VALUES ('3514Z','Commerce d''électricité');
INSERT INTO cconac VALUES ('3521Z','Production de combustibles gazeux');
INSERT INTO cconac VALUES ('3522Z','Distribution de combustibles gazeux par conduites');
INSERT INTO cconac VALUES ('3523Z','Commerce de combustibles gazeux par conduites');
INSERT INTO cconac VALUES ('3530Z','Production et distribution de vapeur et d''air conditionné');
INSERT INTO cconac VALUES ('3600Z','Captage, traitement et distribution d''eau');
INSERT INTO cconac VALUES ('3700Z','Collecte et traitement des eaux usées');
INSERT INTO cconac VALUES ('3811Z','Collecte des déchets non dangereux');
INSERT INTO cconac VALUES ('3812Z','Collecte des déchets dangereux');
INSERT INTO cconac VALUES ('3821Z','Traitement et élimination des déchets non dangereux');
INSERT INTO cconac VALUES ('3822Z','Traitement et élimination des déchets dangereux');
INSERT INTO cconac VALUES ('3831Z','Démantelement d''épaves');
INSERT INTO cconac VALUES ('3832Z','Réecuperation de déchets triés');
INSERT INTO cconac VALUES ('3900Z','Dépollution et autres services de gestion des déchets');
INSERT INTO cconac VALUES ('4110A','Promotion immobilière de logements');
INSERT INTO cconac VALUES ('4110B','Promotion immobilière de bureaux');
INSERT INTO cconac VALUES ('4110C','Promotion immobilière d''autres batiments');
INSERT INTO cconac VALUES ('4110D','Supports juridiques de programmes');
INSERT INTO cconac VALUES ('4120A','Construction de maisons individuelles');
INSERT INTO cconac VALUES ('4120B','Construction d''autres batiments');
INSERT INTO cconac VALUES ('4211Z','Construction de routes et autoroutes');
INSERT INTO cconac VALUES ('4212Z','Construction de voies ferrées de surface et souterraines');
INSERT INTO cconac VALUES ('4213A','Construction d''ouvrages d''art');
INSERT INTO cconac VALUES ('4213B','Construction et entretien de tunnels');
INSERT INTO cconac VALUES ('4221Z','Construction de réseaux pour fluides');
INSERT INTO cconac VALUES ('4222Z','Construction de réseaux électriques et de télécommunications');
INSERT INTO cconac VALUES ('4291Z','Construction d''ouvrages maritimes et fluviaux');
INSERT INTO cconac VALUES ('4299Z','Construction d''autres ouvrages de génie civil n.c.a.');
INSERT INTO cconac VALUES ('4311Z','Travaux de démolition');
INSERT INTO cconac VALUES ('4312A','Travaux de terrassement courants et travaux préparatoires');
INSERT INTO cconac VALUES ('4312B','Travaux de terrassement spécialisés ou de grande masse');
INSERT INTO cconac VALUES ('4313Z','Forages et sondages');
INSERT INTO cconac VALUES ('4321A','Travaux d''installation électrique dans tous locaux');
INSERT INTO cconac VALUES ('4321B','Travaux d''installation électrique sur la voie publique');
INSERT INTO cconac VALUES ('4322A','Travaux d''installation d''eau et de gaz en tous locaux');
INSERT INTO cconac VALUES ('4322B','Travaux d''installation d''équipements thermiques et de climatisation');
INSERT INTO cconac VALUES ('4329A','Travaux d''isolation');
INSERT INTO cconac VALUES ('4329B','Autres travaux d''installation n.c.a.');
INSERT INTO cconac VALUES ('4331Z','Travaux de platrerie');
INSERT INTO cconac VALUES ('4332A','Travaux de menuiserie bois et pvc');
INSERT INTO cconac VALUES ('4332B','Travaux de menuiserie métallique et serrurerie');
INSERT INTO cconac VALUES ('4332C','Agencement de lieux de vente');
INSERT INTO cconac VALUES ('4333Z','Travaux de revêtement des sols et des murs');
INSERT INTO cconac VALUES ('4334Z','Travaux de peinture et vitrerie');
INSERT INTO cconac VALUES ('4339Z','Autres travaux de finition');
INSERT INTO cconac VALUES ('4391A','Travaux de charpente');
INSERT INTO cconac VALUES ('4391B','Travaux de couverture par élements');
INSERT INTO cconac VALUES ('4399A','Travaux d''étanchéification');
INSERT INTO cconac VALUES ('4399B','Travaux de montage de structures métalliques');
INSERT INTO cconac VALUES ('4399C','Travaux de maçonnerie générale et gros œuvre de bâtiment');
INSERT INTO cconac VALUES ('4399D','Autres travaux spécialisés de construction');
INSERT INTO cconac VALUES ('4399E','Location avec opérateur de matériel de construction');
INSERT INTO cconac VALUES ('4511Z','Commerce de voitures et de véhicules automobiles légers');
INSERT INTO cconac VALUES ('4519Z','Commerce d''autres véhicules automobiles');
INSERT INTO cconac VALUES ('4520A','Entretien et réparation de véhicules automobiles légers');
INSERT INTO cconac VALUES ('4520B','Entretien et réparation d''autres véhicules automobiles');
INSERT INTO cconac VALUES ('4531Z','Commerce de gros d''équipements automobiles');
INSERT INTO cconac VALUES ('4532Z','Commerce de détail d''équipements automobiles');
INSERT INTO cconac VALUES ('4540Z','Commerce et réparation de motocycles');
INSERT INTO cconac VALUES ('4611Z','Intermédiaires du commerce en matières premières agricoles, animaux vivants, matières premières textiles et produits semi-finis');
INSERT INTO cconac VALUES ('4612A','Centrales d''achat de carburant');
INSERT INTO cconac VALUES ('4612B','Autres intermédiaires du commerce en combustibles, métaux, minéraux et produits chimiques');
INSERT INTO cconac VALUES ('4613Z','Intermédiaires du commerce en bois et matériaux de construction');
INSERT INTO cconac VALUES ('4614Z','Intermédiaires du commerce en machines, equipements industriels, navires et avions');
INSERT INTO cconac VALUES ('4615Z','intermédiaires du commerce en meubles, articles de ménage et quincaillerie');
INSERT INTO cconac VALUES ('4616Z','Intermédiaires du commerce en textiles, habillement, fourrures, chaussures et articles en cuir');
INSERT INTO cconac VALUES ('4617A','Centrales d''achat alimentaires');
INSERT INTO cconac VALUES ('4617B','Autres intermédiaires du commerce en denrées, boissons et tabac');
INSERT INTO cconac VALUES ('4618Z','Intermédiaires spécialisés dans le commerce d''autres produits spécifiques');
INSERT INTO cconac VALUES ('4619A','Centrales d''achat non alimentaires');
INSERT INTO cconac VALUES ('4619B','Autres intermédiaires du commerce en produits divers');
INSERT INTO cconac VALUES ('4621Z','Commerce de gros (commerce interentreprises) de céréales, de tabac non manufacturé, de semences et d''aliments pour le bétail');
INSERT INTO cconac VALUES ('4622Z','Commerce de gros (commerce interentreprises) de fleurs et plantes');
INSERT INTO cconac VALUES ('4623Z','Commerce de gros (commerce interentreprises) d''animaux vivants');
INSERT INTO cconac VALUES ('4624Z','Commerce de gros (commerce interentreprises) de cuirs et peaux');
INSERT INTO cconac VALUES ('4631Z','Commerce de gros (commerce interentreprises) de fruits et légumes');
INSERT INTO cconac VALUES ('4632A','Commerce de gros (commerce interentreprises) de viandes de boucherie');
INSERT INTO cconac VALUES ('4632B','Commerce de gros (commerce interentreprises) de produits à base de viande');
INSERT INTO cconac VALUES ('4632C','Commerce de gros (commerce interentreprises) de volailles et gibier');
INSERT INTO cconac VALUES ('4633Z','Commerce de gros (commerce interentreprises) de produits laitiers, œufs, huiles et matières grasses comestibles');
INSERT INTO cconac VALUES ('4634Z','Commerce de gros (commerce interentreprises) de boissons');
INSERT INTO cconac VALUES ('4635Z','Commerce de gros (commerce interentreprises) de produits à base de tabac');
INSERT INTO cconac VALUES ('4636Z','Commerce de gros (commerce interentreprises) de sucre, chocolat et confiserie');
INSERT INTO cconac VALUES ('4637Z','Commerce de gros (commerce interentreprises) de café, thé, cacao et épices');
INSERT INTO cconac VALUES ('4638A','Commerce de gros (commerce interentreprises) de poissons, crustacés et mollusques');
INSERT INTO cconac VALUES ('4638B','Commerce de gros (commerce interentreprises) alimentaire specialisé divers');
INSERT INTO cconac VALUES ('4639A','Commerce de gros (commerce interentreprises) de produits surgelés');
INSERT INTO cconac VALUES ('4639B','Commerce de gros (commerce interentreprises) alimentaire non specialisé');
INSERT INTO cconac VALUES ('4641Z','Commerce de gros (commerce interentreprises) de textiles');
INSERT INTO cconac VALUES ('4642Z','Commerce de gros (commerce interentreprises) d''habillement et de chaussures');
INSERT INTO cconac VALUES ('4643Z','Commerce de gros (commerce interentreprises) d''appareils électromenagers');
INSERT INTO cconac VALUES ('4644Z','Commerce de gros (commerce interentreprises) de vaisselle, verrerie et produits d''entretien');
INSERT INTO cconac VALUES ('4645Z','Commerce de gros (commerce interentreprises) de parfumerie et de produits de beauté');
INSERT INTO cconac VALUES ('4646Z','Commerce de gros (commerce interentreprises) de produits pharmaceutiques');
INSERT INTO cconac VALUES ('4647Z','Commerce de gros (commerce interentreprises) de meubles, de tapis et d''appareils d''éclairage');
INSERT INTO cconac VALUES ('4648Z','Commerce de gros (commerce interentreprises) d''articles d''horlogerie et de bijouterie');
INSERT INTO cconac VALUES ('5630Z','Débits de boissons');
INSERT INTO cconac VALUES ('4649Z','Commerce de gros (commerce interentreprises) d''autres biens domestiques');
INSERT INTO cconac VALUES ('4651Z','Commerce de gros (commerce interentreprises) d''ordinateurs, d''équipements informatiques péripheriques et de logiciels');
INSERT INTO cconac VALUES ('4652Z','Commerce de gros (commerce interentreprises) de composants et d''équipements électroniques et de télécommunication');
INSERT INTO cconac VALUES ('4661Z','Commerce de gros (commerce interentreprises) de matériel agricole');
INSERT INTO cconac VALUES ('4662Z','Commerce de gros (commerce interentreprises) de machines-outils');
INSERT INTO cconac VALUES ('4663Z','Commerce de gros (commerce interentreprises) de machines pour l''extraction, la construction et le génie civil');
INSERT INTO cconac VALUES ('4664Z','Commerce de gros (commerce interentreprises) de machines pour l''industrie textile et l''habillement');
INSERT INTO cconac VALUES ('4665Z','Commerce de gros (commerce interentreprises) de mobilier de bureau');
INSERT INTO cconac VALUES ('4666Z','Commerce de gros (commerce interentreprises) d''autres machines et équipements de bureau');
INSERT INTO cconac VALUES ('4669A','Commerce de gros (commerce interentreprises) de matériel électrique');
INSERT INTO cconac VALUES ('4669B','Commerce de gros (commerce interentreprises) de fournitures et équipements industriels divers');
INSERT INTO cconac VALUES ('4669C','Commerce de gros (commerce interentreprises) de fournitures et équipements divers pour le commerce et les services');
INSERT INTO cconac VALUES ('4671Z','Commerce de gros (commerce interentreprises) de combustibles et de produits annexes');
INSERT INTO cconac VALUES ('4672Z','Commerce de gros (commerce interentreprises) de minerais et métaux');
INSERT INTO cconac VALUES ('4673A','Commerce de gros (commerce interentreprises) de bois et de matériaux de construction');
INSERT INTO cconac VALUES ('4673B','Commerce de gros (commerce interentreprises) d''appareils sanitaires et de produits de décoration');
INSERT INTO cconac VALUES ('4674A','Commerce de gros (commerce interentreprises) de quincaillerie');
INSERT INTO cconac VALUES ('4674B','Commerce de gros (commerce interentreprises) de fournitures pour la plomberie et le chauffage');
INSERT INTO cconac VALUES ('4675Z','Commerce de gros (commerce interentreprises) de produits chimiques');
INSERT INTO cconac VALUES ('4676Z','Commerce de gros (commerce interentreprises) d''autres produits intermédiaires');
INSERT INTO cconac VALUES ('4677Z','Commerce de gros (commerce interentreprises) de déchets et débris');
INSERT INTO cconac VALUES ('4690Z','Commerce de gros (commerce interentreprises) non spécialisé');
INSERT INTO cconac VALUES ('4711A','Commerce de détail de produits surgelés');
INSERT INTO cconac VALUES ('4711B','Commerce d''alimentation générale');
INSERT INTO cconac VALUES ('4711C','Superettes');
INSERT INTO cconac VALUES ('4711D','Supermarchés');
INSERT INTO cconac VALUES ('4711E','Magasins multi-commerces');
INSERT INTO cconac VALUES ('4711F','Hypermarchés');
INSERT INTO cconac VALUES ('4719A','Grands magasins');
INSERT INTO cconac VALUES ('4719B','Autres commerces de détail en magasin non spécialisé');
INSERT INTO cconac VALUES ('4721Z','Commerce de détail de fruits et légumes en magasin spécialisé');
INSERT INTO cconac VALUES ('4722Z','Commerce de détail de viandes et de produits à base de viande en magasin specialisé');
INSERT INTO cconac VALUES ('4723Z','Commerce de détail de poissons, crustacés et mollusques en magasin specialisé');
INSERT INTO cconac VALUES ('4724Z','Commerce de détail de pain, pâtisserie et confiserie en magasin spécialisé');
INSERT INTO cconac VALUES ('4725Z','Commerce de détail de boissons en magasin spécialisé');
INSERT INTO cconac VALUES ('4726Z','Commerce de détail de produits à base de tabac en magasin spécialisé');
INSERT INTO cconac VALUES ('4729Z','Autres commerces de détail alimentaires en magasin spécialisé');
INSERT INTO cconac VALUES ('4730Z','Commerce de détail de carburants en magasin spécialisé');
INSERT INTO cconac VALUES ('4741Z','Commerce de détail d''ordinateurs, d''unités périphériques et de logiciels en magasin spécialisé');
INSERT INTO cconac VALUES ('4742Z','Commerce de détail de materiels de télécommunication en magasin spécialisé');
INSERT INTO cconac VALUES ('4743Z','Commerce de détail de matériels audio et vidéo en magasin spécialisé');
INSERT INTO cconac VALUES ('4751Z','Commerce de détail de textiles en magasin spécialisé');
INSERT INTO cconac VALUES ('4752A','Commerce de détail de quincaillerie, peintures et verres en petites surfaces (moins de 400 m²)');
INSERT INTO cconac VALUES ('4752B','Commerce de détail de quincaillerie, peintures et verres en grandes surfaces (400 m² et plus)');
INSERT INTO cconac VALUES ('4753Z','Commerce de détail de tapis, moquettes et revêtements de murs et de sols en magasin spécialisé');
INSERT INTO cconac VALUES ('4754Z','Commerce de détail d''appareils électromenagers en magasin spécialisé');
INSERT INTO cconac VALUES ('4759A','Commerce de détail de meubles');
INSERT INTO cconac VALUES ('4759B','Commerce de détail d''autres équipements du foyer');
INSERT INTO cconac VALUES ('4761Z','Commerce de détail de livres en magasin spécialisé');
INSERT INTO cconac VALUES ('4762Z','Commerce de détail de journaux et papeterie en magasin spécialisé');
INSERT INTO cconac VALUES ('4763Z','Commerce de détail d''enregistrements musicaux et vidéo en magasin spécialisé');
INSERT INTO cconac VALUES ('4764Z','Commerce de détail d''articles de sport en magasin spécialisé');
INSERT INTO cconac VALUES ('4765Z','Commerce de détail de jeux et jouets en magasin spécialisé');
INSERT INTO cconac VALUES ('4771Z','Commerce de détail d''habillement en magasin spécialisé');
INSERT INTO cconac VALUES ('4772A','Commerce de détail de la chaussure');
INSERT INTO cconac VALUES ('4772B','Commerce de détail de maroquinerie et d''articles de voyage');
INSERT INTO cconac VALUES ('4773Z','Commerce de détail de produits pharmaceutiques en magasin spécialisé');
INSERT INTO cconac VALUES ('4774Z','Commerce de détail d''articles médicaux et orthopédiques en magasin spécialisé');
INSERT INTO cconac VALUES ('4775Z','Commerce de détail de parfumerie et de produits de beauté en magasin spécialisé');
INSERT INTO cconac VALUES ('4776Z','Commerce de détail de fleurs, plantes, graines, engrais, animaux de compagnie et aliments pour ces animaux en magasin spécialisé');
INSERT INTO cconac VALUES ('4777Z','Commerce de détail d''articles d''horlogerie et de bijouterie en magasin spécialisé');
INSERT INTO cconac VALUES ('4778A','Commerces de détail d''optique');
INSERT INTO cconac VALUES ('4778B','Commerces de détail de charbons et combustibles');
INSERT INTO cconac VALUES ('4778C','Autres commerces de détail spécialisés divers');
INSERT INTO cconac VALUES ('4779Z','Commerce de détail de biens d''occasion en magasin');
INSERT INTO cconac VALUES ('4781Z','Commerce de détail alimentaire sur éventaires et marchés');
INSERT INTO cconac VALUES ('4782Z','Commerce de détail de textiles, d''habillement et de chaussures sur éventaires et marchés');
INSERT INTO cconac VALUES ('4789Z','Autres commerces de détail sur éventaires et marchés');
INSERT INTO cconac VALUES ('4791A','Vente à distance sur catalogue général');
INSERT INTO cconac VALUES ('4791B','Vente à distance sur catalogue spécialisé');
INSERT INTO cconac VALUES ('4799A','Vente à domicile');
INSERT INTO cconac VALUES ('4799B','Vente par automates et autres commerces de détail hors magasin, éventaires ou marchés n.c.a.');
INSERT INTO cconac VALUES ('4910Z','Transport ferroviaire interurbain de voyageurs');
INSERT INTO cconac VALUES ('4920Z','Transports ferroviaires de fret');
INSERT INTO cconac VALUES ('4931Z','Transports urbains et suburbains de voyageurs');
INSERT INTO cconac VALUES ('4932Z','Transports de voyageurs par taxis');
INSERT INTO cconac VALUES ('4939A','Transports routiers réguliers de voyageurs');
INSERT INTO cconac VALUES ('4939B','Autres transports routiers de voyageurs');
INSERT INTO cconac VALUES ('4939C','Téléphériques et rémontées mécaniques');
INSERT INTO cconac VALUES ('4941A','Transports routiers de fret interurbains');
INSERT INTO cconac VALUES ('4941B','Transports routiers de fret de proximité');
INSERT INTO cconac VALUES ('4941C','Location de camions avec chauffeur');
INSERT INTO cconac VALUES ('4942Z','Services de déménagement');
INSERT INTO cconac VALUES ('4950Z','Transports par conduites');
INSERT INTO cconac VALUES ('5010Z','Transports maritimes et côtiers de passagers');
INSERT INTO cconac VALUES ('5020Z','Transports maritimes et côtiers de fret');
INSERT INTO cconac VALUES ('5030Z','Transports fluviaux de passagers');
INSERT INTO cconac VALUES ('5040Z','Transports fluviaux de fret');
INSERT INTO cconac VALUES ('5110Z','Transports aériens de passagers');
INSERT INTO cconac VALUES ('5121Z','Transports aériens de fret');
INSERT INTO cconac VALUES ('5122Z','Transports spatiaux');
INSERT INTO cconac VALUES ('5210A','Entreposage et stockage frigorifique');
INSERT INTO cconac VALUES ('5210B','Entreposage et stockage non frigorifique');
INSERT INTO cconac VALUES ('5221Z','Services auxiliaires des transports terrestres');
INSERT INTO cconac VALUES ('5222Z','Services auxiliaires des transports par eau');
INSERT INTO cconac VALUES ('5223Z','Services auxiliaires des transports aeriens');
INSERT INTO cconac VALUES ('5224A','Manutention portuaire');
INSERT INTO cconac VALUES ('5224B','Manutention non portuaire');
INSERT INTO cconac VALUES ('5229A','Messagerie, fret express');
INSERT INTO cconac VALUES ('5229B','Affrètement et organisation des transports');
INSERT INTO cconac VALUES ('5310Z','Activités de poste dans le cadre d''une obligation de service universel');
INSERT INTO cconac VALUES ('5320Z','Autres activités de poste et de courrier');
INSERT INTO cconac VALUES ('5510Z','Hôtels et hébergement similaire');
INSERT INTO cconac VALUES ('5520Z','Hébergement touristique et autre hébergement de courte durée');
INSERT INTO cconac VALUES ('5530Z','Terrains de camping et parcs pour caravanes ou véhicules de loisirs');
INSERT INTO cconac VALUES ('5590Z','Autres hébergements');
INSERT INTO cconac VALUES ('5610A','Restauration traditionnelle');
INSERT INTO cconac VALUES ('5610B','Cafétérias et autres libres-services');
INSERT INTO cconac VALUES ('5610C','Restauration de type rapide');
INSERT INTO cconac VALUES ('5621Z','Services des traiteurs');
INSERT INTO cconac VALUES ('5629A','Restauration collective sous contrat');
INSERT INTO cconac VALUES ('5629B','Autres services de restauration n.c.a.');
INSERT INTO cconac VALUES ('5811Z','Édition de livres');
INSERT INTO cconac VALUES ('5812Z','Édition de répertoires et de fichiers d''adresses');
INSERT INTO cconac VALUES ('5813Z','Édition de journaux');
INSERT INTO cconac VALUES ('5814Z','Édition de revues et périodiques');
INSERT INTO cconac VALUES ('5819Z','Autres activites d''édition');
INSERT INTO cconac VALUES ('5821Z','Édition de jeux éléctroniques');
INSERT INTO cconac VALUES ('5829A','Édition de logiciels système et de réseau');
INSERT INTO cconac VALUES ('5829B','Édition de logiciels outils de développement et de langages');
INSERT INTO cconac VALUES ('5829C','Édition de logiciels applicatifs');
INSERT INTO cconac VALUES ('5911A','Production de films et de programmes pour la télévision');
INSERT INTO cconac VALUES ('5911B','Production de films institutionnels et publicitaires');
INSERT INTO cconac VALUES ('5911C','Production de films pour le cinéma');
INSERT INTO cconac VALUES ('5912Z','Post-production de films cinématographiques, de vidéo et de programmes de télévision');
INSERT INTO cconac VALUES ('5913A','Distribution de films cinématographiques');
INSERT INTO cconac VALUES ('5913B','Édition et distribution vidéo');
INSERT INTO cconac VALUES ('5914Z','Projection de films cinématographiques');
INSERT INTO cconac VALUES ('5920Z','Enregistrement sonore et édition musicale');
INSERT INTO cconac VALUES ('6010Z','Édition et diffusion de programmes radio');
INSERT INTO cconac VALUES ('6020A','Édition de chaînes généralistes');
INSERT INTO cconac VALUES ('6020B','Édition de chaînes thématiques');
INSERT INTO cconac VALUES ('6110Z','Télécommunications filaires');
INSERT INTO cconac VALUES ('6120Z','Télécommunications sans fil');
INSERT INTO cconac VALUES ('6130Z','Télécommunications par satellite');
INSERT INTO cconac VALUES ('6190Z','Autres activités de telecommunication');
INSERT INTO cconac VALUES ('6201Z','Programmation informatique');
INSERT INTO cconac VALUES ('6202A','Conseil en systèmes et logiciels informatiques');
INSERT INTO cconac VALUES ('6202B','Tierce maintenance de systèmes et d''applications informatiques');
INSERT INTO cconac VALUES ('6203Z','Gestion d''installations informatiques');
INSERT INTO cconac VALUES ('6209Z','Autres activités informatiques');
INSERT INTO cconac VALUES ('6311Z','Traitement de données, hébergement et activités connexes');
INSERT INTO cconac VALUES ('6312Z','Portails internet');
INSERT INTO cconac VALUES ('6391Z','Activités des agences de presse');
INSERT INTO cconac VALUES ('6399Z','Autres services d''information n.c.a.');
INSERT INTO cconac VALUES ('6411Z','Activités de banque centrale');
INSERT INTO cconac VALUES ('6419Z','Autres intermédiations monétaires');
INSERT INTO cconac VALUES ('6420Z','Activités des sociétés holding');
INSERT INTO cconac VALUES ('6430Z','Fonds de placement et entités financières similaires');
INSERT INTO cconac VALUES ('6491Z','Crédit-bail');
INSERT INTO cconac VALUES ('6492Z','Autre distribution de crédit');
INSERT INTO cconac VALUES ('6499Z','Autres activités des services financiers, hors assurance et caisses de retraite, n.c.a.');
INSERT INTO cconac VALUES ('6511Z','Assurance vie');
INSERT INTO cconac VALUES ('6512Z','Autres assurances');
INSERT INTO cconac VALUES ('6520Z','Réassurance');
INSERT INTO cconac VALUES ('6530Z','Caisses de retraite');
INSERT INTO cconac VALUES ('6611Z','Administration de marches financiers');
INSERT INTO cconac VALUES ('6612Z','Courtage de valeurs mobilières et de marchandises');
INSERT INTO cconac VALUES ('6619A','Supports juridiques de gestion de patrimoine mobilier');
INSERT INTO cconac VALUES ('6619B','Autres activités auxiliaires de services financiers, hors assurance et caisses de retraite, n.c.a.');
INSERT INTO cconac VALUES ('6621Z','Évaluation des risques et dommages');
INSERT INTO cconac VALUES ('6622Z','Activités des agents et courtiers d''assurances');
INSERT INTO cconac VALUES ('6629Z','Autres activités auxiliaires d''assurance et de caisses de retraite');
INSERT INTO cconac VALUES ('6630Z','Gestion de fonds');
INSERT INTO cconac VALUES ('6810Z','Activités des marchands de biens immobiliers');
INSERT INTO cconac VALUES ('6820A','Location de logements');
INSERT INTO cconac VALUES ('6820B','Location de terrains et d''autres biens immobiliers');
INSERT INTO cconac VALUES ('6831Z','Agences immobilieres');
INSERT INTO cconac VALUES ('6832A','Administration d''immeubles et autres biens immobiliers');
INSERT INTO cconac VALUES ('6832B','Supports juridiques de gestion de patrimoine immobilier');
INSERT INTO cconac VALUES ('6910Z','Activités juridiques');
INSERT INTO cconac VALUES ('6920Z','Activités comptables');
INSERT INTO cconac VALUES ('7010Z','Activités des sièges sociaux');
INSERT INTO cconac VALUES ('7021Z','Conseil en relations publiques et communication');
INSERT INTO cconac VALUES ('7022Z','Conseil pour les affaires et autres conseils de gestion');
INSERT INTO cconac VALUES ('7111Z','Activités d''architecture');
INSERT INTO cconac VALUES ('7112A','Activité des géomètres');
INSERT INTO cconac VALUES ('7112B','Ingénierie, études techniques');
INSERT INTO cconac VALUES ('7120A','Contrôle technique automobile');
INSERT INTO cconac VALUES ('7120B','Analyses, essais et inspections techniques');
INSERT INTO cconac VALUES ('7211Z','Recherche-développement en biotechnologie');
INSERT INTO cconac VALUES ('7219Z','Recherche-développement en autres sciences physiques et naturelles');
INSERT INTO cconac VALUES ('7220Z','Recherche-développement en sciences humaines et sociales');
INSERT INTO cconac VALUES ('7311Z','Activités des agences de publicité');
INSERT INTO cconac VALUES ('7312Z','Régie publicitaire de médias');
INSERT INTO cconac VALUES ('7320Z','Études de marche et sondages');
INSERT INTO cconac VALUES ('7410Z','Activités spécialisées de design');
INSERT INTO cconac VALUES ('7420Z','Activités photographiques');
INSERT INTO cconac VALUES ('7430Z','Traduction et interprétation');
INSERT INTO cconac VALUES ('7490A','Activité des économistes de la construction');
INSERT INTO cconac VALUES ('7490B','Activités spécialisées, scientifiques et techniques diverses');
INSERT INTO cconac VALUES ('7500Z','Activités vétérinaires');
INSERT INTO cconac VALUES ('7711A','Location de courte durée de voitures et de véhicules automobiles légers');
INSERT INTO cconac VALUES ('7711B','Location de longue durée de voitures et de véhicules automobiles légers');
INSERT INTO cconac VALUES ('7712Z','Location et location-bail de camions');
INSERT INTO cconac VALUES ('7721Z','Location et location-bail d''articles de loisirs et de sport');
INSERT INTO cconac VALUES ('7722Z','Location de vidéocassettes et disques vidéo');
INSERT INTO cconac VALUES ('7729Z','Location et location-bail d''autres biens personnels et domestiques');
INSERT INTO cconac VALUES ('7731Z','Location et location-bail de machines et équipements agricoles');
INSERT INTO cconac VALUES ('7732Z','Location et location-bail de machines et équipements pour la construction');
INSERT INTO cconac VALUES ('7733Z','Location et location-bail de machines de bureau et de matériel informatique');
INSERT INTO cconac VALUES ('7734Z','Location et location-bail de matériels de transport par eau');
INSERT INTO cconac VALUES ('7735Z','Location et location-bail de matériels de transport aérien');
INSERT INTO cconac VALUES ('7739Z','Location et location-bail d''autres machines, équipements et biens matériels n.c.a.');
INSERT INTO cconac VALUES ('7740Z','Location-bail de propriété intellectuelle et de produits similaires, à l''exception des œuvres soumises a copyright');
INSERT INTO cconac VALUES ('7810Z','Activités des agences de placement de main-d œuvre');
INSERT INTO cconac VALUES ('7820Z','Activités des agences de travail temporaire');
INSERT INTO cconac VALUES ('7830Z','Autre mise a disposition de ressources humaines');
INSERT INTO cconac VALUES ('7911Z','Activités des agences de voyage');
INSERT INTO cconac VALUES ('7912Z','Activités des voyagistes');
INSERT INTO cconac VALUES ('7990Z','Autres services de réservation et activités connexes');
INSERT INTO cconac VALUES ('8010Z','Activités de sécurité privée');
INSERT INTO cconac VALUES ('8020Z','Activités liées aux systèmes de sécurité');
INSERT INTO cconac VALUES ('8030Z','Activités d''enquête');
INSERT INTO cconac VALUES ('8110Z','Activités combinées de soutien lié aux bâtiments');
INSERT INTO cconac VALUES ('8121Z','Nettoyage courant des bâtiments');
INSERT INTO cconac VALUES ('8122Z','Autres activités de nettoyage des bâtiments et nettoyage industriel');
INSERT INTO cconac VALUES ('8129A','Désinfection, désinsectisation, dératisation');
INSERT INTO cconac VALUES ('8129B','Autres activités de nettoyage n.c.a.');
INSERT INTO cconac VALUES ('8130Z','Services d''aménagement paysager');
INSERT INTO cconac VALUES ('8211Z','Services administratifs combinés de bureau');
INSERT INTO cconac VALUES ('8219Z','Photocopie, préparation de documents et autres activités spécialisées de soutien de bureau');
INSERT INTO cconac VALUES ('8220Z','Activités de centres d''appels');
INSERT INTO cconac VALUES ('8230Z','Organisation de foires, salons professionnels et congrés');
INSERT INTO cconac VALUES ('8291Z','Activités des agences de recouvrement de factures et des sociétés d''information financière sur la clientèle');
INSERT INTO cconac VALUES ('8292Z','Activités de conditionnement');
INSERT INTO cconac VALUES ('8299Z','Autres activités de soutien aux entreprises n.c.a.');
INSERT INTO cconac VALUES ('8411Z','Administration publique générale');
INSERT INTO cconac VALUES ('8412Z','Administration publique (tutelle) de la santé, de la formation, de la culture et des services sociaux, autre que securité sociale');
INSERT INTO cconac VALUES ('8413Z','Administration publique (tutelle) des activités économiques');
INSERT INTO cconac VALUES ('8421Z','Affaires étrangères');
INSERT INTO cconac VALUES ('8422Z','Défense');
INSERT INTO cconac VALUES ('8423Z','Justice');
INSERT INTO cconac VALUES ('8424Z','Activités d''ordre public et de sécurité');
INSERT INTO cconac VALUES ('8425Z','Services du feu et de secours');
INSERT INTO cconac VALUES ('8430A','Activités générales de sécurité sociale');
INSERT INTO cconac VALUES ('8430B','Gestion des retraites complémentaires');
INSERT INTO cconac VALUES ('8430C','Distribution sociale de revenus');
INSERT INTO cconac VALUES ('8510Z','Enseignement pré-primaire');
INSERT INTO cconac VALUES ('8520Z','Enseignement primaire');
INSERT INTO cconac VALUES ('8531Z','Enseignement secondaire général');
INSERT INTO cconac VALUES ('8532Z','Enseignement secondaire technique ou professionnel');
INSERT INTO cconac VALUES ('8541Z','Enseignement post-secondaire non supérieur');
INSERT INTO cconac VALUES ('8542Z','Enseignement supérieur');
INSERT INTO cconac VALUES ('8551Z','Enseignement de disciplines sportives et d''activités de loisirs');
INSERT INTO cconac VALUES ('8552Z','Enseignement culturel');
INSERT INTO cconac VALUES ('8553Z','Enseignement de la conduite');
INSERT INTO cconac VALUES ('8559A','Formation continue d''adultes');
INSERT INTO cconac VALUES ('8559B','Autres enseignements');
INSERT INTO cconac VALUES ('8560Z','Activités de soutien à l''enseignement');
INSERT INTO cconac VALUES ('8610Z','Activités hospitalières');
INSERT INTO cconac VALUES ('8621Z','Activité des médecins généralistes');
INSERT INTO cconac VALUES ('8622A','Activités de radiodiagnostic et de radiothérapie');
INSERT INTO cconac VALUES ('8622B','Activités chirurgicales');
INSERT INTO cconac VALUES ('8622C','Autres activités des médecins spécialistes');
INSERT INTO cconac VALUES ('8623Z','Pratique dentaire');
INSERT INTO cconac VALUES ('8690A','Ambulances');
INSERT INTO cconac VALUES ('8690B','Laboratoires d''analyses médicales');
INSERT INTO cconac VALUES ('8690C','Centres de collecte et banques d''organes');
INSERT INTO cconac VALUES ('8690D','Activités des infirmiers et des sages-femmes');
INSERT INTO cconac VALUES ('8690E','Activités des professionnels de la rééducation, de l''appareillage et des pédicures-podologues');
INSERT INTO cconac VALUES ('8690F','Activités de santé humaine non classées ailleurs');
INSERT INTO cconac VALUES ('8710A','Hébergement médicalisé pour personnes âgées');
INSERT INTO cconac VALUES ('8710B','Hébergement médicalisé pour enfants handicapés');
INSERT INTO cconac VALUES ('8710C','Hébergement médicalisé pour adultes handicapés et autre hébergement médicalisé');
INSERT INTO cconac VALUES ('8720A','Hébergement social pour handicapés mentaux et malades mentaux');
INSERT INTO cconac VALUES ('8720B','Hébergement social pour toxicomanes');
INSERT INTO cconac VALUES ('8730A','hebergement social pour personnes âgées');
INSERT INTO cconac VALUES ('8730B','Hébergement social pour handicapés physiques');
INSERT INTO cconac VALUES ('8790A','Hébergement social pour enfants en difficultés');
INSERT INTO cconac VALUES ('8790B','Hébergement social pour adultes et familles en difficultés et autre hébergement social');
INSERT INTO cconac VALUES ('8810A','Aide a domicile');
INSERT INTO cconac VALUES ('8810B','Accueil ou accompagnement sans hébergement d''adultes handicapés ou de personnes âgées');
INSERT INTO cconac VALUES ('8810C','Aide par le travail');
INSERT INTO cconac VALUES ('8891A','Accueil de jeunes enfants');
INSERT INTO cconac VALUES ('8891B','Accueil ou accompagnement sans hébergement d''enfants handicapés');
INSERT INTO cconac VALUES ('8899A','Autre accueil ou accompagnement sans hébergement d''enfants et d''adolescents');
INSERT INTO cconac VALUES ('8899B','Action sociale sans hébergement n.c.a.');
INSERT INTO cconac VALUES ('9001Z','Arts du spectacle vivant');
INSERT INTO cconac VALUES ('9002Z','Activités de soutien au spectacle vivant');
INSERT INTO cconac VALUES ('9003A','Création artistique relevant des arts plastiques');
INSERT INTO cconac VALUES ('9003B','Autre création artistique');
INSERT INTO cconac VALUES ('9004Z','Gestion de salles de spectacles');
INSERT INTO cconac VALUES ('9101Z','Gestion des bibliothèques et des archives');
INSERT INTO cconac VALUES ('9102Z','Gestion des musées');
INSERT INTO cconac VALUES ('9103Z','Gestion des sites et monuments historiques et des attractions touristiques similaires');
INSERT INTO cconac VALUES ('9104Z','Gestion des jardins botaniques et zoologiques et des réserves naturelles');
INSERT INTO cconac VALUES ('9200Z','Organisation de jeux de hasard et d''argent');
INSERT INTO cconac VALUES ('9311Z','Gestion d''installations sportives');
INSERT INTO cconac VALUES ('9312Z','Activités de clubs de sports');
INSERT INTO cconac VALUES ('9313Z','Activités des centres de culture physique');
INSERT INTO cconac VALUES ('9319Z','Autres activités liées au sport');
INSERT INTO cconac VALUES ('9321Z','Activités des parcs d attractions et parcs à thèmes');
INSERT INTO cconac VALUES ('9329Z','Autres activités récréatives et de loisirs');
INSERT INTO cconac VALUES ('9411Z','Activités des organisations patronales et consulaires');
INSERT INTO cconac VALUES ('9412Z','Activités des organisations professionnelles');
INSERT INTO cconac VALUES ('9420Z','Activités des syndicats de salariés');
INSERT INTO cconac VALUES ('9491Z','Activités des organisations religieuses');
INSERT INTO cconac VALUES ('9492Z','Activités des organisations politiques');
INSERT INTO cconac VALUES ('9499Z','Autres organisations fonctionnant par adhésion volontaire');
INSERT INTO cconac VALUES ('9511Z','Réparation d''ordinateurs et d''équipements périphériques');
INSERT INTO cconac VALUES ('9512Z','Réparation d ''équipements de communication');
INSERT INTO cconac VALUES ('9521Z','Réparation de produits électroniques grand public');
INSERT INTO cconac VALUES ('9522Z','Réparation d appareils électromenagers et d''équipements pour la maison et le jardin');
INSERT INTO cconac VALUES ('9523Z','Réparation de chaussures et d''articles en cuir');
INSERT INTO cconac VALUES ('9524Z','Réparation de meubles et d''équipements du foyer');
INSERT INTO cconac VALUES ('9525Z','Réparation d''articles d''horlogerie et de bijouterie');
INSERT INTO cconac VALUES ('9529Z','Réparation d''autres biens personnels et domestiques');
INSERT INTO cconac VALUES ('9601A','Blanchisserie-teinturerie de gros');
INSERT INTO cconac VALUES ('9601B','Blanchisserie-teinturerie de détail');
INSERT INTO cconac VALUES ('9602A','Coiffure');
INSERT INTO cconac VALUES ('9602B','Soins de beauté');
INSERT INTO cconac VALUES ('9603Z','Services funéraires');
INSERT INTO cconac VALUES ('9604Z','Entretien corporel');
INSERT INTO cconac VALUES ('9609Z','Autres services personnels n.c.a.');
INSERT INTO cconac VALUES ('9700Z','Activités des ménages en tant qu''employeurs de personnel domestique');
INSERT INTO cconac VALUES ('9810Z','Activités indifferenciées des ménages en tant que producteurs de biens pour usage propre');
INSERT INTO cconac VALUES ('9820Z','Activités indifferenciées des ménages en tant que producteurs de services pour usage propre');
INSERT INTO cconac VALUES ('9900Z','Activités des organisations et organismes extraterritoriaux');
-- nomenclatures Matériaux des gros murs (depuis 2009, pevprincipale et pevdependances) : dmatgm
INSERT INTO dmatgm VALUES ('01','Pierre');
INSERT INTO dmatgm VALUES ('02','Meulière');
INSERT INTO dmatgm VALUES ('03','Béton');
INSERT INTO dmatgm VALUES ('04','Briques');
INSERT INTO dmatgm VALUES ('05','Aggloméré');
INSERT INTO dmatgm VALUES ('06','Bois');
INSERT INTO dmatgm VALUES ('09','Autres');
INSERT INTO dmatgm VALUES ('10','Pierre');
INSERT INTO dmatgm VALUES ('11','Pierre');
INSERT INTO dmatgm VALUES ('12','Meulière - Pierre');
INSERT INTO dmatgm VALUES ('13','Béton - Pierre');
INSERT INTO dmatgm VALUES ('14','Briques - Pierre');
INSERT INTO dmatgm VALUES ('15','Aggloméré - Pierre');
INSERT INTO dmatgm VALUES ('16','Bois - Pierre');
INSERT INTO dmatgm VALUES ('19','Pierre - Autres');
INSERT INTO dmatgm VALUES ('20','Meulière');
INSERT INTO dmatgm VALUES ('21','Meulière - Pierre');
INSERT INTO dmatgm VALUES ('22','Meulière');
INSERT INTO dmatgm VALUES ('23','Béton - Meulière');
INSERT INTO dmatgm VALUES ('24','Briques - Meulière');
INSERT INTO dmatgm VALUES ('25','Aggloméré - Meulière');
INSERT INTO dmatgm VALUES ('26','Bois - Meulière');
INSERT INTO dmatgm VALUES ('29','Meulière - Autres');
INSERT INTO dmatgm VALUES ('30','Béton');
INSERT INTO dmatgm VALUES ('31','Béton - Pierre');
INSERT INTO dmatgm VALUES ('32','Béton - Meulière');
INSERT INTO dmatgm VALUES ('33','Béton');
INSERT INTO dmatgm VALUES ('34','Béton - Briques');
INSERT INTO dmatgm VALUES ('35','Aggloméré - Béton');
INSERT INTO dmatgm VALUES ('36','Béton - Bois');
INSERT INTO dmatgm VALUES ('39','Béton - Autres');
INSERT INTO dmatgm VALUES ('40','Briques');
INSERT INTO dmatgm VALUES ('41','Briques - Pierre');
INSERT INTO dmatgm VALUES ('42','Briques - Meulière');
INSERT INTO dmatgm VALUES ('43','Béton - Briques');
INSERT INTO dmatgm VALUES ('44','Briques');
INSERT INTO dmatgm VALUES ('45','Aggloméré - Briques');
INSERT INTO dmatgm VALUES ('46','Bois - Briques');
INSERT INTO dmatgm VALUES ('49','Briques - Autres');
INSERT INTO dmatgm VALUES ('50','Aggloméré');
INSERT INTO dmatgm VALUES ('51','Aggloméré - Pierre');
INSERT INTO dmatgm VALUES ('52','Aggloméré - Meulière');
INSERT INTO dmatgm VALUES ('53','Aggloméré - Béton');
INSERT INTO dmatgm VALUES ('54','Aggloméré - Briques');
INSERT INTO dmatgm VALUES ('55','Aggloméré');
INSERT INTO dmatgm VALUES ('56','Aggloméré - Bois');
INSERT INTO dmatgm VALUES ('59','Aggloméré - Autres');
INSERT INTO dmatgm VALUES ('60','Bois');
INSERT INTO dmatgm VALUES ('61','Bois - Pierre');
INSERT INTO dmatgm VALUES ('62','Bois - Meulière');
INSERT INTO dmatgm VALUES ('63','Béton - Bois');
INSERT INTO dmatgm VALUES ('64','Bois - Briques');
INSERT INTO dmatgm VALUES ('65','Aggloméré - Bois');
INSERT INTO dmatgm VALUES ('66','Bois');
INSERT INTO dmatgm VALUES ('69','Bois - Autres');
INSERT INTO dmatgm VALUES ('90','Autres');
INSERT INTO dmatgm VALUES ('91','Pierre - Autres');
INSERT INTO dmatgm VALUES ('92','Meulière - Autres');
INSERT INTO dmatgm VALUES ('93','Béton - Autres');
INSERT INTO dmatgm VALUES ('94','Briques - Autres');
INSERT INTO dmatgm VALUES ('95','Aggloméré - Béton');
INSERT INTO dmatgm VALUES ('96','Bois - Autres');
INSERT INTO dmatgm VALUES ('99','Autres');
INSERT INTO dmatgm VALUES ('0','Indéterminé');
INSERT INTO dmatgm VALUES ('1','Pierre');
INSERT INTO dmatgm VALUES ('2','Meulière');
INSERT INTO dmatgm VALUES ('3','Béton');
INSERT INTO dmatgm VALUES ('4','Briques');
INSERT INTO dmatgm VALUES ('5','Aggloméré');
INSERT INTO dmatgm VALUES ('6','Bois');
INSERT INTO dmatgm VALUES ('9','Autres');
-- nomenclatures Matériaux des toitures (depuis 2009, pevprincipale, pevdependances) : dmatto
INSERT INTO dmatto VALUES ('00', 'Indéterminé');
INSERT INTO dmatto VALUES ('01','Tuiles');
INSERT INTO dmatto VALUES ('02','Ardoises');
INSERT INTO dmatto VALUES ('03','Zinc aluminium');
INSERT INTO dmatto VALUES ('04','Béton');
INSERT INTO dmatto VALUES ('09','Autres');
INSERT INTO dmatto VALUES ('10','Tuiles');
INSERT INTO dmatto VALUES ('11','Tuiles');
INSERT INTO dmatto VALUES ('12','Ardoises - Tuiles');
INSERT INTO dmatto VALUES ('13','Tuiles - Zinc aluminium');
INSERT INTO dmatto VALUES ('14','Béton - Tuiles');
INSERT INTO dmatto VALUES ('19','Tuiles - Autres');
INSERT INTO dmatto VALUES ('20','Ardoises');
INSERT INTO dmatto VALUES ('21','Ardoises - Tuiles');
INSERT INTO dmatto VALUES ('22','Ardoises');
INSERT INTO dmatto VALUES ('23','Ardoises - Zinc aluminium');
INSERT INTO dmatto VALUES ('24','Ardoises - Béton');
INSERT INTO dmatto VALUES ('29','Ardoises - Autres');
INSERT INTO dmatto VALUES ('30','Zinc aluminium');
INSERT INTO dmatto VALUES ('31','Tuiles - Zinc aluminium');
INSERT INTO dmatto VALUES ('32','Ardoises - Zinc aluminium');
INSERT INTO dmatto VALUES ('33','Zinc aluminium');
INSERT INTO dmatto VALUES ('34','Béton - Zinc aluminium');
INSERT INTO dmatto VALUES ('39','Zinc aluminium - Autres');
INSERT INTO dmatto VALUES ('40','Béton');
INSERT INTO dmatto VALUES ('41','Béton - Tuiles');
INSERT INTO dmatto VALUES ('42','Ardoises - Béton');
INSERT INTO dmatto VALUES ('43','Béton - Zinc aluminium');
INSERT INTO dmatto VALUES ('44','Béton');
INSERT INTO dmatto VALUES ('49','Béton - Autres');
INSERT INTO dmatto VALUES ('90','Autres');
INSERT INTO dmatto VALUES ('91','Tuiles - Autres');
INSERT INTO dmatto VALUES ('92','Ardoises - Autres');
INSERT INTO dmatto VALUES ('93','Zinc aluminium - Autres');
INSERT INTO dmatto VALUES ('94','Béton - Autres');
INSERT INTO dmatto VALUES ('99','Autres');
INSERT INTO dmatto VALUES ('0','Indéterminé');
INSERT INTO dmatto VALUES ('1','Tuiles');
INSERT INTO dmatto VALUES ('2','Ardoises');
INSERT INTO dmatto VALUES ('3','Zinc aluminium');
INSERT INTO dmatto VALUES ('4','Béton');
INSERT INTO dmatto VALUES ('9','Autres');
-- nomenclatures Top terrain constructible (depuis 2009, suf) : drgpos
INSERT INTO drgpos VALUES ('0', 'La subdivision fiscale n''est pas passible de la majoration TC');
INSERT INTO drgpos VALUES ('1', 'La parcelle est isolée');
INSERT INTO drgpos VALUES ('2', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('3', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('4', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('5', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('6', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('7', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('8', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
INSERT INTO drgpos VALUES ('9', 'Les parcelles sont contigues et forment un groupe unique pour le calcul de la majoration TC');
-- nomenclatures Etat d'entretien (depuis 2009, pevprincipale, pevdependances) : detent
INSERT INTO detent VALUES ('1','Bon');
INSERT INTO detent VALUES ('2','Assez bon');
INSERT INTO detent VALUES ('3','Passable');
INSERT INTO detent VALUES ('4','Médiocre');
INSERT INTO detent VALUES ('5','Mauvais');
-- nomenclatures Type de filiation (depuis 2012, parcelle) : type_filiation
INSERT INTO type_filiation VALUES ('D','Division');
INSERT INTO type_filiation VALUES ('R','Réunion');
INSERT INTO type_filiation VALUES ('T','Transfert');
-- nomenclatures Indicateur pour les locaux passibles de la taxe annuelle
-- sur les locaux à usage de bureaux, les locaux commerciaux et les locaux de stockage et les surfaces de
-- stationnement (TSBCS) et/ou de la taxe annuelle sur les surfaces de stationnement (TSS)
INSERT INTO fburx VALUES ('0','Local passible ni de la TSBCS ni de la TSS');
INSERT INTO fburx VALUES ('1','Local passible de la TSBCS uniquement');
INSERT INTO fburx VALUES ('2','Local passible de la TSS uniquement');
INSERT INTO fburx VALUES ('3','Local passible de la TSBCS et de la TSS');
INSERT INTO fburx VALUES ('4','Local passible de la TSBCS et/ou de la TSS mais non saisi dans l’application de gestion de données cadastrales'); |
BEGIN;
ALTER TABLE import_dbf_b_a ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_poz ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_b_u ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_ses ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_sys ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_pba ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_pbd ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_rtf ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_s_b ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_lis ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_ext ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_j_h ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_pbb ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_b_l ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_b_l ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
ALTER TABLE import_dbf_usi ALTER COLUMN idt_usi SET DATA TYPE INT USING idt_usi::integer;
ALTER TABLE import_dbf_b_u ALTER COLUMN idt_usi SET DATA TYPE INT USING idt_usi::integer;
ALTER TABLE import_dbf_b_e ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_b_e ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
ALTER TABLE import_dbf_b_p ADD COLUMN IF NOT EXISTS id SERIAL;
ALTER TABLE import_dbf_b_p ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
update import_dbf_bib set idt2 = trim(idt2);
update import_dbf_bib set idt2 = null where idt2 = '';
alter table import_dbf_bib alter column idt2 set data type integer using idt2::integer;
ALTER TABLE import_dbf_bib ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
CREATE UNIQUE INDEX import_dbf_bib_idt ON import_dbf_bib(idt);
UPDATE import_dbf_aut SET idt_jed = NULL where idt_jed = '';
UPDATE import_dbf_aut SET orcid_id = NULL where orcid_id = '';
ALTER TABLE import_dbf_aut ALTER COLUMN idt_aut SET DATA TYPE INT USING idt_aut::integer;
update import_dbf_aut SET idt_jed = trim(idt_jed);
update import_dbf_aut SET idt_jed = null where idt_jed = '';
ALTER TABLE import_dbf_aut ALTER COLUMN idt_jed SET DATA TYPE INT USING idt_jed::integer;
CREATE INDEX ON import_dbf_aut(orcid_id);
CREATE INDEX ON import_dbf_aut(pbn_id);
ALTER TABLE import_dbf_aut ADD COLUMN bpp_autor_id INTEGER;
CREATE UNIQUE INDEX import_dbf_aut_idt ON import_dbf_aut(idt_aut);
create index import_dbf_aut_nazwisko on import_dbf_aut(nazwisko);
ALTER TABLE import_dbf_aut ALTER COLUMN exp_id SET DATA TYPE INT USING exp_id::integer;
update import_dbf_aut set pbn_id = trim(pbn_id);
update import_dbf_aut set pbn_id = NULL where pbn_id = '';
-- IN ('', '1981-02-01', '2004-09-15', '3988552 Za', '3996174 Z', '3996174 Z');
ALTER TABLE import_dbf_aut ALTER COLUMN pbn_id SET DATA TYPE INT USING pbn_id::integer;
ALTER TABLE import_dbf_jez ADD COLUMN bpp_id INTEGER;
ALTER TABLE import_dbf_kbn ADD COLUMN bpp_id INTEGER;
ALTER TABLE import_dbf_pub ADD COLUMN bpp_id INTEGER;
ALTER TABLE import_dbf_usi ADD COLUMN bpp_id INTEGER;
ALTER TABLE import_dbf_usi ADD COLUMN bpp_wydawca_id INTEGER;
ALTER TABLE import_dbf_usi ADD COLUMN bpp_seria_wydawnicza_id INTEGER;
ALTER TABLE import_dbf_bib ADD COLUMN object_id INTEGER;
ALTER TABLE import_dbf_bib ADD COLUMN content_type_id INTEGER;
ALTER TABLE import_dbf_bib ADD COLUMN analyzed BOOLEAN DEFAULT 'f';
CREATE INDEX ON import_dbf_bib(analyzed);
CREATE INDEX ON import_dbf_bib(object_id);
ALTER TABLE import_dbf_b_a ADD COLUMN object_id INTEGER;
ALTER TABLE import_dbf_b_a ADD COLUMN content_type_id INTEGER;
SELECT * FROM import_dbf_b_a WHERE idt_jed LIKE 'X%';
DELETE FROM import_dbf_b_a WHERE idt_jed LIKE 'X%';
UPDATE import_dbf_b_a SET idt_jed = trim(idt_jed);
UPDATE import_dbf_b_a SET idt_jed = NULL where idt_jed = '';
ALTER TABLE import_dbf_b_a ALTER COLUMN idt_jed SET DATA TYPE INT USING idt_jed::integer;
CREATE INDEX ON import_dbf_b_a(object_id);
UPDATE import_dbf_jed SET idt_jed = trim(idt_jed);
ALTER TABLE import_dbf_jed ALTER COLUMN idt_jed SET DATA TYPE INT USING idt_jed::integer;
ALTER TABLE import_dbf_jed ADD COLUMN bpp_jednostka_id INTEGER;
CREATE UNIQUE INDEX import_dbf_jed_idt ON import_dbf_jed(idt_jed);
UPDATE import_dbf_b_a SET idt_aut = trim(idt_aut), idt = trim(idt);
ALTER TABLE import_dbf_b_a ALTER COLUMN idt_aut SET DATA TYPE INT USING idt_aut::integer;
ALTER TABLE import_dbf_b_a ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
UPDATE import_dbf_aut SET ref = trim(ref);
UPDATE import_dbf_aut SET ref = NULL where ref = '';
ALTER TABLE import_dbf_aut ALTER COLUMN ref SET DATA TYPE INT USING ref::integer;
SELECT * FROM import_dbf_b_u WHERE idt LIKE 'X%';
DELETE FROM import_dbf_b_u WHERE idt LIKE 'X%';
ALTER TABLE import_dbf_b_u ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
ALTER TABLE import_dbf_poz ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
ALTER TABLE import_dbf_poz ADD COLUMN new_lp INTEGER;
UPDATE import_dbf_poz SET new_lp = ('x' || lpad(lp, 8, '0'))::bit(32)::int ;
ALTER TABLE import_dbf_poz DROP COLUMN lp;
ALTER TABLE import_dbf_poz RENAME new_lp TO lp;
CREATE INDEX import_dbf_poz_idt_idx ON import_dbf_poz(idt);
CREATE UNIQUE INDEX import_dbf_idt_wyd ON import_dbf_wyd(idt_wyd);
update import_dbf_aut set idt_jed = (select idt_jed from import_dbf_jed where skrot = '000') where idt_jed is NULL;
update import_dbf_b_a set idt_jed = (select idt_jed from import_dbf_jed where skrot = '000') where idt_jed is NULL;
create index on import_dbf_poz(idt, kod_opisu);
create index on import_dbf_poz(idt, kod_opisu, lp);
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '<UP>', '<sup>') WHERE tytul_or LIKE '%<UP>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '<up>', '<sup>') WHERE tytul_or LIKE '%<up>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '<dn>', '<sub>') WHERE tytul_or LIKE '%<dn>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '<DN>', '<sub>') WHERE tytul_or LIKE '%<DN>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '</UP>', '</sup>') WHERE tytul_or LIKE '%</UP>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '</up>', '</sup>') WHERE tytul_or LIKE '%</up>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '</dn>', '</sub>') WHERE tytul_or LIKE '%</dn>%';
UPDATE import_dbf_bib SET tytul_or = REPLACE(tytul_or, '</DN>', '</sub>') WHERE tytul_or LIKE '%</DN>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '<UP>', '<sup>') WHERE title LIKE '%<UP>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '<up>', '<sup>') WHERE title LIKE '%<up>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '<dn>', '<sub>') WHERE title LIKE '%<dn>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '<DN>', '<sub>') WHERE title LIKE '%<DN>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '</UP>', '</sup>') WHERE title LIKE '%</UP>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '</up>', '</sup>') WHERE title LIKE '%</up>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '</dn>', '</sub>') WHERE title LIKE '%</dn>%';
UPDATE import_dbf_bib SET title = REPLACE(title, '</DN>', '</sub>') WHERE title LIKE '%</DN>%';
UPDATE import_dbf_aut SET ref = NULL WHERE ref not in (select idt_aut from import_dbf_aut);
-- Ustawia jednostke 'brak jednostki' tam gdzie jest NULL jako jednostka w tabeli b_a
UPDATE import_dbf_b_a SET idt_jed = (SELECT idt_jed from import_dbf_jed WHERE UPPER(nazwa) = '<NAME>') WHERE idt_jed IS NULL;
alter table import_Dbf_jer add column pk serial;
alter table import_Dbf_b_b add column pk serial;
ALTER TABLE import_dbf_b_b ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
ALTER TABLE import_dbf_j_h ALTER COLUMN idt_jed_t SET DATA TYPE INT USING idt_jed_t::integer;
ALTER TABLE import_dbf_j_h ALTER COLUMN idt_jed_f SET DATA TYPE INT USING idt_jed_f::integer;
alter table import_Dbf_b_n add column pk serial;
ALTER TABLE import_dbf_b_n ALTER COLUMN idt SET DATA TYPE INT USING idt::integer;
COMMIT;
|
<reponame>NCIP/cabio<gh_stars>1-10
/*L
Copyright SAIC
Distributed under the OSI-approved BSD 3-Clause License.
See http://ncip.github.com/cabio/LICENSE.txt for details.
L*/
DROP PUBLIC SYNONYM CYTOGENIC_LOCATION_CYTOBAND
/
--
-- CYTOGENIC_LOCATION_CYTOBAND (Synonym)
--
-- Dependencies:
-- CYTOGENIC_LOCATION_CYTOBAND (Table)
--
CREATE PUBLIC SYNONYM CYTOGENIC_LOCATION_CYTOBAND FOR CYTOGENIC_LOCATION_CYTOBAND
/
|
CREATE TABLE ipclive.wp_ipc_representations (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`ProjectName` text,
`CaseReference` varchar(10) DEFAULT NULL,
`DataID` int(11) DEFAULT NULL,
`UniqueReference` varchar(32) NOT NULL,
`WebReference` int(11) DEFAULT NULL,
`PersonalName` text,
`Representative` varchar(255) DEFAULT NULL,
`IndvdlOnBhalfName` text,
`OrgOnBhalfName` text,
`AgentOrgOnBhalfContactName` text,
`RepFrom` varchar(200) DEFAULT NULL,
`InterestInLand` text,
`SpecifyOther` text,
`CompulsoryAcquisitionHearing` text,
`RepresentationOriginal` text,
`RepresentationRedacted` text,
`RelevantOrNot` text,
`SubmitFurtherWrittenReps` text,
`PreliminaryMeeting` text,
`OpenFloorHearings` text,
`IssuesSpecificHearings` text,
`DateRrepReceived` datetime DEFAULT NULL,
`DoNotPublish` varchar(5) DEFAULT NULL,
`Attachments` text,
PRIMARY KEY (`ID`),
KEY `Date` (`DateRrepReceived`),
KEY `CaseReference` (`CaseReference`),
KEY `UniqueReference` (`UniqueReference`),
KEY `RepFrom` (`RepFrom`)
);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL,'Test (Test)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid. Even if it turns out I''m the only one to have said, no-one will be able to exclaim "You should have said!"',NULL,NULL,NULL,NULL,NULL,'2020-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('regression test','EN010009',NULL,'BC010012-34602',NULL,'neil frost (neil frost )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-02-28 00:00:00',NULL,'BC010012-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Edge Reg Test 1.4','TR033002',NULL,'uniqueReference',NULL,'<NAME>',NULL,NULL,NULL,NULL,'Myself',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-02-03 00:00:00',NULL,'TR033002-000027');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('1.4 Reg Test','EN010009',NULL,'WW010005-34611',NULL,'Frosty (Frosty )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-09-03 00:00:00',NULL,'WW010005-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Letters Test','EN010009',NULL,'WW010007-34616',NULL,'Frosty (Frosty)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-03-19 00:00:00',NULL,'WW010007-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Horizon 45 release','EN010009',NULL,'BC010013-34618',NULL,'Frosty Fear (Frosty Fear )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-01-04 00:00:00',NULL,'BC010013-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Reg 1.5 on Firefox','EN010009',NULL,'TR043003-000010',NULL,'champ kadaba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-04-29 00:00:00',NULL,'TR043003-000011');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('regression test 1.5','EN010009',NULL,'BC010015-34623',NULL,'Fickly finger of feat (Fickly finger of feat )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-04-29 00:00:00',NULL,'BC010015-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Accessibility Testing','EN010009',NULL,'EN010113-34637',NULL,'Frosty Fright Nights (Frosty Fright Nights )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-08-28 00:00:00',NULL,'EN010113-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('TEST Welsh NSIP','EN010009',NULL,'BC010021-34640',NULL,'OTIB (OTIB)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-07-09 00:00:00',NULL,'TR010140-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('TEST CASE 15/09/2020','EN010009',NULL,'EN010114-34643',NULL,'B&E Testing (B&E Testing)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-09-15 00:00:00',NULL,'EN010114-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Santosh Test NI','EN010009',NULL,'TR010060-34646',NULL,'Santosh Bhat',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-12-10 00:00:00',NULL,'TR010060-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Auto_Test','EN010009',NULL,'TR010065-34656',NULL,'No name provided',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-11-17 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Auto_Test','EN010009',NULL,'TR010065-34657',NULL,'No name provided',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-11-18 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Website Regression','EN010009',NULL,'BC010027-34658',NULL,'FRIGHT NIGHTS FROSTY (FRIGHT NIGHTS FROSTY)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-12-15 00:00:00',NULL,'BC010027-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('NI Test for Website checks','EN010009',NULL,'TR010093-34660',NULL,'Frosty Fright Nights (Frosty Fright Nights )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2020-12-16 00:00:00',NULL,'TR010093-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Auto_Test','EN010009',NULL,'TR010109-34670',NULL,'PINS (PINS)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-08-01 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Auto_Test','EN010009',NULL,'TR010109-34671',NULL,'Frosty Flights (Frosty Flights)',NULL,NULL,NULL,NULL,'Parish Councils',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-08-01 00:00:00',NULL,'TR010109-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Frosty Flights','EN010009',NULL,'TR020006-34674',NULL,'Neil (Neil )',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-11-01 00:00:00',NULL,'TR020006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('Test Energy 2','EN010009',NULL,'EN010117-34690',NULL,'Energy (Energy)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-11-01 00:00:00',NULL,'EN010117-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('ACR034','EN010009',NULL,'BC010033-34717',NULL,'David W',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-03-12 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('HZN Reg 51 Testing','EN010009',NULL,'TR010140-34719',NULL,'Frosty (Frosty)',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-03-13 00:00:00',NULL,'TR010140-000001');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('HZN Reg 51 Testing','EN010009',NULL,'TR010140-34720',NULL,'Frosty Fliers (Frosty Fliers )',NULL,NULL,NULL,NULL,'Parish Councils',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-03-14 00:00:00',NULL,'TR010140-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT May 2021','EN010009',NULL,'EN010118-34713',NULL,'<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-03-15 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT May 2021','EN010009',NULL,'EN010118-34726',NULL,'<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-03-16 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT May 2021','EN010009',NULL,'EN010118-34727',NULL,'Chris',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2021-03-17 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT May 2021','EN010009',NULL,'EN010118-34740',NULL,'<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comments',NULL,NULL,NULL,NULL,NULL,'2022-07-04 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 1',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 1',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid. Even if it turns out I''m the only one to have said, no-one will be able to exclaim "You should have said!"',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 2',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 2',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-18 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 3',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 3',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-17 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 4',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 4',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-16 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 5',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 5',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-15 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 6',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 6',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-14 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 7',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 7',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-13 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 8',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 8',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-12 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 9',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 9',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-11 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 10',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 10',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-10 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 11',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 11',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-09 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 12',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 12',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-08 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 13',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 13',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-07 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 14',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 14',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-06 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 15',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 15',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-05 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 16',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 16',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-04 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 17',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 17',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-03 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 18',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 18',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-02 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 19',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 19',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-01 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 20',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 20',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-20 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 21',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 21',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-21 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 22',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 22',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-22 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 23',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 23',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 24',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 24',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 25',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 25',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 26',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 26',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 27',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 27',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 28',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 28',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 29',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 29',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 30',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 30',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 31',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 31',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 32',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 32',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 33',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 33',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 34',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 34',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 35',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 35',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 36',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 36',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 37',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 37',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 38',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 38',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 39',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 39',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 40',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 40',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 41',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 41',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 42',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 42',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 43',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 43',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 44',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 44',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 45',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 45',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 46',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 46',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 47',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 47',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 48',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 48',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 49',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 49',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 50',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 50',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 51',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 51',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 52',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 52',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 53',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 53',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 54',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 54',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 55',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 55',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 56',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 56',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 57',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 57',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 58',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 58',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 59',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 59',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 60',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 60',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 61',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 61',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 62',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 62',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 63',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 63',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 64',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 64',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 65',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 65',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 66',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 66',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 67',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 67',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 68',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 68',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 69',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 69',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 70',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 70',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 71',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 71',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 72',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 72',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 73',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 73',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 74',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 74',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 75',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 75',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 76',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 76',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 77',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 77',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 78',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 78',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 79',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 79',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 80',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 80',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 81',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 81',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 82',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 82',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 83',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 83',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 84',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 84',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 85',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 85',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 86',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 86',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 87',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 87',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 88',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 88',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 89',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 89',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 90',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 90',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 91',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 91',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 92',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 92',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 93',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 93',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 94',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 94',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 95',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 95',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 96',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 96',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 97',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 97',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 98',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 98',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 99',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 99',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 100',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 100',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 101',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 101',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 102',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 102',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 103',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 103',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 104',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 104',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 105',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 105',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 106',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 106',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 107',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 107',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 108',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 108',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 109',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 109',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 110',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 110',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 111',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 111',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 112',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 112',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 113',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 113',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 114',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 114',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 115',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 115',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 116',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 116',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 117',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 117',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 118',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 118',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 119',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 119',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 120',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 120',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 121',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 121',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 122',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 122',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 123',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 123',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 124',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 124',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 125',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 125',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 126',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 126',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 127',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 127',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 128',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 128',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 129',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 129',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 130',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 130',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 131',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 131',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 132',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 132',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 133',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 133',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 134',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 134',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 135',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 135',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 136',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 136',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 137',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 137',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 138',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 138',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 139',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 139',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 140',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 140',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 141',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 141',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 142',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 142',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 143',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 143',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 144',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 144',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 145',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 145',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 146',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 146',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 147',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 147',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 148',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 148',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 149',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 149',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 150',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 150',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 151',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 151',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 152',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 152',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 153',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 153',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 154',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 154',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 155',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 155',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 156',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 156',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 157',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 157',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 158',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 158',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 159',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 159',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 160',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 160',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 161',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 161',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 162',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 162',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 163',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 163',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 164',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 164',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 165',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 165',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 166',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 166',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 167',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 167',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 168',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 168',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 169',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 169',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 170',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 170',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 171',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 171',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 172',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 172',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 173',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 173',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 174',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 174',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 175',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 175',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 176',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 176',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 177',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 177',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 178',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 178',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 179',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 179',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 180',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 180',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 181',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 181',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 182',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 182',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 183',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 183',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 184',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 184',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 185',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 185',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 186',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 186',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 187',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 187',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 188',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 188',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 189',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 189',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 190',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 190',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 191',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 191',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 192',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 192',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 193',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 193',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 194',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 194',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 195',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 195',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 196',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 196',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 197',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 197',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 198',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 198',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 199',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 199',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 200',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 200',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 201',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 201',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 202',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 202',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 203',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 203',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010102',NULL,'WS010006-34601',NULL,'Test (Test) - 204',NULL,NULL,NULL,NULL,'Members of the Public/Businesses - 204',NULL,NULL,NULL,NULL,'Some comment which exceeds the character limit. Clearly there is much to be said which must not be left unsaid."',NULL,NULL,NULL,NULL,NULL,'2021-02-19 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL,'Joe Public',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'I think Jo<NAME>''s should find somewhere else to build their new giant wind turbine. The turbines will be an unsightly addition to the view from the road on which I live. I''m concerned that the turbine could fall onto traffic.',NULL,NULL,NULL,NULL,NULL,'2022-05-16 00:00:00',NULL,NULL);
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>','<NAME>',NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'I think it is fantastic that entrepreneur <NAME> should want to expand his eco-portfolio by investing in his local area. The council should ensure that hot air generated by disgruntled residents is not wasted but instead, redirected to drive the turbine.',NULL,NULL,NULL,NULL,NULL,'2022-05-15 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, 'Somerset County Council',NULL,NULL,NULL,NULL,'Local Authorities',NULL,NULL,NULL,NULL,'<NAME> has demonstrated his commitment to his home county of Somerset by proposing this construction project. We are happy that all areas of compliance, including the local authority''s building and environmental controls, have been satisfied.',NULL,NULL,NULL,NULL,NULL,'2022-05-15 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-10 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-09 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-08 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, 'Joe Turnaround',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-07 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-07 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-06 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-05 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-04 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-03 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-02 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-05-01 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-30 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-29 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-28 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-27 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-26 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, '<NAME>',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-25 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, 'Joe Current',NULL,NULL,NULL,NULL,'Members of the Public/Businesses',NULL,NULL,NULL,NULL,'Some comment',NULL,NULL,NULL,NULL,NULL,'2022-04-24 00:00:00',NULL,'WS010006-000002');
INSERT INTO ipclive.wp_ipc_representations (`ProjectName`,`CaseReference`,`DataID`,`UniqueReference`,`WebReference`,`PersonalName`,`Representative`,`IndvdlOnBhalfName`,`OrgOnBhalfName`,`AgentOrgOnBhalfContactName`,`RepFrom`,`InterestInLand`,`SpecifyOther`,`CompulsoryAcquisitionHearing`,`RepresentationOriginal`,`RepresentationRedacted`,`RelevantOrNot`,`SubmitFurtherWrittenReps`,`PreliminaryMeeting`,`OpenFloorHearings`,`IssuesSpecificHearings`,`DateRrepReceived`,`DoNotPublish`,`Attachments`) VALUES ('SPT Feb 2020','EN010009',NULL,'WS010006-34601',NULL, 'Stokes Croft Parish Council',NULL,NULL,NULL,NULL,'Parish Councils',NULL,NULL,NULL,NULL,'We wholeheartedly support Joe Stipliani''s planning application',NULL,NULL,NULL,NULL,NULL,'2022-04-20 00:00:00',NULL,'WS010006-000002');
|
CREATE VIEW [Comp].[DAS_Compliance_Report]
AS
SELECT
CN.DASAccountID
,ISNULL(CAST(Acc.Name as nvarchar(100)),'NA') as DASAccountName
,ISNULL(LD.PayrollYear, '2999') AS PayrollYear
,ISNULL(LD.PayrollMonth, '99') AS PayrollMonth
,CN.CalendarYear
,CN.CalendarMonth
,SUM(ISNULL(LevyDeclaredInMonth, 0)) AS LevyDeclaredInMonth
,SUM(ISNULL(PaymentLevy, 0)) AS PaymentLevy
,SUM(ISNULL(PaymentCoInvestedESFA, 0)) AS PaymentCoInvestedESFA
FROM
(
SELECT DISTINCT
CalCP.CalendarMonthNumber AS CalendarMonth
,CalCP.CalendarYear AS CalendarYear
,LD.PayrollMonth
,LD.PayrollYear
,ISNULL(EA.HashedId,'XXXXXX') AS DASAccountID
FROM AsData_PL.Acc_Account EA
LEFT JOIN ASData_PL.Fin_GetLevyDeclarationAndTopUp AS LD
ON EA.ID=LD.AccountId
LEFT OUTER JOIN dbo.DASCalendarMonth CalCP -- Calendar Conversion
ON LD.PayrollYear = CalCP.TaxYear
AND LD.PayrollMonth = CalCP.TaxMonthNumber
WHERE LD.LastSubmission=1
UNION
SELECT DISTINCT
cp.CalendarMonth
,
cp.CalendarYear
,
cp.TaxMonthNumber AS PayrollMonth
,
cp.TaxYear AS PayrollYear
,
DASAccountID
FROM
(
SELECT
ISNULL(CASE WHEN P.CollectionPeriod <= 12 THEN CalCP.CalendarMonthNumber
WHEN P.CollectionPeriod = 13 THEN 9
WHEN P.CollectionPeriod = 14 THEN 10
END, -1) AS CalendarMonth
,
ISNULL(CASE WHEN P.CollectionPeriod <= 12 THEN CalCP.CalendarYear
WHEN P.CollectionPeriod IN (13,14) THEN
CAST( CONCAT('20', SUBSTRING( CAST ( P.AcademicYear AS VARCHAR) , 3, 4)) AS INT )
END, -1) AS CalendarYear,
EA.HashedId AS DASAccountID,
CalCP.TaxYear,
CalCP.TaxMonthNumber
FROM StgPmts.Payment P
LEFT OUTER JOIN dbo.DASCalendarMonth CalCP -- Calendar Conversion for CollectionPeriod Dates
ON CONCAT('20', SUBSTRING( CAST ( P.AcademicYear AS VARCHAR) , 1, 2), '/', SUBSTRING( CAST ( P.AcademicYear AS VARCHAR) , 3, 4)) = CalCP.AcademicYear
AND P.CollectionPeriod = CalCP.AcademicMonthNumber
LEFT JOIN AsData_PL.Acc_Account EA
ON EA.ID=P.AccountId
) AS cp
) AS CN
LEFT JOIN (
SELECT
ISNULL(CAST(LD.[PayrollMonth] AS TINYINT),0) AS PayrollMonth
,ISNULL(CAST(LD.[PayrollYear] AS NVARCHAR(10)),-1) AS PayrollYear
,ISNULL(EA.HashedId,'XXXXXX') AS DASAccountID
,SUM(LevyDeclaredInMonth) AS LevyDeclaredInMonth
FROM AsData_PL.Acc_Account EA
LEFT JOIN ASData_PL.Fin_GetLevyDeclarationAndTopUp AS LD
ON EA.ID=LD.AccountId
GROUP BY
PayrollMonth
,PayrollYear
,ISNULL(EA.HashedId,'XXXXXX')
) AS LD
ON
CN.PayrollMonth = LD.PayrollMonth
AND
CN.PayrollYear = LD.PayrollYear
AND
CN.DASAccountID = LD.DASAccountID
LEFT JOIN
(
SELECT DISTINCT
CP.CalendarMonth
,
CP.CalendarYear
,
CP.DASAccountID
,
SUM(CASE WHEN CP.FundingSource = 'Levy' THEN CP.Amount ELSE 0 END) AS PaymentLevy
,
SUM(CASE WHEN CP.FundingSource = 'CoInvestedSFA' THEN CP.Amount ELSE 0 END) AS PaymentCoInvestedESFA
FROM
(
SELECT
ISNULL(CASE WHEN P.CollectionPeriod <= 12 THEN CalCP.CalendarMonthNumber
WHEN P.CollectionPeriod = 13 THEN 9
WHEN P.CollectionPeriod = 14 THEN 10
END, -1) AS CalendarMonth
,
ISNULL(CASE WHEN P.CollectionPeriod <= 12 THEN CalCP.CalendarYear
WHEN P.CollectionPeriod IN (13,14) THEN
CAST( CONCAT('20', SUBSTRING( CAST ( P.AcademicYear AS VARCHAR) , 3, 4)) AS INT )
END, -1) AS CalendarYear
,EA.HashedId AS DASAccountID
, CAST( COALESCE(FS.FieldDesc,'Unknown') AS nvarchar(25) ) AS FundingSource
, ISNULL( CAST( P.Amount AS DECIMAL (18, 5) ), -1 ) AS Amount
FROM
StgPmts.Payment AS P
LEFT OUTER JOIN dbo.DASCalendarMonth CalCP -- Calendar Conversion for CollectionPeriod Dates
ON CONCAT('20', SUBSTRING( CAST ( P.AcademicYear AS VARCHAR) , 1, 2), '/', SUBSTRING( CAST ( P.AcademicYear AS VARCHAR) , 3, 4)) = CalCP.AcademicYear
AND P.CollectionPeriod = CalCP.AcademicMonthNumber
LEFT JOIN AsData_PL.Acc_Account EA
ON EA.ID=P.AccountId
LEFT JOIN dbo.ReferenceData FS
ON FS.FieldValue=P.FundingSource
AND FS.FieldName='FundingSource'
AND FS.Category='Payments'
) AS CP
GROUP BY
CalendarMonth
,CalendarYear
,DASAccountID
)
AS Pay
ON CN.DASAccountID = Pay.DasAccountId
AND CN.CalendarMonth = Pay.CalendarMonth
AND CN.CalendarYear = Pay.CalendarYear
LEFT JOIN [ASData_PL].[Acc_Account] AS Acc
ON CN.DasAccountId = isnull(CAST(Acc.HashedId AS nvarchar(100)),'XXXXXX')
GROUP BY
CN.DASAccountID
,ISNULL(CAST(Acc.Name as nvarchar(100)),'NA')
,LD.PayrollYear
,LD.PayrollMonth
,CN.CalendarYear
,CN.CalendarMonth
HAVING
SUM(ISNULL(LevyDeclaredInMonth, 0)) > 0
OR SUM(ISNULL(PaymentLevy, 0)) > 0
OR SUM(ISNULL(PaymentCoInvestedESFA, 0)) > 0
GO
|
<reponame>Divyansh1996/Travel_Beyond_Limits<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 10, 2018 at 05:58 AM
-- Server version: 10.1.30-MariaDB
-- PHP Version: 5.6.33
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: `travel`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`a_id` int(5) NOT NULL,
`a_pass` varchar(25) NOT NULL,
`a_email` varchar(25) NOT NULL,
`a_name` varchar(25) NOT NULL,
`a_image` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`a_id`, `a_pass`, `a_email`, `a_name`, `a_image`) VALUES
(1, '123', '<EMAIL>', 'admin', 'dhoni.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `city`
--
CREATE TABLE `city` (
`cityid` int(11) NOT NULL,
`city` varchar(100) CHARACTER SET ascii DEFAULT NULL,
`stateid` int(11) DEFAULT NULL,
`countryid` tinyint(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `city`
--
INSERT INTO `city` (`cityid`, `city`, `stateid`, `countryid`) VALUES
(429, 'AMBIKAPUR', 6, 101),
(430, 'ANTAGARH', 6, 101),
(431, 'ARANG', 6, 101),
(432, 'BACHELI', 6, 101),
(433, 'BAGBAHERA', 6, 101),
(434, 'BAGICHA', 6, 101),
(435, 'BAIKUNTHPUR', 6, 101),
(436, 'BALOD', 6, 101),
(437, 'BALODABAZAR', 6, 101),
(438, 'BALRAMPUR', 6, 101),
(439, 'BARPALLI', 6, 101),
(440, 'BASANA', 6, 101),
(441, 'BASTANAR', 6, 101),
(442, 'BDERAJPUR', 6, 101),
(443, 'BEMETARA', 6, 101),
(444, 'BERLA', 6, 101),
(445, 'BHAIRONGARH', 6, 101),
(446, 'BHANUPRATAPPUR', 6, 101),
(447, 'BHARATHPUR', 6, 101),
(448, 'BHATAPARA', 6, 101),
(449, 'BHILAIGARH', 6, 101),
(450, 'BHOPALPATNAM', 6, 101),
(451, 'BIJAPUR', 6, 101),
(452, 'BILASPUR', 6, 101),
(453, 'BODLA', 6, 101),
(454, 'BOKABAND', 6, 101),
(455, 'CHANDIPARA', 6, 101),
(456, 'CHHINAGARH', 6, 101),
(457, 'CHHURIAKALA', 6, 101),
(458, 'CHINGMUT', 6, 101),
(459, 'CHUIKHADAN', 6, 101),
(460, 'DABHARA', 6, 101),
(461, 'DALLIRAJHARA', 6, 101),
(462, 'DANTEWADA', 6, 101),
(463, 'DEOBHOG', 6, 101),
(464, 'DHAMDA', 6, 101),
(465, 'DHAMTARI', 6, 101),
(466, 'DHARAMJAIGARH', 6, 101),
(467, 'DONGARGARH', 6, 101),
(468, 'DURG', 6, 101),
(469, 'DURGAKONDAL', 6, 101),
(470, 'FINGESHWAR', 6, 101),
(471, 'GARIABAND', 6, 101),
(472, 'GARPA', 6, 101),
(473, 'GHARGHODA', 6, 101),
(474, 'GOGUNDA', 6, 101),
(475, 'ILAMIDI', 6, 101),
(476, 'JAGDALPUR', 6, 101),
(477, 'JANJGIR', 6, 101),
(478, 'JARWA', 6, 101),
(479, 'JASHPURNAGAR', 6, 101),
(480, 'KANKER', 6, 101),
(481, 'KASDOL', 6, 101),
(482, 'KATHDOL', 6, 101),
(483, 'KATHGHORA', 6, 101),
(484, 'KAWARDHA', 6, 101),
(485, 'KESKAL', 6, 101),
(486, 'KHAIRGARH', 6, 101),
(487, 'KONDAGAON', 6, 101),
(488, 'KONTA', 6, 101),
(489, 'KORBA', 6, 101),
(490, 'KOTA', 6, 101),
(491, 'KOYELIBEDA', 6, 101),
(492, 'KUAKUNDA', 6, 101),
(493, 'KUNKURI', 6, 101),
(494, 'KURUD', 6, 101),
(495, 'LOHADIGUNDAH', 6, 101),
(496, 'LORMI', 6, 101),
(497, 'LUCKWADA', 6, 101),
(498, 'MAHASAMUND', 6, 101),
(499, 'MAKODI', 6, 101),
(500, 'MANENDRAGARH', 6, 101),
(501, 'MANPUR', 6, 101),
(502, 'MANPUR', 6, 101),
(503, 'MARWAHI', 6, 101),
(504, 'MOHLA', 6, 101),
(505, 'MUNGELI', 6, 101),
(506, 'NAGRI', 6, 101),
(507, 'NARAINPUR', 6, 101),
(508, 'NEORA', 6, 101),
(509, 'NETANAR', 6, 101),
(510, 'ODGI', 6, 101),
(511, 'PADAMKOT', 6, 101),
(512, 'PAKHANJUR', 6, 101),
(513, 'PALI', 6, 101),
(514, 'PANDARIA', 6, 101),
(515, 'PANDISHANKAR', 6, 101),
(516, 'PARASGAON', 6, 101),
(517, 'PASAN', 6, 101),
(518, 'PATAN', 6, 101),
(519, 'PATHALGAON', 6, 101),
(520, 'PENDRA', 6, 101),
(521, 'PRATAPPUR', 6, 101),
(522, 'PREMNAGAR', 6, 101),
(523, 'RAIGARH', 6, 101),
(524, 'RAIPUR', 6, 101),
(525, 'RAJANDGAON', 6, 101),
(526, 'RAJPUR', 6, 101),
(527, 'RAMCHANDRAPUR', 6, 101),
(528, 'SARAIPALI', 6, 101),
(529, 'SARANGGARH', 6, 101),
(530, 'SARONA', 6, 101),
(531, 'SEMARIA', 6, 101),
(532, 'SHAKTI', 6, 101),
(533, 'SITAPUR', 6, 101),
(534, 'SUKMA', 6, 101),
(535, 'SURAJPUR', 6, 101),
(536, 'TAPKARA', 6, 101),
(537, 'TOYNAR', 6, 101),
(538, 'UDAIPUR', 6, 101),
(539, 'UPRODA', 6, 101),
(540, 'WADRAINAGAR', 6, 101),
(541, 'udaypur', 7, 101),
(544, 'Jodhpur', 7, 101),
(543, 'jaipur', 7, 101);
-- --------------------------------------------------------
--
-- Table structure for table `comment`
--
CREATE TABLE `comment` (
`co_id` int(5) NOT NULL,
`co_description` varchar(100) NOT NULL,
`u_id` int(5) NOT NULL,
`p_id` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `comment`
--
INSERT INTO `comment` (`co_id`, `co_description`, `u_id`, `p_id`) VALUES
(1, 'thats a very nice blog', 1, '9'),
(2, 'thats a new and interesting place', 2, '23'),
(3, 'Wow! The decoration looks stupendous!\r\nMerry Christmas !!', 3, '24'),
(4, 'Great Smiles. there are many things which you have to cover \"kyunki india bahut bada hai\"', 4, '25'),
(5, 'A beautiful concept laid out in a beautiful way! Smiles connect people and places like nothing else ', 5, '26'),
(11, 'awesome and wonderful', 1, '40'),
(14, 'This is My Favourite Blog And My Favourite Place', 4, '42'),
(18, 'my favorite one', 4, '42'),
(19, 'this is awesome', 4, '42'),
(24, 'Awesome man', 5, '40'),
(25, 'favvv', 5, '40'),
(26, 'Awesome look', 0, '40'),
(27, 'awesome dude', 5, '40'),
(28, 'nice place i will visit there asap', 1, ''),
(29, 'niceeeeeeeeeeeeeeeee', 1, ''),
(30, 'niceeeeeeeeeeeeeeeee', 1, ''),
(31, 'love this place', 1, ''),
(32, 'ihgtygbhjnkml', 1, ''),
(33, 'asdfadfg', 1, '40'),
(34, 'nice site yaar', 2, '44'),
(35, 'very very good looking site', 2, '44'),
(36, 'jbjbhjhvjvgjvgchfcfxffxfxgbkbk', 2, '44'),
(37, 'this is a very nice place to visit and i love this place', 2, '44');
-- --------------------------------------------------------
--
-- Table structure for table `image`
--
CREATE TABLE `image` (
`i_id` int(5) NOT NULL,
`p_id` int(5) NOT NULL,
`i_name` varchar(40) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `image`
--
INSERT INTO `image` (`i_id`, `p_id`, `i_name`) VALUES
(6, 39, '1483644513humayun2.jpg'),
(7, 39, '1483644513humayun3.jpg'),
(8, 39, '1483644513humayun4.jpg'),
(9, 39, '1483644513humayun5.jpg'),
(10, 39, '1483644513humayun6.jpg'),
(11, 39, '1483644513humayun7.jpg'),
(12, 39, '1483644513humayun8.jpg'),
(13, 40, '1483649840borra2.JPG'),
(14, 40, '1483649840borra3.jpg'),
(15, 40, '1483649840borra4.jpg'),
(16, 40, '1483649840borra5.jpg'),
(17, 40, '1483649840borra6.jpg'),
(18, 40, '1483649840borra7.jpg'),
(19, 41, '1483692095victoria1.jpg'),
(20, 41, '1483692095victoria2.jpg'),
(21, 41, '1483692095victoria3.jpg'),
(22, 41, '1483692095victoria4.jpg'),
(23, 41, '1483692095victoria5.jpg'),
(24, 41, '1483692095victoria6.jpg'),
(25, 42, '1484120800amer2.jpg'),
(26, 42, '1484120800amer3.jpg'),
(27, 42, '1484120800amer4.jpg'),
(28, 42, '1484120800amer5.jpg'),
(29, 42, '1484120800amer6.jpg'),
(30, 42, '1484120801amer7.jpg'),
(31, 43, '1484122492manali1.jpg'),
(32, 43, '1484122492manali3.jpg'),
(33, 43, '1484122492manali4.jpg'),
(34, 43, '1484122492manali5.jpg'),
(35, 43, '1484122492manali6.jpg'),
(36, 43, '1484122492manali7.jpg'),
(37, 44, '1484124684a2.jpg'),
(38, 44, '1484124684a4.jpg'),
(39, 44, '1484124684a5.jpg'),
(40, 44, '1484124684a6.jpg'),
(41, 44, '1484124685a7.jpg'),
(42, 45, '1484125999amar2.jpg'),
(43, 45, '1484125999amar3.jpg'),
(44, 45, '1484126000amar4.jpg'),
(45, 45, '1484126000amar5.jpg'),
(46, 45, '1484126000amar6.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `message`
--
CREATE TABLE `message` (
`m_id` int(5) NOT NULL,
`m_message` text NOT NULL,
`m_subject` varchar(30) NOT NULL,
`u_id` int(10) NOT NULL,
`u_name` varchar(30) NOT NULL,
`u_email` varchar(40) NOT NULL,
`u_image` varchar(40) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `message`
--
INSERT INTO `message` (`m_id`, `m_message`, `m_subject`, `u_id`, `u_name`, `u_email`, `u_image`) VALUES
(1, 'What is Your Name', 'About You', 1, 'Kanha ', '<EMAIL>', 'arjit.jpg'),
(4, 'How are you?', 'Yourself', 4, 'Deepkiran', '<EMAIL>', '587597.jpg'),
(9, 'Can You Help Me Out?', 'About me', 3, 'Payal', '<EMAIL>', 'sunidhi.jpg'),
(11, 'How You Made This Blog?', 'About Blog', 2, 'Sunita', '<EMAIL>', 'illena.jpg'),
(12, 'hello', 'rrrrr', 1, 'Kanha ', '<EMAIL>', 'arjit.jpg'),
(13, 'Do you know about him', 'About Goku', 5, 'Nilesh', '<EMAIL>', 'dragon.jpg'),
(15, 'fdsfs', 'sfs', 5, 'Nilesh', '<EMAIL>', 'dragon.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `place`
--
CREATE TABLE `place` (
`p_id` int(5) NOT NULL,
`p_heading` varchar(30) NOT NULL,
`p_cityid` int(5) NOT NULL,
`place_near` varchar(50) NOT NULL,
`p_description` text NOT NULL,
`p_history` text NOT NULL,
`p_hotel` varchar(50) NOT NULL,
`p_postdate` varchar(15) NOT NULL,
`p_image` varchar(30) NOT NULL,
`p_popular` varchar(30) NOT NULL,
`p_short` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `place`
--
INSERT INTO `place` (`p_id`, `p_heading`, `p_cityid`, `place_near`, `p_description`, `p_history`, `p_hotel`, `p_postdate`, `p_image`, `p_popular`, `p_short`) VALUES
(40, 'Borra Caves', 526, 'Vishkhapatanam', ' Borra caves are situated at the distance of 90- 95 km from the city of Visakhapatnam. They are located at the height of 1450 feet above the sea level. They are spread in the Ananthagiri hill ranges of eastern ghats, which ranges between 800 to 1300 meters M.S.L. In Andhra Pradesh. November and December are considered as the best time to visit these caves.Borra caves are the natural caves, that are said to have originated from the Gosthani river, which flows through these caves. The caves were created due to the flow of river over the limestone area. The pressure was exerted by the humic acid in the water on the mineral deposits and the limestone dissolved in the water. The dissolved limestone trickled down drop by drop forming the different shapes in the cave. These Borra caves spreaded over the one square km and are formed over the period of million of years. The opening of the cave measures upto 100 m horizontally and 75 m vertically. The cave is filled with stalagmite and stalactite formations. Visitors have given different names to the different shapes of these stalagmite and stalactite formations such as Shiv Parvathi, Mother child, Human brain, crocodile, Rushis Beard etc. Some more interesting structures inside the cave include mushroom formation, temple, church and many more. You may find here crystal white calcium stones in various forms. The Borra caves glitters and illuminates by the sixty three lamps of mercury, sodium vapour and halogen\r\n', ' The caves of Borra are said to be more than 150 years old. These wonder caves were discovered by the British geologist William King Gorge in the year 1807. The local tribals inhabitating in this area have a different story to tell. They say once a cowherd lost his cow while grazing. He soon realized that his cow had fallen down. He got worried, on looking down he found 60 feet deep hole, where he saw his cow was alive and feeding on the grass deep below. This was the time when the tribal has discovered the cave.These million year old Borra caves holds the great religious importance among the Hindus in India. Among the formations found in the cave, you may also find here \'Shivalingam\' and the idol of the cow known as Kamadhenu. \r\n', 'Mountain View Resorts', 'January 03,2017', 'borra1.jpg', 'yes', 'Borra caves are situated at the distance of 90- 95 km from the city of Visakhapatnam. They are located at the height of 1450 feet above the sea level. They are spread in the Ananthagiri hill ranges of eastern ghats, which ranges between 800 to 1300 meters M.S.L. In Andhra Pradesh. November and December are considered as the best time to visit these caves.'),
(41, 'Victoria Memorial ', 447, 'Kolkata', ' The Victoria Memorial, a huge monument made of white marble located in the heart of the City of Joy, Kolkata (erstwhile Calcutta) in West Bengal, India is one of the most famous monuments in West Bengal that has become a museum and popular tourist spot of the state. A brainchild of <NAME>, 1st Marquess Curzon of Kedleston and Viceroy of India, this monument epitomising beauty and elegance was dedicated to the memory of Queen Victoria (1819–1901). This grand and exquisite memorial not only stands as reminiscence to the rule of British Crown in the Indian subcontinent but also stands out as an excellent architectural gem in Indo-Saracenic revivalist style. It is a must visit tourist destination for first time visitors to experience the essence of Victorian era in the midst of the bustling metro city of Kolkata.<NAME>, the then president of the Royal Institute of British Architects was the chief architect of the memorial that was designed in Indo-Saracenic revivalist style. The style encompassed a blend of British architectural style with that of Egyptian, Venetian, Deccani, Mughal and other Islamic styles. Build of Makrana marble brought from Jodhpur, Rajasthan, it measures 103 m by 69 m with a height of 56 m. Scottish physician and botanist Sir <NAME> and <NAME> were entrusted to design the vast garden areas covering 64 acres while garden gates and the bridge of the north aspect were designed by <NAME>. The garden is presently maintained by a group of 21 gardeners. Martin & Co. of Calcutta carried out the construction work of the memorial. Certain additions were made to the memorial post independence of India.', ' Queen Victoria who remained Queen of the United Kingdom of Great Britain and Ireland since June 20, 1837 and Empress of India since May 1, 1876 passed away on January 22, 1901. Following her demise, <NAME> conceived the idea of constructing a colossal and grand building with a museum and gardens where one and all can have a glimpse of the rich past. The foundation stone of the monument was laid on January 4, 1906 by the Prince of Wales George V who later became King George V on May 6, 1910. In 1921, the memorial was opened to public; however it became part of a provincial city instead of the capital city as by the time its construction completed, the capital of India was transferred from Calcutta to New Delhi under the instruction of King George V. An appeal made by Curzon to fund the construction of the memorial saw many including royals, individuals as well as the British government in London to come forward and contribute voluntarily. The total cost of building the memorial came to Rs. 105, 00,000.', 'FairLawn Hotel', 'January 04,2017', 'victoria1.jpg', 'yes', ' The Victoria Memorial, a huge monument made of white marble located in the heart of the City of Joy, Kolkata (erstwhile Calcutta) in West Bengal, India is one of the most famous monuments in West Bengal that has become a museum and popular tourist spot of the state. A brainchild of <NAME>, 1st Marquess Curzon of Kedleston and Viceroy of India, this monument epitomising beauty and elegance was dedicated to the memory of Queen Victoria (1819–1901).'),
(42, 'Amer Fort', 435, 'Vijay Garh', ' Amer Fort is the best tourist attraction of Jaipur and the sprawling complex combines both immense fortifications with unexpected beauty and charm. The fort which visitors are able to explore today dates from the 16th century and is situated on a natural ridge 11km north of Jaipur.Amer Fort is open every day from 8:00 until 17:30 and the entrance fee is Rs 200. Amer Fort lies12km to the north of Jaipur and a single taxi fare will cost Rs200-250 while using the supposedly enforced auto rickshaw rate will cost Rs85 but most visitors pay Rs250-300 for round trip with 2 hours of waiting time.', ' Amer was once known as Dhundar and was ruled by the Kachhwahas from the 11th to the 16th century, until the capital was moved from here to Jaipur. Raja Man Singh built this fort in 1592 AD and Raja Jai Sigh I expanded and renovated it later. While many such old structures have been either destroyed or replaced by other things, this fort has stood against all the tests of time and invasions.', 'Hotel Maharani Palace', 'November 12,201', 'Amer-Fort-jaipur1.jpg', 'Amer Fort', ' Amer Fort is the best tourist attraction of Jaipur and the sprawling complex combines both immense fortifications with unexpected beauty and charm. The fort which visitors are able to explore today dates from the 16th century and is situated on a natural ridge 11km north of Jaipur.'),
(43, 'Manali,Shimla', 434, 'Shimla', ' Manali which lies in the lap of the Kullu valley is one of the most visited tourist spot.It is located at an altitude of 2050 meters above sea level and is spread along the banks of the river Beas.\r\nManali derived its name from Manavalaya meaning the abode of Manu or \"Home of Manu\" and here, the temples are treated as pilgrimages. Its cool atmosphere provides a perfect haven for the ones afflicted by the hot Indian summers. Manali is also famous for adventure sports like skiing, hiking, mountaineering, para gliding, rafting, trekking, kayaking, and mountain biking. Manali is quite famous for its lush green forests of deodar and snow capped mountains.Manali is named after the sage Manu who was the creator of human race on the earth and it is believed that he meditated here. This is supposed to be the only temple of Manu in India.In winters, the temperature can drop below freezing point when heavy woolens are required. Summer temperatures are mild and light woolens/cottons are recommended. In Manali, one can find high mountains shrouded by silent snows and deep boulder strewn gorges. There are thick forests, filled with cool breezes and bird song. Best Time to visit is throughout the year.', ' Manali is named after the Sanatan Hindu lawgiver Manu. The name Manali is regarded as the derivative of \'Manu-Alaya\' which literally means \'the abode of Manu\'. Legend has it that sage Manu stepped off his ark in Manali to recreate human life after a great flood had deluged the world. Manali lies in the North of Kullu Valley. The valley is often referred to as the \'Valley of the Gods\'. Old Manali village has an ancient temple dedicated to sage Manu.\r\n\r\nThe British introduced apple trees in the area. The first apple orchard was set up by the British near Patlikuhl, prior to this no Apple trees grew in the area. To this day, apple—along with plum and pear—remain the best source of income for the majority of inhabitants. Both Rainbow and Brown Trout was also introduced into the rivers and streams of the area by the colonisers.', 'Manali Hotel', 'January 09,2017', 'manali2.jpg', '<NAME>', ' Manali which lies in the lap of the Kullu valley is one of the most visited tourist spot.It is located at an altitude of 2050 meters above sea level and is spread along the banks of the river Beas.\r\nManali derived its name from Manavalaya meaning the abode of Manu or \"Home of Manu\" and here, the temples are treated as pilgrimages.'),
(44, 'Alappuzha,Kerala', 447, 'Kerala', ' Alappuzha also known as Alleppey, is the administrative headquarters of Alappuzha District of Kerala state of southern India. Alappuzha is a municipality in Kerala with an urban population of 174,164 and third among the districts having highest literacy rate in Kerala. In 2016, Centre for Science and Environment rated Alappuzha as the top cleanest town in India followed by Panaji & Mysuru.The Backwaters of Alappuzha are the most popular tourist attraction in Kerala. A houseboat cruise in these backwaters can be booked.It connects Kumarakom and Cochin to the North and Quilon to the South.Alappuzha is the access point for the annual Nehru Trophy Boat Race, held on the Punnamada Lake, near Alappuzha, on the second Saturday of August every year. This is the most competitive and popular of the boat races in India.The mullackal chirap is also one of the attractions of Allapuzha which is the festive season held for ten days every year in December.', 'In the early first decade of the 20th century the Viceroy of the Indian Empire, <NAME> made a visit in the State to Alleppey, now Alappuzha. Fascinated by the scenic beauty of the place, he exclaimed,\r\n\r\nHere nature has spent up on the land her richest bounties. Alleppey, the Venice of the East.Kuttanad, the rice bowl of Kerala, with its paddy fields, small streams and canals with lush green coconut palms, was well known even from the early periods of the Sangam age.[14] History says Alappuzha had trade relations with ancient Greece and Rome in the Middle Ages.\r\n\r\nThe early Cheras, who had their home in Kuttanad, were called `Kuttuvans`, so named after this place. Pliny and Ptolemy of the 1st and 2nd centuries had mentioned places like Purakkad or Barace in their classical works.', '<NAME>', 'January 10,2017', 'a3.jpg', 'Alappuzha,Kerala', ' Alappuzha also known as Alleppey, is the administrative headquarters of Alappuzha District of Kerala state of southern India. Alappuzha is a municipality in Kerala with an urban population of 174,164 and third among the districts having highest literacy rate in Kerala.'),
(45, 'Amarnath Temple,Jammu And Kash', 445, 'Jammu And Kashmir', ' Amarnath cave is a Hindu shrine located in Jammu and Kashmir, India. The cave is situated at an altitude of 3,888 m (12,756 ft),[1] about 141 km (88 mi) from Srinagar, the capital of Jammu and Kashmir and reached through Pahalgam town. The shrine forms an important part of Hinduism,[2] and is considered to be one of the holiest shrines in Hinduism.[3] The cave is surrounded by snowy mountains. The cave itself is covered with snow most of the year except for a short period of time in summer when it is open for pilgrims. Thousands of Hindu devotees make an annual pilgrimage to the Amarnath cave on challenging mountainous terrain to see an ice stalagmite formed inside the cave.Inside the 40 m (130 ft) high Amarnath cave, the stalagmite is formed due to freezing of water drops that fall from the roof of the cave on to the floor and grows up vertically from the cave floor.[4] It is considered to be a Shiva Linga by Hindus. The Cave waxes during May to August, as snow melts in the Himalayas above the cave and the resultant water seeps into the rocks that form the cave and gradually wanes thereafter.[1] As per the religious beliefs, it has been claimed that the lingam grows and shrinks with the phases of the moon reaching its height during the summer festival, although there is no scientific evidence for this belief.', ' It is believed that after the Middle Ages, this cave was forgotten by people before it was discovered by a shepherd in the 15th century once again.Another story relates to <NAME>. Long time ago it is believed that The Vale of Kashmir was submerged under water and Kashyapa Muni drained it through a series of rivers and rivulets. Therefore, when the waters drained, <NAME> was the first to have Darshan of Lord Amarnath. Thereafter, when people heard of the Lingam, it became an abode of Lord Bholenath for all believers and a pilgrimage which is done by lakhs of people each year.', 'Amar Hotel', 'January 11,2017', 'amar1.jpg', 'Temple', ' Amarnath cave is a Hindu shrine located in Jammu and Kashmir, India. The cave is situated at an altitude of 3,888 m (12,756 ft),[1] about 141 km (88 mi) from Srinagar, the capital of Jammu and Kashmir and reached through Pahalgam town.');
-- --------------------------------------------------------
--
-- Table structure for table `rating`
--
CREATE TABLE `rating` (
`r_id` int(10) NOT NULL,
`u_id` int(10) NOT NULL,
`service_rate` varchar(50) NOT NULL,
`design_rating` varchar(50) NOT NULL,
`support_rating` varchar(50) NOT NULL,
`general_rating` varchar(50) NOT NULL,
`contact` varchar(12) NOT NULL,
`review_rating` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `rating`
--
INSERT INTO `rating` (`r_id`, `u_id`, `service_rate`, `design_rating`, `support_rating`, `general_rating`, `contact`, `review_rating`) VALUES
(2, 1, 'two', 'three', 'four', 'three', '9407900443', 'awesome site');
-- --------------------------------------------------------
--
-- Table structure for table `reply`
--
CREATE TABLE `reply` (
`r_id` int(10) NOT NULL,
`m_id` int(20) NOT NULL,
`a_image` varchar(30) NOT NULL,
`r_reply` text NOT NULL,
`a_name` varchar(30) NOT NULL,
`a_id` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `reply`
--
INSERT INTO `reply` (`r_id`, `m_id`, `a_image`, `r_reply`, `a_name`, `a_id`) VALUES
(2, 2, 'dhoni.jpg', ' My name is <NAME> ', 'admin', 1),
(5, 4, 'dhoni.jpg', 'I am fine ', 'admin', 1),
(7, 10, 'dhoni.jpg', 'Yes of Course I will Help YOU', 'admin', 1),
(9, 11, 'dhoni.jpg', ' I made This Blog With the help of PHP ', 'admin', 1),
(11, 13, 'dhoni.jpg', ' hello then how r u', 'admin', 1),
(14, 13, 'dhoni.jpg', ' m fine', 'admin', 1),
(15, 14, 'dhoni.jpg', ' Yes I My fav hero ', 'admin', 1),
(16, 16, 'dhoni.jpg', ' njfdsnkfjs', 'admin', 1),
(17, 11, 'dhoni.jpg', ' i MADE my myself ', 'admin', 1);
-- --------------------------------------------------------
--
-- Table structure for table `state`
--
CREATE TABLE `state` (
`stateid` int(11) NOT NULL,
`statename` varchar(100) CHARACTER SET ascii NOT NULL,
`countryid` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `state`
--
INSERT INTO `state` (`stateid`, `statename`, `countryid`) VALUES
(1, 'Jammu And Kashmir', 101),
(2, 'Himachal Pradesh', 101),
(3, 'Punjab', 101),
(4, 'Uttrakhand', 101),
(5, 'Harayana', 101),
(6, 'Chattisgarh', 101),
(7, 'Rajasthan', 101),
(8, 'Uttar Pradesh', 101),
(9, 'Madhya Pradesh', 101),
(10, 'Bihar', 101),
(11, 'Kerala', 101);
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`u_id` int(5) NOT NULL,
`u_name` varchar(20) NOT NULL,
`u_pass` varchar(25) NOT NULL,
`u_image` varchar(20) NOT NULL,
`u_email` varchar(20) NOT NULL,
`u_contact` varchar(11) NOT NULL,
`u_address` varchar(50) NOT NULL,
`u_date` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`u_id`, `u_name`, `u_pass`, `u_image`, `u_email`, `u_contact`, `u_address`, `u_date`) VALUES
(1, 'Kanha', '1234', 'arjit.jpg', '<EMAIL>', '9407900443', 'Purani Basti Baniya Para', 'November 21,2015'),
(2, 'Sunita', '4567', 'illena.jpg', '<EMAIL>', '9827993585', '<NAME>', 'December 25,2016'),
(3, 'Payal', '8900', 'sunidhi.jpg', '<EMAIL>', '8109409201', '<NAME>hilai ', 'January 21,2015'),
(4, 'Deepkiran', '8109', '587597.jpg', '<EMAIL>', '9111170403', 'Amlidi near Ambuja Mall,Raipur', 'November 12,2016 '),
(5, 'Nilesh', '2345', 'dragon.jpg', '<EMAIL>', '9874584121', 'Purani Basti Baniya Para,Raipur', 'April 12, 2016'),
(6, '<NAME>', '12345', 'Tulips.jpg', '<EMAIL>', '9884206146', 'purani basti raipur', 'November 23,2014');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`a_id`);
--
-- Indexes for table `city`
--
ALTER TABLE `city`
ADD PRIMARY KEY (`cityid`);
--
-- Indexes for table `comment`
--
ALTER TABLE `comment`
ADD PRIMARY KEY (`co_id`);
--
-- Indexes for table `image`
--
ALTER TABLE `image`
ADD PRIMARY KEY (`i_id`);
--
-- Indexes for table `message`
--
ALTER TABLE `message`
ADD PRIMARY KEY (`m_id`);
--
-- Indexes for table `place`
--
ALTER TABLE `place`
ADD PRIMARY KEY (`p_id`);
--
-- Indexes for table `rating`
--
ALTER TABLE `rating`
ADD PRIMARY KEY (`r_id`);
--
-- Indexes for table `reply`
--
ALTER TABLE `reply`
ADD PRIMARY KEY (`r_id`);
--
-- Indexes for table `state`
--
ALTER TABLE `state`
ADD PRIMARY KEY (`stateid`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`u_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admin`
--
ALTER TABLE `admin`
MODIFY `a_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `city`
--
ALTER TABLE `city`
MODIFY `cityid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=545;
--
-- AUTO_INCREMENT for table `comment`
--
ALTER TABLE `comment`
MODIFY `co_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT for table `image`
--
ALTER TABLE `image`
MODIFY `i_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47;
--
-- AUTO_INCREMENT for table `message`
--
ALTER TABLE `message`
MODIFY `m_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `place`
--
ALTER TABLE `place`
MODIFY `p_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;
--
-- AUTO_INCREMENT for table `rating`
--
ALTER TABLE `rating`
MODIFY `r_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `reply`
--
ALTER TABLE `reply`
MODIFY `r_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `state`
--
ALTER TABLE `state`
MODIFY `stateid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `u_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
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 */;
|
prompt Importing table t_migraciones...
set feedback off
set define off
insert into t_migraciones (ID_MIGRACION, DESCRIPCION)
values ('mig_000026', 'Acción de calificar aplicación de Android.-');
prompt Done.
|
<reponame>ayypermata/sparkup<filename>sparkup.sql<gh_stars>0
/*
Navicat Premium Data Transfer
Source Server : Xampp 5.4
Source Server Type : MySQL
Source Server Version : 50539
Source Host : localhost:3306
Source Schema : sparkup
Target Server Type : MySQL
Target Server Version : 50539
File Encoding : 65001
Date: 22/02/2019 23:29:25
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for activities
-- ----------------------------
DROP TABLE IF EXISTS `activities`;
CREATE TABLE `activities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`resource_id` int(11) NOT NULL,
`type` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`action` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`user_id` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`message` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 25 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of activities
-- ----------------------------
INSERT INTO `activities` VALUES (1, 1, 'subject', 'added', '1', 'A new subject was added (Company)', '2018-11-15 21:15:32');
INSERT INTO `activities` VALUES (2, 0, 'subject', 'updated', '1', 'A subject (Limit Company) was renamed (Limit Company)', '2018-11-21 20:53:31');
INSERT INTO `activities` VALUES (3, 0, 'subject', 'updated', '1', 'A subject (Limit Company) was renamed To (JessNoLimit)', '2018-11-21 20:54:45');
INSERT INTO `activities` VALUES (4, 0, 'subject', 'deleted', '1', 'Subject has been deleted', '2018-11-21 20:57:59');
INSERT INTO `activities` VALUES (5, 1, 'subject', 'added', '1', 'A new subject was added (News)', '2018-11-23 20:26:00');
INSERT INTO `activities` VALUES (6, 1, 'page', 'added', '1', 'A new subject was added (FAK THE RULES)', '2018-11-23 21:02:21');
INSERT INTO `activities` VALUES (7, 2, 'page', 'added', '1', 'A new subject was added (ANOTHER FUCK THE RULES)', '2018-11-23 22:12:15');
INSERT INTO `activities` VALUES (8, 2, 'subject', 'added', '1', 'A new subject was added (Company)', '2018-11-23 22:30:09');
INSERT INTO `activities` VALUES (9, 0, 'page', 'updated', '1', 'A page was added (FAK THE)', '2018-11-23 22:30:51');
INSERT INTO `activities` VALUES (10, 3, 'page', 'added', '1', 'A new page was added (XAXAXAXA)', '2018-11-23 22:33:06');
INSERT INTO `activities` VALUES (11, 0, 'page', 'deleted', '1', 'Page has been deleted', '2018-11-23 22:33:15');
INSERT INTO `activities` VALUES (12, 1, 'user', 'added', '1', 'A new user was added (admin)', '2018-11-23 23:03:06');
INSERT INTO `activities` VALUES (13, 0, 'user', 'updated', '1', 'A user was updated (admin)', '2018-11-23 23:23:56');
INSERT INTO `activities` VALUES (14, 0, 'user', 'deleted', '1', 'User has been deleted', '2018-11-23 23:24:49');
INSERT INTO `activities` VALUES (15, 2, 'user', 'added', '1', 'A new user was added (admin)', '2018-11-23 23:25:16');
INSERT INTO `activities` VALUES (16, 3, 'page', 'added', '1', 'A new page was added (Welcome)', '2018-12-06 20:38:21');
INSERT INTO `activities` VALUES (17, 0, 'page', 'updated', '1', 'A page was edited (ANOTHER FUCK THE RULES)', '2018-12-06 20:59:48');
INSERT INTO `activities` VALUES (18, 0, 'page', 'deleted', '2', 'Page has been deleted', '2018-12-06 21:14:48');
INSERT INTO `activities` VALUES (19, 0, 'page', 'deleted', '2', 'Page has been deleted', '2018-12-06 21:14:52');
INSERT INTO `activities` VALUES (20, 0, 'page', 'deleted', '2', 'Page has been deleted', '2018-12-06 21:14:55');
INSERT INTO `activities` VALUES (21, 4, 'page', 'added', '2', 'A new page was added (Welcome)', '2018-12-06 21:15:25');
INSERT INTO `activities` VALUES (22, 5, 'page', 'added', '2', 'A new page was added (About)', '2018-12-06 21:16:07');
INSERT INTO `activities` VALUES (23, 0, 'page', 'updated', '2', 'A page was edited (About)', '2018-12-06 21:16:55');
INSERT INTO `activities` VALUES (24, 0, 'page', 'updated', '2', 'A page was edited (Welcome)', '2018-12-06 21:17:18');
-- ----------------------------
-- Table structure for pages
-- ----------------------------
DROP TABLE IF EXISTS `pages`;
CREATE TABLE `pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`subject_id` int(11) NOT NULL DEFAULT 0,
`user_id` int(11) NOT NULL,
`slug` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`title` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`body` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`is_published` tinyint(1) NOT NULL DEFAULT 1,
`is_featured` tinyint(1) NOT NULL DEFAULT 0,
`in_menu` tinyint(1) NOT NULL DEFAULT 1,
`order` int(11) NOT NULL DEFAULT 1,
`create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of pages
-- ----------------------------
INSERT INTO `pages` VALUES (4, 1, 2, 'welcome', 'Welcome', 'Welcome To The Pretty Bloods', 1, 0, 1, 1, '2018-12-06 21:15:25');
INSERT INTO `pages` VALUES (5, 1, 2, 'about', 'About', 'This is about page for sparkup CMS!', 1, 0, 1, 2, '2018-12-06 21:16:07');
-- ----------------------------
-- Table structure for subjects
-- ----------------------------
DROP TABLE IF EXISTS `subjects`;
CREATE TABLE `subjects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of subjects
-- ----------------------------
INSERT INTO `subjects` VALUES (1, 'News', '2018-11-23 20:26:00');
INSERT INTO `subjects` VALUES (2, 'Company', '2018-11-23 22:30:09');
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`last_name` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`username` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`email` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`password` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES (2, 'admin', 'sparkup', 'admin', '<EMAIL>', '21232f297a57a5a743894a0e4a801fc3', '2018-11-23 23:25:16');
SET FOREIGN_KEY_CHECKS = 1;
|
<gh_stars>0
CREATE TABLE IF NOT EXISTS tableTest (id INTEGER PRIMARY KEY, name STRING, city STRING);
DELETE FROM tableTest;
INSERT INTO tableTest VALUES (1, "Roger", "Oslo");
INSERT INTO tableTest VALUES (2, "Lorie", "Paris");
INSERT INTO tableTest VALUES (3, "Alphonse", "Nice");
INSERT INTO tableTest VALUES (4, "Ginette", "Montpellier");
INSERT INTO tableTest VALUES (5, "George", "Miami");
INSERT INTO tableTest VALUES (6, "Aline", "Nice");
|
<reponame>TechnoSpace92/tree-manager
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Aug 31, 2015 at 03:19 PM
-- Server version: 5.5.24-log
-- PHP Version: 5.3.13
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: `tree_manager`
--
-- --------------------------------------------------------
--
-- Table structure for table `contact_types`
--
CREATE TABLE IF NOT EXISTS `contact_types` (
`contact_id` int(11) NOT NULL AUTO_INCREMENT,
`contact_name` varchar(50) NOT NULL,
`contact_status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`contact_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `contact_types`
--
INSERT INTO `contact_types` (`contact_id`, `contact_name`, `contact_status`) VALUES
(1, 'Customer', 1),
(2, 'Property Manager', 1),
(3, 'Tenant', 1),
(4, 'Neighbour', 1);
-- --------------------------------------------------------
--
-- Table structure for table `groups`
--
CREATE TABLE IF NOT EXISTS `groups` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`description` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `groups`
--
INSERT INTO `groups` (`id`, `name`, `description`) VALUES
(1, 'administrator', 'Administrator'),
(2, 'manager', 'Manager'),
(3, 'contractor', 'Contractor'),
(4, 'user', 'User');
-- --------------------------------------------------------
--
-- Table structure for table `job_contacts`
--
CREATE TABLE IF NOT EXISTS `job_contacts` (
`job_contact_id` int(11) NOT NULL AUTO_INCREMENT,
`job_id` int(11) NOT NULL,
`job_risk_address` varchar(200) NOT NULL,
`state_id` int(11) NOT NULL,
`job_risk_suburb` varchar(30) NOT NULL,
`job_risk_postcode` varchar(30) NOT NULL,
`contact_id` int(11) NOT NULL,
`job_main_contact` int(1) NOT NULL,
`job_first_name` varchar(50) NOT NULL,
`job_surname` varchar(50) NOT NULL,
`job_company` varchar(50) NOT NULL,
`job_contact_address` varchar(200) NOT NULL,
`job_contact_state` varchar(30) NOT NULL,
`job_contact_suburb` varchar(30) NOT NULL,
`job_contact_postcode` varchar(30) NOT NULL,
`job_mobile` varchar(30) NOT NULL,
`job_is_mobile_best` int(1) NOT NULL,
`job_phone` varchar(30) NOT NULL,
`job_is_phone_best` int(1) NOT NULL,
`job_email` varchar(30) NOT NULL,
PRIMARY KEY (`job_contact_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `job_contacts`
--
INSERT INTO `job_contacts` (`job_contact_id`, `job_id`, `job_risk_address`, `state_id`, `job_risk_suburb`, `job_risk_postcode`, `contact_id`, `job_main_contact`, `job_first_name`, `job_surname`, `job_company`, `job_contact_address`, `job_contact_state`, `job_contact_suburb`, `job_contact_postcode`, `job_mobile`, `job_is_mobile_best`, `job_phone`, `job_is_phone_best`, `job_email`) VALUES
(1, 1, '12 Pitt St', 1, 'Paddington', '75765', 1, 1, 'Techno', 'Hi This is for [removed]alert(''Ok'');[remov', 'Company Name', 'Hi This is for [removed]alert(''Ok'');[removed]', 'Hi This is for [removed]alert&', 'Hi This is for [removed]alert&', '87687678', '1234567890', 1, '1234567890', 1, 'Hi This is for [removed]alert&'),
(2, 2, '11 Pitt St', 1, 'Paddington', '75765', 1, 1, 'Techno', 'Hi This is for [removed]alert(''Ok'');[remov', 'Hi This is for [removed]alert(''Ok'');[remov', 'Hi This is for [removed]alert(''Ok'');[removed]', 'Hi This is for [removed]alert&', 'Hi This is for [removed]alert&', '87687678', '1234567890', 1, '1234567890', 1, 'Hi This is for [removed]alert&'),
(3, 3, '41 Pitt St', 1, 'Paddington', '75765', 1, 1, 'Techno', 'Hi This is for [removed]alert(''Ok'');[remov', 'Hi This is for [removed]alert(''Ok'');[remov', 'Hi This is for [removed]alert(''Ok'');[removed]', 'Hi This is for [removed]alert&', 'Hi This is for [removed]alert&', '87687678', '1234567890', 1, '1234567890', 1, 'Hi This is for [removed]alert&'),
(4, 4, 'Lorem Ipsum is simply dummy text of the printing', 1, 'Dummy Suburb', '123214', 2, 1, '123214', 'Kotwal', 'Company Name', 'Cont. address', 'MAH', 'Cont. suburb', '078690', '3334445556', 1, '9007686544', 1, '<EMAIL>');
-- --------------------------------------------------------
--
-- Table structure for table `job_details`
--
CREATE TABLE IF NOT EXISTS `job_details` (
`job_id` int(30) NOT NULL AUTO_INCREMENT,
`id` int(11) NOT NULL,
`job_description` varchar(10000) NOT NULL,
`type_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`job_claim_no` int(30) NOT NULL,
`job_received_date` varchar(15) NOT NULL,
`job_provider_ref_no` int(30) NOT NULL,
`job_project_manager` int(11) NOT NULL,
`job_tp_response_by` varchar(15) NOT NULL,
`priority_id` int(11) NOT NULL,
`job_special_note` varchar(10000) NOT NULL,
`job_note` varchar(10000) NOT NULL,
PRIMARY KEY (`job_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `job_details`
--
INSERT INTO `job_details` (`job_id`, `id`, `job_description`, `type_id`, `event_id`, `job_claim_no`, `job_received_date`, `job_provider_ref_no`, `job_project_manager`, `job_tp_response_by`, `priority_id`, `job_special_note`, `job_note`) VALUES
(1, 1, 'INS- Grind tree stump but don''t remove it.', 1, 1, 1234567, '30/08/2015 03:4', 1234567, 2, '30/08/2015 03:4', 1, 'Hi This is for [removed]alert(''Ok'');[removed]', 'Hi This is for [removed]alert(''Ok'');[removed]'),
(2, 1, 'ABC- Grind tree stump but don''t remove it.', 1, 1, 1234567, '30/08/2015 03:5', 1234567, 3, '30/08/2015 03:5', 1, 'Hi This is for [removed]alert(''Ok'');[removed]', 'Hi This is for [removed]alert(''Ok'');[removed]'),
(3, 1, 'XYZ- Grind tree stump but don''t remove it.', 1, 1, 1234567, '31-08-2015 03:5', 1234567, 2, '30-08-2015 03:5', 1, 'Hi This is for [removed]alert(''Ok'');[removed]', 'Hi This is for [removed]alert(''Ok'');[removed]'),
(4, 1, 'Lorem Ipsum is simply dummy text of the printing', 2, 1, 2147483647, '18-08-2015 14:3', 2, 3, '31-08-2015 14:3', 2, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.');
-- --------------------------------------------------------
--
-- Table structure for table `job_events`
--
CREATE TABLE IF NOT EXISTS `job_events` (
`event_id` int(11) NOT NULL AUTO_INCREMENT,
`event_name` varchar(50) NOT NULL,
`event_status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `job_events`
--
INSERT INTO `job_events` (`event_id`, `event_name`, `event_status`) VALUES
(1, 'Cyclone Marcia', 1),
(2, 'Cyclone Olwyn WA', 1),
(3, 'Sydney October Storm', 1);
-- --------------------------------------------------------
--
-- Table structure for table `job_priorities`
--
CREATE TABLE IF NOT EXISTS `job_priorities` (
`priority_id` int(11) NOT NULL AUTO_INCREMENT,
`priority_name` varchar(50) NOT NULL,
`priority_status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`priority_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `job_priorities`
--
INSERT INTO `job_priorities` (`priority_id`, `priority_name`, `priority_status`) VALUES
(1, '1. Critical (Must be completed ASAP)', 1),
(2, '2. Urgent (Must be completed same day)', 1),
(3, '3. Urgent (Not need same day)', 1),
(4, '4. ASAP (when time/weather/accessability permits)', 1);
-- --------------------------------------------------------
--
-- Table structure for table `job_types`
--
CREATE TABLE IF NOT EXISTS `job_types` (
`type_id` int(11) NOT NULL AUTO_INCREMENT,
`type_name` varchar(50) DEFAULT NULL,
`type_status` int(1) DEFAULT '1',
PRIMARY KEY (`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `job_types`
--
INSERT INTO `job_types` (`type_id`, `type_name`, `type_status`) VALUES
(1, 'Make Safe', 1),
(2, 'Do and Charge', 1),
(3, 'Request Quote', 1);
-- --------------------------------------------------------
--
-- Table structure for table `login_attempts`
--
CREATE TABLE IF NOT EXISTS `login_attempts` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ip_address` varchar(15) NOT NULL,
`login` varchar(100) NOT NULL,
`time` int(11) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `states`
--
CREATE TABLE IF NOT EXISTS `states` (
`state_id` int(11) NOT NULL AUTO_INCREMENT,
`state_name` varchar(50) NOT NULL,
`state_status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`state_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
--
-- Dumping data for table `states`
--
INSERT INTO `states` (`state_id`, `state_name`, `state_status`) VALUES
(1, 'ACT', 1),
(2, 'NSW', 1),
(3, 'NT', 1),
(4, 'QLD', 1),
(5, 'SA', 1),
(6, 'TAS', 1),
(7, 'VIC', 1),
(8, 'WA', 1);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ip_address` varchar(15) NOT NULL,
`username` varchar(100) NOT NULL,
`password` varchar(255) NOT NULL,
`salt` varchar(255) DEFAULT NULL,
`email` varchar(100) NOT NULL,
`activation_code` varchar(40) DEFAULT NULL,
`forgotten_password_code` varchar(40) DEFAULT NULL,
`forgotten_password_time` int(11) unsigned DEFAULT NULL,
`remember_code` varchar(40) DEFAULT NULL,
`created_on` int(11) unsigned NOT NULL,
`last_login` int(11) unsigned DEFAULT NULL,
`active` tinyint(1) unsigned DEFAULT NULL,
`first_name` varchar(50) DEFAULT NULL,
`last_name` varchar(50) DEFAULT NULL,
`company` varchar(100) DEFAULT NULL,
`phone` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`) VALUES
(1, '127.0.0.1', 'administrator', '$2a$07$SeBknntpZror9uyftVopmu61qg0ms8Qv1yV6FG.kQOSM.9QhmTo36', '', '<EMAIL>', '', NULL, NULL, 'DRfSp7iIjB7KwaH33HCRPe', 1268889823, 1440993032, 1, 'Avez', '<PASSWORD>', 'ADMIN', '0'),
(2, '127.0.0.1', 'manager', '$2a$07$SeBknntpZror9uyftVopmu61qg0ms8Qv1yV6FG.kQOSM.9QhmTo36', '', '<EMAIL>', '', NULL, NULL, NULL, 1268889823, 1268889823, 1, 'Delonix', 'istrator', 'MANAGER', '0'),
(3, '127.0.0.1', 'manager', '$2a$07$SeBknntpZror9uyftVopmu61qg0ms8Qv1yV6FG.kQOSM.9QhmTo36', '', '<EMAIL>', '', NULL, NULL, NULL, 1268889823, 1268889823, 1, 'manager', 'istrator', 'MANAGER', '0');
-- --------------------------------------------------------
--
-- Table structure for table `users_groups`
--
CREATE TABLE IF NOT EXISTS `users_groups` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned NOT NULL,
`group_id` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uc_users_groups` (`user_id`,`group_id`),
KEY `fk_users_groups_users1_idx` (`user_id`),
KEY `fk_users_groups_groups1_idx` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `users_groups`
--
INSERT INTO `users_groups` (`id`, `user_id`, `group_id`) VALUES
(1, 1, 1),
(3, 1, 3),
(4, 1, 4),
(2, 2, 2),
(5, 3, 2);
--
-- Constraints for dumped tables
--
--
-- Constraints for table `users_groups`
--
ALTER TABLE `users_groups`
ADD CONSTRAINT `fk_users_groups_groups1` FOREIGN KEY (`group_id`) REFERENCES `groups` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_users_groups_users1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
/*!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 5.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 23, 2021 at 09:42 AM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 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 */;
--
-- Database: `lms`
--
-- --------------------------------------------------------
--
-- Table structure for table `courses`
--
CREATE TABLE `courses` (
`module_code` varchar(10) NOT NULL,
`module_name` varchar(200) NOT NULL,
`dept_ID` varchar(4) NOT NULL,
`yr` varchar(7) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `courses`
--
INSERT INTO `courses` (`module_code`, `module_name`, `dept_ID`, `yr`) VALUES
(' M 001', 'Islamic Studies', 'SOC', 'Grade 1'),
('BMIS102 ', 'Arabic', 'SOC', 'Grade 1'),
('BMIS110 ', 'Arabic 2', 'SOC', 'Grade 2'),
('BMIS113 ', 'English', 'SOC', 'Grade 1'),
('BMIS104 ', 'Mathematics', 'SOC', 'Grade 1'),
('CN101.3 ', 'Geography', 'SOC', 'Grade 2'),
('CS107.3 ', 'Communication Skills', 'SOC', 'Grade 2'),
('M 204', 'English 2', 'SOC', 'Grade 2'),
('M 204', 'Islamic studies 2', 'SOC', 'Grade 2'),
('M 301', 'Arabic 3', 'SOC', 'Grade 3'),
('M 302', 'Geography 3', 'SOC', 'Grade 3'),
('M 305', 'History 3', 'SOC', 'Grade 3'),
('M 303', 'MAthematics3', 'SOC', 'Grade 3'),
('M 304', 'Skills 3', 'SOC', 'Grade 3'),
('M 401', 'Arabic 4', 'SOC', 'Grade 4'),
('M 405', 'Computer 4', 'SOC', 'Grade 4'),
('M 403', 'English4', 'SOC', 'Grade 4'),
('M 402', 'Islamic Studies', 'SOC', 'Grade 4'),
('M 402', 'Islamic Studies 4', 'SOC', 'Grade 4'),
('M 501 ', 'Arabic 5', 'SOC', 'Grade 5'),
('M 505', 'English 5', 'SOC', 'Grade 5'),
('M 503', 'Geography 5', 'SOC', 'Grade 5'),
('M 504', 'History 5', 'SOC', 'Grade 5'),
('M 502', 'Islamic Studies 5', 'SOC', 'Grade 5'),
('M 602', 'Arabic 6', 'SOC', 'Grade 6'),
('M 604', 'Computer science 6', 'SOC', 'Grade 6'),
('M 603', 'English 6', 'SOC', 'Grade 6'),
('M 605', 'Geography 6', 'SOC', 'Grade 6'),
('M 601', 'Islamic studies 6', 'SOC', 'Grade 6');
-- --------------------------------------------------------
--
-- Table structure for table `department`
--
CREATE TABLE `department` (
`dept_ID` varchar(4) NOT NULL,
`dept_name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `department`
--
INSERT INTO `department` (`dept_ID`, `dept_name`) VALUES
('SOB', 'School of Business'),
('SOC', 'School of Computing');
-- --------------------------------------------------------
--
-- Table structure for table `evaluation`
--
CREATE TABLE `evaluation` (
`user_id` int(5) NOT NULL,
`id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `evaluation`
--
INSERT INTO `evaluation` (`user_id`, `id`) VALUES
(15, 2),
(16, 1),
(16, 3),
(23, 2),
(27, 1),
(27, 2);
-- --------------------------------------------------------
--
-- Table structure for table `inquiries`
--
CREATE TABLE `inquiries` (
`inq_id` int(11) NOT NULL,
`inq_name` varchar(255) NOT NULL,
`inq_email` varchar(255) NOT NULL,
`inq_msg` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `inquiries`
--
INSERT INTO `inquiries` (`inq_id`, `inq_name`, `inq_email`, `inq_msg`) VALUES
(6, 'hello', '<EMAIL>', 'wfw');
-- --------------------------------------------------------
--
-- Table structure for table `quiz_assignment`
--
CREATE TABLE `quiz_assignment` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`image` text NOT NULL,
`content` text NOT NULL,
`venue` varchar(255) NOT NULL,
`date` date NOT NULL,
`time` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `quiz_assignment`
--
INSERT INTO `quiz_assignment` (`id`, `name`, `image`, `content`, `venue`, `date`, `time`) VALUES
(1, 'Introduction to computer', './uploads/events/New Project (47)(122).jpg', 'check the details and attempt it', 'Dar al attaa preschool', '2021-07-07', '12:00'),
(2, 'Computer Architecture', './uploads/events/1020101035795358001.jpg', 'check the details and attempt it', 'Dar al attaa preschool', '2021-10-20', '10:00'),
(3, 'Components of computer', './uploads/events/883798_1-Computer_Basics_Quiz.jpg', 'check the details and attempt it', 'Dar al attaa', '2021-12-20', '08:00');
-- --------------------------------------------------------
--
-- Table structure for table `student-enrol`
--
CREATE TABLE `student-enrol` (
`user_id` int(5) NOT NULL,
`module_code` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`user_id` int(5) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`user_fullname` varchar(255) NOT NULL,
`user_email` varchar(255) NOT NULL,
`user_image` text NOT NULL,
`role` varchar(255) NOT NULL,
`randSalt` varchar(255) NOT NULL DEFAULT '$2y$1<PASSWORD>',
`Index_no` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`user_id`, `username`, `password`, `user_fullname`, `user_email`, `user_image`, `role`, `randSalt`, `Index_no`) VALUES
(11, 'root', '$1$JL..e5/.$AXic3.8.7blksKRg9BqKm.', '', '', '', 'admin', '$2y$10$iusesomecrazystrings22', NULL),
(12, 'lecturer4', '$1$Mf1.ls..$kPdYP0zUpEe.chfwWagc31', 'lecturer 4', '<EMAIL>', '', 'lecturer', '$2y$10$iusesomecrazystrings22', NULL),
(14, 'lecturer1', '$1$gS..pl3.$AXc6i1kw95K0xzutFJm1z.', 'lecturer 1', '<EMAIL>', '', 'lecturer', '$2y$10$iusesomecrazystrings22', NULL),
(15, 'student1', '$1$hl3.W02.$C6fysWL5.PDaKDyM084jE0', 'student1', '<EMAIL>', '', 'student', '$2y$10$iusesomecrazystrings22', '1234'),
(16, 'XYZ', '$1$K2YG6t9u$hUwoVrdChzmMeGM.TW91d.', 'ABC', '<EMAIL>', '', 'student', '$2y$10$iusesomecrazystrings22', '1'),
(19, 'abcd', '$1$5tDqqb65$V4pGWI8bUx5Q8hqRLU/H7/', 'abcd', '<EMAIL>', '', 'student', '$2y$10$iusesomecrazystrings22', '90'),
(21, 'admin', '$1$p1.16vZH$8G/RI5pZwWDA51MHDpy380', 'The Admin', 'admin@123', '', 'admin', '$2y$10$iusesomecrazystrings22', '12'),
(22, 'lecturer', '$1$Txq/J3RF$9eph6dBfH.jv..S2ITh8/1', 'Senior Computer Teacher', '<EMAIL>', '', 'lecturer', '$2y$10$iusesomecrazystrings22', '34'),
(23, 'oran', '$2y$10$iusesomecrazystrings2ui1qr860E30b0c9ijNqwCSwHnHdgz.1K', 'O<NAME>', '<EMAIL>', '', 'student', '$2y$10$iusesomecrazystrings22', ''),
(27, 'student', '$2y$10$iusesomecrazystrings2ui1qr860E30b0c9ijNqwCSwHnHdgz.1K', 'Student', '<EMAIL>', '', 'student', '$2y$10$iusesomecrazystrings22', '');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `courses`
--
ALTER TABLE `courses`
ADD PRIMARY KEY (`module_code`(4),`module_name`) USING BTREE,
ADD KEY `fkcourseDept` (`dept_ID`);
--
-- Indexes for table `department`
--
ALTER TABLE `department`
ADD PRIMARY KEY (`dept_ID`);
--
-- Indexes for table `evaluation`
--
ALTER TABLE `evaluation`
ADD PRIMARY KEY (`user_id`,`id`),
ADD KEY `fkuserEventevent` (`id`);
--
-- Indexes for table `inquiries`
--
ALTER TABLE `inquiries`
ADD PRIMARY KEY (`inq_id`);
--
-- Indexes for table `quiz_assignment`
--
ALTER TABLE `quiz_assignment`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student-enrol`
--
ALTER TABLE `student-enrol`
ADD PRIMARY KEY (`user_id`,`module_code`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `inquiries`
--
ALTER TABLE `inquiries`
MODIFY `inq_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `quiz_assignment`
--
ALTER TABLE `quiz_assignment`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `user_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `courses`
--
ALTER TABLE `courses`
ADD CONSTRAINT `fkcourseDept` FOREIGN KEY (`dept_ID`) REFERENCES `department` (`dept_ID`);
--
-- Constraints for table `evaluation`
--
ALTER TABLE `evaluation`
ADD CONSTRAINT `fkuserEventevent` FOREIGN KEY (`id`) REFERENCES `quiz_assignment` (`id`),
ADD CONSTRAINT `fkuserEventuser` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`);
--
-- Constraints for table `student-enrol`
--
ALTER TABLE `student-enrol`
ADD CONSTRAINT `fkUserEnroll` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_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 */;
|
<filename>practice.sql
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Feb 18, 2019 at 11:16 PM
-- Server version: 5.7.24
-- PHP Version: 7.2.14
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: `practice`
--
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE IF NOT EXISTS `migrations` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 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, '2019_02_10_203824_create_roles_table', 1),
(3, '2019_02_10_204055_create_questions_table', 1),
(4, '2019_02_11_145818_create_questioncatagories_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `questioncatagories`
--
DROP TABLE IF EXISTS `questioncatagories`;
CREATE TABLE IF NOT EXISTS `questioncatagories` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`catagory` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `questioncatagories`
--
INSERT INTO `questioncatagories` (`id`, `catagory`, `created_at`, `updated_at`) VALUES
(1, 'বাংলা', NULL, NULL),
(2, 'বিজ্ঞান', NULL, NULL),
(3, 'গণিত', NULL, NULL),
(4, 'বুদ্ধিমত্তা', NULL, NULL),
(5, 'ভুগোল', NULL, NULL),
(6, 'আইন বিষয়ক', NULL, NULL),
(7, 'ইংরেজি', NULL, NULL),
(8, 'বাংলাদেশ বিষয়াবলি', NULL, NULL),
(9, 'আন্তর্জাতিক বিষয়াবলী', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `questions`
--
DROP TABLE IF EXISTS `questions`;
CREATE TABLE IF NOT EXISTS `questions` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`question` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`opt_A` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`opt_B` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`opt_C` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`opt_D` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`correct_opt` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`catagory_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `questions_user_id_foreign` (`user_id`),
KEY `questions_catagory_id_foreign` (`catagory_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4950 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `questions`
--
INSERT INTO `questions` (`id`, `question`, `opt_A`, `opt_B`, `opt_C`, `opt_D`, `correct_opt`, `catagory_id`, `user_id`, `created_at`, `updated_at`) VALUES
(4946, 'turh', 'a', 'b', 'c', 'd', 'a', 9, 1, '2019-02-18 17:15:17', '2019-02-18 17:15:17'),
(4945, 'বার্ষিক ৫% হার সরল সুদে ১০০০ টাকার ২ বছরের সুদ কত টাকা?', '৫০ টাকা', '১০০ টাকা', '১৫০ টাকা', '২০০ টাকা', 'b', 6, 1, '2019-02-18 17:14:49', '2019-02-18 17:14:49'),
(4944, 'শতকরা বার্ষিক সুদের হার ৭ টাকা হলে ৬৫০ টাকার ৬ বছরের সুদ কত?', '২৭২ টাকা', '২৭০ টাকা', '২৭৩ টাকা', '২৭৫ টাকা', 'c', 6, 1, '2019-02-18 17:14:49', '2019-02-18 17:14:49'),
(4942, 'turh', 'a', 'b', 'c', 'd', 'a', 6, 1, '2019-02-18 17:14:49', '2019-02-18 17:14:49'),
(4943, 'has', 'd', 'c', 'b', 'a', 'd', 6, 1, '2019-02-18 17:14:49', '2019-02-18 17:14:49'),
(4940, 'শতকরা বার্ষিক সুদের হার ৭ টাকা হলে ৬৫০ টাকার ৬ বছরের সুদ কত?', '২৭২ টাকা', '২৭০ টাকা', '২৭৩ টাকা', '২৭৫ টাকা', 'c', 1, 1, '2019-02-18 17:14:15', '2019-02-18 17:14:15'),
(4941, 'বার্ষিক ৫% হার সরল সুদে ১০০০ টাকার ২ বছরের সুদ কত টাকা?', '৫০ টাকা', '১০০ টাকা', '১৫০ টাকা', '২০০ টাকা', 'b', 1, 1, '2019-02-18 17:14:15', '2019-02-18 17:14:15'),
(4937, 'বার্ষিক ৫% হার সরল সুদে ১০০০ টাকার ২ বছরের সুদ কত টাকা?', '৫০ টাকা', '১০০ টাকা', '১৫০ টাকা', '২০০ টাকা', 'b', 1, 1, '2019-02-18 17:13:10', '2019-02-18 17:13:10'),
(4938, 'turh', 'a', 'b', 'c', 'd', 'a', 1, 1, '2019-02-18 17:14:15', '2019-02-18 17:14:15'),
(4929, 'Here----book and bag that I lost last week.', 'are the', 'is the', 'was the', 'has been', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-18 15:51:17'),
(4939, 'has', 'd', 'c', 'b', 'a', 'd', 1, 1, '2019-02-18 17:14:15', '2019-02-18 17:14:15'),
(4928, 'We hoped that she--able to return in time.', 'will be', 'would be', 'can be', 'likely to be', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4927, 'I would rather that she----English fluently and impressively .', 'speaks', 'doesn\'t speak', 'speak', 'has spoken', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-18 15:59:08'),
(4926, 'Nihar always avoids---', 'to work with me', 'work with me', 'works with me', 'working with me', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4925, 'They ---at each other with hate, but did not utter a word.', 'were staring', 'had stared', 'stared', 'have stare', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4924, 'If you don\'t mind, I would rather not----', 'to go', 'going', 'gone', 'go', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4923, 'Although it\'s basically a bussiness trip\' I am sure I ---a very good time there.', 'am having', 'have', 'will have', 'may have', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4922, 'We demand---our status in international politics.', 'for knowing', 'knowing', 'to know', 'to be know', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4921, 'Rumana finished---two essays in two days.', 'written', 'write', 'to write', 'writing', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4920, 'When the book---\' I was very anxious to know about the sales', 'dropped out', 'cleared out', 'came out', 'broke out', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4919, 'The city of Montreal---over 70 square miles.', 'covering', 'that covers', 'covers', 'is covered', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4918, 'It took quite a while to---all our luggage.', 'full out', 'keep out', 'bear out', 'sort out', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4917, 'Anis had Rafique---the floor.', 'would clean', 'to clean', 'cleaned', 'clean', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4916, 'I am in class twelve, Here \'am\' is---', 'Cognate verb', 'Principle verb', 'Auxilary verb', 'Factitivr verb', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4914, 'I (be ) there in Autumn.', 'was', 'am', 'were', 'have been', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4915, 'The essential part of a sentence is---', 'noun', 'verb', 'hard words', 'felling', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4913, 'Which is the verb form of the word, \' freash \' ?', 'freashen', 'enfresh', 'freshy', 'defresh', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4912, 'Which one of the following words is not a verb ?', 'threaten', 'worsen', 'bounded', 'flatten', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4911, 'we are committed to ----our troops.', 'withdrawn', 'withdraw', 'withdrawing', 'withdrawal', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4910, 'You had better---the offer.', 'than', 'welcomed', 'accept', 'accepted', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4909, 'You had better---him at once', 'to ring', 'ring', 'ringing', 'rung', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4907, 'A bad workman ---with his tools.', 'fights', 'quarrels', 'plays', 'revolts', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4908, 'Telling lies---a great sin.', 'am', 'are', 'was', 'is ', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4906, 'She could not but---there.', 'help going', 'goes', 'has gone', 'go', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4905, 'I would rather die---', 'to beg', 'than beg', 'than begging', 'than would have begged', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4904, 'You had better ---a doctor.', 'to see', 'see', 'saw', 'seen', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4903, 'Would you mind---the window ?', 'open', 'to poen', 'to opening', 'opening', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4902, 'I (to suffer )from fever for three days.', 'have suffered', 'am suffering', 'suffered', 'have been suffering', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4901, 'The poor ---much in winter.', 'suffer', 'suffers', 'suffering', 'suffered', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4900, 'I went to the library with a view to ---knolodge.', 'gain', 'gaining', 'gained', 'be gained', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4898, 'We should abstain---smoking.', 'of', 'for', 'about', 'from', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4899, 'He ran---debt.', 'for', 'at', 'after', 'into', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4896, 'One should be careful about--duty.', 'one\'s', 'her', 'his', 'their', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4897, 'Which one is the reflexive pronoun ?', 'who', 'himself', 'one', 'they', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4895, 'Everyone should respect---teachers.', 'his', 'one\'s', 'own', 'their', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4892, 'Let ---go there.', 'her and you', 'she and you', 'you and she', 'you and her', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4893, 'I have read the book---you lent me.', 'that', 'whom', 'whose', 'who', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4894, ' ---- manis mortal is a universal truth.', 'What', 'This', 'Which', 'That', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4890, ' \'For the being \' means---', 'later', 'lasting', 'enduring', 'temporarily', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4891, 'I met a person---I never saw earlier.', 'whom', 'who', 'that', 'which', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4889, 'My sister has supported me through---. The right phrase is :', 'good and bad', 'thick and thin', 'hot and cold', 'in and out', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4888, ' \'Breathe one\'s last \' means:', 'breathe in the open air', 'become successful', 'to pass away', 'to laugh', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4887, 'Which one is imperative sentence ?', 'Let it be done', 'The job is done', 'Close the door', 'She is cooking', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4885, 'Choose the right sentence', 'I left the book to him', 'I left the book with him', 'I left the book by him', 'I left the book with him', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4886, 'Which one is correct ?', 'I was candidate for the post', 'I was candidate to the post', 'I was a candided of the post', 'I were a candided to the post', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4884, 'I ---take a texi than walk home.', 'shall rather', 'would rather', 'should rather', 'rather', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4882, 'The past participle of \'bleed\' is---', 'bled', 'bleded', 'bleeded', 'bledened', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4883, 'She ---a good dream.', 'dreams', 'dreaming', 'dreamed', 'dreamt', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4880, 'Have you ever---to abroad ?', 'went', 'visit', 'been', 'go', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4881, 'Those---the type I like.', 'isn\'t', 'aren\'t', 'won\'t', 'don\'t', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4879, 'The bpresent form of \' felt \' is---', 'fall', 'fell', 'feel', 'fill', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4878, 'Fire burns, What kind of verb \' burn\' is---', 'intransitive', 'transitive', 'causative', 'copulative', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4877, 'Pastb participle of \' sing \' is---', 'sang', 'sung', 'sing', 'song', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4876, 'I would rather die---', 'to beg', 'than beg', 'for beg', 'then beg', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4875, 'I shall ---the letter soon.', 'go over', 'go out', 'go through', 'go on', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4874, 'Gulliver\'s Travels---wonderful to read.', 'is', 'are', 'has', 'were', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4873, 'The art exhibition will be---next week in Bangladesh Television.', 'telecast', 'published', 'telecasted', 'broadcast', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4872, 'I am in need of some books . I went to market---', 'buy the book', 'to buy the books', 'for books', 'to books', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4871, ' \' Hard Labour has---him \' .', 'broken down', 'broke down', 'broken out', 'broken upon', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4869, 'The past participle of \'swim\' is---', 'swam', 'swamped', 'swung', 'awum', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4870, 'Find the correct verb : None---helpless because they can always try.', 'was', 'were', 'is', 'are', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4868, 'Choose the correct form of verb in the sentence \' When water---it turns into ice \':', 'froze', 'freezes', 'freeze', 'will freeze', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4866, 'Oxygen and hydrogen ---water. The missing item is :', 'compose', 'composed of', 'are composed of', 'is composed of', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4867, 'Why don\'t you come and---?', 'have fun with us', 'telling us a story', 'leave us soon', 'left her alone', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4861, 'Would mind---me your pen.', 'to lend', 'borrowing', 'lending', 'lend', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4862, 'The past participle form of the word \' underlie \' is---', 'underlain', 'underlay', 'underlaid', 'underlaided', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4863, 'It ---I who help you take preparations for the examination last year.', 'is', 'are', 'am', 'can', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4864, 'Would you mind ---the window ?', 'to open', 'opening', 'open', 'to opening', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4865, 'He became a politician. Here \' became \' is a/an:', 'linking verb', 'transitive verb', 'intransitive verb', 'action verb', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4858, 'The past participle form of the verb \' Flow \' is---', 'fled', 'flew', 'flowed', 'flown', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4859, 'Which one is the correct past tense form of \' ring\' ?', 'rung', 'rang', 'ringed', 'runged', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4860, 'The word \' respond \' is :', 'an adjective', 'a verb', 'a noun', 'an adverb', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4854, 'I remembered him after he---', 'left', 'looking', 'had looked', 'look', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4855, 'It is time you ---for a new job.', 'looked', 'looking', 'had looked', 'look', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4856, 'The word \' massacre \' is---', 'noun', 'verb', 'adjective', 'both noun and verb', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4857, 'Mother loves me. Here love is an example of---', 'Transitive verb', 'Intransitive verb', 'Auxiliary verb', 'causative verb', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4853, 'It is high time we ---our eating habits.', 'Changed', 'should change', 'have changing', 'change', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4852, 'The dog was---in front of the door.', 'lain', 'lying', 'leid', 'laid', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4851, 'We worked hard so that we--succeed.', 'can', 'could', 'may', 'should', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4850, 'I look foeward---you.', 'to see', 'meeting', 'to hearing from', 'to meet', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4848, 'The second World War broke---in September, 1939.', 'out', 'through', 'away', 'in', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4849, 'I am entitled---a share of the profit. The correct preposition is---', 'into', 'for', 'from', 'to', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4847, 'She argued---me about the marriage.', 'with', 'for', 'to ', 'from', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4846, 'My friend always goes home ---foot.', 'on', 'with', 'of', 'by', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4845, 'My dream is to retire ---a villa in japan.', 'with', 'from', 'to', 'of', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4844, 'He is an heir---the throne.', 'to', 'at', 'towards', 'upon', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4843, 'He has no control---homself:', 'on', 'inaction', 'at', 'over', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4842, 'The climate is congenial ----health', 'for', 'at', 'to', 'in', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4841, 'A new moon hing ---the mountain.', 'by', 'around', 'over', 'beside', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4840, 'The verb form the word \' survival \' is---', 'service', 'serve', 'survey', 'survive', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4839, 'The verb form of the word \' act \' is---', 'action', 'inaction', 'act', 'actor', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4838, 'Which part of speech is \' Book \' ?', 'noun', 'verb', 'adjective', 'both noun and verb', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4837, 'Change the word \' clear \' into its verb form :', 'clarity', 'clarify', 'cleanse', 'clearify', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4836, 'Which is the verb form of \' father \' ?', 'fathern', 'father', 'fathering', 'fatherity', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4835, 'He accused the officer of fabricating the statistics.', 'concealing', 'constructing', 'exaggerating', 'lying about', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4834, 'Something given or done as an expression of esteem----', 'Verbatim', 'Stampede', 'Tribute', 'Lullaby', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4833, 'One who has suddenly gained new wealth, power or prestige---', 'Aristocrat', 'Affuent', 'Maverick', 'Parvenu', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4832, 'A person who is always dissatisfied---', 'Heretic', 'Felon', 'Malcontent', 'Surrogate', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4831, 'A common place remark---', 'Dialogue', 'Platitude', 'Epigram', 'Statement', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4830, 'An official or post with no work but high pay---', 'Honorary', 'Sinecure ', 'Gratis', 'Ex-officio', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4829, 'A process involving too much official formality---', 'Nepotism', 'Diplomacy', 'Red-tapism', 'Bureaucracy', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4828, 'The law is very explicit regarding the use of and standars for child safety seats in automobilies.', 'Brief', 'New', 'Firm', 'clear', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4827, '<NAME> was one of this century\'s most eccentric personages.', 'Wealthiest', 'Strangest', 'Most interesting', 'Unhappiest', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4826, 'A man who pays too much attention to his clothes and personal apperance', 'Snop', 'Duffer', 'Dandy', 'Licentious', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4825, 'A person who rarely speaks the truth', 'Scoundrel', 'Lair', 'Crook', 'Hypocrite', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4824, 'A person who regards the whole world as his country', 'Patriot', 'Natoonalist', 'Cosmopolitan', 'Metropolitan', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4823, 'Person who is indifferent to both pleasure and pain', 'Saint ', 'Ascetic', 'Stoic', 'Hermit', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4822, 'Something that lasts only for a while.', 'perpetual', 'vivid', 'venal', 'transient', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4821, 'The policy of extending a country\'s wmpire and influence---', 'Communism', 'Capitalism', 'Internationalism', 'Imperialism', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4820, 'A man adopted by an author in his writings---', 'Pseudonym', 'Nickname', 'Nomenclature', 'Title', 'A', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4819, 'One who believe that all things and events in life are predeterminded---', 'Egoist', 'Puritan', 'Tyrant', 'Fatalist', 'D', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4818, 'The part of the government which is concerned with making of rules---', 'Court', 'Legislature', 'Tribunal', 'Bar', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4817, 'Something that is perceptible by touch---', 'Contagious', 'Tenacious', 'Tangible', 'Contingent', 'C', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4816, 'Having superior or intellectual interests and taste---', 'Elite', 'Highbrow', 'Sophisticated', 'Fastidious', 'B', 7, 1, '2019-02-17 09:38:28', '2019-02-17 09:38:28'),
(4815, 'Here---book and bag that I lost last week.', 'are the', 'is the', 'was the', 'has been', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4814, 'We hoped that she--able to return in time.', 'will be', 'would be', 'can be', 'likely to be', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4813, 'I would rather that she---English fluenly and impressively .', 'speaks', 'doesn\'t speak', 'speak', 'has spoken', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4812, 'Nihar always avoids---', 'to work with me', 'work with me', 'works with me', 'working with me', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4811, 'They ---at each other with hate, but did not utter a word.', 'were staring', 'had stared', 'stared', 'have stare', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4810, 'If you don\'t mind, I would rather not----', 'to go', 'going', 'gone', 'go', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4809, 'Although it\'s basically a bussiness trip\' I am sure I ---a very good time there.', 'am having', 'have', 'will have', 'may have', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4808, 'We demand---our status in international politics.', 'for knowing', 'knowing', 'to know', 'to be know', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4807, 'Rumana finished---two essays in two days.', 'written', 'write', 'to write', 'writing', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4806, 'When the book---\' I was very anxious to know about the sales', 'dropped out', 'cleared out', 'came out', 'broke out', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4805, 'The city of Montreal---over 70 square miles.', 'covering', 'that covers', 'covers', 'is covered', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4803, 'Anis had Rafique---the floor.', 'would clean', 'to clean', 'cleaned', 'clean', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4804, 'It took quite a while to---all our luggage.', 'full out', 'keep out', 'bear out', 'sort out', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4802, 'I am in class twelve, Here \'am\' is---', 'Cognate verb', 'Principle verb', 'Auxilary verb', 'Factitivr verb', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4800, 'I (be ) there in Autumn.', 'was', 'am', 'were', 'have been', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4801, 'The essential part of a sentence is---', 'noun', 'verb', 'hard words', 'felling', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4799, 'Which is the verb form of the word, \' freash \' ?', 'freashen', 'enfresh', 'freshy', 'defresh', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4797, 'we are committed to ----our troops.', 'withdrawn', 'withdraw', 'withdrawing', 'withdrawal', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4798, 'Which one of the following words is not a verb ?', 'threaten', 'worsen', 'bounded', 'flatten', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4795, 'You had better---him at once', 'to ring', 'ring', 'ringing', 'rung', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4796, 'You had better---the offer.', 'than', 'welcomed', 'accept', 'accepted', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4794, 'Telling lies---a great sin.', 'am', 'are', 'was', 'is ', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4793, 'A bad workman ---with his tools.', 'fights', 'quarrels', 'plays', 'revolts', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4792, 'She could not but---there.', 'help going', 'goes', 'has gone', 'go', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4789, 'Would you mind---the window ?', 'open', 'to poen', 'to opening', 'opening', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4790, 'You had better ---a doctor.', 'to see', 'see', 'saw', 'seen', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4791, 'I would rather die---', 'to beg', 'than beg', 'than begging', 'than would have begged', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4787, 'The poor ---much in winter.', 'suffer', 'suffers', 'suffering', 'suffered', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4788, 'I (to suffer )from fever for three days.', 'have suffered', 'am suffering', 'suffered', 'have been suffering', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4785, 'He ran---debt.', 'for', 'at', 'after', 'into', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4786, 'I went to the library with a view to ---knolodge.', 'gain', 'gaining', 'gained', 'be gained', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4783, 'Which one is the reflexive pronoun ?', 'who', 'himself', 'one', 'they', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4784, 'We should abstain---smoking.', 'of', 'for', 'about', 'from', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4781, 'Everyone should respect---teachers.', 'his', 'one\'s', 'own', 'their', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4782, 'One should be careful about--duty.', 'one\'s', 'her', 'his', 'their', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4779, 'I have read the book---you lent me.', 'that', 'whom', 'whose', 'who', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4780, ' ---- manis mortal is a universal truth.', 'What', 'This', 'Which', 'That', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4778, 'Let ---go there.', 'her and you', 'she and you', 'you and she', 'you and her', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4776, ' \'For the being \' means---', 'later', 'lasting', 'enduring', 'temporarily', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4777, 'I met a person---I never saw earlier.', 'whom', 'who', 'that', 'which', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4775, 'My sister has supported me through---. The right phrase is :', 'good and bad', 'thick and thin', 'hot and cold', 'in and out', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4773, 'Which one is imperative sentence ?', 'Let it be done', 'The job is done', 'Close the door', 'She is cooking', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4774, ' \'Breathe one\'s last \' means:', 'breathe in the open air', 'become successful', 'to pass away', 'to laugh', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4772, 'Which one is correct ?', 'I was candidate for the post', 'I was candidate to the post', 'I was a candided of the post', 'I were a candided to the post', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4771, 'Choose the right sentence', 'I left the book to him', 'I left the book with him', 'I left the book by him', 'I left the book with him', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4770, 'I ---take a texi than walk home.', 'shall rather', 'would rather', 'should rather', 'rather', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4768, 'The past participle of \'bleed\' is---', 'bled', 'bleded', 'bleeded', 'bledened', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4769, 'She ---a good dream.', 'dreams', 'dreaming', 'dreamed', 'dreamt', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4767, 'Those---the type I like.', 'isn\'t', 'aren\'t', 'won\'t', 'don\'t', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4765, 'The bpresent form of \' felt \' is---', 'fall', 'fell', 'feel', 'fill', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4766, 'Have you ever---to abroad ?', 'went', 'visit', 'been', 'go', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4764, 'Fire burns, What kind of verb \' burn\' is---', 'intransitive', 'transitive', 'causative', 'copulative', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4763, 'Pastb participle of \' sing \' is---', 'sang', 'sung', 'sing', 'song', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4761, 'I shall ---the letter soon.', 'go over', 'go out', 'go through', 'go on', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4762, 'I would rather die---', 'to beg', 'than beg', 'for beg', 'then beg', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4760, 'Gulliver\'s Travels---wonderful to read.', 'is', 'are', 'has', 'were', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4759, 'The art exhibition will be---next week in Bangladesh Television.', 'telecast', 'published', 'telecasted', 'broadcast', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4758, 'I am in need of some books . I went to market---', 'buy the book', 'to buy the books', 'for books', 'to books', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4757, ' \' Hard Labour has---him \' .', 'broken down', 'broke down', 'broken out', 'broken upon', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4755, 'The past participle of \'swim\' is---', 'swam', 'swamped', 'swung', 'awum', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4756, 'Find the correct verb : None---helpless because they can always try.', 'was', 'were', 'is', 'are', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4754, 'Choose the correct form of verb in the sentence \' When water---it turns into ice \':', 'froze', 'freezes', 'freeze', 'will freeze', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4752, 'Oxygen and hydrogen ---water. The missing item is :', 'compose', 'composed of', 'are composed of', 'is composed of', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4753, 'Why don\'t you come and---?', 'have fun with us', 'telling us a story', 'leave us soon', 'left her alone', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4749, 'It ---I who help you take preparations for the examination last year.', 'is', 'are', 'am', 'can', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4750, 'Would you mind ---the window ?', 'to open', 'opening', 'open', 'to opening', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4751, 'He became a politician. Here \' became \' is a/an:', 'linking verb', 'transitive verb', 'intransitive verb', 'action verb', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4748, 'The past participle form of the word \' underlie \' is---', 'underlain', 'underlay', 'underlaid', 'underlaided', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4746, 'The word \' respond \' is :', 'an adjective', 'a verb', 'a noun', 'an adverb', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4747, 'Would mind---me your pen.', 'to lend', 'borrowing', 'lending', 'lend', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4745, 'Which one is the correct past tense form of \' ring\' ?', 'rung', 'rang', 'ringed', 'runged', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4744, 'The past participle form of the verb \' Flow \' is---', 'fled', 'flew', 'flowed', 'flown', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4743, 'Mother loves me. Here love is an example of---', 'Transitive verb', 'Intransitive verb', 'Auxiliary verb', 'causative verb', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4741, 'It is time you ---for a new job.', 'looked', 'looking', 'had looked', 'look', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4742, 'The word \' massacre \' is---', 'noun', 'verb', 'adjective', 'both noun and verb', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4740, 'I remembered him after he---', 'left', 'looking', 'had looked', 'look', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4739, 'It is high time we ---our eating habits.', 'Changed', 'should change', 'have changing', 'change', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4735, 'I am entitled---a share of the profit. The correct preposition is---', 'into', 'for', 'from', 'to', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4736, 'I look foeward---you.', 'to see', 'meeting', 'to hearing from', 'to meet', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4737, 'We worked hard so that we--succeed.', 'can', 'could', 'may', 'should', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4738, 'The dog was---in front of the door.', 'lain', 'lying', 'leid', 'laid', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4731, 'My dream is to retire ---a villa in japan.', 'with', 'from', 'to', 'of', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4732, 'My friend always goes home ---foot.', 'on', 'with', 'of', 'by', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4733, 'She argued---me about the marriage.', 'with', 'for', 'to ', 'from', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4734, 'The second World War broke---in September, 1939.', 'out', 'through', 'away', 'in', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4728, 'The climate is congenial ----health', 'for', 'at', 'to', 'in', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4729, 'He has no control---homself:', 'on', 'inaction', 'at', 'over', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4730, 'He is an heir---the throne.', 'to', 'at', 'towards', 'upon', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4725, 'The verb form of the word \' act \' is---', 'action', 'inaction', 'act', 'actor', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4726, 'The verb form the word \' survival \' is---', 'service', 'serve', 'survey', 'survive', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4727, 'A new moon hing ---the mountain.', 'by', 'around', 'over', 'beside', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4722, 'Which is the verb form of \' father \' ?', 'fathern', 'father', 'fathering', 'fatherity', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4723, 'Change the word \' clear \' into its verb form :', 'clarity', 'clarify', 'cleanse', 'clearify', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4724, 'Which part of speech is \' Book \' ?', 'noun', 'verb', 'adjective', 'both noun and verb', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4719, 'One who has suddenly gained new wealth, power or prestige---', 'Aristocrat', 'Affuent', 'Maverick', 'Parvenu', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4720, 'Something given or done as an expression of esteem----', 'Verbatim', 'Stampede', 'Tribute', 'Lullaby', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4721, 'He accused the officer of fabricating the statistics.', 'concealing', 'constructing', 'exaggerating', 'lying about', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4715, 'A process involving too much official formality---', 'Nepotism', 'Diplomacy', 'Red-tapism', 'Bureaucracy', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4716, 'An official or post with no work but high pay---', 'Honorary', 'Sinecure ', 'Gratis', 'Ex-officio', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4717, 'A common place remark---', 'Dialogue', 'Platitude', 'Epigram', 'Statement', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4718, 'A person who is always dissatisfied---', 'Heretic', 'Felon', 'Malcontent', 'Surrogate', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4713, '<NAME> was one of this century\'s most eccentric personages.', 'Wealthiest', 'Strangest', 'Most interesting', 'Unhappiest', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4714, 'The law is very explicit regarding the use of and standars for child safety seats in automobilies.', 'Brief', 'New', 'Firm', 'clear', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4710, 'A person who regards the whole world as his country', 'Patriot', 'Natoonalist', 'Cosmopolitan', 'Metropolitan', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4711, 'A person who rarely speaks the truth', 'Scoundrel', 'Lair', 'Crook', 'Hypocrite', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4712, 'A man who pays too much attention to his clothes and personal apperance', 'Snop', 'Duffer', 'Dandy', 'Licentious', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4708, 'Something that lasts only for a while', 'Perpetual', 'Vivid', 'Venal', 'Transient', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-18 16:22:11'),
(4709, 'Person who is indifferent to both pleasure and pain', 'Saint ', 'Ascetic', 'Stoic', 'Hermit', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4706, 'A man adopted by an author in his writings---', 'Pseudonym', 'Nickname', 'Nomenclature', 'Title', 'A', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4707, 'The policy of extending a country\'s wmpire and influence---', 'Communism', 'Capitalism', 'Internationalism', 'Imperialism', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4702, 'Having superior or intellectual interests and taste---', 'Elite', 'Highbrow', 'Sophisticated', 'Fastidious', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4703, 'Something that is perceptible by touch---', 'Contagious', 'Tenacious', 'Tangible', 'Contingent', 'C', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4704, 'The part of the government which is concerned with making of rules---', 'Court', 'Legislature', 'Tribunal', 'Bar', 'B', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4705, 'One who believe that all things and events in life are predeterminded---', 'Egoist', 'Puritan', 'Tyrant', 'Fatalist', 'D', 7, 1, '2019-02-16 13:28:54', '2019-02-16 13:28:54'),
(4934, 'turh', 'a', 'b', 'c', 'd', 'a', 1, 1, '2019-02-18 17:13:10', '2019-02-18 17:13:10'),
(4935, 'has', 'd', 'c', 'b', 'a', 'd', 1, 1, '2019-02-18 17:13:10', '2019-02-18 17:13:10'),
(4936, 'শতকরা বার্ষিক সুদের হার ৭ টাকা হলে ৬৫০ টাকার ৬ বছরের সুদ কত?', '২৭২ টাকা', '২৭০ টাকা', '২৭৩ টাকা', '২৭৫ টাকা', 'c', 1, 1, '2019-02-18 17:13:10', '2019-02-18 17:13:10'),
(4700, 'বার্ষিক ১০% মুনাফায় ৮০০০ টাকার ৩ বছরের চক্রবৃদ্ধি মূলধন নির্ণয় কর।', '৯৬৮০ টাকা', '৯৯৮০ টাকা', '১০৫০০ টাকা', '১০৬৪৮ টাকা', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4699, 'করিম সাহেব তার ৫৬০০০ টাকার কিছু টাকা বার্ষিক ১২% মুনাফায় ও বাকি টাকা বার্ষিক ১০% মুনাফায় বিনিয়োগ করলেন।এক বছর তিনি মত ৬৪০০ টাকা মুনাফা পেলেন।তিনি ১২% মুনাফায় কত টাকা বিনিয়োগ করেছেন?', '৪০০০০ টাকা', '৫০০০০ টাকা', '৬০০০০ টাকা', '৮০০০০ টাকা', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4697, 'বার্ষিক ৮% হার সুদে কত বছরে সুদ আসলের সমান হবে?', '৮ বছর', '১৪.৫ বছর', '১০ বছর', '১২.৫ বছর', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4698, 'একই হার মুনাফায় কোন আসল ৭ বছরে মুনাফা আসলে দ্বিগুণ হলে কত বছরে মুনাফা আসলে তিনগুন হবে?', '11', '12', '14', '21', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4696, 'বার্ষিক শতকরা ১০ টাকা হার সুদে কোন মূলধন কত বছর পরে আসলের ৩ গুন হবে?', '12', '10', '9', '11', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4695, 'বার্ষিক শতকরা ৫.০০ টাকা হার সুদে কত সময়ে ৩০০ টাকা সুদে আসলে ৪০৫ টাকা হবে?', '৫ বছর', '৫.৫ বছর', '৭ বছর', '৮ বছর', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4694, '৫% হারে কত সময়ে ৫০০ টাকার মুনাফা ১০০ টাকা হবে?', '৪ বছরে', '৩ বছরে', '২ বছরে', '২.৫ বছরে', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4693, 'মুনাফা ১২% থেকে হ্রাস পেয়ে ৮% হলে কত টাকার বার্ষিক মুনাফার ৫০০ টাকা হ্রাস পাবে?', '১৫০০০ টাকা', '12500', '12000', '13500', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4691, 'কোন আসল ৩ বছরে সুদে আসলে ৪৬০ টাকা এবং ৫ বছরে সুদে আসলে ৫০০ টাকা হলে আসল কত?', '৪০০ টাকা', '৪০৫ টাকা', '৪১০ টাকা', '৪৩৫ টাকা', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4692, 'বার্ষিক ৭% মুনাফা হারে কত টাকা ৩ বছরে জমা রাখলে মেয়াদান্তে মুনাফাসহ ৬৬৫৫ টাকা পাওয়া যাবে?', '৪০০০ টাকা', '৪৫০০ টাকা', '৫০০০ টাকা', '৫৫০০ টাকা', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4690, 'শতকরা বার্ষিক ৪ টাকা হার সরল মুনাফায় কত টাকা ১৫ বছরে বৃদ্ধি পেয়ে মূলধন ১০৪০ টাকা হবে?', 'মূলধন ৫০০ টাকা', 'মূলধন ৫৫০ টাকা', 'মূলধন ৬০০ টাকা', 'মূলধন ৬৫০ টাকা', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4689, 'বার্ষিক ৪.৫% লাভে কত টাকা বিনিয়োগ করলে ৪ বছরে তা ৮২৬ টাকা হবে?', '৭২৫ টাকা', '৭০০ টাকা', '৬৫০ টাকা', '৪৫৮ টাকা', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4688, 'শতকরা ৫ টাকা হার সুদে ২০ বছরে সুদে আসলে ৪০০০০ টাকা হয়। মূলধনের পরিমান কত ছিল?', '20000', '25000', '10000', '15000', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4686, 'কোন আসল ৩ বছরে মুনাফা আসলে ৫৫০০ টাকা হয়।মুনাফা আসলের ꓸ৩৭৫ অংশ হলে মুনাফার হার কত?', '0.1', '0.125', '0.15', '0.12', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4687, 'শতকরা বার্ষিক ৫ টাকা হার সরল সুদে কত টাকা ১২ বছরে সুদে আসলে ১২৪৮ টাকা হবে?', '৭০০ টাকা', '৭৫০ টাকা', '৭৮০ টাকা', '৮০০ টাকা', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4685, 'কোন আসল ৩ বছরে সুদ আসলে ৪৬০ টাকা এবং ৫ বছরে সুদে আসলে ৫০০ টাকা হলে শতকরা সুদের হার হবে-', '১০ টাকা', '২০ টাকা', '১৫ টাকা', '৫ টাকা', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4684, '৫০০ টাকার ৪ বছরের সুদ এবং ৬০০ টাকার ৫ বছরের সুদ একত্রে ৫০০ টাকা হলে সুদের হার কত?', '0.05', '0.06', '0.1', '0.12', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4683, 'একই সুদে ৫০০ টাকার ৪ বছরের সুদ এবং ৬০০ টাকার ৫ বছরের সুদ একত্রে ৪০০ টাকা হলে সুদের হার কত?', '0.08', '0.06', '0.1', '0.12', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4682, 'সরল সুদের হার শতকরা কত টাকা হলে যে কন মূলধন ৮ বছরে সুদে আসলে ৩ গুন হবে?', '১২.৫০ টাকা', '২০ টাকা', '২৫ টাকা', '১৫ টাকা', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4681, 'শতকরা বার্ষিক কত হার সুদে কন মূলধন ১০ বছরে সুদে মূলে তিনগুন হবে?', '0.1', '0.12', '0.15', '0.2', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4680, '১০০ টাকা ৫ বছরের সুদে আসলে ২০০ টাকা হলে, সুদের হার-', '0.25', '0.2', '0.1', '0.05', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4679, 'ব্যংকে ৮৫০০ টাকা রেখে ৪ বছর পর সুদে আসলে ১১২২০ টাকা পেলে বার্ষিক সরল সুদের হার কত ছিল?', '0.1', '0.09', '0.08', '0.07', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4677, '৫০ পয়সার ৫০ দিনের সুদ ৫০ পয়সা হলে দৈনিক সুদের হার কত?', '১ পয়সা', '.১ পয়সা', '.০১ পয়সা', 'কোনটিই নয়', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4678, 'বার্ষিক শতকরা কত হার সুদে ২৭৫ টাকার ৪ বছরে সুদে আসলে ৪০৭ টাকা হবে?', '0.12', '0.11', '0.1', '0.09', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4676, 'আবু ব্যংকে ৯০০০ টাকা রেখে ২ বছরে ১৮০০ টাকা সুদ পেল। বার্ষিক সুদের হার কত ছিল?', '0.1', '0.15', '0.2', '0.25', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4674, '৪২৫ টাকার ৪ বছরের সুদ ৮৫ টাকা হলে সুদের হার বার্ষিক কত টাকা হবে?', '0.1', '0.05', '0.08', '0.12', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4675, 'বার্ষিক শতকরা কত টাকা হার সুদে ৯০০ টাকা পাঁচ বছরের সুদ ১৩৫ টাকা হবে?', '0.02', '0.04', '0.03', '0.045', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4673, 'সরল হার সুদে ৫৬০ টাকার ৩ বছরের সুদ ৮৬ টাকা হলে সুদের হার কত?', '0.03', '0.05', '0.04', '0.06', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4672, 'শতকরা বার্ষিক কত টাকা হার মুনাফায় ৬৫০ টাকার ৬ বছরের মুনাফা ২৭৩ টাকা হবে?', '6', '6.5', '7', '8', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4671, 'শতকরা বার্ষিক কত হার সুদে ৪৫০ টাকায় ১২ বছরের সুদ ১৬২ টাকা হবে?', '৩.০০ টাকা', '২.৫০ টাকা', '৩.৫০ টাকা ', '২.৭৫ টাকা', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4670, 'এক ব্যক্তি ১৫০০০ টাকা ব্যংকে জমা করে বছরে সুদ বাবদ ১২৭৫ টাকা আয় করে। ঐ ব্যংকে বছরে সুদের হার কত?', '0.08', '0.0825', '0.085', '0.0875', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4669, 'সুদের হার ৬.৫০% হলে ১০০০ টাকা জমা দিয়ে ৬ বছর পর সুদে আসলে কত টাকা পাওয়া যাবে?', '৩৯০ টাকা', '১০৬৫ টাকা ', '১২৫০ টাকা', '১৩৯০ টাকা', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4668, '৫% হারে ৩০০ টাকার ৫ বছরের সুদাসল কত হয়?', '137.5', '138', '140', '147.5', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4667, '৪% হার সুদে ১০০০ টাকা ৮ বছরে সুদে আসলে কত হবে?', '১২০০ টাকা', '৯০০ টাকা', '১৩২০ টাকা', '১৫৭০ টাকা', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4665, 'সুদের হার ৬% থেকে কমে ৪% হলে ৫০০ টাকায় ৩ বছরে কত সুদ কমবে?', '20', '30', '40', '50', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4666, 'আরিফ বার্ষিক ৬.৫% হার সুদে ৯০০০ টাকা ব্যংকে জমা রাখল।সুদের হার বেরে ১২% হলে আরিফ ১ বছরে সুদ হিসেবে কত টাকা পাবে?', '৪৯৫ টাকা', '৫০০ টাকা', '৫২৫ টাকা', '১৮০০ টাকা', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4664, 'কবির সাহেব ১০% সরল সুদে ৭০০ টাকা এবং ৫% সরল সুদে ১৩০০ টাকা বিনিয়োগ করলে এক বছর পর তিনি কত সুদ পাবেন?', '৯০ টাকা', '১৩৫ টাকা', '১৫০ টাকা', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4663, 'এক ব্যক্তি ২০% সরল সুদে ৭০০ টাকা এবং ১০% সরল সুদে ৫০০ টাকা বিনিয়োগ করলে এক বছর পর তিনি কত সুদ পাবেন?', '190', '150', '225', '290', 'a', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4661, 'M টাকার M% সরল সুদে ৪ বছরের সুদ M টাকা হলে M=?', '20', '25', '50', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4662, 'রহিমা ২০% সরল সুদে ৮০০ টাকা এবং ১৫% সরল সুদে ৬০০ টাকা বিনিয়োগ করল।এক বছর পর তিনি কত টাকা সুদ পাবেন?', '205', '225', '250', '290', 'c', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4659, 'শতকরা বার্ষিক ৫ টাকা হার সুদে ৭২০ টাকার ২ বছর ৪ মাসের সুদ কত হবে?', '৮৪ টাকা', '৮৩ টাকা', '৮২ টাকা', '৮১ টাকা', 'a', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4660, 'প্রতি বছর শতকরা ৮ টাকা হারে লাভের চুক্তিতে ১০০০ টাকা বিনিয়োগ করে ২ বছর পর ওই বিনিয়োগকারী মোট কত টাকা লাভ পাবে?', '১৭০ টাকা', '১৬৬.৪ টাকা', '১৬৫ টাকা', '১৬০ টাকা', 'd', 3, 1, '2019-02-16 06:46:05', '2019-02-16 06:46:05'),
(4658, '৬% হারে নয় মাসে ১০০০০ টাকার উপর সুদ কত হবে?', '৫০০ টাকা', '৪৫০ টাকা', '৬০০ টাকা', '৬৫০ টাকা', 'b', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4657, '৫% হারে সরল সুদে ৫০০ টাকার ৫ বছরে সুদ কত হবে?', '১০০ টাকা', '১৫০ টাকা', '১২৫ টাকা', ' ৭৫ টাকা', 'c', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4655, 'শতকরা বার্ষিক ৫ টাকা হার সরল সুদে ৭০০০ টাকার ৫ বছরের মোট সুদ কত হবে?', '৩৫০ টাকা', '১৭৫০ টাকা', '১৩৫০ টাকা', '১৮৫০ টাকা', 'b', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4656, 'বার্ষিক শতকরা ১০ টাকা হার সরল সুদে ৪৫০০ টাকার ৩ বছরের সুদ কত?', '১৫০০ টাকা', '১৪৫০ টাকা', '১৬২০ টাকা', '১৩৫০ টাকা', 'd', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4653, 'বার্ষিক ৫% সরল মুনাফায় ৬০০ টাকার ৪ বছরের সরল মুনাফা কত?', '120', '240', '360', '480', 'a', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4654, 'শতকরা বার্ষিক সুদের হার ৭ টাকা হলে ৬৫০ টাকার ৬ বছরের সুদ কত?', '২৭২ টাকা', '২৭০ টাকা', '২৭৩ টাকা', '২৭৫ টাকা', 'c', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4652, 'বার্ষিক ৫% হার সরল সুদে ১০০০ টাকার ২ বছরের সুদ কত টাকা?', '৫০ টাকা', '১০০ টাকা', '১৫০ টাকা', '২০০ টাকা', 'b', 3, 1, '2019-02-16 06:46:04', '2019-02-16 06:46:04'),
(4651, 'একটি আয়তকার বাগানের দৈর্ঘ্য এর প্রস্থের তিনগুণ এবং ২৪ মিটার , বাগানটির ক্ষেত্রফল কত ?', '২৭ বর্গমিটার', '৩০ বর্গমিটার', '১৮ বর্গমিটার', '৯ বর্গমিটার', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4650, ' একটি আয়তক্ষেত্রের ঘরের প্রস্থ তার দৈর্ঘ্যের ২/৩ অংশ । ঘরটির পরিসীমা ৪০ মিটার হলে তার ক্ষেত্রফল কত ?', '৬০ বর্গমিটার ', '৯৬ বর্গমিটার', '৭২ বর্গমিটার', '৬৪ বর্গমিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4649, 'একটি আয়তক্ষেত্রের দৈর্ঘ্য প্রস্থের দেড় গুণ । ক্ষেত্রটির ক্ষেত্রফল ৯৬ বর্গ মিটার হলে ক্ষেত্রটির দৈর্ঘ্য কত ?', '১২ মিটার', '৬ মিটার', '৮ মিটার', '১৬ মিটার', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4648, ' একটি আয়তক্ষেত্রের পরিসীমা ২০০ মিটার । এর দৈর্ঘ্য প্রস্থের ৩/৭ অংশ । দৈর্ঘ্য নির্ণয় কর ।', '৩০ মি', '৫০ মি', '৬০ মি ', '৭০ মি', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4647, '৪৮ মিটার দীর্ঘ একটি আয়তক্ষেত্রের প্রস্থ দৈর্ঘ্যের এক তৃতীয়াংশ । ঐ আয়তক্ষেত্রের সমান পরিসীমা বিশিষ্ট বর্গেরএকটি বাহুর দৈর্ঘ্য - ', '১৬ মিটার', '৩২ মিটার', '২৪ মিটার', '২৮ মিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4646, 'একটি আয়তাকার ক্ষেত্রের দৈর্ঘ্য বিস্তারের ৩ গুন । দৈর্ঘ্য ৪৮ মিটার হলে , ক্ষেত্রটির পরিসীমা কত ?', '৬৪ মিটার', '১৪৪ মিটার', '১২৮ মিটার', '৯৬ মিটার', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4644, '০.০০১ / ( ০.১ × ০.১ ) = কত ?', '০.০০০১', '০.০১', '০.১', '১.০', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4645, '( ০.১× ০.০১ ×০.০০১ ) / ( ০.২ ×০.০২× ০.০০২ ) এর মান কত ?', '১/৮', '১/৮০', '১/৮০০', '১/৮০০০', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4642, 'নিচের কোন ভগ্নাগশটি ২/৩ থেকে ছোট ?', '৭/৮', '৩/৫', '৩/৪', '৫/৬', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4643, 'কোন সংখ্যা হ্রাস পেলে ৩/৮ হবে ?', '২৫/৪২', '৫/৪২', '২৫/২৪', '১৫/৪২', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4640, 'যদি , ৫ + ৩ = ২৮ , ৯ + ১ = ৮১০ , ২ + ১ = ১৩ হয় তবে , ৫ + ৪ = ?', '18', '19', '20', '21', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4641, 'লুপ্ত সংখ্যাটি কত ? ৮০ , ৯৬ , ….., ১২৮ ', '88', '120', '64', '112', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4639, 'How many 2\'s are there in the following number series which are preceded by 5 but not followed by an odd number ? 1 3 5 2 3 5 4 5 2 4 5 2 2 6 2 4 5 2 6 7 8 2 3 5 2 7 5 2 4 ', 'Two', 'Three', 'Four ', 'None of the above ', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4636, 'One number is wrong in the series , what should that number be ? 1 2 4 8 16 32 64 128 256 ', '4', '32', '256', 'no wrong number', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4637, 'নিম্নের সারিতে একটি সংখ্যা ভুল দেয়া আছে । সেই সংখ্যাটি কত ? ১ ৩ ২ ৫ ৩ ৬ ৪ ৭ ৫ ৯ ৬ ', '5', '6', '9', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4638, 'One number is wrong in the following series , what should that number be ? 1, 4, 2, 5, 3, 6, 4, 7, 5, 9, 6 ', '10', '8', '11', '9', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4635, 'নিচের সিরিজে একটি নম্বর ভুল আছে । সেই নম্বর কোনটি ? ০ ১ ২ ৫ ৯ ১৪ ২০ ২৭ ২৯ ', '29', '2', '14', '1', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4632, 'f (x) = log √( x2-36 ) ফাংশান এর ডোমেন কত ? ', 'x = 6', 'x < 6', ' 6≤ x', 'x > 6', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4633, 'f (x) = √( 4-x2 ) হলে f এর রেঞ্জ কত ?', '-2 ≤ x ≤ 0', '0≤ x ≤ 2', '-2 ≤ x ≤ 2', '-4 ≤ x ≤ 4', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4634, 'If you think one number is wrong in the series , what should the number be ? 2, 1, 3, 2, 4, 3, 5, 4, 5, 5, 7, 6', '1', '6', '5', 'No number is wrong in the series', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4630, 'f(x) = x2 + ( 1/x ) +1 অনুরূপ কোনটি ?', 'f (1) =3', 'f (0) = 1', 'f (-1) = 3', 'f (1) = 0', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4631, 'f ( x) = x2 + { 1/ (x-1) } - 1 হলে , নিম্নের কোনটি সঠিক ?', 'f ( 0 ) = ∞', 'f (1) = -1', 'f (- 1)=1/2 ', 'f (1) = 0', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47');
INSERT INTO `questions` (`id`, `question`, `opt_A`, `opt_B`, `opt_C`, `opt_D`, `correct_opt`, `catagory_id`, `user_id`, `created_at`, `updated_at`) VALUES
(4627, 'f(x)=x3-2x+10 হলে f(0) কত ?', '1', '5', '8', '10', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4628, 'যদি f(x)=x3+9x2-3x-6 হয় , তবে f (-2) = কত ?', '28', '-44', '32', '26', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4629, 'f(x)=x3+kx2-6x-9 ; k এর মান কত হলে f(3)=0 ?', '1', '-1', '2', '0', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4625, '১/৫, ৩/৮ , ৫/১১ , ৭/১৪ ধারাটির পরবর্তী সংখ্যা কত ? ', '৮ / ১৫ ', '৯ / ১৬ ', '৯ / ১৭ ', '১০ / ১৫ ', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4626, '৬৪, -৩২, ১৬, -৮, ……… ধারাটির পরবর্তী সংখ্যা কত ?', '-৪', '৪', '-২', '২', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4624, 'কোন ত্রিভুজের তিনটি বাহুকে বর্ধিত করলে উৎপন্ন বহিঃস্থ কোণ তিনটির সমষ্টি কত হবে?', '৫৪০°', '২৭০°', '১৮০°', '৩৬০°', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4622, '২,৩, ১, ৪ …… ধারাটির নবম পদ হবে - ', '0', '-1', '-2', '2', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4623, 'প্রশ্নবোধক স্থানে (?) কোনটি বসবে ? ৩,১০,৯,৮,২৭,৬, ৮১,৪,২৪৩ (?) ', '2', '4', '15', '12', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4621, 'নিচের শূন্যস্থানে কোন সংখ্যাটি বসবে ? ৫, ১৩ , ৭, ১৫, ৯, ১৭ , ১১ , ……', '13', '19', '20', '21', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4620, '৩, ৭, ৪, ১৪, ৫, ২১, ৬ ধারার অষ্টম সংখ্যাটি কত হবে ?', '28', '7', '6', '29', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4619, '0.03 , 0.12 , 0.48 , …... শূন্যস্থানে সংখ্যাটি কত হবে ?', '0.96', '1.48', '1.92', '1.5', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4618, ' বিশেষ ক্রমানুযায়ী সাজানো ২ , ৩, ৫, ৯, ১৭, …… ধারাটির পরবর্তী সংখ্যা কত ?', '33', '30', '32', '48', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4617, 'নিম্নের ধারাটি (series) পূর্ণ করতে শূন্যস্থান কোন সংখ্যাটি বসবে ? ২,৬,১২,৩৬,৭২, ………', '214', '250', '144', '216', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4615, 'নিম্নের সিরিজের পরের সংখ্যাটি কত ? ১০,২২,৪৬,৯৪, ?', '190', '184', '150', '200', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4616, 'নিচের নম্বর সিরিজে কোনটি বসবে ? ১, ২ , ৮, ৪৮, ৩৮৪ , ………', '1980', '3840', '2840', '4620', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4614, '১৯, ৩৩ , ৫১, ৭৩, …… পরবর্তী সংখ্যাটি কত ?', '85', '121', '99', '98', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4612, '১, ২, ৪, ৭, ১১, ……… ধারাটির নবম পদ হবে - ', '32', '35', '37', '42', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4613, '০, ৩, ৮, ১৫, …… ধারাটির অষ্টম পদ কত ?', '63', '64', '66', '67', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4610, '১, ৩, ৬, ১০ , ১৫, ২১, …… ধারাটির একাদশ তম পদ কত ?', '66', '56', '46', '76', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4611, '১, ৩, ৬, ১০ , ১৫, ২১, …… ধারাটির দাদশ পদ কত ?', '43', '78', '62', '66', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4607, '৮ ,১১, ১৭ , ২৯ , ৫৩ …… । পরবর্তী সংখ্যাটি কত ?', '101', '102', '75', '59', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4608, '৮৪ , ৪০ , ১৮…………এর পরবর্তী সংখ্যাটি কত?', '16', '12', '9', '7', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4609, '১, ৩, ৬, ১০ , ১৫, ২১, …… ধারাটির দশম পদ কত ?', '45', '55', '62', '65', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4605, '১, ১, ২, ৩, ৫, ৮,… এই সংখ্যা পরস্পরায় অষ্টম পদ কত?', '21', '13', '19', '16', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4606, '৩ , ৪ ,৭ ,১১, ১৮ , ২৯ , …… ধারাটির পরবর্তী সংখ্যাটি কত ?', '40', '47', '55', '60', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4603, '১, ২, ৩, ৫, ৮, ১৩, ২১, ৩৪, …… ধারার পরবর্তী সংখ্যাটি কত ?', '55', '40', '68', '89', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4604, '১, ১, ২, ৩, ৫, ৮, ১৩, ২১ , …… ধারাটির ১০ম পদ কোনটি ?', '34', '55', '48', '64', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4600, 'একটি গুণোত্তর শ্রেণির প্রথম ছয়টি পদের যোগফল তার প্রথম তিনটি পদের যোগফলের নয় গুণ । সাধারণ অনুপাত হবে - ', '3', '2', '4', '1', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4601, '1 +( 1 / 2 ) + (1/4 ) + (1/8) + …...... ধারাটির প্রথম সাতটি পদের যোগফল কত ? ', '33/31', '63/32', '63/64', '127/64', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4602, 'প্রথম দিনে ১ টাকা , দ্বিতীয় দিনে ২ টাকা , তৃতীয় দিনে ৪ টাকা , চতুর্থ দিনে ৮ টাকা , এরুপভাবে দান করলে ১৫ দিনে মোট কত টাকা দান করা হবে ?', '65635', '32767', '16383', '82910', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4599, '1/√ 2 , 1 , √2 , …... ধারাটির কোন পদ 8√2 হবে ?', '9 তম পদ', '10 তম পদ', '11 তম পদ', '12 তম পদ', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4597, '২ + ৪ + ৮ + ১৬ + ……… ধারাটির n সংখ্যক পদের সমষ্টি ২৫৪ হলে n এর মান কত ?', '7', '6', '5', '8', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4598, 'একটি গুণোত্তর অনুক্রমে দ্বিতীয় পদটি- 48 এবং পঞ্চম পদটি 3/4 হলে সাধারণ অনুপাত কত ? ', '1/2', '1/4', '-1/2', '-1/4', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4596, '1 -1 + 1 - 1 + …..... এর ধারাটির (2n+1) পদের সমষ্টি হবে ?', '-1', '1', '0', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4595, 'দুইটি বৃত্তের ব্যাসের অনুপাত ১ꓽ৩। এদের ক্ষেত্রফলের অনুপাত কত?', '১ꓽ২৭', '১ꓽ১২', '১ꓽ৮', '১ꓽ৯', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4593, 'বৃত্তের ব্যাস ৩ গুন বৃদ্ধি করলে ক্ষেত্রফল কতগুন বৃদ্ধি পাবে?', '16', '12', '9', '4', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4594, 'একটি গুণোত্তর অনুক্রমে তৃতীয় পদটি 20 এবং ষষ্ট ( 6 - তম ) পদটি 160 হলে প্রথম পদটি - ', '5', '10', '12', '8', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4592, '৮ + ৮ × ৮ = কত ?', '72', '128', '102', '144', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4591, 'কোন সম্পত্তির ৫/৮ অংশের মূল্য ১,২০,২০০০ টাকা হলে সমুদয় সম্পত্তির মূল্য কত হবে ?', '২,৭২,০০০ টাকা', '২,২৭,০০০ টাকা', '৬৭০০০ টাকা', '১৯২০০০ টাকা', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4589, 'একটি সমবাহু ত্রিভুজের একটি বাহুর দৈর্ঘ্য a একক হলে , ত্রিভুজটির ক্ষেত্রফল কত বর্গ একক ?', '√3/4 a2', 'a2 ', '√3/2 a2', '3a2/4', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4590, 'একটি সমবাহু ত্রিভুজের এক বাহুর দৈর্ঘ্য ৪ সে মি হলে , উহার ক্ষেত্রফল হবে কত?', '৩ বর্গ সে মি', '২ ৩ বর্গ সে মি', '৪ ৩ বর্গ সে মি', '১/২ ৩ বর্গ সে মি', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4588, 'ABC সমবাহু ত্রিভুজের প্রত্যেক বাহুর দৈর্ঘ্য x হলে , ত্রিভুজটির ক্ষেত্রফল কত ?', 'x3 বর্গ একক', '√3/4 x2 বর্গ একক', '4/√3 x2 বর্গ একক', '√4/3 x2 বর্গ একক', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4586, 'একখণ্ড জমির দৈর্ঘ্য ৯০ ফুট এবং প্রস্থ ৮০ ফুট হলে , ঐ জমির ক্ষেত্রফল হবে ?', '১ কাঠা', '১০ কাঠা', '৭.২ কাঠা', '৭২ কাঠা', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4587, 'একটি আয়তক্ষেত্রের দৈর্ঘ্য প্রস্থ অপেক্ষা ৪ ফুট বড় । দৈর্ঘ্য ৮ ফুট হলে ক্ষেত্রফল কত বর্গ ফুট ?', '30', '40', '35', '32', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4585, 'কোনো বাগানের দৈর্ঘ্য ২০ মিটার এবং প্রস্থ ১০ মিটার হলে ঐ বাগানের ক্ষেত্রফল কত বর্গমিটার ?', '30', '2', '300', '200', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4584, 'একটি ত্রিভুজাকৃতি জমির ভূমি ৫০ মিটার এবং উচ্চতা ২০ মিটার । প্রতি বর্গমিটার ১.৫০ টাকা হিসেবে ঘাস লাগাতে কত খরচ হবে ?', '৭৫০ টাকা ', '৬৫০ টাকা', '৭০০ টাকা ', '৬০০ টাকা', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4583, 'একটি ত্রিভুজাকৃতি জমির ভূমির পরিমাণ ৮০ মিটার এবং উচ্চতার পরিমাণ ৪৫ মিটার । জমির ক্ষেত্রফল হবে - ', '৩০০০ বর্গমিটার', '৯০০ বর্গমিটার', '১৮০০ বর্গমিটার', '২৪০০ বর্গমিটার', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4582, 'একটি ত্রিভুজের ভূমির পরিমাণ ৪ মিটার ও উচ্চতা ৩ মিটার । ক্ষেত্রফল কত ?', '৬ বর্গমিটার ', '৯ বর্গমিটার', '১২ বর্গমিটার', '১৮ বর্গমিটার', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4581, 'কোনো সমকোণী ত্রিভুজের ভূমি x এবং উচ্চতা y হলে ত্রিভুজটির ক্ষেত্রফল কত হবে ?', 'xy বর্গ একক', '(1/2 )xy বর্গ একক', 'x2 + y2 বর্গ একক', '1/2 ( x2 + y2 ) ', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4580, 'একটি সমকোণী ক্ষেত্রফল নিম্নক্তভাবে নির্ণয় করা হয় - ', 'ভূমি × উচ্চতা ', 'ভূমি × উচ্চতা', '১/২ × ভূমি × উচ্চতা ', 'ভূমি × উচ্চতা × অতিভুজ', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4578, 'একটি আয়তক্ষেত্রের দৈর্ঘ্য \'a\' একক এবং প্রস্থ \' b \' একক হলে , কর্ণের দৈর্ঘ্য কত ?', '√a+b', '√a2 + b2', 'a2 + b2', 'ab', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4579, 'একটি চতুর্ভুজের দৈর্ঘ্য ৮ মিটার , প্রস্থ ৬ মিটার । চতুর্ভুজটির পরিসীমা কত ?', '১৪ মিটার ', '৪৮ মিটার', '২২ মিটার', '২৮ মিটার', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4576, 'একটি আয়ত ক্ষেত্রের দৈর্ঘ্য প্রস্থের ৩ গুণ । আয়তক্ষেত্রটির ক্ষেত্রফল ৩০০ বর্গমিটার হলে , পরিসীমা কত ?', '৭০ মিটার ', '৭৫ মিটার', '৮০ মিটার', '২৭২ মিটার', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4577, 'একটি আয়তকার ঘরের প্রস্থ দৈর্ঘ্যের ২/৩ গুণ এবং ক্ষেত্রফল ৩৮৪ মিটার হলে ঐ ঘরের পরিসীমা কত ?', '২৫৬ মিটার', '৫৭৬ মিটার', '৪০ মিটার', '৮০ মিটার', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4575, 'একটি আয়তকার জমির দৈর্ঘ্য প্রস্থের দিগুণ এবং উহার ক্ষেত্রফল ৮০০ বর্গমিটার হলে , জমির পরিসীমা কত মিটার ?', '100', '140', '120', '115', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4574, 'সমবাহু ত্রিভুজের বাহুর দৈর্ঘ্য যদি a হয় , তবে ক্ষেত্রফল হবে - ', '(√৩/৪) a২', '(√৩/২) a২', '(৩/২) a২', '(১/২ ) a২', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4573, 'একটি সমকোণী ত্রিভুজের সমকোণ সংলগ্ন বাহুদ্বয় x মিটার এবং ( x + ৩ ) মিটার । ত্রিভুজটির ক্ষেত্রফল ১৭০ বর্গমিটার হলে x এর মান - ', '১৬ মিটার', '১৭.৫ মিটার', '১৭ মিটার', '১৮.৫ মিটার', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4572, 'একটি সমকোণী ত্রিভুজের ক্ষেত্রফল ১৪৪ বর্গ একক । সমকোণ সন্নিহিত বাহুদ্বয়ের একটি দৈর্ঘ্য ১২ একক হলে অপরটি কত ?', '১৫ একক', '২৪ একক', '২০ একক', '৩০ একক', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4571, ' কোনো সমদ্বিবাহু ত্রিভুজের ভূমি ১৬ একক এবং অপর প্রত্যেক বাহুদ্বয় ১০ একক । ত্রিভুজটির ক্ষেত্রফল কত বর্গ একক ?', '160', '80', '36', '48', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4570, 'একটি সমবাহু ত্রিভুজের বাহুর প্রত্যেকটির দৈর্ঘ্য ২ মিটার বাড়ালে এর ক্ষেত্রফল ৩√ ৩ বর্গমিটার বেড়ে যায় । সমবাহু ত্রিভুজের বাহুর দৈর্ঘ্য কত ?', '১ মিটার', '২ মিটার', '৩ মিটার', '৪ মিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4569, 'একটি সমবাহু ত্রিভুজের ক্ষেত্রফল ৫০ বর্গ সে মি । ত্রিভুজের প্রতি বাহুর দৈর্ঘ্য কত ?', '১৫.২ সে মি ', '১০.৫ সে মি', '০.৭ সে মি', '১৭.১ সে মি', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4567, 'একটি সমবাহু ত্রিভুজের একটি বাহু ১৬ মিটার , ত্রিভুজটির ক্ষেত্রফল কত ?', '192', '৩২√ ৩', '৬৪ √৩ ', '64', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4568, 'সমবাহু ত্রিভুজের এক বাহুর দৈর্ঘ্য ২√ ৩ একক হলে , ত্রিভুজটির ক্ষেত্রফল - ', '(৩√ ৩) / ৪ বর্গ একক', '৩√ ৩ বর্গ একক', '৯ বর্গ একক', '৩ একক', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4566, 'একটি ত্রিভুজাকৃতি ক্ষেত্রের ক্ষেত্রফল ৮৪ বর্গগজ । ত্রিভুজটির ভূমির দৈর্ঘ্য ১৪ গজ হলে শীর্ষ বিন্দু হতে ভূমির উপর অঙ্কিত লম্বের দৈর্ঘ্য কত ?', '১০ গজ', '১২ গজ', '১৪ গজ', '১৬ গজ', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4565, 'একটি ত্রিভুজাকৃতি ক্ষেত্রের ক্ষেত্রফল ৮৪ বর্গগজ । ত্রিভুজের শীর্ষবিন্দু হতে ভূমির উপর অঙ্কিত লম্বের দৈর্ঘ্য ১২ গজ হলে , ভূমির দৈর্ঘ্য কত ?', '১০ গজ', '১২ গজ', '১৪ গজ', '৭ গজ', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4564, 'একটি ত্রিভুজাকৃতি জমির ভূমি ৭৫ মিটার এবং উচ্চতা ২০ মিটার । প্রতি বর্গমিটারে ২.০০ টাকা হিসেবে ঘাস লাগাতে কত খরচ হবে ?', '১২৫০ টাকা', '১৫০০ টাকা', '১৪০০ টাকা', '১৬০০ টাকা', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4563, 'ত্রিভুজের শীর্ষবিন্দু থেকে এর ভূমির উপর অঙ্কিত লম্বের দৈর্ঘ্যকে কি বলা হয় ?', 'কর্ণ', 'উচ্চতা', 'অতিভুজ', 'মধ্যমা', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4562, 'ত্রিভুজের ক্ষেত্রফল নির্ণয়ের সুত্র নিচের কোনটি ?', 'ভূমি × উচ্চতা ', 'দৈর্ঘ্য × প্রস্থ', '১/২ বাহুদ্বয়ের দৈর্ঘ্য × উচ্চতা', '১/২ × ভূমি × উচ্চতা ', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4561, 'একটি আয়তকার ঘরের দৈর্ঘ্য প্রস্থ অপেক্ষা ৪ মিটার বেশি । ঘরটির পরিসীমা ৩২ মিটার হলে , ঘরটির দৈর্ঘ্য কত ?', '১০ মিটার', '৬ মিটার', '১৮ মিটার', '১২ মিটার', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4560, 'একটি আয়তক্ষেত্রের ক্ষেত্রফল ১৬০ বর্গমিটার । এর প্রস্থ দৈর্ঘ্য অপেক্ষা ৬ মিটার কম । আয়তক্ষেত্রের দৈর্ঘ্য কত ?', '২০ মিটার', '১৬ মিটার', '১২ মিটার', '৮ মিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4559, ' বিষমবাহু ত্রিভুজ ABC এর বাহুগুলির মান এমনভাবে নির্ধারিত যে , AD মধ্যমা দ্বারা গঠিত ত্রিভুজ ABD এর ক্ষেত্রফল x মিটার । ত্রিভুজ ABC - এর ক্ষেত্রফল কত ?', '২xবর্গমি', 'x2 বর্গমি', '(x/২)২ বর্গমি', '( x /৩ ) ৩ বর্গমি', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4558, 'একটি ত্রিভুজাকৃতি মাঠের বাহুগুলোর দৈর্ঘ্য যথাক্রমে ২০ মি , ২১ মি , এবং ২৯ মি , হলে এর ক্ষেত্রফল কত ?', '২০০ বর্গমিটার', '২১০ বর্গমিটার', '২৯০ বর্গমিটার', '৩০০ বর্গমিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4557, 'একটি সমদ্বিবাহু ত্রিভুজের পরিসীমা ১৬ মিটার । এর সমান সমান বাহুর দৈর্ঘ্য ভূমির ৫/৬ অংশ হলে ত্রিভুজটির ক্ষেত্রফল কত ?', '১৪ বর্গ মিটার', '১৬ বর্গ মিটার', '১২ বর্গ মিটার', '২০ বর্গ মিটার', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4556, 'একটি সমদ্বিবাহু সমকোণী ত্রিভুজের অতিভুজের দৈর্ঘ্য ১২ সে মি হলে , ত্রিভুজটির ক্ষেত্রফল কত ?', '36', '48', '56', '72', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4555, 'একটি সমদ্বিবাহু ত্রিভুজের সমান বাহুদ্বয়ের প্রত্যেকটির দৈর্ঘ্য ১০ সে মি এবং বাহুদ্বয়ের অন্তর্ভুক্ত কোণ ৪৫\' হলে ত্রিভুজটির ক্ষেত্রফল কত বর্গ সে মি ?', '25', '২৫ ২', '30', '২৫ ৫', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4554, 'কোনো সমকোণী ত্রিভুজের অতিভুজ 13 সে মি এবং পরিসীমা 30 সে মি । ত্রিভুজটির ক্ষেত্রফল নির্ণয় কর ।', '24 বর্গ সে. মি.', '27 বর্গ সে. মি.', '30 বর্গ সে. মি.', '28 বর্গ সে. মি.', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4553, 'সমকোণী ত্রিভুজাকৃতির একটি মাঠের অতিভুজ ও ভুমির দৈর্ঘ্য যথাক্রমে ১৩ মিটার ও ৫ মিটার । মাঠটির ক্ষেত্রফল - ', '৬০ বর্গমিটার', '৬৫ বর্গমিটার', '৪৫ বর্গমিটার', '৩০ বর্গমিটার', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4552, 'একটি সমকোণী ত্রিভুজের অতিভুজ ছাড়া অন্য দুটি বাহুর দৈর্ঘ্য যথাক্রমে ০.১ এবং ০.২ মিটার । ত্রিভুজটির ক্ষেত্রফল কত ?', '০.০৬ বর্গমিটার', '০.০৩ বর্গমিটার', '০.০৫ বর্গমিটার', '০.০১ বর্গমিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4551, 'একটি সমকোণী ত্রিভুজের অতিভুজ ছাড়া অন্য দুটি বাহুর দৈর্ঘ্য যথাক্রমে ০.১ এবং ০.২ মিটার । ত্রিভুজটির ক্ষেত্রফল কত ?', '১০০ বর্গ সে. মি.', '২০০ বর্গ মি.', '০.০১ বর্গ সে. মি.', '০.০২ বর্গ মি.', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4550, 'একটি আয়তাকার ঘরের দৈর্ঘ্য বিস্তারের দীগুণ । এর ক্ষেত্রফল ৫১২ বর্গমিটার হলে পরিসীমা কত ?', '৯৮ মিটার ', '৯৬ মিটার', '৯৪ মিটার', '৯২ মিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4549, '20X পরিসীমাবিশিস্ট আয়তক্ষেত্রের এক বাহুর দৈর্ঘ্য ৪X+৩ হলে , অপর বাহুর দৈর্ঘ্য কত ?', '৪X-৩', '৫X+৩', '৫X-৩', '৬X-৩', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4548, 'একটি ত্রিভুজের তিনটি বাহুর দৈর্ঘ্য ১৩ , ১৪ ও ১৫ মিটার । ত্রিভুজটির ক্ষেত্রফল কত ?', '৮৪ বর্গমিটার', '৬০ বর্গমিটার', '৯০ বর্গমিটার', '১০৮ বর্গমিটার', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4547, 'একটি ত্রিভুজের তিনটি বাহুর দৈর্ঘ্য ৫,৬,৭ মিটার । নিকটতম বর্গমিটারে ত্রিভুজটির ক্ষেত্রফল কত ?', '১৬ বর্গমিটার', '১৫ বর্গমিটার', '১৭ বর্গমিটার', '১৪ বর্গমিটার', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4546, '৩/৪ , ২/৫ , ১/৬ এবং ৫/৮ ভগ্নাগশগুলর মধ্যে কোনটি বৃহত্তম ?', '৩/৪', '২/৫', '১/৬', '৫/৮', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4544, 'নিচের কোন সংখ্যাটি ক্ষুদ্রতম ?', '২/৭', '৩/৬', '৫/২১', '১/৩', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4545, 'নিচের ভগ্নাশগুলোর মধ্যে কোনটি সবচেয়ে বড় ?', '২/৩', '১৩/১৫', '৪/৫', '২৩/৩০', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4543, 'নিচের কোন ভগ্নাংশটি ক্ষুদ্রতম ?', '১/৩', '৩/৬', '২/৭', '৫/২১', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4542, 'এক্তি রম্বসের কর্ণ দ্বয় এর দৈর্ঘ্য ৮ সেꓸমি ও ৯ সেꓸমি।এই রম্বসের ক্ষেত্রফলের সমান ক্ষেত্রফল বিশিষ্ট বর্গক্ষেত্রের পরিসীমা কত?', '১৮ সেꓸমি', '২৪ সেꓸমি', '৩৬ সেꓸমি', '৩২ সেꓸমি', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4541, 'একটি রম্বসের কর্ণ দ্বয় যথাক্রমে ৪ সেꓽমি এবং ৬ সেꓽমি হয় তবে রম্বসের ক্ষেত্রফল কত?', '৬ বর্গ সেꓸমি', '৮ বর্গ সেꓸমি', '২৪ বর্গ সেꓸমি', '১২ বর্গ সেꓸমি', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4539, '৩/২০ এর দশমিক ভগ্নাশ কত ?', '1.5', '0.015', '0.15', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4540, '১/৮০ থেকে ১/৪০ বিয়োগ করে বিয়োগফলকে দশমিকে প্রকাশ করলে কত হবে ?', '0.225', '0.0125', '0.25', '0.05', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4536, '২.০২ ×০.০১ × ০.০৫ = কত ?', '0.0001', '0.00001', '0.000001', 'কোনটিই নয়', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4537, '০.০৩ × .০০৬ ×০০৭ = ?', '0.000126', '0.000126', '0.00000126', '0.126', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4538, '০.০৪ × ০.০০৫ × ০.৩ = ? ', '0.00006', '0.006', '0.506', '0.06', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4535, 'একটি বাঁশের ১/৪ অংশ কাদায় , ৩/৫ অংশ পানিতে এবং ৩ মিটার পানির উপরে আছে । বাঁশটির সম্পূর্ণ দৈর্ঘ্য কত ?', '২০ মি ', '১৬ মি', '১৫ মি', '১২ মি', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4534, 'এক গোয়ালা তার এক ক সংখ্যক গাভীকে চার পুত্রের মধ্যে নিম্নলিখিতভাবে বণ্টন করে দিল - প্রথম পুত্রকে ১/২ অংশ , দ্বিতীয় পুত্রকে ১/৪ অংশ , তৃতীয় পুত্রকে ১/৫ অংশ এবং বাকি ৭ তি গাভী চতুর্থ পুত্রকে দিল । ঐ গোয়ালার গাভীর সংখ্যা কত ছিল ?', '১০০ টি', '১৪০ টি', '১৮০ টি', '২০০ টি', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4533, ' একটি খুঁটির ৫/৬ অংশ কালো এবং বাকী অংশ সাদা । খুঁটিটির কালো এবং সাদা অংশের দীঘের পার্থক্য ৬ মিটার হলে সম্পূর্ণ খুঁটির দৈর্ঘ্য কত ?', '৯ মিটার', '৮ মিটার', ' ৬ মিটার', '১২ মিটার', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4531, '৫/৩ এর (১/৫) / (১/৯) = কত ?', '৫', '৩', '৪', '7', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4532, 'একটি ভগ্নাগশের লব ও হর উভয় থেকে এক বিয়োগ করলে ভগ্নাশটি ২/৩ হয় । কিন্তু হর ও লব উভয়ের সঙ্গে ১ যোগ করলে ভগ্নাশটি ৩/৪ হয় । ভগ্নাগশটি কত ?', '৪/৫', '৩/৪', '৭/৯', '৫/৭', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4529, '(১/৩) / (৪/৫) × ৩/৪ = কত ?', '৫/১৬', '৫/৯', '৪/১৩', '১/৫', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4530, '( ২/৩ ) / (৪/৫ )এর ২০ /২১ = কত ?', '১/৩', '৮/২১', '৭/৮', '৫/৬০', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4527, '৩/৮ + ০.০৫ = কত ?', '১৩/৪০', '৭/৪', '১৭/৪০', '২৭/৪০', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4528, '১.১ , ০.০১ ও ০.০০১১ এর সমষ্টি কত ?', '0.01111', '1.1111', '1.10111', '11.1101', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4525, '০.০১ × ০.০২ = ?', '0.002', '0.0002', '0.00002', '0.02', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4526, '০.৩× ০.০৩ × ০.০০৩ = কত ?', '0.000027', '0.00027', '0.0027', '0.027', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4523, '(.০১ ×১)²=কত?', 'ꓸ০১', 'ꓸ০০১', '0.0001', 'ꓸ০০০০১', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4524, '০.০১ × ০.০১ = ?', '0.01', '0.1', '0.001', '0.0001', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4521, '৫ / ০.০৫ = ? ', '0.25', '0.025', '100', '0.625', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4522, '০.০০০৫ / ০.০০৮ = ? ', '0.00625', '0.0625', '0.625', '6.25', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4518, '০.০২৪ × ১০ ৬ = ?', '24000', '240000', '2400000', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4519, '৩× ০.৩ / ২ = কত ? ', '1', '0.6', '2', '0.45', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4520, '০.৩ × ৩০ / ১০ = কত ?', '0.09', '0.9', '0.009', '9', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4516, 'Divide 30 by half and add 10 . What do you get ?', '২৫', '৪৫', '৭০', '৯০', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4517, '১ কে ১০০ বার ১ দিয়ে গুন করে গুণফলকে ১ দিয়ে ভাগ , ভাগফল থেকে ১ বিয়োগ করে , বিয়োগফলকে ১০০ দ্বারা ভাগ করলে কত হবে ?', '1', '0', '১/১০০', '৯৯/১০০', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4514, '১০ টাকা×১৫ টাকা / ৫ টাকা ×৩০ টাকা = কত ?', '১ টাকা ', 'অর্থবহ নয়', '৯০০ টাকা', '0', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4515, '{ - ১০ - ( - ৭ ) } অপেক্ষা { -১০ + ( -৭ ) } কত বড় বা ছোট ?', '-17', '-২০', '-১৯', 'উপরের কোনটিই নয়', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4513, '৩.১২৫ কে ২.৫ দ্বারা ভাগ করলে ভাগফল কত ? ', '১.৩৫', '১.৪০', '১.২৫', '১.৩০', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4511, '(০.১ × ০.০৩×০.০০৪ ) / (০.০১ × ০.০৬ ) এর মান কত ?', '০.২', '০.০২', '০.০০২', '০.০০০২', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4512, '(০.২ × ০.০২ × ০.০০২ )/ (০.০১ × ০.০৪ ) এর মান কত ?', '০.২', '০.০0২', '০.০০১', '০.০২', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4510, '(.১ × .০১ × .০০১) / ( .২ × .০২ × .০০২ ) এর মান কত ?', '১/৮০', '১/৮০০', '১/৮০০০', '১/৮', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4508, '(৫/১৫ × ১৫) / ( ৫/১৫ এর ১৫ ) সরল করলে তার মান কত হবে - ', '0', '1', '225', '১/২২৫', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4509, '(৩× ০.০৩× ০.০০৪) / (৪× ০.০৫ × ০.০০৬) এর মান কত ?', '৩/১০', '১১/২০', '১৭/৩০', '৭/১০', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4506, '১/৪ + ১/৮ = কত ?', '১/২', '২/৮', '৩/৮', '২/৪', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4507, '২ (১/২ ) + ২ + ১ (১/২) - ৩ = ?', '২ (১/৪)', '৩', '১/২', '৪ (৩/৪)', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4503, '৫২-৩২-২২ = ? ', '২৫', '১২', '১০', '০', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4504, '(২-১) (২+১) (২² -১²) (২²+১²) = ?', '৪২', '৪৪', '৪৫', '৫০', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4505, '৪/০.১২৫ = কত ?', '৩২', '৬.৪', '৬৪', '৩.২', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4501, 'কোনটি বৃহত্তম সংখ্যা?', '১/৭', '২/৭', '৩/৭', '১/৮', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4502, 'কোনো একটি স্কুলের শিক্ষক শিক্ষয়ত্রীর ২/৩ অংশ মহিলা । পুরুষ শিক্ষকদের ১২ জন অবিবাহিত এবং ৩/৫ অংশ বিবাহিত । ঐ স্কুলে শিক্ষক শিক্ষয়ত্রীর সংখ্যা কত?', '30', '60', '72', '90', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4500, 'কোন সংখাটি বৃহত্তম?', '√০.৩', '০.৩', '১/৩', '২/৩', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4499, ' নিচের সংখ্যাগুলোর মধ্যে কোনটির মান সবচেয়ে বেশি?', '0.09', '০.৫০', '০.১৯', '০.৩৩', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4498, '১.৯৮, ৩ এর ৬০% এবং √৩ কে মানের নিম্নক্রমনুসারে সাজালে হবে-', '১.৯৮, ৩ এর ৬০%, √৩', '√৩, ৩ এর ৬০%, ১.৯৮', '৩ এর ৬০%, √৩, ১.৯৮', '৩ এর ৬০%, ১.৯৮,√৩', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4497, '√ ২, ০.৯ এবং ১১/১০ কে মানের উদ্ধক্রমানুসারে সাজালে নিচের কোনটি শুদ্ধ উত্তর হবে?', '√২, ১১/১০ ০.৯', '০.৯ √২, ১১/১০', '১১/১০,০.৯', '০.৯, ১১/১০, √২', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4496, 'নিচের দশমিক সংখ্যাগুলোর বৃহত্তম সংখ্যা দ্বারা ক্ষুদ্রতম গুণ করলে গুণফোল কত হবে?0.1 , .00009 , .020 , .001', '0.00009', '0.0001', '0.0018', '0.00018', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4495, '৭/১৭ এর হয় এবং লবের সঙ্গে কোন সংখ্যাটি যোগ করলে ভগ্নাংশটি ৩/৫ হবে?', '7', '5', '6', '13', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4494, 'একটি রেস্টুরেন্টের বয়-এর সাপ্তাহিক বেতন ৫০০ টাকা । এক সপ্তাহে বখশিস থেকে তার আয় তার বেতনের ৫/৪ । তাহলে ঐ সপ্তাহে তার মোট আয়ের কত ভাগ বখশিস থেকে এসেছে?', '৪/৯', '৫/৮', '৫/৯', '৭/৯', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4492, 'কোন সংখ্যাটি ক্ষুদ্রতম?', '১/১১', '৩/৩১', '২/২১', '০.০২', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4493, '৪ টি ১ টাকার নোট এবং ৮ টি ২ টাকার নোট একত্রে ৮ টি ৫ টাকার নোটের কত অংশ?', '১/৪', '১/২', '১/৮', '১/১৬', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4490, 'কোনটি সবচেয়ে ছোট?', '২/১১', '২/১৩', '৩/১১', '৪/১৫', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4491, 'কোন ভগ্নাংশটি ক্ষুদ্রতম?', '৫/৬', '১২/১৫', '১১/১৪', '১৭/২১', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4488, '১ ঘণ্টা ২০ মিনিট ৪ ঘণ্টার কত অংশ?', '১/৪ অংশ', '৩/৪ অংশ', '১/৩ অংশ', '২/৩ অংশ', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4489, ' নিচের কোনটি ক্ষুদ্রতম সংখ্যা?', '0.3', '√০.৩', '১/৩', '২/৫', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4487, 'কোন সংখ্যার ২/৭ অংশ ৬৪ এর সমান?', '242', '248', '217', '224', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4486, 'ক,খ, ও গ এর মধ্যে কিছু টাকা ভাগ করা হল । ক পেল মোট টাকার ১/৪ অংশ , খ পেল অবশিষ্ট টাকার ১/৬ অংশ, গ পেল ১২০ টাকা। মোট টাকার পরিমাণ-', '২১৬ টাকা', '১৯২ টাকা', '২০৮ টাকা', '২০০ টাকা', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4485, 'একটি বাঁশের অর্ধাংশ মাটির নিচে , এক- তৃতীয়াংশ পানির মধ্যে এবং ২ মিটার পানির উপরে , বাঁশটির দৈর্ঘ্য কত?', '৯ মিটার', '১০ মিটার', '১২ মিটার', '১৬ মিটার', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4484, 'কোন সম্পত্তির ৭/৮ অংশ ২ পুত্র ও ৩ কন্যার মধ্যে এমনভাবে বণ্টন করা হলো যার ফলে প্রত্যেক কন্যা প্রত্যেক পত্রের অর্ধেক পায়। প্রত্যেক পুত্র সম্পত্তির কত অংশ পেল?', '১/৪', '১/৮', '৩/৪', '৫/৮', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4483, 'নিম্নে বর্ণিত ভগ্নাংশের কোনটি ১/২ এর চেয়ে বেশি?', '৭/১৫', '৩২/৬৫', '৩১/৬০', '৩০/৬১', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4482, 'কোন ভগ্নাংশটি ২/৩ থেকে বড়?', '৮/১১', '৩/৫', '১৩/২৭', '৩৩/৫৫', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4481, 'যদি ১ টি পাইপের দ্বারা ১ টি চৌবাচ্চা `t` ঘণ্টায় খালি করা যায়, তাহলে ৩ ঘণ্টায় চৌবাচ্চার কত অংশ খালি করা যাবে?', '৩t', 't/৩', '৩/t', 'সমাধান সম্ভব নয়', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4480, 'এক ব্যক্তি তার মোট সম্পত্তির ৩/৭ অংশ ব্যয় করার পর অবশিষ্টের ৫/১২ অংশ ব্যয় করে দেখলেন যে তার নিকট ১০০০ টাকা রয়েছে । তার মোট সম্পত্তির মূল্য কত?', '২০০০ টাকা ', '২৩০০ টাকা', '৩০০০ টাকা', '৩০০ টাকা', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4479, '০.৪৭ কে সাধারণ ভগ্নাংশে পরিণত করলে কত হবে?', '৪৭/৯০', '৪৩/৯০', '৪৩/৯৯', '৪৭/৯৯', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4478, '১.১৬ এর সাধারণ ভগ্নাংশ কোনটি ?', '1.0625', '1.1777777777777778', '1.16', '1.1616161616161615', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4477, 'কোন ভগ্নাংশকে লঘিষ্ঠ আকারে প্রকার করতে হলে এর লব ও হরের গরিষ্ঠ সাধারণ গুণনীয়ক দিয়ে-', 'লব ও হরকে ভাগ করতে হবে', 'লব ও হরকে গুন করতে হবে', 'হরকে ভাগ করতে হবে', 'লবকে গুণ করতে হবে', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4476, '১ টি নার্সারিতে ১৬ জাতের ফুল গাছ আছে । ১/৪ অংশ জাতের ৫ টি করে ও ৩/৪ অংশ জাতের ৪ টি করে গাছ আছে । সর্বমোট কতটি গাছ আছে?', '৪৮ টি', '৬৮ টি', '১৬৪ টি', 'কোনোটিই নয়', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4475, 'তপুর কাছে ৩৬০ টি মার্বেল আছে যার ১/৩ অংশ হচ্ছে কালো । যদি সে তার ভাইকে তার কালো মার্বেলের ১/৩ অংশ দিয়ে দেয় , তবে তপুর কাছে যত মার্বেল থাকবে তার কত শতাংশ কালো মার্বেল?', '২৫.০০', '22.25', '20', 'কোনোটিই নয়', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4474, 'একটি ভগ্নাংশের হর আর লব এর অনুপাত ৩ : ২। লব থেকে ৬ বাদ দিলে যে ভগ্নাংশটি পাওয়া যায় সেটি মূল ভগ্নাংশের ২/৩। লব কত-', '9', '16', '18', '24', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4473, 'কোন প্রকৃত ভগ্নাংশের হর ও লবের অন্তর ২ । হর ও লব উভয় হতে ৩ বিয়োগ করলে যে ভগ্নাংশ পাওয়া যায় তার সঙ্গে ১/৪ যোগ করলে যোগফল ১ হয়। ভগ্নাংশটি কত?', '৯/১১', '১১/১৩', '৭/৯', '১৩/১৫', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4472, 'একটি পাত্র ১/২ অংশ ভর্তি আছে। যদি ৮ গ্যালন সরানো হয় তবে ১/১০ অংশ ভর্তি থাকে । পাত্রটি কত গ্যালন ধারন করে?', '২২ গ্যালন', '১৬ গ্যালন', '২০ গ্যালন', '২৪ গ্যালন', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4471, 'পাঁচ জন বিজ্ঞান ও তিন জন কলা বিভাগের ছাত্রের মধ্যে থেকে চার জনের একটি কমিটি গঠন করতে হবে। যদি প্রত্যেক কমিটিতে অন্তত একজন বিজ্ঞানের ছাত্র থাকে। আবার অন্তত একজন বিজ্ঞান ও একজন কলা বিভাগের ছাত্র থাকে, তাহলে কত বিভিন্নভাবে এ কমিটি গঠন করা যেতে পারে?', '75,68', '70,65', '65,55', '60,45', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4470, '9 ব্যক্তির একটি দল দুইটি যানবহনে ভ্রমন করবে , যার একটিতে সাতজনের বেশি এবং অন্যটিতে চারজনের বেশি ধরে না। দলটি কত প্রকারে ভ্রমন করতে পারবে?', '246', '248', '320', '380', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4469, '6জন ও 4 জন খেলোয়াড়ের দুটি দল থেকে 11 জন খালোয়াড়ের একটি ক্রিকেট টিম গঠন করতে হবে যাতে 6 জনের দল থেকে অন্তর 4 জন খেলোয়াড় ঐ টিমে থেকে । ক্রিকেট টিমটি কত প্রকারে গঠন করা যাবে?', '320', '360', '344', '355', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4468, 'একজন চেয়ারম্যান , দুইজন ভাইস চেয়ারম্যান ও 16 জনের অন্যান্য সদস্য নিয়ে কোনো একটি পরিষদ গঠিত। একজন চেয়ারম্যান ও কেবল একজন ভাইস চেয়ারম্যানকে সর্বদা অন্তর্ভুক্ত রেখে পাঁচজনের কতগুলি বিভিন্ন কমিটি গঠন করা যেতে পারে?', '1120', '1060', '1010', '1020', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4467, 'এক ব্যক্তির 12জন বন্ধু আছে তাদের মধ্যে 4জন আত্মীয় । তিনি কত প্রকারে 7জন বন্ধুকে নিয়ন্ত্রন করতে পারেন যাদের মধ্যে 5জন আত্মীয় থাকবেন?', '280', '290', '332', '336', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4466, 'দু`জন লোকের যথাক্রমে 10 খানা ও 12 খানা পুস্তুক আছে। কত রকমে এগুলিকে বিনিময় করা যেতে পারে যদি একখানার পরিবর্তে একখানা পুস্তক দেওয়া হয়? আবার দুই খানার পরিবর্তে দুই খানা পুস্তক দেওয়া হয়।', '102 , 2800', '112 , 2910', '120 , 2970', '144 , 3200', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4465, '1,2,3,4,5,6,7,8 চিহ্নিত আটটি কাউন্টার থেকে অন্যূন একটি বিজোড় ও একটি জোড় কাউন্টার নিয়ে চারটি কাউন্টার কতগুলি সমাবেশ গঠন করা যেতে পারে?', '60', '62', '72', '68', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4464, 'একটি দশভুজের কৌণিক বিন্দুগুলির সংযোগ রেখার সাহায্যে কতগুলি কর্ণ টানা যেতে পারে?', '32', '35', '36', '40', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4463, '12টি বাহুবিশিষ্টি একটি সমতল বাহুভূজের কৌণিক বিন্দুগুলিকে সংযোগ রেখা দ্বারা যতগুলি ত্রিভুজ গঠন করা যায় , তার সংখ্যা নির্ণয় কর। বাহুভুজের কতগুলি কর্ণ আছে?', '220,54', '210,52', '200,42', '240,64', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4462, ' একটি ত্রিদেশিয় ক্রিকেট খেলায় প্রত্যেকে অন্যদেশের সাথে একবার মাত্র খেলবে । কয়টি খেলা অনুষ্ঠিত হবে?', '7', '5', '3', '4', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4461, 'একটি সমতলে 15টি বিন্দু আছে; এদের 5টি বিন্দু একই সরলরেখার অবস্থিত ; অপর তিনটি বিন্দু সমরেখ নয়। বিন্দুগুলিকে যোগ করে যতগুলির সরলরেখা পাওয়া যায় তা নির্ণয় কর। আবার বিন্দুগুলির শীর্ষ ব্যবহার করে কতগুলি ত্রিভুজ গঠন করা যায়, তাও নির্ণয় কর।', '96445', '105455', '100460', '120560', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4460, ' একজন পরীক্ষার্থী 12টি প্রশ্ন থেকে 6টি প্রশ্নের উত্তর করতে হবে। প্রথম 5টি থেকে ঠিক 4টি প্রশ্ন বাছাই করে কত প্রকারে 6টি প্রশ্ন উত্তর করে যাবে?', '10', '105', '110', '220', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4458, '̔THESIS ̓ শব্দটির অক্ষরগুলি থেকে প্রতিবারে 4টি অক্ষর নিয়ে মোট সমাবেশ সংখ্যা নির্ণয় কর।', '8', '9', '11', '12', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4459, 'যদি ̔CAMBRIDGE ̓ শব্দটির বর্ণগুলি থেকে কেবল 5টি বর্ণ নিয়ে ভিন্ন ভিন্ন শব্দ গঠন করা হয় তবে তাদের কতগুলিতে সবকটি স্বরবর্ণ বর্তমান থাকবে?', '1600', '1480', '1840', '1800', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4456, '20সদস্যবিশিষ্ট একটি ফুটবল দল থেকে একজন অধিনায়ক ও একজন সহ-অধিনায়ক কতভাবে নির্বাচন করা যাবে?', '380', '190', '20', '760', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4457, '12টি পুস্তক থেকে 5টি কত প্রকারে বাছাই করা যায় যেখানে 2টি পুস্তক সর্বদাই অন্তর্ভুক্ত থাকবে?', '252', '792', '224', '120', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4455, '14জন খেলোয়াড়ের মধ্যে থেকে নির্দিষ্ট একজন অধিনায়কসহ 11জনের একটি ক্রিকেট দল কতভাবে বাছাই করে যাবে?', '728', '364', '286', '1001', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4454, 'একটি নৌকায় 3 জন লোক উঠতে পারে, নৌকাটি দ্বারা 4জন লোক কত প্রকারে উঠে নদী পার হতে পারে?', '1', '2', '3', '4', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4453, 'একটি নৌকার নাবিকদল 4জন লোক নিয়ে গঠিত, যাদের মধ্যে তিনজন কেবল এক পাশে দাঁড় টানতে পারে এবং 3জন কেবল অপর পাশে দাঁড় টানতে পারে। নাবিকদিগকে মোট কত প্রকারে সাজানো যেতে পারে?', '1728', '3456', '3200', '1840', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4452, '12 টি বিভিন্ন ব্যঞ্জনবর্ণ ও 5টি বিভিন্ন স্বরবর্ণ থেকে 3টি ব্যঞ্জনবর্ণ ও 2টি স্বরবর্ণ সমন্বয়ে গঠিত কতগুলি ভিন্ন ভিন্ন শব্দ গঠন করে যাবে?', '246000', '264000', '265000', '324000', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4450, 'nCr : nCr+1: nCr+2=1:2:3 দেওয়া আছে। n এবং r- এর মান নির্ণয় কর।', '16,4', '14,4', '15,3', '14,2', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4451, '12C4 + 12C3=?', '24C7', '13C5', '13C4', '14C4', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4449, '4জন মহিলা ও 6 জন পুরুষের মধ্যে থেকে 4 সদস্যবিশিষ্ট একটি উপ-কমিটি গঠন করতে হবে যাতে 1 জন নির্দিষ্ট পুরুষ সর্বদাই উপস্থিত থাকেন। কত প্রকার ঐ কমিটি গঠন করা যেতে পারে?', '210', '304', '84', '120', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4448, '16 বাহু বিশিষ্ট একটি সামতলিক ক্ষেত্রের কৌণিক বিন্দুর সংযোগ রেখা দ্বারা কতগুলি বিভিন্ন ত্রিভুজ গঠন করা যেতে পারে? ক্ষেত্রটির কতগুলি কর্ণ আছে?', '540102', '620120', '420100', '560104', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4447, 'একজন পরিক্ষারথীকে, প্রতি গ্রুপে 5টি প্রশ্ন আছে এমন দুটি গ্রুপে বিভক্ত 10টি প্রশ্ন থেকে, 6টি প্রশ্নের উত্তর দিতে হবে এবং তাকে কোন গ্রুপে থেকে 4টি বেশি উত্তর দিতে হবে না। সে কত প্রকারে প্রশ্নগুলি বাছাই করতে পারে?', '150', '200', '180', '160', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4446, 'কোনো পরীক্ষায় কৃতকার্য হতে হলে 6টি বিষিয়ে প্রতিটিতে ন্যূনতম নম্বর পেতে হয় । একজন ছাত্র কত রকমে অকৃতকার্য হতে পারে।', '52', '60', '62', '63', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4445, 'টেলিফোন ডায়েল 0হতে 9 পর্যন্ত লেখা থাকে । যদি কক্সবাজার শহরের টেলিফোনগুলি 5 অঙ্কবিশিষ্ট হয়, তবে ঐ শহরে কত টেলিফোন সংযোগ দেয়া যাবে? টেলিফোন ডায়ালে মোট অঙ্কের সংখ্যা= 10', '100000', '90000', '85000', '80000', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4443, 'প্রতিটি বিকল্পসহ 4টি প্রশ্ন থেকে একজন পরীক্ষার্থী একটি অথবা একধিক প্রশ্ন কত উপায়ে বাছাই করতে পারে?', '38-1', '38', '37', '37-1', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4444, 'কত প্রকারে 12 টি পুরস্কার সমান তিনটি গ্রুপে ভাগ করা যেতে পারে?', '12!/4! 3!', '12!/(4!)2 3!', '12!/(4!)3 3!', '12!/(4!)4 3!', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4442, 'এক ব্যক্তির 6জন বন্ধু আছে । সে কত প্রকারে এক বা একাধিক বন্ধুকে নিমন্ত্রণ করতে পারে? ', '26', '26 -1', '26-1', '25', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4441, '̔ALGEBRA ̓ শব্দটির বর্ণগুলি থেকে প্রতিবারে 3টি করে নিয়ে কতগুলি ভিন্ন ভিন্ন শব্দ গঠন করে যায়?', '130', '132', '135', '136', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4439, '24টি বিভিন্ন বস্তুকে কত রকমে 3টি গ্রুপে ভাগ করা যায়, যাতে প্রতিটি গ্রুপে ৪টি করে বস্তু থাকবে।', '24!/(8!)3', '24!/(8!)3 3!', '24!/(8!)2 3!', '24!/(3!)3 8!', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4440, 'কত প্রকার এ 52 খানা তাস 4 ব্যক্তির মধ্যে সমানভাবে ভাগ করা যেতে পারে?', '52!/(13!)2', '52!/(12!)4', '52!/(12!)2', '52!/(13!)4', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4438, '3টি শূন্য পদের জন্য 10টি প্রার্থী আছে এবং একজন নির্বাচক শূন্য পদ সংখ্যার বেশি নয়, এমন যেকোনো সংখ্যক প্রার্থীর জন্য ভোট দিতে পারেন। কত প্রকারে একজন নির্বাচক ভোট দিতে পারেন?', '175', '120', '165', '160', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4436, '̔DEGREE ̓ শব্দটি অক্ষরগুলি থেকে যেকোনো 4টি অক্ষর প্রত্যেক বার নিয়ে কত প্রকারে বাছাই করে যেতে পারে?', '6', '7', '8', '9', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4437, '10টি জিনিসের মধ্যে 2টি এক জাতীয় এবং বাকীগুলো ভিন্ন ভিন্ন জিনিস । ঐ জিবিসগুলা থেকে প্রতিবারে 5 টি জিনিস কত প্রকারে বাছাই করে যায়?', '192', '172', '190', '182', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4435, '7টি বিভিন্ন ব্যঞ্জনবর্ণ ও 3টি বিভিন্ন স্বরবর্ণ থেকে দুইটি ব্যঞ্জনবর্ণ ও একটি স্বরবর্ণ নিয়ে কতগুলি শব্দ গঠন করা যায়,যাতে স্বরবর্ণটি ব্যঞ্জনবর্ণের মাঝখানে থাকবে?', '63', '124', '126', '72', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4433, '2nCr=2nCr+2 হলে র এর মান কত?', '2n-1', 'n', 'n+1', 'n-1', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4434, '17টি বিভিন্ন ব্যঞ্জনবর্ণ ও 5টি বিভিন্ন স্বরবর্ণ থেকে 3টি ব্যঞ্জনবর্ণ ও 2টি স্বরবর্ণ সমন্বয়ে গঠিত কতগুলি ভিন্ন শব্দ গঠন করে যাবে ?', '680000', '816000', '102400', '340000', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4432, 'P(A) = 1/3 , P(B) = 3/4 , A ও B স্বাধীন হলে P(A U B ) নির্ণয় কত ?', '3/4', '5/6', '7/6', '4/3', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4431, 'একটি ব্যাগে 1 টি টাকা ও 3 টি পয়সা , , দ্বিতীয় ব্যাগে 2 টি টাকা ও 4 টি পয়সা এবং তৃতীয় ব্যাগে 3 টি টাকা ও 1 টি পয়সা আছে । লটারির মাধমে একটি ব্যাগ বাছাই করে সম্পূর্ণ নিরপেক্ষভাবে একটি মুদ্রা উত্তোলন করলে সেটি টাকা হওয়ার সম্ভাবনা নির্ণয় কর । ', '2019-04-09 00:00:00', '1/9', '5/9', '2/9', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4430, 'একটি বাক্সে 5 টি লাল ও 4 টি সাদা ক্রিকেট বল এবং অপর একটি বাক্সে 3 টি লাল ও 6 টি সাদা ক্রিকেট বল আছে । প্রত্যেক বাক্স হতে একটি করে বল উঠানো হলে দুইটি বলের মধ্যে কমপক্ষে একটি লাল হওয়ার সম্ভাব্যতা কত ?', '(13/27)', '(19/27)', '(10/27)', '(4/27)', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4429, 'একটি সুষম মুদ্রা পরপর 3 বার টস করা হল । প্রতিটি টসেই প্রথম হেড পাওয়ার শর্তে 2 বা স্বাভাবিক হেড পাওয়ার সম্ভাবনা কত ? কোন শর্ত আরোপ করা না হলে 2 বা ততোধিক হেড পাওয়ার সম্ভাবনা কত ?', '2/3 , 1/3', '1/4 , 1/2 ', '3/4 , 1/2', '3/4 , 1/5', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4428, 'একটি মুদ্রাকে তিনবার নিক্ষেপ করা হল । সবচেয়ে কম সংখ্যক বার T আসার সম্ভাবনা কত ?', '0', '1/2', '3/8', '2', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4427, 'একটি মুদ্রাকে দুইবার নিক্ষেপ করলে উভয়পক্ষের হেড পাওয়ার সম্ভাবনা কত ?', '1/2', '1/5', '1/3', '1/4', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4426, 'যদি একটি মুদ্রা টস করা হয় , তবে \' HEAD \' এর সম্ভাব্যতা কত ?', '0.5', '1', '0.25', '2', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4425, 'একটি সাধারণ বর্ষে ( 365 দিনে ) এবং অধিবর্ষে ( 366 দিনে ) 53 টি শুক্রবার থাকার সম্ভাব্যতা নির্ণয় কর । ', '3/7 , 1/7', '3/7 , 2/7 ', '2 / 7 , 1/6', '1/7 , 2/7', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4423, ' চাকরি পাওয়ার সম্ভাবনা 4/5 হলে চাকরি না পাওয়ার সম্ভাবনা কত ?', '1/5', '2/5', '3/5', '4/5', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4424, 'আবহাওয়া অফিসের রিপোর্ট অনুযায়ী - 2015 সালের জুলাই মাসের দ্বিতীয় সপ্তাহে বৃষ্টি হয়েছে মোট 5 দিন । ঐ সপ্তাহে বুধবার বৃষ্টি না হওয়ার সম্ভাবনা কত ?', '1', '5/7', '2019-02-07 00:00:00', '1/2', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4422, 'একটি বাক্সে বিভিন্ন আকারের ৬ টি সাদা,৭ টি লাল এবং ৯ টি কাল বল আছে।এলোমেলোভাবে একটি বল তুলে নেওয়া হল । বলটি লাল বা সাদা হওয়ার সম্ভাব্যতা কত ?', '11/22', '9/22', '13/22', '21/22', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4421, 'একটি ছক্কা নিক্ষেপ করলে জোড় সংখ্যা পাবার সম্ভাবনা কত?', '0.4', '0.5', '0.3', '0.2', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4420, 'প্রান্তিক সংখ্যাদয়সহ 50 ও 60 এর মধ্যবর্তী সংখ্যাগুলো হতে নিরপেক্ষভাবে যেকোনো একটি সংখ্যা বাছাই করলে সেটা মৌলিক হওয়ার সম্ভাব্যতা আবার 8 এর গুণিতক হওয়ার সম্ভাব্যতা নির্ণয় কর । ', '1/11 , 2/11', '2/11, 3/11', '3/11 , 2/11', '2/11 , 1/11', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4419, 'A ও B এর একটি অঙ্কের সমাধান করতে পারার সম্ভাব্যতা যথাক্রমে 1/3 এবং 1/4 , তারা একত্রে অঙ্কটি সমাধানের চেষ্টা করলে অঙ্কটির সমাধান নির্ণয়ের সম্ভাব্যতা কত ?', '1/2', '7/12', '3/4', '2/3', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4418, 'একটি বাক্সে 5 টি ও 10 টি সাদা মার্বেল আছে । একটি বালক যেমন খুশি টানলে প্রতিবারের দুটি ভিন্ন রঙের মার্বেল পাওয়ার সম্ভাব্যতা কত ?', '2/15', '1/50', '3/15', '10/21', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4417, 'কোনো জরিপে দেখা গেল 70 % লোক ইত্তেফাক পড়ে , 60% লোক সংবাদ পড়ে এবং 40 % লোক উভয় পত্রিকাই পড়ে । নিরপেক্ষভাবে বাছাই করলে একজন লোকের ইত্তেফাক বা সংবাদ পড়ার সম্ভাব্যতা কত ?', '4/10', '9/10', '8/10', '1/10', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4416, 'একটি নিরপেক্ষ ছক্কা নিক্ষেপ করা হলো , 4 আসার বিজোড় সংখ্যা আসার সম্ভাবনা কত ?', '1/6 , 1/2', '1/2 , 1/6', '2/3 , 1/6', '1/3 , 2/3', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4415, 'একটি ছক্কাকে একবার নিক্ষেপ করা হলে , 2 থেকে বড় সংখ্যা পাবার সম্ভাব্না কত ?', '1/2', '1/3', '5/6', '2/3', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4414, 'একটি থলেতে একই ধরণের 6 টি কালো , 5 টি লাল , 8 টি সাদা মার্বেল আছে । থলে হতে একটি মার্বেল দৈব ভাবে নির্বাচন করা হলো , নির্বাচিত মার্বেলটি লাল , কালো , সাদা হওয়ার সম্ভাবনা কত ?', '6/19,8/19,5/19', '5/19,6/19,8/19', '8/19, 5/19 , 6/19', '3/19, 5/19 ,6/19', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4413, 'একটি থলিতে 6 টি নীল বল , 8 টি সাদা বল এবং 10 টি কালো বল আছে । দৈব ভাবে একটি বল তুললে সেটি সাদা না হবার সম্ভাবনা কত ?', '2/3', '1/3', '3/4', '1/4', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4412, 'দুটি ছক্কা একত্রে নিক্ষেপ করা হলে দুটি ছয় উঠার সম্ভাব্যতা নির্ণয় কর । ', '1/6', '2/3', '1/36', '1/18', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4411, ' কোনো নির্বাচনে চারজন প্রার্থী A , B , C , D এর জয়ের সম্ভাব্যতা যথাক্রমে 0.4 , 0.3 , 0.2 , 0.1 নির্বাচনের পূর্ব মুহূর্তে C তার প্রার্থিতা প্রত্যাহার করল । এখন অবশিষ্ট তিনজন প্রার্থীর জয়ের সম্ভাব্যতা নির্ণয় কর । ', '0.5 , 0.375 , 0.125', '0.6 , 0.875 , 0.8', '0.3 , 0.325 , 1.25', '0.2 , 0.355 , 0.135 ', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4410, '1 মৌলিক সংখ্যা নয় মনে করে 50 অপেক্ষা ক্ষুদ্রতর মৌলিক সংখ্যাগুলো হতে নিরপেক্ষভাবে যেকোনো একটিকে বাছাই করলে তার ( I ) 25 অপক্ষা ক্ষুদ্রতর হওয়ার ( ii ) 2 এর শক্তি বিশিষ্ট ( iii ) বর্গ 100 অপেক্ষা বৃহত্তর হওয়ার সম্ভাব্যতা নির্ণয় কর । ', '1/5,2/15,13/15', '2/5 , 2/15 , 12/15', '3/5 , 1/15 , 11/15', '1/5 , 3/15 , 10/15', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4409, 'কোনো বিদ্যালয় হতে জুনিয়র বৃত্তি পরীক্ষায় 10 জন অংশগ্রহণ করে । সকলেরই বৃত্তি পাওয়া বা না পাওয়ার সম্ভাবনা সমান । ঐ বিদ্যালয় হতে কেবলমাত্র তিনজনের বৃত্তি পাওয়ার সম্ভাব্যতা নির্ণয় কর ।', '1/128', '10/128', '13/128', '15/128', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4408, '30 থেকে 40 পর্যন্ত সংখ্যা থেকে যেকোনো একটিকে ইচ্ছেমত নিলে সে সংখ্যাটি মৌলিক অথবা 5 এর গুণিতক হওয়ার সম্ভাবনা কত ?', '5/11', '1/2', '3/5', '6/11', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4407, ' একটা নিরপেক্ষ ছক্কা নিক্ষেপে জোড় সংখ্যা আসার সম্ভাবনা কত ?', '1/6', '2/3', '3/5', '1/2', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4406, '52 খানার এক প্যাকেট তাস হতে হরতনের রাজা (K) সরিয়ে রাখা হল । অবশিষ্ট তাহগুলো ভাল করে তাসানো হল। নিরেপক্ষভাবে একটি তাস টানলে সেটা হরতন হওয়ার সম্ভাব্যতা নির্ণয় কর । ', '1/13', '4/17', '3/13', '4/13', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4405, '52 খানা তাদের প্যাকেটে 4 টি টেক্কা আছে । নিরপেক্ষভাবে যে কোন একখানা তাস টেনে টেক্কা না পাওয়ার সম্ভাব্যতা কত ?', '2019-12-13 00:00:00', '1/13', '14/13', '2/13', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4404, ' ALLAHBAD \' শব্দটির নয়টি বর্ণের প্রত্যেকটিকে প্রতি সাজানো ব্যবস্থায় একবার মাত্র নিয়ে যত প্রকার বিন্যাস সংখ্যা হতে পারে তা নির্ণয় কর । এই বিন্যাসসমূহের কতগুলিতে A চারটি থাকবে এবং এদের কতগুলি জোড় স্থান দখল করবে ?', '7660 , 350 , 50 ', '7560 , 420 , 24', '7560 , 360 , 60', '7570 , 370 , 32', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4403, ' SECOND \' শব্দটির অক্ষরগুলি থেকে 1 টি স্বরবর্ণ ও 2 টি ব্যানজনবর্ণ নিয়ে কতকগুলি শব্দ গঠন করা যেতে পারে , যাতে স্বরবর্ণ সর্বদা মধ্যম স্থান দখল করবে ?', '12', '24', '22', '36', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4402, 'একজন পরীক্ষার্থীর বাংলায় ফেল করার সম্ভাব্যতা 1/5 , বাংলা এবং ইংরেজি দুইটিতে পাসের সম্ভাব্যতা 3/4 এবং দুইটির যে কোন একটিতে পাসের সম্ভাব্যতা 7/8 হলে , তার কেবল ইংরেজিতে পাসের সম্ভাব্যতা কত ?', '23/40', '25/40', '33/40', '31/40', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4401, '1 হতে 200 পর্যন্ত স্বাভাবিক সংখ্যাগুলোর মধ্য হতে নিরপেক্ষভাবে যেকোনো একটিকে বাছাই করলে সেই সংখ্যাটি 3 অথবা 7 এর গুণিতক হওয়ার সম্ভাব্যতা নির্ণয় কর । ', '9/200', '17/40', '33/100', '7/50', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4400, 'EQUATION শব্দটির সব অক্ষরগুলি ব্যাবহার করে কতটি শব্দ গঠন করা যেতে পারে ?', '41320', '40230', '40320', '41230', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4399, 'PSC শব্দটির সব অক্ষরগুলিকে একত্রে নিয়ে কত প্রকারে সাজানো যায় ?', '3', '1', '6', '9', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4398, 'FREEDOM \' শব্দটির সব অক্ষরগুলিকে একত্রে নিয়ে কত প্রকারে সাজানো যায় ?', '7!/2!', '7!/5!', '5!/2!', '7!/2!5!', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4397, 'MATHEMATICS শব্দটির অক্ষরগুলিকে কত প্রকারে সাজানো যায় ?', '6004989', '4960089', '4989500', '8949600', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4396, ' RAJSHAHI \' শব্দটির অক্ষরগুলির একত্রে বিন্যাস সংখ্যা BARISAL শব্দটির অক্ষরগুলির একত্রে বিন্যাস সংখ্যার কতগুণ?', '2', '3', '4', '5', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4395, 'CALCUTTA শব্দটির বর্ণগুলোকে একত্রে নিয়র বিন্যাস সংখ্যা AMERICA শব্দটির বর্ণগুলো একত্রে নিয়ে বিন্যাস সংখ্যা কত গুণ ?', '3', '2', '4', '5', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4394, ' PROPORTION \' শব্দটির সবগুলি বর্ণ একবারে নিয়ে কত প্রকারে সাজানো যায় ?', '10!/2! 2! 3!', '10!/2! 2! 2!', '10!/2! 3! 4!', '10!/2! 3! 5!', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4393, ' পরীক্ষায় \' ক \' এর প্রাপ্ত নম্বর যথাক্রমে ৭০ , ৮৫ ও ৭৫ । চতুর্থ পরীক্ষায় তাকে কত নম্বর পেতে হবে যেন তার গড় প্রাপ্ত নম্বর ৮০ হয় ?', '78', '82', '88', '90', 'd', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4391, 'x ও y এর মানের গড় ৯ এবং z=১২ হলে , x,y,z এর মানের গড় কত ?', '6', '9', '10', '12', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4392, 'x ও y এর মানের গড় ১০ এবং z=১৩ হলে , x,y,z এর মানের গড় কত ?', '11', '9', '18', '12', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4390, 'কোন একটি নির্দিষ্ট এলাকায় জরীপে দেখা গেল 65 জন প্রথম আলো , 40 জন ভোরের কাগজ , 45 জন জনকণ্ঠ , 52 জন যুগান্তর পত্রিকা পড়ে । এদের মধ্যে হতে একজনের দৈব ভাবে নির্বাচন করলে তিনি যুগান্তর পত্রিকা পড়েন এর সম্ভাবনা কত ? আবার তিনি প্রথমা আলো পড়েন না এর সম্ভাবনা কত ?', '52/202 , 137/202 ', '45/202 , 137/202', '52/202 , 63/202', '52/202 , 40/202', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4389, 'কোন একটি স্বাস্থ্য কেন্দ্রের রিপোর্ট অনুযায়ী কম ওজনের 155 শিশু , স্বাভাবিক ওজনের 386 শিশু এবং বেশি ওজনের 98 টি শিশু জন্ম নেয় । এখান হতে একটি শিশু দৈব ভাবে নির্বাচিত শিশুটি বেশি ওজনের হবে এর সম্ভাবনা কত ?', '98/ 541', '98/639', '98/649', '98/484', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4388, '7 টি সবুজ , 4 টি নীল এবং 2 টি লাল কাউন্টার এক সারিতে কত রকমে সাজানো যেতে পারে ? এদের কতগুলিতে লাল কাউন্টার দুইটি একত্রে থাকবে ?', '24740 , 3600', '23650 , 4800', '25740 , 3960', '25390 , 3820', 'c', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4387, '9 টি বলের 7 টি বল লাল , 2 টি সাদা । এদের উপর কোন বিধিনিষেধ আরোপ না করে এবং সাদা বল দুইটি পাশাপাশি না রেখে বল্গুলিকে কত প্রকারে এক সারিতে সাজানো যায় , তা নির্ণয় কর ।', '36 , 28', '72 , 24', '62 , 32', '48 , 12', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4385, '5 , 9 , 1 , 4 অঙ্কগুলি দ্বারা 5000 এর চেয়ে বড় কতগুলো সংখ্যা তৈরি করা যায় ?', '12 টি', '8 টি', '18 টি ', '16 টি', 'a', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4386, 'গণিতের 5 খানা , পদার্থবিজ্ঞানে 3 খানা ও রসায়নবিজ্ঞানের 2 খানা পুস্তক কে একটি করে কত প্রকারে সাজানো যেতে পারে?', '1440', '8640', '4320', '7200', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4384, '1, 2, 3, 4 অঙ্কগুলি দ্বারা 3000 অপেক্ষা বৃহত্তর কয়টি সংখ্যা গঠন করা যাবে ?', '8 টি', '12 টি', '16 টি', '18 টি', 'b', 3, 1, '2019-02-16 05:45:47', '2019-02-16 05:45:47'),
(4382, '222334 দ্বারা ছয় অঙ্কের কতগুলি বিভিন্ন সংখ্যা তৈরি করা যেতে পারে ? এদের কতগুলি 400000 অপেক্ষা বড় হবে ?', '60 , 10', '64 , 12', '120 , 110', '110, 60', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4383, '1, 2, 3, 4, 5 ,6 অঙ্ক গুলির প্রত্যেকটিকে প্রতি সংখ্যায় একবার মাত্র নিয়ে চার অঙ্কের কতগুলি বিভিন্ন সংখ্যা গঠন করা যেতে পারে ?', '720', '740', '360', '350', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4381, '3,4,5,6,7,8 অঙ্কগুলির একটিকেও পুনঃরাবৃত্তি না করে 5000 এবং 6000 মধ্যবর্তী কতগুলি সংখ্যা গঠন করা যেতে পারে?', '120', '144', '64', '60', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4376, '16 C 13 এর মান কত ?', '540', '420', '360', '560', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4377, '100 C 98 এর মান কত ?', '4950', '4820', '9900', '9945', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4378, 'n C r + n C r-1 এর সঠিক মান কোনটি ?', 'nC r-1 ', 'n+1 C r ', 'n+1 C r-1 ', 'n+1 C r+1 ', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4379, 'r! nCr = ?', 'n!/(n-r)!', 'n!/r', 'n!/r!', '(n-1)!/r!', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4380, 'n C 7 = nC5 হলে n = কত ?', '16', '13', '12', '11', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4375, 'a , b , c ,d , e , f অক্ষরগুলি থেকে তিনটি অক্ষর দ্বারা গঠিত বিন্যাসের সংখ্যা নির্ণয় কর , যেখানে প্রতিটি বিন্যাসে কমপক্ষে একটি স্বরবর্ণ বর্তমান থাকবে ?', '144', '96', '92', '120', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4374, 'A , B , C বর্ণের 3 টি করে বর্ণ নিয়ে কত প্রকারে বিন্যাস করা যায় ?', '3 উপায়ে', '4 উপায়ে', '5 উপায়ে', '6 উপায়ে', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4373, '10 টি বর্ণ আছে যাদের কিছু সংখ্যক একজাতীয় এবং বাকিগুলি ভিন্ন ভিন্ন ; যদি তাদের সবগুলিকে একত্রে নিয়ে 30240 টি শব্দ গঠন করা যায় , তবে কতগুলি বর্ণ এক জাতীয় ?', '3', '5', '4', '6', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46');
INSERT INTO `questions` (`id`, `question`, `opt_A`, `opt_B`, `opt_C`, `opt_D`, `correct_opt`, `catagory_id`, `user_id`, `created_at`, `updated_at`) VALUES
(4372, ' POSTAGE \' শব্দটির অক্ষরগুলিকে কত প্রকারে সাজানো যেতে পারে যাতে স্বরবর্ণগুলি জোড় স্থান দখল করবে ? কতগুলিতে বাঞ্জনবরনগুলি একত্রে থাকবে ?', '144, 576', '145 , 560 ', '140 , 844', '120 , 720 ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4371, 'বাঞ্জন বর্ণগুলিকে বিজোড় স্থানে রেখে \' EQUATION \' শব্দটির অক্ষরগুলিকে কত প্রকারে সাজানো যায় নির্ণয় কর ।', '2440', '2880', '2800', '2600', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4369, 'SCIENCE শব্দটির স্বরবর্ণগুলিকে একত্রে রেখে সব কয়টি বর্ণকে সম্ভাব্য যত উপায়ে সাজানো যায় তার সংখ্যা - ', '60 বার', '120 বার', '180 বার', '760 বার', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4370, 'প্রত্যেক অংককে প্রত্যেক সংখ্যায় একবার মাত্র ব্যবহার করে 1 , 2 , 3 , 4 , 5, 6, 7, 8,9 অঙ্কগুলি দ্বারা যতগুলি বিভিন্ন সংখ্যা গঠন করা যাবে , যাদের প্রথমে এবং শেষে জোড় অঙ্ক থাকবে , তা নির্ণয় কর ।', '60480', '5040', '5060', '60460', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4368, 'PARALLEL শব্দটির অক্ষরগুলির সবগুলি একত্রে নিয়ে কত প্রকারে সাজানো যায় তা বের কর এবং স্বরবর্ণগুলিকে পৃথক না রেখে অক্ষরগুলিকে কত প্রকারে সাজানো যায় তাও বের কর ।', '3260 , 320 ', '3360 , 360 ', '4320 , 320', '4360 , 120', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4367, 'স্বরবর্ণগুলিকে পাশাপাশি না রেখে \' TRIANGLE \' শব্দটির অক্ষরগুলি কত রকমে সাজানো যায় নির্ণয় কর।', '3600', '4000', '4320', '4200', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4366, ' IDENTITY \' শব্দটির বর্ণগুলি কত প্রকারে সাজানো যাবে ? কতগুলির প্রথমে I এবং T থাকবে ? কতগুলিতে I দুইটি এবং T দুইটি একত্রে থাকবে ?', '10040 , 650 , 620', '10080 , 720 , 720', '11040 , 710 , 710', '11080 , 740 , 740', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4365, 'PERMUTATION শব্দটির বর্ণগুলির কোন স্বরবর্ণের অবস্থান পরিবর্তন না করে কত রকমে পুনবিন্নাস করা যেতে পারে ?', '359', '360', '361', '350', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4364, ' ENGINEERING \' শব্দটির সবকটি বর্ণকে কত বিভিন্ন রকমে সাজানো যায় নির্ণয় কর । ', '11!/ 3! 2! 2! 2! ', '11!/4! 3! 2! 2! ', '11!/ 3! 3! 2! 2! ', '11!/ 3! 3! 3! 2! ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4362, 'nCr = কত ?', 'n!/r!(n-r)!', 'nPr / (r-1)!', '(r-1)! nPr', 'n!/(n-r)!', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4363, 'AMERICA শব্দটির বর্ণগুলো থেকে প্রতিবারে 3 টি বর্ণ নিয়ে গঠিত ভিন্ন ভিন্ন শব্দ সংখ্যা কত হবে ?', '130', '135', '140', '145', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4361, ' একটি প্রফেসরের পদের জন্য 3 জন প্রার্থী এবং 5 জন লোকের ভোটে একজন নির্বাচিত হবে , কত প্রকারে ভোট দেয়া যেতে পারে ?', '120', '140', '220', '243', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4359, ' একটি তালার 4টি রিং এর প্রত্যেকটিতে 5 টি করে অক্ষর আছে । 4 টি অক্ষরের একটি মাত্র বিন্যাসের জন্য তালাটি খোলা গেলে কতগুলি বিন্যাসের জন্য তালাটি খোলা যাবে না ?', '320', '321', '625', '624', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4360, ' একজন সংকেত দাতার ছয়টি পতাকা আছে , যাদের একটি সাদা , দুইটি সবুজ এবং তিনটি লাল । তিনি এক সঙ্গে 6 টি পতাকা ব্যবহার করে , আবার এক সঙ্গে 5 টি পতাকা ব্যবহার করে কয়টি বিভিন্ন সংকেত নিতে পারবে ?', '60 , 60', '60 , 50', '50 , 60', '50 , 50', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4358, ' একটি বালকের 11টি বিভিন্ন বস্তু আছে , যার মধ্যে 5টি কালো এবং 6টি সাদা । একটি কালো বস্তু মাঝখানে রেখে সে তিনটি বস্তু এক সারিতে কত প্রকারে সাজাতে পারে ?', '360', '450', '460', '720', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4357, '10 টি বস্তুর একবারে 5 টি নিয়ে কতগুলি বিন্যাসের মধ্যে 2টি বিশেষ বস্তু সর্বদা অন্তর্ভুক্ত থাকবে ?', '6720', '5040', '6420', '5060', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4356, ' একটি লাইব্রেরিতে একখানা পুস্তকের ৪ কপি , দুইখানা পুস্তকের প্রত্যেকের 3 কপি,তিনখানা পুস্তকের প্রত্তেকের ৫ কপি এবং দশখানা পুস্তকের 1 কপি করে আছে । সবগুলি একত্র নিয়ে কত প্রকারে সাজানো যেতে পারে ?', ' 39!/8! 3! 5!', '39!/8! 3! (5!)3', '39!/8! (3!)² (5!)³', '39!/8! (3!)² (5!)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4355, 'ইংরেজি বর্ণমালার ছাব্বিশটি বর্ণ থেকে কত প্রকারে ৫ টি বিভিন্ন বর্ণ সমন্বিত একটি শব্দ গঠন করা যায় , যাদের মধ্যে a এবং l অক্ষর দুটি অবশ্যই থাকবে ?', '1728', '242880', '3640', '244372', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4354, '1 , 2 , 3 , 4 , 5 অঙ্কগুলির প্রত্যেকটিতে যেকোনো সংখ্যক বার নিয়ে তিন অঙ্কবিশিস্ট কতগুলি সংখ্যা গঠন করা যেতে পারে ? এদের কতগুলিতে দুই বা ততোধিক সমান অঙ্ক থাকবে ?', '120 , 48', '144 , 24', '125, 65', '130, 36', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4353, '3 , 4 , 5 , 3 , 4 , 5 , 6 অঙ্কগুলির বিজোড় অঙ্কগুলি সর্বদাই বিজোড় স্থানে রেখে সাত অঙ্কের কতগুলি সংখ্যা গঠন করা যেতে পারে ?', '18', '14', '12', '6', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4352, 'আটটি বস্তূকে এক সারিতে কত রকমে সাজানো যেতে পারে,যাতে দুটি বিশেষ বস্তু একত্রে থাকে এবং ২ টি বস্তু একত্রে না থাকে।', '10080 , 30240', '5040 , 40320', '10024 , 30260', '5060 , 40310', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4351, 'দুইজন কলা বিভাগের ছাত্রকে একত্রে না বসিয়ে 5 জন বিজ্ঞানের ছাত্র ও 5জন কলা বিভাগের ছাত্র কত রকমে একটি গোলটেবিলের পাশে আসন নিতে পারে ?', '2460', '2880', '3200', '3240', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4349, 'তিনটি পুরস্কারের একটি সদাচারের জন্য , একটি ক্রীড়ার জন্য এবং একটি সাধারণ উন্নতির জন্য । 10 জন বালকের মধ্যে এগুলি কত রকমে বিতরণ করা যেতে পারে ?', '0', '1000', '24', '2400', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4350, 'দুইখানা বিশেষ পুস্তক একত্রে না রেখে n সংখ্যক বিভিন্ন পুস্তক যত রকমে সাজানো যায় তার সংখ্যা - ', '2(n-1)!', 'n(n-1)!', 'n(n-2)!', '(n-2)(n-1)!', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4348, 'তিন সদস্যদের একটি বিতর্কদলের সদস্যদের গড় বয়স ২৪ বছর । যদি কোন সদস্যের বয়স ২১ বছরের নিচে না হয় তবে তাদের কোন একজনের বয়স সরবচ্চ কত হতে পারে ?', '২৫ বছর', '২৮ বছর', '৩০ বছর', '৩২ বছর ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4347, '৬ জন পুরুষ , ৮ জন স্ত্রীলোক এবং ১ জন বালকের বয়সের গড় ৩৫ বছর । পুরুষদের বয়সের গড় ৪০ বছর এবং স্ত্রীলোকদের বয়সের গড় ৩৪ বছর । বালকের বয়স কত ?', '১৩ বছর', '১৪ বছর', '১৫ বছর', '১৬ বছর', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4346, 'কোন শ্রেণীতে ২০ জন ছাত্রীর বয়সের গড় ১২ বছর । ৪ জন নতুন ছাত্রী ভর্তি হওয়াতে বয়সের গড় ৪ মাস কমে গেল । নতুন ৪ জন ছাত্রীর বয়সের গড় কত ?', '১১ বছর', '১০ বছর', '৯ বছর', '৮ বছর', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4345, 'M সংখ্যক সংখ্যার গড় A এবং N সংখ্যক সংখ্যার গড় B হলে সবগুলো সংখ্যার গড় কত ?', '(AM+BN)/2', '(a+b)/2', '(AM+BN)/M+N', '(AM+BN)/A+B', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4344, 'কোন পরীক্ষায় ক এর প্রাপ্ত নম্বর যথাক্রমে ৮২ , ৮৫ ও ৯২ । চতুর্থ পরীক্ষায় তাতে কত নম্বর পেতে হবে , যেন তার গড় প্রাপ্ত নম্বর ৮৭ হয় ?', '91', '88', '89', '86', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4343, '১১ জন লোকের গড় ওজন ৭০ কেজি । ৯০ কেজি ওজনের একজন লোক চলে গেলে বাকিদের গড় ওজন কত হয় ?', '৬৮ কেজি', '৭২ কেজি', '৮০ কেজি', '৬২ কেজি', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4341, 'If the average ( arthmetic mean ) of 5,6, 7 and w is 8, what is the value of w ?', '8', '14', '12', '1', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4342, '৭ টি সংখ্যার গড় ৪০ । এর সাথে ৩ টি সংখ্যা যোগ করা হলো । সংখ্যা ৩ টির গড় ২১ । সমষ্টিগতভাবে ১০ টি সংখ্যার গড় কত ?', '37.3', '33.3', '34.3', '32.3', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4339, '৬, ৮, ১০ এর গাণিতিক গড় ৭ , ৯ এবং কোন সংখ্যার গাণিতিক গড়ের সমান ?', '5', '8', '6', '10', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4340, '৫ , ৭ , ২৪ এর গাণিতিক গড় ; ৭ , ৯ এবং কোন সংখ্যার গাণিতিক গড়ের সমান ?', '20', '16', '14', '24', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4337, 'এক - দশমাংশ , এক - শতাংশ এবং এক - সহস্রাংশ এর গড় হবে - ', '0.003', '0.01', '0.037', '0.111', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4338, '৪ , ৬ , ৭ এবং x এর গড় মান ৫.৫ হলে x - এর মান কত ?', '5.5', '6', '4.5', '5', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4334, 'x ও y এর মানের গড় ৯ এবং z = ১২ হলে , x , y, z এর মানের গড় কত ?', '6', '9', '10', '12', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4335, 'x ও y এর মানের গড় ১০ এবং z = ১৩ হলে , x , y, z এর মানের গড় কত ?', '11', '9', '18', '12', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4336, 'পরিক্ষায় \'ক\' এর প্রাপ্ত নম্বর যথাক্রমে ৭০ , ৮৫ ও ৭৫ । চতুর্থ পরীক্ষায় তাকে কত নম্বর পেতে হবে যেন তার গড় প্রাপ্ত নম্বর ৮০ হয় ?', '78', '82', '88', '90', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4333, 'তিন বছর আগে রহিম ও করিমের বয়সের গড় ছিল ১৮ বছর । আলম তাদের সাথে যোগদান করায় তাদের বয়সের গড় বেড়ে ২২ বছর হয় । আলমের বয়স কত ?', '৩০ বছর', '২৮ বছর', '২৭ বছর', '২৪ বছর', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4332, '১০০ জন শিক্ষার্থীর পরিসংখ্যানের গড় নম্বর ৭০ । এদের মধ্যে ৬০ জন ছাত্রীর গড় নম্বর ৭৫ হলে , ছাত্রদের গড় নম্বর কত ?', '62.5', '65.5', '60.5', '55.5', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4331, '১০ টি সংখ্যার যোগফল ৩৮০ । এদের প্রথম ৪ টির গড় ৫০ এবং শেষ ৫ টির গড় ৩২ । সংখ্যাটি কত ?', '10', '20', '15', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4329, '১০ টি সংখ্যার যোগফল ৪৬২ । এদের প্রথম ৪ টির গড় ৫২ এবং শেষের ৫ টির গড় ৩৮ । পঞ্চম সংখ্যাটি কত ?', '60', '64', '62', '53', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4330, '১০ টি সংখ্যার যোগফল ৬০০ । এদের প্রথম চারটি গড় ৫৫ এবং শেষের ৫ টির গড় ৬৫ । ৫ম সংখ্যাটি কত ?', '65', '60', '55', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4328, '৩ টি সংখ্যার গড় ৩৩ । দুইটি সংখ্যা ২৪ এবং ৪২ হলে অপর সংখ্যাটি কত ? ', '12', '22', '32', '33', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4327, 'এক দোকানদার ১২ দিনে ৫০৪ টাকা আয় করেন । প্রথম ৪ দিনে গড় আয় ৪০ টাকা হলে বাকি দিনগুলোর গড় আয় কত হবে ?', '৪০ টাকা ', '৪২ টাকা', '৪৩ টাকা ', '৪৭ টাকা ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4326, 'কোনো শ্রেণির ২৪ জন ছাত্রের গড় বয়স ১৮ বছর । যদি একজন শ্রেনি শিক্ষকের বয়স তাদের বয়সের সাথে যোগ করা হয় তবে বয়সের গড় এক বছর বৃদ্ধি পায় । শিক্ষকের বয়স কত ?', '৪০ বছর', '৩৯ বছর', '৪৫ বছর', '৩৫ বছর', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4325, 'কোণ শ্রেনিতে ১০ জন ছাত্রের গড় উচ্চতা ৫ ফুট ৬ ইঞ্চি । এর মধ্যে ৯ জন ছাত্রের গড় উচ্চতা ৫ ফুট ৫ ইঞ্চি হলে ১০ম ছাত্রের উচ্চতা কত ?', '৬ ফুট ৩ ইঞ্চি', '৬ ফুট ৫ ইঞ্চি', '৬ ফুট ', '৬ ফুট ৭ ইঞ্চি', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4324, '৯ জন ছাত্রের গড় বয়স ১৫ বছর,৩ জন ছাত্রের বয়সের গড় ১৭ বছর হলে বাকি ৬ ছাত্রের বয়সের গড় কত?', '১৭ বছর', '১৫ বছর', '১৪ বছর', '১২ বছর', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4323, 'পিতা , মাতা , ও পুত্রের বয়সের গড় ৩৭ বছর । আবার পিতা ও পুত্রের বয়সের গড় ৩৫ বছর , মাতার বয়স কত ?', '৩৮ বছর', '৪১ বছর', '৪৫ বছর', '৪৮ বছর', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4322, 'কোনো পরীক্ষায় ১০০ জন ছাত্রের প্রাপ্ত গড় নম্বর ৮০ । যদি ২০% ছাত্রকে বাদ দেয়া হয় তবে বাকি ছাত্রদের প্রাপ্ত গড় নম্বর হবে ৯০। ২০% ছাত্রের প্রাপ্ত গড় নম্বর কত ?', '32', '36', '40', '42', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4321, 'একজন শ্রমিক প্রতিদিন প্রথম ৮ ঘণ্টা কাজ করার জন্য ঘণ্টায় ১০ টাকা এবং পরবর্তী সময়ের জন্য ১৫ টাকা করে মজুরি পায়। দৈনিক ১০ ঘণ্টা করে কাজ করলে তার গড়ে প্রতি ঘণ্টায় মজুরি কত ?', '১১ টাকা ', '১২ টাকা ', '১২.৫০ টাকা ', '১৩ টাকা', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4320, 'ছয়টি সংখ্যার গড় ৬ । যদি প্রত্যেকটি সংখ্যা থেকে ৩ বিয়োগ করা হয় তবে নতুন সংখ্যাগুলোর গড় কত হবে ?', '18', '15', '4', '3', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4319, '১/২ , ৫/৬ , ৩/৪ , ৫/১২ এর গড় কত ?', '৫/৮', '৫/২', '৫/৪', '৫/১২', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4318, 'তিনটি সংখ্যার গড় x । যদি প্রথম ২ টি সংখ্যার গড় y হয় এবং শেষ ২ টি সংখ্যার গড় z হয় , তবে দ্বিতীয় সংখ্যাটি কত ? ', '2y + 2z + 3x', '3x - y -z', '2y + 2z -3x', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4317, '৫,১১,১৩,৭,৮ এবং ১০ সংখ্যাগুলোর গড় কত ?', '6', '7', '8', '9', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4316, '১১ , ১২ , ১৩ , ১৪ এবং ১৫ এই সংখ্যাগুলোর গড় হবে - ', '13', '24', '15', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4315, '৬ , ৮ ও ১০ এর গড় কত ?', '6', '8', '10', '12', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4314, 'রবিবার থেকে শনিবার পর্যন্ত কোন স্থানের গড় বৃষ্টিপাত ৩\" । রবিবার থেকে শুক্রবার পর্যন্ত গড় বৃষ্টিপাত ২\" । ঐ সপ্তাহের শনিবারে বৃষ্টিপাতের পরিমান কত ?', '৭ \"', '৫ \"', '১``', '৯ \"', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4313, '২০০০ সালে ফ্রেব্রূয়ারী মাসের দৈনিক বৃষ্টিপাতের গড় ০.৫৫ সে. মি .। ঐ মাসের মোট বৃষ্টিপাতের পরিমান কত ?', '১৫.৫ সে. মি.', '১৫ꓸ৪', '১৫.৯৫ সে . মি .', '১৫.৫৫ সে . মি .', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4312, 'জুলাই মাসের দোনিক বৃষ্টিপাতের গড় ০.৬৫ সে. মি. ছিল । ঐ মাসের মোট বৃষ্টিপাতের পরিমান কত ?', '২০.১৫ সে. মি.', '২০.২০ সে.মি.', '২০.২৫ সে. মি.', '৬৫ সে.মি.', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4311, 'একজন ক্রিকেটারের ১০ ইনিংসের রানের গড় ৪৫.৫ । ১১তম ইনিংসে কত রান করে আউট হলে সব ইনিংসে মিলিয়ে তার রানের গড় ৫০ হবে ?', '৫৫ রান', '৪৫ রান', '৯৫ রান', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4310, '৮ জনের একটি দলে ৬৫ কেজি ওজনের একজনের পরিবর্তে নতুন একজন যোগ দেয়ায় তাদের গড় ওজন ২.৫ কেজি বেঁড়ে যায় । নতুন ব্যক্তির ওজন কত কেজি ?', '45', '76', '80', '85', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4309, 'কোন এক স্থানে সপ্তাহের গড় তাপমাত্রা ৩০° সেলসিয়াস । প্রথম ৩ দিনের গড় তাপমাত্রা ২৮° সে ও শেষ ৩ দিনের গড় তাপমাত্রা ২৯° সেলসিয়াস হলে চতুর্থ দিনের তাপমাত্রা কত ?', '৩৩ সে', '৩৬ সে', '৩৯ সে', '৪৩ সে', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4308, 'পাঁচ সন্তানের বয়সের গড় ৭ বছর এবং পিতাসহ তাদের বয়সের গড় ১৩ বছর । পিতার বয়স কত ?', '৪৩ বছর ', ' ৩৩ বছর ', '৫৩ বছর', '৬৩ বছর', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4307, 'পিতা ও মাতার বয়সের গড় ৪৫ বছর । আবার পিতা , মাতা ও এক পুত্রের বয়সের গড় ৩৬ বছর । পুত্রের বয়স - ', '৯ বছর', '১৪ বছর', '১৫ বছর', '১৮ বছর', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4306, 'পিতা ও পুত্রের বয়সের গড় ৪০ বছর এবং মাতা ও ঐ পুত্রের বয়সের গড় ৩৫ বছর । মাতার বয়স ৫০ বছর হলে , পিতার বয়স কত ?', '৫০ বছর', '৬০ বছর', '৪০ বছর', '৮৫ বছর', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4305, 'পিতা ও দুই পুত্রের গড় বয়স ২০ বছর । দুই বছর পূর্বে দুই পুত্রের গড় বয়স ছিল ১২ বছর । পিতার বর্তমান বয়স কত ?', '২৬ বছর ', '২৮বছর', '৩০ বছর', '৩২ বছর', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4304, '৫ জন বালকের বয়সের গড় ১০ বছর । দলে আরও দুজন বালক যোগ দিলে তাদের সকলের বয়সের গড় হয় ১২ বছর । যোগদানকারী বালক দুটি যদি সমবয়সী হয় তবে তাদের প্রত্যেকের বয়স কত?', '১২ বছর', '১৫ বছর', '১৭ বছর', '২০ বছর ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4303, '12 জনের একটি পার্টিতে অর্ধেক লোক ক ক্লাবের, এক তৃতীয়াংশ খ ক্লাবের এবং ১/৪ উভয় ক্লাবের । কতজন কোনো ক্লাবের সদস্য নন?', '3', '4', '5', '6', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4302, 'স্কুলের কোনো ক্লাসের 32 জন ছাত্রের 18 জন গান পছন্দ করে, 16 জন কবিতা পছন্দ করে এবং 7 জন দুটিই পছন্দ করে । কতজন কোনোটিই পছন্দ করে না?', '5 জন', '7 জন', '4 জন', '10 জন', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4301, '50 টি বলের মধ্যে 35টির গায়ে লাল দাগ, 20টির গায়ে নীল দাগ এবং 12টির গায়ে লাল ও নীল উভয় দাগ আছে । কতটি বলের মধ্যে লাল বা নীল কোন দাগই নেই?', '5টি', '9টি', '4টি', '7টি', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4300, '400 জন লোকের একটি দলের 375 জন ইংরেজিতে ও 200 জন বাংলায় কথা বলতে পারে কতজন উভয় ভাষায় কথা বলতে পারে?', '175', '25', '200', '75', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4299, 'কোনো শ্রেণিতে 100 জন পরীক্ষার্থী ছিল । বার্ষিক পরিক্ষায় 94 জন বাংলায় এবং 80 জন গণিতে পাস করেছে । 75 জন উভয় বিষয়ে পাস করলে কত জন উভয় বিষয়ে ফেল করেছে?', '5', '2', '3', '1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4298, '৫০ জন লোকের ৩৫ ইংরেজি, ২৫ জন ইংরেজি ও বাংলা উভয়ই এবং প্রত্যেকেই দুইটি ভাষার অন্তত একটি ভাষায় কথা বলতে পারেন।শুধু বাংলায় কতজন কথা বলতে পারেন?', '10', '40', '15', '30', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4297, 'A= {1,2,3,4} হলে , P (A) এর উপাদান সংখ্যা কত?', '16', '10', '12', '18', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4296, 'A={2,e} হলে P (A) কোনটি ?', '{ {2}, {e} }', '{ {2}, {e}, {2,e} }', '{ }', '{ {e}, {2}, {2,e} , Ø }', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4295, 'A= {a,b,c} হলে , A সেটের কতগুলি উপসেটের সংখ্যা হবে-', '1টি', '8টি', '3টি', '2টি', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4294, 'কোনো সেটের সদস্য সংখ্যা 3 হলে, এর উপসেটের সংখ্যা কতটি হবে?', '8টি', '<', '2টি', '9টি ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4293, 'যদি A={ x : x2 = 9, 2x=4} হয়, A= কত? ', '{3,2}', '{-3,2}', ' Ø', 'কোনোটিই নই', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4292, 'A={x ɛ N:x2 >8,x³<30} হলে x এর সঠিক মান কত?', '4', '3', '2', '5', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4291, 'A= {x | xধনাত্মক পূর্ণ সংখ্যা এবং x2<25>} B={x|x মৌলিক সংখ্যা এবং x2<25} C={x|x মৌলিক সংখ্যা এবং x2=25}হলে A ∩ B ∩ C=?', '{1,2,3,4}', '{2,3,4}', '{2,3,4,5}', ' Ø', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4290, 'সেট A= {x:x Fibonacci সংখ্যা এবং x2<64} হলে, P(A) এর উপাদান কয়টি?', '128', '32', '64', '256', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4289, 'কোন সকল স্বাভাবিক সংখ্যা 346 এবং 556 কে ভাগ করলে প্রতিক্ষেত্রে 31 অবশিষ্ট থাকে , তাদের সেট নির্ণয় করূন ', '{45,315}', '{45,63}', '{35,105}', '{75,525}', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4288, 'কোন কোন স্বাভাবিক সংখ্যা 346 কে ভাগ করলে প্রতিক্ষেত্রে 31 অবশিষ্ট থাকে ?', '35,45,63,105,315', '35,40,65,110,315', '35,45,70,105,315', '35,45,63,110,315', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4287, 'U={1,2,3,4,5}, A={1,2,3}, B={2,4,6} হলে A′ ∩ B′ হবে-', '{2,4}', '{5,6}', '{5}', '{6}', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4286, 'যদি সেট U = {1,2,3,4,5} A= {1,2,4},B={1,3,5} হলে A′ Ʋ B′ হবে', '{1,2,3}', '{2,3,4}', '{3,4,5}', '{2,3,4,5}', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4285, 'যদি সেট A= {5,15,20,30} এবং B= {3,5,15,18,20} হয় তবে নিচের কোনটি A ∩ B নির্দেশ করবে?', '{3,18,30}', '{3,5,15,18,20,30}', '{5,15,20}', 'কোনোটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4284, 'A= {-1,1,2} এবং B= Ø হলে A ∩ B = কত?', '{-1,1,2}', '{-1,1,2,Ø}', 'Ø', '{-1,Ø}', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4283, 'A= {1,2,3} এবং B=Ø হলে A Ʋ B = কত?', '{1,2,3}', '{1,2,Ø}', '{2,3,Ø}', 'Ø', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4281, 'মৌলিক সংখ্যা সেট কিরূপ হবে ?', 'সসীম ', 'সংযোগ', 'অসীম', 'ছেদ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4282, '8 এর গুণনীয়ক সেট কোনটি ?', '{8,16,24}', '{1,2,4,8}', '{2,4,8}', '{1,2}', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4280, '7 এর গুণিতকের সেট কোন ধরনের সেট ?', 'সসীম সেট ', 'ফাঁকা সেট', 'সার্বিক সেট', 'অসীম সেট', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4278, '১,৫,৯,…....৮১ ধারাটির সংখ্যাগুলোর গড় কত?', '41', '39', '42', '40', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4279, 'স্বাভাবিক সংখ্যার সেটের ক্ষুদ্রতম সদস্য হলো-', '2', '1', '3', '0', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4276, '২ থেকে শুরু করে পর পর পাঁচটি জোড় সংখ্যার গড় কত হবে?', '4', '5', '6', '7', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4277, '১ থেকে ৫০ পর্যন্ত বিজোড় সংখ্যাগুলোর গড় কত?', '20', '24.5', '30', '25', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4274, '১ হতে ৪৯ পর্যন্ত ক্রমিক সংখ্যাগুলোর গড় কত?', '23', '24.5', '25', '26.5', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4275, '১ হতে ৬৫ পর্যন্ত ক্রমিক সংখ্যাগুলোর গড় কত?', '33', '34', '36', '30', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4272, 'প্রথম n সংখ্যক বিজোড় সংখ্যার যোগফল কত?', 'n2-1', 'n2', 'n2+1', 'n2+2', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4273, 'প্রথম দশটি স্বাভাবিক সংখ্যার গড়-', '5', '5.5', '10', '55.5', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4271, 'একটি ঘড়ি দুপুরে ১টায় সময় একবার বাজে,২টির সময় দুইবার বাজে, ৩টার সময় তিনবার বাজে এবং এই নিয়মে বাজতে থাকে । ২৪ ঘণ্টায় মোট কতবার বাজবে?', '78', '13', '156', '196', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4269, '১+২+৩+৪+….......+১৯= কত?', '180', '184', '188', '190', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4270, '১+২+৩+৪+….......+২২= কত?', '253', '254', '256', '258', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4268, '১+৫+৯+…...+ ৮১=?', '961', '861', '761', '661', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4266, '১+৩+৫+৭+৯+….......+৫১=?', '676', '672', '670', '664', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4267, '৫ থেকে ৪৫ পর্যন্ত সংখ্যাগুলোর যোগফল কত?', '1075', '1035', '1025', '1045', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4264, '1+3+5+7+…..ধারার n সংখ্যক পদের সমষ্টি কত?', 'n(n+1)(2n+1)/2', '{n(n+1)/2}2', 'n2', 'n(n+1)/2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4265, '১+৩+৫+….......+(২x-১) কত?', 'x(x-১)', 'x(x+১)/২', 'x(x+১)', 'x২', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4261, 'log2+log 4 + log 8 +….ধারাটির প্রথম দশটি পদের সমষ্টি কত?', '55log2', '45log2', '65log2', '75log2', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4262, '১২ ও৯৬ এর মধ্যে (এই দুইটি সংখ্যা সহ) কয়টি সংখ্যা ৪ দ্বারা বিভাজ্য?', '21', '23', '24', '22', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4263, '১৬ এবং ১০০ এর মধ্যে ( এ ২টি সংখ্যাসহ) ৪ দ্বারা বিভাজ্য সংখ্যা কয়টি?', '২২টি', '২৩টি', '২১টি', '২৪টি', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4260, 'log11 +log 121 +log 1331+…........ধারাটির প্রথম দশটি পদের সমষ্টি কত?', '45log11', '55log11', '36log11', '66log11', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4259, '1+5+9+13+…....... ধারাটির 15 তম পদ হবে', '61', '53', '57', '65', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4258, 'একটি সমান্তর ধারার প্রথম পদ ১, শেষ পদ ৯৯ এবং সমষ্টি ২৫০০ হলে ধারাটির সাধারন অন্তর কত?', '4', '6', '3', '2', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4257, '১২+২২+৩২+…...+৫০২= কত?', '35725', '42925', '45500', '47225', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4256, '12+22+32+…..............+x2 এর মান কত?', 'x(x+1) (2x+1)/6', 'x(x+1)/2', 'x', '{x(x+1)/2}', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4255, 'কোনো সমান্তর ধারার p- তম পদ q-এবং q-তম পদ p হলে (p+q) তম্পদ কত?', 'pq', '0', 'pq(p+q)', 'p+q', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4254, 'একটি সমান্তর ধারার সাধারন অন্তর 9 এবং 7 তম পদ 60 হলে 12 তম পদটি কত?', '89', '100', '108', '105', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4253, 'একটি সমান্তর অনুক্রমে সাধারন অন্তর 10এবং 6- তম পদটি 52 হলে 15- তম পদটি-', '140', '142', '148', '150', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4252, '১৩+২৩+৩৩+৪৩+….......+২০৩ = কত?', '44100', '44000', '44200', 'উপরের কোনোটাই সত্য নয়', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4251, '১,৯,২৫,৪৯,৮১, ….. ধারাটির পরবর্তী সংখাটি কত ?', '100', '121', '144', '145', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4250, '৯,৩৬,৮১,১৪৪, ….. । পরবর্তী সংখ্যাটি কত ?', '225', '169', '256', '272', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4249, 'প্রথম n সংখ্যক স্বাভাবিক সংখ্যার ঘনের সমষ্টি ২২৫ হলে n- এর মান কত?', 'n=৩', 'n=৫', 'n=৬', 'n=৭', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4248, 'একটি সংখ্যার লগারিদম 0.5514 হলে , সংখাটি নির্ণয় করুন ', '3.5596', '3.5568', '3.5592', '3.5591', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4246, 'log√27+ log 8 - log √1000/ log1.2', '4/5', '5/7', '2/3', '3/2', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4247, 'সরল করুন : 3log (36/25) +log(2/9)3 - 2log (16/125)', 'log 3', 'log 2', 'log 5', 'log 7', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4245, 'loga x =1,loga y=2 এবং loga z=3,loga (x3y2/z) এর মান কত?', '1', '2', '4', '5', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4244, '3log 2 + log 5=?', 'log30', 'log40', 'log13', 'কোনোটিই নই', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4243, 'x এর মান নির্ণয় করুন : 3x=16', 'x=3.56', 'x=2.59', 'x=2.52', 'x=3.52', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4241, 'logx 324=4 হলে, x এর মান কত?', '2√3', '3√2', '√3', '3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4242, 'log4 2=x হলে x এর মান কত?', '1/2', '1', '0', '2', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4240, 'loga √2 = 1/6 হলে,a = কত?', '√2', '0', '6', '8', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4239, 'logx (3/2)= - 1/2 হলে, x এর মান কত?', '4/9', '9/4', '√3/2', '√2/3', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4237, 'log10 (0.001) = কত?', '-2', '-3', '1/2', '1/3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4238, 'logx (1/8) = -2 হলে, x = কত?', '2', '√2', '2√2', '4', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4236, 'log 3√2 1/324 কত?', '162√2', '1/162√2', '4', '-4', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4234, 'log5 (3√5) (√5) এর মান কত?', '6/5', '√5/6', '5/6', '1/2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4235, 'log 2√5 20 এর মান -', '2', '√5', '3', '4', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4233, 'log2 (1/64) এর মান কত?', '-6', '6', '-0.16666666666666666', '0.16666666666666666', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4230, 'log√3 81 কত?', '8', '27√3', '4', '1/8', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4231, 'log3 ( 1/9) এর মান -', '2', '3', '-2', '-3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4232, 'log2 (1/32) এর মান কত?', '1/25', '-1/5', '1/5', '-5', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4228, 'log2 8 = কত ?', '4', '3', '2', '1', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4229, '32 এর 2ভিত্তিক লগারিদম কত ?', '3', '4', '5', '6', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4227, 'কোন শর্তে loga a=1', 'a>0', 'a≠1', 'a≠0 , a>1', 'a>0 , a≠1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4226, 'loga (m/n) = কত ?', 'loga m - log', 'loga m - loga n', 'loga m . loga n', 'কোনোটিই নই', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4225, 'যদি (64)2/3 + (625)1/2 = 3K হয় , তবে K এর মান - ', '9.5', '11.3333333333333', '12.4', '13.666666666666666', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4223, '2x + 21-x = 3 হলে , x = কত ? ', '(1,2)', '(0,2) ', '(1,3)', '(0,1)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4224, '(√3)x+1 = (3√3)2x-1 হলে , x = কত ?', '5', '4', '3', '6', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4221, 'যদি (25)2x+3 = 5x+6 হয় তবে x = কত ? ', '0', '1', '-1', '4', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4222, 'যদি (125)2x+3 = 53x+6 হয় , তবে x = কত ? ', '0', '1', '-1', '4', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4220, '(a/b)x-3 = (b/a) x-5 হয় তবে x এর মান কত ? ', '8', '3', '5', '4', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4218, 'যদি x/y= y-1 হয় , তবে x এর মান কোনটি হবে ?', '1', 'y-1', 'y2', '1/y', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4219, '(3/2)x = 1 হলে , x এর মান নিচের কোনটি ? ', '2/3', '0', '1', '3/2', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4217, '82x+3 = 23x+6 হলে , x এর মান - ', '-3', '0', '-1', '4', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4216, 'যদি 3x+2 = 243 হয় তবে xx-2 এর মান - ', '2', '3', '0', '1', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4215, '36.23x-8 = 3²হলে x এর মান কত ? ', '7/3', '8/3', '3', '2', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4214, '4x+1 = 32 এর মান কত ?', '1/2', '3/2', '1', '2/3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4213, '(1000)x/3 = 10 হলে x - এর মান কত ?', '3', '2', '1', '10', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4212, '4 √x = 0.1 হলে , x = কত ? ', '0.1', '0.01', '0.001', '0.0001', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4211, 'x এর মান কত হলে 24x-12 = 16 হবে ?', '4', '2', '6', '8', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4210, 'a5=x4 হলে a এর মান - ', '2', 'none', '3', '4', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4209, '4n = 64 হলে n এর মান নিচের কোনটি হবে ?', '0', '1', '3', '4', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4207, ' ( 9x -4 / 3x - 2 ) -2 এর মান কত ?', '3x', '3x+2', '3x-2', '2x', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4208, '( 3.2n - 4.2n-2 ) / ( 2n- 2n+1 ) = কত ?', '2n+1 ', '2n-1 ', '-2', '4', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4205, '3.2n - 4.2n-2 = কত ?', '3', '2n-1 ', '2n+1 ', '2n', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4206, '(5n+2 + 35 . 5n-1) / 4 . 5n এর মান কত ?', '4', '8', '5', '7', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4204, '2n / 2n -1 = কত ?', '2', '2n+1', '2n', '2n-1', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4203, '512 + 513 = ? ', '525', '1025', '512+5', '6(512)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4201, '4x + 4x + 4x + 4x এর মান নিচের কোনটি ?', '16x', '44x', '22x+2', '28x', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4202, '5x+5x+5x+5x =কত?', '25x', '5x+1', '55x', 'none', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4195, '[ 2 -3 ( 2-3 ) -1 ] -1 এর মান কত ?', '5', '-5', '1', '1/5', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4196, '(√3)6 এর মান কত ?', '9', '18', '27', '81', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4197, '( √3 . √5 ) 4 এর মান কত ? ', '225', '60', '30', '15', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4198, '4√x .(1/ 4√x ) এর সঠিক মান কোনটি ?', '√x', 'x', '1/x4 ', '1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4199, '( 3√3 . 3√4 ) 6 = কত ? ', '12', '144', '36', '48', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4200, '0.0000472 সংখ্যাটিকে বৈজ্ঞানিক পদ্ধতিতে প্রকাশ করুন - ', '4.72* 10-5', '4.72 * 10-6', '4.72 * 10-4', '4.72 * 10-7', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4192, 'xa = y , yb = z , zc = x হলে, abc এর মান কত ?', '0', '1', '2', '3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4193, '( 125 / 27 ) -2/3 এর সহজ প্রকাশ - ', '3/25', '5/20', '9/25', '3/20', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4194, ' (a -1) -1 এর নিচের মান কোনটি ? ', 'a', 'a2', '1/a ', '1/a2', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4189, '(x2)3 কে x3 দ্বারা গুন করলে কত হবে ?', 'x9', 'x18', 'x27', 'x24', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4190, 'm ( x-y ) ( x+y ) . m (y-z ) ( y+z ) . m(z-x ) ( z+x ) = কত ?', '0', '1', '1/2', '2', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4191, 'a m/n = কত ?', 'a m-n', 'a m/n', 'a n/m', 'a m+n', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4188, 'x4 কে x9 দ্বারা গুন করে গুণফল কত হবে ?', 'x36', 'x5', 'x13', '2x36', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4187, 'a5 . a3 এর মান কোনটি ?', 'a15', '(a2) 15', 'a5 .a3 ', 'a8', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4184, 'a = 3 , m = 2 এবং n = 1 হলে amn এর মান কত ?', '9', '12', '3', '4', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4185, 'am . an = কত ?', 'am m+n', 'a m+n', 'an', 'a m-n', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4186, 'am . an = a m+n কখন হবে ?', 'm ধনাত্মক হলে', 'n ধনাত্মক হলে', 'm ও n ধনাত্মক হলে', 'm ধনাত্মক ও n ঋণাত্মক হলে ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4183, '43 = ?', '12', '4', '16', '64', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4182, '2 8 এর মান কত ? ', '256', '64', '128', '16', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4181, '(8x)0 + 8x0 এর মান নিচের কোনটি ?', '8', '2', '16', '9', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4179, '( 5x ) 0 = কত ? ', '0', '5x', '5', '1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4180, '(17)0 x = কত ? ', '17x', '17', 'x', '1', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4178, 'একটি সমবায় সদস্যদের কাছ থেকে সর্বমোট 5000 টাকা সংগ্রহ করেছে । প্রতি সদস্য ন্যূনতম 240 টাকা করে দিয়ে থাকলে , সমবায়ে সদস্য সংখ্যা সরবচ্চ কত হবে ?', '19', '20', '21', 'কোনটিই', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4177, 'একজন ছাত্র 5 টাকা দরে x টি পেন্সিল এবং 8 টাকা দরে (x+4) টি খাতা কিনেছে । মোট মূল্য অনূর্ধ্ব 97 টাকা হলে , সর্বাধিক কয়টি পেন্সিল কিনেছে ?', '4', '7', '6', '5', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4176, 'কোন পরিক্ষায় বাংলা ১ম ও ২য় পত্রে রমা পেয়েছে যথাক্রমে 5x এবং 6x নম্বর এবং কুমকুম পেয়েছে 4x এবং 84 নম্বর । কোনো পত্রে কেউ 40 এর নিচে পায়নি । বাংলা বিষয়ে কুমকুম হয়েছে প্রথম এবং রমা হয়েছে দ্বিতীয় । x এর মান সম্ভাব্য অসমতার মাধ্যমে প্রকাশ কর । ', 'x<12', '10 ≤ x ≤ 12', '10 < x < 12', 'x>12', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4175, 'পরমমান চিহ্ন ব্যবহার করে নিম্নের অসমতাটিকে প্রকাশ করুন -3<x<2', '| x+1 | < 5', '| x -1 | < 5', '| 2x -1 | < 5', '| 2x + 1 | < 5', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4174, '| 3x + 2 | < 7 অসমতাটি সমাধান কর ।', ' 0 < x < 5/3', '2 < x < 3', ' -3 < x < 5/3', ' -3 < x < 7/2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4173, '|x-3| < 5 হলে -', '2 < x < 8', '- 8 < x < -2', '- 2 < x < 8', '- 4 < x < -2', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4172, 'বাস্তব সংখ্যার |2x - 3| ≤ 1 অসমতাটির সমাধান -', '1 ≤ x ≤ 2', 'x ≤ 1 x ≤ 2 ', '1 < x < 2', '- 1 < x < 2', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4171, '|x-5| = 6 সমীকরণটির সমাধান সেট হল - ', '{ 1 , -11 }', '{ 1 , 11 }', '{ - 1 , 11 }', '{ - 1 , -11 }', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4170, '-5 এবং |5| - এর মধ্যে দূরত্ব কত একক ?', '0', '20', '-10', '10', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4169, '|3-8| - |2-1| এর মান কত ?', '-6', '6', '4', '5', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4168, '|-3-5|এর মান কত ? ', '2', '8', '-8', '-5', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4166, 'x2 - 5x + 6 < 0 হলে -', '2 < x < 3', ' - 3 < x < 3', ' x < 2', ' x < 3', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4167, '( x-2 ) ( x-3) < 0 সমাধান সেট কত ?', '2 < x < 3', 'x < 3 ', 'x < 2', 'কোনটিই নয় ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4165, '3x - 2 > 2x -1 অসমতাটি সমাধান কর ?', 'x > -1 ', 'x > 1', 'x > 3', 'x < -2', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4164, '3 ( x-2 ) < 6 অসমতাটি সমাধান কর ?', 'x < 12 ', 'x > 12', 'x > 4', 'x < 4', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4163, 'y - 3 < 5 অসমতাটি সমাধান কর ?', 'y > 2', ' y > 8', 'y < 8', 'y < 2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4162, 'যদি a ও b ধনাত্মক পূর্ণসংখ্যা এবং a-b/3.5 হয় , তবে -', 'b > a', 'b < a', 'b = a', 'None of those', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4161, ' xyz = 240 হলে y এর মান কোনটি হতে পারে না ?', '0', '2', '3', '5', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4160, 'যদি a < b তাহলে নিচের কোন সংখ্যাটি চেয়ে বড় কিন্তু এর চেয়ে ছোট হবে? নেxy', 'ab', 'ab/ 2', 'b - a', 'a + b / 2', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4159, 'যদি x > 0 , y > 0 এবং x/1 > 1 /y হয় তবে x এবং y - এর মধ্যে কি সম্পর্ক ?', 'x > y', 'x < y', 'x = y', 'সবগুলাই ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4158, 'যদি xy<0 , xz < 0 and z < 0 হয় , তবে নিচের কোনটি অবশ্যই সত্য হবে?', 'y > 0', 'y > 0 ', 'yz > 0', 'কোনটিই নয় ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4157, 'যদি x < y এবং a<b হয় তবে , কোন সম্পর্কটি সঠিক ?', 'a + x >b + y ', 'a + x < b + y ', 'a = y', ' ax = by', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4156, 'x > y এবং z < 0 হলে নিচের কোনটি সঠিক ?', 'xz > yz', 'z/x < z/y', 'x/z > y/z ', 'xz < yz', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4155, 'x যদি y এর চেয়ে বড় হয় তবে 1/x এর চেয়ে 1/y -', 'বড়', 'ছোট', 'সমান', ' অসমান ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4154, 'p2+ 7p +c যদি p-5 দ্বারা নিঃশেষ বিভাজ্য হয় , তবে c এর মান কত ?', '-60', '-30', '5', '60', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4153, '(a-b)3 + (b-c)3 + (c-a)3 কে উৎপাদকে বিশ্লেষণ করুন :', '9(a-b) (b-c) (c-a) ', '3(a-b) (b-c) (c-a) ', '2(a-b) (b-c) (c-a) ', '(a-b) (b-c) (c-a) ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4152, '2√2x3 + 125 এর সঠিক উৎপাদকের বিশ্লেষণ কোনটি ?', '(√2x +5 ) (2x2-5√2x-25)', '(√2x +5 ) (2x2-5√2x+25)', '(√2x +5 ) (2x2+5√2x-25)', '(√2x -5 ) (2x2+5√2x+25)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4151, 'কোনটি a3+1 এর উৎপাদক ?', '(a+1) (a+1)', '(a+1) (a2+a+1) ', '(a-1) (a2-a+1) ', '(a+1) (a2-a+1) ', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4150, 'a3-(1/8) এর উৎপাদক কোনটি ?', '(a- 1/2 ) ( a2 - a/2 + 1/ 4 ) ', '(a-1/2 ) ( a2 - a/2 - 1/ 4 ) ', '(a+1/2 ) ( a2 - a/2 + 1/ 4 ) ', '(a+ 1/2 ) ( a2 - a/2 - 1/ 4 ) ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4149, 'p6-q6 এর উৎপাদক কত ?', '(p3-q3) (p3+q3)', '(p+q) (p2-pq+q2) (p3-q3) ', '(p2-q2) (p2-pq+q2) (p2+pq+q2)', '(p+q) (p-q) (p2-pq+q2) (p2+pq+q2)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4148, 'a3-21a-20 এর একটি উৎপাদক হল -', '(a+2)', '(a+1)', '(a-2)', '(a-1)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4146, ' - 4a2 +23a+6 এর উৎপাদক কোনটি ?', '(6-a) (4a+1)', '(a-6) (4a+1) ', '(a-6) (4a-1) ', '(6-a) (4a-1)', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4147, 'a3-7a-6 এর উৎপাদক কত ?', '(a+1) (a-2) (a-3)', '(a-1) (a+2) (a-3)', '(a+1) (a+2) (a-3)', '(a-1) (a-2) (a-3)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4144, '7p2-p-8 এর উৎপাদক হবে -', 'p-4', '7p', '8-7p', '7p-8', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4145, '4x4-25x2+36=কত ?', '(2x+1) (2x-1) (x+6) (x-6) ', '(2x+1) (x-2) (2x+3) (2x-3) ', '(x+3) (x-3) (2x+2) (2x-2)', '(x+2) (2x-3) (2x+3) (3x+2)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4143, '6a2-a-15 এর একটি উৎপাদক নিচের কোনটি ? ', '2a+3', '2a-3', '3a+5 ', '2a-3', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4142, '2x2-xy-6y2 এর উৎপাদক -', '(x+3y) (x-2y)', '(2x-3y) (x+2y)', '(2x+3y) (x-2y)', '(2x-3y) (2x+2y)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4140, '2x2-x-15এর উৎপাদক হবে -', '(x+6) (x-5) ', '(x-6) (x-5) ', '(2x+5) (x-3) ', '(x+3) ( 2x-5) ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4141, '2x2-x-3 এর উৎপাদক কোনটি ? ', '( 2x-3 ) (x+1) ', '( 2x-3 ) (x-1) ', '( 2x+3 ) (x+1) ', '( 2x+3 ) (x-1) ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4139, '2x2+x-15 এর উৎপাদক কোনটি ?', '(x+3) ( 2x-5) ', '(x-3) ( 2x-5) ', '(x-3) ( 2x+5) ', '(x+3) ( 2x+5) ', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4138, ' (x-y) ( y+3) কোন রাশির উৎপাদক ?', 'x2-3y+3 ', 'xy-3y+y2', 'xy-y2+3x-3y', 'xy-3y+y2+3x', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4137, '2x2-5xy+2y2 এর একটি উৎপাদক হবে -', '2y-x', 'x-2y', '2(x-y)', 'x-3y', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4136, ' x2-10xy-11y2 এর উৎপাদক -', '(x-y) (x+11y)', ' (x-5y) (x-4y)', '(x+4y) (x-5y)', ' (x-11y) (x-y)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4134, 'x2-3x-10 এর সঠিক উৎপাদক কোন দুটি ?', '(x+2) (x-5)', '(x-2) (x+5)', '(x+3) (x-5)', '(x-3 (x+5)', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4135, 'a2-5a-6 এর উৎপাদক সমূহ কোনটি ?', '(a-3) (a+2)', '(a-6) (a+1) ', '(a+6) (a-1) ', '(a+3) (a-2)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4133, 'x2-x-20 এর উৎপাদকে বিশ্লেষণ কোনটি ?', '(x-5) (x-4)', '(x-5) (x-4)', '(x+5) (x_4)', '(x-5) (x+4)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4132, 'm2+ 8m+ 15 এর উৎপাদক', '(m+5) (m-3) ', '(m-5) (m+3) ', '(m+5) (m+3) ', '(m-5) (m-3) ', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4131, ' x4+x+1 - এর একটি উৎপাদক x2+x+1 অপর উৎপাদকটি কত ?', 'x2+x+1', 'x+1', 'x2+1', 'X2-x+1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4130, '(a+b-c) (b+c-a) = ?', 'b2-c2-a2-2ca', 'b2-c2-a2+2ca', 'b2+c2-a2-2ca', 'b2-c2+a2-2ca', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4129, 'x2-1-y(y-2) এর একটি উৎপাদক -', '(x-y-1) (x-y+1)', '(x-y+1) (x+y-1)', '(x+y-1) (x-y+1)', '(x-y) (x+y+1)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4128, 'a2-c2-2ab+b2 এর সঠিক উৎপাদক কোনটি ?', '(a+b+c) (a-b+c)', '(a-b-c) (a-b+c)', '(a-b-c) (a+b-c)', '(a+b+c) (a-b-c)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4127, 'x2-y2+2x+1 এর একটি উৎপাদক -', 'x-y-1', 'x-y', 'x+y-1', 'x+y+1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4126, 'x2- y2 - 2y-1 এর একটি উৎপাদক -', 'x-y-1', 'x+y-1', 'x-y+1', 'x+2y+1', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4124, '(x-1)2 - 25 এর উৎপাদক কত ?', '(x-4) (x+6)', '(x+24) ( x-24)', '(x+4) ( x-6)', '(x+24) ( x+26)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4125, 'x2-y2+2y-1 এর একটি উৎপাদক -', 'x+y+1', 'x+y-1', 'x-y', 'x-y-1', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4123, '4x4+1 কে উৎপাদকে বিশ্লেষণ করুন ।', '(2x2+2x-1) (2x2-2x+1) ', '(2x2+2x+1) (2x2-2x+1) ', '(2x2+2x-1) (2x2-2x-1) ', '(2x2+2x-1) (2x2-2x-1) ', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4122, ' a4 + 1 এর উৎপাদক কি কি ?', '(a2+2a+2) (a2-2a+2)', '(a2+2a+2) (a2+2a-2)', '(a2-2a+2) (a2+2a-2)', '(a2-2a-2) (a2-2a+2)', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4121, ' ax2+ (a2+1 ) x + a এর উৎপাদক কোনটি ?', '(ax+a) (ax+1)', '(x2+a) (ax+1)', '(ax+a) (ax+1)', '(x+a2) (ax+1)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4120, ' x3 - x এর উৎপাদকে বিশ্লেষণ কোনটি ?', '(x-1) (x2+x+1 )', '(x-1) (x2-x+1 )', 'x(x-1) (x-1)', 'X (x-1) (x+1)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4119, 'দুই অঙ্কবিশিষ্ট একটি সংখ্যার দশক স্থানীয় অঙ্কটি একক স্থানীয় অঙ্ক থেকে 5 বড় । সংখ্যাটি থেকে অঙ্কদইএর সমষ্টির 5 গুন বিয়োগ করলে অঙ্কদই স্থান বিনিময় করে । সংখ্যাটি কত ?', '83', '94', '72', '61', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4118, 'দুই অঙ্ক বিশিষ্ট কোন সংখ্যার অঙ্কদইএর সমষ্টি 9 । অঙ্ক দুটি স্থান বিনিমই করলে যে সংখ্যা পাওয়া যাই তা প্রদত্ত সংখ্যা হতে 45 কম । সংখ্যাটি নির্ণয়ই করুন ।', '54', '63', '72', '81', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4117, 'দুটি সংখ্যার বর্গের সমষ্টি 13 এবং দুটির গুণফল 6 হয় সংখ্যা দুটির বর্গের অন্তর কত ?', '4', '5', '6', '7', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4116, 'কোন দুটি সংখ্যার যোগফল 10 এবং গুণফল ২৪ ?', '4 , -6', '-6,-4', '4, 6', '31 , -2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4115, 'দুতি সংখ্যার অন্তর 12 , বড়টির সঙ্গে 1 যোগ করলে ছোটটির দিগুণ হয় । সংখ্যা দুটি কি কি ?', '35 , 23', '20 , 8', '30 , 18', '25 , 13', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4114, 'দুটি সংখ্যার বিয়োগফলের অর্ধেক 2 । বড় সংখ্যাটির সঙ্গে ছোট সংখ্যাটির দিগুণ যোগ করলে যোগফল 13 হয় । সংখ্যা দুটি কত ? ', '7 , 3', '8 , 4', '9 , 2', '9 , 4', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4113, 'দুটি সংখ্যার অর্ধেকের যোগফল 51 । তাদের পার্থক্যের এক - চথুরতাংশ 13 । সংখ্যা দুটি কত ?', '52 , 70', '26 , 75', '25 , 26', '25 , 77', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4112, 'ক ও খ দুটি সংখ্যা । ক এর 1/2 এবং খ এর 1/3 যোগ করলে 45 হয় । খ এর অর্ধেক এবং ক এর 1/5 যোগ করলে 40 হয় । ক ও খ এর মান কত ?', 'ক = 50 , খ = 60', 'ক = 60 , খ = 50', 'ক = 40 , খ = 48', 'ক = 60 , খ = 48', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4111, 'দুটি সংখ্যার সমষ্টি 75। বৃহত্তর সংখ্যাটির এক- তৃতীয়াংশ 30 অপেক্ষা যত কম ক্ষুদ্রতর সংখ্যাটির চার গুন 50 অপেক্ষা তত বেশি । সংখা দুইটি নির্ণয় করুন ।', '50,25', '60,15', '65,10', '55,20', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4110, 'দুটি সংখ্যার গুণফল 40 এবং ভাগফল 5/3 হলে সংখ্যাদিয়ের যোগফল কত ?', '22', '41', '13', '14', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4109, ' দুটি সংখ্যার বিয়োগফল তাদের যোগফলের দুই - তৃতীয়াংশ । সংখ্যাদিয়ের অনুপাত নিচের কোনটি ?', '5 : 1', '3 : 4', '2 : 3', '3 : 5', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4107, 'সমীীকরণমালা x+ 2y - z ; 2x+3y+z =11 ; 3x-y+3z = 7', 'x=2, y= -2 , z= 1', 'x=1, y= 2, z=0', 'x=1, y= 4 , z= 4', 'x=2, y= 2, z=1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4108, 'সমীকরণ গঠন ও সমাধান দুটি সংখ্যার সমষ্টি 10 এবং তাদের গুণফল 20 । সংখ্যা দুটির গুনিতক বিপরীত সংখ্যার যোগফল কত ?', '2', '4', '1/2', '1/10', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4104, 'x/y - 2/y = 1 এবং x/4+3/y=3 হলে (x,y ) কত ?', '(2,5)', '(4,3)', '(2,6)', '(6,2)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4105, 'xy=yx , x=2y (x ≠ 0 , y ≠ 0 ) হলে , (x,y) কত ?', '(4,2)', '(6,3)', '(2,1)', '(8,4)', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4106, 'x = y = 14 হলে xy এর বৃহত্তম মান কত -', '36', '49', '65', '63', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4101, '2y=2x-4 এবং 4x-5y=3 হলে x ও y এর মান কত ?', 'x=5 , y=7', 'x=2 , y=5', 'x=7 , y=5', 'x=3 , y=7', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4102, 'x2+y2=185 , x-y = 3 এর একটি সমাধান হল - ', '(7,4)', '(9,6)', '(10,7)', '(11,8)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4103, 'x + 1/y = 3/2 এবং y + 1/x =3 সমীকরণ দই সমাধান কত ?', '(x,y) = (2,1) ( 1 1/2 , 1)', '(x,y) = (1,2) ( 1/2 , 1)', '(x,y) = (1,1) ( 1/2 , 1/2)', '(x,y) = (-1,1/2) (1/2 , -1)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4099, '3x-7y+10 = 0 এবং y-2x-3 = 0 এর সমাধান -', 'x = -1, y= 1', 'x = 1, y= 1', 'x = -1, y= - 1', 'x = 1, y= -1', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4100, 'যদি x+y+4 = x-y-12 হয় , তবে 2x+y কত ?', '4', '-8', '-4', '0', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4097, '(x-y,4) = ( 4, x+3y ) হলে (x,y) এর মান কত ?', '(6,2)', '(3,1)', '(5,1)', '(4,0)', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4098, '2x + 3y = 36 এবং 2x+y=16 হলে x ও y এর মান কত', '2 , 10', '3,10', '3,5', '6,10', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4094, 'যদি x+2y = 4 এবং xy = 2 হই তবে x = কত ?', '1', '2', '0', '12', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4095, '(x+y,0) = (1,x-y) হলে (x,y ) এর মান কত ?', '(1,0 )', '( 2/3 ,2/3)', '( 1/2 ,1/2)', '( 1/4 ,1/4)', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4096, '(x - Y , 3)= ( 0 , x+2y ) হলে (x,y ) = কত ?', '(1,1)', '(1,3)', '(-1,-1)', '(-3,1)', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4091, 'a/b = 4 , a+2b=12 হলে a এর মান কত', '16', '4', '8', '12', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4092, 'If x+2y = 4 and x/y=2 , then determine the value of x and y ?', '1 , 2', '2,1', '2, 4', '3 , 4 ', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4093, '2x=3yএবং 3x-2y=5 হলে (x,y) হবে -', '(3,2)', '(6,4)', '(5/2 , 5/3 )', '( 3/2 , 1 )', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4088, '2x= 5- y হলে 4x+2y = কত ?', '5', '8', '10', '12', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4089, 'যদি x+5y =24 এবং x=3y হয়, তাহলে y= কত ?', '2', '3', '4', '5', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4090, 'যদি x/y = 1/3 এবং x+2y=5 হয় তবে x এর মান কত ?', '3', '4', '5', 'কোনটি নয়', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4086, 'যদি a + b =2 , ab = 1 হয় , তবে a ও b এর মান যথাক্রমে -', '0 ,2', '1 ,1', '-1 , 3', '- 3 , -4', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4087, 'একটি সংখ্যার a গুনিতক ও অপর একটি সংখ্যার b গুনিতকের সমষ্টি বিজগানিতিও প্রতীকে প্রকাশ করলে হবে -', 'ax+by ', '(a+x) (b+y) ', 'ab+xy', 'abx', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4083, 'x-3- 0.001=0 হলে x2 এর মান -', '10', '100', '1/10', '1/100', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4084, 'x=1+√3 হলে x3 = কত ?', '4 +3√3', '5+6√3', '10+6√3', '10+9√3', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4085, 'যদি 2+( 6/x ) =5 হয়, তবে 2x+8 = ?', '4', '10', '12', 'কোনোটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4080, 'x= 4/5 হলে {√(1+x)+√(1-x ) } /{√(1+x ) - {√(1-x )}এর মান কত ?', '1', '2', '-2', '4', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4081, 'x2-2x+1 = 0 হলে ( x4+2x2+1)/x2 এর মান-', '-4', '0', '4', '8', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4082, 'যদি a+b =√3 এবং b=a-2√3 হয় তবে a/b এর মান কত ?', '-3', '3', '√3/2', ' -3√3', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4077, 'a/b = p/q হলে কোনটি সঠিক ? ', 'ap=bq', 'ap=bq', 'bp=aq', 'কোনোটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4078, 'a=2 , b=3 হলে 2a+4b এর সাথে 2a2+a-b যোগ করলে যোগফল কত হবে ?', '15', '23', '19', '17', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4079, 'a=2b=3c এবং abc=36 হলে c এর মান কত ?', '√2', '2√2', '3√2', '2', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4076, 'যদি Q/p =1/4 হয় , তবে ( P+Q ) / ( P-Q ) এর মান-', '5/3', '2/3', '3/5', '5/7', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4074, 'a+b = 2, a-b = 0 হলে a/b= কত ?', '0', '1', '2', '4', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4075, 'y=x2 সমীকরণে x=3 বসালে y এর মান কত ?', '8', '9', '27', '15', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4071, 'যদি x = -1 হয় তাহলে 3x3+2x2+x+1 = কত ?', '-5', '1', '-1', '2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4072, 'a=(1/2) হলে (2a+1) (4a2-2a+1) এর মান কত ?', '0', '1', '3', '2', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46');
INSERT INTO `questions` (`id`, `question`, `opt_A`, `opt_B`, `opt_C`, `opt_D`, `correct_opt`, `catagory_id`, `user_id`, `created_at`, `updated_at`) VALUES
(4073, 'a= 1, b = -1, c = -2 , d = -2 হলে a-(-b)-(-c)-(-d) এর মান কত ?', '0', '1', '2', '3', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4069, 'রাশিমালার মান নির্ণয় 3x যদি 15 থেকে 3 বেশি হয় , তাহলে 3x+2 = কত ?', '17', '18', '20', '21', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4070, 'x এর মান কত হলে x2 এবং x3 এর মান সমান হবে ?', '0', '1', '2', '3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4065, '{(mn-n2 )/ (m+n )} / {( n-m)/ m }কত ?', '-mn/(m+n)', '(m-n)/m', '(m+n)/(m-n)', 'mn/(m+n)', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4066, '{(1/a)+1} / {1-(1/a2 )} কত ?', 'a/ ( a+1 )', 'a/ ( a-1 ) ', 'a(a+1)', 'a(a-1)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4067, '2x3-5x2+4 x = 0 সমীকরণের x এর সহগ কত ?', '-5', '4', '2', '0', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4068, 'x কে চলক ধরে a2x+b = 0 সমীকরণের ঘাত নিচের কোনটি ?', '1', '2', '3', '0', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4062, ' ( x+3 ) ( x-3 ) কে x2-6 দিয়ে ভাগ করলে ভাগশেষ কত ?', '-6', '3', '6', '-3', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4063, '( x2+3x2 ) /( x+ 3x2 ) এর লঘিষ্ট রূপ নিচের কোনটি ?', 'x2', 'x', '1', '0', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4064, ' { a(a+b) } /a-b কে (a+b)/(a3-b3 ) দিয়ে ভাগ করলে ভাগফল কত হবে ?', 'a2 - b2', '(a3+a2b+ab2) / (a+b)', 'a3 + a2b + ab2', 'a2 + ab +b2', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4060, '10a2b4 কে 5a2b2 দ্বারা ভাগ করলে ভাগফল কত হবে ? ', '2a2b2', '2b2', '2ab', '2a2', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4061, 'x3-x2 কে x-2 দ্বারা ভাগ করলে অবশেষ কত ?', '2', '6', '4', '-8', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4058, '{(a-b )/ab} +{(b-c )/ bc }+ {( c-a ) /ca } = কত ?', '0', '1', '0.5', '0.25', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4059, '{(x+y)/x} +{ (x-y)/ y } - {( x2-y2)/xy} = কত ?', 'y/x', 'x/y', '2x/y', '2y/x', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4055, 'x/y এর সাথে কত যোগ করলে যোগফল 2y/x হবে ?', ' (2y2 - x2 )/xy', ' ( x2 - 2y2 )/xy', '( 2x2 - y2 )/xy', ' ( x2 - y2 )/xy', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4056, 'x/y এর সাথে কত যোগ করলে যোগফল y/x হবে ?', ' ( x2 - y2 )/xy', ' ( 2x2 - y2 )/xy', ' ( y2 + x2 )/xy', ' ( y2 - x2 )/xy', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4057, '(a2+b2-c2+2ab) / ( a2-b2+c2+2ac ) = কত ?', 'a+b+c', '(a+b +c)/ (a-b+c)', '(a-b+c)/(a+b-c)', '(a+b-c)/(a+b+c)', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4051, 'x=√3+√2 হলে x3+ ( 1/x3 ) এর মান কত ?', '3√2', '18√3', '12√3', '8', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4052, 'বীজগাণিতীয় রাশিমালা a-[a-{a-(a-a-1)}] = কত ? ', 'a', '-1', 'a - 1', 'a + 1', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4053, 'a-{a-(a+1)} = ?', 'a + 1', 'a - 1', '1', 'a', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4054, 'x-[x-{x-(x+1)}] এর মান কত ? ', 'x+1', '1', '-1', 'x-1', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4048, 'x- ( 1/x ) = 1 হলে x3 - (1/x3 ) এর মান কত?', '1', '2', '3', '4', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4049, 'a- ( 1/a )= 3 হলে a3- ( 1/a3 ) এর মান কত?', '9', '36', '27', '18', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4050, 'x- (1/x ) = 7 হলে x3-(1/x3) এর মান কত ?', '334', '154', '364', '512', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4046, 'x+ ( 1/x ) = 3 হলে x3+ ( 1/x3 ) এর মান কত?', '18', '24', '12', '16', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4047, 'a+ (1/a ) =√3 হলে a3+ ( 1/a3 ) = কত?', '3√3', '2√3', '0', '9', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4044, 'a+b+c = 0 হলে a3+b3+c3 এর মান কত? ', 'abc', '3abc', '6abc', '9abc', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4045, 'x+ ( 1/x ) = a হলে x3+ ( 1/x3 ) এর মান কত?', 'a2 - 3a', 'a4 + 3a', 'a3 - 3a', '2a3 - 3a', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4042, 'যদি a3-b3= 513এবং a-b = 3 হয় তবে ab এর মান কত?', '54', '35', '45', '55', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4043, 'a+b = c হলে a3+b3+3ab= কত?', 'a3', 'b3', 'c3', '0', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4040, ' যদি a+b+c =5 ,a2+b2+c2 =9 হলে ab+bc+ca এর মান কত ?', '16', '8', '34', '12', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4041, 'x+y+z =3 এবং x2+y2+z2 হলে xy+yz+zx এর মান কত ?', '0', '1', '2', '3', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4038, 'x+ ( 1/x ) = 5 হলে x/ ( x2+x+1 ) এর মান কত ?', '0.5', '0.3333333333333333', '0.25', '0.16666666666666666', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4039, 'a+b+c =9 ,a2+b2+c2 =29 হলে ab+bc+ca এর মান কত ?', '52', '46', '26', '22', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4036, 'দুটি ধনাত্মক সংখ্যার বর্গের 8 গুনফল 3 , সংখ্যা দুটির বর্গের সমষ্টি কত ?', '10', '4', '13', '25', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4037, ' দুটি সংখ্যার বর্গের সমষ্টি 13 এবং গুনফল 6 হলে সংখ্যা দুটির বর্গের অন্তরফল কত ?', '4', '5', '7', '5', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4035, 'দুটি ধনাত্মক সংখ্যার পার্থক্য 6 এবং এদের বর্গের পার্থক্য 108 / সংখ্যা দুটির যোগফল হবে', '6', '18', '24', '12', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4032, ' যদি x2+ ( 1/x2 ) =38 হয়, তবে x-( 1/x ) =?', '±40', '±6', '±7', '±5', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4033, 'যদি a2 + ( 1/a2 )= 51 হয় a- (1/a) তবে এর মান কত ?', '±9', '±7', '±5', '±3', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4034, 'যদি a- (1/a ) =2 হয় , তবে a4+ ( 1/a4 ) = ?', '36', '32', '34', '40', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4031, 'x2-3x+1=0 হলে x2-( 1/x2 ) এর মান কত ?', '5√3', '3√5', '4√5', '6√5', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4030, 'a- (1/a ) =5√3 হলে a2+ ( 1/a2 ) এর মান কত ?', '60 √ 3', '60', '70√3', '77', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4028, 'a+ ( 1/a ) = 4 হলে a2+( 1/a2 ) এর মান কত ?', '14', '12', '16', '18', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4029, 'a+(1/a ) =√3 হলে a2+ ( 1/a2 )এর মান কত ?', '6', '4', '2', '1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4027, 'x+(1/x) = 2, হলে x এর মান কত ?', '2', '1', '0.5', '0.25', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4026, 'x-y = 2এবং xy = 24 হলে x এর ধনাত্মক মানটি -', '3', '5', '4', '6', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4024, '(a+b)2= 36 এবং (a-b)2 = 16 হলে ab এবং (a2+b2) এর মান যথাক্রমে-', '5,26', '5,13', '13,5', '5,5', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4025, ' a+b =7, a2 + b2 =25 হলে নিচের কোনটি ab এর মান হবে ?', '12', '10', '6', 'কোনোটিই নয়', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4022, ' x+y = 12 ,x-y =2 হলে xy এর মান -', '70', '35', '144', '140', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4023, 'x+y =√7 এবং y=x-√3 হলে xy এর মান কত ?', '3', '4', '2', '1', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4019, 'a+b =√ 5 এবং a-b = √3 হলে a2+b2 এর মান কত ?', '4', '4√ 2', '6', '√ 8', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4020, ' যদি (x-y)2 = 14 এবং xy= 2 হলে x2+y2= কত ?', '12', '14', '17', '18', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4021, ' যদি x+y= 3 এবং x-y =1 হয় তবে 4xy কত ?', '4', '2', '-8', '8', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4017, 'a-b = 3 এবং ab= 4 হলে a2+b2 এর মান কত ?', '17', '25', '11', '1', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4018, 'x+y =8 এবং x-y =6 হলে x2+y2 এর মান কত ?', '40', '60', '50', '80', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4013, '{ (0.7)2-(0.3)2 }/ ( 0.7+0.3 ) = কত ?', '0.4', '0.3', '0.7', '0.5', 'a', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4014, 'যদি অ+আ=15 ও অ-আ = 5 হয় তবে অ2-আ2 = কত ?', '25', '50', '75', '100', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4015, 'a+b = 5 এবং a-b = 3 হলে a2-b2 এর মান কত ?', '2', '8', '16', '15', 'd', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4016, 'If a-b = 7 and a+b = 13 What is the value of a2-b2?', '101', '91', '81', '71', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4009, 'a+b =9m এবং ab= 18 হলে a-b = ?', '3m', '-3 m', '8', 'ক ও খ উভয়ই', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4010, 'a2+2ab+b2 এর বর্গমূল কত ?', 'a+b', 'a-b', 'a+2b', 'a-2b', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4011, ' 1442-1432 = ?', '7', '147', '287', 'কোনোটিই নয়', 'c', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4012, '(152-42 )/ (162-42 ) = ?', '15/16', '209/240', '0.8808', '0.8908', 'b', 3, 1, '2019-02-16 05:45:46', '2019-02-16 05:45:46'),
(4006, 'a2+b2 এবং ab হলে a+b এর মান কত ?', '6', '7', '8', '9', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4007, 'x+y =6 এবং xy= 8 হলে (x-y) 2 এর মান কত ?', '4', '6', '8', '12', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4008, 'x+y = 7 এবং xy=10 হলে ( x–y) 2 এর মান কত ?', '3', '9', '6', '12', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4003, '(6a+9b) (7b-8a) রাশি দুটির বর্গের অন্তর কত ?', '(8a-a)2 - (b+7a )2', '(8a+a)2 - (b-7a )2', '(8a-a)2 + (b+7a )2', '(a+b)2/2 - (a+b)2/2', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4004, 'x2+y2=8 এবং xy= 7 হলে ( x+y)2 এর মান কত ?', '14', '16', '22', '24', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4005, 'x-y= 2এবং xy =3 হলে x + y এর মান কত ?', '4', '-4', '± 16', '± 4', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4001, '(x+y)2-(x-y)2=কত ?', 'x2', 'y2', 'x2-y2', '4xy', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4002, 'ab = কত ?', '(a+b)2/2 - (a+b)2/2', '(a+b)2/2 - (a-b)2/2', ' ( a2+b2 )/2 - (a2-b2)/2', '(a+b)2/2 +(a+b)2/2', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3998, ' -2ab+b2+a2=?', '(a+b)2', '(a-b)2', '(b+a)2', '(a2-b2)', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3999, '1 / 2 {(a+b)2+(a-b)2 }', 'a2+b2', 'a2-b2', '(a+b)2/2 - (a-b)2/2', '(a+b)2+(a-b)2', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(4000, 'দুটি রাশির বর্গের অন্তরফল কোনটি ?', '(a+b) (a-b) ', '(a2+b2)', '(a-b)(a-b)', '√a+b - √a-b', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3995, '(4x2-16) এবং (6x2 +24x+24) এর গ .সা . গু. - ', 'x+2', 'x+4', 'x+2', '2 (x+2)', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3996, 'x-2 ,x2-4 এবং x+2 এর গ .সা . গু. নীচের কোনটি ?', '0', '1', 'x-2', 'x+2', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3997, '(a+b)2= ?', 'a2+b2', 'a2-2ab+b2', 'a2+2ab+b2', '2a+2b', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3993, 'দুইটি সংখ্যার ল.সা.গু. a2b ( a+b ) এবং এবং গ.সা.গু. a (a+b) , একটি সংখ্যা a3+ a2b হলে অপর সংখ্যাটি কত ?', 'a2b+a2b2', 'a2b+ab2', 'ab2+a2b2', 'a3-b3', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3994, '2a ও 3 এর গ .সা . গু. কত ?', '1', '6', 'a', 'b', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3991, '3x2+9,x4-9 এবং x4+6x2+৯ এর ল .সা . গু. নির্ণয় করুন ।', '( x2+3 )2', '(x+3) 2', 'x+9', 'কোনটিই নয় ', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3992, 'দুইটি সংখ্যার ল.সা.গু. a এবং গ.সা.গু. b একটি সংখ্যা c হলে অপর সংখ্যাটি -', 'ab', 'bc', 'ab/c', 'ac/b', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3988, 'x2 - 3x +2 এবং x2-5x+6 এর ল .সা . গু. = কত ?', '(x-1) ( x-2) ( x-3 )', '(x+1) (x-2) (x+3)', '(x-1) (x+2) (x-3) ', '(x-2)', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3989, 'a2bc , ab2c , abc2 এর ল .সা . গু. -', 'abc', 'a2b2c2', '1', 'a3b3c3', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3990, 'a (a+b) , a2 (a-b) ল .সা . গু. কত ?', 'a2', 'a', 'a2 (a2-b2 )', 'a2-b2 ', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3984, 'x2-11x+30 এবং x3-4x2-2x-15 এর গ .সা . গু. কত ?', 'x-5', 'x-6', 'x2+x+3', 'x2-x+3', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3985, 'x3+x2y এবং x2y+xy2 এর ল .সা গু. কোনটি ?', 'xy', 'x+y', 'xy x+y', 'x2y x+y', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3986, 'x3y - xy3 এবং x2-y2 এর ল .সা . গু. কত ?', 'xy (x+y) (x-y)', 'xy (x+y)', 'xy (x-y)', '(x-y)', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3987, 'x3-1, x3 + 1 , x4 + x2 + 1 এর ল .সা . গু. কত ?', 'x8 - 1', 'x7 - 1', 'x6-1', 'x5-1', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3983, 'a + b,a2 - b2 এবং a3 + b3এর গ .সা . গু. কত ?', 'a2 - b2', 'a - b', '(a + b)2', 'a + b', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3982, 'কয়েকজন শ্রমিক একটি কাজ ১৮দিনে করে দিবে বলে ঠিক করে কিন্তু তাদের মধ্যে ৯ জন অনুপস্থিত থাকায় কাজতি ৩৬ দিনে সম্পন্ন হয়.৩৬ জন শ্রমিক নিযুক্ত হলে কতো দিনে কাজটি সম্পন্ন হত?', '১০দিন', '১৮দিনে', '১২দিনে', '৯ দিনে', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3981, '৩০ জন লোক কোন কাজ ২৪ দিনে করতে পারে।কাজ আরম্ভের ১২ দিন পর ১৫ জন লোক চলে গেলে বাকি লোক কত দিনে কাজটি করবে?', '২৪ দিনে', '২০ দিনে', '১৫ দিনে', '১২ দিনে', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3980, 'যদি ২০জন লোক একটি কাজের অর্ধেক করতে পারে ৩০দিনে তবে ঐ কাজ ৫০ দিনে করতে অতিরিক্ত কত জন লোক লাগবে?', '৮জন', '১০জন', '৪জন', '৬জন', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3979, 'একজন ঠিকাদার ২৫ দিনে একটি রাস্তার কাজ শেষ করতে ৩০ জন লোক নিয়োগ করলেন।কিন্তু ১৫ দিনে মাত্র রাস্তার অর্ধেক কাজ শেষ হয়।নির্ধারিত সময়ের মধ্যে রাস্তার কাজ শেষ করতে হলে তাকে অতিরিক্ত কতজন লোক নিয়োগ দিতে হবে?', '১৬জন', '১৪জন', '১২জন', '১৫জন', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3978, 'একটি ছাত্রাবাসে ১৫ জন ছাত্রের ৩২ দিনের খাবার আছে।কয়েকজন নতুন ছাত্র আসায় ২০ দিনে ঐ খাবার শেষ হলে নতুন ছাত্র সংখ্যা কত?', '১৭ জন', '৯ জন', '২০ জন', '২৪ জন', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3977, 'যে পরিমান খাবারে ২০০ জন লোকের ২০ সপ্তাহ চলে,ঐ পরিমান খাবারে কতজন লোকের ৮ সপ্তাহ চলবে?', '500', '600', '300', '400', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3976, 'একটি তেল পূর্ণ পাত্রের ওজন ৩২ কেজি এবং অর্ধেক তেলসহ পাত্রের ওজন ২০ কেজি।পাত্রটির ওজন কত?', '১০ কেজি', '১২ কেজি', '৮ কেজি', '৬ কেজি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3975, '৬ ফুট দীর্ঘ একটি বাঁশের ৪ ফুট দীর্ঘ ছায়া হয়।একই সময় একটি গাছের ছায়া ৬৪ ফুট লম্বা হয়। গাছটির উচ্চতা কত?', '৯৬ ফুট', '৭২ ফুট', ' ১৯২ ফুট', '৪৪ ফুট', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3974, 'রেডিওতে একটি বিজ্ঞাপন ১৫ মিনিট পর পর প্রচারিত হয় এবং বিজ্ঞাপনটি ১ মিনিট ধরে প্রচারিত হয়। সকাল ৮ টায় বিজ্ঞাপনটি প্রথম প্রচারিত হলে সকাল ৯ টা পর্যন্ত বিজ্ঞাপনটি কতবার প্রচারিত হবে?', '2', '4', '3', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3973, 'একটি রাস্তায় ১২৫ মিটার অন্তর বৈদ্যুতিক খুঁটি পোতা হচ্ছে.৮ কিঃমি দীর্ঘ রাস্তায় কতগুলো খুঁটির প্রয়োজন ছিল?', '৫০ টি', '৪৩ টি', '৬৫ টি', '৫১ টি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3972, ' ৬ টি গরুর জন্য যা খরচ যা,৪ টি মহিষের জন্য তা খরচ হয়। ১০ টি মহিষ পুষতে যা খরচ হয়, তাতে কইটি গরু পোষা যাবে?', '১৫ টি', '১৮ টি', '২০ টি', '২৫ টি', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3971, '১ ডজন ডিমের দাম ৬০ টাকা হলে,৪৫ টাকায় কয়টি ডিম পাওয়া যাবে?', '৮ টি', '৯ টি', '১০ টি', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3970, 'করিমের সাপ্তাহিক আয় ৩৫০০ টাকা হলে এই হিসেবে জুন মাসে তার কত টাকা আয় হয়েছিল?', '12000', '14000', '15000', '10400', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3969, 'রহিম ১ সপ্তাহে ৪৯ টি চেয়ার বানাতে পারে.২০১০ সালের ফেব্রুয়ারী মাসে সে কয়টি চেয়ার বানাতে পারবে?', '১৯৬ টি', '২০৩ টি', '২১০ টি', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3968, 'কোন কর্মকর্তা মাসিক ৩০০০০ টাকা বেতনে ২০১২ সালের ৭ ফেব্রুয়ারী কাজে যোগ দেয়।তিনি ঐ মাসে কত বেতন পাবেন?', '২৩০০০ টাকা', '২৪০০০.২০ টাকা', '২৩৭৯৩.১০ টাকা', '২৪৯১২ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3967, 'একটি পরিবারের দৈনিক ১.২৫ লিটার দুধ লাগে।দুধের দাম ৪০ টাকা লিটার হলে, ঐ পরিবারে জুন মাসে কত টাকার দুধ লাগে?', '১২০০ টাকার', '১৫০০ টাকার', '১৩০০ টাকার', '১৮০০ টাকার', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3966, 'তিন বন্ধু একত্রে আহার করল।প্রথম ও দ্বিতীয় বন্ধুর কাছে যথাক্রমে ১২ টি ও ৮ টি রুটি ছিল। তৃতীয় বন্ধু রুটির পরিবর্তে ৩ টাকা দিল।প্রথম অ দ্বিতীয় বন্ধু রুটি বাবদ পাবে কত?', '১.৫০ এবং ২.৫০ টাকা', '২.০০ এবং ১.০০ টাকা', '.৬০ এবং ২.৬০ টাকা', '২.৪০ এবং .৬০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3965, '৩ টি ঘোড়ার মূল্য ৫ টি গরুর মূল্যের সমান ও ২ টি গরুর মূল্য ৩ টি গাধার মূল্যের সমান।১ টি ঘোড়ার মূল্য ৭৫০০ হলে ৫টি গাধার মূল্য কতো?', '১৫০০০ টাকা', '২২৫০০ টাকা', '৩০০০০ টাকা', '৩১০০০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3964, '১৫ টি ভেড়ার মূল্য ৫ টি গরুর মূল্যের সমান। ২ টি গরুর মূল্য ৩০০০ টাকা হলে ৩ টি ভেড়ার মূল্য কতো?', '১৮০০ টাকা', '২০০০ টাকা', '১৫০০ টাকা', '১৬০০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3963, '১৮ টি ছাগলের দাম ৪ টি গরুর দামের সমান হলে,৪৫ টি ছাগলের পরিবর্তে কতোটি গরু পাওয়া যাবে?', '৭ টি', '৮ টি', '৯ টি', '১০ টি', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3962, 'একটি কলমের দাম ১০ টাকা এবং ১০ টি খামের দাম ৩ টাকা।৩ টি কলম ও ১০ টি খামের দাম কতো?', '33', '36', '39', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3961, 'এক কিলোগ্রাম চালের দাম ৮.৫০ টাকা হলে,এক কুইন্টাল চালের দাম কতো?', '১২২৫ টাকা', '৮৫ টাকা', '৬৭৫ টাকা', '৮৫০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3959, 'যদি ১৫ টি কলমের দাম ৪৬.৫ টাকা হয় তাহলে ২ টি কলমের দাম কতো?', '১০ টাকা', '৪.৫ টাকা', '৬.২ টাকা', '১২ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3960, '১০৫ কেজি ডাল এর দাম ৩,৬৭৫ টাকা হলে ৬০ কেজি ডালের দাম কতো?', '২,০৫০ টাকা', '২,২০০ টাকা', '২১০০ তাকা', '২১৫০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3958, 'টাকায় ১২টি লেবু বিক্রয় করায় ৪% ক্ষতি হলো। ৪৪% লাভ করতে হলে টাকায় কয়টি লেবু বিক্রয় করতে হবে? ', '৮টি ', '৯ টি', '১০টি ', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3955, '৫ টাকায় ২ টি করে কমলা কিনে ৩৫ টাকায় কয়টি কমলা বিক্রি করলে ৪০% লাভ হবে?', '৭টি ', '১২টি', '১০টি ', '১৫টি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3956, '৪ টাকায় ১ টি করে কমলা কিনে ২৮ টাকায় কয়টি কমলা বিক্রি করলে ২০% লাভ হবে?', '৬টি', '৪টি', '৭টি', 'কোনটিই নয়', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3957, 'টাকায় ৫টি মার্বেল বিক্রয় করায় ১২% ক্ষতি হলো। ১০% লাভ করতে হলে টাকায় কয়টি মার্বেল বিক্রয় করতে হবে? ', '৪টি ', '৩টি', '২টি', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3954, 'আব্দুল্লাহ প্রতি ডজন কলা ২১ টাকা দরে এবং ১৪ টাকা দরে ২০ ডজন ক্রয় করে। প্রতি ডজন কলা কী দামে বিক্রয় করলে গড়ে তার ডজনপ্রতি ৫ টাকা লাভ হবে?', '২০ টাকা', '২২ টাকা', '১৮ টাকা', '২৪ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3953, 'এক ব্যাক্তি একটি দ্রব্য ১২০০ টাকায় কিনে ১৫% লাভে বিক্রয় করলো। ক্রেতা ঐ দ্রব্য এক ব্যাক্তির কাছে ৫% ক্ষতিতে বিক্রয় করলো। শেষ বিক্রয় মূল্য কত?', '১২৮০ টাকা', '১২৮১ টাকা', '১৩১০ টাকা', '১৩১১ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3952, '৮ টি দ্রব্য ৫ টাকায় ক্রয় করে ১৬ টি দ্রব্য কতো টাকায় বিক্রয় করলে ১০% লাভ হবে? ', '৯ টাকা', '১০ টাকা', '১১ টাকা', ' ১২ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3951, '৫৩৫ টাকায় একটি জামা বিক্রি করে শতকরা ৭ ভাগ লাভ হয়, জামাটি কত টাকায় বিক্রি করলে শতকরা ২০ ভাগ ক্ষতি হবে? ', '৪০০ টাকা', '৪৫০ টাকা', '৫৫০ টাকা', '৫০০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3950, 'একজন দোকানদার কিছু ডাল ২৩৭৫ টাকায় বিক্রয় করায় তার ৫% ক্ষতি হলো। ঐ ডাল কতো টাকায় বিক্রয় করলে তার ৬% লাভ হতো?', '২৫৫০ টাকা', '২৬৫০ টাকা', '২৬০০ টাকা', '২৫০০ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3948, '১৫০ টাকা দিয়ে একটি ক্রয় করে কতো টাকায় বিক্রি করলে ৩০% লাভ হবে? ', '১৯৫ টাকা ', '১৮০ টাকা', '৯০ টাকা', '৪৫ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3949, 'একটি দ্রব্য ৪০০ টাকায় ক্রয় করে ২০% ক্ষতিতে বিক্রয় করা হল। দ্রব্যটির বিক্রয় মূল্য কতো?', '৩৫০ টাকা', '২৮০ টাকা', '২৪০ টাকা', '৩২০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3947, 'একটি খাতা ৩৬ টাকায় বিক্রি করলে যতো ক্ষতি হয় ৭২ টাকায় বিক্রি করলে তার দ্বিগুণ লাভ হয়, খাতাটির ক্রয়মূল্য কত?', '৬০ টাকা', '৪৮ টাকা', '২৪ টাকা', '১২ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3946, 'একটি ছাতা ৩৭৮ টাকায় বিক্রয় করলে যত ক্ষতি হয়, ৪৫০ টাকায় বিক্রয় করলে তার তিনগুণ লাভ হয়। ছাতাটির ক্রয়মূল্য কত?', '৩৬৯ টাকা', '৩৯৬ টাকা', '৬৯৩ টাকা', '৬৩৯ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3944, '৫০ টাকায় আটটি ডিম বিক্রি করায় ২৫% ক্ষতি হলো। প্রতি ডজন ডিমের ক্রয়মূল্য কত?', '১০০ টাকা', '৯০ টাকা', '৮০ টাকা', '১২০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3945, 'একজন ব্যবসায়ী ১২% লাভে কাপড় বিক্রয় করে ১২০০ টাকা লাভ করে। সে কত টাকার কাপড় ক্রয় করেছিলো?', '১০০০ টাকা', '১২০০০ টাকা', '১০০০০ টাকা ', '৯০০০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3943, 'একজন বিক্রেতা ১২.৫% ক্ষতিতে একটি জিনিস বিক্রি করেন। যে মূল্যে তিনি জিনিসটি বিক্রি করলেন, তার থেকে ৩০ টাকা বেশি মূল্যে বিক্রি করলে ক্রয়মূল্যের উপর তার ২৫% লাভ হতো। জিনিসটির ক্রয়মূল্য কতো?', '৭৫ টাকা', '৮০ টাকা', '৮৫ টাকা', '৯০ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3941, 'একটি জিনিস ২৪ টাকায় বিক্রি করলে ২০% লাভ হয়। জিনিসটির ক্রয়মূল্য কত?', '১৫ টাকা', '১৬ টাকা', '২০ টাকা', '১৮ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3942, 'একটি ছাগল ৮% ক্ষতিতে বিক্রয় করা হলো । ছাগলটি আরো ৮০০ টাকা বেশি মূল্যে বিক্রয় করলে ৮% লাভ হত। ছাগলটির ক্রয়মূল্য কত?', '৪৫০০ টাকা', '৫৪০০ টাকা', '৬০০০ টাকা', ' ৫০০০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3940, 'দুটি সংখ্যার গ. সা. গু, বিয়োগফল ও ল. সা. গু যথাক্রমে ১২,৬০ এবং ২৪৪৮।সংখ্যা দুটি কতো?', '১০৪, ২০৪', '১০৪, ১৪৪', '১০৪, ২৪৪', '১৪৪, ২০৪', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3937, 'দুইটি সংখ্যার গুনফল ৩৩৮০ এবং গ. সা. গু ১৩।সংখ্যা দুটির ল. সা. গু কতো?.', '130', '780', '490', '260', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3938, 'দুটি সংখ্যার গ. সা. গু. ১১ এবং ল. সা. গু. ৭৭০০। একটি সংখ্যা ২৭৫ হলে, অপর সংখ্যাটি কতো?', '318', '283', '308', '279', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3939, 'দুটি সংখ্যার অনুপাত ৫ꓽ৬ এবং তাদের ল. সা. গু ৩৬০ হলে সংখ্যা দুটি কি কি?', '৪৫,৫৪', '৫০,৬০', '৬০,৭২', '৭৫,৯০', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3935, '২ টি সংখ্যার গ. সা. গু. ও ল.সা.গু এর গুনফল সংখ্যা ২ টির-', 'যোগফলের সমান', 'গুনফলের সমান', 'বিয়োগফলের সমান', 'ভাগফলের সমান', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3936, 'দুইটি সংখ্যার গুনফল ২৬৪। সংখ্যা দুটির ল. সা. গু ১৩২ হলে গ. সা. গু কতো?.', '2', '4', '3', '6', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3934, 'একটি ঘোড়ার গাড়ির সামনের চাকার পরিধি ৪ মিটার, পেছনের গাড়ির চাকার পরিধি ৫ মিটার।গাড়িটি কতো পথ গেলে সামনের চাকা পেছনের চাকার চেয়ে ২০০ বার বেশি ঘুরবে?', '১.২ কি. মি', '২.৫ কি.মি', '৪ কি. মি', '৬ কি. মি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3933, 'একটি স্কুলে ছাত্রদের ড্রিল করাবার সময় ৮,১০ এবং ১২ সারিতে সাজান যায়। ওই স্কুল এ কতজন ছাত্র আছে কমপক্ষে?', '3600', '2400', '1200', '3000', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3932, 'কোন সেনাবাহিনিতে যদি আর ১১ জন সৈন্য নিয়োগ করা যেত তবে তাদেরকে ২০,৩০,৪০,৫০ ও ৬০ সারিতে দাড় করানো যেত। ওই সেনাবাহিনিতে কতজন সদস্য ছিল?', '৫৯ জন', '৭৯ জন', '৫৮৯ জন', '৬১৯ জন', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3931, '৫ টি ঘণ্টা একত্রে বেজে যথাক্রমে ৫,১০,১৫,২০,২৫ সেকেন্ড অন্তর অন্তর আবার বাজতে লাগল, কত্তক্ষন পর ঘণ্টাগুলো আবার একত্রে বাজবে?', '৫ মিনিট', '৬ মিনিট', ' ১০ মিনিট', '৫ ঘণ্টা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3929, 'সর্বমোট কতো সংখ্যক গাছ হলে একটি বাগান ৭,১৪,২১,৩৫ ও ৪২ সারিতে গাছ লাগালে একটি কম বা বেশি ও হবেনা?', '210', '220', '230', '260', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3930, 'কতকগুলো ঘণ্টা একত্রে বাজার ১সে.,১৫ সে., ২০সে. এবং ২৫ সে. পরপর বাজতে লাগবে।উহারা আবার কতক্ষন পর একত্রে বাজবে?', '১ মি. ২০ সে.', '১ মি. ৩ সে.', '৩ মি.', '৫ মি.', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3928, '৯৯৯৯৯ এর সঙ্গে কোন ক্ষুদ্রতম সংখ্যা যোগ করলে যোগফল ২,৩,৪,৫ এবং ৬ দ্বারা নিঃশেষে বিভাজ্য হবে?', '39', '21', '33', '29', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3926, 'এমন একটা লঘিষ্ঠ সংখ্যা নির্ণয় কর যাকে ১৫,১৮,২১ এবং ২৪ দ্বারা ভাগ করলে প্রত্যেক ক্ষেত্রে ২ অবশিষ্ট থাকে?', '2522', '3', '2518', '2520', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3927, 'কোন ক্ষুদ্রতম সংখ্যাকে ৩,৫,৬ দিয়ে ভাগ করলে প্রত্যেকবার ভাগশেষ হবে ১?', '71', '41', '31', '39', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3925, 'কোন ক্ষুদ্রতম সংখ্যাকে ৪,৫ ও ৬ দিয়ে ভাগ করলে প্রত্যেকবার ৩ অবশিষ্ট থাকে?', '33', '43', '53', '63', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3924, 'কোন লঘিষ্ঠ সংখ্যার সাথে ২ যোগ করলে যোগফল ১২,১৮ এবং ২৪ দ্বারা বিভাজ্য হবে?', '89', '70', '170', '142', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3923, 'কোন ক্ষুদ্রতম সংখ্যার সাথে ১ যোগ করলে যোগফল ৩,৬,৯,১২,১৫ দ্বারা নিঃশেষে বিভাজ্য হবে?', '359', '361', '179', '721', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3921, 'কোন ক্ষুদ্রতম পূর্ণবর্গ সংখ্যা ৯,১৫ এবং ২৫ দ্বারা বিভাজ্য?', '75', '225', '1125', '900', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3922, 'কোন ক্ষুদ্রতম সংখ্যা থেকে ৫ বিয়োগ করলে বিয়োগফল ৬ এবং ১০ দ্বারা নিঃশেষে বিভাজ্য হবে?', '35', '30', '65', '125', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3920, 'ক একটি মৌলিক সংখ্যা এবং ক,খ দ্বারা বিভাজ্য নয়।ক এবং খ এর ল.সা.গু কতো?', '1', '১ক', 'কখ', '১খ', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3919, '৫,৬,১০ ও ১৫ এর ল.সা.গু কতো?', '60', '30', '50', '90', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3918, 'কোন বিক্রেতা কে ৩∙ ২৫ টাকা, ৪∙৭৫ টাকা,১১∙৫০ টাকা একই ধরনের মুদ্রা দ্বারা পরিশোধ করতে হলে সবচেয়ে বড় কত পয়সার মুদ্রা প্রয়োজন?', '10', '15', '50', '25', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3916, 'কতজন বালক কে ১২৫ টি কমলালেবু এবং ১৪৫ টি কলা সমানভাবে ভাগ করা যায়?', '২৫ জনকে', '১৫ জনকে', '৩৫ জনকে', '৫ জনকে', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3917, 'কতজন শিশুর মধ্যে কোন ফল না ভেঙ্গে ১১৫ টি কমলালেবু এবং ১৩৫ টি কলা সমানভাবে ভাগ করা যায়?', '5', '10', '12', '15', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3914, 'কোন বৃহত্তম সংখ্যা দিয়ে ১০২ ও ১৮৬ কে ভাগ করলে প্রত্যেকবার ৬ অবশিষ্ট থাকবে?', '12', '15', '16', '22', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3915, 'তিনটি পরস্পর সহ মৌলিক সংখ্যার প্রথম ২ টি সংখ্যার গুনফল ৯১, শেষ দুইটির গুনফল ১৪৩ হলে, সংখ্যা তিনটি কত?', '৭,১১,১৩', '৭,১৩,১১', '১১,৭,১৩', '১১,১৩,১৭', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3910, ' ৫ থেকে ১০ পর্যন্ত মৌলিক সংখ্যাগুলোর গুনফল কত?', '35', '30', '25', '20', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3911, '৩৩ এর উৎপাদক কত?', '10', '12', '3', '15', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3912, '৪০,৬০ এবং৮০ এর গ.সা.গু কত?', '4', '6', '8', '12', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3913, 'প্রথম ও দ্বিতীয় সংখ্যার গুনফল ৪২ এবং দ্বিতীয় ও তৃতীয় সংখ্যার গুনফল ৪৯। দ্বিতীয় সংখ্যাটি কত?', '8', '7', '6', '5', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3909, '৩ থেকে ১০ পর্যন্ত মৌলিক সংখ্যাগুলোর গুনফল কত?', '35', '15', '105', '142', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3907, '৬০ থেকে ৮০ এর মধ্যবর্তী বৃহত্তর ও ক্ষুদ্রতম মৌলিক সংখ্যার অন্তর কত?', '8', '18', '12', '140', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3908, '১০ থেকে ৬০ পর্যন্ত যে সকল মৌলিক সংখ্যার একক স্থানীয় অঙ্ক ৯,তাদের সমষ্টি কত?', '146', '99', '105', '107', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3905, '৩০ ও ৪০ এর মধ্যবর্তী বৃহত্তর ও ক্ষুদ্রতম মৌলিক সংখ্যার ব্যবধান কত?', '6', '5', '9', '7', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3906, '৩০ থেকে ৮০ এর মধ্যবর্তী বৃহত্তর ও ক্ষুদ্রতম মৌলিক সংখ্যার ব্যবধান কত?', '35', '42', '48', '55', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3904, '৪৩ থেকে ৬০ এর মধ্যে মৌলিক সংখ্যার সংখ্যা-', '5', '3', '7', '4', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3902, '৫০ হতে ১০৩ পর্যন্ত কতোটি মৌলিক সংখ্যা আছে?', '১০ টি', ' ১১ টি', '১২ টি', '১৩ টি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3903, '২ ও ৩২ এর মধ্যে মৌলিক সংখ্যা কয়টি?', '১১টি', '৯ টি', '৮ টি', '১০ টি', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3899, '১ থেকে ৩০ পর্যন্ত কয়টি মৌলিক সংখ্যা আছে?', '১১ টি', '৮ টি', '১০ টি', '৯ টি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3900, 'প্রদত্ত সংখ্যাগুলোতে মৌলিক সংখ্যা কোনটি?', '72', '63', '87', 'কোনটিই নয়', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3901, 'কোনটি মৌলিক সংখ্যা নয়?', '39', '29', '23', '13', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3896, 'মৌলিক সংখ্যা কোনটি?', '9', '47', '28', '63', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3897, 'কোন সংখ্যাটি মৌলিক সংখ্যা?', '143', '91', '47', '87', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3898, 'কোন সংখ্যাটি অন্য রকম?', '43', '23', '19', '16', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3894, '√১৫∙৬০২৫=?', '৩∙৯৫', '৩∙৭৫', '৩∙৮৫', '৩∙৬৫', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3895, 'ক্ষুদ্রতম মৌলিক সংখ্যা কোনটি?', '7', '3', '2', '5', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3892, '√১৬৯ এর বর্গমূল কত?', '11', '13', '15', '17', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3893, '√১৬৯=১৩ হলে √১২১=?', '14', '16', '11', '12', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3891, '³√5 সংখ্যাটি কি সংখ্যা?', 'একটি মুলদ সংখ্যা', 'একটি পূর্ণ সংখ্যা', 'একটি মৌলিক সংখ্যা', 'একটি অমুলদ সংখ্যা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3890, 'কোন সংখ্যাটি √২ ও √৩ এর মধ্যবর্তী মুলদ সংখ্যা?', '(√৩+√২)/২', '(√৩+√২)/২', '১∙৫', '১∙৮', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3889, 'কোনটি অমূলদ সংখ্যা?', '∏', '√2', '√11', 'সবগুলো', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3887, '√২ সংখ্যাটি কি সংখ্যা?', 'একটি স্বাভাবিক সংখ্যা', 'একটি পূর্ণ সংখ্যা', 'একটি অমুলদ সংখ্যা', 'একটি মুলদ সংখ্যা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3888, '৩√২ সংখ্যাটি কোন ধরনের সংখ্যা?', 'মুলদ সংখ্যা', 'অমুলদ সংখ্যা', 'জটিল সংখ্যা', 'বাস্তব সংখ্যা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3886, 'যদি P একটি মৌলিক সংখ্যা হয়, তবে √p কি?', 'একটি স্বাভাবিক সংখ্যা', 'একটি পূর্ণ সংখ্যা', 'একটি মুলদ সংখ্যা', 'একটি অমুলদ সংখ্যা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3884, 'P দ্বারা কোন সেট কে বোঝানো হয়?', 'মুলদ সংখ্যা', 'অমূলদ সংখ্যা', 'মৌলিক সংখ্যা', 'জটিল সংখ্যা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3885, 'বাস্তব সংখ্যার ক্ষেত্রে অভেদ উপাদান-', '0,1', '1, -1', '2, -2', '5 , 10', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3882, 'স্বাভাবিক সংখ্যার সেট বোঝায় কোনটি?', 'N', 'P', 'Q', 'Z', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3883, 'যে সংখ্যাকে দুটি পূর্ণ সংখ্যার ভাগফল আকারে প্রকাশ করা যায়না তাকে কি বলে?', 'মুলদ সংখ্যা', 'স্বাভাবিক সংখ্যা', 'জটিল সংখ্যা', 'অমূলদ সংখ্যা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3881, 'যদি X কে ৭ দিয়ে ভাগ করা হয় তবে ভাগশেষ ৫ থাকে।যদি ৩x কে ৭ দিয়ে ভাগ করা হয় তবে ভাগশেষ কত থাকবে?', '1', '3', '5', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3880, 'একটি সংখ্যাকে ৬৪ দ্বারা ভাগ করলে ৬৩ অবশিষ্ট থাকে।কিন্তু ঐ সংখ্যাকে ৩২ দ্বারা ভাগ করলে কত অবশিষ্ট থাকবে?', '32', '31', '52', '29', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3878, 'প্রদত্ত সংখ্যাগুলোর মধ্যে কোনটির ভাজক সংখ্যা বিজোড়?', '2048', '512', '1024', '48', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3879, 'একটি সংখ্যাকে ১০২ দিয়ে ভাগ করলে ভাগশেষ ২৩ থাকে।যদি ঐ সংখ্যাকে ১৭ দিয়ে ভাগ করা হয় তবে ভাগশেষ কত?', '1', '3', '6', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3875, ' কোন সংখ্যাটি ৮ দ্বারা নিঃশেষে বিভাজ্য নয়?', '156', '648', '744', '472', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3876, '১০০৮ এর কতোটি ভাজক আছে?', '20', '24', '28', '30', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3877, 'কোন পূর্ণ সংখ্যাটির সর্বাধিক সংখ্যক ভাজক আছে?', '91', '88', '95', '99', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3874, '৯ দিয়ে বিভাজ্য ৩ অঙ্ক বিশিষ্ট একটি সংখ্যার প্রথম অঙ্ক ৩, তৃতীয় অঙ্ক ৮ হলে মধ্যম অঙ্কটি কত?', '6', '7', '8', '9', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3873, 'কোন ভাগ অঙ্কে ভাজক ৭৮,ভাগফল ২৫ এবং ভাগশেষ ০ হলে ভাজ্য কত?', '1800', '1950', '2150', '2230', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3872, '৫৫৫ এর সর্বডানের অঙ্কের স্থানীয় মান কত?', '5', '6', '7', '8', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3871, 'পাঁচ অংকের বৃহত্তম সংখ্যা হতে পাঁচ অঙ্কের ক্ষুদ্রতম সংখ্যা বিয়োগ করলে কত হবে?', '99999', '89999', '99998', '10000', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3869, '১ থেকে ১০০ পর্যন্ত লিখতে ১ সংখ্যাটি কতবার ব্যবহৃত হয়? ', '11', '14', '21', '20', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3870, '১,২,৩ দ্বারা গঠিত ৩ অঙ্কের যতটি সংখ্যা লেখা যায়,তাদের সমষ্টি কত?', '1223', '1233', '1322', '1332', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3868, 'যদি তুমি ১ থেকে ১০০ পর্যন্ত গণনা করো, তবে এর মধ্যে কতটি ৫ পাবে?', '10', '20', '19', '11', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3866, '১, ২ ও ৩ দ্বারা গঠিত ৩ অঙ্কের যতটি সংখ্যা লেখা যায়, তাদের সমষ্টি কতো?', '1332', '1223', '1233', '1322', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3867, '০, ১, ২ এবং ৩ দ্বারা গঠিত চার অঙ্কের বৃহত্তম এবং ক্ষুদ্রতম সংখ্যার বিয়োগফল-', '3147', '2287', '2987', '2187', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3864, 'পাঁচ অঙ্কের ক্ষুদ্রতম সংখ্যা এবং চার অঙ্কের বৃহত্তম সংখ্যার অন্তর কতো?', '9', '10', '-1', '1', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3865, '০, ১, ৪, ৬, ৯ এই সংখ্যাগুলো এক বা একাধিকবার ব্যবহার করে পাঁচ অঙ্কের ক্ষুদ্রতম সংখ্যা কতো?', '1469', '90146', '10469', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3862, '৬৬৬ সংখ্যাটিতে সর্ববামের ৬ এর মান কতো?', '60', '6', 'কোনটিই নয়', '600', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3863, 'পাঁচ অঙ্কের বৃহত্তম ও ক্ষুদ্রতম সংখ্যার যোগফল কতো?', '109999', '89999', '100009', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3860, 'স্বাভাবিক সংখ্যার ক্ষুদ্রতম সদস্য কোনটি?', '1', '0', 'অসীম', 'সবগুলো', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3861, ' একটি সংখ্যার শতক, দশক ও একক স্থানীয় অংক যথাক্রমে p, q, r হলে সংখ্যাটি হবে-', '১০০r+ 10p+ q', '১০০p+ ১০q+ r', '১০০q+ ১০r+ p', '১০০pq+r', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3859, 'ধানে চাল ও তুষের অনুপাত ৭ꓽ৩ হলে এতে শতকরা কি পরিমান চাল আছে?', '70', '50', '60', 'কোনটি নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3858, 'কাগজের পূর্ব মূল্যꓽবর্তমান মূল্য꓿২ꓽ৩, পূর্বের তুলনায় কাগজের মূল্য শতকরা কত বৃদ্ধি পেয়েছে?', '60', '50', '40', '30', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3856, '২ টি সংখ্যার অনুপাত ৫ꓽ৮।উভয়ের সাথে ২ যোগ করলে অনুপাতটি হবে ২ꓽ৩ হয়।সংখ্যা ২ টি কি কি? ', '১০ ও ১৬', '৭ ও ১১', '১০ ও ১৪', '১২ ও ১৮', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3857, '২ টি সংখ্যার বিয়োগফল ৬৬,এবং তাদের অনুপাত ৭ꓽ৫ হলে সংখ্যাদ্বয় কত?', '২২২, ১৬৫', '223116', '২৩১ , ১৬৫', '190124', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3855, '২ টি সংখ্যার যোগফল ৮। যদি সংখ্যাগুলো ৩ꓽ১ অনুপাতে থাকে তবে সংখ্যাগুলোর গুনফল হবে-', '10', '12', '15', '18', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3853, 'একটি দ্রব্য ২৫% লাভে বিক্রয় করলে উহার ক্রয়মূল্য ও বিক্রয় মূল্যের অনুপাত কত?', '৫ꓽ৪', '৪ꓽ৬', '৫ꓽ৬', '৪ꓽ৫', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3854, '১০০০০ টাকা ১ꓽ৩ অনুপাতে ভাগ করলে বৃহত্তর ও ক্ষুদ্রতর অংশের পার্থক্য হবে-', '৭৫০০ টাকা', '২৫০০ টাকা', '৩০০০ টাকা', '৫০০০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3851, 'একটি জিনিস ১২০ টাকায় ক্রয় করে ১৪৪ টাকায় বিক্রি করলে,ক্রয়মূল্য ও লাভের অনুপাত কত হবে?', '৫ꓽ১', '১২ꓽ৫', '১৩ꓽ৭', '১৫ꓽ৮', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3852, 'একটি রাশি অপর রাশির ৬৪% হলে রাশি ২ টির অনুপাত কত?', '২০ꓽ২৫', '১৬ꓽ২৫', '১৫ꓽ২০', '২৫ꓽ৩০', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3849, '২৪ কে ৭ꓽ৬ অনুপাতে বৃদ্ধি করলে নতুন সংখ্যা হবে-', '28', '32', '35', '38', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3850, '৫৬ কে ৭ꓽ৮ অনুপাতে হ্রাস করলে নতুন সংখ্যা হবে-', '60', '49', '64', '70', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3846, 'দুইটি রাশির অনুপাত ৫ꓽ১১।উত্তর রাশি ৯৯,পূর্বরাশি কত?', '42', '45', '48', '56', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3847, 'If aꓽb꓿3ꓽ5 and aꓽc꓿5ꓽ7, What is the value of bꓽc?', '3ꓽ7', '21ꓽ35', '21ꓽ25', '25ꓽ21', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3848, 'একটি শ্রেণিতে ছাত্র এবং ছাত্রীর সংখ্যার অনুপাত ৯ꓽ৫। মোট শিক্ষার্থীর সংখ্যা ১০৫০ হলে ছাত্রের সংখ্যা কত?', '890', '785', '675', '730', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3844, 'দুইটি সংখ্যার অনুপাত ৯ꓽ১৫। পূর্ব পদ ৩৬ হলে উত্তরপদ কত?', '45', '30', '35', '60', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3845, 'aꓽb꓿৪ꓽ৭, bꓽc꓿৫ꓽ৬ হলে aꓽbꓽc কত?', '২০ꓽ৩৫ꓽ৪২', '২০ꓽ৪৪ꓽ৩৫', '৪ꓽ৭ꓽ৫', '৪ꓽ৭ꓽ৬', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3842, '৫ꓽ১৮, ৭ꓽ২, এবং ৩ꓽ৬ এর মিশ্র অনুপাত কত?', '৭২ꓽ১০৫', '৩৫ꓽ৭২', '৭২ꓽ৩৫', '১০৫ꓽ৭২', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3843, 'দুইটি রাশির অনুপাত ৪ꓽ৭।পুরবরাশি ১৬ হলে উত্তর রাশি কত?', '28', '24', '30', '35', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3840, '৩,৯ ও ৪ এর চতুর্থ সমানুপাতিক কত?', '12', '8', '16', '14', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3841, 'একটি ক্রমিক সমানুপাতের ১ম ও ৩য় রাশি যথাক্রমে ৪ ও ১৬ হলে,এর মধ্যবর্তী সমানুপাতি কত?', '12', '14', '8', '20', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3838, 'সমানুপাতের দ্বিতীয় ও তৃতীয় রাশিকে বলে-', 'মধ্য রাশি', 'প্রান্ত রাশি', 'মিশ্র রাশি', 'ক্রমিক রাশি', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3839, '৪: ৯ এর দ্বিভাজিত অনুপাত কোনটি', '১৬ꓽ৮১', '৪ꓽ৯', '৯ꓽ৪', '২ꓽ৩', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3837, 'অনুপাত কি?', 'একটি পূর্ণ সংখ্যা', 'একটি মৌলিক সংখ্যা', 'একটি ভগ্নাংশ', 'একটি জোড় সংখ্যা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3836, 'দুই ব্যক্তি একটি কাজ ৮ দিনে করতে পারে।প্রথম ব্যক্তি একাকি কাজটি ১২ দিনে করতে পারে। দ্বিতীয় ব্যক্তি একাকি কাজটি কত দিনে করতে পারবে?', '২০ দিনে', '২২দিনে', '২৪ দিনে', '২৬ দিনে', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3835, 'একটি লোক খারা উত্তর দিকে m মাইল অতিক্রম করে প্রতি মাইল 2 মিনিটে এবং খারা দক্ষিন দিকে পূর্ব স্থানে ফিরে আসে প্রতি মিনিটে 2 মাইল হিসেবে। লোকটির গড় গতিবেগ ঘণ্টায় কত মাইল?', '48', '45', '75', '24', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3834, 'বালক ও বালিকার একটি দলে নিম্নরুপ খেলা হচ্ছে।প্রথম বালক ৪ জন বালিকার সঙ্গে খেলছে, দ্বিতীয় বালক ৬ জন বালিকার সাথে খেলছে। যদি b বালকের সংখ্যা এবং g বালিকার সংখ্যা হয় তবে b=কত?', 'b=g', 'b/g', 'b=g-4', 'b=g-5', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3833, 'একটি ১০০০০ টাকার বিলের উপর এককালীন ৪০% কমতি এবং পরপর ৩৬% ও ৪% কমতির পার্থক্য কত টাকা?', '0', '400', '256', '144', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3831, 'দুই অঙ্ক বিশিষ্ট একটি সংখ্যার একক এর অঙ্ক দশকের অঙ্ক অপেক্ষা ৩ বেশি। সংখ্যাটি কত?', '47', '36', '25', '14', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3832, 'একটি ঘরিতে ৬ টার ঘণ্টাধ্বনি থিক ৬ টায় শুরু করে বাজতে ৫ সেকেন্ড সময় লাগে। ঐ ঘরিতে ১২ টার ঘণ্টাধ্বনি বাজতে কত সেকেন্ড সময় লাগবে? ঘণ্টার ধ্বনি সমান সময় ব্যবধানে বাজে।', '১০ সেকেন্ড', '১১ সেকেন্ড', '১২ সেকেন্ড', '১০ꓸ৫ সেকেন্ড', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3830, 'একটি স্কুল এ ছাত্রদের ড্রিল করাবার সময় ৮,১০ এবং ১২ সারিতে সাজানো যায়। ঐ স্কুলে কমপক্ষে কতজন ছাত্র আছে?', '1200', '2400', '3000', '3600', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3829, '5ꓽ18, 7ꓽ2 এবং 3ꓽ6 এর মিশ্র অনুপাত কত?', '35ꓽ72', '72ꓽ35', '72ꓽ105', '105ꓽ72', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3828, 'নৌকা ও স্রোতের বেগ ঘণ্টায় যথাক্রমে ১০ ও ৫ কিꓸমি।নদীপথে ৪৫ কিꓸমি দীর্ঘ পথ অতিক্রম করে ফিরে আসতে কত ঘণ্টা সময় লাগবে?', '৯ ঘণ্টা', '১২ ঘণ্টা', '১০ ঘণ্টা', '১৮ ঘণ্টা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3827, 'চিনির মূল্য ২৫% বৃদ্ধি পাওয়াতে একটি পরিবার চিনি খাওয়া এমন ভাবে কমালো যে চিনি বাবদ ব্যয় বৃদ্ধি পেলনা। ঐ পরিবার চিনি খাওয়া বাবদ খরচ শতকরা কত কমাল?', '0.22', '0.25', '0.2', '0.3', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3826, 'দুইটি সংখ্যার গুনফল ১৫৩৬। সংখ্যা ২ টির লꓸসাꓸগু ৯৬ হলে গꓸসাꓸগু কত?', '12', '24', '32', '16', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3824, 'ক এর বেতন খ এর বেতন অপেক্ষা শতকরা ৩৫ টাকা বেশি হলে,খ এর বেতন ক এর বেতন অপেক্ষা কত টাকা কম?', '২৭ টাকা', '২৫ꓸ৯৩ টাকা', '৪০ টাকা', '২৫ꓸ৫০ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3825, '১০ টি সংখ্যার যোগফল ৪৬২।এদের প্রথম ৪ টার গড় ৫২ এবং শেষের ৫ টার গড় ৩৮। পঞ্চম সংখ্যাটি কত?', '64', '62', '60', '50', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3823, 'ক ঘণ্টায় ১০ কিꓸমি এবং খ ঘণ্টায় ১৫ কিꓸমি বেগে একই সময় একই স্থান থেকে রাজশাহীর পথে রওনা হয়ে ক সকাল ১০ꓸ১০ মিনিটের সময় এবং খ সকাল ৯ꓸ৪০ মিনিটের সময় পুছাল। রওনা হওয়া স্থান থেকে রাজশাহীর দূরত্ব কত?', '১৫ কিলোমিটার', '২০ কিলোমিটার', '২৫ কিলোমিটার', '৩০ কিলোমিটার', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3822, 'চালের মূল্য ১২% কমে যাওয়ায় ৬০০০ টাকায় পূর্বাপেক্ষা ১ কুইন্টাল চাল বেশি পাওয়া জায়।এক কুইন্টাল চালের বর্তমান মূল্য কত?', '৭৫০ টাকা', '৭০০ টাকা', '৭২০ টাকা', '৭৮০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3821, 'শফি ও নয়ন বছরের প্রথমে একটি যৌথ কারবারে যথাক্রমে ১০০০০ টাকা ও ২০০০০ টাকা মূলধন বিনিয়োগ করে। ৪ মাস পরে শফি আর ও ৫০০০ টাকা বিনিয়োগ করে।বছরের শেষে মোট ১৫০০০ টাকা লাভ হলে শফি কত টাকা লাভ পাবে?', '9000', '5000', '6500', '6000', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3820, 'ক, খ ও গ ২৮০ টাকা নিয়ে কারবার শুরু করল।ক ও খ এর মূলধন সমান কিন্তু গ এর মূলধন ২০ টাকা কম। মোট ৫৬ টাকা লাভ হলে ,গ কত টাকা লাভ পাবে?', '১৪ টাকা', '১৬ টাকা', '২০ টাকা', '২৪ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3819, 'ক,খ, গ একত্রে ব্যবসা করে ১২০০ টাকা লাভ করে। যদি ক, খ, গ এর মুল্ধনের অনুপাত ৩ꓽ৪ꓽ৮ হয় তবে ক কত লভ্যাংশ পাবে?', '240', '230', '250', '220', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3818, 'কোন ব্যবসায় ক, খ ,গ এর মুল্ধন যথাক্রমে ৩২০,৪০০ এবং ৪৮০ টাকা।তাদের মূলধনের অনুপাত কত?', '১ꓽ২ꓽ৩', '৩ꓽ৪ꓽ৫', '৪ꓽ৫ꓽ৬', '৬ꓽ৮ꓽ১২', 'c ', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3817, 'কোন ব্যবসায় ক,খ,গ এর মূলধন যথাক্রমে ৩২০, ৪০০ এবং ৪৮০ টাকা।ব্যবসায় ৩০০ টাকা লাভ হলে ক অপেক্ষা গ কত টাকা বেশি পাবে?', '৬০ টাকা', '৮০ টাকা', '১২০ টাকা', '৪০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3816, 'এক দোকানদার ১১০ টাকা কেজি দামে কিছু চায়ের সঙ্গে ১০০ টাকা কেজি দ্বিগুণ পরিমান চা মিশ্রিত করে তা ১২০ টাকা কেজি দামে বিক্রি করে মোট ২০০০ টাকা লাভ করল। দোকানদার দ্বিতীয় প্রকারে কত কেজি চা ক্রয় করেছিল?', '৮০ কেজি', '১০০ কেজি', '৫০ কেজি', '৬০ কেজি', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3815, '৬৪ গ্রাম বালি ও পাথরের টুকরার মিশ্রনে বালির পরিমান ২৫%।কত কিলোগ্রাম বালি মিশালে নতুন মিশ্রনে পাথর টুকরার পরিমান ৪০% হবে?', '৪৮ কিলোগ্রাম', '৫৬ কিলোগ্রাম', '৬০ কিলোগ্রাম', '১১ কিলোগ্রাম', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3814, '৬০ লিটার কেরোসিন ও পেট্রোলের মিশ্রনের অনুপাত ৭ꓽ৩।ঐ মিশ্রনে আর কতটুকু পেট্রোল মিশালে অনুপাত ৩ꓽ৭ হবে?', '৬০ লিটার', '৭০ লিটার', '৮০ লিটার', '৯০ লিটার', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3813, 'একটি সোনার গহনার ওজন ১৬ গ্রাম।এতে সোনা ও তামার অনুপাত ৩ꓽ১।এতে কি পরিমান সোনা মেশালে অনুপাত ৪ꓽ১ হবে?', '৩ গ্রাম', '৬ গ্রাম', '৫ গ্রাম ', '৪ গ্রাম', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3812, '২৫ গ্রাম ওজনের একটি সোনার গহনায় সোনার ও তামার অনুপাত ৪ꓽ১।গহনাটিতে আর কতটুকু সোনা মিশালে এতে সোনা ও তামার অনুপাত ৫ꓽ১ হবে?', '৫ গ্রাম', '৬ গ্রাম', '১০ গ্রাম', '২০ গ্রাম', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3811, 'একটি জারে দুধ ও পানির অনুপাত ৫ꓽ১।দুধের পরিমান যদি পানি অপেক্ষা ৮ লিটার বেশি হয়,তবে পানির পরিমান কত? ', '৪ লিটার', '২ লিটার', '৬ লিটার', '৮ লিটার', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3809, '৭২ কেজি ওজন বিশিষ্ট একটি মিশ্রণ A এর ১৭ ভাগ, B এর ৩ ভাগ এবং C এর ৪ ভাগ দারা গঠিত। মিশ্রণে B কতোটুকু আছে?', '১২ কেজি ', '১৫ কেজি', '৭ কেজি', '৯ কেজি', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3810, 'একটি পাত্রে দুধ ও পানির অনুপাত ৫ꓽ২ ।যদি পানি অপেক্ষা দুধের পরিমান ৬ লিটার বেশি হয় তবে পানির পরিমান-', '৪ লিটার', '৬ লিটার', '১০ লিটার', '১৪ লিটার', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3808, 'শরবতে চিনি ও পানির অনুপাত ২ꓽ১১ হলে, ২৬ কাপ শরবতে চিনির পরিমান কত?', '৪ কাপ', '৫ কাপ', '৬ কাপ', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3807, '৬৩ লিটার পরিমান মিশ্রনে এসিড ও পানির অনুপাত ৭ ꓽ ২ , ঐ মিশ্রণে এসিড ও পানির পরিমাণ কত?', '২৪ লিꓸ, ৩৯ লিꓸ', '৩৯ লিꓸ, ২৪ লিꓸ', '৪৯ লিꓸ, ১৪ লিꓸ', '২৯লিꓸ, ৩৪ লি', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3806, 'পিতা ও পুত্রের বরতমান বয়সের সমষ্টি ৭০ বছর।সাত বছর আগে তাদের বয়সের অনুপাত ছিল ৬ꓽ১। ৫ বছর পরে তাদের বয়সের অনুপাত কত হবে?', '৪ ꓽ ১', '৩ ꓽ ১', '৫ ꓽ ২', '৭ ꓽ ২', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3805, '৩ বছর পূর্বে মা ও মেয়ের বয়স যথাক্রমে ২৭ বছর ও ২ বছর ছিল।৫ বছর পর তাদের বয়সের অনুপাত-', '২৭ꓽ২', '২৭ꓽ৫', '৩ꓽ২', '৭ꓽ২', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3804, 'পিতা ও পুত্রের বয়সের সমষ্টি ৬০ বছর।। ৫ বছর পরে তাদের বয়সের অনুপাত হবে ৫ ꓽ ২ বর্তমানে পুত্রের বয়স কত?', '15', '10', '20', '45', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3803, 'পিতা ও পুত্রের বয়সের অনুপাত ৭ꓽ৩। ৪ বছর পূর্বে তাদের বয়সের অনুপাত ছিল ১৩ꓽ৫। বর্তমানে কার বয়স কত?', '৫৬ বছর , ৩৪ বছর', '৫৬ বছর, ২৪ বছর', '৬৬ বছর,২৪ বছর', '৪৬ বছর, ৩৬ বছর', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3802, 'কন্যার বয়স পিতা ও পুত্রের বয়সের মধ্যে সমানুপাতি, পিতা ও পুত্রের বয়স যথাক্রমে ৪৮ ও ১২ হলে কন্যার বয়স হবে-', '১৬ বছর', '১৮ বছর', '২৪ বছর', '২০ বছর', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3801, 'লিটু একটি কাজ ১০ দিনে এবং রিটু তা ১৫ দিনে করতে পারে।তারা একদিনে একত্রে কাজ করে ২৫০ টাকা পায়। লিটু কত টাকা পায়?', '১০০ টাকা', '১২০ টাকা', '১৫০ টাকা', '১৮০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3800, 'ক,খ,গ এর বেতনের অনুপাত ৭ ꓽ ৫ ꓽ ৩ । খ,গ অপেক্ষা ২২২ টাকা বেশি পেলে, ক এর বেতন কত?', '777', '888', '555', '666', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3799, 'মেহের ও আজিজের মাসিক বেতন এর অনুপাত ৭ ꓽ ৫ এবং তাদের মাসিক বেতনের সমষ্টি ১২০০০ তাকা।তাদের বার্ষিক বর্ধিত বেতন যথাক্রমে ২০০ টাকা ও ১৫০ টাকা হলে এক বছর পরে তাদের বেতনের অনুপাত কত?', '১২০ꓽ১০৩', '১৪৪ꓽ১০৪', '১৪৪ꓽ১০৩', '১৪৪ꓽ১০৫', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3798, '২০ মিটার দীর্ঘ একটি রশিকে ২ ꓽ ৩ ꓽ ৫ অনুপাতে ভাগ করলে সবচেয়ে ছোট টুকরাটির দৈর্ঘ্য কত মিটার হবে?', '2', '4', '6', '10', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3796, '২৬১ টি আম তিন ভাইয়ের মধ্যে ১/৩ ꓽ ১/৫ ꓽ ১/৯ অনুপাতে ভাগ করে দিলে প্রথম ভাই কতটি আম পাবে?', '135', '90', '81', '45', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3797, '৬০ মিটার দৈর্ঘ্য বিশিষ্ট বাঁশকে ৩ ꓽ ৭ ꓽ ১০ অনুপাতে ভাগ করলে টুকরোগুলোর সাইজ কত?', '৮ মিꓸ, ২২ মিꓸ, ৩০ মিꓸ', '১০ মিꓸ, ২০ মিꓸ, ৩০ মিꓸ', '১২ মিꓸ, ২০ মিꓸ, ২৮ মিꓸ', '৯ মিꓸ, ২১ মিꓸ, ৩০ মিꓸ', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3795, '১০০০ টাকা ক ও খ ১ ꓽ ৪ অনুপাতে ভাগ করে নেয়। খ এর অংশ সে এবং তার মা ও মেয়ের মধ্যে ২ꓽ১ꓽ১ অনুপাতে ভাগ করে নেয়।মেয়ে কত টাকা পাবে?', '১০০ টাকা', '৪০০ টাকা', '২০০ টাকা', '৮০০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3793, '১৪৩ টাকাকে ২ ꓽ ৪ ꓽ ৫ অনুপাতে ভাগ করলে, বৃহত্তম ও ক্ষুদ্রতম অংশের পার্থক্য কত টাকা হবে?', '৪০ টাকা', '৪২ টাকা', '৩৬ টাকা', '৩৯ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3794, 'কিছু টাকা ক,খ,গ এর মাঝে সমানভাবে ভাগ করে দেয়া হল যাতে ক এর অংশ খ এর দ্বিগুণের সমান ও খ এর অংশ গ এর ৪ গুনের সমান। তাহলে তাদের অংশের অনুপাত কত?', '৮ꓽ২ꓽ৪', '৮ꓽ৪ꓽ১', '১ꓽ২ꓽ৪', '২ꓽ৪ꓽ১', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3792, 'তিনজনের মধ্যে ৭৫০ টাকা ৩ ꓽ ৫ ꓽ ৭ অনুপাতে ভাগ করলে ভাগের টাকার অংশ গুলো হবে-', '120230400', '130280340', '150250350', '200250300', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3791, 'যদি দুইটি সংখ্যার অনুপাত ৪ꓽ৩ হয় তবে নিচের কোন সংখ্যাটি ঐ দুটি সংখ্যার যোগফল হতে পারবেনা?', '178', '154', '112', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3789, 'টুলুর মাসিক আয় অ ব্যয় এর অনুপাত ১১ꓽ১০ এবং তার মাসিক সঞ্চয় ১০০০ টাকা হলে তার মাসিক আয় কত?', '10000', '10500', '11000', '11500', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3790, 'দুইটি সংখ্যার অনুপাত ৫ꓽ৮ । উভয়ের সাথে ২ যোগ করলে অনুপাত ২ꓽ৩ হয়। সংখ্যা দুইটি কি কি?', '১০ ও ১৪', '১০ ও ১৬', '১২ ও ১৮', '৭ ও ১১', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3788, 'জালানি তেলের মূল্য ২৫% বৃদ্ধি পাওয়ায় বাসের টিকিটের মূল্য ও একই হারে বৃদ্ধি পেল। পুরানো ও নতুন বাসের ভাড়ার অনুপাত কত?', '১৫ꓽ১৬', '১২ꓽ১৩', '৫ꓽ৬', '৪ ꓽ ৫', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3786, 'লুপ্ত পদ নির্ণয় করুনঃ ১২ ꓽ ১৬ꓽ ꓸꓸꓸꓸꓸꓸꓸꓸꓸ ꓽ ২০', '10', '18', '22', '15', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3787, '৩ ꓽ ৭=১২ ꓽ X হলে X এর মান হবে-', '28', '26', '30', '32', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3784, 'যদি ৫ꓽ১০০ , ৪ꓽ৬৪ হয় তবে ৪ꓽ৮০, ৩ꓽ ?', '26', '54', '48', '60', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3785, 'করিম ও রহিমের নম্বরের অনুপাত ৩ ꓽ ৪ এবং রহিম ও মোহনের নম্বরের অনুপাত ৬ ꓽ ৭। তাহলে করিম ও মোহনের নম্বরের অনুপাত কত?', '৪ ꓽ ৭', '৯ ꓽ ১৪', '২ ꓽ ৭', '২ ꓽ ৩', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3782, '৮,১২ এবং ১৬ এর চতুর্থ সমানুপাতি হবে-', '24', '18', '32', '36', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45');
INSERT INTO `questions` (`id`, `question`, `opt_A`, `opt_B`, `opt_C`, `opt_D`, `correct_opt`, `catagory_id`, `user_id`, `created_at`, `updated_at`) VALUES
(3783, 'a,b,c,d ক্রমিক সমানুপাতি হলে কোনটি সঠিক?', 'ab=cd', 'ac=bd', 'ad=bc', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3780, 'xꓽy=5ꓽ6 হলে 3xꓽ5y=?', '3ꓽ5', '1ꓽ2', '6ꓽ5', '2ꓽ3', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3781, '১০, ৪০ এবং ৫০ এর চতুর্থ সমানুপাতি নিচের কোনটি হবে?', '400', '300', '100', '200', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3779, '৮ মাসে ২০০ টাকায় যত লাভ হয়,কত মাসে ৪০০ টাকার তত লাভ হয়?', '২ মাসে', '৩ মাসে', '৪ মাসে', '৬ মাসে', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3777, '৪ টাকায় ৫ টি করে কিনে ৫ টাকায় ৪ টি করে বিক্রয় করলে শতকরা কত লাভ হবে?', '0.45', '0.485', '0.5625', '0.5675', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3778, '৫০ টাকায় ২ টি এবং ৫০ টাকায় ৩ টি দরে সমসংখ্যক কমলা ক্রয় করে প্রতি ২ টি কমলা ৪৭ টাকায় বিক্রি করলে শতকরা কত লাভ বা ক্ষতি হবে?', '২০ % ক্ষতি', '২০% লাভ', '৩০% ক্ষতি', 'কোনটিই নয়', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3776, 'বিক্রয়মূল্য এর উপর শতকরা ২০% হারে মুনাফা-', 'ক্রয়মূল্যের ২৫%', 'ক্রয়মূল্যের ১৫%', 'ক্রয়মূল্যের ৩০%', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3775, 'একটি শার্ট এর মূল্য ২৫০ টাকা লেখা আছে।কিন্তু শার্ট টি ২০০ টাকায় বিক্রয় করা হল।লিখিত মূল্য প্রকৃত মূল্য হলে শতকরা কত হ্রাসকৃত মূল্যে বিক্রি হল?', '40', '50', '80', '20', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3774, 'হেলালের মাসিক আয় ৪২০০ টাকা এবং ব্যয় ২৯৪০ তাকা।তার মাসিক ব্যয় মাসিক আয় এর শতকরা কত টাকা?', '0.65', '0.7', '0.75', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3772, '১০ টাকায় ১২ টি করে কোন জিনিস ক্রয় করে ১০ টাকায় ৮ টি করে বিক্রি করলে শতকরা কত লাভ বা ক্ষতি হবে?', '৫০% লাভ', '৫০% ক্ষতি', '৩৫% লাভ', '৩৫%ক্ষতি', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3773, '৬ টি কমলালেবুর ক্রয় মূল্য ৫ টি কমলালেবুর বিক্রয়মূল্যের সমান হলে শতকরা কত লাভ হবে?', '0.15', '0.25', '৩৩ꓸ৩৩%', '0.2', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3771, '১০০ টাকায় ১০ টি ডিম কিনে ১০০ টাকায় ৮ টি ডিম বিক্রয় করলে শতকরা লাভ কত হবে?', '0.16', '0.2', '0.25', '0.28', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3769, 'একটি পণ্য ৩৮০ টাকায় বিক্রয় করায় ২০ টাকা ক্ষতি হল। ক্ষতির শতকরা হার কতো?', '0.07', '0.06', '0.04', '0.05', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3770, 'টাকায় ৩ টি করে আম ক্রয় করে টাকায় ২ টি করে বিক্রয় করলে শতকরা কত লাভ হবে?', '0.5', '0.25', '0.15', '0.1', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3768, 'একটি দ্রব্য ৯৬০ টাকায় বিক্রয় করায় ৪০ টাকা ক্ষতি হল।শতকরা ক্ষতির হার কত?', '0.04', '0.03', '0.02', '0.01', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3767, 'একটি পেন্সিল ১.২৫ টাকা দিয়ে কিনে ১ꓸ৩০ টাকায় বিক্রি করলে শতকরা কত লাভ হবে?', '0.1', '0.04', '0.05', '0.08', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3766, 'এক ব্যবসায়ী একটি পণ্য ৮০ টাকায় ক্রয় করে ১০০ টাকায় বিক্রয় করলে ক্রয়মূল্য এর উপর তার লাভের হার কত?', '0.15', '0.2', '0.25', '0.3', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3764, 'একটি কলম ৫০ টাকায় ক্রয় করে ৫৬ টাকায় বিক্রয় করল।এতে শতকরা কত লাভ হল?', '0.08', '0.09', '0.1', '0.12', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3765, '৪ টি আপেল ২০ টাকায় কিনে ৩০ টাকায় বিক্রি করলে কত শতাংশ লাভ হবে?', '0.5', '0.35', '0.2', 'কোনটিই নয়', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3763, 'বার্ষিক ৬% হার সুদে ষাণ্মাসিক চক্রবৃদ্ধিতে ২০০০ টাকা একটি সঞ্চয়ী হিসেবে জমা রাখা হল।বছর শেষে সুদে আসলে কত টাকা পাওয়া যাবে?', '২০৬০ টাকা', '২১২০ টাকা', '২১২২ টাকা', '২২৫৮ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3762, 'বার্ষিক শতকরা ১০ টাকা মুনাফায় ৫০০০ টাকার ৩ বছরের সরল মুনাফা ও চক্রবৃদ্ধি মুনাফার পার্থক্য কত হবে?', '১৪০ টাকা', '১৪৫ টাকা', '১৫০ টাকা', '১৫৫ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3761, '৪% হার সুদে কত টাকার ২ বছরের সরল সুদ এবং চক্রবৃদ্ধি সুদের পার্থক্য ১ টাকা হবে?', '625', '650', '600', '620', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3760, 'কোন শহরের বর্তমান জনসংখ্যা ৮০ লক্ষ। ঐ শহরে জনসংখ্যা বৃদ্ধির হার প্রতি হাজারে ৩০ হলে,৩ বছর পরে ঐ শহরের জনসংখ্যা কত হবে?', '8472503', '8681425', '8741816', '8781816', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3759, '১০% চক্রবৃদ্ধি সুদে ১০০ টাকার ২ বছরের সুদ আসলে কত টাকা হয়?', '১২০ টাকা', '১২১ টাকা', '২০ টাকা', '২১ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3757, 'বার্ষিক ১০ꓸ৫০% মুনাফায় ৫০০০ টাকার ২ বছরের চক্রবৃদ্ধি মুনাফা নির্ণয় কর।', '1090', '1100', '1105', '1230', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3758, 'বার্ষিক শতকরা ৮ টাকা মুনাফায় ৬২৫০০ টাকার ৩ বছরের চক্রবৃদ্ধি মূলধন নির্ণয় কর।', '78000', '82000', '79730', '78732', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3756, 'ব্যংকে কত টাকা রাখলে ৮ শতাংশ হারে মুনাফার ২ বছরের চক্রবৃদ্ধি মূলধন ৫২০০ টাকা হবে?', '৪৪৫৮ꓸ১৬ টাকা', '৪৫৫৮∙১৬ টাকা', '৪০৪০ꓸ৭৫ টাকা', '৫০৫০ꓸ৬০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3755, 'করিম সাহেব তার ৫৬০০০ টাকার কিছু টাকা বার্ষিক ১২% মুনাফায় ও বাকি টাকা বার্ষিক ১০% মুনাফায় বিনিয়োগ করলেন।এক বছর তিনি মত ৬৪০০ টাকা মুনাফা পেলেন।তিনি ১২% মুনাফায় কত টাকা বিনিয়োগ করেছেন?', '৪০০০০ টাকা', '৫০০০০ টাকা', '৬০০০০ টাকা', '৮০০০০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3754, 'একই হার মুনাফায় কোন আসল ৭ বছরে মুনাফা আসলে দ্বিগুণ হলে কত বছরে মুনাফা আসলে তিনগুন হবে?', '11', '12', '14', '21', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3753, 'বার্ষিক ৮% হার সুদে কত বছরে সুদ আসলের সমান হবে?', '৮ বছর', '১৪.৫ বছর', '১০ বছর', '১২.৫ বছর', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3752, 'বার্ষিক শতকরা ১০ টাকা হার সুদে কোন মূলধন কত বছর পরে আসলের ৩ গুন হবে?', '12', '10', '9', '11', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3750, '৫% হারে কত সময়ে ৫০০ টাকার মুনাফা ১০০ টাকা হবে?', '৪ বছরে', '৩ বছরে', '২ বছরে', '২.৫ বছরে', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3751, 'বার্ষিক শতকরা ৫.০০ টাকা হার সুদে কত সময়ে ৩০০ টাকা সুদে আসলে ৪০৫ টাকা হবে?', '৫ বছর', '৫.৫ বছর', '৭ বছর', '৮ বছর', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3749, 'মুনাফা ১২% থেকে হ্রাস পেয়ে ৮% হলে কত টাকার বার্ষিক মুনাফার ৫০০ টাকা হ্রাস পাবে?', '১৫০০০ টাকা', '12500', '12000', '13500', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3748, 'বার্ষিক ৭% মুনাফা হারে কত টাকা ৩ বছরে জমা রাখলে মেয়াদান্তে মুনাফাসহ ৬৬৫৫ টাকা পাওয়া যাবে?', '৪০০০ টাকা', '৪৫০০ টাকা', '৫০০০ টাকা', '৫৫০০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3747, 'কোন আসল ৩ বছরে সুদে আসলে ৪৬০ টাকা এবং ৫ বছরে সুদে আসলে ৫০০ টাকা হলে আসল কত?', '৪০০ টাকা', '৪০৫ টাকা', '৪১০ টাকা', '৪৩৫ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3746, 'শতকরা বার্ষিক ৪ টাকা হার সরল মুনাফায় কত টাকা ১৫ বছরে বৃদ্ধি পেয়ে মূলধন ১০৪০ টাকা হবে?', 'মূলধন ৫০০ টাকা', 'মূলধন ৫৫০ টাকা', 'মূলধন ৬০০ টাকা', 'মূলধন ৬৫০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3745, 'বার্ষিক ৪.৫% লাভে কত টাকা বিনিয়োগ করলে ৪ বছরে তা ৮২৬ টাকা হবে?', '৭২৫ টাকা', '৭০০ টাকা', '৬৫০ টাকা', '৪৫৮ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3744, 'শতকরা ৫ টাকা হার সুদে ২০ বছরে সুদে আসলে ৪০০০০ টাকা হয়। মূলধনের পরিমান কত ছিল?', '20000', '25000', '10000', '15000', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3742, 'কোন আসল ৩ বছরে মুনাফা আসলে ৫৫০০ টাকা হয়।মুনাফা আসলের ꓸ৩৭৫ অংশ হলে মুনাফার হার কত?', '0.1', '0.125', '0.15', '0.12', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3743, 'শতকরা বার্ষিক ৫ টাকা হার সরল সুদে কত টাকা ১২ বছরে সুদে আসলে ১২৪৮ টাকা হবে?', '৭০০ টাকা', '৭৫০ টাকা', '৭৮০ টাকা', '৮০০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3741, 'কোন আসল ৩ বছরে সুদ আসলে ৪৬০ টাকা এবং ৫ বছরে সুদে আসলে ৫০০ টাকা হলে শতকরা সুদের হার হবে-', '১০ টাকা', '২০ টাকা', '১৫ টাকা', '৫ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3740, '৫০০ টাকার ৪ বছরের সুদ এবং ৬০০ টাকার ৫ বছরের সুদ একত্রে ৫০০ টাকা হলে সুদের হার কত?', '0.05', '0.06', '0.1', '0.12', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3739, 'একই সুদে ৫০০ টাকার ৪ বছরের সুদ এবং ৬০০ টাকার ৫ বছরের সুদ একত্রে ৪০০ টাকা হলে সুদের হার কত?', '0.08', '0.06', '0.1', '0.12', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3738, 'সরল সুদের হার শতকরা কত টাকা হলে যে কন মূলধন ৮ বছরে সুদে আসলে ৩ গুন হবে?', '১২.৫০ টাকা', '২০ টাকা', '২৫ টাকা', '১৫ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3737, 'শতকরা বার্ষিক কত হার সুদে কন মূলধন ১০ বছরে সুদে মূলে তিনগুন হবে?', '0.1', '0.12', '0.15', '0.2', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3736, '১০০ টাকা ৫ বছরের সুদে আসলে ২০০ টাকা হলে, সুদের হার-', '0.25', '0.2', '0.1', '0.05', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3735, 'ব্যংকে ৮৫০০ টাকা রেখে ৪ বছর পর সুদে আসলে ১১২২০ টাকা পেলে বার্ষিক সরল সুদের হার কত ছিল?', '0.1', '0.09', '0.08', '0.07', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3734, 'বার্ষিক শতকরা কত হার সুদে ২৭৫ টাকার ৪ বছরে সুদে আসলে ৪০৭ টাকা হবে?', '0.12', '0.11', '0.1', '0.09', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3733, '৫০ পয়সার ৫০ দিনের সুদ ৫০ পয়সা হলে দৈনিক সুদের হার কত?', '১ পয়সা', '.১ পয়সা', '.০১ পয়সা', 'কোনটিই নয়', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3732, '৪২৫ টাকার ৪ বছরের সুদ ৮৫ টাকা হলে সুদের হার বার্ষিক কত টাকা হবে?', '0.1', '0.05', '0.08', '0.12', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3731, 'সরল হার সুদে ৫৬০ টাকার ৩ বছরের সুদ ৮৬ টাকা হলে সুদের হার কত?', '0.03', '0.05', '0.04', '0.06', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3730, 'শতকরা বার্ষিক কত টাকা হার মুনাফায় ৬৫০ টাকার ৬ বছরের মুনাফা ২৭৩ টাকা হবে?', '6', '6.5', '7', '8', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3729, 'শতকরা বার্ষিক কত হার সুদে ৪৫০ টাকায় ১২ বছরের সুদ ১৬২ টাকা হবে?', '৩.০০ টাকা', '২.৫০ টাকা', '৩.৫০ টাকা ', '২.৭৫ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3728, 'এক ব্যক্তি ১৫০০০ টাকা ব্যংকে জমা করে বছরে সুদ বাবদ ১২৭৫ টাকা আয় করে। ঐ ব্যংকে বছরে সুদের হার কত?', '0.08', '0.0825', '0.085', '0.0875', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3727, 'সুদের হার ৬.৫০% হলে ১০০০ টাকা জমা দিয়ে ৬ বছর পর সুদে আসলে কত টাকা পাওয়া যাবে?', '৩৯০ টাকা', '১০৬৫ টাকা ', '১২৫০ টাকা', '১৩৯০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3726, '৫% হারে ৩০০ টাকার ৫ বছরের সুদাসল কত হয়?', '137.5', '138', '140', '147.5', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3725, '৪% হার সুদে ১০০০ টাকা ৮ বছরে সুদে আসলে কত হবে?', '১২০০ টাকা', '৯০০ টাকা', '১৩২০ টাকা', '১৫৭০ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3724, 'আরিফ বার্ষিক ৬.৫% হার সুদে ৯০০০ টাকা ব্যংকে জমা রাখল।সুদের হার বেরে ১২% হলে আরিফ ১ বছরে সুদ হিসেবে কত টাকা পাবে?', '৪৯৫ টাকা', '৫০০ টাকা', '৫২৫ টাকা', '১৮০০ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3723, 'সুদের হার ৬% থেকে কমে ৪% হলে ৫০০ টাকায় ৩ বছরে কত সুদ কমবে?', '20', '30', '40', '50', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3722, 'কবির সাহেব ১০% সরল সুদে ৭০০ টাকা এবং ৫% সরল সুদে ১৩০০ টাকা বিনিয়োগ করলে এক বছর পর তিনি কত সুদ পাবেন?', '৯০ টাকা', '১৩৫ টাকা', '১৫০ টাকা', 'কোনটিই নয়', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3721, 'এক ব্যক্তি ২০% সরল সুদে ৭০০ টাকা এবং ১০% সরল সুদে ৫০০ টাকা বিনিয়োগ করলে এক বছর পর তিনি কত সুদ পাবেন?', '190', '150', '225', '290', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3720, 'রহিমা ২০% সরল সুদে ৮০০ টাকা এবং ১৫% সরল সুদে ৬০০ টাকা বিনিয়োগ করল।এক বছর পর তিনি কত টাকা সুদ পাবেন?', '205', '225', '250', '290', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3719, 'M টাকার M% সরল সুদে ৪ বছরের সুদ M টাকা হলে M=?', '20', '25', '50', 'কোনটিই নয়', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3718, 'প্রতি বছর শতকরা ৮ টাকা হারে লাভের চুক্তিতে ১০০০ টাকা বিনিয়োগ করে ২ বছর পর ওই বিনিয়োগকারী মোট কত টাকা লাভ পাবে?', '১৭০ টাকা', '১৬৬.৪ টাকা', '১৬৫ টাকা', '১৬০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3716, '৬% হারে নয় মাসে ১০০০০ টাকার উপর সুদ কত হবে?', '৫০০ টাকা', '৪৫০ টাকা', '৬০০ টাকা', '৬৫০ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3717, 'শতকরা বার্ষিক ৫ টাকা হার সুদে ৭২০ টাকার ২ বছর ৪ মাসের সুদ কত হবে?', '৮৪ টাকা', '৮৩ টাকা', '৮২ টাকা', '৮১ টাকা', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3715, '৫% হারে সরল সুদে ৫০০ টাকার ৫ বছরে সুদ কত হবে?', '১০০ টাকা', '১৫০ টাকা', '১২৫ টাকা', ' ৭৫ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3714, 'বার্ষিক শতকরা ১০ টাকা হার সরল সুদে ৪৫০০ টাকার ৩ বছরের সুদ কত?', '১৫০০ টাকা', '১৪৫০ টাকা', '১৬২০ টাকা', '১৩৫০ টাকা', 'd', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3712, 'শতকরা বার্ষিক সুদের হার ৭ টাকা হলে ৬৫০ টাকার ৬ বছরের সুদ কত?', '২৭২ টাকা', '২৭০ টাকা', '২৭৩ টাকা', '২৭৫ টাকা', 'c', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3713, 'শতকরা বার্ষিক ৫ টাকা হার সরল সুদে ৭০০০ টাকার ৫ বছরের মোট সুদ কত হবে?', '৩৫০ টাকা', '১৭৫০ টাকা', '১৩৫০ টাকা', '১৮৫০ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3710, 'বার্ষিক ৫% হার সরল সুদে ১০০০ টাকার ২ বছরের সুদ কত টাকা?', '৫০ টাকা', '১০০ টাকা', '১৫০ টাকা', '২০০ টাকা', 'b', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45'),
(3711, 'বার্ষিক ৫% সরল মুনাফায় ৬০০ টাকার ৪ বছরের সরল মুনাফা কত?', '120', '240', '360', '480', 'a', 3, 1, '2019-02-16 05:45:45', '2019-02-16 05:45:45');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
CREATE TABLE IF NOT EXISTS `roles` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`role` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `role`, `created_at`, `updated_at`) VALUES
(1, 'user', NULL, NULL),
(2, 'admin', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`role_id` int(10) UNSIGNED NOT NULL DEFAULT '1',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `role_id`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', '<EMAIL>', <PASSWORD>', 2, 'GMZxQk5N8oQ4hCkfEl0ZDTSyzaA3<PASSWORD>BYhQdKIgawGCGXBkVwj6l7M', '2019-02-11 09:24:23', '2019-02-11 09:24:23'),
(3, '<NAME>', '<EMAIL>', <PASSWORD>vr2ZIaPrCbgVzm', 1, 'nRcum9YXvui55M18vxYXYNtq4hp9GjiE7bin9rANhOCcaT0Vvk2R38KmZax1', '2019-02-14 13:06:39', '2019-02-14 13:06:39'),
(4, 'bolbona', '<EMAIL>', '$2y$10$2WYA89Q8xrRwVwN0Ak1OOe.qqVSpRkoWDGh4gtI5WCq9qJcPfOgPG', 1, NULL, '2019-02-15 03:04:20', '2019-02-15 03:04:20'),
(5, '<NAME>', '<EMAIL>', '$2y$10$7ywoqL/CfRpSQ5qDfGxyYeIrhZxTwmE15YoVSLtKYkGkVLf23hvaK', 1, NULL, '2019-02-16 12:13:34', '2019-02-16 12:13:34'),
(6, 'NazmusSakibAdib', '<EMAIL>', '$2y$10$6XndiL.Pc/MpC.DbvFJVCOAkSTW9ZLyS/7qMUka2Xq13CD0C.rH/C', 1, NULL, '2019-02-16 12:14:50', '2019-02-16 12:14:50');
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>EL-BID/nexso
CREATE procedure [dbo].[dnn_Dashboard_GetDbInfo]
AS
SELECT
ServerProperty('ProductVersion') AS ProductVersion,
ServerProperty('ProductLevel') AS ServicePack,
ServerProperty('Edition') AS ProductEdition,
@@VERSION AS SoftwarePlatform
|
CREATE TABLE Binary(
TestCaseName VARCHAR(500) PRIMARY KEY,
NonNullableBinary BINARY NOT NULL,
NonNullableVarBinary VARBINARY NOT NULL,
NullableBinary BINARY,
NullableVarBinary VARBINARY
) |
<gh_stars>1-10
DO
$$
DECLARE
admin_role_id INT;
BEGIN
INSERT INTO permission VALUES ('responsibilities.review');
SELECT id INTO admin_role_id FROM role WHERE name = 'admin';
INSERT INTO role_permission VALUES (admin_role_id, 'responsibilities.review');
END
$$;
|
<gh_stars>1-10
-- Up
CREATE VIEW TextList (
id,
post,
date,
like,
content
) AS
SELECT
Text.id,
Post.id,
Post.date,
Post.like,
Text.content
FROM
Post,
Text
WHERE
Post.id = Text.post;
CREATE VIEW FileList (
id,
post,
date,
like,
type,
url
) AS
SELECT
File.id,
Post.id,
Post.date,
Post.like,
File.type,
File.url
FROM
Post,
File
WHERE
Post.id = File.post;
CREATE VIEW TagList (
id,
name,
description,
post
) AS
SELECT
Tag.id,
Tag.name,
Tag.description,
Post.id
FROM
Tag,
Post
WHERE
Post.tag = Tag.id;
-- Down
DROP VIEW WholePost;
DROP VIEW FileList;
DROP VIEW TagList; |
<gh_stars>1-10
with data as (
select *
from city
left join (
select cityId,
sum(case when genderId = 2 then 1 else 0 end) as "Male",
sum(case when genderId = 1 then 1 else 0 end) as "Female",
sum(case when genderId = 3 then 1 else 0 end) as "Transgendered",
sum(case when genderId = 0 then 1 else 0 end) as "Unknown"
from households_visited_last_year
join household
on household.id = households_visited_last_year.id and
household.version = households_visited_last_year.version
left join household_client_list hcl
on household.id = hcl.householdId and
household.version = hcl.householdVersion
left join client
on client.id= hcl.clientId and
client.version = hcl.clientVersion
group by cityId
) d
on city.id = d.cityId
)
select id,
name,
coalesce(data."Male", 0) as "Male",
coalesce(data."Female", 0) as "Female",
coalesce(data."Transgendered", 0) as "Transgendered",
coalesce(data."Unknown", 0) as "Unknown"
from data
where break_out = 1
union all
select 100, 'Other KC',
sum(data."Male"),
sum(data."Female"),
sum(data."Transgendered"),
sum(data."Unknown") as "Unknown"
from data
where break_out = 0 and in_king_county = 1
union all
select 101, 'Outside KC',
sum(data."Male"),
sum(data."Female"),
sum(data."Transgendered"),
sum(data."Unknown") as "Unknown"
from data
where break_out = 0 and in_king_county = 0
union all
select 102, 'Unknown',
sum(data."Male"),
sum(data."Female"),
sum(data."Transgendered"),
sum(data."Unknown") as "Unknown"
from data
where id = 0
order by id;
|
/* Formatted on 8/23/2012 1:52:11 PM (QP5 v5.215.12089.38647) */
CREATE TABLE PROTECT.CUSTOMATTRIBUTESRECORD_LOG
AS
SELECT *
FROM PROTECT.CUSTOMATTRIBUTESRECORD
WHERE 1 = 2;
ALTER TABLE PROTECT.CUSTOMATTRIBUTESRECORD_LOG ADD (LOGTIME TIMESTAMP(6));
CREATE OR REPLACE TRIGGER PROTECT.CUSTOMATTRIBUTESRECORD_UPDATE
AFTER UPDATE
ON PROTECT.CUSTOMATTRIBUTESRECORD
REFERENCING NEW AS NEW OLD AS OLD
FOR EACH ROW
DECLARE
BEGIN
INSERT INTO PROTECT.CUSTOMATTRIBUTESRECORD_LOG
(SELECT :NEW.CUSTOMATTRIBUTESRECORDID,
:NEW.VALUE1,
:NEW.VALUE2,
:NEW.VALUE3,
:NEW.VALUE4,
:NEW.VALUE5,
:NEW.VALUE6,
:NEW.VALUE7,
:NEW.VALUE8,
:NEW.VALUE9,
:NEW.VALUE10,
:NEW.VALUE11,
:NEW.VALUE12,
:NEW.VALUE13,
:NEW.VALUE14,
:NEW.VALUE15,
:NEW.VALUE16,
:NEW.VALUE17,
:NEW.VALUE18,
:NEW.VALUE19,
:NEW.VALUE20,
:NEW.VALUE21,
:NEW.VALUE22,
:NEW.VALUE23,
:NEW.VALUE24,
:NEW.VALUE25,
:NEW.VALUE26,
:NEW.VALUE27,
:NEW.VALUE28,
:NEW.VALUE29,
:NEW.VALUE30,
:NEW.VALUE31,
:NEW.VALUE32,
:NEW.VALUE33,
:NEW.VALUE34,
:NEW.VALUE35,
:NEW.VALUE36,
:NEW.VALUE37,
:NEW.VALUE38,
:NEW.VALUE39,
:NEW.VALUE40,
:NEW.VALUE41,
:NEW.VALUE42,
:NEW.VALUE43,
:NEW.VALUE44,
:NEW.VALUE45,
:NEW.VALUE46,
:NEW.VALUE47,
:NEW.VALUE48,
:NEW.VALUE49,
:NEW.VALUE50,
CURRENT_TIMESTAMP
FROM DUAL);
EXCEPTION
WHEN OTHERS
THEN
NULL;
END CUSTOMATTRIBUTESRECORD_UPDATE; |
<reponame>Shuttl-Tech/antlr_psql
-- file:create_misc.sql ln:172 expect:true
INSERT INTO f_star (class, c, f)
VALUES ('f', 'hi jeff'::name,
'(111111,333333),(222222,444444)'::polygon)
|
delimiter //
set names utf8
//
drop procedure if exists _get_sql_token;
//
create procedure _get_sql_token(
in p_text text charset utf8
, inout p_from int unsigned
, inout p_level int
, out p_token text charset utf8
, in language_mode enum ('sql', 'script', 'routine')
-- , inout p_state varchar(64)charset utf8
, inout p_state enum(
'alpha'
, 'alphanum'
, 'and'
, 'assign'
, 'bitwise and'
, 'bitwise or'
, 'bitwise not'
, 'bitwise xor'
, 'colon'
, 'comma'
, 'conditional comment'
, 'decimal'
, 'delimiter'
, 'divide'
, 'dot'
, 'equals'
, 'error'
, 'greater than'
, 'greater than or equals'
, 'integer'
, 'label'
, 'left braces'
, 'left parenthesis'
, 'left shift'
, 'less than'
, 'less than or equals'
, 'minus'
, 'modulo'
, 'multi line comment'
, 'multiply'
, 'not equals'
, 'null safe equals'
, 'or'
, 'plus'
, 'quoted identifier'
, 'right braces'
, 'right parenthesis'
, 'right shift'
, 'single line comment'
, 'start'
, 'statement delimiter'
, 'string'
, 'system variable'
, 'user-defined variable'
, 'query_script variable'
, 'expanded query_script variable'
, 'whitespace'
, 'not'
)
)
comment 'Reads a token according to lexical rules for SQL'
language SQL
deterministic
no sql
sql security invoker
begin
declare v_length int unsigned default character_length(p_text);
declare v_no_ansi_quotes bool default find_in_set('ANSI_QUOTES', @@sql_mode) = FALSE;
declare v_char, v_lookahead, v_quote_char char(1) charset utf8;
declare v_from int unsigned;
declare allow_script_tokens tinyint unsigned;
set allow_script_tokens := (language_mode = 'script');
if p_from is null then
set p_from = 1;
end if;
if p_level is null then
set p_level = 0;
end if;
if p_state = 'right parenthesis' then
set p_level = p_level - 1;
end if;
if p_state = 'right braces' and allow_script_tokens then
set p_level = p_level - 1;
end if;
set v_from = p_from;
set p_token = ''
, p_state = 'start';
my_loop: while v_from <= v_length do
set v_char = substr(p_text, v_from, 1)
, v_lookahead = substr(p_text, v_from+1, 1)
;
state_case: begin case p_state
when 'error' then
set p_from = v_length;
leave state_case;
when 'start' then
case
when v_char between '0' and '9' then
set p_state = 'integer';
when v_char between 'A' and 'Z'
or v_char between 'a' and 'z'
or v_char = '_' then
set p_state = 'alpha';
when v_char = ' ' then
set p_state = 'whitespace'
, v_from = v_length - character_length(ltrim(substring(p_text, v_from)))
;
leave state_case;
when v_char in ('\t', '\n', '\r') then
set p_state = 'whitespace';
when v_char = '''' or v_no_ansi_quotes and v_char = '"' then
set p_state = 'string', v_quote_char = v_char;
when v_char = '`' or v_no_ansi_quotes = FALSE and v_char = '"' then
set p_state = 'quoted identifier', v_quote_char = v_char;
when v_char = '@' then
if v_lookahead = '@' then
set p_state = 'system variable', v_from = v_from + 1;
else
set p_state = 'user-defined variable';
if v_lookahead = '''' then
set v_from = v_from + 1;
leave my_loop;
end if;
end if;
when v_char = '$' and allow_script_tokens then
set p_state = 'query_script variable';
when v_char = '.' then
if substr(p_text, v_from + 1, 1) between '0' and '9' then
set p_state = 'decimal', v_from = v_from + 1;
else
set p_state = 'dot', v_from = v_from + 1;
leave my_loop;
end if;
when v_char = ';' then
set p_state = 'statement delimiter', v_from = v_from + 1;
leave my_loop;
when v_char = ',' then
set p_state = 'comma', v_from = v_from + 1;
leave my_loop;
when v_char = '=' then
set p_state = 'equals', v_from = v_from + 1;
leave my_loop;
when v_char = '*' then
set p_state = 'multiply', v_from = v_from + 1;
leave my_loop;
when v_char = '%' then
set p_state = 'modulo', v_from = v_from + 1;
leave my_loop;
when v_char = '/' then
if v_lookahead = '*' then
set v_from = locate('*/', p_text, p_from + 2);
if v_from then
set p_state = if (substr(p_text, p_from + 2, 1) = '!', 'conditional comment', 'multi line comment')
, v_from = v_from + 2
;
leave my_loop;
else
set p_state = 'error';
end if;
else
set p_state = 'divide', v_from = v_from + 1;
leave my_loop;
end if;
when v_char = '-' then
case
when v_lookahead = '-' and substr(p_text, v_from + 2, 1) = ' ' then
set p_state = 'single line comment'
, v_from = locate('\n', p_text, p_from)
;
if not v_from then
set v_from = v_length;
end if;
set v_from = v_from + 1;
leave my_loop;
else
set p_state = 'minus', v_from = v_from + 1;
leave my_loop;
end case;
when v_char = '#' then
set p_state = 'single line comment'
, v_from = locate('\n', p_text, p_from)
;
if not v_from then
set v_from = v_length;
end if;
set v_from = v_from + 1;
leave my_loop;
when v_char = '+' then
set p_state = 'plus', v_from = v_from + 1;
leave my_loop;
when v_char = '<' then
set p_state = 'less than';
when v_char = '>' then
set p_state = 'greater than';
when v_char = ':' then
if v_lookahead = '=' then
set p_state = 'assign', v_from = v_from + 2;
leave my_loop;
elseif v_lookahead = '$' and allow_script_tokens then
set p_state = 'expanded query_script variable';
else
set p_state = 'colon', v_from = v_from + 1;
leave my_loop;
end if;
when v_char = '{' and allow_script_tokens then
set p_state = 'left braces', v_from = v_from + 1, p_level = p_level + 1;
leave my_loop;
when v_char = '}' and allow_script_tokens then
set p_state = 'right braces', v_from = v_from + 1;
leave my_loop;
when v_char = '(' then
set p_state = 'left parenthesis', v_from = v_from + 1, p_level = p_level + 1;
leave my_loop;
when v_char = ')' then
set p_state = 'right parenthesis', v_from = v_from + 1;
leave my_loop;
when v_char = '^' then
set p_state = 'bitwise xor', v_from = v_from + 1;
leave my_loop;
when v_char = '~' then
set p_state = 'bitwise not', v_from = v_from + 1;
leave my_loop;
when v_char = '!' then
if v_lookahead = '=' then
set p_state = 'not equals', v_from = v_from + 2;
else
set p_state = 'not', v_from = v_from + 1;
end if;
leave my_loop;
when v_char = '|' then
if v_lookahead = '|' then
set p_state = 'or', v_from = v_from + 2;
else
set p_state = 'bitwise or', v_from = v_from + 1;
end if;
leave my_loop;
when v_char = '&' then
if v_lookahead = '&' then
set p_state = 'and', v_from = v_from + 2;
else
set p_state = 'bitwise and', v_from = v_from + 1;
end if;
leave my_loop;
else
set p_state = 'error';
end case;
when 'less than' then
case v_char
when '=' then
set p_state = 'less than or equals';
leave state_case;
when '>' then
set p_state = 'not equals';
when '<' then
set p_state = 'left shift';
else
do null;
end case;
leave my_loop;
when 'less than or equals' then
if v_char = '>' then
set p_state = 'null safe equals'
, v_from = v_from + 1
;
end if;
leave my_loop;
when 'greater than' then
case v_char
when '=' then
set p_state = 'greater than or equals';
when '>' then
set p_state = 'right shift';
else
set p_state = 'error';
end case;
leave my_loop;
when 'multi line comment' then
if v_char = '*' and v_lookahead = '/' then
set v_from = v_from + 2;
leave my_loop;
end if;
when 'alpha' then
case
when v_char between 'A' and 'Z'
or v_char between 'a' and 'z'
or v_char = '_' then
leave state_case;
when v_char between '0' and '9'
or v_char = '$' then
set p_state = 'alphanum';
else
-- if v_char = ':' and v_lookahead not in ('=', '$') then
-- set p_state = 'label', v_from = v_from + 1;
-- end if;
leave my_loop;
end case;
when 'alphanum' then
case
when v_char between 'A' and 'Z'
or v_char between 'a' and 'z'
or v_char = '_'
or v_char between '0' and '9' then
leave state_case;
else
-- if v_char = ':' and v_lookahead not in ('=', '$') then
-- set p_state = 'label', v_from = v_from + 1;
-- end if;
leave my_loop;
end case;
when 'integer' then
case
when v_char between '0' and '9' then
leave state_case;
when v_char = '.' then
set p_state = 'decimal';
else
leave my_loop;
end case;
when 'decimal' then
case
when v_char between '0' and '9' then
leave state_case;
else
leave my_loop;
end case;
when 'whitespace' then
if v_char not in ('\t', '\n', '\r') then
leave my_loop;
end if;
when 'string' then
-- find the closing quote
set v_from = locate(v_quote_char, p_text, v_from);
if v_from then -- found a closing quote
if substr(p_text, v_from - 1, 1) = '\\' then
-- this quote was preceded by a backslash.
-- we now have to figure out if this was an escaping backslash.
backslahses: begin
declare v_backslash int unsigned default v_from - 2;
while substr(p_text, v_backslash, 1) = '\\' do
-- we found 2 consecutive backslashes.
-- see if there are even more:
if substr(p_text, v_backslash - 1, 1) = '\\' then
-- more backslashes, continue the loop.
set v_backslash = v_backslash - 2;
else
-- no more backslases.
-- The quote was not escaped by a backslash.
leave backslahses;
end if;
end while;
-- if we arrive here, the backslash escaped the quote.
-- this means we haven't found the end of the string yet.
-- so, we have to look beyond the quote for a new one.
set v_from = v_from + 1;
if v_from > v_length then
set p_state = 'error';
leave my_loop;
else
iterate my_loop;
end if;
end backslahses;
end if;
-- by now we established that the quote was not escaped by a preceding backslash.
-- but it could still be escaped by a following quote char.
if substr(p_text, v_from + 1, 1) = v_quote_char then
-- this quote is followed by the same quote,
-- this means it was an escaped quote.
-- so, continue beyond this point to find the real end of the string.
set v_from = v_from + 2;
if v_from > v_length then
set p_state = 'error';
leave my_loop;
else
iterate my_loop;
end if;
else
-- ok, this quote appears to be the real end of the string.
-- leave to produce the string token.
set v_from = v_from + 1;
leave my_loop;
end if;
else -- no closing quote found. This must be an error.
set p_state = 'error', v_from = v_length;
leave my_loop;
end if;
when 'quoted identifier' then
if v_char != v_quote_char then
leave state_case;
else
set v_from = v_from + 1;
leave my_loop;
end if;
when 'user-defined variable' then
if v_char in (';', ',', ' ', '\t', '\n', '\r', '!', '~', '^', '%', '>', '<', ':', '=', '+', '-', '&', '*', '|', '(', ')') then
leave my_loop;
elseif allow_script_tokens and v_char in ('{', '}') then
leave my_loop;
end if;
when 'query_script variable' then
if v_char in (';', ',', ' ', '\t', '\n', '\r', '!', '~', '^', '%', '>', '<', ':', '=', '+', '-', '&', '*', '|', '(', ')') then
leave my_loop;
elseif allow_script_tokens and v_char in ('{', '}', '.') then
leave my_loop;
end if;
when 'expanded query_script variable' then
if v_char in (';', ',', ' ', '\t', '\n', '\r', '!', '~', '^', '%', '>', '<', ':', '=', '+', '-', '&', '*', '|', '(', ')') then
leave my_loop;
elseif allow_script_tokens and v_char in ('{', '}', '.') then
leave my_loop;
end if;
when 'system variable' then
if v_char in (';', ',', ' ', '\t', '\n', '\r', '!', '~', '^', '%', '>', '<', ':', '=', '+', '-', '&', '*', '|', '(', ')') then
leave my_loop;
elseif allow_script_tokens and v_char in ('{', '}') then
leave my_loop;
end if;
else
leave my_loop;
end case; end state_case;
set v_from = v_from + 1;
end while my_loop;
set p_token = substr(p_text, p_from, v_from - p_from) collate utf8_general_ci;
set p_from = v_from;
end;
//
delimiter ;
|
<reponame>dram/metasfresh
CREATE INDEX IF NOT EXISTS m_costdetail_m_inventoryline_id
ON m_costdetail (m_inventoryline_id)
;
CREATE INDEX IF NOT EXISTS m_costdetail_c_invoiceline_id
ON m_costdetail (c_invoiceline_id)
;
CREATE INDEX IF NOT EXISTS m_costdetail_c_orderline_id
ON m_costdetail (c_orderline_id)
;
CREATE INDEX IF NOT EXISTS m_costdetail_m_movementline_id
ON m_costdetail (m_movementline_id)
;
|
<filename>microservicio/src/main/resources/db/migration/DDL/V1.1__schema.sql
create table cliente (
id int(11) not null auto_increment,
nombre varchar(100) not null,
estado varchar(45) not null,
primary key (id)
);
create table pelicula (
id int(11) not null auto_increment,
nombre varchar(100) not null,
formato varchar(45) not null,
primary key (id)
);
create table alquiler (
id int(11) not null auto_increment,
cliente int not null,
pelicula int not null,
fecha_alquiler date not null,
fecha_devolucion date not null,
valor varchar(45) not null,
primary key (id),
foreign key(cliente) references cliente(id),
foreign key(pelicula) references pelicula(id)
); |
DEFINE PERCENT_LIMIT=90
SET NEWPAGE 0
SET SPACE 2
SET PAGESIZE 9999
SET LINESIZE 9999
SET ECHO OFF
SET FEEDBACK OFF
SET VERIFY OFF
SET MARKUP HTML OFF SPOOL OFF
COLUMN MAX_USED% HEAD 'MAX|USED%' FORMAT 99
COLUMN ALLOC_USED% HEAD 'ALLOC|USED%' FORMAT 99
COLUMN MAXGROWTHMB HEAD 'MAXGROWTH|MB' FORMAT 999999
COLUMN USEDMB FORMAT 999999
COLUMN FREEMB FORMAT 999999
COLUMN SIZEMB FORMAT 999999
COLUMN MAXSIZEMB FORMAT 999999
select * from (
select
CAST(SYS_CONTEXT('USERENV','SERVER_HOST') as VARCHAR2(20)) as "HOST",
CAST(SYS_CONTEXT('USERENV','DB_NAME') as VARCHAR2(10)) as "SID",
b.TYPE,
b.tablespace_name,
round(DECODE(max_tbs_size,0,null,round(100*(tbs_size - a.free_space)/max_tbs_size,2)),2) "MAX_USED%",
round(100*(tbs_size - a.free_space)/tbs_size,2) "ALLOC_USED%",
autoextensible as ae,
status,
max_tbs_size MAXSIZEMB,
tbs_size SIZEMB,
a.free_space FREEMB,
(tbs_size - a.free_space) USEDMB,
CASE WHEN round(max_tbs_size-tbs_size,2) < 0 THEN 0 ELSE round(max_tbs_size-tbs_size,2) END MAXGROWTHMB
from
(
select tablespace_name, 'DATA' as "TYPE",round(sum(bytes)/1024/1024 ,2) as free_space
from dba_free_space group by tablespace_name
) a,
(
select
tablespace_name,autoextensible,online_status as status,
'DATA' as "TYPE",
round(sum(bytes)/1024/1024,2) as tbs_size ,
round(sum(maxbytes)/1024/1024,2) as max_tbs_size
from dba_data_files group by tablespace_name,autoextensible,online_status
UNION
select
tablespace_name,autoextensible,status,
'TEMP' as "TYPE",
sum(bytes)/1024/1024 tbs_size,
null as max_tbs_size
from dba_temp_files
group by tablespace_name,autoextensible,status
) b
where a.tablespace_name(+)=b.tablespace_name
)
where
NVL("MAX_USED%",0) > &PERCENT_LIMIT
order by sid, type,tablespace_name;
|
<filename>sql/medium-data-design.sql
CREATE TABLE profile (
profileId BINARY(16) NOT NULL,
profileActivationToken CHAR(32),
profileHandle VARCHAR(32) NOT NULL,
profileEmail VARCHAR(128) NOT NULL,
profileHash CHAR(128) NOT NULL,
profileSalt CHAR(64) NOT NULL,
UNIQUE(profileEmail),
UNIQUE(profileHandle),
PRIMARY KEY(profileId)
);
CREATE TABLE story (
storyId BINARY(16) NOT NULL,
storyProfileId BINARY(16) NOT NULL,
storyContent VARCHAR(30000) NOT NULL,
storyDateTime DATETIME(6) NOT NULL,
INDEX(storyProfileId),
FOREIGN KEY(storyProfileId) REFERENCES profile(profileId),
PRIMARY KEY(storyId)
);
CREATE TABLE clap (
clapId BINARY (16) NOT NULL,
clapProfileId BINARY(16) NOT NULL,
clapStoryId BINARY(16) NOT NULL,
INDEX(clapProfileId),
INDEX(clapStoryId),
FOREIGN KEY(clapProfileId) REFERENCES profile(profileId),
FOREIGN KEY(clapStoryId) REFERENCES story (storyId),
PRIMARY KEY(clapId)
);
insert into profile(profileId, profileActivationToken, profileHandle, profileEmail, profileHash, profileSalt)
values(UNHEX(REPLACE('b9f45031-2423-44d0-8086-325399acadb1', '-', '')), 49586734567856943345697857432856, '@onecoolcat', '<EMAIL>', 01667479547822876857835662920844017415001352108636600959663198814836505792834977632033674711838415398102346702278162473641414617, 3406059302940694039687104860435687958435687432345869705496875496);
|
DROP VIEW IF EXISTS work_info_view;
CREATE OR REPLACE VIEW work_info_view
AS SELECT
id, guid, work_id, well_authorization_number,
contracted_work_type, contracted_work_status_code, planned_start_date, planned_end_date,
well_file_review, abandonment_plan,mob_demob_site,camp_lodging,permanent_plugging_wellbore, cut_and_cap, removal_of_facilities, historical_well_file,
site_visit, report_writing_submission, psi_review, intrusive_sampling, submission_of_samples, completion_of_notifications,analysis_results,psi_review_dsi_scope, complete_sampling,
analysis_lab_results,development_remediation_plan,technical_report_writing, surface_recontouring,topsoil_replacement, revegetation_monitoring, excavation,contaminated_soil, confirmatory_sampling,
backfilling_excavation, risk_assessment, site_closure,
estimated_cost
FROM (
SELECT
*,
contracted_work_data->>'work_id' as work_id,
contracted_work_data->>'planned_start_date' as planned_start_date,
contracted_work_data->>'planned_end_date' as planned_end_date,
COALESCE(NULLIF(contracted_work_data->>'well_file_review', '')::numeric, 0) as well_file_review,
COALESCE(NULLIF(contracted_work_data->>'abandonment_plan', '')::numeric, 0) as abandonment_plan,
COALESCE(NULLIF(contracted_work_data->>'mob_demob_site', '')::numeric, 0) as mob_demob_site,
COALESCE(NULLIF(contracted_work_data->>'camp_lodging', '')::numeric, 0) as camp_lodging,
COALESCE(NULLIF(contracted_work_data->>'permanent_plugging_wellbore', '')::numeric, 0) as permanent_plugging_wellbore,
COALESCE(NULLIF(contracted_work_data->>'cut_and_cap', '')::numeric, 0) as cut_and_cap,
COALESCE(NULLIF(contracted_work_data->>'removal_of_facilities', '')::numeric, 0) as removal_of_facilities,
COALESCE(NULLIF(contracted_work_data->>'historical_well_file', '')::numeric, 0) as historical_well_file,
COALESCE(NULLIF(contracted_work_data->>'site_visit', '')::numeric, 0) as site_visit,
COALESCE(NULLIF(contracted_work_data->>'report_writing_submission', '')::numeric, 0) as report_writing_submission,
COALESCE(NULLIF(contracted_work_data->>'psi_review', '')::numeric, 0) as psi_review,
COALESCE(NULLIF(contracted_work_data->>'intrusive_sampling', '')::numeric, 0) as intrusive_sampling,
COALESCE(NULLIF(contracted_work_data->>'submission_of_samples', '')::numeric, 0) as submission_of_samples,
COALESCE(NULLIF(contracted_work_data->>'completion_of_notifications', '')::numeric, 0) as completion_of_notifications,
COALESCE(NULLIF(contracted_work_data->>'analysis_results', '')::numeric, 0) as analysis_results,
COALESCE(NULLIF(contracted_work_data->>'psi_review_dsi_scope', '')::numeric, 0) as psi_review_dsi_scope,
COALESCE(NULLIF(contracted_work_data->>'complete_sampling', '')::numeric, 0) as complete_sampling,
COALESCE(NULLIF(contracted_work_data->>'analysis_lab_results', '')::numeric, 0) as analysis_lab_results,
COALESCE(NULLIF(contracted_work_data->>'development_remediation_plan', '')::numeric, 0) as development_remediation_plan,
COALESCE(NULLIF(contracted_work_data->>'technical_report_writing', '')::numeric, 0) as technical_report_writing,
COALESCE(NULLIF(contracted_work_data->>'surface_recontouring', '')::numeric, 0) as surface_recontouring,
COALESCE(NULLIF(contracted_work_data->>'topsoil_replacement', '')::numeric, 0) as topsoil_replacement,
COALESCE(NULLIF(contracted_work_data->>'revegetation_monitoring', '')::numeric, 0) as revegetation_monitoring,
COALESCE(NULLIF(contracted_work_data->>'excavation', '')::numeric, 0) as excavation,
COALESCE(NULLIF(contracted_work_data->>'contaminated_soil', '')::numeric, 0) as contaminated_soil,
COALESCE(NULLIF(contracted_work_data->>'confirmatory_sampling', '')::numeric, 0) as confirmatory_sampling,
COALESCE(NULLIF(contracted_work_data->>'backfilling_excavation', '')::numeric, 0) as backfilling_excavation,
COALESCE(NULLIF(contracted_work_data->>'risk_assessment', '')::numeric, 0) as risk_assessment,
COALESCE(NULLIF(contracted_work_data->>'site_closure', '')::numeric, 0) as site_closure,
CASE
WHEN (contracted_work_type = 'abandonment') THEN
COALESCE(NULLIF(contracted_work_data->>'well_file_review', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'abandonment_plan', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'mob_demob_site', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'camp_lodging', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'permanent_plugging_wellbore', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'cut_and_cap', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'removal_of_facilities', '')::numeric, 0)
WHEN (contracted_work_type = 'preliminary_site_investigation') THEN
COALESCE(NULLIF(contracted_work_data->>'historical_well_file', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'site_visit', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'report_writing_submission', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'psi_review', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'mob_demob_site', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'camp_lodging', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'intrusive_sampling', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'submission_of_samples', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'completion_of_notifications', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'analysis_results', '')::numeric, 0)
WHEN (contracted_work_type = 'detailed_site_investigation') THEN
COALESCE(NULLIF(contracted_work_data->>'psi_review_dsi_scope', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'mob_demob_site', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'camp_lodging', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'complete_sampling', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'analysis_lab_results', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'development_remediation_plan', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'technical_report_writing', '')::numeric, 0)
WHEN (contracted_work_type = 'reclamation') THEN
COALESCE(NULLIF(contracted_work_data->>'mob_demob_site', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'camp_lodging', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'surface_recontouring', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'topsoil_replacement', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'revegetation_monitoring', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'technical_report_writing', '')::numeric, 0)
WHEN (contracted_work_type = 'remediation') THEN
COALESCE(NULLIF(contracted_work_data->>'mob_demob_site', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'camp_lodging', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'excavation', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'contaminated_soil', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'confirmatory_sampling', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'backfilling_excavation', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'risk_assessment', '')::numeric, 0) +
COALESCE(NULLIF(contracted_work_data->>'site_closure', '')::numeric, 0)
ELSE -1
END as estimated_cost
FROM (
SELECT
*,
to_jsonb(contracted_work)->'value' as contracted_work_data,
review_sites->well_authorization_number->'contracted_work'->contracted_work_type->>'contracted_work_status_code' as contracted_work_status_code
FROM (
SELECT
*,
application.json #>> '{company_details, company_name, label}' as company_name,
application.well_site #>> '{details,well_authorization_number}' as well_authorization_number,
jsonb_object_keys(application.well_site #> '{contracted_work}') as contracted_work_type,
jsonb_each(application.well_site #> '{contracted_work}') as contracted_work
FROM (
SELECT
id,
guid,
application.json,
jsonb_array_elements(application.review_json -> 'well_sites') as review_sites,
jsonb_array_elements(application.json -> 'well_sites') as well_site
FROM
application
) as application
) as application_well_site
) as application_well_site_contracted_work_data
) as application_well_site_contracted_work
ORDER By id, guid; |
<reponame>onwebbe/agile-repo
CREATE DATABASE IF NOT EXISTS `agileretro` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `agileretro`;
-- MySQL dump 10.13 Distrib 8.0.18, for macos10.14 (x86_64)
--
-- Host: 10.129.126.28 Database: agileretro
-- ------------------------------------------------------
-- Server version 5.7.30-0ubuntu0.18.04.1
/*!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 */;
/*!50503 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 `boards_post`
--
DROP TABLE IF EXISTS `boards_post`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `boards_post` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`message` longtext NOT NULL,
`created_at` datetime(6) NOT NULL,
`updated_at` datetime(6) DEFAULT NULL,
`post_type` varchar(1000) NOT NULL,
`status` varchar(8) NOT NULL,
`created_by_id` int(11) NOT NULL,
`topic_id` int(11) NOT NULL,
`updated_by_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `boards_post_created_by_id_0b841038_fk_accounts_user_id` (`created_by_id`),
KEY `boards_post_topic_id_f477c024_fk_boards_topic_id` (`topic_id`),
KEY `boards_post_updated_by_id_76d3c48f_fk_accounts_user_id` (`updated_by_id`),
CONSTRAINT `boards_post_created_by_id_0b841038_fk_accounts_user_id` FOREIGN KEY (`created_by_id`) REFERENCES `accounts_user` (`id`),
CONSTRAINT `boards_post_topic_id_f477c024_fk_boards_topic_id` FOREIGN KEY (`topic_id`) REFERENCES `boards_topic` (`id`),
CONSTRAINT `boards_post_updated_by_id_76d3c48f_fk_accounts_user_id` FOREIGN KEY (`updated_by_id`) REFERENCES `accounts_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `boards_post`
--
LOCK TABLES `boards_post` WRITE;
/*!40000 ALTER TABLE `boards_post` DISABLE KEYS */;
INSERT INTO `boards_post` VALUES (1,'can use https://cd.successfactors.com/job/MultipleComponentsReleasePipeline/ for across-module PRs','2020-03-12 03:15:42.621041',NULL,'post','active',2,2,NULL),(3,'','2020-03-12 05:58:06.244451',NULL,'star','active',7,5,NULL),(4,'','2020-03-12 05:58:49.544643',NULL,'star','active',7,4,NULL),(5,'-Estimation should consider kinds of activities: Design/ Testing / Dependency check /Possible Requirement turnover / Integration &Testing / Nonfunctional Testing/demo etc. @All\r\n\r\nBI owners should take responsibility for quality. testing should be sufficient.','2020-03-12 06:10:44.257031',NULL,'post','active',2,1,NULL),(6,'To use multipleComponentReleasePipeline, we need to disable auto merge after PR approved.\r\n@Miracle, Follow up with WangCheng.','2020-03-12 06:14:44.275206',NULL,'post','active',2,2,NULL),(7,'','2020-03-12 06:18:43.088724',NULL,'star','active',2,2,NULL),(8,'','2020-03-12 06:18:44.801781',NULL,'star','active',2,1,NULL),(9,'release documentation prepared during dev sprint stories.','2020-03-12 06:34:36.546308',NULL,'post','active',2,4,NULL),(10,'positively involved in refinement meeting.','2020-03-12 06:36:55.380981',NULL,'post','active',2,1,NULL),(11,'Unstable Build-system. \r\nAI: Backup successful build-system for workaround.','2020-03-12 06:48:29.882870',NULL,'post','active',2,9,NULL);
/*!40000 ALTER TABLE `boards_post` 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 2020-05-14 15:30:30
|
<reponame>grmpfhmbl/SnwGateway<filename>conf/initial-data/sensor_types.sql<gh_stars>0
------------------------------------------------------------------------------
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- SENSOR TYPES
------------------------------------------------------------------------------
-- Hydro Board
INSERT INTO SENSORTYPES VALUES( 1, 32, 'DS1820' , 0.00, 'Temperature' , '°C' , 'Temperature sensor port1');
INSERT INTO SENSORTYPES VALUES( 2, 33, 'DS1820' , 0.00, 'Temperature' , '°C' , 'Temperature sensor port2');
INSERT INTO SENSORTYPES VALUES( 3, 34, 'DS1820' , 0.00, 'Temperature' , '°C' , 'Temperature sensor port3');
INSERT INTO SENSORTYPES VALUES( 4, 35, 'DS1820' , 0.00, 'Temperature' , '°C' , 'Temperature sensor port4');
INSERT INTO SENSORTYPES VALUES( 5, 36, 'DS1820' , 0.00, 'Temperature' , '°C' , 'Temperature sensor port5');
INSERT INTO SENSORTYPES VALUES( 6, 28, 'Q-PSB(bivalent)' ,-10.00, 'Water Level' , 'mm' , 'Waterlevel sensor 1');
INSERT INTO SENSORTYPES VALUES( 7, 29, 'Q-PSB(bivalent)' ,-10.00, 'Water Level' , 'mm' , 'Waterlevel sensor 2');
INSERT INTO SENSORTYPES VALUES( 8, 40, '10HS' , -0.25, 'Soil Moisture' , '%' , 'Soil moisture sensor 1');
INSERT INTO SENSORTYPES VALUES( 9, 41, '10HS' , -0.50, 'Soil Moisture' , '%' , 'Soil moisture sensor 2');
INSERT INTO SENSORTYPES VALUES(10, 42, '10HS' , -0.75, 'Soil Moisture' , '%' , 'Soil moisture sensor 3');
INSERT INTO SENSORTYPES VALUES(11, 44, 'Battery Voltage' , 0.00, 'Battery Voltage' , 'ADC' , 'Battery Voltage Main Station');
INSERT INTO SENSORTYPES VALUES(19, 9, 'Davis RainCollector 2' , 0.00, 'Rainfall' , 'mm' , 'Rainfall in mm since last measurement');
INSERT INTO SENSORTYPES VALUES(20, 10, 'Davis Vantage Pro2 Anemometer' , 0.00, 'Wind speed' , 'km/h' , 'Wind speed of Davis Anemometer');
INSERT INTO SENSORTYPES VALUES(21, 11, 'Davis Vantage Pro2 Wind direction', 0.00, 'Wind direction' , 'deg' , 'Wind direction of Davis wind vane');
INSERT INTO SENSORTYPES VALUES(23, 257, 'Battery Level' , 0.00, 'Battery Percentage' , '%' , 'Battery Level Waspmote');
------------------------------------------------------------------------------
-- Agriculture board (SONY DADC
INSERT INTO SENSORTYPES VALUES(12, 1, '808H5V5' , 0.00, 'Humidity' , '%' , 'Humidity Sensor');
INSERT INTO SENSORTYPES VALUES(13, 3, 'MPX4115A' , 0.00, 'Atmospheric Pressure' , 'cbar' , 'Atmospheric pressure Sensor');
INSERT INTO SENSORTYPES VALUES(14, 4, 'SHT75' , 0.00, 'Humidity' , '%' , 'I2C humidity Sensor');
INSERT INTO SENSORTYPES VALUES(15, 5, 'SHT75' , 0.00, 'Temperature' , '°C' , 'I2C Temperatur Sensor');
INSERT INTO SENSORTYPES VALUES(22, 12, 'Solar Radiation' , 0.00, 'Solar Radiation' , 'µmol/m^2/s' , 'Solar radiation sensor');
INSERT INTO SENSORTYPES VALUES(16, 6, 'Watermark' , 0.00, 'Soil Water Tension' , 'cbar' , 'Soil moisture sensor port1');
INSERT INTO SENSORTYPES VALUES(17, 7, 'Watermark' , 0.00, 'Soil Water Tension' , 'cbar' , 'Soil moisture sensor port2');
INSERT INTO SENSORTYPES VALUES(18, 8, 'Watermark' , 0.00, 'Soil Water Tension' , 'cbar' , 'Soil moisture sensor port3');
INSERT INTO SENSORTYPES VALUES(58, 163, 'Windvane WS3000' , 0.00, 'Wind direction' , '°' , 'WS3000 Wind vane');
INSERT INTO SENSORTYPES VALUES(59, 164, 'Anemometer WS3000' , 0.00, 'Wind speed' , 'km/h' , 'WS3000 Anemometer');
INSERT INTO SENSORTYPES VALUES(60, 165, 'Pluviometer WS3000' , 0.00, 'Rainfall' , 'mm' , 'WS3000 Pluviometer');
INSERT INTO SENSORTYPES VALUES(61, 166, 'Temperature BME280' , 0.00, 'Temperature' , '°C' , 'BME280 Temperature');
INSERT INTO SENSORTYPES VALUES(62, 167, 'Humidity BME280' , 0.00, 'Humidity' , '%' , 'BME280 Humidity');
INSERT INTO SENSORTYPES VALUES(63, 168, 'Pressure BME280' , 0.00, 'Atmospheric Pressure' , 'Pa' , 'BME280 Pressure');
INSERT INTO SENSORTYPES VALUES(64, 169, 'Temperature PT1000' , 0.00, 'Temperature' , '°C' , 'PT1000 Temperature');
------------------------------------------------------------------------------
-- SPA
-- SR - Why the fuck does 2 have lower IDs than 1?!?!
INSERT INTO SENSORTYPES VALUES(24, 304, 'SPA ice content 2' , 0.00, 'Ice content' , '%' , 'Sommer Sensor 2 Ice content');
INSERT INTO SENSORTYPES VALUES(25, 305, 'SPA water content 2' , 0.00, 'Water content' , '%' , 'Sommer Sensor 2 Water content');
INSERT INTO SENSORTYPES VALUES(26, 306, 'SPA snow density 2' , 0.00, 'Snow density' , 'kg/m^3', 'Sommer Sensor 2 Snow density');
INSERT INTO SENSORTYPES VALUES(27, 307, 'SPA SWE 2' , 0.00, 'Snow water equivalent', 'mm' , 'Sommer Sensor 2 SWE');
INSERT INTO SENSORTYPES VALUES(28, 316, 'SPA snow depth' , 0.00, 'Snow depth' , 'mm' , 'Sommer snow depth sensor');
INSERT INTO SENSORTYPES VALUES(29, 318, 'SPA chip temperature' , 0.00, 'Chip temperature' , '°C' , 'Sommer snow depth sensor chip temperature');
INSERT INTO SENSORTYPES VALUES(30, 300, 'SPA ice content 1' , 0.00, 'Ice content' , '%' , 'Sommer Sensor 1 Ice content');
INSERT INTO SENSORTYPES VALUES(31, 301, 'SPA water content 1' , 0.00, 'Water content' , '%' , 'Sommer Sensor 1 Water content');
INSERT INTO SENSORTYPES VALUES(32, 302, 'SPA snow density 1' , 0.00, 'Snow density' , 'kg/m^3', 'Sommer Sensor 1 Snow density');
INSERT INTO SENSORTYPES VALUES(33, 303, 'SPA SWE 1' , 0.00, 'Snow water equivalent', 'mm' , 'Sommer Sensor 1 SWE');
------------------------------------------------------------------------------
-- Z_GAS board
-- INSERT INTO SENSORTYPES VALUES (35,13,'<name>',0.0,'CO2','ppm','<description>');
INSERT INTO SENSORTYPES VALUES(36, 14, 'CO - TGS2442' , 0.00, 'CO' , 'ppm' , 'Gas Sensor CO - TGS2442');
INSERT INTO SENSORTYPES VALUES(37, 15, 'CH4 - TGS2611' , 0.00, 'CH4' , 'ppm' , 'Gas Sensor CH4 - TGS2611');
INSERT INTO SENSORTYPES VALUES(38, 16, 'NH3 - TGS2444' , 0.00, 'NH3' , 'ppm' , 'Gas Sensor NH3 - TGS2444');
INSERT INTO SENSORTYPES VALUES(39, 17, 'NO2 - mics2744' , 0.00, 'NO2' , 'ppm' , 'Gas Sensor NO2 - mics2744');
INSERT INTO SENSORTYPES VALUES(40, 18, 'DHT22 humidity' , 0.00, 'Humidity' , '%' , 'Humidity Sensor DHT22');
INSERT INTO SENSORTYPES VALUES(41, 19, 'DHT22 temperature' , 0.00, 'Temperature' , '°C' , 'Temperature Sensor DHT22');
------------------------------------------------------------------------------
-- WIZ
INSERT INTO SENSORTYPES VALUES(51, 51, 'WIZ-TP' , 0.00, 'Total Phosphorus' , 'ppb' , 'WIZ Method 1 - Total Phosphorus');
INSERT INTO SENSORTYPES VALUES(52, 52, 'WIZ-OP' , 0.00, 'Bioavailable Phosphorus', 'ppb' , 'WIZ Method 2 - Bioavailable Phosphorus');
INSERT INTO SENSORTYPES VALUES(53, 53, 'WIZ-PO4' , 0.00, 'Orthophosphate' , 'ppb' , 'WIZ Method 3 - Orthophosphate');
------------------------------------------------------------------------------
-- Generic Sensors
INSERT INTO SENSORTYPES VALUES(34, 45, 'RSSI' , 0.00, 'RSSI' , 'dBm' , 'Received Signal Strength Indicator');
INSERT INTO SENSORTYPES VALUES(50, 50, 'System Message' , 0.00, 'System Status' , 'text' , 'Generic System Status Message Logger');
INSERT INTO SENSORTYPES VALUES(54, 88, 'Waspmote RTC Temp' , 0.00, 'RTC Temp' , '°C' , 'Waspmote RTC Temperature');
------------------------------------------------------------------------------
-- SmartWater
INSERT INTO SENSORTYPES VALUES(55, 160, 'PT1000' , 0.00, 'Water Temperature' , '°C' , 'Water Temperature');
INSERT INTO SENSORTYPES VALUES(56, 161, 'DissolvedOxygen' , 0.00, 'Dissolved Oxygen' , '%' , 'Dissolved Oxygen');
INSERT INTO SENSORTYPES VALUES(57, 162, 'Conductivity' , 0.00, 'Conductivity' , 'mS/cm' , 'Conductivity');
------------------------------------------------------------------------------
-- STECA Tarom
INSERT INTO SENSORTYPES VALUES ( 300, 330, 'RS232 Daten-Info1', 0.0, 'Versionsnummer', 'code', '1, kompatibel mit MPPT und Tarom 4545');
INSERT INTO SENSORTYPES VALUES ( 301, 331, 'RS232 Daten-Info2', 0.0, 'Datum', 'date', 'YYYY/MM/TT');
INSERT INTO SENSORTYPES VALUES ( 302, 332, 'RS232 Daten-Info3', 0.0, 'Zeit', 'time', 'hh:mm 24 h-Format');
INSERT INTO SENSORTYPES VALUES ( 303, 333, 'RS232 Daten-Info4', 0.0, 'Batteriespannung', 'V', 'U bat');
INSERT INTO SENSORTYPES VALUES ( 304, 334, 'RS232 Daten-Info5', 0.0, 'Modulspannung 1', 'V', 'String 1, Wert und Format entsprechend Einstellung im Display (Wert vom RS485-Master)');
INSERT INTO SENSORTYPES VALUES ( 305, 335, 'RS232 Daten-Info6', 0.0, 'Modulspannung 2', 'V', 'String 2, Wert und Format entsprechend Einstellung im Display (Wert vom RS485-Master) nur Tarom 4545');
INSERT INTO SENSORTYPES VALUES ( 306, 336, 'RS232 Daten-Info7', 0.0, 'Ladezustand SOC', '%', 'Wert und Format entsprechend Einstellung im Display (Wert vom RS485-Master)');
INSERT INTO SENSORTYPES VALUES ( 307, 337, 'RS232 Daten-Info8', 0.0, 'State of health', '%', '(SOH) Wert und Format entsprechend Einstellung im Display (Wert vom RS485-Master) nur Tarom 4545');
INSERT INTO SENSORTYPES VALUES ( 308, 338, 'RS232 Daten-Info9', 0.0, 'Gesamt-Batteriestrom', 'A', 'Batterie-Ladestrom Master + Batterie-Ladestrom Slave (0…x) + Batterie-Ladestrom ext. Stromsensoren ( 0…x)');
INSERT INTO SENSORTYPES VALUES ( 309, 339, 'RS232 Daten-Info10', 0.0, 'max Modul-Eingangsstrom 1', 'A', 'String 1, IPV max (PWM eingeschaltet)');
INSERT INTO SENSORTYPES VALUES ( 310, 340, 'RS232 Daten-Info11', 0.0, 'max Modul-Eingangsstrom 2', 'A', 'String 2 IPV max (PWM eingeschaltet), nur Tarom 4545');
INSERT INTO SENSORTYPES VALUES ( 311, 341, 'RS232 Daten-Info12', 0.0, 'akt Modul-Eingangsstrom', 'A', 'momentan IPV in = Ibat + ILast');
INSERT INTO SENSORTYPES VALUES ( 312, 342, 'RS232 Daten-Info13', 0.0, 'Gesamt-Ladestrom', 'A', '(Shunts aller Generatoren)Ladestrom Master + Ladestrom Slave (0…x) + Ladestrom ext. Stromsensoren ( 0…x)');
INSERT INTO SENSORTYPES VALUES ( 313, 343, 'RS232 Daten-Info14', 0.0, 'Laststrom Geraet', 'A', 'Entladestrom wird negativ angezeigt (− wirddargestellt)');
INSERT INTO SENSORTYPES VALUES ( 314, 344, 'RS232 Daten-Info15', 0.0, 'Gesamt-Laststrom Entladestrom', 'A', 'Summe Batterie-Entladestrom ext. Stromsensoren ( 0…x)');
INSERT INTO SENSORTYPES VALUES ( 315, 345, 'RS232 Daten-Info16', 0.0, 'Temperatur Batteriesensors', '°C', '(intern/ extern)(Wert vom RS485-Master) Bei Master-/Slave-System wird nur der Wert des an den Master angeschlossenen Sensors verwendet');
INSERT INTO SENSORTYPES VALUES ( 316, 346, 'RS232 Daten-Info17', 0.0, 'Fehlerzustand', 'code', '0 = kein Fehler, 1 = Info, 2 = Warnung, 3 = Fehler');
INSERT INTO SENSORTYPES VALUES ( 317, 347, 'RS232 Daten-Info18', 0.0, 'Lademodus', 'code', 'Information über den aktuell aktiven Lademodus (float, boost, equal, IUIA, NiMH, Li-Ion) (Wert vom RS485-Master) Buchstabe entsprechend Statusanzeige auf Display');
INSERT INTO SENSORTYPES VALUES ( 318, 348, 'RS232 Daten-Info19', 0.0, 'Last', 'code', 'Lastschalter: 0 = Aus, 1 = Ein');
INSERT INTO SENSORTYPES VALUES ( 319, 349, 'RS232 Daten-Info20', 0.0, 'AUX 1', 'code', 'Relais 1: 0 = Aus, 1 = Ein');
INSERT INTO SENSORTYPES VALUES ( 320, 350, 'RS232 Daten-Info21', 0.0, 'AUX 2', 'code', 'Relais 2: 0 = Aus, 1 = Ein');
INSERT INTO SENSORTYPES VALUES ( 321, 351, 'RS232 Daten-Info22', 0.0, 'Max Ah in Batterie 24h', 'Ah', 'Wert ganzzahlig ausgeben');
INSERT INTO SENSORTYPES VALUES ( 322, 352, 'RS232 Daten-Info23', 0.0, 'Max Ah in Batterie all', 'Ah', 'seit Erstinbetriebnahme Wert ganzzahlig ausgeben');
INSERT INTO SENSORTYPES VALUES ( 323, 353, 'RS232 Daten-Info24', 0.0, 'Max Ah in Last 24h', 'Ah', 'Wert ganzzahlig ausgeben');
INSERT INTO SENSORTYPES VALUES ( 324, 354, 'RS232 Daten-Info25', 0.0, 'Max Ah in Last all', 'Ah', 'seit Erstinbetriebnahme Wert ganzzahlig ausgeben');
INSERT INTO SENSORTYPES VALUES ( 325, 355, 'RS232 Daten-Info26', 0.0, 'Derating', 'code', '0 = Derating off, 1 = Derating on');
INSERT INTO SENSORTYPES VALUES ( 326, 356, 'RS232 Daten-Info27', 0.0, 'Cyclic redundancy code CRC', 'code', 'Name: CRC-16-CCITT/openUART Width: 16 Direction: right shift Polynom: 0x8408 CCITT reversed, 2 Byte Länge, Highbyte, Lowbyte gebildet. Mit Semikolon und ohne CR + LF wird der CRC berechnet.');
------------------------------------------------------------------------------
-- SonTek IQ Plus
-- NOTE: 401, 403-408 are not sensors per se. Only here to get the easy connection between
-- serial output string position and sensor ID
--INSERT INTO SENSORTYPES VALUES( 401, 401, 'SonTek-IQ ID' , 0.0, 'SonTek-IQ ID' , '', 'System serial number');
INSERT INTO SENSORTYPES VALUES( 402, 402, 'Sample number' , 0.0, 'Sample number' , 'count', 'Sequential sample number');
--INSERT INTO SENSORTYPES VALUES( 403, 403, 'Year' , 0.0, 'Year' , '', 'Year of sample start');
--INSERT INTO SENSORTYPES VALUES( 404, 404, 'Month' , 0.0, 'Month' , '', 'Month of sample start');
--INSERT INTO SENSORTYPES VALUES( 405, 405, 'Day' , 0.0, 'Day' , '', 'Day of sample start');
--INSERT INTO SENSORTYPES VALUES( 406, 406, 'Hour' , 0.0, 'Hour' , '', 'Hour of sample start');
--INSERT INTO SENSORTYPES VALUES( 407, 407, 'Minute' , 0.0, 'Minute' , '', 'Minute of sample start');
--INSERT INTO SENSORTYPES VALUES( 408, 408, 'Second' , 0.0, 'Second' , '', 'Second of sample start');
INSERT INTO SENSORTYPES VALUES( 409, 409, 'Flow rate' , 0.0, 'Flow rate' , 'm^3/s', 'Flow rate (using defined channel geometry)');
INSERT INTO SENSORTYPES VALUES( 410, 410, 'Stage' , 0.0, 'Stage' , 'm', 'Stage (water depth of the user-defined channel)');
INSERT INTO SENSORTYPES VALUES( 411, 411, 'Mean velocity' , 0.0, 'Mean velocity' , 'm/s', 'Mean velocity');
INSERT INTO SENSORTYPES VALUES( 412, 412, 'Volume (Total)' , 0.0, 'Volume (Total)' , 'm^3', 'Total water volume (based on all measured flow)');
INSERT INTO SENSORTYPES VALUES( 413, 413, 'Depth' , 0.0, 'Depth' , 'm', 'Depth (relative to the top of the instrument)');
INSERT INTO SENSORTYPES VALUES( 414, 414, 'Index Velocity' , 0.0, 'Index Velocity' , 'm/s', 'User-specified if using Index Velocity calculation method, or same as Velocity (XZ).X if none specified.');
INSERT INTO SENSORTYPES VALUES( 415, 415, 'Area' , 0.0, 'Area' , 'm^2', 'Cross-sectional area of user-defined channel');
INSERT INTO SENSORTYPES VALUES( 416, 416, 'Temperature' , 0.0, 'Temperature' , '°C', 'Water temperature');
INSERT INTO SENSORTYPES VALUES( 417, 417, 'System Status' , 0.0, 'System Status' , 'code', 'System status (Section 7.1)');
INSERT INTO SENSORTYPES VALUES( 418, 418, 'Velocity (XZ).X-Center', 0.0, 'Velocity (XZ).X-Center', 'm/s', 'Center beams’ X velocity (downstream velocity in center of channel)');
INSERT INTO SENSORTYPES VALUES( 419, 419, 'Velocity (XZ).Z-Center', 0.0, 'Velocity (XZ).Z-Center', 'm/s', 'Center beams’ Z velocity (vertical velocity in center of channel)');
INSERT INTO SENSORTYPES VALUES( 420, 420, 'Velocity (XZ).X-Left' , 0.0, 'Velocity (XZ).X-Left' , 'm/s', 'Left beam X velocity (downstream velocity along the left bank)');
INSERT INTO SENSORTYPES VALUES( 421, 421, 'Velocity (XZ).X-Right' , 0.0, 'Velocity (XZ).X-Right' , 'm/s', 'Right beam X velocity (downstream velocity along the right bank)');
INSERT INTO SENSORTYPES VALUES( 422, 422, 'Battery' , 0.0, 'Battery' , 'V', 'Battery voltage');
INSERT INTO SENSORTYPES VALUES( 423, 423, 'Pitch' , 0.0, 'Pitch' , 'deg', 'Pitch angle in degrees');
INSERT INTO SENSORTYPES VALUES( 424, 424, 'Roll' , 0.0, 'Roll' , 'deg', 'Roll angle in degrees');
INSERT INTO SENSORTYPES VALUES( 425, 425, 'System in water' , 0.0, 'System in water' , '%', 'Percentage of sample during which instrument was submerged (100% means it was submerged for entire sample)');
INSERT INTO SENSORTYPES VALUES( 426, 426, 'Range' , 0.0, 'Range' , 'm', 'Acoustically measured distance to water surface');
INSERT INTO SENSORTYPES VALUES( 427, 427, 'Adjusted Pressure' , 0.0, 'Adjusted Pressure' , 'dbar', 'Measurement with atmospheric pressure removed');
INSERT INTO SENSORTYPES VALUES( 428, 428, 'Positive Volume' , 0.0, 'Positive Volume' , 'm^3', 'Total volume of water in the positive downstream direction');
INSERT INTO SENSORTYPES VALUES( 429, 429, 'Negative Volume' , 0.0, 'Negative Volume' , 'm^3', 'Total volume of water in the negative upstream direction');
INSERT INTO SENSORTYPES VALUES( 430, 430, 'Cell End' , 0.0, 'Cell End' , 'm', 'Distance to the farthest measurement cell');
INSERT INTO SENSORTYPES VALUES( 431, 431, 'SNR (Beam 1)' , 0.0, 'SNR (Beam 1)' , 'dB', 'SNR for beam 1 (acoustic signal strength in dB)');
INSERT INTO SENSORTYPES VALUES( 432, 432, 'SNR (Beam 2)' , 0.0, 'SNR (Beam 2)' , 'dB', 'SNR for beam 2 (acoustic signal strength in dB)');
INSERT INTO SENSORTYPES VALUES( 433, 433, 'SNR (Beam 3)' , 0.0, 'SNR (Beam 3)' , 'dB', 'SNR for beam 3 (acoustic signal strength in dB)');
INSERT INTO SENSORTYPES VALUES( 434, 434, 'SNR (Beam 4)' , 0.0, 'SNR (Beam 4)' , 'dB', 'SNR for beam 4 (acoustic signal strength in dB)');
|
INSERT INTO `adm_ci_type` (`id_adm_ci_type`, `name`, `description`, `id_adm_tenement`, `table_name`, `status`, `catalog_id`, `ci_global_unique_id`, `seq_no`, `layer_id`, `zoom_level_id`, `image_file_id`,`ci_state_type`) VALUES
(1, '日志', '日志', 1, 'adm_log_test', 'notCreated', 130, NULL, 1, 5, 9, 3, 162),
(2, 'System', 'System', 1, 'wb_system', 'created', 1, NULL, 1, 5, 556, 32, 162),
(3, 'Sub System', 'Sub System', 1, 'wb_sub_system', 'created', 1, NULL, 2, 5,30, 5, 162),
(4, 'Zone', 'Zone', 1, 'wb_zone', 'created', 4, NULL, 1, 5, 9, 5, 162),
(5, 'Unit', 'Unit', 1, 'wb_unit', 'created', 4, NULL, 2, 5, 9, 29, 162),
(6, 'Service', 'Service', 1, 'wb_service', 'created', 2, NULL, 1, 6, 10, 5, 558),
(7, 'Invoke Relation', 'Invoke Relation', 1, 'wb_invoke_relation', 'created', 2, NULL, 2, 5, 9, 5, 162),
(8, 'IDC', 'IDC', 1, 'wb_idc', 'created', 3, NULL, 1, 5, 9, 5, 162),
(9, 'DCN', 'DCN', 1, 'wb_dcn', 'created', 4, NULL, 3, 5, 9, 5, 162),
(10, 'Zone Link', 'Zone Link', 1, 'wb_zone_link', 'created', 4, NULL, 4, 5, 9, 5, 162),
(11, 'SET', 'SET', 1, 'wb_set', 'created', 4, NULL, 5, 5, 9, 5, 162),
(12, 'SET Node', 'SET Node', 1, 'wb_set_node', 'created', 3, NULL, 2, 5, 9, 5, 162),
(13, 'DCN Node', 'DCN Node', 1, 'wb_dcn_node', 'created', 3, NULL, 3, 5, 9, 5, 162),
(14, 'Zone Node', 'Zone Node', 1, 'wb_zone_node', 'created', 3, NULL, 4, 5, 9, 5, 162),
(15, 'Zone Node Link', 'Zone Node Link', 1, 'wb_zone_node_link', 'created', 3, NULL, 5, 5, 9, 5, 162),
(16, 'IP Segment', 'IP Segment', 1, 'wb_ip_segment', 'created', 3, NULL, 6, 5, 9, 5, 162),
(17, 'OS', 'Operating System', 1, 'wb_os', 'created', 3, NULL, 7, 5, 9, 13, 162),
(18, 'Storage', 'Storage', 1, 'wb_storage', 'decommissioned', 3, NULL, 8, 5, 9, 5, 162),
(19, 'Instance', 'Instance', 1, 'wb_instance', 'notCreated', 2, NULL, 3, 6, 10, 5, 162),
(20, 'IP Used', 'IP Used', 1, 'wb_ip_used', 'notCreated', 3, NULL, 9, 5, 9, 5, 558),
(21, 'Mock_Ci_Type_A', 'Mock Ci Type A', 1, 'wb_mock_ci_type_a', 'notCreated', 3, NULL, 9, 5, 9, 5, 162),
(22, 'Mock_Ci_Type_B', 'Mock Ci Type B', 1, 'wb_mock_ci_type_b', 'notCreated', 3, NULL, 9, 5, 9, 5, 162),
(23, 'Mock_Ci_Type_C', 'Mock Ci Type C', 1, 'wb_mock_ci_type_c', 'created', 3, NULL, 9, 5, 9, 5, 162),
(81, '可创建类CI', '可创建类CI', 1, 'wb_state_create', 'created', 130, NULL, 1, 5, 9, 3, 162),
(82, '可启停类CI', '可启停类CI', 1, 'wb_state_startup', 'created', 130, NULL, 1, 5, 9, 3, 162),
(83, '设计类CI', '设计类CI', 1, 'wb_state_design', 'created', 130, NULL, 1, 5, 9, 3, 162),
(84, 'Self_Ref_Ci_Type', 'Mock Self Ref Ci Type', 1, 'sef_ref_ci_type', 'notCreated', 3, NULL, 9, 5, 9, 5, 162);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (1, 'CMDB System','CMDB System',null,1);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (2, 'CMDB Commons','CMDB System',null,2);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (3, 'System','System',2,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (4, 'Sub System','Sub System',3,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (5, 'Unit','Unit',5,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (6, 'Instance','Instance',19,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (7, 'Service','Service',6,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (8, 'IP Used','IP Used',20,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (9, 'IP Segment','IP Segment',16,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (10, 'OS','OS',17,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (11, 'Storage','Storage',18,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (12, 'IDC','IDC',8,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (13, 'Zone Node','Zone Node',14,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (14, 'Zone Node Link','Zone Node Link',15,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (15, 'DCN Node','DCN Node',13,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (16, 'SET Node','SET Node',12,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (17, 'Zone','Zone',4,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (18, 'Zone Link','Zone Link',10,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (19, 'DCN','DCN',9,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (20, 'SET','SET',11,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (21, 'Geography','Geography',null,3);
INSERT INTO adm_basekey_cat_type (id_adm_basekey_cat_type,name,description,ci_type_id,type) VALUES (22, 'Mock_CatType_A','Mock CatType A',21,3);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (1, 'ci_catalog','ci_catalog',NULL, 1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (29, 'ci_layer','ci_layer',NULL, 1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (30, 'ci_zoom_level','ci_zoom_level',NULL, 1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (154,'日志操作类型','日志操作类型',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (155,'日志类别','日志类别',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (2, 'System Types','System Types',NULL, 3);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (3, 'Sub System States','Sub System States',NULL, 4);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (4, 'Unit States','Unit States',NULL, 5);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (5, 'Unit Types','Unit Types',NULL, 5);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (6, 'Unit Software','Unit Software',NULL, 5);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (7, 'Unit Clusters','Unit Clusters',NULL, 5);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (8, 'Instance Types','Instance Types',NULL, 6);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (9, 'ci_state_create', '可创建类CI状态', NULL, 1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (10, 'ci_state_start_stop', '可起停类CI状态', NULL, 1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (11, 'Service Context','Service Context',NULL, 7);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (12, 'IP Types','IP Types',NULL, 8);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (13, 'IP States','IP States',NULL, 8);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (14, 'IP Masks','IP Masks',NULL, 9);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (15, 'OS Types','OS Types',NULL, 10);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (16, 'OS Versions','OS Versions',NULL, 10);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (17, 'Storage Types','Storage Types',NULL, 11);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (18, 'IDC Cities','IDC Cities',NULL, 12);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (19, 'IDC Addresses','IDC Addresses',NULL, 12);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (20, 'IDC Types','IDC Types',NULL, 12);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (21, 'Zone Node Types','Zone Node Types',NULL, 13);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (22, 'Zone Node Link Types','Zone Node Link Types',NULL, 14);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (23, 'DCN Node Types','DCN Node Types',NULL, 15);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (24, 'SET Node Types','SET Node Types',NULL, 16);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (25, 'Zone Types','Zone Types',NULL, 17);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (26, 'Zone Link Types','Zone Link Types',NULL, 18);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (27, 'DCN Types','DCN Types',NULL, 19);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (28, 'SET Types','SET Types',NULL, 20);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (39, 'state_transition_operation', '状态迁移操作',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (40, 'state_transition_action', '状态迁移动作',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (41, 'ci_state_design', '设计类CI状态',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (156,'Country','Country',NULL,21);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type,group_type_id) VALUES (157,'Province','Province',NULL,21,156);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type,group_type_id) VALUES (158,'City','City',NULL,21,157);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (159,'Mock_Cat_A','Mock Cat A',NULL,22);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (160, 'business_group','business_group',NULL, 2);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (161,'Mock_Cat_B','Mock Cat B',NULL,22);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (162,'ci_state_type','ci_state_type',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (991,'Mock_Cat_C','Mock Cat C',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (9911,'Mock_Cat_C','Mock Cat C',NULL,1);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (9922,'Mock_Cat_C','Mock Cat C',NULL,2);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (992,'Mock_Cat_B','Mock Cat B',NULL,2);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (993,'Mock_Cat_A','Mock Cat A',NULL,22);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (994,'Mock_Cat_A','Mock Cat A',NULL,22);
INSERT INTO adm_basekey_cat (id_adm_basekey_cat, cat_name,description,id_adm_role,id_adm_basekey_cat_type) VALUES (995,'Mock_Cat_A','Mock Cat A',NULL,22);
INSERT INTO `adm_basekey_code` (`id_adm_basekey`, `id_adm_basekey_cat`, `code`, `value`, `group_code_id`, `code_description`, `seq_no`, `status`) VALUES
(1, 1, 'Catalog 1', 'Catalog 1', NULL, 'Catalog 1', 1, 'active'),
(2, 1, 'Catalog 2', 'Catalog 2', NULL, 'Catalog 2', 2, 'active'),
(3, 1, 'Catalog 3', 'Catalog 3', NULL, 'Catalog 3', 3, 'active'),
(4, 1, 'Catalog 4', 'Catalog 4', NULL, 'Catalog 4', 4, 'active'),
(5, 29, 'Business Layer', 'Business Layer', NULL, 'Business Layer', 5, 'active'),
(6, 29, 'Running Layer', 'Running Layer', NULL, 'Running Layer', 6, 'active'),
(7, 29, 'Physical Layer', 'Physical Layer', NULL, 'Physical Layer', 7, 'active'),
(8, 29, 'Planning Layer', 'Planning Layer', NULL, 'Planning Layer', 8, 'active'),
(9, 30, '1', '1', NULL, '1', 9, 'active'),
(10, 30, '2', '2', NULL, '2', 10, 'active'),
(11, 30, '3', '3', NULL, '3', 11, 'active'),
(12, 30, '4', '4', NULL, '4', 12, 'active'),
(100, 156, 'China', '中国(China)', NULL, '中国', 1, 'active'),
(101, 156, 'USA', '美国(USA)', NULL, '美国', 1, 'active'),
(110, 157, 'Guangdong', '广东', 100, '广东', 1, 'active'),
(111, 157, 'Hunan', '湖南', 100, '湖南', 2, 'active'),
(120, 158, 'Shenzhen', '深圳', 110, '深圳', 1, 'active'),
(121, 158, 'Guangzhou', '广州', 110, '广州', 2, 'active'),
(122, 159, 'Mock_Code_A', 'Mock_Code_A_Value', NULL, 'Mock Code A Desc', 1, 'active'),
-- begin of state transition --
(34, 10, 'created', '创建', NULL, NULL, 1, 'active'),
(35, 10, 'startup', '启动', NULL, NULL, 2, 'active'),
(36, 10, 'change', '变更', NULL, NULL, 3, 'active'),
(37, 10, 'stoped', '停止', NULL, NULL, 4, 'active'),
(38, 10, 'destroyed', '销毁', NULL, NULL, 5, 'active'),
(39, 9, 'created', '创建', NULL, NULL, 6, 'active'),
(40, 9, 'change', '变更', NULL, NULL, 7, 'active'),
(41, 9, 'destroyed', '销毁', NULL, NULL, 8, 'active'),
(141, 41, 'new', '新增', NULL, NULL, 1, 'active'),
(142, 41, 'update', '更新', NULL, NULL, 2, 'active'),
(143, 41, 'delete', '删除', NULL, NULL, 3, 'active'),
(144, 39, 'insert', '添加', NULL, NULL, 1, 'active'),
(145, 39, 'update', '更新', NULL, NULL, 2, 'active'),
(146, 39, 'discard', '放弃', NULL, NULL, 3, 'active'),
(147, 39, 'delete', '删除', NULL, NULL, 4, 'active'),
(148, 39, 'confirm', '确认', NULL, NULL, 5, 'active'),
(149, 40, 'insert', '插入', NULL, NULL, 1, 'active'),
(150, 40, 'insert-update', '插入-更新', NULL, NULL, 2, 'active'),
(151, 40, 'delete', '删除', NULL, NULL, 3, 'active'),
(152, 40, 'update-delete', '更新-删除', NULL, NULL, 4, 'active'),
(153, 40, 'update', '更新', NULL, NULL, 5, 'active'),
(154, 40, 'confirm', '确认', NULL, NULL, 6, 'active'),
(155, 41, 'client_layer', '客户端层', NULL, NULL, 1, 'active'),
(156, 41, 'link_layer', '接入层', NULL, NULL, 2, 'active'),
(157, 41, 'buss_layer', '业务层', NULL, NULL, 3, 'active'),
(158, 39, 'startup', '启动', NULL, NULL, 6, 'active'),
(159, 39, 'stop', '停止', NULL, NULL, 7, 'active'),
-- end of state transition --
(545, 154, '1001', '修改成功', NULL, '修改成功', 5, 'active'),
(546, 154, '1002', '新增成功', NULL, '新增成功', 4, 'active'),
(547, 154, '1003', '新增失败', NULL, '新增失败', 3, 'active'),
(548, 154, '1004', '删除成功', NULL, '删除成功', 2, 'active'),
(549, 154, '1005', '删除失败', NULL, '删除失败', 1, 'active'),
(550, 155, '1006', '配置管理', NULL, '配置管理', 4, 'active'),
(551, 155, '1007', '角色管理', NULL, '角色管理', 3, 'active'),
(552, 155, '1008', '配置信息管理', NULL, '配置信息管理', 2, 'active'),
(553, 155, '1009', '基础属性管理', NULL, '基础属性管理', 1, 'active'),
(554, 2, 'Functional', NULL, NULL, 'Functional', 1, 'active'),
(555, 2, 'public system', NULL, NULL, 'public system', 2, 'active'),
(556, 3, 'Online', NULL, NULL, 'Online', 1, 'active'),
(557, 3, 'Online-1', 'Online-1-Value', 556, 'Online-1', 1, 'active'),
(558, 162, 'realizeable', 'realizeable', NULL, 'realizeable', 1, 'active'),
(559, 162, 'desgin', 'desgin', NULL, 'desgin', 2, 'active'),
(560, 5, 'unit_type_code_1', 'unit_type_value_1', NULL, 'unit_type_desc_1', 1, 'active'),
(561, 5, 'unit_type_code_2', 'unit_type_value_2', NULL, 'unit_type_desc_1', 2, 'active'),
(881, 991, 'SystemEnumCode', 'SystemEnumValue', NULL, 'desc', 1, 'active'),
(882, 992, 'CommonEnumCode', 'CommonEnumValue', NULL, 'desc', 1, 'active'),
(883, 993, 'PrivateEnumCode1', 'PrivateEnumValue1', NULL, 'desc', 1, 'active'),
(884, 993, 'PrivateEnumCode2', 'PrivateEnumValue2', NULL, 'desc', 1, 'active'),
(885, 993, 'PrivateEnumCode3', 'PrivateEnumValue3', NULL, 'desc', 1, 'active'),
(886, 993, 'PrivateEnumCode4', 'PrivateEnumValue4', NULL, 'desc', 1, 'active'),
(887, 993, 'PrivateEnumCode5', 'PrivateEnumValue5', NULL, 'desc', 1, 'active'),
(888, 993, 'PrivateEnumCode6', 'PrivateEnumValue6', NULL, 'desc', 1, 'active'),
(889, 993, 'PrivateEnumCode7', 'PrivateEnumValue7', NULL, 'desc', 1, 'active'),
(890, 993, 'PrivateEnumCode8', 'PrivateEnumValue8', NULL, 'desc', 1, 'active'),
(891, 993, 'PrivateEnumCode9', 'PrivateEnumValue9', NULL, 'desc', 1, 'active'),
(892, 993, 'PrivateEnumCode10', 'PrivateEnumValue10', NULL, 'desc', 1, 'active'),
(893, 993, 'PrivateEnumCode11', 'PrivateEnumValue11', NULL, 'desc', 1, 'active');
-- adm_log
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('全局唯一ID', 'text', '全局唯一ID', 1, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1)
,('唯一值', 'text', '唯一值', 1, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1)
,('更新用户', 'text', '更新用户', 1, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('更新日期', 'date', '更新日期', 1, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1)
,('创建用户', 'text', '创建用户', 1, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('创建日期', 'date', '创建日期', 1, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1);
-- System
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_auto) VALUES
('English Name','text','English Name',2,'name_en','varchar',1,'1',1,0,'1','0',1,'0',NULL,45,0,'created',0,0)
,('Chinese Name','text','Chinese Name',2,'name_cn','varchar',2,'1',2,'1','0','0',1,'0',NULL,45,0,'created',0,0)
,('System ID','ref','System ID',2,'system_id','varchar',4,'1',3,'1','0','0','1','0','',15,2,'created',0,0)
,('Description','text','Description',2,'description','varchar',4,'1',4,'1','0','0',1,'0',NULL,200,0,'created',0,0)
,('System Type','select','System Type',2,'system_type','int',5,'1',5,'0','0','0',1,'0',NULL,45,2,'created',0,0)
,('State','select','State',2,'state','int',4,'1',4,'0','0','0','1','0',NULL,45,10,'created',1,1)
,('全局唯一ID', 'text', '全局唯一ID', 2, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1)
,('唯一值', 'text', '唯一值', 2, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1)
,('更新用户', 'text', '更新用户', 2, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1)
,('更新日期', 'date', '更新日期', 2, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1)
,('创建用户', 'text', '创建用户', 2, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1)
,('创建日期', 'date', '创建日期', 2, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1)
,('前全局唯一ID', 'text', '前一版本数据的guid', 2, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1)
,('根全局唯一ID', 'text', '根全局唯一ID', 2, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1);
-- Sub System
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_auto,auto_fill_rule) VALUES
('English Name','text','English Name',3,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0',0,NULL)
,('Chinese Name','text','Chinese Name',3,'name_cn','varchar',5,'1',5,'1','0','0','1','0',NULL,45,0,'created','0',0,NULL)
,('System ID','ref','System ID',3,'system_id','varchar',2,'1',2,'0','0','0','1','0',NULL,15,2,'created','0',0,NULL)
,('Zone ID','ref','Zone ID',3,'zone_id','varchar',3,'1',3,'0','0','0','1','0',NULL,15,4,'created','0',0,NULL)
,('State','select','State',3,'state','int',4,'1',4,'0','0','0','1','0',NULL,45,10,'created',1,1,NULL)
,('Description','text','Description',3,'description','varchar',6,'1',6,'1','0','0','1','0',NULL,200,0,'created','0',0,NULL)
,('全局唯一ID', 'text', '全局唯一ID', 3, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1,1,NULL)
,('唯一值', 'text', '唯一值', 3, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1,NULL)
,('更新用户', 'text', '更新用户', 3, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1,NULL)
,('更新日期', 'date', '更新日期', 3, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1,NULL)
,('创建用户', 'text', '创建用户', 3, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1,NULL)
,('创建日期', 'date', '创建日期', 3, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, 1, 0, NULL, NULL, NULL, NULL, 'created', 1,1,NULL)
,('前全局唯一ID', 'text', '前一版本数据的guid', 3, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1,NULL)
,('根全局唯一ID', 'text', '根全局唯一ID', 3, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1,NULL);
-- Zone
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',4,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',4,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'decommissioned','0')
,('Zone Type','select','Zone Type',4,'zone_type','int',3,'1',3,'0','0','0','1','0',NULL,45,25,'created','0')
,('IDC Min','number','IDC Min',4,'idc_min','int',5,'1',4,'0','0','0','0','0',NULL,2,0,'created','0')
,('Description','text','Description',4,'description','varchar',5,'1',5,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 4, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 4, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 4, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 4, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 4, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 4, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 4, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 4, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- Unit
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_delete_validate) VALUES
('English Name','text','English Name',5,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0',0)
,('Chinese Name','text','Chinese Name',5,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0',0)
,('Sub-System ID','ref','Sub-System ID',5,'subsystem_id','varchar',3,'1',3,'1','0','0','1','0','',15,3,'created','0',0)
,('State','select','State',5,'state','int',4,'1',4,'0','0','0','1','0',NULL,45,4,'created','0',0)
,('Unit Type','select','Unit Type',5,'unit_type','int',5,'1',5,'0','0','0','1','0',NULL,45,5,'created','0',0)
,('Software','select','Software',5,'software','int',6,'1',6,'0','0','0','1','0',NULL,45,6,'created','0',0)
,('Version','date','Version',5,'version','varchar',7,'1',7,'0','0','0','1','0',NULL,45,0,'created','0',0)
,('Cluster','select','Cluster',5,'cluster','int',8,'1',8,'0','0','0','1','0',NULL,45,7,'created','0',0)
,('Description','text','Description',5,'description','varchar',9,'1',9,'1','0','0','0','0',NULL,200,0,'created','0',0)
,('全局唯一ID', 'text', '全局唯一ID', 5, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1,0)
,('唯一值', 'text', '唯一值', 5, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,0)
,('更新用户', 'text', '更新用户', 5, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,0)
,('更新日期', 'date', '更新日期', 5, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,0)
,('创建用户', 'text', '创建用户', 5, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,0)
,('创建日期', 'date', '创建日期', 5, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,0)
,('前全局唯一ID', 'text', '全局唯一ID', 5, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1,0)
,('根全局唯一ID', 'text', '全局唯一ID', 5, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1,0)
;
-- Service
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',6,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',6,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('Unit ID','ref','Unit ID',6,'unit_id','varchar',3,'1',3,'0','0','0','0','0','',15,5,'created','0')
,('Port','text','Port',6,'port','varchar',4,'1',4,'1','0','0','0','0',NULL,5,0,'created','0')
,('Invokable','select','Invokable',6,'invokable','int',5,'1',5,'0','0','0','1','0',NULL,45,9,'created','0')
,('Service Type','select','Service Type',6,'service_type','int',6,'1',6,'0','1','0','1','0',NULL,45,10,'created','0')
,('Context','select','Context',6,'context','int',7,'1',7,'0','0','0','0','0',NULL,200,11,'created','0')
,('Description','text','Description',6,'description','varchar',8,'1',8,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 6, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 6, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 6, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 6, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 6, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 6, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 6, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 6, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- Invoke Relation
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Description','text','Description',7,'description','varchar',1,'1',1,'1','0','0','0','0',NULL,200,0,'created','0')
,('Service ID','ref','Service ID',7,'service_id','varchar',2,'1',2,'0','0','0','0','0','',15,6,'created','0')
,('Invoked Service ID','ref','Invoked Service ID',7,'invoked_service_id','varchar',3,'1',3,'0','0','0','0','0','',15,6,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 7, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 7, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 7, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 7, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 7, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 7, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 7, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 7, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- IDC
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',8,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',8,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('City','select','City',8,'city','int',3,'1',3,'0','0','0','1','0',NULL,45,18,'created','0')
,('Description','text','Description',8,'description','varchar',4,'1',4,'1','0','0','0','0',NULL,200,0,'created','0')
,('Address','select','Address',8,'address','int',5,'1',5,'1','0','0','0','0',NULL,100,19,'created','0')
,('Capacity','number','Capacity',8,'capacity','int',6,'1',6,'1','0','0','0','0',NULL,10,0,'created','0')
,('IDC Type','select','IDC Type',8,'idc_type','int',7,'1',7,'1','0','0','1','0',NULL,45,20,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 8, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 8, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 8, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 8, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 8, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 8, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 8, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 8, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- DCN
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',9,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',9,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('Zone ID','ref','Zone ID',9,'zone_id','varchar',3,'1',3,'0','0','0','1','0',NULL,15,4,'created','0')
,('DCN Type','select','DCN Type',9,'dcn_type','int',4,'1',4,'0','0','0','1','0',NULL,45,25,'created','0')
,('IDC Min','number','IDC Min',9,'idc_min','int',5,'1',5,'0','0','0','0','0',NULL,2,0,'created','0')
,('Description','text','Description',9,'description','varchar',6,'1',6,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 9, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 9, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 9, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 9, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 9, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 9, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 9, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 9, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- Zone Link
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',10,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',10,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('Zone A ID','ref','Zone A ID',10,'zone_a_id','varchar',3,'1',3,'0','0','0','0','0',NULL,15,4,'created','0')
,('Zone B ID','ref','Zone B ID',10,'zone_b_id','varchar',4,'1',4,'0','0','0','0','0',NULL,15,4,'created','0')
,('Zone Link Type','select','Zone Link Type',10,'zone_link_type','int',5,'1',5,'0','0','0','1','0',NULL,45,26,'created','0')
,('IDC Min','number','IDC Min',10,'idc_min','int',6,'1',6,'0','0','0','0','0',NULL,2,0,'created','0')
,('Description','text','Description',10,'description','varchar',7,'1',7,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 10, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 10, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 10, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 10, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 10, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 10, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 10, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 10, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- SET
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',11,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',11,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('DCN ID','ref','DCN ID',11,'dcn_id','varchar',3,'1',3,'0','0','0','0','0',NULL,15,9,'created','0')
,('SET Type','select','SET Type',11,'set_type','int',4,'1',4,'0','0','0','1','0',NULL,45,28,'created','0')
,('IDC Min','number','IDC Min',11,'idc_min','int',5,'1',5,'0','0','0','0','0',NULL,2,0,'created','0')
,('Description','text','Description',11,'description','varchar',6,'1',6,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 11, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 11, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 11, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 11, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 11, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 11, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 11, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 11, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- SET Node
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',12,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',12,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('IDC ID','ref','IDC ID',12,'idc_id','varchar',3,'1',3,'0','0','0','0','0',NULL,15,8,'created','0')
,('SET ID','ref','SET ID',12,'set_id','varchar',4,'1',4,'0','0','0','0','0',NULL,15,11,'created','0')
,('SET Node Type','select','SET Node Type',12,'set_node_type','int',5,'1',5,'0','0','0','1','0',NULL,45,24,'created','0')
,('Description','text','Description',12,'description','varchar',6,'1',6,'1','0','0','0','0',NULL,200,0,'created','0')
,('OS Min','number','OS Min',12,'os_min','int',7,'1',7,'0','0','0','0','0',NULL,5,0,'created','0')
,('OS Max','number','OS Max',12,'os_max','int',8,'1',8,'0','0','0','0','0',NULL,5,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 12, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 12, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 12, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 12, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 12, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 12, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 12, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 12, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- DCN Node
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',13,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',13,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('IDC ID','ref','IDC ID',13,'idc_id','varchar',3,'1',3,'0','0','0','0','0',NULL,15,8,'created','0')
,('DCN ID','ref','DCN ID',13,'dcn_id','varchar',4,'1',4,'0','0','0','0','0',NULL,15,9,'created','0')
,('DCN Node Type','select','DCN Node Type',13,'dcn_node_type','int',5,'1',5,'0','0','0','1','0',NULL,45,23,'created','0')
,('Description','text','Description',13,'description','varchar',6,'1',6,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 13, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 13, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 13, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 13, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 13, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 13, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 13, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 13, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- Zone Node
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',14,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Chinese Name','text','Chinese Name',14,'name_cn','varchar',2,'1',2,'1','0','0','1','0',NULL,45,0,'created','0')
,('Zone ID','ref','Zone ID',14,'zone_id','varchar',3,'1',3,'0','0','0','1','0',NULL,15,4,'created','0')
,('IDC ID','ref','IDC ID',14,'idc_id','varchar',4,'1',4,'0','0','0','0','0',NULL,15,8,'created','0')
,('Zone Node Type','select','Zone Node Type',14,'zone_node_type','int',5,'1',5,'0','0','0','1','0',NULL,45,21,'created','0')
,('Description','text','Description',14,'description','varchar',6,'1',6,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 14, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 14, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 14, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 14, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 14, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 14, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 14, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 14, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- Zone Node Link
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('English Name','text','English Name',15,'name_en','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Zone Node A ID','ref','Zone Node A ID',15,'zone_node_a_id','varchar',2,'1',2,'0','0','0','0','0',NULL,15,14,'created','0')
,('Zone Node B ID','ref','Zone Node B ID',15,'zone_node_b_id','varchar',3,'1',3,'0','0','0','0','0',NULL,15,14,'created','0')
,('Zone Node Link Type','select','Zone Node Link Type',15,'zone_node_link_type','int',4,'1',4,'0','0','0','1','0',NULL,45,22,'created','0')
,('Description','text','Description',15,'description','varchar',5,'1',5,'1','0','0','0','0',NULL,200,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 15, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 15, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 15, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 15, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 15, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 15, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 15, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 15, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- IP Segment
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Name','text','Name',16,'name','varchar',1,'1',1,'0','1','0','1','0',NULL,45,0,'created','0')
,('Mask','select','Mask',16,'mask','int',2,'1',2,'1','1','0','1','0',NULL,45,14,'created','0')
,('IP Segment ID','ref','IP Segment ID',16,'ip_segment_id','varchar',3,'1',3,'1','0','0','0','0',NULL,15,16,'created','0')
,('Description','text','Description',16,'description','varchar',4,'1',4,'1','0','0','0','0',NULL,200,0,'created','0')
,('Begin','text','Begin',16,'begin','varchar',5,'1',5,'1','0','0','1','0',NULL,45,0,'created','0')
,('End','text','End',16,'end','varchar',6,'1',6,'1','0','0','1','0',NULL,45,0,'created','0')
,('Zone Node ID','ref','Zone Node ID',16,'zone_node_id','varchar',7,'1',7,'1','0','0','0','0',NULL,15,14,'created','0')
,('DCN Node ID','ref','DCN Node ID',16,'dcn_node_id','varchar',8,'1',8,'1','0','0','0','0',NULL,15,13,'created','0')
,('SET Node ID','ref','SET Node ID',16,'set_node_id','varchar',9,'1',9,'1','0','0','0','0',NULL,15,12,'created','0')
,('IDC ID','ref','IDC ID',16,'idc_id','varchar',10,'1',10,'0','0','0','0','0',NULL,15,8,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 16, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 16, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 16, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 16, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 16, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 16, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 16, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 16, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- OS
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Name','text','Name',17,'name','varchar',1,'1',1,'0','1','0','0','0',NULL,100,0,'created','0')
,('SET Node ID','ref','SET Node ID',17,'set_node_id','varchar',2,'1',2,'1','0','0','0','0',NULL,15,12,'created','0')
,('OS Type','select','OS Type',17,'os_type','int',3,'1',3,'0','0','0','1','0',NULL,45,15,'created','0')
,('Version','select','Version',17,'version','int',4,'1',4,'0','0','0','1','0',NULL,45,16,'created','0')
,('Description','text','Description',17,'description','varchar',5,'1',5,'1','0','0','0','0',NULL,200,0,'created','0')
,('Core Num','number','Core Num',17,'core_num','int',6,'1',6,'0','0','0','0','0',NULL,5,0,'created','0')
,('Mem Num','number','Mem Num',17,'mem_num','int',7,'1',7,'0','0','0','0','0',NULL,5,0,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 17, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 17, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 17, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 17, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 17, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 17, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('前全局唯一ID', 'text', '全局唯一ID', 17, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('根全局唯一ID', 'text', '全局唯一ID', 17, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
;
-- Storage
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Capacity','number','Capacity',18,'capacity','int',1,'1',1,'0','0','0','0','0',NULL,10,0,'created','0')
,('Storage Type','select','Storage Type',18,'storage_type','int',2,'1',2,'0','0','0','1','0',NULL,45,17,'created','0')
,('OS ID','ref','OS ID',18,'os_id','varchar',3,'1',3,'0','0','0','0','0',NULL,15,17,'created','0')
,('全局唯一ID', 'text', '全局唯一ID', 18, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 18, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新用户', 'text', '更新用户', 18, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('更新日期', 'date', '更新日期', 18, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1)
,('创建用户', 'text', '创建用户', 18, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1)
,('创建日期', 'date', '创建日期', 18, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1);
-- wb_instance
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('全局唯一ID', 'text', '全局唯一ID', 19, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1)
,('唯一值', 'text', '唯一值', 19, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1)
,('更新用户', 'text', '更新用户', 19, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('更新日期', 'date', '更新日期', 19, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1)
,('创建用户', 'text', '创建用户', 19, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('创建日期', 'date', '创建日期', 19, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1);
-- wb_ip_used
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('全局唯一ID', 'text', '全局唯一ID', 20, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1)
,('唯一值', 'text', '唯一值', 20, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1)
,('更新用户', 'text', '更新用户', 20, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('更新日期', 'date', '更新日期', 20, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1)
,('创建用户', 'text', '创建用户', 20, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('创建日期', 'date', '创建日期', 20, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1);
-- Mock Attr for wb_mock_ci_type_a
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_auto) VALUES
('Mock_Attr_A','text','Mock Attr A',21,'mock_attr_a','varchar',1,'1',1,'0','0','0','1','0',NULL,10,0,'notCreated','0',0)
,('State','select','State',21,'state','int',4,'1',4,'0','0','0','1','0',NULL,45,10,'created',1,1)
,('全局唯一ID', 'text', '全局唯一ID', 21, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1,1)
,('唯一值', 'text', '唯一值', 21, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1,1)
,('更新用户', 'text', '更新用户', 21, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1,1)
,('更新日期', 'date', '更新日期', 21, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1,1)
,('创建用户', 'text', '创建用户', 21, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1,1)
,('创建日期', 'date', '创建日期', 21, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1,1)
,('前全局唯一ID', 'text', '全局唯一ID', 21, 'p_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1,1)
,('根全局唯一ID', 'text', '全局唯一ID', 21, 'r_guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1,1)
;
-- Mock Attr for wb_mock_ci_type_b
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Mock_Attr_B','text','Mock Attr B',22,'mock_attr_b','varchar',1,'1',1,'0','0','0','1','0',NULL,10,0,'notCreated','0')
,('Mock_Attr_A','ref','Mock_Attr_A',22,'mock_attr_a','varchar',2,'1',2,'0','0','0','1','0',NULL,15,21,'notCreated','0')
,('Mock_Attr_B_Desc','text','Mock Attr B Desc',22,'mock_attr_b_desc','varchar',1,'1',1,'0','0','0','0','0',NULL,10,0,'notCreated','0')
,('全局唯一ID', 'text', '全局唯一ID', 22, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'notCreated', 1)
,('唯一值', 'text', '唯一值', 22, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1)
,('更新用户', 'text', '更新用户', 22, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('更新日期', 'date', '更新日期', 22, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1)
,('创建用户', 'text', '创建用户', 22, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('创建日期', 'date', '创建日期', 22, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1);
-- Mock Attr for wb_mock_ci_type_c
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Mock_Attr_C','text','Mock Attr C',23,'mock_attr_b','varchar',1,'1',1,'0','0','0','0','0',NULL,10,0,'notCreated','0')
,('Mock_Attr_C_Desc','text','Mock Attr C Desc',23,'mock_attr_b_desc','varchar',1,'1',1,'0','0','0','0','0',NULL,10,0,'notCreated','0')
,('全局唯一ID', 'text', '全局唯一ID', 23, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 23, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1)
,('更新用户', 'text', '更新用户', 23, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('更新日期', 'date', '更新日期', 23, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1)
,('创建用户', 'text', '创建用户', 23, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('创建日期', 'date', '创建日期', 23, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1);
-- wb_create
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_auto) VALUES
('Name','text','Name',81,'name','varchar',1,'1',1,0,'1','0',1,'0',NULL,45,0,'created',0,0),
('Description','text','Description',81,'description','varchar',4,'1',4,'1','0','0',1,'0',NULL,200,0,'created',0,0),
('State','select','State',81,'state','int',4,'1',4,'0','0','0','0','0',NULL,15,9,'created',1,1),
('确认日期', 'text', '确认日期', 81, 'fixed_date', 'varchar', 5, '1', 4, '0','0','0','0','0',NULL, 19, NULL, 'created', 1, 1),
('全局唯一ID', 'text', '全局唯一ID', 81, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1),
('前全局唯一ID', 'text', '前一版本数据的guid', 81, 'p_guid', 'varchar', NULL, NULL, NULL, 1, 0, 0, 0, 0, NULL, 15, NULL, 'created', 1, 1),
('根全局唯一ID', 'text', '原始数据guid', 81, 'r_guid', 'varchar', NULL, NULL, NULL, 0, 0, 1, 0, 0, NULL, 15, NULL, 'created', 1, 1),
('唯一值', 'text', '唯一值', 81, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('更新用户', 'text', '更新用户', 81, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('更新日期', 'date', '更新日期', 81, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1),
('创建用户', 'text', '创建用户', 81, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('创建日期', 'date', '创建日期', 81, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1);
-- wb_startup
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_auto) VALUES
('Name','text','Name',82,'name','varchar',1,'1',1,0,'1','0',1,'0',NULL,45,0,'created',0,0),
('Description','text','Description',82,'description','varchar',4,'1',4,'1','0','0',1,'0',NULL,200,0,'created',0,0),
('State','select','State',82,'state','int',4,'1',4,'0','0','0','0','0',NULL,15,10,'created',1,1),
('确认日期', 'text', '确认日期', 82, 'fixed_date', 'varchar', 5, '1', 4, '0','0','0','0','0',NULL, 19, NULL, 'created', 1, 1),
('全局唯一ID', 'text', '全局唯一ID', 82, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1),
('前全局唯一ID', 'text', '前一版本数据的guid', 82, 'p_guid', 'varchar', NULL, NULL, NULL, 1, 0, 1, 0, 0, NULL, 15, NULL, 'created', 1, 1),
('根全局唯一ID', 'text', '原始数据guid', 82, 'r_guid', 'varchar', NULL, NULL, NULL, 0, 0, 1, 0, 0, NULL, 15, NULL, 'created', 1, 1),
('唯一值', 'text', '唯一值', 82, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('更新用户', 'text', '更新用户', 82, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('更新日期', 'date', '更新日期', 82, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1),
('创建用户', 'text', '创建用户', 82, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('创建日期', 'date', '创建日期', 82, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1);
-- wb_design
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system,is_auto) VALUES
('Name','text','Name',83,'name','varchar',1,'1',1,0,'1','0',1,'0',NULL,45,0,'created',0,0),
('Description','text','Description',83,'description','varchar',4,'1',4,1,'0','0',1,'0',NULL,200,0,'created',0,0),
('State','select','State',83,'state','int',4,'1',4,0,'0','0',1,'0',NULL,15,41,'created',1,0),
('确认日期', 'text', '确认日期', 83, 'fixed_date', 'varchar', 5, '1', 4, 1,'0','0','0','0',NULL, 19, NULL, 'created', 1, 1),
('全局唯一ID', 'text', '全局唯一ID', 83, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1 ,1),
('前全局唯一ID', 'text', '前一版本数据的guid', 83, 'p_guid', 'varchar', NULL, NULL, NULL, 1, 0, 1, 0, 0, NULL, 15, NULL, 'created', 1, 1),
('根全局唯一ID', 'text', '原始数据guid', 83, 'r_guid', 'varchar', NULL, NULL, NULL, 0, 0, 1, 0, 0, NULL, 15, NULL, 'created', 1, 1),
('唯一值', 'text', '唯一值', 83, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('更新用户', 'text', '更新用户', 83, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('更新日期', 'date', '更新日期', 83, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1),
('创建用户', 'text', '创建用户', 83, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'created', 1,1),
('创建日期', 'date', '创建日期', 83, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'created', 1,1);
INSERT INTO `adm_ci_type_attr_base` (`id_adm_ci_type_attr`, `id_adm_ci_type`, `name`, `description`, `input_type`, `property_name`, `property_type`, `length`, `reference_id`, `reference_name`, `reference_type`, `filter_rule`, `search_seq_no`, `display_type`, `display_seq_no`, `edit_is_null`, `edit_is_only`, `edit_is_hiden`, `edit_is_editable`, `is_defunct`, `special_logic`, `status`, `is_system`, `is_access_controlled`, `is_auto`, `auto_fill_rule`, `regular_expression_rule`, `is_refreshable`, `is_delete_validate`) VALUES
(1, 1, '全局唯一ID', '全局唯一ID', 'text', 'guid', 'varchar', 15, NULL, NULL, NULL, NULL, 0, 0, 1, 0, 1, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(2, 1, '前全局唯一ID', '前一版本数据的guid', 'text', 'p_guid', 'varchar', 15, NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(3, 1, '根全局唯一ID', '原始数据guid', 'text', 'r_guid', 'varchar', 15, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(4, 1, '更新用户', '更新用户', 'text', 'updated_by', 'varchar', 50, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(5, 1, '更新日期', '更新日期', 'date', 'updated_date', 'datetime', 1, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(6, 1, '创建用户', '创建用户', 'text', 'created_by', 'varchar', 50, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(7, 1, '创建日期', '创建日期', 'date', 'created_date', 'datetime', 1, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(8, 1, '唯一名称', '唯一名称', 'text', 'key_name', 'varchar', 200, NULL, NULL, NULL, NULL, 1, 1, 1, 0, 1, 0, 0, 0, NULL, 'notCreated', 1, 0, 1, NULL, NULL, 0, 1),
(9, 1, '状态', '状态', 'select', 'state', 'int', 15, 7, NULL, NULL, NULL, 2, 1, 2, 0, 0, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(10, 1, '确认日期', '确认日期', 'text', 'fixed_date', 'varchar', 19, NULL, NULL, NULL, NULL, 3, 1, 3, 1, 0, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(11, 1, '描述说明', '描述说明', 'textArea', 'description', 'varchar', 1000, NULL, NULL, NULL, NULL, 4, 1, 4, 1, 0, 0, 1, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1),
(12, 1, '编码', '编码', 'text', 'code', 'varchar', 50, NULL, NULL, NULL, NULL, 5, 1, 5, 0, 0, 0, 1, 0, NULL, 'notCreated', 1, 0, 0, NULL, NULL, 0, 1);
-- Mock Attr for Self_Ref_Ci_Type
INSERT INTO adm_ci_type_attr (name,input_type,description,id_adm_ci_type,property_name,property_type,search_seq_no,display_type,display_seq_no,edit_is_null,edit_is_only,edit_is_hiden,edit_is_editable,is_defunct,special_logic,`length`,reference_id,status,is_system) VALUES
('Self_Ref_Attr','ref','Self ref attr',84,'self_ref','varchar',1,'1',1,'0','0','0','0','0',NULL,10,84,'notCreated','0')
,('全局唯一ID', 'text', '全局唯一ID', 84, 'guid', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 15, NULL, 'created', 1)
,('唯一值', 'text', '唯一值', 84, 'key_name', 'varchar', NULL, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 500, NULL, 'notCreated', 1)
,('更新用户', 'text', '更新用户', 84, 'updated_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('更新日期', 'date', '更新日期', 84, 'updated_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1)
,('创建用户', 'text', '创建用户', 84, 'created_by', 'varchar', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 64, NULL, 'notCreated', 1)
,('创建日期', 'date', '创建日期', 84, 'created_date', 'date', NULL, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'notCreated', 1);
INSERT INTO `adm_state_transition` (`id_adm_state_transition`, `current_state`, `current_state_is_confirmed`, `target_state`, `target_state_is_confirmed`, `operation`, `action`, `status`) VALUES
(1, 39, 0, NULL, NULL, 147, 151, 'active'),
(2, NULL, NULL, 39, 0, 144, 149, 'active'),
(3, 39, 0, 39, 0, 145, 153, 'active'),
(4, 39, 0, 39, 1, 148, 154, 'active'),
(5, 39, 1, 40, 0, 145, 150, 'active'),
(6, 40, 0, 39, 1, 146, 152, 'active'),
(7, 39, 1, 41, 0, 147, 150, 'active'),
(8, 41, 0, 39, 1, 146, 152, 'active'),
(9, 40, 0, 40, 0, 145, 153, 'active'),
(10, 40, 0, 40, 1, 148, 154, 'active'),
(11, 40, 1, 40, 0, 145, 150, 'active'),
(12, 40, 0, 40, 1, 146, 152, 'active'),
(13, 40, 1, 41, 0, 147, 150, 'active'),
(14, 41, 0, 40, 1, 146, 152, 'active'),
(15, 41, 0, 41, 1, 148, 154, 'active'),
(16, 34, 0, NULL, NULL, 147, 151, 'active'),
(17, NULL, NULL, 34, 0, 144, 149, 'active'),
(18, 34, 0, 34, 0, 145, 153, 'active'),
(19, 34, 0, 34, 1, 148, 154, 'active'),
(20, 34, 1, 35, 0, 158, 150, 'active'),
(21, 35, 0, 34, 1, 146, 152, 'active'),
(22, 35, 0, 35, 1, 148, 154, 'active'),
(23, 34, 1, 37, 0, 159, 150, 'active'),
(24, 37, 0, 34, 1, 146, 152, 'active'),
(25, 37, 0, 37, 1, 148, 154, 'active'),
(26, 35, 1, 37, 0, 159, 150, 'active'),
(27, 37, 0, 35, 1, 146, 152, 'active'),
(28, 37, 1, 35, 0, 158, 150, 'active'),
(29, 35, 0, 37, 1, 146, 152, 'active'),
(30, 35, 1, 36, 0, 145, 150, 'active'),
(31, 36, 0, 35, 1, 146, 152, 'active'),
(32, 37, 1, 36, 0, 145, 150, 'active'),
(33, 36, 0, 37, 1, 146, 152, 'active'),
(34, 36, 0, 36, 0, 145, 153, 'active'),
(35, 36, 0, 36, 1, 148, 154, 'active'),
(36, 36, 1, 37, 0, 159, 150, 'active'),
(37, 37, 0, 36, 1, 146, 152, 'active'),
(38, 36, 1, 35, 0, 158, 150, 'active'),
(39, 35, 0, 36, 1, 146, 152, 'active'),
(40, 37, 1, 38, 0, 147, 150, 'active'),
(41, 38, 0, 37, 1, 146, 152, 'active'),
(42, 38, 0, 38, 1, 148, 154, 'active'),
(43, 141, 0, NULL, NULL, 147, 151, 'active'),
(44, NULL, NULL, 141, 0, 144, 149, 'active'),
(45, 141, 0, 141, 0, 145, 153, 'active'),
(46, 141, 0, 141, 1, 148, 154, 'active'),
(47, 141, 1, 142, 0, 145, 150, 'active'),
(48, 142, 0, 141, 1, 146, 152, 'active'),
(49, 141, 1, 143, 0, 147, 150, 'active'),
(50, 143, 0, 141, 1, 146, 152, 'active'),
(51, 142, 0, 142, 0, 145, 153, 'active'),
(52, 142, 0, 142, 1, 148, 154, 'active'),
(53, 142, 1, 142, 0, 145, 150, 'active'),
(54, 142, 0, 142, 1, 146, 152, 'active'),
(55, 142, 1, 143, 0, 147, 150, 'active'),
(56, 143, 0, 142, 1, 146, 152, 'active'),
(57, 143, 0, 143, 1, 148, 154, 'active');
INSERT INTO `adm_integrate_template` (`id_adm_integrate_template`, `ci_type_id`, `name`, `des`) VALUES
(1, 21, 'MockA-MockB', 'MockA-MockB');
INSERT INTO `adm_integrate_template_alias` (`id_alias`, `id_adm_ci_type`, `id_adm_integrate_template`, `alias`) VALUES
(1, 21, 1, 'MockA'),
(2, 22, 1, 'MockB');
INSERT INTO `adm_integrate_template_alias_attr` (`id_attr`, `id_alias`, `id_ci_type_attr`, `is_condition`, `is_displayed`, `mapping_name`, `filter`, `key_name`, `seq_no`, `cn_alias`, `sys_attr`) VALUES
(1, 1, 228, '1', '1', 'Mock_Attr_A', NULL, 'MockA-MockB$mock_attr_a', 1, NULL, NULL),
(2, 2, 235, '1', '1', 'Mock_Attr_B', NULL, 'MockA-MockB$mock_attr_b', 1, NULL, NULL);
INSERT INTO `adm_integrate_template_relation` (`id_relation`, `child_alias_id`, `child_ref_attr_id`, `parent_alias_id`, `is_refered_from_parent`) VALUES
(1, 1, 236, 2, 0);
INSERT INTO adm_role (id_adm_role, role_name,description,id_adm_tenement,parent_id_adm_role,role_type,is_system) VALUES
(1,'SUPER_ADMIN','超级管理员',NULL,NULL,'ADMIN',1)
,(2,'CMDB_ADMIN','CMDB管理员',NULL,NULL,'ADMIN',0)
,(3,'PLUGIN_ADMIN','插件管理员',NULL,NULL,'ADMIN',0)
,(4,'IDC_ARCHITECT','基础架构规划-IDC',NULL,NULL,'ADMIN',0)
,(5,'NETWORK_ARCHITECT','基础架构规划-网络',NULL,NULL,'ADMIN',0)
,(6,'APP_ARCHITECT','应用架构师',NULL,NULL,'ADMIN',0)
,(7,'OPS-PROD','生产环境运维',NULL,NULL,'ADMIN',0)
,(8,'OPS-TEST','测试环境运维',NULL,NULL,'ADMIN',0)
,(9,'DEVELOPER','开发人员',NULL,NULL,'ADMIN',0)
,(10,'REGULAR','普通用户',NULL,NULL,'REGULAR',0)
,(11,'READONLY','只读用户',NULL,NULL,'READONLY',0)
;
INSERT INTO adm_user (id_adm_user, name, code, description,is_system) VALUES
('1001', 'mock_user1','mock_user1','mock_user1',1)
,('1002', 'mock_user2','mock_user2','mock_user2',0)
,('1003', 'mock_user3','mock_user3','mock_user3',0)
,('1004', 'mock_user4','mock_user4','mock_user4',0)
;
INSERT INTO adm_role_user (id_adm_role_user, id_adm_role, id_adm_user, is_system) VALUES
(1, 1,'1001',1)
,(2, 1,'1002',0)
,(3, 1,'1003',0)
;
INSERT INTO adm_role_ci_type (id_adm_role_ci_type, id_adm_role,id_adm_ci_type,ci_type_name,creation_permission,removal_permission,modification_permission,enquiry_permission,execution_permission,grant_permission) VALUES
(1,1,1,'系统设计','Y','N','Y','N','Y','N')
,(2,1,7,'子系统','N','N','Y','N','N','N')
,(3,1,12,'主机','N','N','N','Y','N','N')
,(4,1,16,'机房','N','N','N','N','Y','N')
,(5,1,22,'机房设计','N','N','N','N','N','Y')
;
INSERT INTO adm_role_ci_type_ctrl_attr (id_adm_role_ci_type_ctrl_attr, id_adm_role_ci_type,creation_permission,removal_permission,modification_permission,enquiry_permission,execution_permission,grant_permission) VALUES
(1, 1,'Y','Y','Y','N','N','N')
,(2, 1,'N','N','N','N','N','N')
,(3, 1,'N','N','N','N','N','N')
,(4, 1,'N','N','N','N','N','N')
;
INSERT INTO adm_role_ci_type_ctrl_attr_condition (id_adm_role_ci_type_ctrl_attr_condition, id_adm_role_ci_type_ctrl_attr,id_adm_ci_type_attr,condition_value,ci_type_attr_name) VALUES
(1,1,11,NULL,'业务群组1')
,(2,1,12,NULL,'业务群组2')
,(3,1,13,NULL,'业务群组3')
,(4,1,14,NULL,'业务群组4')
,(5,1,15,'42,43','业务群组')
;
INSERT INTO adm_menu (id_adm_menu, name,other_name,url,seq_no,remark,parent_id_adm_menu,class_path,is_active) VALUES
(1, 'menuA','','menuA/index.html',1,NULL,NULL,NULL,0)
,(2, 'menuB','','menuB/index.html',2,NULL,NULL,NULL,0)
,(3, 'menuC','','menuC/index.html',3,NULL,NULL,NULL,0)
,(4, 'menuD','','menuD/index.html',4,NULL,NULL,NULL,0)
;
INSERT INTO adm_role_menu (id_adm_role_menu, id_adm_role,id_adm_menu,is_system) VALUES
(1,1,1,1)
,(2,1,2,0)
,(3,1,3,0)
;
INSERT INTO `adm_files` (`id_adm_file`, `type`, `name`, `content`) VALUES
(1, 'image/png', 'img', null);
|
INSERT INTO country_region(id, short_name_cn, code) VALUES(100000000, '中国', '1');
INSERT INTO country_region(id, short_name_cn, code) VALUES(101000000, '阿尔巴尼亚', 'ALB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(102000000, '阿尔及利亚', 'DZA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(103000000, '阿富汗', 'AFG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(104000000, '阿根廷', 'ARG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(105000000, '阿拉伯联合酋长国', 'ARE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(106000000, '阿鲁巴', 'ABW');
INSERT INTO country_region(id, short_name_cn, code) VALUES(107000000, '阿曼', 'OMN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(108000000, '阿塞拜疆', 'AZE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(109000000, '阿森松岛', 'ASC');
INSERT INTO country_region(id, short_name_cn, code) VALUES(110000000, '埃及', 'EGY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(111000000, '埃塞俄比亚', 'ETH');
INSERT INTO country_region(id, short_name_cn, code) VALUES(112000000, '爱尔兰', 'IRL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(113000000, '爱沙尼亚', 'EST');
INSERT INTO country_region(id, short_name_cn, code) VALUES(114000000, '安道尔', 'AND');
INSERT INTO country_region(id, short_name_cn, code) VALUES(115000000, '安哥拉', 'AGO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(116000000, '安圭拉', 'AIA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(117000000, '安提瓜岛和巴布达', 'ATG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(118000000, '澳大利亚', 'AUS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(119000000, '奥地利', 'AUT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(120000000, '奥兰群岛', 'ALA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(121000000, '巴巴多斯岛', 'BRB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(122000000, '巴布亚新几内亚', 'PNG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(123000000, '巴哈马', 'BHS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(124000000, '巴基斯坦', 'PAK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(125000000, '巴拉圭', 'PRY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(126000000, '巴勒斯坦', 'PSE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(127000000, '巴林', 'BHR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(128000000, '巴拿马', 'PAN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(129000000, '巴西', 'BRA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(130000000, '白俄罗斯', 'BLR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(131000000, '百慕大', 'BMU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(132000000, '保加利亚', 'BGR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(133000000, '北马里亚纳群岛', 'MNP');
INSERT INTO country_region(id, short_name_cn, code) VALUES(134000000, '贝宁', 'BEN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(135000000, '比利时', 'BEL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(136000000, '冰岛', 'ISL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(137000000, '波多黎各', 'PRI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(138000000, '波兰', 'POL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(139000000, '玻利维亚', 'BOL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(140000000, '波斯尼亚和黑塞哥维那', 'BIH');
INSERT INTO country_region(id, short_name_cn, code) VALUES(141000000, '博茨瓦纳', 'BWA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(142000000, '伯利兹', 'BLZ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(143000000, '不丹', 'BTN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(144000000, '布基纳法索', 'BFA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(145000000, '布隆迪', 'BDI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(146000000, '布韦岛', 'BVT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(147000000, '朝鲜', 'PRK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(148000000, '丹麦', 'DNK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(149000000, '德国', 'DEU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(150000000, '东帝汶', 'TLS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(151000000, '多哥', 'TGO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(152000000, '多米尼加', 'DMA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(153000000, '多米尼加共和国', 'DOM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(154000000, '俄罗斯', 'RUS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(155000000, '厄瓜多尔', 'ECU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(156000000, '厄立特里亚', 'ERI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(157000000, '法国', 'FRA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(158000000, '法罗群岛', 'FRO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(159000000, '法属波利尼西亚', 'PYF');
INSERT INTO country_region(id, short_name_cn, code) VALUES(160000000, '法属圭亚那', 'GUF');
INSERT INTO country_region(id, short_name_cn, code) VALUES(161000000, '法属南部领地', 'ATF');
INSERT INTO country_region(id, short_name_cn, code) VALUES(162000000, '梵蒂冈', 'VAT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(163000000, '菲律宾', 'PHL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(164000000, '斐济', 'FJI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(165000000, '芬兰', 'FIN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(166000000, '佛得角', 'CPV');
INSERT INTO country_region(id, short_name_cn, code) VALUES(167000000, '弗兰克群岛', 'FLK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(168000000, '冈比亚', 'GMB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(169000000, '刚果', 'COG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(170000000, '刚果民主共和国', 'COD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(171000000, '哥伦比亚', 'COL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(172000000, '哥斯达黎加', 'CRI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(173000000, '格恩西岛', 'GGY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(174000000, '格林纳达', 'GRD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(175000000, '格陵兰', 'GRL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(176000000, '古巴', 'CUB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(177000000, '瓜德罗普', 'GLP');
INSERT INTO country_region(id, short_name_cn, code) VALUES(178000000, '关岛', 'GUM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(179000000, '圭亚那', 'GUY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(180000000, '哈萨克斯坦', 'KAZ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(181000000, '海地', 'HTI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(182000000, '韩国', 'KOR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(183000000, '荷兰', 'NLD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(184000000, '荷属安地列斯', 'ANT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(185000000, '赫德和麦克唐纳群岛', 'HMD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(186000000, '洪都拉斯', 'HND');
INSERT INTO country_region(id, short_name_cn, code) VALUES(187000000, '基里巴斯', 'KIR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(188000000, '吉布提', 'DJI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(189000000, '吉尔吉斯斯坦', 'KGZ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(190000000, '几内亚', 'GIN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(191000000, '几内亚比绍', 'GNB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(192000000, '加拿大', 'CAN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(193000000, '加纳', 'GHA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(194000000, '加蓬', 'GAB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(195000000, '柬埔寨', 'KHM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(196000000, '捷克共和国', 'CZE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(197000000, '津巴布韦', 'ZWE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(198000000, '喀麦隆', 'CMR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(199000000, '卡塔尔', 'QAT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(200000000, '开曼群岛', 'CYM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(201000000, '科科斯群岛', 'CCK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(202000000, '科摩罗', 'COM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(203000000, '科特迪瓦', 'CIV');
INSERT INTO country_region(id, short_name_cn, code) VALUES(204000000, '科威特', 'KWT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(205000000, '克罗地亚', 'HRV');
INSERT INTO country_region(id, short_name_cn, code) VALUES(206000000, '肯尼亚', 'KEN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(207000000, '库克群岛', 'COK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(208000000, '拉脱维亚', 'LVA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(209000000, '莱索托', 'LSO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(210000000, '老挝', 'LAO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(211000000, '黎巴嫩', 'LBN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(212000000, '利比里亚', 'LBR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(213000000, '利比亚', 'LBY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(214000000, '立陶宛', 'LTU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(215000000, '列支敦士登', 'LIE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(216000000, '留尼旺岛', 'REU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(217000000, '卢森堡', 'LUX');
INSERT INTO country_region(id, short_name_cn, code) VALUES(218000000, '卢旺达', 'RWA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(219000000, '罗马尼亚', 'ROU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(220000000, '马达加斯加', 'MDG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(221000000, '马尔代夫', 'MDV');
INSERT INTO country_region(id, short_name_cn, code) VALUES(222000000, '马耳他', 'MLT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(223000000, '马拉维', 'MWI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(224000000, '马来西亚', 'MYS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(225000000, '马里', 'MLI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(226000000, '马其顿', 'MKD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(227000000, '马绍尔群岛', 'MHL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(228000000, '马提尼克', 'MTQ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(229000000, '马约特岛', 'MYT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(230000000, '曼岛', 'IMN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(231000000, '毛里求斯', 'MUS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(232000000, '毛里塔尼亚', 'MRT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(233000000, '美国', 'USA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(234000000, '美属萨摩亚', 'ASM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(235000000, '美属外岛', 'UMI');
INSERT INTO country_region(id, short_name_cn, code) VALUES(236000000, '蒙古', 'MNG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(237000000, '蒙特塞拉特', 'MSR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(238000000, '孟加拉', 'BGD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(239000000, '密克罗尼西亚', 'FSM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(240000000, '秘鲁', 'PER');
INSERT INTO country_region(id, short_name_cn, code) VALUES(241000000, '缅甸', 'MMR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(242000000, '摩尔多瓦', 'MDA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(243000000, '摩洛哥', 'MAR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(244000000, '摩纳哥', 'MCO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(245000000, '莫桑比克', 'MOZ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(246000000, '墨西哥', 'MEX');
INSERT INTO country_region(id, short_name_cn, code) VALUES(247000000, '纳米比亚', 'NAM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(248000000, '南非', 'ZAF');
INSERT INTO country_region(id, short_name_cn, code) VALUES(249000000, '南极洲', 'ATA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(250000000, '南乔治亚和南桑德威奇群岛', 'SGS');
INSERT INTO country_region(id, short_name_cn, code) VALUES(251000000, '瑙鲁', 'NRU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(252000000, '尼泊尔', 'NPL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(253000000, '尼加拉瓜', 'NIC');
INSERT INTO country_region(id, short_name_cn, code) VALUES(254000000, '尼日尔', 'NER');
INSERT INTO country_region(id, short_name_cn, code) VALUES(255000000, '尼日利亚', 'NGA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(256000000, '纽埃', 'NIU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(257000000, '挪威', 'NOR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(258000000, '诺福克', 'NFK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(259000000, '帕劳群岛', 'PLW');
INSERT INTO country_region(id, short_name_cn, code) VALUES(260000000, '皮特凯恩', 'PCN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(261000000, '葡萄牙', 'PRT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(262000000, '乔治亚', 'GEO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(263000000, '日本', 'JPN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(264000000, '瑞典', 'SWE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(265000000, '瑞士', 'CHE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(266000000, '萨尔瓦多', 'SLV');
INSERT INTO country_region(id, short_name_cn, code) VALUES(267000000, '萨摩亚', 'WSM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(268000000, '塞尔维亚,黑山', 'SCG');
INSERT INTO country_region(id, short_name_cn, code) VALUES(269000000, '塞拉利昂', 'SLE');
INSERT INTO country_region(id, short_name_cn, code) VALUES(270000000, '塞内加尔', 'SEN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(271000000, '塞浦路斯', 'CYP');
INSERT INTO country_region(id, short_name_cn, code) VALUES(272000000, '塞舌尔', 'SYC');
INSERT INTO country_region(id, short_name_cn, code) VALUES(273000000, '沙特阿拉伯', 'SAU');
INSERT INTO country_region(id, short_name_cn, code) VALUES(274000000, '圣诞岛', 'CXR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(275000000, '圣多美和普林西比', 'STP');
INSERT INTO country_region(id, short_name_cn, code) VALUES(276000000, '圣赫勒拿', 'SHN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(277000000, '圣基茨和尼维斯', 'KNA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(278000000, '圣卢西亚', 'LCA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(279000000, '圣马力诺', 'SMR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(280000000, '圣皮埃尔和米克隆群岛', 'SPM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(281000000, '圣文森特和格林纳丁斯', 'VCT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(282000000, '斯里兰卡', 'LKA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(283000000, '斯洛伐克', 'SVK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(284000000, '斯洛文尼亚', 'SVN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(285000000, '斯瓦尔巴和扬马廷', 'SJM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(286000000, '斯威士兰', 'SWZ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(287000000, '苏丹', 'SDN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(288000000, '苏里南', 'SUR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(289000000, '所罗门群岛', 'SLB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(290000000, '索马里', 'SOM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(291000000, '塔吉克斯坦', 'TJK');
INSERT INTO country_region(id, short_name_cn, code) VALUES(292000000, '泰国', 'THA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(293000000, '坦桑尼亚', 'TZA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(294000000, '汤加', 'TON');
INSERT INTO country_region(id, short_name_cn, code) VALUES(295000000, '特克斯和凯克特斯群岛', 'TCA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(296000000, '特里斯坦达昆哈', 'TAA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(297000000, '特立尼达和多巴哥', 'TTO');
INSERT INTO country_region(id, short_name_cn, code) VALUES(298000000, '突尼斯', 'TUN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(299000000, '图瓦卢', 'TUV');
INSERT INTO country_region(id, short_name_cn, code) VALUES(300000000, '土耳其', 'TUR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(301000000, '土库曼斯坦', 'TKM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(302000000, '托克劳', 'TKL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(303000000, '瓦利斯和福图纳', 'WLF');
INSERT INTO country_region(id, short_name_cn, code) VALUES(304000000, '瓦努阿图', 'VUT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(305000000, '危地马拉', 'GTM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(306000000, '维尔京群岛,美属', 'VIR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(307000000, '维尔京群岛,英属', 'VGB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(308000000, '委内瑞拉', 'VEN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(309000000, '文莱', 'BRN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(310000000, '乌干达', 'UGA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(311000000, '乌克兰', 'UKR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(312000000, '乌拉圭', 'URY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(313000000, '乌兹别克斯坦', 'UZB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(314000000, '西班牙', 'ESP');
INSERT INTO country_region(id, short_name_cn, code) VALUES(315000000, '希腊', 'GRC');
INSERT INTO country_region(id, short_name_cn, code) VALUES(316000000, '新加坡', 'SGP');
INSERT INTO country_region(id, short_name_cn, code) VALUES(317000000, '新喀里多尼亚', 'NCL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(318000000, '新西兰', 'NZL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(319000000, '匈牙利', 'HUN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(320000000, '叙利亚', 'SYR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(321000000, '牙买加', 'JAM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(322000000, '亚美尼亚', 'ARM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(323000000, '也门', 'YEM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(324000000, '伊拉克', 'IRQ');
INSERT INTO country_region(id, short_name_cn, code) VALUES(325000000, '伊朗', 'IRN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(326000000, '以色列', 'ISR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(327000000, '意大利', 'ITA');
INSERT INTO country_region(id, short_name_cn, code) VALUES(328000000, '印度', 'IND');
INSERT INTO country_region(id, short_name_cn, code) VALUES(329000000, '印度尼西亚', 'IDN');
INSERT INTO country_region(id, short_name_cn, code) VALUES(330000000, '英国', 'GBR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(331000000, '英属印度洋领地', 'IOT');
INSERT INTO country_region(id, short_name_cn, code) VALUES(332000000, '约旦', 'JOR');
INSERT INTO country_region(id, short_name_cn, code) VALUES(333000000, '越南', 'VNM');
INSERT INTO country_region(id, short_name_cn, code) VALUES(334000000, '赞比亚', 'ZMB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(335000000, '泽西岛', 'JEY');
INSERT INTO country_region(id, short_name_cn, code) VALUES(336000000, '乍得', 'TCD');
INSERT INTO country_region(id, short_name_cn, code) VALUES(337000000, '直布罗陀', 'GIB');
INSERT INTO country_region(id, short_name_cn, code) VALUES(338000000, '智利', 'CHL');
INSERT INTO country_region(id, short_name_cn, code) VALUES(339000000, '中非共和国', 'CAF');
|
<gh_stars>1-10
USE EVENT_QUEUE;
GO
-- TABLES
IF OBJECT_ID ('EVENTS_Q','U')IS NOT NULL
DROP TABLE EVENTS_Q;
GO
CREATE TABLE EVENTS_Q
(
id INT NOT NULL PRIMARY KEY IDENTITY(1,1),
txt VARCHAR(100)
)
GO
-- PROCEDURES
IF OBJECT_ID ('MASSUPDATE','P')IS NOT NULL
DROP PROCEDURE MASSUPDATE;
GO
CREATE PROCEDURE MASSUPDATE
AS
INSERT INTO EVENTS_Q(txt)VALUES('TEST')
SELECT * FROM EVENTS_Q
GO
-- TRGIGGERS
IF OBJECT_ID ('EVENTS_QMODIFIED','TR')IS NOT NULL
DROP TRIGGER EVENTS_QMODIFIED;
GO
CREATE TRIGGER EVENTS_QMODIFIED
ON EVENTS_Q
AFTER INSERT
AS
DECLARE @ID AS INT,
@TXT AS VARCHAR(100);
SELECT @TXT=(txt++'_AFTER_TRIGGER'),@ID=id FROM INSERTED;
UPDATE EVENTS_Q SET txt=@TXT WHERE id=@ID;
GO
|
<reponame>mageddo/java-examples<gh_stars>10-100
CREATE TABLE CUSTOMER (
IDT_CUSTOMER INT,
NAM_CUSTOMER VARCHAR(255),
COD_PASSWORD VARCHAR(255)
);
CREATE TABLE CUSTOMER_ROLE(
IDT_CUSTOMER INT,
IND_ROLE VARCHAR(255)
);
INSERT INTO customer VALUES (1, 'admin', 'admin');
INSERT INTO customer_role VALUES (1, 'admin');
INSERT INTO customer VALUES (2, 'user','user');
INSERT INTO customer_role VALUES (2, 'user');
INSERT INTO customer VALUES (3, 'master','master');
INSERT INTO customer_role VALUES (3, 'master');
INSERT INTO customer_role VALUES (3, 'user');
INSERT INTO customer_role VALUES (3, 'admin');
|
-- Add repository groups
update gha_repos set repo_group = name;
update gha_repos set repo_group = 'IO Visor' where org_login = 'iovisor';
update gha_repos set repo_group = 'Mininet' where org_login = 'mininet';
update gha_repos set repo_group = 'Open Networking' where org_login = 'opennetworkinglab';
update gha_repos set repo_group = 'Open Security' where org_login = 'opensecuritycontroller';
update gha_repos set repo_group = 'OpenSwitch' where org_login = 'open-switch';
update gha_repos set repo_group = 'p4language' where org_login = 'p4lang';
update gha_repos set repo_group = 'OpenBMP' where org_login = 'OpenBMP';
update gha_repos set repo_group = 'Tungsten Fabric' where org_login = 'tungstenfabric';
update gha_repos set repo_group = 'CORD' where org_login = 'opencord';
update gha_repos set repo_group = null where org_login is null;
with repo_latest as (
select sub.repo_id,
sub.repo_name
from (
select repo_id,
dup_repo_name as repo_name,
row_number() over (partition by repo_id order by created_at desc, id desc) as row_num
from
gha_events
) sub
where
sub.row_num = 1
)
update
gha_repos r
set
alias = (
select rl.repo_name
from
repo_latest rl
where
rl.repo_id = r.id
)
where
r.name like '%_/_%'
and r.name not like '%/%/%'
;
select
repo_group,
count(*) as number_of_repos
from
gha_repos
where
repo_group is not null
group by
repo_group
order by
number_of_repos desc,
repo_group asc
;
|
<gh_stars>100-1000
DROP TABLE IF EXISTS `test_step_screenshots`;
CREATE TABLE `test_step_screenshots`
(
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`test_step_id` BIGINT(20) NOT NULL,
`test_step_result_id` BIGINT(20) DEFAULT NULL,
`test_device_result_id` BIGINT(20) NOT NULL,
`testcase_result_id` BIGINT(20) NOT NULL,
`base_image_size` VARCHAR(50) DEFAULT NULL,
`entity_type` VARCHAR(30) DEFAULT NULL,
`test_data_set_name` VARCHAR(1000) DEFAULT NULL,
`test_data_id` BIGINT(20) DEFAULT NULL,
`base_image_name` TEXT,
`screen_resolution` VARCHAR(100) DEFAULT NULL,
`browser` VARCHAR(50) DEFAULT NULL,
`browser_version` DOUBLE(20, 2) DEFAULT NULL,
`ignored_coordinates` LONGTEXT,
`device_os_version` VARCHAR(16) DEFAULT NULL,
`device_name` VARCHAR(128) DEFAULT NULL,
`created_date` DATETIME DEFAULT CURRENT_TIMESTAMP,
`updated_date` DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `index_test_step_screenshots_on_test_step_id` (`test_step_id`),
KEY `index_test_step_screenshots_on_test_device_result_id` (`test_device_result_id`),
KEY `index_test_step_screenshots_on_testcase_result_id` (`testcase_result_id`),
KEY `index_test_step_screenshots_on_test_step_result_id` (`test_step_result_id`),
CONSTRAINT `fk_test_device_result_id_in_screenshots_to_test_device_results` FOREIGN KEY (`test_device_result_id`) REFERENCES `test_device_results` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
CONSTRAINT `fk_test_step_id_in_test_step_screenshots_to_test_steps` FOREIGN KEY (`test_step_id`) REFERENCES `test_steps` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
CONSTRAINT `fk_test_case_result_id_in_screenshots_to_test_case_results` FOREIGN KEY (`testcase_result_id`) REFERENCES `test_case_results` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
CONSTRAINT `fk_test_step_result_id_in_screenshots_to_test_step_results` FOREIGN KEY (`test_step_result_id`) REFERENCES `test_step_results` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB
DEFAULT CHARSET = utf8
COLLATE utf8_unicode_ci;
|
create table tree(id int, parentid int, text varchar(32));
insert into tree values(1,null,'A');
insert into tree values(2,null,'B');
insert into tree values(3,1,'AA');
insert into tree values(4,1,'AB');
insert into tree values(5,2,'BA');
insert into tree values(6,2,'BB');
insert into tree values(7,6,'BBA');
select level,count(*) as "count"
from tree
start with parentid is null
connect by prior id=parentid
group by level
having level=2;
select connect_by_isleaf,count(*) as "count"
from tree
start with parentid is null
connect by prior id=parentid
group by connect_by_isleaf
having connect_by_isleaf=1;
update tree set parentid=7 where id=2;
select connect_by_iscycle,count(*) as "count"
from tree
start with text in ('A','B')
connect by nocycle prior id=parentid
group by connect_by_iscycle
having connect_by_iscycle=1;
drop table tree; |
<reponame>opengauss-mirror/Yat<filename>openGaussBase/testcase/KEYWORDS/then/Opengauss_Function_Keyword_Then_Case0019.sql
-- @testpoint:opengauss关键字then(保留),作为外部数据源名
--关键字不带引号-失败
drop data source if exists then;
create data source then;
--关键字带双引号-成功
drop data source if exists "then";
create data source "then";
drop data source "then";
--关键字带单引号-合理报错
drop data source if exists 'then';
create data source 'then';
--关键字带反引号-合理报错
drop data source if exists `then`;
create data source `then`;
|
CREATE FUNCTION [dspUtil].[RedactMobileNumber] (@MobileNumber TSTRING)
RETURNS TSTRING
BEGIN
SET @MobileNumber = dspUtil.FormatMobileNumber(@MobileNumber);
IF (@MobileNumber IS NOT NULL)
RETURN '*********' + SUBSTRING(@MobileNumber, LEN(@MobileNumber) - 1, 2);
RETURN NULL;
END; |
<filename>WebServer/BakaRoot_GanQuyenAgent.sql<gh_stars>0
----Ngay NguoiChinhSua Version-----
----01/12/2016 <NAME>em 1.0
----01/12/2016 <NAME> Diem 1.1
DROP PROCEDURE [dbo].[sp_FindMerchantAvailable]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[sp_FindMerchantAvailable]
@AgentCode varchar(50),
@RegionCode varchar(50)
AS
BEGIN
SELECT top 1000 [MerchantCode]
,[MerchantName]
,[BackEndProcessor]
,[Status]
,[Owner]
,[MerchantType]
,[Address1]
,[Address2]
,[Address3]
,[CityCode]
,[Zip]
,[Phone]
,[Fax]
,[Email]
,[ApprovalDate]
,[CloseDate]
,[BankCardDBA]
,[FirstActiveDate]
,[LastActiveDate]
,[AgentCode]
,[CityName]
,[RegionCode]
,[RegionName]
,[Description]
FROM [dbo].[MERCHANT] a
WHERE a.AgentCode != @AgentCode
AND a.RegionCode = @RegionCode
ORDER BY a.MerchantCode
END
GO
----Ngay NguoiChinhSua Version-----
----01/12/2016 <NAME> 1.0
DROP PROCEDURE [dbo].[sp_UpdateAgentOfMerchant]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[sp_UpdateAgentOfMerchant]
@MerchantCode varchar(50),
@AgentCode varchar(50)
AS
BEGIN
UPDATE MERCHANT SET AgentCode = @AgentCode WHERE MerchantCode = @MerchantCode
END
GO |
<reponame>geophile/sql-layer<filename>fdb-sql-layer-core/src/test/resources/com/foundationdb/sql/optimizer/rule/find-groups/simple-outer.sql<gh_stars>0
SELECT * FROM customers LEFT JOIN orders ON customers.cid = orders.cid LEFT JOIN items ON orders.oid = items.oid
|
-- ---------- Initialized DB and create mysql account -----------
-- --------------------------------------------------------
|
<reponame>beleo/devilbox-dolphin
DELETE FROM `sys_objects_actions` WHERE `Type` = 'bx_articles' AND `Caption` = '{share_articles_title}';
INSERT INTO `sys_objects_actions`(`Caption`, `Icon`, `Url`, `Script`, `Eval`, `Order`, `Type`, `bDisplayInSubMenuHeader`) VALUES
('{share_articles_title}', 'share', '', '{share_articles_script}', '', 3, 'bx_articles', 0);
-- update module version
UPDATE `sys_modules` SET `version` = '1.1.1' WHERE `uri` = 'articles' AND `version` = '1.1.0';
|
-- See https://stackoverflow.com/questions/21547/in-sql-server-how-do-i-generate-a-create-table-statement-for-a-given-table/18619504#18619504
-- You could try in is sqlfiddle: http://sqlfiddle.com/#!6/e3b66/3/0
SELECT
obj.name
,'CREATE TABLE [' + obj.name + '] (' + LEFT(cols.list, LEN(cols.list) - 1 ) + ')'
+ ISNULL(' ' + refs.list, '')
FROM sysobjects obj
CROSS APPLY (
SELECT
CHAR(10)
+ ' [' + column_name + '] '
+ data_type
+ CASE data_type
WHEN 'sql_variant' THEN ''
WHEN 'text' THEN ''
WHEN 'ntext' THEN ''
WHEN 'xml' THEN ''
WHEN 'decimal' THEN '(' + CAST(numeric_precision as VARCHAR) + ', ' + CAST(numeric_scale as VARCHAR) + ')'
ELSE COALESCE('(' + CASE WHEN character_maximum_length = -1 THEN 'MAX' ELSE CAST(character_maximum_length as VARCHAR) END + ')', '')
END
+ ' '
+ case when exists ( -- Identity skip
select id from syscolumns
where object_name(id) = obj.name
and name = column_name
and columnproperty(id,name,'IsIdentity') = 1
) then
'IDENTITY(' +
cast(ident_seed(obj.name) as varchar) + ',' +
cast(ident_incr(obj.name) as varchar) + ')'
else ''
end + ' '
+ CASE WHEN IS_NULLABLE = 'No' THEN 'NOT ' ELSE '' END
+ 'NULL'
+ CASE WHEN information_schema.columns.column_default IS NOT NULL THEN ' DEFAULT ' + information_schema.columns.column_default ELSE '' END
+ ','
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE table_name = obj.name
ORDER BY ordinal_position
FOR XML PATH('')
) cols (list)
CROSS APPLY(
SELECT
CHAR(10) + 'ALTER TABLE ' + obj.name + '_noident_temp ADD ' + LEFT(alt, LEN(alt)-1)
FROM(
SELECT
CHAR(10)
+ ' CONSTRAINT ' + tc.constraint_name
+ ' ' + tc.constraint_type + ' (' + LEFT(c.list, LEN(c.list)-1) + ')'
+ COALESCE(CHAR(10) + r.list, ', ')
FROM
information_schema.table_constraints tc
CROSS APPLY(
SELECT
'[' + kcu.column_name + '], '
FROM
information_schema.key_column_usage kcu
WHERE
kcu.constraint_name = tc.constraint_name
ORDER BY
kcu.ordinal_position
FOR XML PATH('')
) c (list)
OUTER APPLY(
-- // http://stackoverflow.com/questions/3907879/sql-server-howto-get-foreign-key-reference-from-information-schema
SELECT
' REFERENCES [' + kcu1.constraint_schema + '].' + '[' + kcu2.table_name + ']' + '(' + kcu2.column_name + '), '
FROM information_schema.referential_constraints as rc
JOIN information_schema.key_column_usage as kcu1 ON (kcu1.constraint_catalog = rc.constraint_catalog AND kcu1.constraint_schema = rc.constraint_schema AND kcu1.constraint_name = rc.constraint_name)
JOIN information_schema.key_column_usage as kcu2 ON (kcu2.constraint_catalog = rc.unique_constraint_catalog AND kcu2.constraint_schema = rc.unique_constraint_schema AND kcu2.constraint_name = rc.unique_constraint_name AND kcu2.ordinal_position = KCU1.ordinal_position)
WHERE
kcu1.constraint_catalog = tc.constraint_catalog AND kcu1.constraint_schema = tc.constraint_schema AND kcu1.constraint_name = tc.constraint_name
) r (list)
WHERE tc.table_name = obj.name
FOR XML PATH('')
) a (alt)
) refs (list)
WHERE
xtype = 'U'
AND name NOT IN ('dtproperties')
AND obj.name = 'your_table_name'
|
CREATE OR REPLACE PACKAGE quilt AUTHID CURRENT_USER IS
-- PL/SQL code coverage tool - start/stop profiling using DBMS_PROFILER
-- Enables Code Coverage reporting for schema/object
--
-- %param owner owner of the object
-- %param object_name object name accepts LIKE expressions with \ as escape, optional
-- %param object_type object type exact value (PACKAGE BODY, TYPE BODY, PROCEDURE, FUNCTION, TRIGGER) or null
--
PROCEDURE enable_report
(
OWNER IN VARCHAR2,
object_name IN VARCHAR2 DEFAULT NULL,
object_type IN VARCHAR2 DEFAULT NULL
);
-- Disables Code Coverage reporting for schema/object
--
-- %param owner owner of the object
-- %param object_name object name accepts LIKE expressions with \ as escape
-- %param object_type object type exact value (PACKAGE BODY, TYPE BODY, PROCEDURE, FUNCTION, TRIGGER) or null
--
PROCEDURE disable_report
(
OWNER IN VARCHAR2,
object_name IN VARCHAR2 DEFAULT NULL,
object_type IN VARCHAR2 DEFAULT NULL
);
FUNCTION reported_objects RETURN quilt_object_list_type
PIPELINED;
-- Default Test name
DEFAULT_TEST_NAME CONSTANT VARCHAR2(255) := 'Code coverage test';
-- Starts profilign
--
-- %param p_test_name tet name
--
-- %return Quilt run_id
--
FUNCTION start_profiling(test_name IN VARCHAR2 DEFAULT DEFAULT_TEST_NAME) RETURN NUMBER;
PROCEDURE start_profiling(test_name IN VARCHAR2 DEFAULT DEFAULT_TEST_NAME);
-- Stops profiling
--
PROCEDURE stop_profiling;
-- Generate report
--
-- %param run_id Quilt run id returned by start_profiling function; default is last run id
--
PROCEDURE generate_report(run_id IN NUMBER DEFAULT NULL);
-- returns lines of report formated as LCOV report identified by runid - returned by start_profiling
-- if no runid is passed then last report within session is displayed
--
-- %param run_id Quilt run id returned by start_profiling function; default is last run id
--
FUNCTION display_lcov(run_id IN NUMBER DEFAULT NULL) RETURN quilt_report
PIPELINED;
END quilt;
/
|
-- phpMyAdmin SQL Dump
-- version 3.4.10.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 11, 2020 at 05:56 AM
-- Server version: 5.5.54
-- PHP Version: 5.3.10-1ubuntu3.26
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: `hhm`
--
-- --------------------------------------------------------
--
-- Table structure for table `online_machine`
--
CREATE TABLE IF NOT EXISTS `online_machine` (
`ID` int(11) NOT NULL,
`MachineID` int(10) NOT NULL,
`CameraID1` int(10) DEFAULT NULL,
`CameraID2` int(10) DEFAULT NULL,
`CameraID3` int(10) DEFAULT NULL,
`Play_Mode` int(2) DEFAULT NULL,
`Grab_Weight` int(6) NOT NULL DEFAULT '666666',
`Max_Second` int(4) NOT NULL DEFAULT '30',
`Category` char(100) DEFAULT NULL,
`Title` char(50) DEFAULT NULL,
`Price` float DEFAULT NULL,
`Location` char(50) DEFAULT NULL,
`Tag` char(255) DEFAULT NULL,
`Active` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `online_machine`
--
INSERT INTO `online_machine` (`ID`, `MachineID`, `CameraID1`, `CameraID2`, `CameraID3`, `Play_Mode`, `Grab_Weight`, `Max_Second`, `Category`, `Title`, `Price`, `Location`, `Tag`, `Active`) VALUES
(1, 2000001, 0, 0, NULL, 1, 888888, 35, 'A', '<NAME>', 65, NULL, NULL, 1),
(2, 2000002, 0, 0, NULL, 1, 888888, 30, 'A', '<NAME>', 55, NULL, NULL, 1),
(3, 2000003, 0, 0, NULL, 1, 888888, 30, 'A', '<NAME>', 52, NULL, NULL, 1),
(4, 2000004, 20200002, 20200001, NULL, 1, 888888, 30, 'A', 'Stitch Candy Big', 16, NULL, NULL, 1),
(5, 2000005, 0, 0, NULL, 1, 888888, 30, 'A', '<NAME>', 33, NULL, NULL, 1),
(6, 2000006, 20200001, 20200002, NULL, 1, 888888, 30, 'A', 'Baby Bloo - Fluffy', 44, NULL, NULL, 1),
(7, 2000007, 20200001, 20200002, NULL, 1, 888888, 30, 'A', 'Rilakkuma - Fluffy Face', 55, NULL, NULL, 1),
(8, 2000008, 20200001, 20200002, NULL, 1, 888888, 30, 'A', 'Micky Mouse Apple Plushy', 55, NULL, NULL, 1),
(9, 2000009, 20200001, 20200002, NULL, 1, 888888, 30, 'A', '<NAME>', 55, NULL, NULL, 1),
(10, 2000010, 20200001, 20200002, NULL, 1, 888888, 30, 'A', 'Dragon Ball Super', 66, NULL, NULL, 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 */;
|
<gh_stars>1-10
INSERT INTO video(teamid, description, private, filename, category1, category2, category3, title) VALUES (1, 'Where to Kick after Point Scored?', 1, 'Clip01N.mp4', 'W Bulldogs', '', '', 'WB Kickout1');
INSERT INTO video(teamid, description, private, filename, category1, category2, category3, title) VALUES (1, 'Where to Kick after Point Scored?', 1, 'Clip02N.mp4', 'W Bulldogs', '', '', 'WB Kickout2');
INSERT INTO video(teamid, description, private, filename, category1, category2, category3, title) VALUES (1, 'Where to Kick after Point Scored?', 1, 'Clip03N.mp4', 'W Bulldogs', '', '', 'WB Kickout3');
INSERT INTO video(teamid, description, private, filename, category1, category2, category3, title) VALUES (2, 'Where to Kick after Point Scored?', 1, 'Clip01N.mp4', 'W Bulldogs', '', '', 'WB Kickout1');
INSERT INTO video(teamid, description, private, filename, category1, category2, category3, title) VALUES (2, 'Where to Kick after Point Scored?', 1, 'Clip02N.mp4', 'W Bulldogs', '', '', 'WB Kickout2');
INSERT INTO video(teamid, description, private, filename, category1, category2, category3, title) VALUES (2, 'Where to Kick after Point Scored?', 1, 'Clip03N.mp4', 'W Bulldogs', '', '', 'WB Kickout3');
|
<reponame>timshadel/subdivision-list
CREATE TABLE subdivision_SI (id VARCHAR(6) NOT NULL, name VARCHAR(255), level VARCHAR(64) NOT NULL, PRIMARY KEY(id));
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-001', E'Ajdovšcina', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-195', E'Apače', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-002', E'Beltinci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-148', E'Benedikt', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-149', E'Bistrica ob Sotli', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-003', E'Bled', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-150', E'Bloke', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-004', E'Bohinj', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-005', E'Borovnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-006', E'Bovec', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-151', E'Braslovče', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-007', E'Brda', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-008', E'Brezovica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-009', E'Brežice', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-152', E'Cankova', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-011', E'Celje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-012', E'Cerklje na Gorenjskem', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-013', E'Cerknica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-014', E'Cerkno', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-153', E'Cerkvenjak', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-197', E'Cirkulane', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-015', E'Crenšovci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-016', E'Crna na Koroškem', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-017', E'Črnomelj', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-018', E'Destrnik', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-019', E'Divača', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-154', E'Dobje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-020', E'Municipality of Dobrepolje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-155', E'Dobrna', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-021', E'Municipality of Dobrova–Polhov Gradec', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-156', E'Dobrovnik/Dobronak', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-022', E'Dol pri Ljubljani', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-157', E'Dolenjske Toplice', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-023', E'Domžale', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-024', E'Dornava', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-025', E'Dravograd', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-026', E'Duplek', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-027', E'Municipality of Gorenja Vas–Poljane', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-028', E'Gorišnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-207', E'Gorje', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-029', E'Gornja Radgona', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-030', E'Gornji Grad', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-031', E'Gornji Petrovci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-158', E'Grad', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-032', E'Grosuplje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-159', E'Hajdina', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-160', E'Municipality of Hoče–Slivnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-161', E'Hodoš/Hodos', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-162', E'Municipality of Horjul', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-034', E'Hrastnik', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-035', E'Municipality of Hrpelje–Kozina', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-036', E'Idrija', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-037', E'IG', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-038', E'Ilirska Bistrica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-039', E'Ivančna Gorica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-040', E'Izola', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-041', E'Jesenice', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-163', E'Jezersko', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-042', E'Juršinci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-043', E'Kamnik', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-044', E'Kanal', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-045', E'Kidričevo', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-046', E'Kobarid', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-047', E'Kobilje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-048', E'Kočevje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-049', E'Komen', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-164', E'Komenda', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-050', E'Koper', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-196', E'Kosanjevica na Krki', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-165', E'Kostel', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-051', E'Kozje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-052', E'Kranj', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-053', E'Kranjska Gora', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-166', E'Križevci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-054', E'Krško', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-055', E'Kungota', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-056', E'Kuzma', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-057', E'Laško', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-058', E'Municipality of Lenart', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-059', E'Lendava/Lendva', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-060', E'Litija', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-061', E'Ljubljana', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-062', E'Ljubno ob Savinji', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-063', E'Ljutomer', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-208', E'Municipality of Log–Dragomer', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-064', E'Logatec', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-167', E'Lovrenc na Pohorju', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-065', E'Municipality of Loška Dolina', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-066', E'Municipality of Loški Potok', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-067', E'Luce', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-068', E'Lukovica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-069', E'Majšperk', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-198', E'Makole', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-070', E'Maribor', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-168', E'Markovci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-071', E'Medvode', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-072', E'Mengeš', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-073', E'Metlika', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-074', E'Mežica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-169', E'Miklavž na Dravskem Polju', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-075', E'Municipality of Miren–Kostanjevica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-170', E'<NAME>', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-076', E'Mislinja', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-199', E'Municipality of Mokronog–Trebelno', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-077', E'Moravče', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-078', E'Moravske Toplice', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-079', E'Mozirje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-080', E'Murska Sobota', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-081', E'Muta', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-082', E'Naklo', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-083', E'Nazarje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-084', E'Nova Gorica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-085', E'Novo Mesto', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-086', E'Odranci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-171', E'Oplotnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-087', E'Ormož', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-088', E'Osilnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-089', E'Pesnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-090', E'Piran', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-091', E'Pivka', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-092', E'Podčetrtek', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-172', E'Podlehnik', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-093', E'Podvelka', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-200', E'Poljčane', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-173', E'Polzela', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-094', E'Postojna', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-174', E'Prebold', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-095', E'Preddvor', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-175', E'Prevalje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-096', E'Ptuj', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-097', E'Puconci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-098', E'Municipality of Rače–Fram', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-099', E'Radeče', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-100', E'Radenci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-101', E'Radlje ob Dravi', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-102', E'Radovljica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-103', E'Ravne na Koroškem', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-176', E'Razkrižje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-201', E'Municipality of Renče–Vogrsko', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-209', E'Rečica ob Savinji', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-104', E'Ribnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-177', E'Ribnica na Pohorju', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-107', E'Rogatec', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-106', E'Rogaška Slatina', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-105', E'Rogašovci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-108', E'Ruše', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-178', E'Selnica ob Dravi', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-109', E'Semic', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-110', E'Sevnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-111', E'Sežana', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-112', E'Slovenj Gradec', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-113', E'Slovenska Bistrica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-114', E'Slovenske Konjice', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-179', E'Sodražica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-180', E'Solčava', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-202', E'Središče ob Dravi', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-115', E'Starše', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-203', E'Straža', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-181', E'Sveta Ana', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-204', E'Sveta Trojica v Slovenskih Goricah', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-182', E'Sveti Andraž v Slovenskih goricah', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-116', E'Sveti Jurij', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-210', E'Sveti Jurij v Slovenskih Goricah', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-205', E'Sveti Tomaž', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-184', E'Tabor', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-010', E'Tišina', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-128', E'Tolmin', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-129', E'Trbovlje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-130', E'Trebnje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-185', E'Trnovska Vas', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-186', E'Trzin', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-131', E'Tržic', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-132', E'Turnišce', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-133', E'Velenje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-187', E'Velika Polana', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-134', E'Velike Lašce', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-188', E'Veržej', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-135', E'Videm', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-136', E'Vipava', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-137', E'Vitanje', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-138', E'Vodice', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-139', E'Vojnik', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-189', E'Vransko', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-140', E'Vrhnika', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-141', E'Vuzenica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-142', E'Zagorje ob Savi', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-143', E'Zavrč', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-144', E'Zreče', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-033', E'Šalovci', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-183', E'Municipality of Šempeter–Vrtojba', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-117', E'Šencur', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-118', E'Šentilj', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-119', E'Šentjernej', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-120', E'Šentjur pri Celju', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-211', E'Šentrupert', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-121', E'Škocjan', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-122', E'Škofja Loka', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-123', E'Škofljica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-124', E'Šmarje pri Jelšah', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-206', E'Šmarješke Toplice', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-125', E'Šmartno ob Paki', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-194', E'Šmartno pri Litiji', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-194', E'Šmartno pri Litiji', E'commune');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-126', E'Šoštanj', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-127', E'Štore', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-190', E'Žalec', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-146', E'Železniki', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-191', E'Žetale', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-147', E'Žiri', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-192', E'Municipality of Žirovnica', E'');
INSERT INTO "subdivision_SI" ("id", "name", "level") VALUES (E'SI-193', E'Žužemberk', E'');
|
<reponame>dauspratama99/cofee-website
-- phpMyAdmin SQL Dump
-- version 4.9.7
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Dec 09, 2021 at 09:34 PM
-- Server version: 5.7.36-log
-- PHP Version: 7.3.32
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: `canteeco_kopikerinci`
--
-- --------------------------------------------------------
--
-- Table structure for table `about`
--
CREATE TABLE `about` (
`id` int(11) NOT NULL,
`isi_about` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `about`
--
INSERT INTO `about` (`id`, `isi_about`) VALUES
(1, '<p><span style=\"color:#000000\">One type of coffee that is currently in great demand by young people is robusta coffee. This type of coffee is a derivative of the Coffea canephora species. This type of coffee grows in the lowlands, but the best location for cultivating this plant is at an altitude of 400-800 meters above sea level.</span></p>\r\n\r\n<p><span style=\"color:#000000\">Arabica coffee is known to have a distinctive aroma and strong taste. This type of coffee, which comes from the mountains of Ethiopia, is a plant that grows under the canopy of a lush tropical forest. Usually, Arabica coffee grows above an altitude of 500 meters above sea level The most suitable environmental temperature for this coffee plant is around 15-24? C. </span></p>\r\n');
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`id` int(11) NOT NULL,
`username` varchar(200) DEFAULT NULL,
`password` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`id`, `username`, `password`) VALUES
(1, 'admin', <PASSWORD>'),
(2, 'anu', <PASSWORD>');
-- --------------------------------------------------------
--
-- Table structure for table `berita`
--
CREATE TABLE `berita` (
`id` int(11) NOT NULL,
`gambar` varchar(255) DEFAULT NULL,
`tgl_upload` date DEFAULT NULL,
`judul` varchar(200) DEFAULT NULL,
`desc` text,
`upload_by` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `berita`
--
INSERT INTO `berita` (`id`, `gambar`, `tgl_upload`, `judul`, `desc`, `upload_by`) VALUES
(3, '163791166321.jpeg', '2021-11-17', 'coffee bean drying', 'Dry the sorted coffee cherries on the drying floor evenly. The thickness of the dried coffee should be no more than 4 cm. Do the reversal at least 2 times in one day. The drying process usually takes about 2 weeks and will produce dry coffee cherries with a moisture content of 15%.', 'admin'),
(6, '1637569049163729648022.jpeg', '2021-11-30', 'fertilizer application process', 'Fertilizer is given 2 times a year, namely at the beginning of the rainy season and the end of the rainy season. In addition, its application is adjusted to the spacing of the plants. The following are the rules for applying fertilizer to coffee plants.', 'admin'),
(8, '16376352831637569453163756486419.jpeg', '2021-11-18', 'coffee maintenance process', 'The coffee that will be used as seeds to be picked is coffee that is physiologically ripe or red.\r\nNext, separate the skin from the seeds, then the seeds are washed and air-dried not exposed to sunlight to do nursery or seed germination for about 2.5 months using soil and sand media. The size of the seedling media is about 10x120x35 cm and is covered or shaded with dry straw or reeds.', 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `contact`
--
CREATE TABLE `contact` (
`id` int(11) NOT NULL,
`website` varchar(200) DEFAULT NULL,
`facebook` varchar(200) DEFAULT NULL,
`instagram` varchar(100) DEFAULT NULL,
`alamat` varchar(200) DEFAULT NULL,
`telepon` varchar(16) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`wa` varchar(16) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `contact`
--
INSERT INTO `contact` (`id`, `website`, `facebook`, `instagram`, `alamat`, `telepon`, `email`, `wa`) VALUES
(1, 'https://mediatamaweb.co.id/', '', '', 'Jalan Bakti Abri No.27 Pegambiran Ampalu, Kota Padang.', '+6281380825399', '<EMAIL>', '+6281380825399');
-- --------------------------------------------------------
--
-- Table structure for table `galery`
--
CREATE TABLE `galery` (
`id` int(11) NOT NULL,
`foto_galery` varchar(200) NOT NULL,
`nama_galery` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `galery`
--
INSERT INTO `galery` (`id`, `foto_galery`, `nama_galery`) VALUES
(3, '163791139219.jpeg', 'The picture above shows the process of roasting coffee beans at Cantee Coffe Kerinci.'),
(4, '1637568140163729647020.jpeg', ' the process of planting coffee beans at Cantee Coffee Kerinci.'),
(5, '1637568234163729648022.jpeg', 'the process of selecting coffee beans carried out by Cantee Coffe Kerinci employees.'),
(6, '1637568299163756486419.jpeg', 'the process of harvesting ripe coffee beans by Canter Coffe Kerinci employees.'),
(7, '1637568340163756487521.jpeg', 'the drying process of ripe coffee beans by Canter Coffe Kerinci employees.');
-- --------------------------------------------------------
--
-- Table structure for table `message`
--
CREATE TABLE `message` (
`id` int(11) NOT NULL,
`nama` varchar(200) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`kepala` varchar(200) DEFAULT NULL,
`isi_pesan` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `message`
--
INSERT INTO `message` (`id`, `nama`, `email`, `kepala`, `isi_pesan`) VALUES
(1, 'aku', '<EMAIL>', 'aku salah', 'aku yang salah kepadamu'),
(2, 'anu', '<EMAIL>', 'ani yang salah', 'ani salah ma'),
(3, 'anjum', '<EMAIL>', 'ani yang salah', 'anjuma'),
(8, '<NAME>', '<EMAIL>', 'Question about your website', 'Hey,\r\n\r\nYour website's design is absolutely brilliant. The visuals really enhance your message and the content compels action. I've forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your site, though, I noticed some mistakes that you've made re: search engine optimization (SEO) which may be leading to a decline in your organic SEO results. Would you like to fix it so that you can get maximum exposure/presence on Google, Bing, Yahoo and web traffic to your website?\r\n\r\nIt's a relatively simple fix. If this is a priority.\r\n\r\nPlease share your “Phone Number" and a suitable time to talk, so I can help you in that.\r\n\r\n\r\nRegards,\r\nJack Cooper\r\nDigital Marketing Expert');
-- --------------------------------------------------------
--
-- Table structure for table `product`
--
CREATE TABLE `product` (
`id` int(11) NOT NULL,
`foto_produk` varchar(100) DEFAULT NULL,
`nama_produk` varchar(255) DEFAULT NULL,
`harga` int(100) DEFAULT NULL,
`jumlah` int(50) DEFAULT NULL,
`desc` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `product`
--
INSERT INTO `product` (`id`, `foto_produk`, `nama_produk`, `harga`, `jumlah`, `desc`) VALUES
(3, '1637910994kopi_arabica.jpg', 'Arabica Coffee', 78000, 100, 'Arabica coffee (Coffea arabica), also known as Arabic coffee, Arabic bush coffee, or mountain coffee, is a species of the genus Coffea. This species is believed to be the first coffee species to be cultivated, and is the dominant cultivar, representing about 60% of global coffee production.'),
(4, '1637911005kopi_robusta.jpg', 'Robusta Coffee', 45000, 100, 'Robusta comes from the word \'robust\' which means strong, according to the description of the posture (body) or the level of its strong viscosity. Robusta coffee is not a species because this type is derived from the Coffea canephora species.');
-- --------------------------------------------------------
--
-- Table structure for table `slider`
--
CREATE TABLE `slider` (
`id` int(11) NOT NULL,
`gambar` varchar(200) DEFAULT NULL,
`nama_web` varchar(100) DEFAULT NULL,
`desc` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `slider`
--
INSERT INTO `slider` (`id`, `gambar`, `nama_web`, `desc`) VALUES
(1, '16377662961637132187gambar_biji.JPG', 'If it wasn\'t for coffee, I\'d have no discernible personality at all And', ' Coffee is always a good idea.');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `about`
--
ALTER TABLE `about`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `berita`
--
ALTER TABLE `berita`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `contact`
--
ALTER TABLE `contact`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `galery`
--
ALTER TABLE `galery`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `message`
--
ALTER TABLE `message`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `product`
--
ALTER TABLE `product`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `slider`
--
ALTER TABLE `slider`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `about`
--
ALTER TABLE `about`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `admin`
--
ALTER TABLE `admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `berita`
--
ALTER TABLE `berita`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `contact`
--
ALTER TABLE `contact`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `galery`
--
ALTER TABLE `galery`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `message`
--
ALTER TABLE `message`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `product`
--
ALTER TABLE `product`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `slider`
--
ALTER TABLE `slider`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
|
SET @sName = 'bx_protean';
-- SETTINGS
UPDATE `sys_options_types` SET `icon`='bx_protean@modules/boonex/protean/|std-icon.svg' WHERE `name`=@sName;
UPDATE `sys_options` SET `value`='1024' WHERE `name`=CONCAT(@sName, '_page_width');
SET @iMixId = (SELECT `id` FROM `sys_options_mixes` WHERE `type`=@sName AND `name`='Neat-Mix' LIMIT 1);
UPDATE sys_options_mixes2options SET `value`='1024' WHERE `option`='bx_protean_page_width' AND `mix_id`=@iMixId;
-- STUDIO PAGE & WIDGET
UPDATE `sys_std_pages` SET `icon`='bx_protean@modules/boonex/protean/|std-icon.svg' WHERE `name`=@sName;
UPDATE `sys_std_widgets` SET `icon`='bx_protean@modules/boonex/protean/|std-icon.svg' WHERE `module`=@sName AND `caption`='_bx_protean_wgt_cpt'; |
<reponame>CarlosSalda/taskcafe
ALTER TABLE task_label DROP CONSTRAINT task_label_task_id_fkey;
ALTER TABLE task_label
ADD CONSTRAINT task_label_task_id_fkey
FOREIGN KEY (task_id)
REFERENCES task(task_id)
ON DELETE CASCADE;
|
<gh_stars>1-10
-- 2021-10-15T06:09:38.691912100Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Table_Process SET AD_Window_ID=NULL,Updated=TO_TIMESTAMP('2021-10-15 09:09:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_Process_ID=541010
;
|
<reponame>GerardoEsterilla/ConductorElegido<filename>microservicio/infraestructura/src/main/resources/sql/conductor/eliminar.sql
DELETE FROM conductores WHERE id = :id; |
drop table characters;
|
<reponame>AadityaDev/mstodo<filename>db/db.sql
create database testdb;
create table testdb.todo (
Id bigint unsigned auto_increment,
Description varchar(255),
Completed smallint,
primary key (Id)
);
INSERT INTO `testdb`.`todo` (`Description`) VALUES ('fd');
|
<reponame>tycooon/pg_roaringbitmap<filename>sql/roaringbitmap.sql
--
-- Test roaringbitmap extension
--
CREATE EXTENSION if not exists roaringbitmap;
-- Test input and output
set roaringbitmap.output_format='array';
set extra_float_digits = 0;
select '{}'::roaringbitmap;
select ' { } '::roaringbitmap;
select '{ 1 }'::roaringbitmap;
select '{-1,2,555555,-4}'::roaringbitmap;
select '{ -1 , 2 , 555555 , -4 }'::roaringbitmap;
select '{ 1 , -2 , 555555 , -4 }'::roaringbitmap;
select '{ 1 , -2 , 555555 , -4 ,2147483647,-2147483648}'::roaringbitmap;
select roaringbitmap('{ 1 , -2 , 555555 , -4 }');
set roaringbitmap.output_format='bytea';
select '{}'::roaringbitmap;
select '{ -1 , 2 , 555555 , -4 }'::roaringbitmap;
set roaringbitmap.output_format='array';
select '{}'::roaringbitmap;
select '\x3a30000000000000'::roaringbitmap;
select '\x3a300000030000000000000008000000ffff01002000000022000000240000000200237afcffffff'::roaringbitmap;
-- Exception
select ''::roaringbitmap;
select '{'::roaringbitmap;
select '{1'::roaringbitmap;
select '{1} x'::roaringbitmap;
select '{1x}'::roaringbitmap;
select '{-x}'::roaringbitmap;
select '{,}'::roaringbitmap;
select '{1,}'::roaringbitmap;
select '{1,xxx}'::roaringbitmap;
select '{1,3'::roaringbitmap;
select '{1,1'::roaringbitmap;
select '{1,-2147483649}'::roaringbitmap;
select '{2147483648}'::roaringbitmap;
-- Test Type cast
select '{}'::roaringbitmap::bytea;
select '{1}'::roaringbitmap::bytea;
select '{1,9999}'::roaringbitmap::bytea;
select '{}'::roaringbitmap::bytea::roaringbitmap;
select '{1}'::roaringbitmap::bytea::roaringbitmap;
select '{1,9999,-88888}'::roaringbitmap::bytea::roaringbitmap;
select roaringbitmap('{1,9999,-88888}'::roaringbitmap::bytea);
-- Exception
select roaringbitmap('\x11'::bytea);
select '\x11'::bytea::roaringbitmap;
-- Test Opperator
select roaringbitmap('{}') & roaringbitmap('{}');
select roaringbitmap('{}') & roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') & roaringbitmap('{}');
select roaringbitmap('{1,2,3}') & roaringbitmap('{3,4,5}');
select roaringbitmap('{1,-2,-3}') & roaringbitmap('{-3,-4,5}');
select roaringbitmap('{}') | roaringbitmap('{}');
select roaringbitmap('{}') | roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') | roaringbitmap('{}');
select roaringbitmap('{1,2,3}') | roaringbitmap('{3,4,5}');
select roaringbitmap('{1,-2,-3}') | roaringbitmap('{-3,-4,5}');
select roaringbitmap('{}') | 6;
select roaringbitmap('{1,2,3}') | 6;
select roaringbitmap('{1,2,3}') | 1;
select roaringbitmap('{1,2,3}') | -1;
select roaringbitmap('{-1,-2,3}') | -1;
select 6 | roaringbitmap('{}');
select 6 | roaringbitmap('{1,2,3}');
select 1 | roaringbitmap('{1,2,3}');
select -1 | roaringbitmap('{1,2,3}');
select -1 | roaringbitmap('{-1,-2,3}');
select roaringbitmap('{}') # roaringbitmap('{}');
select roaringbitmap('{}') # roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') # roaringbitmap('{}');
select roaringbitmap('{1,2,3}') # roaringbitmap('{3,4,5}');
select roaringbitmap('{1,-2,-3}') # roaringbitmap('{-3,-4,5}');
select roaringbitmap('{}') - roaringbitmap('{}');
select roaringbitmap('{}') - roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') - roaringbitmap('{}');
select roaringbitmap('{1,2,3}') - roaringbitmap('{3,4,5}');
select roaringbitmap('{1,-2,-3}') - roaringbitmap('{-3,-4,5}');
select roaringbitmap('{}') - 3;
select roaringbitmap('{1,2,3}') - 3;
select roaringbitmap('{1,2,3}') - 1;
select roaringbitmap('{1,2,3}') - -1;
select roaringbitmap('{-1,-2,3}') - -1;
select roaringbitmap('{}') << 2;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << 2;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << 1;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << 0;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << -1;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << -2;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << 4294967295;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << 4294967296;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << -4294967295;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') << -4294967296;
select roaringbitmap('{}') >> 2;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> 2;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> 1;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> 0;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> -1;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> -2;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> 4294967295;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> 4294967296;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> -4294967295;
select roaringbitmap('{-2,-1,0,1,2,3,2147483647,-2147483648}') >> -4294967296;
select roaringbitmap('{}') @> roaringbitmap('{}');
select roaringbitmap('{}') @> roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') @> roaringbitmap('{}');
select roaringbitmap('{1,2,3}') @> roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') @> roaringbitmap('{3,2}');
select roaringbitmap('{1,-2,-3}') @> roaringbitmap('{-3,1}');
select roaringbitmap('{}') @> 2;
select roaringbitmap('{1,2,3}') @> 20;
select roaringbitmap('{1,2,3}') @> 1;
select roaringbitmap('{1,2,3}') @> -1;
select roaringbitmap('{-1,-2,3}') @> -1;
select roaringbitmap('{}') <@ roaringbitmap('{}');
select roaringbitmap('{}') <@ roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') <@ roaringbitmap('{}');
select roaringbitmap('{1,2,3}') <@ roaringbitmap('{3,4,5}');
select roaringbitmap('{2,3}') <@ roaringbitmap('{1,3,2}');
select roaringbitmap('{1,-3}') <@ roaringbitmap('{-3,1,1000}');
select 6 <@ roaringbitmap('{}');
select 3 <@ roaringbitmap('{1,2,3}');
select 1 <@ roaringbitmap('{1,2,3}');
select -1 <@ roaringbitmap('{1,2,3}');
select -1 <@ roaringbitmap('{-1,-2,3}');
select roaringbitmap('{}') && roaringbitmap('{}');
select roaringbitmap('{}') && roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') && roaringbitmap('{}');
select roaringbitmap('{1,2,3}') && roaringbitmap('{3,4,5}');
select roaringbitmap('{1,-2,-3}') && roaringbitmap('{-3,-4,5}');
select roaringbitmap('{}') = roaringbitmap('{}');
select roaringbitmap('{}') = roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') = roaringbitmap('{}');
select roaringbitmap('{1,2,3}') = roaringbitmap('{3,1,2}');
select roaringbitmap('{1,-2,-3}') = roaringbitmap('{-3,-4,5}');
select roaringbitmap('{}') <> roaringbitmap('{}');
select roaringbitmap('{}') <> roaringbitmap('{3,4,5}');
select roaringbitmap('{1,2,3}') <> roaringbitmap('{}');
select roaringbitmap('{1,2,3}') <> roaringbitmap('{3,1,2}');
select roaringbitmap('{1,-2,-3}') <> roaringbitmap('{-3,-4,5}');
-- Test the functions with one bitmap variable
select rb_build(NULL);
select rb_build('{}'::int[]);
select rb_build('{1}'::int[]);
select rb_build('{-1,2,555555,-4}'::int[]);
select rb_build('{1,-2,555555,-4,2147483647,-2147483648}'::int[]);
select rb_to_array(NULL);
select rb_to_array('{}'::roaringbitmap);
select rb_to_array('{1}'::roaringbitmap);
select rb_to_array('{-1,2,555555,-4}'::roaringbitmap);
select rb_to_array('{1,-2,555555,-4,2147483647,-2147483648}'::roaringbitmap);
select rb_is_empty(NULL);
select rb_is_empty('{}');
select rb_is_empty('{1}');
select rb_is_empty('{1,10,100}');
select rb_cardinality(NULL);
select rb_cardinality('{}');
select rb_cardinality('{1}');
select rb_cardinality('{1,10,100}');
select rb_max(NULL);
select rb_max('{}');
select rb_max('{1}');
select rb_max('{1,10,100}');
select rb_max('{1,10,100,2147483647,-2147483648,-1}');
select rb_min(NULL);
select rb_min('{}');
select rb_min('{1}');
select rb_min('{1,10,100}');
select rb_min('{1,10,100,2147483647,-2147483648,-1}');
select rb_iterate(NULL);
select rb_iterate('{}');
select rb_iterate('{1}');
select rb_iterate('{1,10,100}');
select rb_iterate('{1,10,100,2147483647,-2147483648,-1}');
-- Test the functions with two bitmap variables
select rb_and(NULL,'{1,10,100}');
select rb_and('{1,10,100}',NULL);
select rb_and('{}','{1,10,100}');
select rb_and('{1,10,100}','{}');
select rb_and('{2}','{1,10,100}');
select rb_and('{1,2,10}','{1,10,100}');
select rb_and('{1,10}','{1,10,100}');
select rb_and_cardinality(NULL,'{1,10,100}');
select rb_and_cardinality('{1,10,100}',NULL);
select rb_and_cardinality('{}','{1,10,100}');
select rb_and_cardinality('{1,10,100}','{}');
select rb_and_cardinality('{2}','{1,10,100}');
select rb_and_cardinality('{1,2,10}','{1,10,100}');
select rb_and_cardinality('{1,10}','{1,10,100}');
select rb_or(NULL,'{1,10,100}');
select rb_or('{1,10,100}',NULL);
select rb_or('{}','{1,10,100}');
select rb_or('{1,10,100}','{}');
select rb_or('{2}','{1,10,100}');
select rb_or('{1,2,10}','{1,10,100}');
select rb_or('{1,10}','{1,10,100}');
select rb_or_cardinality(NULL,'{1,10,100}');
select rb_or_cardinality('{1,10,100}',NULL);
select rb_or_cardinality('{}','{1,10,100}');
select rb_or_cardinality('{1,10,100}','{}');
select rb_or_cardinality('{2}','{1,10,100}');
select rb_or_cardinality('{1,2,10}','{1,10,100}');
select rb_or_cardinality('{1,10}','{1,10,100}');
select rb_xor(NULL,'{1,10,100}');
select rb_xor('{1,10,100}',NULL);
select rb_xor('{}','{1,10,100}');
select rb_xor('{1,10,100}','{}');
select rb_xor('{2}','{1,10,100}');
select rb_xor('{1,2,10}','{1,10,100}');
select rb_xor('{1,10}','{1,10,100}');
select rb_xor_cardinality(NULL,'{1,10,100}');
select rb_xor_cardinality('{1,10,100}',NULL);
select rb_xor_cardinality('{}','{1,10,100}');
select rb_xor_cardinality('{1,10,100}','{}');
select rb_xor_cardinality('{2}','{1,10,100}');
select rb_xor_cardinality('{1,2,10}','{1,10,100}');
select rb_xor_cardinality('{1,10}','{1,10,100}');
select rb_equals(NULL,'{1,10,100}');
select rb_equals('{1,10,100}',NULL);
select rb_equals('{}','{1,10,100}');
select rb_equals('{1,10,100}','{}');
select rb_equals('{2}','{1,10,100}');
select rb_equals('{1,2,10}','{1,10,100}');
select rb_equals('{1,10}','{1,10,100}');
select rb_equals('{1,10,100}','{1,10,100}');
select rb_equals('{1,10,100,10}','{1,100,10}');
select rb_intersect(NULL,'{1,10,100}');
select rb_intersect('{1,10,100}',NULL);
select rb_intersect('{}','{1,10,100}');
select rb_intersect('{1,10,100}','{}');
select rb_intersect('{2}','{1,10,100}');
select rb_intersect('{1,2,10}','{1,10,100}');
select rb_intersect('{1,10}','{1,10,100}');
select rb_intersect('{1,10,100}','{1,10,100}');
select rb_intersect('{1,10,100,10}','{1,100,10}');
select rb_andnot(NULL,'{1,10,100}');
select rb_andnot('{1,10,100}',NULL);
select rb_andnot('{}','{1,10,100}');
select rb_andnot('{1,10,100}','{}');
select rb_andnot('{2}','{1,10,100}');
select rb_andnot('{1,2,10}','{1,10,100}');
select rb_andnot('{1,10}','{1,10,100}');
select rb_andnot('{1,10,100}','{1,10,100}');
select rb_andnot('{1,10,100,10}','{1,100,10}');
select rb_andnot_cardinality(NULL,'{1,10,100}');
select rb_andnot_cardinality('{1,10,100}',NULL);
select rb_andnot_cardinality('{}','{1,10,100}');
select rb_andnot_cardinality('{1,10,100}','{}');
select rb_andnot_cardinality('{2}','{1,10,100}');
select rb_andnot_cardinality('{1,2,10}','{1,10,100}');
select rb_andnot_cardinality('{1,10}','{1,10,100}');
select rb_andnot_cardinality('{1,10,100}','{1,10,100}');
select rb_andnot_cardinality('{1,10,100,10}','{1,100,10}');
select rb_jaccard_dist(NULL,'{1,10,100}');
select rb_jaccard_dist('{1,10,100}',NULL);
select rb_jaccard_dist('{}','{1,10,100}');
select rb_jaccard_dist('{1,10,100}','{}');
select rb_jaccard_dist('{2}','{1,10,100}');
select rb_jaccard_dist('{1,2,10}','{1,10,100}');
select rb_jaccard_dist('{1,10,11,12}','{1,10,100}');
select rb_jaccard_dist('{1,10,100}','{1,10,11,12}');
select rb_jaccard_dist('{1,10,100}','{1,10,100}');
select rb_jaccard_dist('{1,10,-100}','{1,10,-100}');
select rb_jaccard_dist('{1,10,100}','{1,10,-100}');
-- Test other functions
select rb_rank(NULL,0);
select rb_rank('{}',0);
select rb_rank('{1,10,100}',0);
select rb_rank('{1,10,100}',1);
select rb_rank('{1,10,100}',99);
select rb_rank('{1,10,100}',100);
select rb_rank('{1,10,100}',101);
select rb_rank('{1,10,100,-3,-1}',-2);
select rb_remove(NULL,0);
select rb_remove('{}',0);
select rb_remove('{1}',1);
select rb_remove('{1,10,100}',0);
select rb_remove('{1,10,100}',1);
select rb_remove('{1,10,100}',99);
select rb_fill(NULL,0,0);
select rb_fill('{}',0,0);
select rb_fill('{}',0,1);
select rb_fill('{}',0,2);
select rb_fill('{1,10,100}',10,10);
select rb_fill('{1,10,100}',10,11);
select rb_fill('{1,10,100}',10,12);
select rb_fill('{1,10,100}',10,13);
select rb_fill('{1,10,100}',10,20);
select rb_fill('{1,10,100}',0,-1);
select rb_cardinality(rb_fill('{1,10,100}',2,1000000000));
select rb_cardinality(rb_fill('{1,10,100}',-1,5000000000));
select rb_index(NULL,3);
select rb_index('{1,2,3}',NULL);
select rb_index('{}',3);
select rb_index('{1}',3);
select rb_index('{1}',1);
select rb_index('{1,10,100}',10);
select rb_index('{1,10,100}',99);
select rb_index('{1,10,-100}',-100);
select rb_clear(NULL,0,10);
select rb_clear('{}',0,10);
select rb_clear('{1,10,100}',0,10);
select rb_clear('{1,10,100}',3,3);
select rb_clear('{1,10,100}',-3,3);
select rb_clear('{1,10,100}',0,-1);
select rb_clear('{1,10,100}',9,9);
select rb_clear('{1,10,100}',2,1000000000);
select rb_clear('{0,1,10,100,-2,-1}',1,4294967295);
select rb_clear('{0,1,10,100,-2,-1}',0,4294967296);
select rb_flip(NULL,0,10);
select rb_flip('{}',0,10);
select rb_flip('{1,10,100}',9,100);
select rb_flip('{1,10,100}',10,101);
select rb_flip('{1,10,100}',-3,3);
select rb_flip('{1,10,100}',0,-1);
select rb_flip('{1,10,100}',9,9);
select rb_cardinality(rb_flip('{1,10,100}',2,1000000000));
select rb_cardinality(rb_flip('{1,10,100}',-1,5000000000));
select rb_range(NULL,0,10);
select rb_range('{}',0,10);
select rb_range('{1,10,100}',0,10);
select rb_range('{1,10,100}',3,3);
select rb_range('{1,10,100}',-3,3);
select rb_range('{1,10,100}',0,-1);
select rb_range('{1,10,100}',9,9);
select rb_range('{1,10,100}',2,1000000000);
select rb_range('{0,1,10,100,-2,-1}',1,4294967295);
select rb_range('{0,1,10,100,-2,-1}',0,4294967296);
select rb_range_cardinality(NULL,0,10);
select rb_range_cardinality('{}',0,10);
select rb_range_cardinality('{1,10,100}',0,10);
select rb_range_cardinality('{1,10,100}',3,3);
select rb_range_cardinality('{1,10,100}',-3,3);
select rb_range_cardinality('{1,10,100}',0,-1);
select rb_range_cardinality('{1,10,100}',9,9);
select rb_range_cardinality('{1,10,100}',2,1000000000);
select rb_range_cardinality('{0,1,10,100,-2,-1}',1,4294967295);
select rb_range_cardinality('{0,1,10,100,-2,-1}',0,4294967296);
select rb_select(NULL,10);
select rb_select('{}',10);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',0);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',1);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,0);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,true);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,true,9);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,true,9,4294967295);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false,9);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false,10);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false,10,10);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false,-10,100);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false,-10,-10);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,false,10,10001);
select rb_select('{0,1,2,10,100,1000,2147483647,-2147483648,-2,-1}',2,1,true,10,10001);
-- Test aggregate
select rb_and_agg(id) from (values (NULL::roaringbitmap)) t(id);
select rb_and_agg(id) from (values (roaringbitmap('{}'))) t(id);
select rb_and_agg(id) from (values (roaringbitmap('{1}'))) t(id);
select rb_and_agg(id) from (values (roaringbitmap('{1,10,100}'))) t(id);
select rb_and_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_and_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{1,10,100}'))) t(id);
select rb_and_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{}'))) t(id);
select rb_and_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{1}'))) t(id);
select rb_and_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2}'))) t(id);
select rb_and_agg(id) from (values (roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{2,10}'))) t(id);
select rb_and_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,100,101}')),(NULL)) t(id);
select rb_and_cardinality_agg(id) from (values (NULL::roaringbitmap)) t(id);
select rb_and_cardinality_agg(id) from (values (roaringbitmap('{}'))) t(id);
select rb_and_cardinality_agg(id) from (values (roaringbitmap('{1}'))) t(id);
select rb_and_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}'))) t(id);
select rb_and_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_and_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{1,10,100}'))) t(id);
select rb_and_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{}'))) t(id);
select rb_and_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{1}'))) t(id);
select rb_and_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2}'))) t(id);
select rb_and_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{2,10}'))) t(id);
select rb_and_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,100,101}')),(NULL)) t(id);
select rb_or_agg(id) from (values (NULL::roaringbitmap)) t(id);
select rb_or_agg(id) from (values (roaringbitmap('{}'))) t(id);
select rb_or_agg(id) from (values (roaringbitmap('{1}'))) t(id);
select rb_or_agg(id) from (values (roaringbitmap('{1,10,100}'))) t(id);
select rb_or_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_or_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{1,10,100}'))) t(id);
select rb_or_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{}'))) t(id);
select rb_or_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{1}'))) t(id);
select rb_or_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2}'))) t(id);
select rb_or_agg(id) from (values (roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{2,10}'))) t(id);
select rb_or_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,100,101}')),(NULL)) t(id);
select rb_or_cardinality_agg(id) from (values (NULL::roaringbitmap)) t(id);
select rb_or_cardinality_agg(id) from (values (roaringbitmap('{}'))) t(id);
select rb_or_cardinality_agg(id) from (values (roaringbitmap('{1}'))) t(id);
select rb_or_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}'))) t(id);
select rb_or_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_or_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{1,10,100}'))) t(id);
select rb_or_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{}'))) t(id);
select rb_or_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{1}'))) t(id);
select rb_or_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2}'))) t(id);
select rb_or_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{2,10}'))) t(id);
select rb_or_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,100,101}')),(NULL)) t(id);
select rb_xor_agg(id) from (values (NULL::roaringbitmap)) t(id);
select rb_xor_agg(id) from (values (roaringbitmap('{}'))) t(id);
select rb_xor_agg(id) from (values (roaringbitmap('{1}'))) t(id);
select rb_xor_agg(id) from (values (roaringbitmap('{1,10,100}'))) t(id);
select rb_xor_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_xor_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{1,10,100}'))) t(id);
select rb_xor_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{}'))) t(id);
select rb_xor_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{1}'))) t(id);
select rb_xor_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2}'))) t(id);
select rb_xor_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_xor_agg(id) from (values (roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,100,101}'))) t(id);
select rb_xor_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,101}')),(roaringbitmap('{1,100,102}')),(NULL)) t(id);
select rb_xor_cardinality_agg(id) from (values (NULL::roaringbitmap)) t(id);
select rb_xor_cardinality_agg(id) from (values (roaringbitmap('{}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (roaringbitmap('{1}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(roaringbitmap('{1,10,100}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{1}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(roaringbitmap('{2,10}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,100,101}'))) t(id);
select rb_xor_cardinality_agg(id) from (values (NULL),(roaringbitmap('{1,10,100}')),(NULL),(roaringbitmap('{1,10,101}')),(roaringbitmap('{1,100,102}')),(NULL)) t(id);
select rb_build_agg(id) from (values (NULL::int)) t(id);
select rb_build_agg(id) from (values (1)) t(id);
select rb_build_agg(id) from (values (1),(10)) t(id);
select rb_build_agg(id) from (values (1),(10),(10),(100),(1)) t(id);
-- Test Windows aggregate
with t(id,bitmap) as(
values(0,NULL),(1,roaringbitmap('{1,10}')),(2,NULL),(3,roaringbitmap('{2,10}')),(4,roaringbitmap('{10,100}'))
)
select id,bitmap,rb_and_agg(bitmap) over(order by id),rb_and_cardinality_agg(bitmap) over(order by id) from t;
with t(id,bitmap) as(
values(0,NULL),(1,roaringbitmap('{1,10}')),(2,NULL),(3,roaringbitmap('{2,10}')),(4,roaringbitmap('{10,100}'))
)
select id,bitmap,rb_or_agg(bitmap) over(order by id),rb_or_cardinality_agg(bitmap) over(order by id) from t;
with t(id,bitmap) as(
values(0,NULL),(1,roaringbitmap('{1,10}')),(2,NULL),(3,roaringbitmap('{2,10}')),(4,roaringbitmap('{10,100}'))
)
select id,bitmap,rb_xor_agg(bitmap) over(order by id),rb_xor_cardinality_agg(bitmap) over(order by id) from t;
with t(id) as(
values(0),(1),(2),(NULL),(4),(NULL)
)
select id,rb_build_agg(id) over(order by id) from t;
-- Test parallel aggregate
set max_parallel_workers=8;
set max_parallel_workers_per_gather=2;
set parallel_setup_cost=0;
set parallel_tuple_cost=0;
set min_parallel_table_scan_size=0;
CREATE OR REPLACE FUNCTION get_json_plan(sql text) RETURNS SETOF json AS
$BODY$
BEGIN
RETURN QUERY EXECUTE 'EXPLAIN (COSTS OFF,FORMAT JSON) ' || sql;
RETURN;
END
$BODY$
LANGUAGE plpgsql;
drop table if exists bitmap_test_tb1;
create table bitmap_test_tb1(id int, bitmap roaringbitmap);
insert into bitmap_test_tb1 values (NULL,NULL);
insert into bitmap_test_tb1 select id,rb_build(ARRAY[id]) from generate_series(1,10000)id;
insert into bitmap_test_tb1 values (NULL,NULL);
insert into bitmap_test_tb1 values (10001,rb_build(ARRAY[10,100,1000,10000,10001]));
select position('"Parallel Aware": true' in get_json_plan('
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_build_agg(id) bitmap from bitmap_test_tb1)a
')::text) > 0 is_parallel_plan;
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_build_agg(id) bitmap from bitmap_test_tb1)a;
select position('"Parallel Aware": true' in get_json_plan('
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_and_agg(bitmap) bitmap from bitmap_test_tb1)a
')::text) > 0 is_parallel_plan;
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_and_agg(bitmap) bitmap from bitmap_test_tb1)a;
select position('"Parallel Aware": true' in get_json_plan('
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_or_agg(bitmap) bitmap from bitmap_test_tb1)a
')::text) > 0 is_parallel_plan;
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_or_agg(bitmap) bitmap from bitmap_test_tb1)a;
select position('"Parallel Aware": true' in get_json_plan('
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_xor_agg(bitmap) bitmap from bitmap_test_tb1)a
')::text) > 0 is_parallel_plan;
select rb_cardinality(bitmap),rb_min(bitmap),rb_max(bitmap)
from (select rb_xor_agg(bitmap) bitmap from bitmap_test_tb1)a;
select position('"Parallel Aware": true' in get_json_plan('
select rb_and_cardinality_agg(bitmap),rb_or_cardinality_agg(bitmap),rb_xor_cardinality_agg(bitmap) from bitmap_test_tb1
')::text) > 0 is_parallel_plan;
select rb_and_cardinality_agg(bitmap),rb_or_cardinality_agg(bitmap),rb_xor_cardinality_agg(bitmap) from bitmap_test_tb1;
--rb_iterate() not support parallel on PG10 while run on parallel in PG11+
--explain(costs off)
--select count(*) from (select rb_iterate(bitmap) from bitmap_test_tb1)a;
select count(*) from (select rb_iterate(bitmap) from bitmap_test_tb1)a;
select position('"Parallel Aware": true' in get_json_plan('
select id,bitmap,
rb_build_agg(id) over(w),
rb_or_agg(bitmap) over(w),
rb_and_agg(bitmap) over(w),
rb_xor_agg(bitmap) over(w)
from bitmap_test_tb1
window w as (order by id)
order by id limit 10
')::text) > 0 is_parallel_plan;
select id,bitmap,
rb_build_agg(id) over(w),
rb_or_agg(bitmap) over(w),
rb_and_agg(bitmap) over(w),
rb_xor_agg(bitmap) over(w)
from bitmap_test_tb1
window w as (order by id)
order by id limit 10;
|
ALTER TABLE poster
DROP COLUMN file_size;
ALTER TABLE comment_to_person
DROP COLUMN read; |
CREATE TABLE `tblCurrency` (
`CurrencyId` int(11) NOT NULL AUTO_INCREMENT,
`CompanyId` int(11) NOT NULL,
`Code` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`Description` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`Status` tinyint(3) unsigned NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`CreatedBy` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`ModifiedBy` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`Symbol` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`CurrencyId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci |
<reponame>sevdalin/Software-University-SoftUni<gh_stars>0
SELECT COUNT(Id) FROM WizzardDeposits |
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.3.11
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Feb 20, 2016 at 08:58 PM
-- Server version: 5.6.24
-- PHP Version: 5.6.8
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: `legal-research`
--
-- --------------------------------------------------------
--
-- Table structure for table `answers`
--
CREATE TABLE IF NOT EXISTS `answers` (
`id` bigint(20) NOT NULL,
`answer` mediumtext NOT NULL,
`question_id` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`upvotes` int(11) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`downvotes` int(11) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `answers`
--
INSERT INTO `answers` (`id`, `answer`, `question_id`, `user_id`, `upvotes`, `datetime`, `downvotes`) VALUES
(1, '<div class="cf_facts_descr small_light ellipsis">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officiis, deserunt!</div>', 1, 2, 20, '0000-00-00 00:00:00', 12),
(2, '<div class="cf_facts_descr small_light ellipsis">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officiis, deserunt!</div>', 1, 2, 5, '0000-00-00 00:00:00', 5),
(3, 'TEST_ANSWER.', 2, 1, 1, '0000-00-00 00:00:00', 0),
(4, 'TEST_ANSWER.', 2, 2, 0, '0000-00-00 00:00:00', 0),
(7, 'Hello', 2, 1, 1, '2016-02-16 13:11:30', 0),
(8, 'Heiil', 5, 1, 1, '2016-02-16 14:57:18', 0),
(9, 'Mil gaya hai.', 6, 1, 1, '2016-02-16 16:28:30', 1),
(10, 'HEY MAI ANSWER KAR RAHA hu', 7, 1, 1, '2016-02-20 14:12:42', 0),
(11, 'Akslkl;ss', 16, 1, 1, '2016-02-20 14:27:34', 0);
-- --------------------------------------------------------
--
-- Table structure for table `articles`
--
CREATE TABLE IF NOT EXISTS `articles` (
`id` int(11) NOT NULL,
`topic` varchar(32) NOT NULL,
`content` mediumtext NOT NULL,
`Upvotes` mediumint(9) NOT NULL DEFAULT '0',
`Downvotes` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`title` varchar(50) NOT NULL,
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`views` bigint(20) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `articles`
--
INSERT INTO `articles` (`id`, `topic`, `content`, `Upvotes`, `Downvotes`, `user_id`, `title`, `datetime`, `views`) VALUES
(1, 'agr', 'HI', 0, 0, 1, 'hello', '2016-02-10 17:44:23', 5),
(2, 'anp', 'HI', 10, 5, 1, 'helli', '2016-02-10 17:44:23', 132),
(3, 'agr', 'BYE', 0, 0, 2, 'helle', '2016-02-10 17:44:23', 4),
(4, 'anp', 'blah', 5, 3, 1, 'blahish', '2016-02-10 17:44:23', 26),
(5, 'agr', 'nnnn', 98, 78, 1, 't4tyf', '2016-02-10 17:44:23', 3);
-- --------------------------------------------------------
--
-- Table structure for table `article_vote_rel`
--
CREATE TABLE IF NOT EXISTS `article_vote_rel` (
`article_id` int(11) NOT NULL,
`user_id` bigint(20) NOT NULL,
`up_down` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `comments_a`
--
CREATE TABLE IF NOT EXISTS `comments_a` (
`id` bigint(20) NOT NULL,
`comment` text NOT NULL,
`user_id` bigint(20) NOT NULL,
`answer_id` bigint(20) NOT NULL,
`votes` int(11) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`question_id` bigint(20) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `comments_a`
--
INSERT INTO `comments_a` (`id`, `comment`, `user_id`, `answer_id`, `votes`, `datetime`, `question_id`) VALUES
(15, 'Done', 3, 2, 1, '2016-02-13 13:32:59', 1),
(16, 'PRO', 3, 1, 1, '2016-02-13 13:34:17', 1),
(17, 'KIL', 3, 2, 1, '2016-02-13 15:52:38', 1),
(18, 'Hey Like me', 3, 1, 1, '2016-02-14 08:48:26', 1),
(19, 'Hi', 3, 1, 1, '2016-02-15 19:43:50', 1),
(20, 'Pingu God', 4, 8, 0, '2016-02-16 14:57:28', 5),
(21, 'Aree Smit party de!!!!!', 4, 9, 1, '2016-02-16 16:28:41', 6),
(22, 'Hey Like me', 2, 9, 0, '2016-02-16 17:58:20', 6),
(23, 'howdi', 3, 3, 1, '2016-02-16 20:01:10', 2),
(24, '', 3, 1, 0, '2016-02-16 20:16:25', 1),
(25, '', 3, 1, 0, '2016-02-16 20:16:27', 1),
(26, '', 3, 1, 0, '2016-02-16 20:16:29', 1),
(27, 'Hi', 3, 4, 0, '2016-02-20 13:16:47', 2),
(28, 'Hello', 4, 10, 1, '2016-02-20 14:13:01', 7),
(29, 'Jkj', 4, 11, 1, '2016-02-20 14:27:45', 16);
-- --------------------------------------------------------
--
-- Table structure for table `comments_articles`
--
CREATE TABLE IF NOT EXISTS `comments_articles` (
`id` bigint(20) NOT NULL,
`comment` text NOT NULL,
`user_id` bigint(20) NOT NULL,
`article_id` bigint(20) NOT NULL,
`Upvotes` int(11) NOT NULL DEFAULT '0',
`Downvotes` bigint(20) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `comments_articles`
--
INSERT INTO `comments_articles` (`id`, `comment`, `user_id`, `article_id`, `Upvotes`, `Downvotes`, `datetime`) VALUES
(1, '!stcomment', 1, 2, 5, 5, '2016-01-05 01:21:56'),
(2, '1st comment', 1, 4, 29, 20, '2016-01-05 01:21:56'),
(7, 'qwerty', 2, 4, 1, 1, '2016-01-10 02:50:13'),
(8, 'qwerty', 2, 2, 0, 0, '2016-01-10 02:50:36');
-- --------------------------------------------------------
--
-- Table structure for table `comments_q`
--
CREATE TABLE IF NOT EXISTS `comments_q` (
`id` bigint(20) NOT NULL,
`comment` text NOT NULL,
`user_id` bigint(20) NOT NULL,
`votes` int(11) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`question_id` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `comments_reply`
--
CREATE TABLE IF NOT EXISTS `comments_reply` (
`id` bigint(20) NOT NULL,
`comment` text NOT NULL,
`user_id` bigint(20) NOT NULL,
`comment_id` bigint(20) NOT NULL,
`Upvotes` int(11) NOT NULL DEFAULT '0',
`Downvotes` bigint(20) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `comments_reply`
--
INSERT INTO `comments_reply` (`id`, `comment`, `user_id`, `comment_id`, `Upvotes`, `Downvotes`, `datetime`) VALUES
(1, '!streply', 1, 8, 5, 5, '2016-01-05 01:21:56'),
(2, '1st reply', 1, 2, 29, 20, '2016-01-05 01:21:56'),
(7, 'qwertyreply', 2, 2, 1, 1, '2016-01-10 02:50:13'),
(8, 'qwertyreply', 2, 2, 0, 0, '2016-01-10 02:50:36');
-- --------------------------------------------------------
--
-- Table structure for table `comment_vote_rel`
--
CREATE TABLE IF NOT EXISTS `comment_vote_rel` (
`comment_id` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`up_down` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `questions`
--
CREATE TABLE IF NOT EXISTS `questions` (
`id` bigint(20) NOT NULL,
`title` mediumtext NOT NULL,
`description` mediumtext NOT NULL,
`user_id` bigint(20) NOT NULL,
`upvotes` bigint(20) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`downvotes` bigint(20) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `questions`
--
INSERT INTO `questions` (`id`, `title`, `description`, `user_id`, `upvotes`, `datetime`, `downvotes`) VALUES
(1, 'T1', 'hhkdhak', 1, 15, '2016-01-01 23:55:07', 9),
(2, 'T2', 'kjkhkm', 2, 1, '2016-01-01 23:52:07', 0),
(4, 'Hello', '<NAME>', 4, 0, '2016-02-16 13:34:51', 0),
(5, 'Hello', '<NAME>', 4, 0, '2016-02-16 13:35:42', 0),
(6, 'Smit ko paisa kab milega', 'Jab milega tab bata dena', 4, 1, '2016-02-16 16:28:09', 0),
(7, 'Hi', 'Hello', 3, 1, '2016-02-17 17:10:25', 0),
(8, 'Hello', 'HI Pingu\r\n', 3, 0, '2016-02-17 19:14:41', 0),
(9, 'Hello', 'HI Pingu\r\n', 3, 0, '2016-02-17 19:17:36', 0),
(10, 'Hello', 'HI', 3, 0, '2016-02-17 19:18:00', 0),
(11, 'Hello', 'Hi', 3, 0, '2016-02-17 19:19:01', 0),
(12, 'Yellow', 'Hi', 3, 0, '2016-02-20 13:22:27', 0),
(13, 'Hi', 'Helo', 3, 0, '2016-02-20 13:57:51', 0),
(14, 'Hi', 'Hello', 3, 0, '2016-02-20 14:09:17', 0),
(15, 'Hi', 'Hello', 3, 0, '2016-02-20 14:10:15', 0),
(16, 'What is anp?', 'laksd', 4, 1, '2016-02-20 14:26:22', 0);
-- --------------------------------------------------------
--
-- Table structure for table `reply`
--
CREATE TABLE IF NOT EXISTS `reply` (
`id` int(11) NOT NULL,
`reply` text NOT NULL,
`answer_id` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`datetime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `tag_rel`
--
CREATE TABLE IF NOT EXISTS `tag_rel` (
`article_id` int(11) NOT NULL,
`Topic_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tag_rel`
--
INSERT INTO `tag_rel` (`article_id`, `Topic_id`) VALUES
(1, 1),
(1, 2),
(2, 1),
(3, 1),
(3, 2),
(4, 2),
(5, 2);
-- --------------------------------------------------------
--
-- Table structure for table `tag_rel_questions`
--
CREATE TABLE IF NOT EXISTS `tag_rel_questions` (
`question_id` bigint(20) NOT NULL,
`topic_tag` varchar(32) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `tag_rel_questions`
--
INSERT INTO `tag_rel_questions` (`question_id`, `topic_tag`) VALUES
(14, 'anp'),
(15, 'anp'),
(16, 'anp');
-- --------------------------------------------------------
--
-- Table structure for table `topics`
--
CREATE TABLE IF NOT EXISTS `topics` (
`id` int(11) NOT NULL,
`name` varchar(40) NOT NULL,
`tag` varchar(32) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `topics`
--
INSERT INTO `topics` (`id`, `name`, `tag`) VALUES
(1, 'ANP', 'anp'),
(2, 'AGRDEED', 'agr');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` bigint(20) NOT NULL,
`username` varchar(255) NOT NULL,
`fname` text NOT NULL,
`lname` text NOT NULL,
`email` varchar(255) NOT NULL,
`password` text NOT NULL,
`is_activated` tinyint(1) NOT NULL DEFAULT '0',
`activation_key` varchar(64) NOT NULL,
`reset_pass` varchar(64) DEFAULT NULL,
`user_type` char(2) NOT NULL,
`url` text NOT NULL,
`first_time` tinyint(4) NOT NULL DEFAULT '1',
`free_doc` tinyint(4) NOT NULL DEFAULT '1',
`promo_code` varchar(20) DEFAULT NULL,
`package_subscribed` int(10) NOT NULL,
`package_docs` int(11) NOT NULL,
`package_begindate` datetime NOT NULL,
`package_enddate` datetime NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `username`, `fname`, `lname`, `email`, `password`, `is_activated`, `activation_key`, `reset_pass`, `user_type`, `url`, `first_time`, `free_doc`, `promo_code`, `package_subscribed`, `package_docs`, `package_begindate`, `package_enddate`) VALUES
(1, '<EMAIL>', 'pankaj', '<PASSWORD>', '<EMAIL>', '<PASSWORD>', 1, '', 'nxQCMA4ouEm2Yi5N', '', '', 1, 1, NULL, 1, 20, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(2, 'pankaj.arora1994', 'pankaj', 'Arora', '<EMAIL>', '<PASSWORD>', 1, '', 'nxQCMA4ouEm2Yi5N', 'l', '', 1, 1, NULL, 1, 20, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(3, 'pankaj.arora', 'pankaj', 'Arora', '<EMAIL>', 'c4ca4238a0b923820dcc509a6f75849b', 1, '', 'nxQCMA4ouEm2Yi5N', 's', '', 1, 1, NULL, 1, 20, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(4, 'psoqlmd', 'Deep', 'Vyas', '<EMAIL>', 'hello123', 1, '', NULL, 'l', 'heyyee', 1, 1, NULL, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `user_lawyer`
--
CREATE TABLE IF NOT EXISTS `user_lawyer` (
`id` bigint(20) NOT NULL,
`username` varchar(255) NOT NULL,
`acc_type` varchar(64) NOT NULL DEFAULT 'Advocate',
`phone` varchar(11) NOT NULL,
`age` int(11) NOT NULL,
`sex` varchar(10) NOT NULL,
`school` varchar(100) NOT NULL,
`college` varchar(100) NOT NULL,
`practice_areas` varchar(200) NOT NULL,
`court` varchar(100) NOT NULL,
`office_address` text NOT NULL,
`work_exp` text NOT NULL,
`achievements` text NOT NULL,
`summary` text NOT NULL,
`associations` text NOT NULL,
`council_id` varchar(12) NOT NULL,
`publication` text NOT NULL,
`date` date NOT NULL,
`office_number` int(15) NOT NULL,
`personal_num` int(15) NOT NULL,
`website` varchar(255) NOT NULL DEFAULT 'No website to show',
`google_link` varchar(255) NOT NULL,
`linkedin_link` varchar(255) NOT NULL,
`twitter_link` varchar(255) NOT NULL,
`consultation_fees` int(64) NOT NULL,
`review_fees` int(64) NOT NULL,
`preference` text NOT NULL,
`pic_link` varchar(255) NOT NULL DEFAULT 'img/def_pic.png',
`practice_city` varchar(100) NOT NULL,
`practice_state` varchar(100) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `user_lawyer`
--
INSERT INTO `user_lawyer` (`id`, `username`, `acc_type`, `phone`, `age`, `sex`, `school`, `college`, `practice_areas`, `court`, `office_address`, `work_exp`, `achievements`, `summary`, `associations`, `council_id`, `publication`, `date`, `office_number`, `personal_num`, `website`, `google_link`, `linkedin_link`, `twitter_link`, `consultation_fees`, `review_fees`, `preference`, `pic_link`, `practice_city`, `practice_state`) VALUES
(1, 'psoqlmd', 'Advocate', 'p', 12, 'Male', 'p', 'p', 'opel', 'district court', 'p', 'p', 'p', 'p', 'p', '', 'p', '0000-00-00', 0, 0, 'No website to show', '', '', '', 0, 0, '', '', 'p', 'p'),
(2, 'ppknolmlk.ml;', 'Advocate', 'p', 12, 'Male', 'p', 'p', 'saab', 'district court', 'p', 'p', 'p', 'p', 'p', '', 'p', '0000-00-00', 0, 0, 'No website to show', '', '', '', 0, 0, '', '', 'p', 'p');
-- --------------------------------------------------------
--
-- Table structure for table `votes_a_rel`
--
CREATE TABLE IF NOT EXISTS `votes_a_rel` (
`user_id` bigint(20) NOT NULL,
`answer_id` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `votes_a_rel`
--
INSERT INTO `votes_a_rel` (`user_id`, `answer_id`) VALUES
(2, 1),
(3, 1),
(3, 1),
(3, 1),
(3, 1),
(3, 1),
(3, 1),
(3, 1),
(3, 1),
(3, 2),
(3, 3),
(3, 7),
(3, 9),
(4, 8),
(4, 9),
(4, 10),
(4, 11);
-- --------------------------------------------------------
--
-- Table structure for table `votes_c_rel`
--
CREATE TABLE IF NOT EXISTS `votes_c_rel` (
`comment_id` bigint(20) NOT NULL,
`usser_id` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `votes_c_rel`
--
INSERT INTO `votes_c_rel` (`comment_id`, `usser_id`) VALUES
(15, 3),
(16, 3),
(17, 3),
(18, 3),
(19, 3),
(21, 4),
(23, 3),
(28, 4),
(29, 4);
-- --------------------------------------------------------
--
-- Table structure for table `votes_q_rel`
--
CREATE TABLE IF NOT EXISTS `votes_q_rel` (
`user_id` bigint(20) NOT NULL,
`question_id` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `votes_q_rel`
--
INSERT INTO `votes_q_rel` (`user_id`, `question_id`) VALUES
(3, 1),
(3, 1),
(3, 1),
(3, 2),
(4, 6),
(4, 7),
(4, 16);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `answers`
--
ALTER TABLE `answers`
ADD PRIMARY KEY (`id`), ADD KEY `fk_questions` (`question_id`), ADD KEY `fk_use` (`user_id`);
--
-- Indexes for table `articles`
--
ALTER TABLE `articles`
ADD PRIMARY KEY (`id`), ADD KEY `fk_articles` (`user_id`), ADD KEY `fk_topics` (`topic`);
--
-- Indexes for table `article_vote_rel`
--
ALTER TABLE `article_vote_rel`
ADD KEY `user_id` (`user_id`), ADD KEY `article_id` (`article_id`);
--
-- Indexes for table `comments_a`
--
ALTER TABLE `comments_a`
ADD PRIMARY KEY (`id`), ADD KEY `fk_user` (`user_id`), ADD KEY `fk_answers` (`answer_id`);
--
-- Indexes for table `comments_articles`
--
ALTER TABLE `comments_articles`
ADD PRIMARY KEY (`id`), ADD KEY `fk_question` (`article_id`), ADD KEY `fk_user` (`user_id`);
--
-- Indexes for table `comments_q`
--
ALTER TABLE `comments_q`
ADD PRIMARY KEY (`id`), ADD KEY `fk_user's` (`user_id`), ADD KEY `fk_question` (`question_id`);
--
-- Indexes for table `comments_reply`
--
ALTER TABLE `comments_reply`
ADD PRIMARY KEY (`id`), ADD KEY `fk_question` (`comment_id`), ADD KEY `fk_user` (`user_id`);
--
-- Indexes for table `comment_vote_rel`
--
ALTER TABLE `comment_vote_rel`
ADD KEY `comment_id` (`comment_id`), ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `questions`
--
ALTER TABLE `questions`
ADD PRIMARY KEY (`id`), ADD KEY `fk_users` (`user_id`);
--
-- Indexes for table `reply`
--
ALTER TABLE `reply`
ADD PRIMARY KEY (`id`), ADD KEY `fk_ques` (`user_id`), ADD KEY `fk_anw` (`answer_id`);
--
-- Indexes for table `tag_rel`
--
ALTER TABLE `tag_rel`
ADD KEY `topic` (`Topic_id`), ADD KEY `article` (`article_id`);
--
-- Indexes for table `tag_rel_questions`
--
ALTER TABLE `tag_rel_questions`
ADD KEY `question_id` (`question_id`), ADD KEY `topic_tag` (`question_id`,`topic_tag`), ADD KEY `fk_tag` (`topic_tag`);
--
-- Indexes for table `topics`
--
ALTER TABLE `topics`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `tag` (`tag`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`), ADD UNIQUE KEY `email` (`email`);
--
-- Indexes for table `user_lawyer`
--
ALTER TABLE `user_lawyer`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `votes_a_rel`
--
ALTER TABLE `votes_a_rel`
ADD KEY `user_id` (`user_id`), ADD KEY `answer_id` (`user_id`,`answer_id`), ADD KEY `fk_vt` (`answer_id`);
--
-- Indexes for table `votes_c_rel`
--
ALTER TABLE `votes_c_rel`
ADD KEY `index_c` (`comment_id`,`usser_id`), ADD KEY `fk_usee` (`usser_id`);
--
-- Indexes for table `votes_q_rel`
--
ALTER TABLE `votes_q_rel`
ADD KEY `rel_index` (`user_id`,`question_id`), ADD KEY `fk_qui` (`question_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `answers`
--
ALTER TABLE `answers`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `articles`
--
ALTER TABLE `articles`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `comments_a`
--
ALTER TABLE `comments_a`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=30;
--
-- AUTO_INCREMENT for table `comments_articles`
--
ALTER TABLE `comments_articles`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `comments_q`
--
ALTER TABLE `comments_q`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `comments_reply`
--
ALTER TABLE `comments_reply`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `questions`
--
ALTER TABLE `questions`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `reply`
--
ALTER TABLE `reply`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `topics`
--
ALTER TABLE `topics`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `user_lawyer`
--
ALTER TABLE `user_lawyer`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `answers`
--
ALTER TABLE `answers`
ADD CONSTRAINT `fk_questions` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_use` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `articles`
--
ALTER TABLE `articles`
ADD CONSTRAINT `fk_articles` FOREIGN KEY (`user_id`) REFERENCES `user_lawyer` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_topics` FOREIGN KEY (`topic`) REFERENCES `topics` (`tag`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `article_vote_rel`
--
ALTER TABLE `article_vote_rel`
ADD CONSTRAINT `fkey_articles` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fkey_usersid` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `comments_a`
--
ALTER TABLE `comments_a`
ADD CONSTRAINT `fk_answers` FOREIGN KEY (`answer_id`) REFERENCES `answers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `comments_q`
--
ALTER TABLE `comments_q`
ADD CONSTRAINT `fk_question` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`),
ADD CONSTRAINT `fk_user's` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `comment_vote_rel`
--
ALTER TABLE `comment_vote_rel`
ADD CONSTRAINT `fk_comments` FOREIGN KEY (`comment_id`) REFERENCES `comments_articles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fkey_users` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `questions`
--
ALTER TABLE `questions`
ADD CONSTRAINT `fk_users` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `reply`
--
ALTER TABLE `reply`
ADD CONSTRAINT `fk_anw` FOREIGN KEY (`answer_id`) REFERENCES `comments_a` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_ques` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `tag_rel`
--
ALTER TABLE `tag_rel`
ADD CONSTRAINT `fk_article` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_topic` FOREIGN KEY (`Topic_id`) REFERENCES `topics` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `tag_rel_questions`
--
ALTER TABLE `tag_rel_questions`
ADD CONSTRAINT `fk_q` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_tag` FOREIGN KEY (`topic_tag`) REFERENCES `topics` (`tag`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `votes_a_rel`
--
ALTER TABLE `votes_a_rel`
ADD CONSTRAINT `fk_us` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_vt` FOREIGN KEY (`answer_id`) REFERENCES `answers` (`id`);
--
-- Constraints for table `votes_c_rel`
--
ALTER TABLE `votes_c_rel`
ADD CONSTRAINT `fk_comment` FOREIGN KEY (`comment_id`) REFERENCES `comments_a` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_usee` FOREIGN KEY (`usser_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `votes_q_rel`
--
ALTER TABLE `votes_q_rel`
ADD CONSTRAINT `fk_qui` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `fk_u` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
/*!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 */;
|
USE msdb ;
GO
EXEC dbo.sp_add_job
@job_name = N'NightlyBackups' ;
GO |
[15] /*SQL LIKE Operator*/
/*The SQL LIKE Operator
The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.
There are two wildcards often used in conjunction with the LIKE operator:
% - The percent sign represents zero, one, or multiple characters
_ - The underscore represents a single character
Note: MS Access uses an asterisk (*) instead of the percent sign (%), and a question mark (?) instead of the underscore (_).
The percent sign and the underscore can also be used in combinations!*/
/*LIKE Syntax*/
SELECT column1, column2, ...
FROM table_name
WHERE columnN LIKE pattern;
/*SQL LIKE Examples
The following SQL statement selects all customers with a CustomerName starting with "a":*/
SELECT * FROM Customers
WHERE CustomerName LIKE 'a%';
/*The following SQL statement selects all customers with a CustomerName ending with "a":*/
SELECT * FROM Customers
WHERE CustomerName LIKE '%a';
/*The following SQL statement selects all customers with a CustomerName that have "or" in any position:*/
SELECT * FROM Customers
WHERE CustomerName LIKE '%or%';
/*The following SQL statement selects all customers with a CustomerName that have "r" in the second position:*/
SELECT * FROM Customers
WHERE CustomerName LIKE '_r%';
/*The following SQL statement selects all customers with a CustomerName that starts with "a" and are at least 3 characters in length:*/
SELECT * FROM Customers
WHERE CustomerName LIKE 'a__%';
/*The following SQL statement selects all customers with a ContactName that starts with "a" and ends with "o":*/
SELECT * FROM Customers
WHERE ContactName LIKE 'a%o';0/*
The following SQL statement selects all customers with a CustomerName that does NOT start with "a":*/
SELECT * FROM Customers
WHERE CustomerName NOT LIKE 'a%';
[16] /*Using the _ Wildcard*/
/*The following SQL statement selects all customers with a City starting with any character, followed by "ondon":*/
SELECT * FROM Customers
WHERE City LIKE '_ondon'
/*Using the [charlist] Wildcard
The following SQL statement selects all customers with a City starting with "b", "s", or "p":*/
SELECT * FROM Customers
WHERE City LIKE '[bsp]%';
/*The following SQL statement selects all customers with a City starting with "a", "b", or "c":*/
SELECT * FROM Customers
WHERE City LIKE '[a-c]%';
|
create table users (
id serial primary key,
user_name varchar(255) not null,
password varchar(20) not null,
type char not null,
unique (user_name),
check (type in('A', 'P'))
);
alter table users drop column password;
alter table users add column password int;
update users set password=<PASSWORD> where user_name='adm';
update users set password=97 where user_name='a';
|
# Distribution:
distribution en
|
<gh_stars>1-10
SELECT DISTINCT
`d`.`hDirectoryId`,
`d`.`hDirectoryPath`,
`d`.`hDirectoryCreated`,
`d`.`hDirectoryLastModified`,
`hDirectoryProperties`.`hDirectoryIsApplication`,
`hDirectoryProperties`.`hFileIconId`,
`hDirectoryProperties`.`hDirectoryLabel`,
(SELECT COUNT(*) FROM `hDirectories` WHERE `hDirectoryParentId` = `d`.`hDirectoryId`) AS `hDirectoryCount`,
(SELECT COUNT(*) FROM `hFiles` WHERE `hDirectoryId` = `d`.`hDirectoryId`) AS `hFileCount`
FROM `hDirectories` `d`
LEFT JOIN `hDirectoryProperties`
ON (`hDirectoryProperties`.`hDirectoryId` = `d`.`hDirectoryId`)
{checkPermissions?
LEFT JOIN `hUserPermissions`
ON (`d`.`hDirectoryId` = `hUserPermissions`.`hFrameworkResourceKey`)
LEFT JOIN `hUserPermissionsGroups`
ON (`hUserPermissions`.`hUserPermissionsId` = `hUserPermissionsGroups`.`hUserPermissionsId`)
}
{checkWorldPermissions?
LEFT JOIN `hUserPermissions`
ON (`d`.`hDirectoryId` = `hUserPermissions`.`hFrameworkResourceKey`)
}
WHERE `d`.`hDirectory{queryParent?Parent}Id` = {directoryId}
{checkPermissions?
AND `hUserPermissions`.`hFrameworkResourceId` = 2
AND (
(`hUserPermissions`.`hUserPermissionsWorld` LIKE 'r%')
{userId?
OR (`d`.`hUserId` = {userId} AND `hUserPermissions`.`hUserPermissionsOwner` LIKE 'r%')
OR (
(`hUserPermissionsGroups`.`hUserGroupId` = {userId} AND `hUserPermissionsGroups`.`hUserPermissionsGroup` LIKE 'r%')
{userGroups[]?
{userGroupId? OR (`hUserPermissionsGroups`.`hUserGroupId` = {userGroupId} AND `hUserPermissionsGroups`.`hUserPermissionsGroup` LIKE 'r%')}
}
)
}
)
}
{checkWorldPermissions?
AND `hUserPermissions`.`hUserPermissionsWorld` LIKE 'r%'
}
ORDER BY `hDirectoryPath` ASC
|
CREATE TABLE clientes
(
clientes int identity(1,1),
nombre varchar (20) not null,
apellido varchar (50) not null,
Edad varchar (3),
Activo bit,
cedula date,
sexo varchar (1),
pago decimal (9,2),
telefono decimal (11),
PRIMARY KEY (clientes),
)
--FOREING KEY (campo_llave) REFERENCE tabla2 (campo_llave*tabla2)
drop table clientes
alter table clientes
|
<reponame>aliostad/deep-learning-lang-detection<gh_stars>10-100
INSERT INTO models(id,brands_id,model) VALUES (1,1,'Kalina');
INSERT INTO models(id,brands_id,model) VALUES (2,1,'Granta');
INSERT INTO models(id,brands_id,model) VALUES (3,2,'M3');
INSERT INTO models(id,brands_id,model) VALUES (4,3,'A6');
INSERT INTO models(id,brands_id,model) VALUES (5,3,'Q5');
INSERT INTO models(id,brands_id,model) VALUES (6,6,'Impreza');
INSERT INTO models(id,brands_id,model) VALUES (7,6,'WRX STi');
INSERT INTO models(id,brands_id,model) VALUES (8,6,'Forester');
INSERT INTO models(id,brands_id,model) VALUES (9,8,'Astra');
INSERT INTO models(id,brands_id,model) VALUES (10,9,'Skyline'); |
CREATE USER qatrack_reports WITH PASSWORD '<PASSWORD>';
|
<gh_stars>0
create database jsk_test template jsk;
\c jsk_test;
|
<filename>training-php-1-php-202109-1-master/database/app_web1.sql
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Máy chủ: 127.0.0.1:3306
-- Thời gian đã tạo: Th4 20, 2022 lúc 09:44 AM
-- Phiên bản máy phục vụ: 10.4.10-MariaDB
-- Phiên bản PHP: 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 */;
--
-- Cơ sở dữ liệu: `app_web1`
--
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `banks`
--
DROP TABLE IF EXISTS `banks`;
CREATE TABLE IF NOT EXISTS `banks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`cost` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `banks`
--
INSERT INTO `banks` (`id`, `user_id`, `cost`) VALUES
(1, 1, 1111),
(2, 2, 1111),
(3, 3, 1111),
(4, 4, 1111),
(5, 5, 1111);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`fullname` varchar(100) DEFAULT NULL,
`email` varchar(100) NOT NULL,
`phone` varchar(10) DEFAULT NULL,
`sex` varchar(20) DEFAULT NULL,
`lastname` varchar(50) DEFAULT NULL,
`type` varchar(100) DEFAULT NULL,
`password` varchar(250) DEFAULT NULL,
`cost` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
--
-- Đang đổ dữ liệu cho bảng `users`
--
INSERT INTO `users` (`id`, `name`, `fullname`, `email`, `phone`, `sex`, `lastname`, `type`, `password`, `cost`) VALUES
(3, 'hackerasfasf', '', '', '', '', '', '', '<PASSWORD>', NULL),
(6, 'sinh', '<NAME>', '<EMAIL>', '0329934096', '1', 'Sinh', NULL, 'e8059811450b854a7b77cc653761282d', NULL);
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 */;
|
<gh_stars>0
select myname
from
(select st.name myname, sal.salary mysal, fr.friend_id frid, fsal.salary frsal
from students st
join packages sal on st.id=sal.id
join friends fr on st.id=fr.id
join packages fsal on fr.friend_id = fsal.id) as sf
where sf.frsal > sf.mysal
order by sf.frsal; |
<reponame>tharangar/k8s-webserver<gh_stars>1-10
DELETE FROM labels WHERE module = 'StudentBehaviours' and field = 'openemis_no' and en = 'OpenEMIS ID';
DELETE FROM labels WHERE module = 'StaffBehaviours' and field = 'openemis_no' and en = 'OpenEMIS ID';
DELETE FROM `db_patches` WHERE `issue` = 'PHPOE-1592';
-- revert security_functions
UPDATE `security_functions` SET `_view` = 'Surveys.index', `_add` = NULL, `_edit` = NULL, `_delete` = 'Surveys.edit|Surveys.remove', `_execute` = NULL
WHERE `controller` = 'Institutions' AND `module` = 'Institutions' AND `category` = 'Surveys' AND `name` = 'New';
UPDATE `security_functions` SET `_view` = 'Surveys.index', `_add` = NULL, `_edit` = NULL, `_delete` = 'Surveys.view|Surveys.remove', `_execute` = NULL
WHERE `controller` = 'Institutions' AND `module` = 'Institutions' AND `category` = 'Surveys' AND `name` = 'Completed';
-- db_patches
DELETE FROM `db_patches` WHERE `issue` = 'PHPOE-1657';
-- labels
DELETE FROM `labels` WHERE `module` = 'StudentPromotion';
-- db_patches
DELETE FROM `db_patches` WHERE `issue` = 'PHPOE-1857';
-- restore table
DROP TABLE assessment_item_results;
RENAME TABLE z_1878_assessment_item_results TO assessment_item_results;
-- db_patches
DELETE FROM `db_patches` WHERE `issue` = 'PHPOE-1878';
UPDATE `config_items` SET `value` = '3.0.8' WHERE `code` = 'db_version';
|
DROP DATABASE go_rest_api;
CREATE DATABASE go_rest_api;
USE go_rest_api;
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
email VARCHAR(50) NOT NULL,
password VARCHAR(120) NOT NULL,
age INT NOT NULL
);
CREATE UNIQUE INDEX uidx_email ON users (email); |
-- ======================================================================
-- geonames-sqlite.sql : Script for creating tables from geonames.org
-- ======================================================================
-- V 1.2 2017 by <NAME> <<EMAIL>>
-- ======================================================================
-- SQLite--------------------B
PRAGMA encoding = "UTF-8";
PRAGMA default_synchronous = OFF;
PRAGMA foreign_keys = OFF;
PRAGMA journal_mode = MEMORY;
PRAGMA cache_size = 800000;
-- SQLite--------------------E
--
-- tab_geoname
--
CREATE TABLE IF NOT EXISTS tab_geoname (
geoname_id INTEGER NOT NULL PRIMARY KEY,
geoname_name VARCHAR(200),
geoname_asciiname VARCHAR(200),
geoname_altername VARCHAR(10000),
geoname_lat DECIMAL(10,7),
geoname_lng DECIMAL(10,7),
geoname_fclass CHAR(1),
geoname_fcode VARCHAR(10),
country_iso CHAR(2),
geoname_altcod VARCHAR(200),
geoname_admin1 VARCHAR(20),
geoname_admin2 VARCHAR(20),
geoname_admin3 VARCHAR(20),
geoname_admin4 VARCHAR(20),
geoname_popult INTEGER,
geoname_elevat INTEGER,
geoname_dielev INTEGER,
geoname_timezn VARCHAR(40),
geoname_modate DATE
);
CREATE INDEX IF NOT EXISTS IDX_FCLASS ON tab_geoname(geoname_fclass);
CREATE INDEX IF NOT EXISTS IDX_FCODE ON tab_geoname(geoname_fcode);
CREATE INDEX IF NOT EXISTS IDX_GISO2 ON tab_geoname(country_iso);
CREATE INDEX IF NOT EXISTS IDX_ADMIN1 ON tab_geoname(geoname_admin1);
CREATE INDEX IF NOT EXISTS IDX_ADMIN2 ON tab_geoname(geoname_admin2);
CREATE INDEX IF NOT EXISTS IDX_ADMIN3 ON tab_geoname(geoname_admin3);
CREATE INDEX IF NOT EXISTS IDX_ADMIN4 ON tab_geoname(geoname_admin4);
--
-- tab_altname
--
CREATE TABLE IF NOT EXISTS tab_altname (
altname_id INTEGER NOT NULL PRIMARY KEY,
geoname_id INTEGER,
altname_lang VARCHAR(7) DEFAULT NULL,
altname_name VARCHAR(400) DEFAULT NULL,
altname_prefr SMALLINT DEFAULT 0,
altname_short SMALLINT DEFAULT 0,
altname_collq SMALLINT DEFAULT 0,
altname_histo SMALLINT DEFAULT 0
);
CREATE INDEX IF NOT EXISTS IDX_GEONAME_ID ON tab_altname(geoname_id);
CREATE INDEX IF NOT EXISTS IDX_ALTNAME_LANG ON tab_altname(altname_lang);
CREATE INDEX IF NOT EXISTS IDX_ALTNAME ON tab_altname(altname_name);
--
-- tab_country
--
CREATE TABLE IF NOT EXISTS tab_country (
country_iso CHAR(2),
country_iso3 CHAR(3),
country_isonum INTEGER,
country_fipscod VARCHAR(3),
country_name VARCHAR(200),
country_capital VARCHAR(200),
country_areaskm DOUBLE,
country_popult INTEGER,
continent_code CHAR(2),
country_tld CHAR(3),
country_currcode CHAR(3),
country_currname CHAR(20),
country_phonecod CHAR(10),
country_poscodformt CHAR(20),
country_poscodregex CHAR(20),
country_languages VARCHAR(200),
geoname_id INTEGER,
country_neighbours CHAR(20),
country_eqfipscode CHAR(10)
);
CREATE INDEX IF NOT EXISTS IDX_CISO ON tab_country(country_iso);
CREATE INDEX IF NOT EXISTS IDX_CGID on tab_country(geoname_id);
--
-- tab_division
--
CREATE TABLE IF NOT EXISTS tab_division (
country_iso CHAR(2),
division_iso CHAR(6) NOT NULL PRIMARY KEY,
division_name VARCHAR(200),
division_asciiname VARCHAR(200),
geoname_fclass CHAR(1),
geoname_fcode VARCHAR(10),
geoname_id INTEGER
);
CREATE INDEX IF NOT EXISTS IDX_DCISO on tab_division(country_iso);
CREATE INDEX IF NOT EXISTS IDX_DGID on tab_division(geoname_id);
--
-- tab_language
--
CREATE TABLE IF NOT EXISTS tab_language(
language_iso3 CHAR(4),
language_iso2 VARCHAR(50),
language_iso1 VARCHAR(50),
language VARCHAR(200)
);
--
-- tab_admin1
--
CREATE TABLE IF NOT EXISTS tab_admin1 (
admin1_code VARCHAR(23),
admin1_name TEXT,
admin1_asciiname TEXT,
geoname_id INTEGER NOT NULL
);
CREATE INDEX IF NOT EXISTS IDX_ADMIN1_CODE ON tab_admin1(admin1_code);
CREATE INDEX IF NOT EXISTS IDX_ADMIN1 ON tab_admin1(admin1_name);
CREATE INDEX IF NOT EXISTS IDX_ADMIN1_ASCII ON tab_admin1(admin1_asciiname);
CREATE INDEX IF NOT EXISTS IDX_ADMIN1_GID ON tab_admin1(geoname_id);
--
-- tab_admin2
--
CREATE TABLE IF NOT EXISTS tab_admin2 (
admin2_code VARCHAR(104),
admin2_name TEXT,
admin2_asciiname TEXT,
geoname_id INTEGER NOT NULL
);
CREATE INDEX IF NOT EXISTS IDX_ADMIN2_CODE ON tab_admin2(admin2_code);
CREATE INDEX IF NOT EXISTS IDX_ADMIN2 ON tab_admin2(admin2_name);
CREATE INDEX IF NOT EXISTS IDX_ADMIN2_ASCII ON tab_admin2(admin2_asciiname);
CREATE INDEX IF NOT EXISTS IDX_ADMIN2_GID ON tab_admin2(geoname_id);
--
-- tab_fcode
--
CREATE TABLE IF NOT EXISTS tab_fcode (
fcode CHAR(7),
fcode_name VARCHAR(200),
fcode_desc TEXT
);
--
-- tab_hierarchy
--
CREATE TABLE IF NOT EXISTS tab_hierarchy (
hierarchy_pid INTEGER,
hierarchy_cid INTEGER,
hierarchy_type CHAR(7)
);
--
-- tab_timezone
--
CREATE TABLE IF NOT EXISTS tab_timezone (
country_iso CHAR(2),
timezone_id VARCHAR(200),
timezone_igm DECIMAL(3,1),
timezone_dst DECIMAL(3,1),
timezone_raw DECIMAL(3,1)
);
--
-- tab_continent
--
CREATE TABLE IF NOT EXISTS tab_continent (
continent_code CHAR(2),
continent_name VARCHAR(20),
geoname_id INTEGER NOT NULL PRIMARY KEY
);
CREATE TABLE IF NOT EXISTS tab_postalcode(
country_iso CHAR(2),
postalcode VARCHAR(20),
geoname_name VARCHAR(200),
admin1_name TEXT,
geoname_admin1 VARCHAR(20),
admin2_name TEXT,
geoname_admin2 VARCHAR(80),
admin3_name TEXT,
geoname_admin3 VARCHAR(20),
postalcode_lat DECIMAL(10,7),
postalcode_lng DECIMAL(10,7),
postalcode_acc SMALLINT
);
CREATE INDEX IF NOT EXISTS IDX_PISO2 ON tab_postalcode(country_iso);
CREATE INDEX IF NOT EXISTS IDX_POSTALCODE ON tab_postalcode(postalcode);
CREATE INDEX IF NOT EXISTS IDX_GEONAME ON tab_postalcode(geoname_name);
CREATE INDEX IF NOT EXISTS IDX_PADMIN1 ON tab_postalcode(admin1_name);
CREATE INDEX IF NOT EXISTS IDX_PGADMIN1 ON tab_postalcode(geoname_admin1);
CREATE INDEX IF NOT EXISTS IDX_PADMIN2 ON tab_postalcode(admin2_name);
CREATE INDEX IF NOT EXISTS IDX_PGADMIN2 ON tab_postalcode(geoname_admin2);
CREATE INDEX IF NOT EXISTS IDX_PADMIN3 ON tab_postalcode(admin3_name);
CREATE INDEX IF NOT EXISTS IDX_PGADMIN3 ON tab_postalcode(geoname_admin3);
CREATE INDEX IF NOT EXISTS IDX_PLAT ON tab_postalcode(postalcode_lat);
CREATE INDEX IF NOT EXISTS IDX_PLONG ON tab_postalcode(postalcode_lng);
|
<filename>database/altertablesis-20170912.sql<gh_stars>0
use payroll;
ALTER TABLE employee_master ADD emp_uocuserid int(11) NOT NULL AFTER emp_uocid;
ALTER TABLE employee_master ADD emp_ddouserid int(11) NOT NULL AFTER emp_uocuserid;
|
CREATE TABLE `mst_mediaprog` (
`mediaprog_id` varchar(14) NOT NULL ,
`mediaprog_name` varchar(90) NOT NULL ,
`mediaprog_descr` varchar(90) ,
`mediaprog_season` int(4) NOT NULL DEFAULT 0,
`mediaprog_episode` int(4) NOT NULL DEFAULT 0,
`mediaprog_isdisabled` tinyint(1) NOT NULL DEFAULT 0,
`projbudget_id` varchar(30) NOT NULL ,
`projbudgettask_id` varchar(14) ,
`dept_id` varchar(30) NOT NULL ,
`_createby` varchar(13) NOT NULL ,
`_createdate` datetime NOT NULL DEFAULT current_timestamp(),
`_modifyby` varchar(13) ,
`_modifydate` datetime ,
UNIQUE KEY `mediaprog_name` (`mediaprog_name`),
PRIMARY KEY (`mediaprog_id`)
)
ENGINE=InnoDB
COMMENT='Daftar Media Programme';
ALTER TABLE `mst_mediaprog` ADD KEY `projbudget_id` (`projbudget_id`);
ALTER TABLE `mst_mediaprog` ADD KEY `projbudgettask_id` (`projbudgettask_id`);
ALTER TABLE `mst_mediaprog` ADD KEY `dept_id` (`dept_id`);
ALTER TABLE `mst_mediaprog` ADD CONSTRAINT `fk_mst_mediaprog_mst_projbudget` FOREIGN KEY (`projbudget_id`) REFERENCES `mst_projbudget` (`projbudget_id`);
ALTER TABLE `mst_mediaprog` ADD CONSTRAINT `fk_mst_mediaprog_mst_projbudgettask` FOREIGN KEY (`projbudgettask_id`) REFERENCES `mst_projbudgettask` (`projbudgettask_id`);
ALTER TABLE `mst_mediaprog` ADD CONSTRAINT `fk_mst_mediaprog_mst_dept` FOREIGN KEY (`dept_id`) REFERENCES `mst_dept` (`dept_id`);
|
ALTER TABLE "public"."Group" ADD COLUMN "accessStart" timestamptz;
ALTER TABLE "public"."Group" ALTER COLUMN "accessStart" DROP NOT NULL;
|
-- Apague de emp2 os empregados que recebam menos que a média de salários dos
-- empregados do seu departamento (use subconsulta correlacionada).
-- eliminacao
DELETE FROM emp2 e2
WHERE e2.sal < (SELECT AVG(e1.sal)
FROM emp2 e1
WHERE e1.ndep = e2.ndep)
;
-- verificar tabela
SELECT nemp, nome, encar, sal, premios, ndep
FROM emp2
ORDER BY ndep
;
-- visualizar antes de eliminar
SELECT *
FROM emp2 e2
WHERE e2.sal < (SELECT AVG(e1.sal)
FROM emp2 e1
WHERE e1.ndep = e2.ndep)
; |
-- MySQL Workbench Synchronization
-- Generated: 2017-06-05 13:29
-- Model: New Model
-- Version: 1.0
-- Project: Name of the project
-- Author: Daniel
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
ALTER TABLE `videos`
ADD COLUMN `rotation` SMALLINT(6) NULL DEFAULT 0 AFTER `order`,
ADD COLUMN `zoom` FLOAT(11) NULL DEFAULT 1 AFTER `rotation`;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
UPDATE configurations SET version = '2.9', modified = now() WHERE id = 1; |
<filename>db/db.sql
DROP DATABASE IF EXISTS PROD;
CREATE DATABASE PROD;
USE PROD;
|
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 25, 2018 at 10:10 AM
-- Server version: 5.7.14
-- PHP Version: 5.6.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `mcms`
--
-- --------------------------------------------------------
--
-- Table structure for table `activity_log`
--
CREATE TABLE `activity_log` (
`activity_log_id` int(11) NOT NULL,
`activity` varchar(1500) NOT NULL,
`module` varchar(500) NOT NULL,
`date` varchar(100) NOT NULL,
`time` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `activity_log`
--
INSERT INTO `activity_log` (`activity_log_id`, `activity`, `module`, `date`, `time`) VALUES
(1, 'testing', 'testing', 'testing', 'testing'),
(2, 'Added Physical Examination record', 'PRMS', '2018-02-14', '11:02:48'),
(3, 'Profiling', 'PRMS', '2018-02-22', '11:02:28'),
(4, 'Created patient account', 'Online Appointment', '2018-02-22', '11:02:28'),
(5, 'Added Physical Examination record', 'PRMS', '2018-02-22', '11:02:53'),
(6, 'Profiling', 'PRMS', '2018-02-22', '12:02:47'),
(7, 'Created patient account', 'Online Appointment', '2018-02-22', '12:02:47'),
(8, 'Added Physical Examination record', 'PRMS', '2018-02-22', '12:02:05'),
(9, 'Profiling', 'PRMS', '2018-02-22', '12:02:21'),
(10, 'Created patient account', 'Online Appointment', '2018-02-22', '12:02:22'),
(11, 'Added Physical Examination record', 'PRMS', '2018-02-22', '12:02:34'),
(12, 'Profiling', 'PRMS', '2018-02-22', '12:02:17'),
(13, 'Created patient account', 'Online Appointment', '2018-02-22', '12:02:17'),
(14, 'Added Physical Examination record', 'PRMS', '2018-02-22', '12:02:21'),
(15, 'Profiling', 'PRMS', '2018-02-22', '13:02:37'),
(16, 'Created patient account', 'Online Appointment', '2018-02-22', '13:02:37'),
(17, 'Added Physical Examination record', 'PRMS', '2018-02-22', '13:02:34'),
(18, 'Profiling', 'PRMS', '2018-02-22', '13:02:31'),
(19, 'Created patient account', 'Online Appointment', '2018-02-22', '13:02:31'),
(20, 'Added Physical Examination record', 'PRMS', '2018-02-22', '13:02:00'),
(21, 'Profiling', 'PRMS', '2018-02-22', '13:02:51'),
(22, 'Created patient account', 'Online Appointment', '2018-02-22', '13:02:51'),
(23, 'Added Physical Examination record', 'PRMS', '2018-02-22', '13:02:48'),
(24, 'Profiling', 'PRMS', '2018-02-22', '14:02:09'),
(25, 'Created patient account', 'Online Appointment', '2018-02-22', '14:02:09'),
(26, 'Added Physical Examination record', 'PRMS', '2018-02-22', '14:02:05'),
(27, 'Profiling', 'PRMS', '2018-02-22', '14:02:20'),
(28, 'Created patient account', 'Online Appointment', '2018-02-22', '14:02:20'),
(29, 'Added Physical Examination record', 'PRMS', '2018-02-22', '14:02:54'),
(30, 'Profiling', 'PRMS', '2018-02-22', '14:02:39'),
(31, 'Created patient account', 'Online Appointment', '2018-02-22', '14:02:39'),
(32, 'Added Physical Examination record', 'PRMS', '2018-02-22', '14:02:43'),
(33, 'Profiling', 'PRMS', '2018-02-22', '15:02:48'),
(34, 'Created patient account', 'Online Appointment', '2018-02-22', '15:02:48'),
(35, 'Added Physical Examination record', 'PRMS', '2018-02-22', '15:02:35'),
(36, 'Profiling', 'PRMS', '2018-02-22', '15:02:20'),
(37, 'Created patient account', 'Online Appointment', '2018-02-22', '15:02:20'),
(38, 'Added Physical Examination record', 'PRMS', '2018-02-22', '15:02:53'),
(39, 'Added Physical Examination record', 'PRMS', '2018-02-24', '07:02:35'),
(40, 'Added Physical Examination record', 'PRMS', '2018-02-24', '07:02:52'),
(41, 'Added Physical Examination record', 'PRMS', '2018-02-24', '08:02:05');
-- --------------------------------------------------------
--
-- Table structure for table `calendar_events`
--
CREATE TABLE `calendar_events` (
`ID` int(11) NOT NULL,
`title` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`start` datetime NOT NULL,
`end` datetime NOT NULL,
`description` varchar(1000) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `calendar_events`
--
INSERT INTO `calendar_events` (`ID`, `title`, `start`, `end`, `description`) VALUES
(1, 'Test Event', '2017-03-16 00:00:00', '2017-03-16 00:00:00', ''),
(2, 'New Event', '2017-03-23 00:00:00', '2017-03-23 00:00:00', ''),
(5, 'Loyalty-Kendricks', '2017-12-30 12:30:00', '2017-12-30 13:30:00', 'Loyalty'),
(6, 'happy new year1', '2018-01-01 12:30:00', '2018-01-01 14:30:00', ''),
(9, '321111', '2018-01-02 05:25:00', '2018-01-02 05:25:00', '3211'),
(10, 'prenatal', '2018-01-25 08:30:00', '2018-01-25 09:00:00', 'prenatal');
-- --------------------------------------------------------
--
-- Table structure for table `case`
--
CREATE TABLE `case` (
`case_id` int(11) NOT NULL,
`patient_ID` int(11) NOT NULL,
`date_start` varchar(50) NOT NULL,
`date_completed` varchar(50) NOT NULL,
`status` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `case`
--
INSERT INTO `case` (`case_id`, `patient_ID`, `date_start`, `date_completed`, `status`) VALUES
(1, 1, '2018-10-08', '', 'Complete'),
(138, 99, '2018-02-01', '', 'Active'),
(139, 104, '2018-02-01', '', 'Active'),
(140, 105, '2018-02-01', '', 'Active'),
(141, 106, '2018-02-22', '', 'Active'),
(142, 107, '2018-02-22', '', 'Active'),
(143, 108, '2018-02-22', '', 'Active'),
(144, 109, '2018-02-22', '', 'Active'),
(145, 110, '2018-02-22', '', 'Active'),
(146, 111, '2018-02-22', '', 'Active'),
(147, 112, '2018-02-22', '', 'Active'),
(148, 113, '2018-02-22', '', 'Active'),
(149, 114, '2018-02-22', '', 'Active'),
(150, 115, '2018-02-22', '', 'Active'),
(151, 116, '2018-02-22', '', 'Active'),
(152, 117, '2018-02-22', '', 'Active');
-- --------------------------------------------------------
--
-- Table structure for table `consultation`
--
CREATE TABLE `consultation` (
`consultation_id` int(11) NOT NULL,
`infant_id` int(11) NOT NULL,
`date` varchar(25) NOT NULL,
`weight` varchar(10) NOT NULL,
`height` varchar(10) NOT NULL,
`pulse_rate` varchar(25) NOT NULL,
`heart_rate` varchar(25) NOT NULL,
`chief_complaint` varchar(5000) NOT NULL,
`remarks` varchar(5000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `consultation`
--
INSERT INTO `consultation` (`consultation_id`, `infant_id`, `date`, `weight`, `height`, `pulse_rate`, `heart_rate`, `chief_complaint`, `remarks`) VALUES
(1, 1, '2017-12-24', '8.84', '45', '75', '140', 'test1', 'test1'),
(2, 1, '2017-12-25', '8.92', '46', '75', '140', 'test1', 'test1'),
(4, 1, '2017-12-29', '9.01', '55', '75', '140', 'test1', 'test1'),
(5, 1, '2017-12-30', '9.22', '57', '75', '140', 'test1', 'test1'),
(6, 1, '2017-12-31', '9.22', '60', '75', '140', 'test1', 'test1'),
(7, 1, '2018-01-01', '9.25', '62', '75', '140', 'test1', 'test1'),
(8, 1, '2018-02-24', '7500', '75', '120', '120', 'Cough for 3 days', 'test\r\n'),
(9, 1, '2018-02-24', '7300', '123', '120', '120', 'Rashes in elbows and knees', '');
-- --------------------------------------------------------
--
-- Table structure for table `feedback`
--
CREATE TABLE `feedback` (
`feedback_id` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`phone` varchar(25) NOT NULL,
`company` varchar(250) NOT NULL,
`message` varchar(1000) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `feedback`
--
INSERT INTO `feedback` (`feedback_id`, `name`, `email`, `phone`, `company`, `message`) VALUES
(1, 'guccigang', 'guccigang', 'guccigang', '', 'guccigang'),
(2, 'feedback_result', 'feedback_result', 'feedback_result', '', 'feedback_result'),
(3, '<NAME>', '<EMAIL>', '09234644144', 'None', 'Hi guys'),
(4, '<NAME>', '<EMAIL>', '09234644144', 'Student', 'Hello, testing procedure.');
-- --------------------------------------------------------
--
-- Table structure for table `infant_info`
--
CREATE TABLE `infant_info` (
`infant_id` int(11) NOT NULL,
`patient_ID` int(11) NOT NULL,
`case_id` int(11) NOT NULL,
`infant_first_name` varchar(150) NOT NULL,
`infant_last_name` varchar(150) NOT NULL,
`infant_middle_initial` varchar(10) NOT NULL,
`gravida` varchar(5) NOT NULL,
`para` varchar(5) NOT NULL,
`gender` varchar(20) NOT NULL,
`time_of_birth` varchar(15) NOT NULL,
`infant_date_of_birth` varchar(25) NOT NULL,
`weight` varchar(10) NOT NULL,
`length` varchar(10) NOT NULL,
`head_circumference` varchar(10) NOT NULL,
`chest_circumference` varchar(10) NOT NULL,
`newborn_screening` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `infant_info`
--
INSERT INTO `infant_info` (`infant_id`, `patient_ID`, `case_id`, `infant_first_name`, `infant_last_name`, `infant_middle_initial`, `gravida`, `para`, `gender`, `time_of_birth`, `infant_date_of_birth`, `weight`, `length`, `head_circumference`, `chest_circumference`, `newborn_screening`) VALUES
(1, 1, 0, 'ABCD', 'Reyes', '', '', '', '', '7:16', '2017-10-08', '', '', '', '', ''),
(3, 1, 1, 'Shiela', 'Morales', 'A', '2', '2', 'Female', '08:11', '2018-01-31', '6.5', '56', '25', '15', 'on');
-- --------------------------------------------------------
--
-- Table structure for table `medicalhistory`
--
CREATE TABLE `medicalhistory` (
`Num` int(11) NOT NULL,
`Patient_ID` int(11) NOT NULL,
`case_id` int(11) NOT NULL,
`Date` varchar(100) NOT NULL,
`heent_epilepsy_convulsion` varchar(100) NOT NULL,
`heent_severe_headache_dizzines` varchar(100) NOT NULL,
`heent_visual_disturbance` varchar(100) NOT NULL,
`heent_yellowish_discoloration` varchar(100) NOT NULL,
`heent_enlarged_thyroid` varchar(100) NOT NULL,
`ch_severe_chest_pain` varchar(100) NOT NULL,
`ch_easy_fatigability` varchar(100) NOT NULL,
`ch_axillary_masses` varchar(100) NOT NULL,
`ch_nipple_discharge` varchar(100) NOT NULL,
`ch_systolic140_and_above` varchar(100) NOT NULL,
`ch_diastolic90_and_above` varchar(100) NOT NULL,
`ch_family_history_of_CVA` varchar(100) NOT NULL,
`abdomen_mass_in_abdomen` varchar(100) NOT NULL,
`abdomen_gallbladder_disease` varchar(100) NOT NULL,
`abdomen_liver_disease` varchar(100) NOT NULL,
`abdomen_previous_surgical_operation` varchar(100) NOT NULL,
`extremities_severe_varicositles` varchar(100) NOT NULL,
`extremities_deformities` varchar(100) NOT NULL,
`extremities_severe_pain_in_legs` varchar(100) NOT NULL,
`skin_yellowish_discoloration` varchar(100) NOT NULL,
`history_smoking` varchar(100) NOT NULL,
`history_allergies` varchar(100) NOT NULL,
`history_drug_intake` varchar(100) NOT NULL,
`history_drug_abuse` varchar(100) NOT NULL,
`history_STD` varchar(100) NOT NULL,
`history_anemia` varchar(100) NOT NULL,
`history_diabetes` varchar(100) NOT NULL,
`oh_fullterm` varchar(100) NOT NULL,
`oh_preterm` varchar(100) NOT NULL,
`oh_abortion` varchar(100) NOT NULL,
`oh_living_children` varchar(100) NOT NULL,
`oh_last_delivery_date` varchar(100) NOT NULL,
`oh_last_delivery_type` varchar(100) NOT NULL,
`oh_age_of_gestation_weeks` varchar(100) NOT NULL,
`oh_expected_date_of_confinement` varchar(100) NOT NULL,
`oh_previous_CS` varchar(100) NOT NULL,
`oh_3_consec_miscarriages` varchar(100) NOT NULL,
`oh_ectopic_pregnancy` varchar(100) NOT NULL,
`oh_post_partum_hemor` varchar(100) NOT NULL,
`oh_forcep_delivery` varchar(100) NOT NULL,
`oh_pregnancy_induced_hypertension` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `medicalhistory`
--
INSERT INTO `medicalhistory` (`Num`, `Patient_ID`, `case_id`, `Date`, `heent_epilepsy_convulsion`, `heent_severe_headache_dizzines`, `heent_visual_disturbance`, `heent_yellowish_discoloration`, `heent_enlarged_thyroid`, `ch_severe_chest_pain`, `ch_easy_fatigability`, `ch_axillary_masses`, `ch_nipple_discharge`, `ch_systolic140_and_above`, `ch_diastolic90_and_above`, `ch_family_history_of_CVA`, `abdomen_mass_in_abdomen`, `abdomen_gallbladder_disease`, `abdomen_liver_disease`, `abdomen_previous_surgical_operation`, `extremities_severe_varicositles`, `extremities_deformities`, `extremities_severe_pain_in_legs`, `skin_yellowish_discoloration`, `history_smoking`, `history_allergies`, `history_drug_intake`, `history_drug_abuse`, `history_STD`, `history_anemia`, `history_diabetes`, `oh_fullterm`, `oh_preterm`, `oh_abortion`, `oh_living_children`, `oh_last_delivery_date`, `oh_last_delivery_type`, `oh_age_of_gestation_weeks`, `oh_expected_date_of_confinement`, `oh_previous_CS`, `oh_3_consec_miscarriages`, `oh_ectopic_pregnancy`, `oh_post_partum_hemor`, `oh_forcep_delivery`, `oh_pregnancy_induced_hypertension`) VALUES
(6, 29, 57, '2017-10-11', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', '1', '1', '1', '2017-08-08', 'Spontaneous', '2', '2017-12-27', 'No', 'No', 'No', 'No', 'No', 'No'),
(8, 1, 1, '2017-10-11', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', '1', '1', '1', '', 'Spontaneous', '1', '2018-01-29', 'No', 'No', 'No', 'No', 'No', 'No'),
(9, 32, 60, '2017-10-11', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', '1', '1', '1', '2006-06-08', 'Spontaneous', '1', '2017-10-27', 'No', 'No', 'No', 'No', 'No', 'No'),
(10, 34, 64, '2017-10-18', 'Yes', 'No', 'Yes', 'Yes', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '3', '0', '0', '3', '2016-06-16', 'Spontaneous', '3', '2018-02-08', 'No', 'No', 'No', 'No', 'No', 'No'),
(11, 35, 65, '2017-10-19', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '1', '1', '1', '', 'Spontaneous', '3', '2018-01-19', 'No', 'No', 'No', 'No', 'No', 'No'),
(12, 99, 128, '2018-01-23', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '1', '0', '2', '2016-12-06', 'Ceasarian', '3', '2018-06-22', 'No', 'No', 'No', 'No', 'No', 'No'),
(13, 100, 129, '2018-01-28', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2015-12-01', 'Forcep', '2', '2018-07-04', 'No', 'No', 'No', 'No', 'No', 'No'),
(14, 103, 132, '2018-02-01', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2016-08-09', 'Spontaneous', '4', '2018-05-04', 'No', 'No', 'No', 'No', 'No', 'No'),
(15, 99, 138, '2018-02-01', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2016-07-06', 'Spontaneous', '0', '2018-02-02', 'No', 'No', 'No', 'No', 'No', 'No'),
(16, 104, 139, '2018-02-01', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', '0', '1', '0', '1', '2016-12-01', 'Ceasarian', '4', '2018-09-12', 'Yes', 'No', 'No', 'No', 'No', 'No'),
(17, 104, 139, '2018-02-01', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', '0', '1', '0', '1', '2016-12-01', 'Ceasarian', '4', '2018-09-12', 'Yes', 'No', 'No', 'No', 'No', 'No'),
(18, 105, 140, '2018-02-01', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '2', '2017-03-07', 'Spontaneous', '4', '2018-10-25', 'No', 'No', 'No', 'No', 'No', 'No'),
(19, 106, 141, '2018-02-22', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '2', '0', '2', '2017-08-09', 'Ceasarian', '4', '2018-10-22', 'No', 'No', 'No', 'No', 'No', 'No'),
(20, 107, 142, '2018-02-22', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2017-06-14', 'Ceasarian', '0', '2018-08-09', 'No', 'No', 'No', 'No', 'No', 'No'),
(21, 108, 143, '2018-02-22', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '2', '2017-08-01', 'Forcep', '0', '2018-10-22', 'Yes', 'No', 'No', 'No', 'No', 'No'),
(22, 109, 144, '2018-02-22', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '2', '2017-04-05', 'Ceasarian', '3', '2018-10-23', 'No', 'No', 'No', 'No', 'No', 'No'),
(23, 110, 145, '2018-02-22', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', '1', '0', '1', '2017-04-11', 'Ceasarian', '4', '2018-10-24', 'No', 'No', 'No', 'No', 'No', 'No'),
(24, 111, 146, '2018-02-22', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2017-03-16', 'Spontaneous', '4', '2018-12-20', 'No', 'No', 'No', 'No', 'No', 'No'),
(25, 112, 147, '2018-02-22', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '2', '2', '0', '2', '2017-06-14', 'Ceasarian', '3', '2018-10-24', 'No', 'No', 'No', 'No', 'No', 'No'),
(26, 113, 148, '2018-02-22', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', '2', '0', '0', '2', '2017-04-12', 'Ceasarian', '3', '2018-11-07', 'No', 'No', 'No', 'No', 'No', 'No'),
(27, 114, 149, '2018-02-22', 'Yes', 'Yes', 'No', 'Yes', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'Yes', 'No', 'Yes', 'No', 'Yes', 'No', 'No', '0', '0', '0', '1', '2017-03-08', 'Spontaneous', '5', '2018-10-30', 'No', 'No', 'No', 'No', 'No', 'No'),
(28, 115, 150, '2018-02-22', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2017-03-08', 'Forcep', '3', '2018-11-08', 'No', 'No', 'No', 'No', 'No', 'No'),
(29, 116, 151, '2018-02-22', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '1', '2017-05-09', 'Spontaneous', '3', '2018-10-31', 'No', 'No', 'No', 'No', 'No', 'No'),
(30, 117, 152, '2018-02-22', 'Yes', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', '0', '0', '0', '0', '2017-05-09', 'Spontaneous', '3', '2018-10-23', 'No', 'No', 'No', 'No', 'No', 'No');
-- --------------------------------------------------------
--
-- Table structure for table `online_appointment`
--
CREATE TABLE `online_appointment` (
`ol_appointment_id` int(11) NOT NULL,
`patient_name` varchar(100) NOT NULL,
`patient_surname` varchar(100) NOT NULL,
`address` varchar(250) NOT NULL,
`date` varchar(25) NOT NULL,
`time` varchar(25) NOT NULL,
`procedure` varchar(100) NOT NULL,
`contact_number` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `online_appointment`
--
INSERT INTO `online_appointment` (`ol_appointment_id`, `patient_name`, `patient_surname`, `address`, `date`, `time`, `procedure`, `contact_number`) VALUES
(1, 'mel', 'mel', 'mel', '2017-01-31', 'mel', 'mel', 'mel');
-- --------------------------------------------------------
--
-- Table structure for table `patient_account`
--
CREATE TABLE `patient_account` (
`account_ID` int(11) NOT NULL,
`patient_ID` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `patient_account`
--
INSERT INTO `patient_account` (`account_ID`, `patient_ID`, `username`, `password`) VALUES
(1, 1, '<PASSWORD>', '<PASSWORD>'),
(6, 52, 'Irene.Irene', '<PASSWORD>'),
(7, 53, 'Enriquez.Mike', '<PASSWORD>'),
(17, 63, 'patient_ID.patient_ID', '<PASSWORD>34a16891f84e7b'),
(53, 99, 'Hwang.Tiffany', '827ccb0eea8a706c4c34a16891f84e7b'),
(54, 100, 'test.test', '12345'),
(55, 101, 'Capistrano.Robert', '827ccb0eea8a706c4c34a16891f84e7b'),
(56, 102, 'Salinas.Khrismar', '827ccb0eea8a706c4c34a16891f84e7b'),
(57, 103, 'Salinas.Khrismar103', '827ccb0eea8a706c4c34a16891f84e7b'),
(58, 104, 'Valenzue.Jeru', '827ccb0eea8a706c4c34a16891f84e7b'),
(59, 105, 'Garcia.May ', '827ccb0eea8a706c4c34a16891f84e7b'),
(60, 106, 'Test.test1', '827ccb0eea8a706c4c34a16891f84e7b'),
(61, 107, 'Morales.Shiela', '827ccb0eea8a706c4c34a16891f84e7b'),
(62, 108, 'Capistrano.Roberta', '827ccb0eea8a706c4c34a16891f84e7b'),
(63, 109, 'Alcantara.Christine', '827ccb0eea8a706c4c34a16891f84e7b'),
(64, 110, 'Capistrano.Christine', '827ccb0eea8a706c4c34a16891f84e7b'),
(65, 111, '<NAME>', '827ccb0eea8a706c4c34a16891f84e7b'),
(66, 112, 'perez.hugo', '827ccb0eea8a706c4c34a16891f84e7b'),
(67, 113, '<NAME>', '827ccb0eea8a706c4c34a16891f84e7b'),
(68, 114, '<NAME>', '827ccb0eea8a706c4c34a16891f84e7b'),
(69, 115, 'Capistrano.Christine115', '827ccb0eea8a706c4c34a16891f84e7b'),
(70, 116, 'Capistrano.Christine116', '827ccb0eea8a706c4c34a16891f84e7b'),
(71, 117, 'Capistrano.Christine117', '827ccb0eea8a706c4c34a16891f84e7b');
-- --------------------------------------------------------
--
-- Table structure for table `patient_info`
--
CREATE TABLE `patient_info` (
`patient_ID` int(11) NOT NULL,
`last_name` varchar(100) NOT NULL,
`given_name` varchar(100) NOT NULL,
`middle_initial` varchar(3) NOT NULL,
`occupation` varchar(100) NOT NULL,
`date_of_birth` varchar(50) NOT NULL,
`contact_num` varchar(30) NOT NULL,
`street_no` varchar(75) NOT NULL,
`brgy` varchar(50) NOT NULL,
`city` varchar(25) NOT NULL,
`emergency_contact_name` varchar(100) NOT NULL,
`emergency_contact_num` varchar(24) NOT NULL,
`emergency_contact_address` varchar(100) NOT NULL,
`date_registered` varchar(20) NOT NULL,
`picture` varchar(500) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `patient_info`
--
INSERT INTO `patient_info` (`patient_ID`, `last_name`, `given_name`, `middle_initial`, `occupation`, `date_of_birth`, `contact_num`, `street_no`, `brgy`, `city`, `emergency_contact_name`, `emergency_contact_num`, `emergency_contact_address`, `date_registered`, `picture`) VALUES
(1, 'lazaro', 'lazaro', 'g', 'student', '1998-04-30', '09225824215', '138 block 8', 'fort bonifacio', 'taguig', 'Madeline Lazaro', '09153864099', 'same address', '2017-10-06', ''),
(2, 'sheeran', 'ed', 'd', 'singer', '1982-10-23', '09225923283', '138 block 8', 'fort bonifacio', 'taguig', 'Madeline Lazaro', '09153864099', 'same address', '2017-10-08', ''),
(26, 'James', 'Al', 'i', 'rapper', '2017-10-11', '1364', '7979', '79798', '79798', '798798', '79879', '79978', '2017-10-11', ''),
(52, 'Irene', 'Irene', 'G', 'Student', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-01-22', ''),
(53, 'Enriquez', 'Mike', 'A', 'Reporter', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-01-22', ''),
(63, 'patient_ID', 'patient_ID', 'pat', 'patient_ID', 'patient_ID', 'patient_ID', 'patient_ID', 'patient_ID', 'patient_IDpatient_ID', 'patient_ID', 'patient_ID', 'patient_ID', '2018-01-22', ''),
(99, 'Hwang ', 'Tiffany', 'G', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', '2018-01-23', ''),
(100, 'test', 'test', 'tes', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', '2018-01-28', '26913848_1987410777942306_1081251553_n.jpg'),
(101, 'Capistrano', 'Robert', 'C', 'Student', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-02-01', '2x2.png'),
(102, 'Salinas', 'Khrismar', 'A', 'Student', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-02-01', NULL),
(103, 'Salinas', 'Khrismar', 'G', 'HR ', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-02-01', '26913848_1987410777942306_1081251553_n1.jpg'),
(104, 'Valenzue', 'Jeru', 'A', 'HR', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-02-01', '2x21.png'),
(105, 'Garcia', 'May ', 'A', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same', '2018-02-01', NULL),
(106, 'Test', 'test1', 'a', 'Teacher', '1998-04-30', '0912312321', '123', '123', '123', '12', '123', '123', '2018-02-22', '2x22.png'),
(107, 'Morales', 'Shiela', 'C', 'Student', '1998-04-30', '0912312321', '123', '123', '123', '<NAME>', '09153864099', 'same', '2018-02-22', '2x23.png'),
(108, 'Capistrano', 'Roberta', 'C', 'Professor', '1998-04-30', '09234644144', '123', '123', '123', 'Jeru Valenzuela', '09153864099', 'same address', '2018-02-22', '1.png'),
(109, 'Alcantara', 'Christine', 'A', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', 'Jeru Valenzuela', '09153864099', 'same address', '2018-02-22', '11.png'),
(110, 'Capistrano', 'Christine', 'A', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same address', '2018-02-22', '12.png'),
(111, 'Gonzales', '<NAME>', 'G', 'Student', 'August 13, 1998', '09751142946', '1509', '7', 'Caloocan', '<NAME>', '09751142946', 'Caloocan City', '2018-02-22', '2x24.png'),
(112, 'perez', 'hugo', 'cru', 'housewife', '1998-9-7', '099766544', '789', 'tayuman', 'cavite', 'severino lapidario', '09876543213', 'manila', '2018-02-22', '13.png'),
(113, 'Capistrano', '<NAME>', 'G', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same address', '2018-02-22', '14.png'),
(114, 'Sumaray', '<NAME>', 'Nan', 'IT expert', '1997-01-13', '09151232213', 'Felix st.', 'Sangandaan', 'Taguig City', '<NAME>', '09301149799', 'Medel. St ', '2018-02-22', '2x25.png'),
(115, 'Capistrano', 'Christine', 'A', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', '<NAME>', '09153864099', 'same address', '2018-02-22', '15.png'),
(116, 'Capistrano', 'Christine', 'A', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', 'Jeru Valenzuela', '09153864099', 'same', '2018-02-22', '16.png'),
(117, 'Capistrano', 'Christine', 'A', 'Teacher', '1998-04-30', '09151232213', '138 block 8 zone 2', 'Fort Bonifacio', 'Taguig City', 'Jeru Valenzuela', '09153864099', 'same address', '2018-02-22', '17.png');
-- --------------------------------------------------------
--
-- Table structure for table `pending_appointment`
--
CREATE TABLE `pending_appointment` (
`appointment_id` int(11) NOT NULL,
`first_name` varchar(100) NOT NULL,
`last_name` varchar(100) NOT NULL,
`address` varchar(100) NOT NULL,
`contact_number` int(15) NOT NULL,
`date` varchar(25) NOT NULL,
`time` varchar(25) NOT NULL,
`clinic_procedure` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `physicalexamination`
--
CREATE TABLE `physicalexamination` (
`Num` int(11) NOT NULL,
`patient_ID` int(11) NOT NULL,
`case_id` int(11) NOT NULL,
`date` varchar(50) NOT NULL,
`height` varchar(20) NOT NULL,
`weight` varchar(20) NOT NULL,
`systolic` varchar(5) NOT NULL,
`diastolic` varchar(5) NOT NULL,
`blood_type` varchar(20) NOT NULL,
`conjunctiva_pale` varchar(20) NOT NULL,
`conjunctiva_yellowish` varchar(20) NOT NULL,
`neck_enlarged_thyroid` varchar(20) NOT NULL,
`neck_enlarged_lymph_nodes` varchar(20) NOT NULL,
`breast_mass` varchar(20) NOT NULL,
`breast_nipple_discharge` varchar(20) NOT NULL,
`breast_dimpling` varchar(20) NOT NULL,
`breast_enlarged_axillary_lymph_nodes` varchar(20) NOT NULL,
`thorax_abnormal_cardiac_rate` varchar(20) NOT NULL,
`thorax_abnormal_respiratory_rate` varchar(20) NOT NULL,
`abdomen_pe_fundic_height` varchar(20) NOT NULL,
`abdomen_pe_fetal_heart_tone` varchar(50) NOT NULL,
`abdomen_pe_fetal_movement` varchar(50) NOT NULL,
`lm_presenting_part` varchar(50) NOT NULL,
`lm_position_of_fetal_back` varchar(50) NOT NULL,
`lm_fetal_parts` varchar(50) NOT NULL,
`lm_presenting_part_status` varchar(50) NOT NULL,
`lm_uterine_activity` varchar(50) NOT NULL,
`perineum_scars` varchar(20) NOT NULL,
`perineum_warts_or_mass` varchar(20) NOT NULL,
`perineum_laceration` varchar(20) NOT NULL,
`perineum_severe_varicosities` varchar(20) NOT NULL,
`vagina_bartholins_cyst` varchar(20) NOT NULL,
`vagina_warts_gland_discharge` varchar(20) NOT NULL,
`vagina_cystocele_or_rectocoele` varchar(20) NOT NULL,
`vagina_purulant_discharge` varchar(20) NOT NULL,
`vagina_erosion_or_foreign_body` varchar(20) NOT NULL,
`cervix_consistency` varchar(500) NOT NULL,
`cervix_dilatation` varchar(500) NOT NULL,
`cervix_palpable_presenting_part` varchar(500) NOT NULL,
`cervix_status_BagOfWater` varchar(500) NOT NULL,
`impression` varchar(1000) NOT NULL,
`plans` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `physicalexamination`
--
INSERT INTO `physicalexamination` (`Num`, `patient_ID`, `case_id`, `date`, `height`, `weight`, `systolic`, `diastolic`, `blood_type`, `conjunctiva_pale`, `conjunctiva_yellowish`, `neck_enlarged_thyroid`, `neck_enlarged_lymph_nodes`, `breast_mass`, `breast_nipple_discharge`, `breast_dimpling`, `breast_enlarged_axillary_lymph_nodes`, `thorax_abnormal_cardiac_rate`, `thorax_abnormal_respiratory_rate`, `abdomen_pe_fundic_height`, `abdomen_pe_fetal_heart_tone`, `abdomen_pe_fetal_movement`, `lm_presenting_part`, `lm_position_of_fetal_back`, `lm_fetal_parts`, `lm_presenting_part_status`, `lm_uterine_activity`, `perineum_scars`, `perineum_warts_or_mass`, `perineum_laceration`, `perineum_severe_varicosities`, `vagina_bartholins_cyst`, `vagina_warts_gland_discharge`, `vagina_cystocele_or_rectocoele`, `vagina_purulant_discharge`, `vagina_erosion_or_foreign_body`, `cervix_consistency`, `cervix_dilatation`, `cervix_palpable_presenting_part`, `cervix_status_BagOfWater`, `impression`, `plans`) VALUES
(1, 1, 1, '2017-10-11', '152', '55', '120', '80', 'B', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', '1', '1', '1', '1', '1', '1', '1', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', '1', '1', '1', 'loyalty', 'loyalty'),
(2, 1, 1, '2017-10-12', '152', '55', '144', '90', 'O', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', '12', '12', '12', '1', '1', '1', '1', '1', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', '1111', '11', '1', '1', 'men', 'men'),
(4, 32, 60, '2017-10-11', '152', '55', '135', '99', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '2', '1', '1', '3', '32', '31', '3', '2', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', 'Yes', '2', '2', '2', '2', 'mariposa', 'mariposa'),
(5, 1, 1, '2017-10-18', '152', '55', '125', '95', 'B', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '1', 'test', 'test1', 'test', 'test', 'test', 'test', 'test', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'test', 'test', 'test', 'test', 'test', 'test'),
(6, 34, 64, '2017-10-18', '152', '55', '123', '89', 'B', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'test', 'test', 'test', 'test', 'Impression_test', 'plans_test'),
(7, 35, 65, '2017-10-19', '152', '55', '140', '100', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'test', 'test', 'test1', 'test', 'test', 'test', 'test', 'test', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'test', 'test', 'test', 'test', '1 month pregnant', 'prescribed folic acid for .. '),
(8, 100, 129, '2018-01-28', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'None', 'None', 'None', 'None', 'None', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'None', '8 Weeks pregnant. Normal state of pregnancy', 'Continue taking Folic Acid'),
(9, 103, 132, '2018-02-01', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'Clockwise', 'None', 'Firm', 'None', 'None', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '8 weeks pregnant, Normal delivery', 'Continue taking Folic Acid.'),
(10, 99, 138, '2018-02-01', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'clockwise', 'None', 'None', 'Normal', 'None', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '4 weeks pregnant', 'Continue taking folic acid'),
(11, 104, 139, '2018-02-01', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'Clockwise', 'None', 'None', 'None', 'None', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '4 weeks pregnant, no notable problems', 'Continue taking Folic Acid'),
(12, 105, 140, '2018-02-01', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'Clockwise', 'None', 'None', 'None', 'None', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'None', 'None', 'Normal', '7 weeks pregnant. ', 'Continue taking Folic Acid.. '),
(13, 138, 99, '2018-02-08', '146', '56', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'None', 'Clockwise', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'None', 'Normal', 'None', 'test', 'test'),
(14, 138, 99, '2018-02-14', '1', '', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '', '', '', '', '', '', '', '', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '', '', '', '', '', ''),
(15, 138, 99, '2018-02-14', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'Normal', 'Clockwise', 'None', 'None', 'None', 'None', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'None', '8 weeks pregnant. ', 'Continue taking folic acid, be careful on what she eats'),
(16, 138, 99, '2018-02-14', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'None', 'None', 'None', 'None', 'None', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'None', 'None', 'None'),
(17, 106, 141, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'None', 'None', 'None', 'None', 'None', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '', '', '', '', '2 weeks pregnant.', 'Continue taking Folic Acid.'),
(18, 107, 142, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'none', 'None', 'None', 'None', 'Normal ', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'Non', 'None', '3 weeks pregnant', 'continue taking Folic Acid.'),
(19, 108, 143, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'None', 'None', 'Normal', 'Normal', 'Normal', 'Normal', 'None', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'None', 'None', '4 weeks pregnant. ', 'Continue taking Folic Acid. '),
(20, 109, 144, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'None', 'Normal', 'None', 'None', 'None', 'None', '', '', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '', '', '', '', '', ''),
(21, 110, 145, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal'),
(22, 111, 146, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '', '', '', '', '', '', '', '', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', '', '', '', '', 'test', 'test'),
(23, 112, 147, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '3 weeks pregnant.. ', 'continue taking folic acid.'),
(24, 113, 148, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '3 weeks pregnant.', 'continue taking folic acid,'),
(25, 114, 149, '2018-02-22', '146', '61', '120', '80', 'O', 'Yes', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Yes', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '4 weeks pregnant. Dangerous in love that is why needed to forcep the baby like now na as in now na labas na baby now na.', 'continue taking folic acid. and tempra and drink orange juice in the midnight regularly.'),
(26, 115, 150, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '3 weeks pregnant. ', 'continue anmun and folic acid.'),
(27, 116, 151, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '4 weeks pregnant. ', 'Continue taking folic acid. '),
(28, 117, 152, '2018-02-22', '146', '61', '120', '80', 'O', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'Normal', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'No', 'Normal', 'Normal', 'Normal', 'Normal', '', 'Continue taking folic acid');
-- --------------------------------------------------------
--
-- Table structure for table `postnatal`
--
CREATE TABLE `postnatal` (
`postnatal_id` int(11) NOT NULL,
`case_id` int(11) NOT NULL,
`patient_id` int(11) NOT NULL,
`infant_id` int(11) NOT NULL,
`date` varchar(20) NOT NULL,
`patient_weight` varchar(15) NOT NULL,
`infant_height` varchar(15) NOT NULL,
`blood_pressure` varchar(15) NOT NULL,
`impression` varchar(5000) NOT NULL,
`plans` varchar(5000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tasks`
--
CREATE TABLE `tasks` (
`task_id` int(11) NOT NULL,
`task_content` varchar(500) NOT NULL,
`task_creator` varchar(50) NOT NULL,
`date` varchar(25) NOT NULL,
`time` varchar(25) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tasks`
--
INSERT INTO `tasks` (`task_id`, `task_content`, `task_creator`, `date`, `time`) VALUES
(1, 'Restock medicine items', 'test1', '2017-10-28', '9:57 PM'),
(2, 'clean delivery room', 'test1', '2017-10-28', '10:55pm'),
(21, 'qwerty', 'test1', '2017-11-14', '11:08'),
(20, 'yeh', 'test1', '2017-11-12', '09:21'),
(19, 'yeh', 'test1', '2017-11-12', '09:20'),
(18, 'yeh', 'test1', '2017-11-12', '09:20'),
(17, 'hehe', 'test1', '2017-11-12', '09:19'),
(16, 'hehe', 'test1', '2017-11-12', '09:18'),
(15, 'arte', 'test1', '2017-11-12', '09:09'),
(14, 'qwew', 'test1', '2017-11-12', '09:09'),
(13, 'hey', 'test1', '2017-11-12', '09:08');
-- --------------------------------------------------------
--
-- Table structure for table `user_admin`
--
CREATE TABLE `user_admin` (
`user_id` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user_admin`
--
INSERT INTO `user_admin` (`user_id`, `username`, `password`) VALUES
(1, 'admin', '<PASSWORD>9d40e1329780d62ea2265d8a');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `activity_log`
--
ALTER TABLE `activity_log`
ADD PRIMARY KEY (`activity_log_id`);
--
-- Indexes for table `calendar_events`
--
ALTER TABLE `calendar_events`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `case`
--
ALTER TABLE `case`
ADD PRIMARY KEY (`case_id`),
ADD KEY `patient_ID` (`patient_ID`);
--
-- Indexes for table `consultation`
--
ALTER TABLE `consultation`
ADD PRIMARY KEY (`consultation_id`),
ADD KEY `infant_id` (`infant_id`);
--
-- Indexes for table `feedback`
--
ALTER TABLE `feedback`
ADD PRIMARY KEY (`feedback_id`);
--
-- Indexes for table `infant_info`
--
ALTER TABLE `infant_info`
ADD PRIMARY KEY (`infant_id`),
ADD KEY `patient_id` (`patient_ID`),
ADD KEY `case_id` (`case_id`);
--
-- Indexes for table `medicalhistory`
--
ALTER TABLE `medicalhistory`
ADD PRIMARY KEY (`Num`),
ADD KEY `case_id` (`case_id`),
ADD KEY `Patient_ID` (`Patient_ID`);
--
-- Indexes for table `online_appointment`
--
ALTER TABLE `online_appointment`
ADD PRIMARY KEY (`ol_appointment_id`);
--
-- Indexes for table `patient_account`
--
ALTER TABLE `patient_account`
ADD PRIMARY KEY (`account_ID`),
ADD UNIQUE KEY `patient_ID` (`patient_ID`);
--
-- Indexes for table `patient_info`
--
ALTER TABLE `patient_info`
ADD PRIMARY KEY (`patient_ID`);
--
-- Indexes for table `pending_appointment`
--
ALTER TABLE `pending_appointment`
ADD PRIMARY KEY (`appointment_id`);
--
-- Indexes for table `physicalexamination`
--
ALTER TABLE `physicalexamination`
ADD PRIMARY KEY (`Num`),
ADD KEY `case_id` (`case_id`),
ADD KEY `Patient_ID` (`patient_ID`);
--
-- Indexes for table `postnatal`
--
ALTER TABLE `postnatal`
ADD PRIMARY KEY (`postnatal_id`),
ADD KEY `case_id` (`case_id`);
--
-- Indexes for table `tasks`
--
ALTER TABLE `tasks`
ADD PRIMARY KEY (`task_id`);
--
-- Indexes for table `user_admin`
--
ALTER TABLE `user_admin`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `activity_log`
--
ALTER TABLE `activity_log`
MODIFY `activity_log_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;
--
-- AUTO_INCREMENT for table `calendar_events`
--
ALTER TABLE `calendar_events`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `case`
--
ALTER TABLE `case`
MODIFY `case_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=153;
--
-- AUTO_INCREMENT for table `consultation`
--
ALTER TABLE `consultation`
MODIFY `consultation_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `feedback`
--
ALTER TABLE `feedback`
MODIFY `feedback_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `infant_info`
--
ALTER TABLE `infant_info`
MODIFY `infant_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `medicalhistory`
--
ALTER TABLE `medicalhistory`
MODIFY `Num` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT for table `online_appointment`
--
ALTER TABLE `online_appointment`
MODIFY `ol_appointment_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `patient_account`
--
ALTER TABLE `patient_account`
MODIFY `account_ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72;
--
-- AUTO_INCREMENT for table `patient_info`
--
ALTER TABLE `patient_info`
MODIFY `patient_ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118;
--
-- AUTO_INCREMENT for table `pending_appointment`
--
ALTER TABLE `pending_appointment`
MODIFY `appointment_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `physicalexamination`
--
ALTER TABLE `physicalexamination`
MODIFY `Num` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `case`
--
ALTER TABLE `case`
ADD CONSTRAINT `case_ibfk_1` FOREIGN KEY (`patient_ID`) REFERENCES `patient_info` (`patient_ID`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `patient_account`
--
ALTER TABLE `patient_account`
ADD CONSTRAINT `patient_account_ibfk_1` FOREIGN KEY (`patient_ID`) REFERENCES `patient_info` (`patient_ID`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `postnatal`
--
ALTER TABLE `postnatal`
ADD CONSTRAINT `postnatal_ibfk_1` FOREIGN KEY (`case_id`) REFERENCES `case` (`case_id`);
/*!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 5.0.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 03 Des 2020 pada 11.09
-- Versi server: 10.4.16-MariaDB
-- Versi PHP: 7.3.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: `proyek2`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `admins`
--
CREATE TABLE `admins` (
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) 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 untuk tabel `admins`
--
INSERT INTO `admins` (`username`, `password`, `created_at`, `updated_at`) VALUES
('Admin', 'Admin', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `dokumens`
--
CREATE TABLE `dokumens` (
`id_dokumen` int(10) UNSIGNED NOT NULL,
`judul` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`pdf` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`kategori` varchar(255) 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 untuk tabel `dokumens`
--
INSERT INTO `dokumens` (`id_dokumen`, `judul`, `nip`, `pdf`, `kategori`, `created_at`, `updated_at`) VALUES
(2, 'Penerapan 3M', '1805030', '1565111890.pdf', 'Covid 19', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `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;
-- --------------------------------------------------------
--
-- Struktur dari tabel `jadwals`
--
CREATE TABLE `jadwals` (
`id_jadwal` int(10) UNSIGNED NOT NULL,
`judul` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jam` time NOT NULL,
`hari` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` date NOT NULL,
`foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tempat` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) 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 untuk tabel `jadwals`
--
INSERT INTO `jadwals` (`id_jadwal`, `judul`, `jam`, `hari`, `tanggal`, `foto`, `tempat`, `status`, `created_at`, `updated_at`) VALUES
(4, 'Penerapan 3M', '11:00:00', 'Selasa', '2020-12-14', '1170327964.jpg', 'Pamayahan', 'Terlaksana', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `kategoris`
--
CREATE TABLE `kategoris` (
`id_kategori` int(10) UNSIGNED NOT NULL,
`nama` varchar(255) 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 untuk tabel `kategoris`
--
INSERT INTO `kategoris` (`id_kategori`, `nama`, `created_at`, `updated_at`) VALUES
(2, 'Covid 19', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `masyarakats`
--
CREATE TABLE `masyarakats` (
`nik` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tl` date NOT NULL,
`no_hp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alamat` varchar(255) 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 untuk tabel `masyarakats`
--
INSERT INTO `masyarakats` (`nik`, `nama`, `password`, `jk`, `tl`, `no_hp`, `foto`, `alamat`, `created_at`, `updated_at`) VALUES
('2222266666456789', 'Kosong', '2222266666456789', 'Kosong', '2020-01-01', '0', 'kos<PASSWORD>', 'kosong', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `materis`
--
CREATE TABLE `materis` (
`id_materi` int(10) UNSIGNED NOT NULL,
`judul` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`video` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`kategori` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`deskripsi` varchar(255) 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 untuk tabel `materis`
--
INSERT INTO `materis` (`id_materi`, `judul`, `nip`, `video`, `foto`, `kategori`, `deskripsi`, `created_at`, `updated_at`) VALUES
(6, 'Menjaga kesehatan anak', '1805030', '292545333.mp4', '187766237.png', 'Covid 19', 'Menjaga kesehatan anak adalah', NULL, NULL),
(10, 'Penerapan 3M', '1805030', '234755457.mp4', '231124966.png', 'Covid 19', 'Penerapan 3M adalah', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `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 untuk tabel `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(11, '2014_10_12_000000_create_users_table', 1),
(12, '2014_10_12_100000_create_password_resets_table', 1),
(13, '2019_08_19_000000_create_failed_jobs_table', 1),
(14, '2020_11_10_094437_create_masyarakats_table', 1),
(15, '2020_11_10_094510_create_admins_table', 1),
(16, '2020_11_10_094523_create_pegawais_table', 1),
(17, '2020_11_10_094545_create_jadwals_table', 1),
(18, '2020_11_10_094623_create_tanyas_table', 1),
(19, '2020_11_18_021951_create_kategoris_table', 1),
(20, '2020_11_18_023739_create_materis_table', 1),
(21, '2020_11_18_0237300_create_materis_table', 2),
(22, '2020_11_10_094620_create_tanyas_table', 3),
(23, '2020_12_02_030224_create_dokumens_table', 4);
-- --------------------------------------------------------
--
-- Struktur dari tabel `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;
-- --------------------------------------------------------
--
-- Struktur dari tabel `pegawais`
--
CREATE TABLE `pegawais` (
`nip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jabatan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tl` date NOT NULL,
`no_hp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alamat` varchar(255) 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 untuk tabel `pegawais`
--
INSERT INTO `pegawais` (`nip`, `nama`, `password`, `jabatan`, `jk`, `tl`, `no_hp`, `foto`, `alamat`, `created_at`, `updated_at`) VALUES
('1805030', '<NAME>', 'Abdul123', 'Dokter Umum', 'Laki-laki', '2000-01-01', '082295073111', '360433316.png', 'Indramayu', NULL, NULL),
('1805032', '<NAME>', 'Alfayni9', 'Apoteker', 'Laki-laki', '2000-01-01', '082295073112', '777161837.png', 'Indramayu', NULL, NULL),
('1805036', '<NAME>', 'Arif1234', 'Ketua Puskesmas', 'Laki-laki', '2000-01-01', '082295073113', '1439724921.png', 'Indramayu', NULL, NULL),
('1805037', '<NAME>', 'Aziz1234', 'Ketua Penyuluhan', 'Laki-laki', '2000-01-01', '082295073114', '1012488566.png', 'Indramayu', NULL, NULL),
('1805047', '<NAME>', 'Wahid123', '<NAME>', 'Laki-laki', '2000-01-01', '082295073115', '1680717300.png', 'Indramayu', NULL, NULL),
('kosong', 'kosong', 'kosong', '', 'kosong', '2020-11-01', 'kosong', 'kosong.jpg', 'kosong', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `tanyas`
--
CREATE TABLE `tanyas` (
`id_tanya` int(10) UNSIGNED NOT NULL,
`nip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nik` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`pertanyaan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jawaban` varchar(255) 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 untuk tabel `tanyas`
--
INSERT INTO `tanyas` (`id_tanya`, `nip`, `nik`, `pertanyaan`, `jawaban`, `created_at`, `updated_at`) VALUES
(2, 'kosong', '2222266666456789', 'Bagaimana', 'kosong', NULL, NULL),
(3, '1805032', '2222266666456789', 'Bagaimana cara mencegah diri kita terdampak virus Korona?', 'Yaitu dengan melakukan 3M ', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci 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;
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `admins`
--
ALTER TABLE `admins`
ADD PRIMARY KEY (`username`);
--
-- Indeks untuk tabel `dokumens`
--
ALTER TABLE `dokumens`
ADD PRIMARY KEY (`id_dokumen`),
ADD KEY `dokumens_nip_foreign` (`nip`);
--
-- Indeks untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indeks untuk tabel `jadwals`
--
ALTER TABLE `jadwals`
ADD PRIMARY KEY (`id_jadwal`);
--
-- Indeks untuk tabel `kategoris`
--
ALTER TABLE `kategoris`
ADD PRIMARY KEY (`id_kategori`);
--
-- Indeks untuk tabel `masyarakats`
--
ALTER TABLE `masyarakats`
ADD PRIMARY KEY (`nik`);
--
-- Indeks untuk tabel `materis`
--
ALTER TABLE `materis`
ADD PRIMARY KEY (`id_materi`),
ADD KEY `materis_nip_foreign` (`nip`);
--
-- Indeks untuk tabel `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indeks untuk tabel `pegawais`
--
ALTER TABLE `pegawais`
ADD PRIMARY KEY (`nip`);
--
-- Indeks untuk tabel `tanyas`
--
ALTER TABLE `tanyas`
ADD PRIMARY KEY (`id_tanya`),
ADD KEY `tanyas_nip_foreign` (`nip`),
ADD KEY `tanyas_nik_foreign` (`nik`);
--
-- Indeks untuk tabel `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `dokumens`
--
ALTER TABLE `dokumens`
MODIFY `id_dokumen` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `jadwals`
--
ALTER TABLE `jadwals`
MODIFY `id_jadwal` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT untuk tabel `kategoris`
--
ALTER TABLE `kategoris`
MODIFY `id_kategori` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `materis`
--
ALTER TABLE `materis`
MODIFY `id_materi` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT untuk tabel `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT untuk tabel `tanyas`
--
ALTER TABLE `tanyas`
MODIFY `id_tanya` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT untuk tabel `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)
--
--
-- Ketidakleluasaan untuk tabel `dokumens`
--
ALTER TABLE `dokumens`
ADD CONSTRAINT `dokumens_nip_foreign` FOREIGN KEY (`nip`) REFERENCES `pegawais` (`nip`);
--
-- Ketidakleluasaan untuk tabel `materis`
--
ALTER TABLE `materis`
ADD CONSTRAINT `materis_nip_foreign` FOREIGN KEY (`nip`) REFERENCES `pegawais` (`nip`);
--
-- Ketidakleluasaan untuk tabel `tanyas`
--
ALTER TABLE `tanyas`
ADD CONSTRAINT `tanyas_nik_foreign` FOREIGN KEY (`nik`) REFERENCES `masyarakats` (`nik`),
ADD CONSTRAINT `tanyas_nip_foreign` FOREIGN KEY (`nip`) REFERENCES `pegawais` (`nip`);
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 */;
|
<filename>examples/script-part3.sql
CREATE TABLE parameters (
param_id UNIT PRIMARY KEY,
deadline INT,
shipname TEXT
);
CREATE TABLE ship (
ship_id bigserial PRIMARY KEY,
name text NOT NULL,
cargo bigint,
latitude DOUBLE PRECISION,
longitude DOUBLE PRECISION,
length bigint,
draft bigint,
maxspeed bigint
);
CREATE TABLE port (
port_id bigserial PRIMARY KEY,
name text NOT NULL,
latitude DOUBLE PRECISION,
longitude DOUBLE PRECISION,
offloadcapacity bigint,
offloadtime bigint,
harbordepth bigint,
available boolean
);
CREATE TABLE berth (
port_id bigint,
berth_id bigint,
berthlength bigint,
PRIMARY KEY (port_id, berth_id)
);
CREATE TABLE slot (
port_id bigint,
berth_id bigint,
slot_id bigint,
ship_id bigint REFERENCES ship NOT NULL,
slotstart bigint,
slotend bigint,
PRIMARY KEY (port_id, berth_id, slot_id),
FOREIGN KEY (port_id, berth_id) REFERENCES berth (port_id, berth_id)
);
-- =============================================================================
-- DML STATEMENTS
-- =============================================================================
create or replace function earliest_arrival(
ship_lat DOUBLE PRECISION,
ship_long DOUBLE PRECISION,
port_lat DOUBLE PRECISION,
port_long DOUBLE PRECISION,
max_speed BIGINT)
returns BIGINT as
$$
select ceil((POINT(ship_lat, ship_long) <@> POINT(port_lat, port_long)) / max_speed)::BIGINT
$$
language SQL IMMUTABLE returns NULL on NULL INPUT;
create or replace function compute_reachable_ports(deadline BIGINT, shipname TEXT)
returns TABLE (port_id BIGINT, arrival BIGINT) as
$$
select port.port_id as port_id,
earliest_arrival(ship.longitude, ship.latitude,
port.longitude, port.latitude, ship.maxspeed) as arrival
from port, ship
where earliest_arrival(ship.longitude, ship.latitude,
port.longitude, port.latitude, ship.maxspeed) <= deadline
and ship.name = shipname
and port.port_id = port.port_id;
$$
language SQL;
SELECT rports.port_id as port_id, rports.arrival as arrival INTO reachable_ports
FROM parameters as p cross join lateral compute_reachable_ports(p.deadline, p.shipname) as rports;
create or replace function compute_feasible_ports(shipname TEXT)
returns TABLE (port_id BIGINT) as
$$
select port.port_id as port_id
from reachable_ports, port, ship
where reachable_ports.port_id = port.port_id
and port.available
and port.harbordepth >= ship.draft
and port.offloadcapacity >= ship.cargo
and ship.name = shipname;
$$
language SQL;
select fports.port_id as port_id into feasible_ports
from parameters as p cross join lateral compute_feasible_ports(p.shipname) as fports;
SELECT slot.port_id as port_id,
slot.berth_id as berth_id,
row_number() OVER (PARTITION BY port_id, berth_id) AS row_id,
slot.slotstart as slotstart,
slot.slotend as slotend
INTO slot1
FROM slot
ORDER BY port_id, berth_id, slotstart;
SELECT COALESCE(slot1.port_id, slot2.port_id) AS port_id,
COALESCE(slot1.berth_id, slot2.berth_id) AS berth_id,
row_number() OVER (PARTITION BY port_id, berth_id) AS slot_id,
COALESCE(slot1.slotend, slot2.slotstart) AS gap,
COALESCE(slot1.slotend, 0) AS slotstart,
COALESCE(slot2.slotstart, 30) AS slotend
into available_slots
FROM slot1
FULL JOIN slot1 AS slot2 ON
slot1.port_id = slot2.port_id AND
slot1.berth_id = slot2.berth_id AND
slot1.row_id + 1 = slot2.row_id
WHERE COALESCE(slot1.slotend, 0) < COALESCE(slot2.slotstart, 30)
ORDER BY port_id, berth_id, gap;
|
/* Replace with your SQL commands */
CREATE TABLE games (
"id" serial NOT NULL,
code text,
currentRound bigint
);
CREATE TABLE answers (
"id" serial NOT NULL,
gameCode text,
author text,
answer text,
round bigint
);
|
CREATE FULLTEXT INDEX ON [HumanResources].[JobCandidate]
([Resume] LANGUAGE 1033)
KEY INDEX [PK_JobCandidate_JobCandidateID]
ON [AW2016FullTextCatalog];
GO
CREATE FULLTEXT INDEX ON [Production].[Document]
([DocumentSummary] LANGUAGE 1033, [Document] TYPE COLUMN [FileExtension] LANGUAGE 1033)
KEY INDEX [PK_Document_DocumentNode]
ON [AW2016FullTextCatalog];
GO
CREATE FULLTEXT INDEX ON [Production].[ProductReview]
([Comments] LANGUAGE 1033)
KEY INDEX [PK_ProductReview_ProductReviewID]
ON [AW2016FullTextCatalog];
|
CREATE TABLE `transfer_tasks` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`subscription_id` bigint(20) unsigned NOT NULL,
`source_id` int(11) unsigned NOT NULL,
`batch_id` bigint(20) unsigned NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `transfer` (`subscription_id`),
KEY `source` (`source_id`),
KEY `batch` (`batch_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_cs;
|
/**
* Author: rellu
* Created: 05.01.2021
*/
SELECT
bh.*, l.*
FROM
`rellu_essentials`.`block_history` bh
INNER JOIN
`rellu_essentials`.`location` l
ON
bh.location_fk = l.id
WHERE
bh.createdby = ?
AND bh.deletedby IS NULL
ORDER BY bh.id DESC
; |
<reponame>roaddee/dulkemot<gh_stars>1-10
INSERT INTO tweb_apbd(`rangkuman`,`berkas_id`,`lembaga_id`, `lembaga_kode`,`pemda_kode`, `wilayah_kode`,`tahun`, `rekening_kode`,`rekening`, `uraian`, `nominal`,`nominal_sebelum`, `nominal_sesudah`, `nominal_perubahan`, `nominal_persen`, `keterangan`, `created_by`, `updated_by`) VALUES
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.26.5.','01.26.5.','BELANJA','1153536170.00','0','1153536170.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.26.5.2.','01.26.5.2.','BELANJA LANGSUNG','1153536170.00','0','1153536170.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.','01.','Program Pelayanan Administrasi Perkantoran','169391800.00','0','169391800.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.26.','01.26.','Penyediaan Jasa dan Peralatan Perkantoran','43603400.00','0','43603400.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.26.5.2.2.','01.26.5.2.2.','Belanja Barang dan Jasa','43603400.00','0','43603400.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.27.','01.27.','Penyediaan Jasa keuangan','40863800.00','0','40863800.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.27.5.2.1.','01.27.5.2.1.','Belanja Pegawai','40800000.00','0','40800000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.27.5.2.2.','01.27.5.2.2.','Belanja Barang dan Jasa','63800.00','0','63800.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.28.','01.28.','Penyediaan Rapat-Rapat, Konsultasi dan Koordinasi','84924600.00','0','84924600.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.01.28.5.2.2.','01.28.5.2.2.','Belanja Barang dan Jasa','84924600.00','0','84924600.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.11.','11.','Program Peningkatan Sarana dan Prasarana Perkantoran','963540270.00','0','963540270.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.11.01.','11.01.','Pengadaan Sarana dan Prasarana Perkantoran','601838900.00','0','601838900.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.11.01.5.2.2.','11.01.5.2.2.','Belanja Barang dan Jasa','10000000.00','0','10000000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.11.01.5.2.3.','11.01.5.2.3.','Belanja Modal','591838900.00','0','591838900.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.11.02.','11.02.','Pemeliharaan Sarana dan Prasarana Perkantoran','361701370.00','0','361701370.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.11.02.5.2.2.','11.02.5.2.2.','Belanja Barang dan Jasa','361701370.00','0','361701370.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.','12.','Program Perencanaan, Pengendalian dan Evaluasi Kinerja','10604100.00','0','10604100.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.01.','12.01.','Penyusunan Perencanaan Kinerja SKPD','5511000.00','0','5511000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.01.5.2.1.','12.01.5.2.1.','Belanja Pegawai','696000.00','0','696000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.01.5.2.2.','12.01.5.2.2.','Belanja Barang dan Jasa','4815000.00','0','4815000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.02.','12.02.','Penyusunan Laporan Keuangan','3140500.00','0','3140500.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.02.5.2.1.','12.02.5.2.1.','Belanja Pegawai','2436000.00','0','2436000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.02.5.2.2.','12.02.5.2.2.','Belanja Barang dan Jasa','704500.00','0','704500.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.03.','12.03.','Pengendalian, Evaluasi dan Pelaporan Kinerja','1952600.00','0','1952600.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.03.5.2.1.','12.03.5.2.1.','Belanja Pegawai','516000.00','0','516000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.12.03.5.2.2.','12.03.5.2.2.','Belanja Barang dan Jasa','1436600.00','0','1436600.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.13.','13.','Program Peningkatan Kapasitas Sumber Daya Manusia SKPD','10000000.00','0','10000000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.13.03.','13.03.','Pendidikan dan Pelatihan Non Formal','10000000.00','0','10000000.00','0','0','','0','0'),
('0','77','35','1.17.01','1.17','3401','2016','1.17.1.17.01.13.03.5.2.2.','13.03.5.2.2.','Belanja Barang dan Jasa','10000000.00','0','10000000.00','0','0','','0','0'),
|
CREATE TABLE [dbo].[hlsystemplategroup](
[id] INT NOT NULL,
[name] NVARCHAR(255) NOT NULL,
[sortorder] INT NOT NULL,
[parentid] INT NOT NULL,
[agentid] INT NOT NULL,
[objectdefname] NVARCHAR(255) NOT NULL,
CONSTRAINT [PK_hlsystemplategroup] PRIMARY KEY CLUSTERED
(
[id] ASC
)
) |
USE [Hotels_DB]
GO
/****** Object: Table [dbo].[Users] Script Date: 07.12.2020 11:38:57 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Users](
[user_id] [int] NOT NULL,
[country_id] [int] NOT NULL,
[phoneNumber_int] [int] NOT NULL,
[email_str] [nvarchar](max) NOT NULL,
[login_str] [nvarchar](max) NOT NULL,
[userName_str] [nvarchar](max) NOT NULL,
[age_int] [int] NOT NULL,
[password_str] [nvarchar](max) NOT NULL,
[permission_int] [int] NOT NULL,
CONSTRAINT [PK_Users_1] PRIMARY KEY CLUSTERED
(
[user_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[Users] WITH CHECK ADD CONSTRAINT [FK_Users_Countries] FOREIGN KEY([country_id])
REFERENCES [dbo].[Countries] ([country_id])
GO
ALTER TABLE [dbo].[Users] CHECK CONSTRAINT [FK_Users_Countries]
GO
|
USE [ORMS]
GO
/****** Object: UserDefinedFunction [dbo].[FN_GET_MODEL_NAME] Script Date: 01/17/2011 10:14:11 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
If Exists (Select * From sysobjects
Where id = object_id(N'[dbo].[FN_GET_MODEL_NAME]')
And OBJECTPROPERTY(id, N'IsScalarFunction') = 1)
Drop FUNCTION [dbo].[FN_GET_MODEL_NAME]
GO
/*
--------------------------------------------------------------------
TITLE : 모델코드로 모델명 조회
DATE : 2010.06.01
CREATOR : FIT
DESCRIPTION :
SELECT dbo.FN_GET_MODEL_NAME('01')
--------------------------------------------------------------------
*/
CREATE FUNCTION [dbo].[FN_GET_MODEL_NAME]
(
@parm_MODEL AS VARCHAR(10) -- 모델코드
)
RETURNS VARCHAR(40) AS
BEGIN
DECLARE @ls_NAME AS VARCHAR(40)
SELECT @ls_NAME = MODEL_NAME
FROM TM_MODEL
WHERE MODEL = @parm_MODEL
IF (@ls_NAME is null)
SET @ls_NAME = ''
RETURN @ls_NAME
END
GO
|
DROP TABLE IF EXISTS "api_listomx_declaraciones_balanzacredito" CASCADE;
CREATE TABLE IF NOT EXISTS "api_listomx_declaraciones_balanzacredito" (
"id" NUMERIC NULL,
"tax" TEXT NULL,
"credit_balance_type" TEXT NULL,
"reduction_tax" TEXT NULL,
"current" BOOL NULL,
"filing" NUMERIC NULL,
"due" DECIMAL NULL,
"origination_id" NUMERIC NULL,
"origination_credit_balance_type" TEXT NULL,
"remainder_due" DECIMAL NULL,
"initial_due" DECIMAL NULL,
"after_reduction_due" DECIMAL NULL,
PRIMARY KEY(id),
FOREIGN KEY(filing) REFERENCES api_listomx_declaraciones_declaracion(id)
); |
-- SPDX-License-Identifier: Apache-2.0
-- Licensed to the Ed-Fi Alliance under one or more agreements.
-- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
-- See the LICENSE and NOTICES files in the project root for more information.
PRINT N'Adding foreign keys to [edfi].[Student]'
GO
ALTER TABLE [edfi].[Student] ADD CONSTRAINT [FK_Student_CitizenshipStatusDescriptor] FOREIGN KEY ([CitizenshipStatusDescriptorId]) REFERENCES [edfi].[CitizenshipStatusDescriptor] ([CitizenshipStatusDescriptorId])
GO
ALTER TABLE [edfi].[Student] ADD CONSTRAINT [FK_Student_CountryDescriptor] FOREIGN KEY ([BirthCountryDescriptorId]) REFERENCES [edfi].[CountryDescriptor] ([CountryDescriptorId])
GO
ALTER TABLE [edfi].[Student] ADD CONSTRAINT [FK_Student_SexDescriptor] FOREIGN KEY ([BirthSexDescriptorId]) REFERENCES [edfi].[SexDescriptor] ([SexDescriptorId])
GO
ALTER TABLE [edfi].[Student] ADD CONSTRAINT [FK_Student_StateAbbreviationDescriptor] FOREIGN KEY ([BirthStateAbbreviationDescriptorId]) REFERENCES [edfi].[StateAbbreviationDescriptor] ([StateAbbreviationDescriptorId])
GO
|
{%- macro timestamp_from_parts(date_field, time_field) -%}
{%- if target.type == 'snowflake' -%}
timestamp_from_parts({{ date_field }}, {{ time_field }})
{%- elif target.type == 'sqlserver' -%}
datetimefromparts(
datepart(year, {{ date_field }}),
datepart(month, {{ date_field }}),
datepart(day, {{ date_field }}),
datepart(hour, {{ time_field }}),
datepart(minute, {{ time_field }}),
datepart(second, {{ time_field }}),
datepart(millisecond, {{ time_field }})
)
{%- endif -%}
{%- endmacro -%}
|
<filename>src/main/resources/data-postgresql.sql
INSERT INTO public."user"(user_id, user_full_name) VALUES (0, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (1, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (2, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (3, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (4, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (5, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (6, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (7, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (8, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (9, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (10, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (11, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (12, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (13, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (14, '<NAME>');
INSERT INTO public."user"(user_id, user_full_name) VALUES (15, '<NAME>');
INSERT INTO public."group_product"(group_product_id, group_product_name) VALUES (0, 'LEKARSTVA');
INSERT INTO public."group_product"(group_product_id, group_product_name) VALUES (1, 'ALCOGOL');
INSERT INTO public."group_product"(group_product_id, group_product_name) VALUES (2, 'TABAK');
INSERT INTO public."group_product"(group_product_id, group_product_name) VALUES (3, 'IGRY');
INSERT INTO public."group_product"(group_product_id, group_product_name) VALUES (4, 'ODEJDA');
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (0, 'ASPIRIN', 0, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (1, 'NASHATYR', 0, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (2, 'WISKEY', 1, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (3, 'VODKA', 1, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (4, 'SIGARETTE', 2, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (5, 'SIGARY', 2, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (6, 'GTA', 3, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (7, 'RDR', 3, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (8, 'PUMA', 4, null);
INSERT INTO public.product(product_id, product_name, group_product_id, order_position_id) VALUES (9, 'NIKE', 4, null);
INSERT INTO public.point_of_delivery(point_of_delivery_id, point_of_delivery_address) VALUES (0, 'Lebedeva');
INSERT INTO public.point_of_delivery(point_of_delivery_id, point_of_delivery_address) VALUES (1, 'Chernyshevskogo');
INSERT INTO public.point_of_delivery(point_of_delivery_id, point_of_delivery_address) VALUES (2, 'Uralskaya');
INSERT INTO public.point_of_delivery(point_of_delivery_id, point_of_delivery_address) VALUES (3, 'Sibirskaya');
INSERT INTO public.point_of_delivery(point_of_delivery_id, point_of_delivery_address) VALUES (4, 'GeroevHasana');
|
<reponame>guptashubham101/app1
# --- Created by Ebean DDL
# To stop Ebean DDL generation, remove this comment and start using Evolutions
# --- !Ups
create table book_issued (
id serial not null,
date_of_submission timestamp,
date_of_issue timestamp,
is_submitted boolean,
books_id integer,
student_id integer,
library_admin_id integer,
constraint pk_book_issued primary key (id))
;
create table books (
id serial not null,
quantity integer,
name varchar(255),
author varchar(255),
domain varchar(255),
isbn varchar(255),
is_issued boolean,
availability boolean,
constraint pk_books primary key (id))
;
create table fine (
id serial not null,
is_paid boolean,
days integer,
amount integer,
book_issued_id integer,
constraint pk_fine primary key (id))
;
create table library_admin (
id serial not null,
email varchar(255),
name varchar(255),
password varchar(255),
constraint pk_library_admin primary key (id))
;
create table session (
id serial not null,
session_id varchar(255),
is_active boolean,
user_id integer,
created_on timestamp not null,
updated_on timestamp not null,
constraint pk_session primary key (id))
;
create table student (
id serial not null,
semester integer,
year integer,
student_name varchar(255),
roll_number varchar(255),
student_email varchar(255),
password varchar(255),
branch varchar(255),
created_on timestamp not null,
constraint pk_student primary key (id))
;
alter table book_issued add constraint fk_book_issued_books_1 foreign key (books_id) references books (id);
create index ix_book_issued_books_1 on book_issued (books_id);
alter table book_issued add constraint fk_book_issued_student_2 foreign key (student_id) references student (id);
create index ix_book_issued_student_2 on book_issued (student_id);
alter table book_issued add constraint fk_book_issued_libraryAdmin_3 foreign key (library_admin_id) references library_admin (id);
create index ix_book_issued_libraryAdmin_3 on book_issued (library_admin_id);
alter table fine add constraint fk_fine_bookIssued_4 foreign key (book_issued_id) references book_issued (id);
create index ix_fine_bookIssued_4 on fine (book_issued_id);
# --- !Downs
drop table if exists book_issued cascade;
drop table if exists books cascade;
drop table if exists fine cascade;
drop table if exists library_admin cascade;
drop table if exists session cascade;
drop table if exists student cascade;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.