sql
stringlengths
6
1.05M
<reponame>SECURED-FP7/secured-mobility-ned /* Devices */ INSERT INTO devices ( /* 1 */ value, product, created ) SELECT 'aabbccddeeff11223344556677889900', id, 1372330615 FROM products WHERE name = 'Debian DEBIAN_VERSION x86_64'; /* Groups Members */ INSERT INTO groups_members ( group_id, device_id ) VALUES ( 5, 1 ); /* Identities */ INSERT INTO identities ( type, value ) VALUES ( /* <EMAIL> */ 4, X'64617665407374726f6e677377616e2e6f7267' ); /* Sessions */ INSERT INTO sessions ( time, connection, identity, device, product, rec ) SELECT NOW, 1, 1, 1, id, 0 FROM products WHERE name = 'Debian DEBIAN_VERSION x86_64'; /* Results */ INSERT INTO results ( session, policy, rec, result ) VALUES ( 1, 1, 0, 'processed 355 packages: 0 not updated, 0 blacklisted, 4 ok, 351 not found' ); /* Enforcements */ UPDATE enforcements SET rec_fail = 2, rec_noresult = 2 WHERE id = 3;
<reponame>MCZbase/DDL CREATE INDEX "IDX_FLAT_ORDER" ON "FLAT" ("PHYLORDER")
<reponame>jskele/lib-dao SELECT * FROM test_table where string_column = :stringColumn
------------------------------------- -- Versions ------------------------------------- CREATE TABLE rsk_schema_version ( version_key VARCHAR(32) NOT NULL, version_value VARCHAR(255) NOT NULL ); INSERT INTO rsk_schema_version (version_key, version_value) VALUES ('schema_patch', '52'); CREATE TABLE rsk_hibernate_sequence ( next_val numeric(19,0) ) -- CREATE SEQUENCE rsk_batch_seq -- START WITH 1000 INCREMENT BY 1 NO CYCLE; CREATE TABLE rsk_batch_seq ( SeqID INT identity(1000,1) PRIMARY KEY, SeqVal VARCHAR(1) ) create table rsk_compute_host ( id BIGINT not null, host_name VARCHAR(255) not null, primary key (id), constraint rsk_chk_uq_compute_host unique (host_name) ); create table rsk_compute_node ( id BIGINT not null, compute_host_id BIGINT not null, node_name VARCHAR(255) not null, primary key (id), constraint rsk_fk_cmpt_node2cmpt_host foreign key (compute_host_id) references rsk_compute_host (id), constraint rsk_chk_uq_compute_node unique (node_name) ); create table rsk_computation_target ( id BIGINT not null, type VARCHAR(255) not null, id_scheme VARCHAR(255), id_value VARCHAR(255), id_version VARCHAR(255), primary key (id), constraint rsk_chk_uq_computation_target unique (type, id_scheme, id_value, id_version) ); create table rsk_target_property ( id bigint not null, target_id bigint not null, property_key varchar(255), property_value varchar(255), primary key (id), constraint rsk_fk_trg_prop2target foreign key (target_id) references rsk_computation_target (id) ); create table rsk_function_unique_id ( id BIGINT not null, unique_id VARCHAR(255) not null, primary key (id), constraint rsk_chk_uq_function_unique_id unique (unique_id) ); ------------------------------------- -- LiveData inputs ------------------------------------- create table rsk_live_data_snapshot ( id BIGINT not null, base_uid_scheme VARCHAR(255) not null, base_uid_value VARCHAR(255) not null, base_uid_version VARCHAR(255), primary key (id), constraint rsk_chk_uq_base_uid unique (base_uid_scheme, base_uid_value, base_uid_version) ); create table rsk_live_data_snapshot_entry ( id BIGINT not null, snapshot_id BIGINT not null, computation_target_id BIGINT not null, name VARCHAR(255) not null, value double precision, primary key (id), constraint rsk_fk_snpsht_entry2snpsht foreign key (snapshot_id) references rsk_live_data_snapshot (id), constraint rsk_fk_spsht_entry2cmp_target foreign key (computation_target_id) references rsk_computation_target (id) ); create table rsk_live_data_snapshot_entry_insertion ( id BIGINT not null, snapshot_id BIGINT not null, computation_target_id BIGINT not null, name VARCHAR(255) not null, value double precision, primary key (id) ); ------------------------------------- -- Risk run ------------------------------------- create table rsk_run ( id BIGINT not null, version_correction VARCHAR(255) not null, viewdef_scheme VARCHAR(255) NOT NULL, viewdef_value VARCHAR(255) NOT NULL, viewdef_version VARCHAR(255), cycle_name VARCHAR(255), live_data_snapshot_id BIGINT not null, create_instant DATETIME2(6) not null, start_instant DATETIME2(6) not null, -- can be different from create_instant if is run is restarted end_instant DATETIME2(6), valuation_time DATETIME2(6) not null, num_restarts int not null, complete bit not null, primary key (id), constraint rsk_fk_run2live_data_snapshot foreign key (live_data_snapshot_id) references rsk_live_data_snapshot (id), constraint rsk_chk_uq_run unique (id, version_correction, viewdef_scheme, viewdef_value, viewdef_version, live_data_snapshot_id) ); create table rsk_calculation_configuration ( id BIGINT not null, run_id BIGINT not null, name VARCHAR(255) not null, primary key (id), constraint rsk_fk_calc_conf2run foreign key (run_id) references rsk_run (id), constraint rsk_chk_uq_calc_conf unique (run_id, name) ); -- Properties should be filled once only. If already there, use existing value. -- -- Example properties: -- - PositionMasterTime = 20100615170000 -- - GlobalRandomSeed = 54321 create table rsk_run_property ( id BIGINT not null, run_id BIGINT not null, property_key VARCHAR(255) not null, property_value VARCHAR(2000) not null, -- varchar(255) not enough primary key (id), constraint rsk_fk_run_property2run foreign key (run_id) references rsk_run (id) ); create table rsk_run_status ( id BIGINT not null, run_id BIGINT not null, calculation_configuration_id BIGINT not null, computation_target_id BIGINT not null, status VARCHAR(255) not null, constraint rsk_fk_run_status2calc_conf foreign key (calculation_configuration_id) references rsk_calculation_configuration (id), constraint rsk_fk_run_status2comp_tgt foreign key (computation_target_id) references rsk_computation_target (id), constraint rsk_chk_uq_run_status unique (run_id, calculation_configuration_id, computation_target_id) ); ------------------------------------- -- Risk ------------------------------------- create table rsk_value_specification ( id BIGINT not null, synthetic_form VARCHAR(1024) not null, primary key (id), constraint rsk_chk_uq_value_specification unique (synthetic_form) ); create table rsk_value_requirement ( id BIGINT not null, synthetic_form VARCHAR(1024) not null, specification_id BIGINT not null, primary key (id), constraint rsk_chk_uq_value_requirement unique (specification_id, synthetic_form) ); create table rsk_value ( id BIGINT not null, calculation_configuration_id BIGINT not null, value_specification_id BIGINT not null, function_unique_id BIGINT not null, computation_target_id BIGINT not null, run_id BIGINT not null, -- shortcut value double precision not null, name VARCHAR(255), eval_instant DATETIME2(6) not null, compute_node_id BIGINT not null, primary key (id), -- performance implications of these requirement? constraint rsk_fk_value2calc_conf foreign key (calculation_configuration_id) references rsk_calculation_configuration (id), constraint rsk_fk_value2run foreign key (run_id) references rsk_run (id), constraint rsk_fk_value2value_specification foreign key (value_specification_id) references rsk_value_specification (id), constraint rsk_fk_value2function_id foreign key (function_unique_id) references rsk_function_unique_id (id), constraint rsk_fk_value2comp_target foreign key (computation_target_id) references rsk_computation_target (id), constraint rsk_fk_value2compute_node foreign key (compute_node_id) references rsk_compute_node (id), constraint rsk_chk_uq_value unique (run_id, calculation_configuration_id, name, value_specification_id, computation_target_id) ); create table rsk_compute_failure ( id BIGINT not null, function_id VARCHAR(255) not null, exception_class VARCHAR(255) not null, exception_msg VARCHAR(255) not null, stack_trace VARCHAR(2000) not null, -- first 2000 chars. not including msg primary key (id), constraint rsk_chk_uq_compute_failure unique (function_id, exception_class, exception_msg, stack_trace) ); -- how to aggregate risk failures? create table rsk_failure ( id BIGINT not null, calculation_configuration_id BIGINT not null, name VARCHAR(255), value_specification_id BIGINT not null, function_unique_id BIGINT not null, computation_target_id BIGINT not null, run_id BIGINT not null, -- shortcut eval_instant DATETIME2(6) not null, compute_node_id BIGINT not null, primary key (id), constraint rsk_fk_failure2calc_conf foreign key (calculation_configuration_id) references rsk_calculation_configuration (id), constraint rsk_fk_failure2run foreign key (run_id) references rsk_run (id), constraint rsk_fk_failure2value_specification foreign key (value_specification_id) references rsk_value_specification (id), constraint rsk_fk_failure2function_id foreign key (function_unique_id) references rsk_function_unique_id (id), constraint rsk_fk_failure2com_target foreign key (computation_target_id) references rsk_computation_target (id), constraint rsk_fk_failure2node foreign key (compute_node_id) references rsk_compute_node (id), constraint rsk_chk_uq_failure unique (run_id, calculation_configuration_id, name, value_specification_id, computation_target_id) ); create table rsk_failure_reason ( id BIGINT not null, rsk_failure_id BIGINT not null, compute_failure_id BIGINT not null, primary key (id), constraint rsk_fk_fail_reason2failure foreign key (rsk_failure_id) references rsk_failure (id) on delete cascade, constraint rsk_fk_fail_reason2cmpt_fail foreign key (compute_failure_id) references rsk_compute_failure (id), constraint rsk_chk_uq_failure_reason unique (rsk_failure_id, compute_failure_id) );
use testdata; DROP TABLE IF EXISTS `nyc_open_data`; CREATE TABLE IF NOT EXISTS `nyc_open_data` ( UniqueKey bigint(255), `CreatedDate` varchar(255), `ClosedDate` varchar(255), Agency varchar(255), AgencyName varchar(255), ComplaintType varchar(255), Descriptor varchar(255), LocationType varchar(255), IncidentZip varchar(255), IncidentAddress varchar(255), StreetName varchar(255), CrossStreet1 varchar(255), CrossStreet2 varchar(255), IntersectionStreet1 varchar(255), IntersectionStreet2 varchar(255), AddressType varchar(255), City varchar(255), Landmark varchar(255), FacilityType varchar(255), Status varchar(255), `DueDate` varchar(255), ResolutionDescription varchar(2048), `ResolutionActionUpdatedDate` varchar(255), CommunityBoard varchar(255), Borough varchar(255), XCoordinateStatePlane varchar(255), YCoordinateStatePlane varchar(255), ParkFacilityName varchar(255), ParkBorough varchar(255), SchoolName varchar(255), SchoolNumber varchar(255), SchoolRegion varchar(255), SchoolCode varchar(255), SchoolPhoneNumber varchar(255), SchoolAddress varchar(255), SchoolCity varchar(255), SchoolState varchar(255), SchoolZip varchar(255), SchoolNotFound varchar(255), SchoolOrCitywideComplaint varchar(255), VehicleType varchar(255), TaxiCompanyBorough varchar(255), TaxiPickUpLocation varchar(255), BridgeHighwayName varchar(255), BridgeHighwayDirection varchar(255), RoadRamp varchar(255), BridgeHighwaySegment varchar(255), GarageLotName varchar(255), FerryDirection varchar(255), FerryTerminalName varchar(255), Latitude varchar(255), Longitude varchar(255), Location varchar(255) ); LOAD DATA INFILE '/var/lib/mysql-files/311_Service_Requests_from_2015.csv' INTO TABLE nyc_open_data FIELDS OPTIONALLY ENCLOSED BY '"' TERMINATED BY ',' IGNORE 1 LINES; UPDATE nyc_open_data SET CreatedDate = STR_TO_DATE(CreatedDate, '%m/%d/%Y %r') WHERE CreatedDate <> ''; UPDATE nyc_open_data SET ClosedDate = STR_TO_DATE(ClosedDate, '%m/%d/%Y %r') WHERE ClosedDate <> ''; UPDATE nyc_open_data SET DueDate = STR_TO_DATE(DueDate, '%m/%d/%Y %r') WHERE DueDate <> ''; UPDATE nyc_open_data SET ResolutionActionUpdatedDate = STR_TO_DATE(ResolutionActionUpdatedDate, '%m/%d/%Y %r') WHERE ResolutionActionUpdatedDate <> ''; UPDATE nyc_open_data SET CreatedDate=null WHERE CreatedDate = ''; UPDATE nyc_open_data SET ClosedDate=null WHERE ClosedDate = ''; UPDATE nyc_open_data SET DueDate=null WHERE DueDate = ''; UPDATE nyc_open_data SET ResolutionActionUpdatedDate=null WHERE ResolutionActionUpdatedDate = ''; ALTER TABLE nyc_open_data modify CreatedDate datetime NULL; ALTER TABLE nyc_open_data modify ClosedDate datetime NULL; ALTER TABLE nyc_open_data modify DueDate datetime NULL; ALTER TABLE nyc_open_data modify ResolutionActionUpdatedDate datetime NULL; ALTER TABLE `nyc_open_data` ADD INDEX `IX_ComplaintType` (`ComplaintType`); ALTER TABLE `nyc_open_data` ADD INDEX `IX_CreatedDate` (`CreatedDate`); ALTER TABLE `nyc_open_data` ADD INDEX `IX_LocationType` (`LocationType`); ALTER TABLE `nyc_open_data` ADD INDEX `IX_AgencyName` (`AgencyName`); ALTER TABLE `nyc_open_data` ADD INDEX `IX_City` (`City`); SYSTEM rm /var/lib/mysql-files/311_Service_Requests_from_2015.csv
-- Name: SeriesInHierarchyBySeriesExtendedFurther -- Schema: posda_files -- Columns: ['collection', 'site', 'patient_id', 'study_instance_uid', 'study_date', 'study_description', 'series_instance_uid', 'series_description', 'series_date', 'modality', 'dicom_file_type', 'num_files'] -- Args: ['series_instance_uid'] -- Tags: ['by_series_instance_uid', 'posda_files', 'sops'] -- Description: Get Collection, Site, Patient, Study Hierarchy in which series resides select distinct project_name as collection, site_name as site, patient_id, study_instance_uid, study_date, study_description, series_instance_uid, series_date, series_description, modality, dicom_file_type, count(distinct file_id) as num_files from file_patient natural join file_study natural join file_series natural join dicom_file natural join ctp_file where file_id in ( select distinct file_id from file_series natural join ctp_file where series_instance_uid = ? and visibility is null ) group by collection, site, patient_id, study_instance_uid, study_date, study_description, series_instance_uid, series_date, series_description, modality, dicom_file_type order by project_name, site_name, patient_id, study_instance_uid, series_instance_uid
CREATE TABLE bttest_a(id int8); CREATE TABLE bttest_b(id int8); CREATE TABLE bttest_multi(id int8, data int8); CREATE TABLE delete_test_table (a bigint, b bigint, c bigint, d bigint); -- Stabalize tests ALTER TABLE bttest_a SET (autovacuum_enabled = false); ALTER TABLE bttest_b SET (autovacuum_enabled = false); ALTER TABLE bttest_multi SET (autovacuum_enabled = false); ALTER TABLE delete_test_table SET (autovacuum_enabled = false); INSERT INTO bttest_a SELECT * FROM generate_series(1, 100000); INSERT INTO bttest_b SELECT * FROM generate_series(100000, 1, -1); INSERT INTO bttest_multi SELECT i, i%2 FROM generate_series(1, 100000) as i; CREATE INDEX bttest_a_idx ON bttest_a USING btree (id); CREATE INDEX bttest_b_idx ON bttest_b USING btree (id); CREATE UNIQUE INDEX bttest_multi_idx ON bttest_multi USING btree (id) INCLUDE (data); CREATE ROLE bttest_role; -- verify permissions are checked (error due to function not callable) SET ROLE bttest_role; SELECT bt_index_check('bttest_a_idx'::regclass); SELECT bt_index_parent_check('bttest_a_idx'::regclass); RESET ROLE; -- we, intentionally, don't check relation permissions - it's useful -- to run this cluster-wide with a restricted account, and as tested -- above explicit permission has to be granted for that. GRANT EXECUTE ON FUNCTION bt_index_check(regclass) TO bttest_role; GRANT EXECUTE ON FUNCTION bt_index_parent_check(regclass) TO bttest_role; GRANT EXECUTE ON FUNCTION bt_index_check(regclass, boolean) TO bttest_role; GRANT EXECUTE ON FUNCTION bt_index_parent_check(regclass, boolean) TO bttest_role; SET ROLE bttest_role; SELECT bt_index_check('bttest_a_idx'); SELECT bt_index_parent_check('bttest_a_idx'); RESET ROLE; -- verify plain tables are rejected (error) SELECT bt_index_check('bttest_a'); SELECT bt_index_parent_check('bttest_a'); -- verify non-existing indexes are rejected (error) SELECT bt_index_check(17); SELECT bt_index_parent_check(17); -- verify wrong index types are rejected (error) BEGIN; CREATE INDEX bttest_a_brin_idx ON bttest_a USING brin(id); SELECT bt_index_parent_check('bttest_a_brin_idx'); ROLLBACK; -- normal check outside of xact SELECT bt_index_check('bttest_a_idx'); -- more expansive tests SELECT bt_index_check('bttest_a_idx', true); SELECT bt_index_parent_check('bttest_b_idx', true); BEGIN; SELECT bt_index_check('bttest_a_idx'); SELECT bt_index_parent_check('bttest_b_idx'); -- make sure we don't have any leftover locks SELECT * FROM pg_locks WHERE relation = ANY(ARRAY['bttest_a', 'bttest_a_idx', 'bttest_b', 'bttest_b_idx']::regclass[]) AND pid = pg_backend_pid(); COMMIT; -- normal check outside of xact for index with included columns SELECT bt_index_check('bttest_multi_idx'); -- more expansive test for index with included columns SELECT bt_index_parent_check('bttest_multi_idx', true); -- repeat expansive test for index built using insertions TRUNCATE bttest_multi; INSERT INTO bttest_multi SELECT i, i%2 FROM generate_series(1, 100000) as i; SELECT bt_index_parent_check('bttest_multi_idx', true); -- -- Test for multilevel page deletion/downlink present checks -- INSERT INTO delete_test_table SELECT i, 1, 2, 3 FROM generate_series(1,80000) i; ALTER TABLE delete_test_table ADD PRIMARY KEY (a,b,c,d); DELETE FROM delete_test_table WHERE a > 40000; VACUUM delete_test_table; DELETE FROM delete_test_table WHERE a > 10; VACUUM delete_test_table; SELECT bt_index_parent_check('delete_test_table_pkey', true); -- -- BUG #15597: must not assume consistent input toasting state when forming -- tuple. Bloom filter must fingerprint normalized index tuple representation. -- CREATE TABLE toast_bug(buggy text); ALTER TABLE toast_bug ALTER COLUMN buggy SET STORAGE plain; -- pg_attribute entry for toasty.buggy will have plain storage: CREATE INDEX toasty ON toast_bug(buggy); -- Whereas pg_attribute entry for toast_bug.buggy now has extended storage: ALTER TABLE toast_bug ALTER COLUMN buggy SET STORAGE extended; -- Insert compressible heap tuple (comfortably exceeds TOAST_TUPLE_THRESHOLD): INSERT INTO toast_bug SELECT repeat('a', 2200); -- Should not get false positive report of corruption: SELECT bt_index_check('toasty', true); -- cleanup DROP TABLE bttest_a; DROP TABLE bttest_b; DROP TABLE bttest_multi; DROP TABLE delete_test_table; DROP TABLE toast_bug; DROP OWNED BY bttest_role; -- permissions DROP ROLE bttest_role;
<filename>sql/cbor.sql SET client_min_messages TO warning; SET log_min_messages TO warning; -- Create the user-defined type for CBOR CREATE FUNCTION cbor_in(cstring) RETURNS cbor AS 'cbor' LANGUAGE C IMMUTABLE STRICT; CREATE FUNCTION cbor_out(cbor) RETURNS cstring AS 'cbor' LANGUAGE C IMMUTABLE STRICT; CREATE FUNCTION cbor_encode(cbor) RETURNS bytea AS 'cbor' LANGUAGE C IMMUTABLE STRICT; CREATE FUNCTION cbor_decode(bytea) RETURNS cbor AS 'cbor' LANGUAGE C IMMUTABLE STRICT; CREATE FUNCTION cbor_recv(internal) RETURNS cbor AS 'cbor' LANGUAGE C IMMUTABLE STRICT; CREATE TYPE cbor ( INTERNALLENGTH = variable, INPUT = cbor_in, OUTPUT = cbor_out, RECEIVE = cbor_recv, SEND = cbor_encode, ALIGNMENT = double ); COMMENT ON TYPE cbor IS 'Concise Binary Object Representation'; -- -- External C-functions for R-tree methods -- -- Comparison methods CREATE FUNCTION cbor_eq(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_eq(cbor, cbor) IS 'same as'; CREATE FUNCTION cbor_ne(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_ne(cbor, cbor) IS 'different'; CREATE FUNCTION cbor_lt(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_lt(cbor, cbor) IS 'lower than'; CREATE FUNCTION cbor_gt(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_gt(cbor, cbor) IS 'greater than'; CREATE FUNCTION cbor_le(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_le(cbor, cbor) IS 'lower than or equal to'; CREATE FUNCTION cbor_ge(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_ge(cbor, cbor) IS 'greater than or equal to'; CREATE FUNCTION cbor_cmp(cbor, cbor) RETURNS int4 AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_cmp(cbor, cbor) IS 'btree comparison function'; CREATE FUNCTION cbor_contains(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_contains(cbor, cbor) IS 'contains'; CREATE FUNCTION cbor_contained(cbor, cbor) RETURNS bool AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_contained(cbor, cbor) IS 'contained in'; -- -- OPERATORS -- CREATE OPERATOR < ( LEFTARG = cbor, RIGHTARG = cbor, PROCEDURE = cbor_lt, COMMUTATOR = '>', NEGATOR = '>=', RESTRICT = scalarltsel, JOIN = scalarltjoinsel ); CREATE OPERATOR > ( LEFTARG = cbor, RIGHTARG = cbor, PROCEDURE = cbor_gt, COMMUTATOR = '<', NEGATOR = '<=', RESTRICT = scalargtsel, JOIN = scalargtjoinsel ); CREATE OPERATOR <= ( LEFTARG = cbor, RIGHTARG = cbor, PROCEDURE = cbor_le, COMMUTATOR = '>=', NEGATOR = '>', RESTRICT = scalarltsel, JOIN = scalarltjoinsel ); CREATE OPERATOR >= ( LEFTARG = cbor, RIGHTARG = cbor, PROCEDURE = cbor_ge, COMMUTATOR = '<=', NEGATOR = '<', RESTRICT = scalargtsel, JOIN = scalargtjoinsel ); CREATE OPERATOR = ( LEFTARG = cbor, RIGHTARG = cbor, PROCEDURE = cbor_eq, COMMUTATOR = '=', NEGATOR = '<>', RESTRICT = eqsel, JOIN = eqjoinsel, MERGES, HASHES ); CREATE OPERATOR <> ( LEFTARG = cbor, RIGHTARG = cbor, PROCEDURE = cbor_ne, COMMUTATOR = '<>', NEGATOR = '=', RESTRICT = neqsel, JOIN = neqjoinsel ); -- Create the operator classes for indexing CREATE OPERATOR CLASS cbor_ops DEFAULT FOR TYPE cbor USING btree AS OPERATOR 1 < , OPERATOR 2 <= , OPERATOR 3 = , OPERATOR 4 >= , OPERATOR 5 > , FUNCTION 1 cbor_cmp(cbor, cbor); -- hash support CREATE FUNCTION cbor_hash(cbor) RETURNS int4 AS 'cbor' LANGUAGE C IMMUTABLE STRICT; COMMENT ON FUNCTION cbor_hash(cbor) IS 'cbor hash function'; CREATE OPERATOR CLASS hash_cbor_ops DEFAULT FOR TYPE cbor USING hash AS OPERATOR 1 = , FUNCTION 1 cbor_hash(cbor);
-- @author balasr3 -- @description TPC-H query20 -- @created 2012-07-26 22:04:56 -- @modified 2012-07-26 22:04:56 -- @tags orca select s_name, s_address from supplier, nation where s_suppkey in( select ps_suppkey from partsupp where ps_partkey in ( select p_partkey from part where p_name like 'antique%' ) and ps_availqty > ( select 0.5 * sum(l_quantity) from lineitem where l_partkey = ps_partkey and l_suppkey = ps_suppkey and l_shipdate >= date '1994-01-01' and l_shipdate < date '1994-01-01' + interval '1 year' ) ) and s_nationkey = n_nationkey and n_name = 'GERMANY' order by s_name;
<gh_stars>0 ALTER TABLE `leave_apply` ADD `la_upfile` VARCHAR(255) NULL AFTER `la_rejres`;
<reponame>cscl-git/digit-bpa<gh_stars>0 update eg_action set url = '/transactionsummary/ajax/searchTransactionSummariesForNonSubledger' , name = 'SearchTransactionSummariesForNonSubledger' where name = 'Ajax Search'; Insert into EG_ACTION (id, name, url, queryparams, parentmodule, ordernumber, displayname, enabled, contextroot, version, createdby, createddate, lastmodifiedby, lastmodifieddate, application) values (nextval('seq_eg_action'),'SearchTransactionSummariesForSubledger','/transactionsummary/ajax/searchTransactionSummariesForSubledger',null,309,null,'SearchTransactionSummariesForSubledger','false','EGF',0,1,current_date,1, current_date,(select id from eg_module where name = 'EGF' and parentmodule is null)); insert into eg_roleaction (roleid,actionid) values ((select id from eg_role where name='Super User'), (select id from eg_action where name = 'SearchTransactionSummariesForSubledger')); insert into eg_roleaction (roleid,actionid) values ((select id from eg_role where name='Financial Administrator'), (select id from eg_action where name = 'SearchTransactionSummariesForSubledger')); CREATE UNIQUE INDEX transactionsummary_unique_check ON transactionsummary (glcodeid, accountdetailtypeid,accountdetailkey,financialyearid,fundid,functionid,departmentid);
<reponame>Civil-Service-Human-Resources/lpg-learner-record CREATE TABLE `notification` ( `id` bigint NOT NULL AUTO_INCREMENT, `course_id` varchar(50), `identity_uid` varchar(50) NOT NULL, `sent` datetime NOT NULL, `type` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `module_record` ( `id` bigint NOT NULL AUTO_INCREMENT, `module_id` varchar(50) NOT NULL, `event_id` varchar(50), `state` varchar(15), `result` varchar(10), `score` varchar(50), `rated` tinyint(1), `completion_date` datetime, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `course_record` ( `course_id` varchar(50) NOT NULL, `user_id` varchar(50) NOT NULL, `state` varchar(15), `preference` varchar(15), `profession` varchar(255), `department` varchar(255), `last_updated` datetime, PRIMARY KEY (`course_id`, `user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `course_record_module_records` ( `course_record_course_id` varchar(50) NOT NULL, `course_record_user_id` varchar(50) NOT NULL, `module_records_id` bigint NOT NULL, PRIMARY KEY (`course_record_course_id`,`course_record_user_id`,`module_records_id`), KEY `FK_course_record_module_records_course_record_course_id` (`course_record_course_id`), KEY `FK_course_record_module_records_course_record_user_id` (`course_record_user_id`), KEY `FK_course_record_module_records_module_records` (`module_records_id`), CONSTRAINT `FK_course_record_module_records_course_record_id` FOREIGN KEY (`course_record_course_id`,`course_record_user_id`) REFERENCES `course_record` (`course_id`,`user_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_course_record_module_records_module_records` FOREIGN KEY (`module_records_id`) REFERENCES `module_record` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
<filename>docker/dev/postgres-keycloak-setup.sql<gh_stars>0 CREATE DATABASE keycloak WITH ENCODING UTF8; CREATE USER keycloak WITH PASSWORD 'password'; ALTER DATABASE keycloak OWNER TO keycloak; \c keycloak CREATE SCHEMA keycloak; ALTER SCHEMA keycloak OWNER TO keycloak;
<reponame>fouziachowdhury/LoginWithCI<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 06, 2017 at 04:20 PM -- Server version: 10.1.26-MariaDB -- PHP Version: 7.1.9 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: `loginwithci` -- -- -------------------------------------------------------- -- -- Table structure for table `member` -- CREATE TABLE `member` ( `id` int(11) NOT NULL, `firstName` varchar(255) NOT NULL, `lastName` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `created` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `member` -- INSERT INTO `member` (`id`, `firstName`, `lastName`, `email`, `password`, `created`) VALUES (1, 'Fouzia', 'Chowdhury', '<EMAIL>', '<PASSWORD>', '2017-10-06'), (2, 'gggg', 'dddd', '<EMAIL>', '<PASSWORD>', '2017-10-06'), (3, 'diya', 'mahin', '<EMAIL>', '<PASSWORD>', '2017-10-06'), (4, 'vbvbv', 'mahin', '<EMAIL>', '<PASSWORD>', '2017-10-06'); -- -- Indexes for dumped tables -- -- -- Indexes for table `member` -- ALTER TABLE `member` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `member` -- ALTER TABLE `member` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; 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>public/_db_eliminar/db.sql CREATE TABLE ma_empresa ( id_empresa INTEGER PRIMARY KEY AUTO_INCREMENT, created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME DEFAULT NULL, st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', cod_entidad VARCHAR(15) NULL, CHECK (st_vigente in ('Vigente','Retirado')) ); CREATE TABLE ma_entidad ( cod_entidad VARCHAR(15) NOT NULL, des_nombre_1 VARCHAR(50) NOT NULL, des_nombre_2 VARCHAR(50) NULL, des_nombre_3 VARCHAR(50) NULL, tp_documento VARCHAR(3) NOT NULL, st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME DEFAULT NULL, CHECK (st_vigente in ('Vigente','Retirado')) ); ALTER TABLE ma_entidad ADD PRIMARY KEY (cod_entidad); CREATE TABLE ma_menu ( id_item INTEGER PRIMARY KEY AUTO_INCREMENT, des_nombre VARCHAR(30) NOT NULL, st_vigente VARCHAR(15) NOT NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME DEFAULT NULL, id_ancestro INTEGER NULL, des_url VARCHAR(30) NOT NULL, CHECK (st_vigente in ('Vigente','Retirado')) ); CREATE TABLE ma_usuarios ( id_usuario INTEGER AUTO_INCREMENT, des_alias VARCHAR(30) NOT NULL, des_email VARCHAR(100) NOT NULL, des_telefono VARCHAR(15) NULL, tp_usuario CHAR NOT NULL default 'U', st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', password VARCHAR(200) NOT NULL, remember_token VARCHAR(200) NULL, created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME DEFAULT NULL, fe_ingreso DATETIME NULL, st_verifica_mail CHAR NOT NULL, fe_ultimo_acceso DATETIME NULL, cod_entidad VARCHAR(15) NULL, id_empresa INTEGER NOT NULL, CHECK (st_vigente in ('Vigente','Retirado')), CHECK (tp_usuario in ('U','S','I')), primary key (id_usuario,id_empresa) ); CREATE TABLE sys_permisos ( id_item INTEGER NOT NULL, st_habilitado CHAR NOT NULL DEFAULT 'S', st_vigente VARCHAR(15) NOT NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME DEFAULT NULL, id_usuario INTEGER NOT NULL, id_empresa INTEGER NOT NULL, CHECK (st_vigente in ('Vigente','Retirado')), PRIMARY KEY (id_usuario, id_empresa, id_item) ); ALTER TABLE ma_empresa ADD FOREIGN KEY R_1 (cod_entidad) REFERENCES ma_entidad (cod_entidad); ALTER TABLE ma_usuarios ADD FOREIGN KEY R_2 (cod_entidad) REFERENCES ma_entidad (cod_entidad); ALTER TABLE ma_usuarios ADD FOREIGN KEY R_3 (id_empresa) REFERENCES ma_empresa (id_empresa); ALTER TABLE sys_permisos ADD FOREIGN KEY R_6 (id_usuario, id_empresa) REFERENCES ma_usuarios (id_usuario, id_empresa); ALTER TABLE sys_permisos ADD FOREIGN KEY R_7 (id_item) REFERENCES ma_menu (id_item); -- 02-09-2018 CREATE TABLE us_usuario_puesto ( st_vigente VARCHAR(10) NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, id_usuario INTEGER NOT NULL, id_empresa INTEGER NOT NULL, id_puesto INTEGER NOT NULL, primary key (id_usuario, id_empresa, id_puesto) ); CREATE TABLE ma_oficina ( id_oficina INTEGER NOT NULL AUTO_INCREMENT, des_oficina VARCHAR(50) NOT NULL, st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, num_jerarquia INTEGER NULL, id_encargado INTEGER NULL, id_ancestro INTEGER NULL, id_empresa INTEGER NOT NULL, PRIMARY KEY (id_oficina, id_empresa) ); CREATE TABLE ma_puesto ( id_puesto INTEGER NOT NULL AUTO_INCREMENT, des_puesto VARCHAR(50) NULL, num_jerarquia INTEGER NULL, st_vigente VARCHAR(10) NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, id_empresa INTEGER NOT NULL, id_oficina INTEGER NULL, id_superior INTEGER NULL, PRIMARY KEY (id_puesto, id_empresa) ); ALTER TABLE us_usuario_puesto ADD FOREIGN KEY R_9 (id_usuario, id_empresa) REFERENCES ma_usuarios (id_usuario, id_empresa); ALTER TABLE us_usuario_puesto ADD FOREIGN KEY R_10 (id_puesto, id_empresa) REFERENCES ma_puesto (id_puesto, id_empresa); ALTER TABLE ma_oficina ADD FOREIGN KEY R_12 (id_empresa) REFERENCES ma_empresa (id_empresa); ALTER TABLE ma_puesto ADD FOREIGN KEY R_11 (id_empresa) REFERENCES ma_empresa (id_empresa); ALTER TABLE ma_puesto ADD FOREIGN KEY R_13 (id_oficina, id_empresa) REFERENCES ma_oficina (id_oficina, id_empresa); -- 08-09-2018 create table sys_tipos_dato ( id_tipo int auto_increment primary key, des_tipo varchar(30), created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL ); insert into sys_tipos_dato(des_tipo) values ('Número entero'); insert into sys_tipos_dato(des_tipo) values ('Número decimal'); insert into sys_tipos_dato(des_tipo) values ('Texto'); insert into sys_tipos_dato(des_tipo) values ('Fecha'); insert into sys_tipos_dato(des_tipo) values ('Caracter'); insert into sys_tipos_dato(des_tipo) values ('Lógico'); insert into sys_tipos_dato(des_tipo) values ('Indicador'); create table ma_campos ( id_campo int auto_increment, id_empresa int not null, id_tipo int not null, des_campo varchar(50) not null, st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', st_obligatorio char not null default 'N', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, foreign key (id_tipo) references sys_tipos_dato (id_tipo), foreign key (id_empresa) references ma_empresa (id_empresa), primary key (id_campo, id_empresa) ); create table ma_hitos_control ( id_hito int auto_increment, id_empresa int not null, des_hito varchar(50) not null, st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, foreign key (id_empresa) references ma_empresa (id_empresa), primary key (id_hito, id_empresa) ); -- 09-09-2018 create table sys_estados ( id_estado int auto_increment primary key, cod_estado varchar(30) not null, des_estado varchar(30) not null, tp_estado char not null, created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL ); create table pr_hitos_campo( id_hito int not null, id_empresa int not null, id_campo int not null, id_usuario_asigna int not null, st_vigente VARCHAR(10) NOT NULL DEFAULT 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, foreign key (id_hito, id_empresa) references ma_hitos_control (id_hito, id_empresa), foreign key (id_campo, id_empresa) references ma_campos (id_campo, id_empresa), foreign key (id_usuario_asigna,id_empresa) references ma_usuarios (id_usuario,id_empresa), primary key (id_hito, id_empresa, id_campo) ); -- 10-09-2018 create table pr_catalogo_proyecto( id_catalogo int auto_increment, id_empresa int not null, des_catalogo varchar(30) not null, st_vigente varchar(10) not null default 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, primary key (id_catalogo, id_empresa) ); -- 15-09-2018 ALTER TABLE ma_hitos_control DROP FOREIGN KEY `ma_hitos_control_ibfk_1`; alter table ma_hitos_control drop column id_responsable; alter table ma_hitos_control add foreign key (id_empresa) references ma_empresa(id_empresa); create table pr_catalogo_hitos ( id_hito int not null, id_empresa int not null, id_catalogo int not null, id_usuario_registra int not null, nu_orden int not null, nu_peso decimal(4,2) not null, st_vigente varchar(10) not null default 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, foreign key (id_usuario_registra, id_empresa) references ma_usuarios (id_usuario, id_empresa), foreign key (id_hito, id_empresa) references ma_hitos_control (id_hito, id_empresa), foreign key (id_catalogo, id_empresa) references pr_catalogo_proyecto (id_catalogo, id_empresa), primary key (id_hito, id_empresa, id_catalogo) ); create table pr_valoracion ( id_estado_p int not null, id_estado_c int not null, num_puntaje int not null, id_usuario_registra int not null, created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, foreign key (id_estado_p) references sys_estados (id_estado), foreign key (id_estado_c) references sys_estados (id_estado), primary key (id_estado_p, id_estado_c) ); -- 16-09-2018 create table pr_proyecto ( id_proyecto int auto_increment, id_empresa int not null, id_oficina int not null, id_catalogo int not null, tp_orden varchar(10) not null default 'Servicios', des_codigo varchar(15) not null, des_proyecto varchar(100) not null, des_descripcion varchar(150), des_expediente varchar(30), des_hoja_tramite varchar(30), num_valor decimal(10,2), des_observaciones varchar(150), fe_inicio datetime not null, nu_dias int not null, fe_fin datetime not null, st_vigente varchar(10) not null default 'Vigente', created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, check (tp_orden in ('Compras','Servicios')), foreign key (id_empresa) references ma_empresa (id_empresa), foreign key (id_catalogo, id_empresa) references pr_catalogo_proyecto (id_catalogo, id_empresa), foreign key (id_oficina, id_empresa) references ma_oficina (id_oficina, id_empresa), primary key (id_proyecto, id_empresa) ); create table pr_proyecto_hitos ( id_detalle int not null, id_proyecto int not null, id_hito int not null, id_empresa int not null, id_catalogo int not null, id_estado_proceso int not null, id_estado_documentacion int not null, id_responsable int not null, des_observaciones varchar(150), fe_inicio datetime not null, nu_dias int not null, fe_fin datetime not null, created_at DATETIME NOT NULL DEFAULT current_timestamp, updated_at DATETIME NULL, foreign key (id_hito,id_empresa,id_catalogo) references pr_catalogo_hitos (id_hito,id_empresa,id_catalogo), foreign key (id_proyecto, id_empresa) references pr_proyecto (id_proyecto, id_empresa), foreign key (id_responsable, id_empresa) references ma_puesto (id_puesto, id_empresa), foreign key (id_estado_proceso) references sys_estados (id_estado), foreign key (id_estado_documentacion) references sys_estados (id_estado), primary key (id_detalle, id_proyecto, id_empresa, id_hito, id_catalogo) ); create table ma_organo_control ( id_organo int not null auto_increment, id_empresa int not null, des_organo varchar(100) not null, des_abreviatura varchar(10) not null, st_vigente varchar(10) not null default 'Vigente', created_at datetime not null default current_timestamp, updated_at datetime null, foreign key (id_empresa) references ma_empresa (id_empresa), primary key (id_organo, id_empresa) ); create table ma_direccion_central ( id_direccion int not null auto_increment, id_organo int not null, id_empresa int not null, des_direccion varchar(100) not null, des_abreviatura varchar(10) not null, st_vigente varchar(10) not null default 'Vigente', created_at datetime not null default current_timestamp, updated_at datetime null, foreign key (id_organo, id_empresa) references ma_organo_control (id_organo, id_empresa), primary key (id_direccion, id_organo, id_empresa) ); create table ma_area_usuaria ( id_area int not null auto_increment, id_direccion int not null, id_organo int not null, id_empresa int not null, des_area varchar(100) not null, des_abreviatura varchar(10) not null, st_vigente varchar(10) not null default 'Vigente', created_at datetime not null default current_timestamp, updated_at datetime null, foreign key (id_direccion, id_organo, id_empresa) references ma_direccion_central (id_direccion, id_organo, id_empresa), primary key (id_area, id_direccion, id_organo, id_empresa) );
<gh_stars>0 /* IWM Document Repository, Document update script for the E-Service 13.2 Release Created: 31/Dec/2012 Created by: Infosys Limited Modified: Database: Oracle 10g Comments: For updating PDF for RESP NASU Flow, it is assumed that this script will run after a previous script adds the document to the DC_DOCUMENT table and then initializes an empty_blob into the DC_REPOSITORY table. */ alter session set current_schema=IWM_COMMON; SET SERVEROUTPUT ON FORMAT WRAPPED DECLARE TYPE r_dc_repository IS RECORD ( -- Represents the unqique id assigned in the DC_DOCUMENT table. document_id NUMBER(38), -- Represents the document file name. document_name VARCHAR(128), -- Represents the field mapping file name to update. field_mapping VARCHAR(128) ); TYPE dc_repository_table IS TABLE OF r_dc_repository INDEX BY BINARY_INTEGER; t_dc_repository dc_repository_table; v_file_loc BFILE; v_document_loc BLOB; v_field_mapping_loc CLOB; v_document_size INTEGER; BEGIN -- Enter Documents and/or Field Mapping files to be loaded into DC_REPOSITORY table here. -- Enter null as Document or Field Mapping value to skip update for that attribute. -- RESP NASU SDE0069 English t_dc_repository(1).document_id := 220; t_dc_repository(1).document_name := 'SDE0069E.pdf'; t_dc_repository(1).field_mapping := 'SDE0069E.xml'; -- RESP NASU SDE0069 French t_dc_repository(2).document_id := 221; t_dc_repository(2).document_name := 'SDE0069F.pdf'; t_dc_repository(2).field_mapping := 'SDE0069F.xml'; -- RESP NASU SDE0071 English t_dc_repository(3).document_id := 222; t_dc_repository(3).document_name := 'SDE0071E.pdf'; t_dc_repository(3).field_mapping := 'SDE0071E.xml'; -- RESP NASU SDE0071 French t_dc_repository(4).document_id := 223; t_dc_repository(4).document_name := 'SDE0071F.pdf'; t_dc_repository(4).field_mapping := 'SDE0071F.xml'; -- RESP NASU SDE0073 English t_dc_repository(5).document_id := 224; t_dc_repository(5).document_name := 'SDE0073E.pdf'; t_dc_repository(5).field_mapping := 'SDE0073E.xml'; -- RESP NASU SDE0073 French t_dc_repository(6).document_id := 225; t_dc_repository(6).document_name := 'SDE0073F.pdf'; t_dc_repository(6).field_mapping := 'SDE0073F.xml'; -- RESP NASU ACES1 English t_dc_repository(7).document_id := 226; t_dc_repository(7).document_name := 'ACES1E.pdf'; t_dc_repository(7).field_mapping := 'ACES1E.xml'; -- RESP NASU ACES1 French t_dc_repository(8).document_id := 227; t_dc_repository(8).document_name := 'ACES1F.pdf'; t_dc_repository(8).field_mapping := 'ACES1F.xml'; -- RESP NASU SDE0088 English t_dc_repository(9).document_id := 228; t_dc_repository(9).document_name := 'SDE0088E.pdf'; t_dc_repository(9).field_mapping := 'SDE0088E.xml'; -- RESP NASU SDE0088 French t_dc_repository(10).document_id := 229; t_dc_repository(10).document_name := 'SDE0088F.pdf'; t_dc_repository(10).field_mapping := 'SDE0088F.xml'; -- RESP NASU SDE0089 English t_dc_repository(11).document_id := 230; t_dc_repository(11).document_name := 'SDE0089E.pdf'; t_dc_repository(11).field_mapping := 'SDE0089E.xml'; -- RESP NASU SDE0089 English t_dc_repository(12).document_id := 231; t_dc_repository(12).document_name := 'SDE0089F.pdf'; t_dc_repository(12).field_mapping := 'SDE0089F.xml'; -- End of dyanmic information update. -- Do not change anything beyond this point. FOR i IN 1..t_dc_repository.COUNT LOOP DBMS_OUTPUT.PUT_LINE(CHR(0)); DBMS_OUTPUT.PUT_LINE('Updating Document Id: [' || t_dc_repository(i).document_id || '] in the DC_REPOSITORY table...'); IF t_dc_repository(i).document_name IS NOT NULL THEN DBMS_OUTPUT.PUT_LINE(CHR(0)); DBMS_OUTPUT.PUT_LINE('Updating Document Name: [' || t_dc_repository(i).document_name || ']'); v_file_loc := BFILENAME('BLOBDIR', t_dc_repository(i).document_name); v_document_size := DBMS_LOB.GETLENGTH(v_file_loc); DBMS_OUTPUT.PUT_LINE('Document size: ' || v_document_size); DBMS_OUTPUT.PUT('Updating existing document to empty blob...'); UPDATE DC_REPOSITORY SET DOCUMENT=EMPTY_BLOB WHERE DOCUMENT_ID=t_dc_repository(i).document_id RETURNING DOCUMENT INTO v_document_loc; DBMS_OUTPUT.PUT_LINE(' done'); DBMS_OUTPUT.PUT('Opening the document file...'); DBMS_LOB.FILEOPEN( v_file_loc ); DBMS_OUTPUT.PUT_LINE(' done'); DBMS_OUTPUT.PUT('Loading Document From File...'); DBMS_LOB.LOADFROMFILE(v_document_loc, v_file_loc, v_document_size); DBMS_OUTPUT.PUT_LINE(' done'); DBMS_OUTPUT.PUT('Closing the document file...'); DBMS_LOB.FILECLOSE( v_file_loc ); DBMS_OUTPUT.PUT_LINE(' done'); END IF; IF t_dc_repository(i).field_mapping IS NOT NULL THEN DBMS_OUTPUT.NEW_LINE; DBMS_OUTPUT.PUT_LINE('Updating Field Mapping for: [' || t_dc_repository(i).field_mapping || ']'); v_file_loc := BFILENAME('BLOBDIR', t_dc_repository(i).field_mapping); v_document_size := DBMS_LOB.GETLENGTH(v_file_loc); DBMS_OUTPUT.PUT_LINE('Field Mapping file size: ' || v_document_size); DBMS_OUTPUT.PUT('Updating existing Field Mapping file to empty clob...'); UPDATE DC_REPOSITORY SET FIELD_MAPPING=EMPTY_CLOB WHERE DOCUMENT_ID=t_dc_repository(i).document_id RETURNING FIELD_MAPPING INTO v_field_mapping_loc; DBMS_OUTPUT.PUT_LINE(' done'); DBMS_OUTPUT.PUT('Opening the Field Mapping file...'); DBMS_LOB.FILEOPEN( v_file_loc ); DBMS_OUTPUT.PUT_LINE(' done'); DBMS_OUTPUT.PUT('Loading Field Mapping From File...'); DBMS_LOB.LOADFROMFILE(v_field_mapping_loc, v_file_loc, v_document_size); DBMS_OUTPUT.PUT_LINE(' done'); DBMS_OUTPUT.PUT('Closing the Field Mapping file...'); DBMS_LOB.FILECLOSE( v_file_loc ); DBMS_OUTPUT.PUT_LINE(' done'); END IF; -- Display a message when Document and Field Mapping variables are not defined. IF t_dc_repository(i).document_name IS NULL AND t_dc_repository(i).field_mapping IS NULL THEN DBMS_OUTPUT.PUT_LINE('Update not completed since Document and Field Mapping are not defined.'); END IF; END LOOP; DBMS_OUTPUT.PUT_LINE(CHR(0)); -- Commit the updates to the database. COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('OTHERS Exception ' || sqlerrm); END; /
<filename>epiz_24427268_fail.sql -- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 11-09-2019 a las 23:41:28 -- Versión del servidor: 10.1.34-MariaDB -- Versión de PHP: 7.2.7 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `epiz_24427268_fail` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `comprador` -- CREATE TABLE `comprador` ( `id` int(11) NOT NULL, `nombre` varchar(50) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `comprador` -- INSERT INTO `comprador` (`id`, `nombre`) VALUES (1, 'Pepe'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `producto` -- CREATE TABLE `producto` ( `id` int(11) NOT NULL, `nombre` varchar(50) NOT NULL, `stock` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `producto` -- INSERT INTO `producto` (`id`, `nombre`, `stock`) VALUES (1, 'Manzana', 10), (2, 'Pera', 12); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `venta` -- CREATE TABLE `venta` ( `id` int(11) NOT NULL, `fecha` date NOT NULL, `id_comprador` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `venta` -- INSERT INTO `venta` (`id`, `fecha`, `id_comprador`) VALUES (1, '2019-09-11', 1), (2, '2019-09-11', 1), (3, '2019-09-11', 1), (4, '2019-09-11', 1), (5, '2019-09-11', 1), (6, '2019-09-11', 1), (7, '2019-09-11', 1), (8, '2019-09-11', 1), (9, '2019-09-11', 1), (10, '2019-09-11', 1), (11, '2019-09-11', 1), (12, '2019-09-11', 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `venta_producto` -- CREATE TABLE `venta_producto` ( `id` int(11) NOT NULL, `cantidad` int(11) NOT NULL, `id_producto` int(11) NOT NULL, `id_venta` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `venta_producto` -- INSERT INTO `venta_producto` (`id`, `cantidad`, `id_producto`, `id_venta`) VALUES (1, 123, 1, 6), (2, 123, 1, 7), (3, 123, 1, 8), (4, 123, 1, 9), (5, 123, 1, 10), (6, 123, 1, 11), (7, 123, 2, 12); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `comprador` -- ALTER TABLE `comprador` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `producto` -- ALTER TABLE `producto` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `venta` -- ALTER TABLE `venta` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `venta_producto` -- ALTER TABLE `venta_producto` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `comprador` -- ALTER TABLE `comprador` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT de la tabla `producto` -- ALTER TABLE `producto` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT de la tabla `venta` -- ALTER TABLE `venta` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT de la tabla `venta_producto` -- ALTER TABLE `venta_producto` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; 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 top 5 * from Customers order by customerid desc select * from Products select * from Products where UnitsInStock < 10 and Discontinued=0 order by UnitsInStock desc update products set UnitsInStock=200 where ProductID=31; select * from Products where UnitsInStock < 10 select country from customers order by country select distinct country from customers order by country select * from products where ProductName like '%ch%' select * from products where ProductName like 'ch%' select * from products where ProductName not like 'ch%' select * from employees where region IN ('wa', 'bc') select distinct region from customers select * from customers where region in ('ak', 'bc', 'ca') select * from products where unitprice between 10 and 15 order by UnitPrice asc --Count city, country select count(distinct (city)) as 'Cities' from customers select count(distinct (country)) as 'Countries'from customers --average price, min price max price select avg(unitprice) as 'averageprice', min(unitprice) as 'minprice', max(unitprice) as 'maxprice' from products --sum of unis on stock select sum(UnitsInStock) as 'StockTotal' from products --//get product, price, discount, price including discount from ORDER DETAILS -- //customer ==> place order with OrderID -- //order ==> details with Order_DetailId select * from orders select ProductName, [Order Details].UnitPrice, Discount, quantity, ([Order Details].unitprice *(1- discount)) as 'Discount Price' from [Order Details] inner join Products on products.ProductID = [Order Details].ProductID order by 'Discount Price' desc --Get total of (quantity*unitprice) as 'ordervalue' select sum(quantity)*sum(unitprice) as 'order value' from [Order Details] select sum(quantity*unitprice) as 'order value' from [Order Details] --get total of (1-discount)* 'order value' select sum(quantity*unitprice*(1-discount)) as 'order value' from [Order Details] --difference select sum(quantity*unitprice) as 'grosssales', sum(quantity*unitprice*(1-discount)) as 'DiscountedSales', (sum(quantity*unitprice) - sum(quantity*unitprice*(1-discount))) as 'discount given' from [Order Details] select 'GROUP BY' select supplierid, sum(unitsonorder) as 'Total Units on Order'from products group by SupplierID having sum(UnitsOnOrder) = 0 order by 'Total Units on Order' desc select 'GROUP BY' select supplierid, sum(unitsonorder) as 'Total Units on Order'from products group by SupplierID having sum(UnitsOnOrder) > 0 order by 'Total Units on Order' desc --Subqueries select * from customers where customerid not in (select customerid from orders)
# Time: O(nlogn) # Space: O(n) SELECT a.team_id, a.name, CAST(ROW_NUMBER() OVER(ORDER BY points DESC, name ASC) AS SIGNED) - CAST(ROW_NUMBER() OVER(ORDER BY points + points_change DESC, name ASC) as SIGNED) as rank_diff FROM TeamPoints as a INNER JOIN PointsChange as b ON a.team_id=b.team_id;
<filename>data/open-source/extracted_sql/projecttacoma_bonnie.sql<gh_stars>1-10 create table ${1:table} (\n ${2:columns}\n ) CREATE TABLE payload (name text, value blob) CREATE TABLE cities ( name varchar(80), location point) create table ${1:table} (\n\ ${2:columns}\n\ )
<gh_stars>1-10 CREATE DATABASE chat GO USE chat GO IF OBJECT_ID('dbo.Users', 'U') IS NOT NULL DROP TABLE dbo.Users GO CREATE TABLE dbo.Users ( Id INT IDENTITY(1,1) PRIMARY KEY, Username [NVARCHAR](50) NOT NULL UNIQUE, -- need index PasswordHash [VARCHAR](255) NOT NULL, -- don't need NVARCHAR, since the name is base64 encoded, VARCHAR with one byte is enough Email [NVARCHAR](50) UNIQUE ); GO IF OBJECT_ID('dbo.Messages', 'U') IS NOT NULL DROP TABLE dbo.Messages GO CREATE TABLE dbo.Messages ( Id INT IDENTITY(1,1) PRIMARY KEY, Username [NVARCHAR](50) NOT NULL, -- need index MessageType [VARCHAR](50) NOT NULL, Recepient [NVARCHAR](50) NOT NULL, Payload [NVARCHAR](255), Stamp DATETIME2 -- need index ); GO IF OBJECT_ID('dbo.Channels', 'U') IS NOT NULL DROP TABLE dbo.Channels GO CREATE TABLE dbo.Channels ( Id INT IDENTITY(1,1) PRIMARY KEY, FriendlyName [NVARCHAR](50) NOT NULL UNIQUE, ChannelType INT NOT NULL, OwnerId INT NOT NULL, LongDescription [NVARCHAR](255), FOREIGN KEY(OwnerId) REFERENCES dbo.Users(Id) ); GO IF OBJECT_ID('dbo.ChannelMembers', 'U') IS NOT NULL DROP TABLE dbo.ChannelMembers GO CREATE TABLE dbo.ChannelMembers ( Id INT IDENTITY(1,1) PRIMARY KEY, ChannelId INT NOT NULL, UserId INT NOT NULL, FOREIGN KEY(ChannelId) REFERENCES dbo.Channels(Id), FOREIGN KEY(UserId) REFERENCES dbo.Users(Id) ); GO IF OBJECT_ID('dbo.Sessions', 'U') IS NOT NULL DROP TABLE dbo.Sessions GO CREATE TABLE dbo.Sessions ( Id INT IDENTITY(1,1) PRIMARY KEY, Username [NVARCHAR](50) NOT NULL UNIQUE, Token [VARCHAR](50) NOT NULL, -- FOREIGN KEY(Username) REFERENCES dbo.Users(Username) ); GO
<reponame>skilbjo/compojure<filename>dev-resources/test/insert-source-data.sql<gh_stars>1-10 begin; insert into dw.currency_fact values ('CURRFX', 'GBPUSD', 'GBP', '2017-12-15', 1.34329152107240, 1.34498989582060, 1.33081364631650), ('CURRFX', 'GBPUSD', 'GBP', '2017-12-14', 1.34096789360050, 1.34556913375850, 1.33951294422150), ('CURRFX', 'EURUSD', 'EUR', '2017-12-15', 1.17749571800230, 1.18140053749080, 1.17616617679600), ('CURRFX', 'EURUSD', 'EUR', '2017-12-14', 1.18358600139620, 1.18598639965060, 1.17716300487520) ; insert into dw.equities_fact values ('WIKI', 'FB' , '2017-09-05', 170.91, 172.09, 169.57, 172.48, 13659317.00, 1.00, 170.91, 172.09, 169.57, 172.48, 13659317.00, 0.00 ), ('WIKI', 'AMZN', '2017-09-07', 979.10, 965.90, 963.47, 979.88, 2578269.00, 1.00, 979.10, 965.90, 963.47, 979.88, 2578269.00, 0.00 ), ('WIKI', 'GOOG', '2017-09-14', 924.66, 920.29, 916.36, 926.49, 2475031.00, 1.00, 924.66, 920.29, 916.36, 926.49, 2475031.00, 0.00 ), ('WIKI', 'NVDA', '2017-09-06', 166.49, 166.58, 164.95, 167.89, 8731886.00, 1.00, 166.49, 166.58, 164.95, 167.89, 8731886.00, 0.00 ), ('WIKI', 'NVDA', '2017-09-04', 168.38, 165.91, 163.56, 168.58, 17358768.00, 1.00, 168.38, 165.91, 163.56, 168.58, 17358768.00, 0.00 ) ; insert into dw.portfolio_dim values ('skilbjo', 'ALPHA-VANTAGE', 'V', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'CY', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'FB', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'GS', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'SQ', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'MA', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'AXP', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'AMD', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'CRM', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'GLD', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'IAU', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'IBM', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'ICE', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'SAP', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'TSM', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'TXN', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'UBER', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'AAPL', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'AMZN', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'APPF', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'GOOG', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'INTC', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'INTU', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'MSFT', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'NDAQ', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'NVDA', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'PYPL', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'SHOP', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'TWLO', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'TWTR', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','BRK-B', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','BRK.B', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','NTDOF', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','NTDOY', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','SFTBF', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'VEA', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VEMAX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VEURX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VEXPX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'VFH', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VGSLX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'VGT', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VGWAX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE', 'VHT', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VIMAX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VINEX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VTIAX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VTSAX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VWINX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VWENX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VITAX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VMMSX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VMMXX', 3, 100.00 ), ('skilbjo', 'ALPHA-VANTAGE','VMRAX', 3, 100.00 ) ; insert into dw.equities_fact (dataset, ticker, date, close) values ('ALPHA-VANTAGE', 'MA', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'AXP', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'APPF', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'SHOP', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'NDAQ', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'MSFT', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'ICE', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'IBM', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'AMD', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'CRM', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'PCG', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'TXN', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'TWTR', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'PYPL', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'NVDA', '2019-01-01', 100.00 ), ('ALPHA-VANTAGE', 'AAPL', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'AMZN', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'BRK-B', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'BRK.B', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'CY', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'FB', '2017-09-05', 500.00 ), ('ALPHA-VANTAGE', 'FB', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'GLD', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'GOOG', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'GS', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'IAU', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'INTC', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'INTU', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'NTDOF', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'NTDOY', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'NVDA', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'PYPL', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'SAP', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'SFTBF', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'SQ', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'TSM', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'TWTR', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'TXN', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'V', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VEA', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VEMAX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VEURX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VEXPX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VFH', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VGSLX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VTIAX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VTSAX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VWINX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VWENX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VGT', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VGWAX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VHT', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VIMAX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VINEX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VITAX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VMMSX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VMMXX', '2019-02-22', 500.00 ), ('ALPHA-VANTAGE', 'VMRAX', '2019-02-22', 500.00 ) ; commit;
<reponame>bagoez73/lumenapi<filename>users.sql /* Navicat Premium Data Transfer Source Server : lokal Source Server Type : MySQL Source Server Version : 50724 Source Host : localhost:3306 Source Schema : lumen-covid19 Target Server Type : MySQL Target Server Version : 50724 File Encoding : 65001 Date: 16/04/2020 07:04:27 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for users -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `identity_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `gender` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' COMMENT '0: female, 1: male', `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `phone_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `api_token` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reset_token` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `role` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '0: admin, 1: drivers, 2: users', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp(0), `updated_at` timestamp(0), PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `users_email_unique`(`email`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of users -- ---------------------------- INSERT INTO `users` VALUES (1, 'administrator', '12345678345', '1', 'Serang Kota', 'kamidin.png', '<EMAIL>', '$2y$10$vK19R75DQUcv6AJQ.0OQReSgECHjYDhwbDDcKwDtkyjt7Kbn7X9MS', '085771188918', '1VmNP3a2xU4iQgF857KVwM28ffbNkumGjgXwbumx', NULL, '0', 1, '2020-04-14 13:39:11', '2020-04-14 13:39:11'); INSERT INTO `users` VALUES (2, 'survilence', '12345678910', '1', 'Dinas Kesehatan', 'dinkes.png', '<EMAIL>', '$2y$10$I707StOALmnhwaM4CI3hY.Kg6QPiTnmnbHER3d027BX8D3SUrarfa', '085777777777', 'FU43pt2xr58WyDV1fiWItDzRSvMWugkIiWtx7TGk', NULL, '0', 1, '2020-04-14 13:41:31', '2020-04-14 13:41:31'); INSERT INTO `users` VALUES (3, 'kementrian', '12345678911', '1', 'Pemerintah Pusat', 'pusat.png', '<EMAIL>', <PASSWORD>', '085778888888', 'azAFZBjduLZjFsW7U2UuSrcUuikm320zXIKaAeGT', NULL, '0', 1, '2020-04-14 13:42:26', '2020-04-14 13:42:26'); SET FOREIGN_KEY_CHECKS = 1;
<reponame>mohitkhedkar/Competitive-programming<filename>Hackerrank/Practice/SQL/Basic Join/8. Contest Leaderboard.sql /* Enter your query here. Please append a semicolon ";" at the end of the query and enter your query in a single line to avoid error. */ SELECT HACKER_ID, NAME, SUM(A) FROM (SELECT S.HACKER_ID, H.NAME, MAX(S.SCORE) A FROM SUBMISSIONS S INNER JOIN HACKERS H ON H.HACKER_ID=S.HACKER_ID WHERE S.SCORE!=0 GROUP BY S.HACKER_ID, H.NAME, S.CHALLENGE_ID) GROUP BY HACKER_ID, NAME ORDER BY 3 DESC, 1;
<filename>src/SFA.DAS.EAS.Employer_Account.Database/Tables/Paye.sql CREATE TABLE [employer_account].[Paye] ( [Ref] NVARCHAR(16) NOT NULL PRIMARY KEY, [AccessToken] VARCHAR(50) NULL, [RefreshToken] VARCHAR(50) NULL, [Name] VARCHAR(500) NULL )
<filename>Data Analyst in R/Step 4 - Working with Data Sources/1. SQL Fundamentals/3. Group Summary Statistics.sql ## 2. If/Then in SQL ## SELECT CASE WHEN Sample_size < 200 THEN 'Small' WHEN Sample_size < 1000 THEN 'Medium' ELSE 'Large' END AS Sample_category FROM recent_grads; ## 3. Dissecting CASE ## SELECT Major, Sample_size, CASE WHEN Sample_size < 200 THEN 'Small' WHEN Sample_size < 1000 THEN 'Medium' ELSE 'Large' END AS Sample_category FROM recent_grads; ## 4. Calculating Group-Level Summary Statistics ## SELECT Major_category, SUM(Total) AS Total_graduates FROM recent_grads GROUP BY Major_category; ## 5. GROUP BY Visual Breakdown ## SELECT Major_category, AVG(ShareWomen) AS Average_women FROM recent_grads GROUP BY Major_category; ## 6. Multiple Summary Statistics by Group ## SELECT Major_category, SUM(Women) AS Total_women, AVG(ShareWomen) AS Mean_women, SUM(Total)*AVG(ShareWomen) AS Estimate_women FROM recent_grads GROUP BY Major_category; ## 7. Multiple Group Columns ## SELECT Major_category, Sample_category, AVG(ShareWomen) AS Mean_women, SUM(Total) AS Total_graduates FROM new_grads GROUP BY Major_category, Sample_category; ## 8. Querying Virtual Columns With the HAVING Statement ## SELECT Major_category, AVG(Low_wage_jobs) / AVG(Total) AS Share_low_wage FROM new_grads GROUP BY Major_category HAVING share_low_wage > .1; ## 10. Rounding Results With the ROUND() Function ## SELECT ROUND(ShareWomen, 4) AS Rounded_women, Major_category FROM new_grads LIMIT 10; ## 11. Nesting functions ## SELECT Major_category, ROUND(AVG(College_jobs) / AVG(Total), 3) AS Share_degree_jobs FROM new_grads GROUP BY Major_category HAVING Share_degree_jobs < .3; ## 12. Casting ## SELECT Major_category, CAST(SUM(Women) as Float)/Cast(SUM(Total) as Float) AS SW FROM new_grads GROUP BY Major_category ORDER BY SW;
<filename>src/main/resources/db/migration/V1_4__drop_oauth_refresh_token_token_id_fkey.sql ALTER TABLE oauth_refresh_token DROP CONSTRAINT oauth_refresh_token_token_id_fkey;
DROP DATABASE IF EXISTS moi_me_ries_db; CREATE DATABASE moi_me_ries_db;
<reponame>flexsocialbox/una SET @sName = 'bx_timeline'; -- SETTINGS UPDATE `sys_options` SET `value`='' WHERE `name`='bx_timeline_enable_infinite_scroll';
create table t_configuration ( key varchar(32) not null, value varchar(2048), constraint pk_t_configuration primary key (key) ); create table t_link ( idlink integer auto_increment not null, command varchar(2048), name varchar(256), description varchar(4096), icon varchar(2048), parameters varchar(2048), squarex integer, squarey integer, constraint uq_t_link_name unique (name), constraint pk_t_link primary key (idlink) );
-- 02.11.2015 13:24 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process SET IsBetaFunctionality='Y',Updated=TO_TIMESTAMP('2015-11-02 13:24:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=540601 ;
<reponame>dram/metasfresh<filename>backend/de.metas.fresh/de.metas.fresh.base/src/main/sql/postgresql/system/75-de.metas.fresh.reports/5448410_sys_FRESH-402_docs_rfq_response_report_root.sql -- DROP FUNCTION de_metas_endcustomer_fresh_reports.docs_rfq_response_report_root(numeric); CREATE OR REPLACE FUNCTION de_metas_endcustomer_fresh_reports.docs_rfq_response_report_root(IN record_id numeric) RETURNS TABLE (ad_org_id numeric) AS $$ SELECT rl.AD_Org_ID FROM C_RfQResponse rr INNER JOIN C_RfQResponseLine rl ON rr.C_RfQResponse_ID = rl.C_RfQResponse_ID WHERE rr.C_RfQResponse_ID = $1 LIMIT 1 $$ LANGUAGE sql STABLE ;
<filename>components/edbi/jdbc/src/main/resources/index-schema.h2.sql -- -- Licensed to the Austrian Association for Software Tool Integration (AASTI) -- under one or more contributor license agreements. See the NOTICE file -- distributed with this work for additional information regarding copyright -- ownership. The AASTI licenses this file to you under the Apache License, -- Version 2.0 (the "License"); you may not use this file except in compliance -- with the License. You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- CREATE TABLE IF NOT EXISTS `INDEX_INFORMATION` ( `NAME` VARCHAR(500) PRIMARY KEY, `CLASS` VARCHAR(500), `TABLE_HEAD` VARCHAR(100), `TABLE_HISTORY` VARCHAR(100) ); CREATE TABLE IF NOT EXISTS `INDEX_FIELD_INFORMATION` ( `INDEX_NAME` VARCHAR(500), `NAME` VARCHAR(500), `TYPE` VARCHAR(500), `MAPPED_NAME` VARCHAR(100), `MAPPED_TYPE` INT, `MAPPED_TYPE_NAME` VARCHAR(100), `MAPPED_TYPE_SCALE` INT, FOREIGN KEY (`INDEX_NAME`) REFERENCES `INDEX_INFORMATION` (`NAME`) ON DELETE CASCADE );
LOCK TABLES poc_legacy.general_practitioners WRITE; INSERT INTO poc_legacy.general_practitioners (id, gp_name, address_1, address_2, address_3, address_4, address_5, postcode) VALUES (1, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (2, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (3, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (4, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (5, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (6, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (7, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (8, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (9, 'Mcclain, O<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (10, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (11, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (12, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (13, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (14, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (15, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (16, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (17, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (18, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (19, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (20, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (21, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (22, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (23, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (24, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (25, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (26, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (27, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (28, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (29, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (30, 'Blackburn, <NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (31, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (32, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (33, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (34, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (35, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (36, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (37, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (38, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (39, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (40, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (41, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (42, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (43, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (44, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (45, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (46, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (47, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (48, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (49, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (50, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (51, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (52, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (53, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (54, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (55, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (56, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (57, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (58, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (59, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (60, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (61, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (62, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (63, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (64, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (65, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (66, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (67, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (68, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (69, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (70, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (71, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (72, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (73, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (74, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (75, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (76, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (77, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (78, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (79, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (80, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (81, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (82, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (83, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (84, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (85, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (86, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (87, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (88, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (89, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (90, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (91, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (92, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (93, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (94, 'Best, <NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (95, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (96, 'Cortez, <NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (97, '<NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (98, 'Sweet, <NAME>.', NULL, NULL, NULL, NULL, NULL, NULL), (99, 'Boone, <NAME>.', NULL, NULL, NULL, NULL, NULL, NULL); UNLOCK TABLES;
<reponame>zackw/tbbscraper -- -*- sql-product: postgres -*- BEGIN; CREATE SCHEMA collection; SET search_path TO collection, public; CREATE TABLE country_codes ( name TEXT NOT NULL UNIQUE CHECK (name <> ''), cc3 TEXT NOT NULL UNIQUE CHECK (cc3 <> ''), cc2 TEXT NOT NULL UNIQUE CHECK (cc2 <> ''), rwb_score REAL, rwb_rank INTEGER, fh_score INTEGER ); -- The URLs, their sources, and the metadata for them. CREATE TABLE url_strings ( id SERIAL NOT NULL PRIMARY KEY, url TEXT NOT NULL UNIQUE CHECK (url <> '') ); -- Results of page captures CREATE TABLE capture_coarse_result ( id SERIAL NOT NULL PRIMARY KEY, result TEXT NOT NULL UNIQUE CHECK (result <> '') ); CREATE TABLE capture_fine_result ( id SERIAL NOT NULL PRIMARY KEY, result INTEGER NOT NULL REFERENCES capture_coarse_result(id), detail TEXT NOT NULL UNIQUE CHECK (detail <> '') ); CREATE INDEX capture_fine_result_result_idx ON capture_fine_result(result); CREATE TABLE capture_html_content ( id SERIAL NOT NULL PRIMARY KEY, hash BYTEA NOT NULL UNIQUE, content BYTEA NOT NULL, extracted INTEGER, is_parked BOOLEAN, parking_rules_matched TEXT[] ); ALTER TABLE capture_html_content ALTER COLUMN hash SET STORAGE PLAIN, -- incompressible (SHA256) ALTER COLUMN content SET STORAGE EXTERNAL; -- compressed by application -- Old, nonstandard-format capture logs CREATE TABLE capture_logs_old ( id SERIAL NOT NULL PRIMARY KEY, hash BYTEA NOT NULL UNIQUE, log BYTEA NOT NULL ); ALTER TABLE capture_logs_old ALTER COLUMN hash SET STORAGE PLAIN, -- incompressible (SHA256) ALTER COLUMN log SET STORAGE EXTERNAL; -- compressed by application -- New, HAR-format capture logs CREATE TABLE capture_logs ( id SERIAL NOT NULL PRIMARY KEY, hash BYTEA NOT NULL UNIQUE, log BYTEA NOT NULL ); ALTER TABLE capture_logs ALTER COLUMN hash SET STORAGE PLAIN, -- incompressible (SHA256) ALTER COLUMN log SET STORAGE EXTERNAL; -- compressed by application -- Main capture table. -- The "id" column is meaningless, and exists almost entirely -- to facilitate shuffling data over from the collection host to the -- analysis host. CREATE TABLE captured_pages ( id SERIAL NOT NULL PRIMARY KEY, url INTEGER NOT NULL REFERENCES url_strings(id), country TEXT NOT NULL REFERENCES country_codes(cc2), vantage TEXT NOT NULL DEFAULT(''), access_time TIMESTAMP WITHOUT TIME ZONE NOT NULL, elapsed_time REAL, result INTEGER NOT NULL REFERENCES capture_fine_result(id), redir_url INTEGER NOT NULL REFERENCES url_strings(id), capture_log INTEGER REFERENCES capture_logs(id), capture_log_old INTEGER REFERENCES capture_logs_old(id), html_content INTEGER NOT NULL REFERENCES capture_html_content(id), UNIQUE (url, country, vantage, access_time) ); CREATE INDEX captured_pages_url_idx ON captured_pages(url); CREATE INDEX captured_pages_url_country_idx ON captured_pages(url, country); CREATE INDEX captured_pages_url_result_idx ON captured_pages(url, result); COMMIT;
SELECT en_wiki, SUM(requests) requests, FIRST(superhero) superhero, FIRST(fictional_character) fictional_character, FIRST(occupation_superhero) occupation_superhero, VARIANCE(LOG(requests)) varlog FROM [fh-bigquery:wikipedia.pagecounts_201602_en_top365k] a JOIN ( SELECT en_wiki, NOT EVERY(instance_of.numeric_id!=188784) WITHIN RECORD superhero, NOT EVERY(instance_of.numeric_id!=95074) WITHIN RECORD fictional_character, NOT EVERY(occupation.numeric_id!=188784) WITHIN RECORD occupation_superhero, FROM [fh-bigquery:wikidata.latest_en_v1] OMIT RECORD IF (EVERY(instance_of.numeric_id!=188784) AND EVERY(instance_of.numeric_id!=95074) AND EVERY(occupation.numeric_id!=188784)) ) b ON a.title=b.en_wiki GROUP BY 1 HAVING varlog<0.5 ORDER BY 2 DESC LIMIT 100
CREATE OR REPLACE FUNCTION tools.generate_pgtap ( ) RETURNS SETOF text AS $body$ DECLARE r RECORD; r2 RECORD; count BIGINT; function_col_test BOOLEAN; sql TEXT; BEGIN count = 0; sql = ''; -- CREATE EXTENSION IF NOT EXISTS pgtap; sql = sql || E'SELECT diag(''================================='');\n'; sql = sql || E'SELECT diag(''Role Tests'');\n'; sql = sql || E'SELECT has_role(''grafana''::name);\n'; count = count + 1; sql = sql || E'SELECT diag(''================================='');\n'; sql = sql || E'SELECT diag(''Schema Tests'');\n'; sql = sql || E'SELECT has_schema(''logs'');\n'; sql = sql || E'SELECT schema_owner_is(''logs'', ''grafana''::NAME);\n'; sql = sql || E'SELECT has_schema(''stats'');\n'; sql = sql || E'SELECT schema_owner_is(''stats'', ''grafana''::NAME);\n'; sql = sql || E'SELECT has_schema(''tools'');\n'; sql = sql || E'SELECT schema_owner_is(''tools'', ''grafana''::NAME);\n'; count = count + 6; sql = sql || E'SELECT diag(''================================='');\n'; sql = sql || E'SELECT diag(''Table Tests'');\n'; FOR r IN SELECT * FROM information_schema.tables WHERE table_type = 'BASE TABLE' AND table_schema IN ('logs', 'stats', 'tools') LOOP sql = sql || 'SELECT has_table ( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME );\n'; sql = sql || 'SELECT table_owner_is ( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ''grafana''::NAME);\n'; count = count + 2; FOR r2 IN SELECT * FROM information_schema.columns WHERE table_schema = r.table_schema AND table_name = r.table_name ORDER BY ordinal_position LOOP sql = sql || 'SELECT has_column( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ' || quote_literal(r2.column_name) || E'::NAME, ''Column ' || quote_ident(r.table_schema) || '.' || quote_ident(r.table_name) || '.' || quote_ident(r2.column_name) || E' should exist'' );\n'; sql = sql || 'SELECT col_type_is( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ' || quote_literal(r2.column_name) || '::NAME, ' || CASE WHEN r2.data_type = 'ARRAY' THEN quote_literal( CASE r2.udt_name WHEN '_text' THEN 'text' WHEN '_bool' THEN 'boolean' END || '[]') WHEN r2.data_type = 'timestamp with time zone' AND r2.datetime_precision <> 6 THEN quote_literal('timestamp(' || r2.datetime_precision || ') with time zone') WHEN r2.domain_name IS NOT NULL THEN quote_literal(r2.domain_schema || '.' || r2.domain_name) ELSE quote_literal(r2.data_type) END || E' );\n'; count = count + 2; END LOOP; END LOOP; sql = sql || E'\n'; sql = sql || E'SELECT diag(''================================='');\n'; sql = sql || E'SELECT diag(''View Tests'');\n'; FOR r IN SELECT * FROM information_schema.tables WHERE table_type = 'VIEW' AND table_schema IN ('logs', 'stats', 'tools') LOOP sql = sql || 'SELECT has_view ( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ''View ' || quote_ident(r.table_schema) || '.' || quote_ident(r.table_name) || E' should exist'' );\n'; sql = sql || 'SELECT view_owner_is ( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ''grafana''::NAME);\n'; count = count + 2; FOR r2 IN SELECT * FROM information_schema.columns WHERE table_schema = r.table_schema AND table_name = r.table_name ORDER BY ordinal_position LOOP sql = sql || 'SELECT has_column( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ' || quote_literal(r2.column_name) || E'::NAME, ''Column ' || quote_ident(r.table_schema) || '.' || quote_ident(r.table_name) || '.' || quote_ident(r2.column_name) || E' should exist'' );\n'; sql = sql || 'SELECT col_type_is( ' || quote_literal(r.table_schema) || ', ' || quote_literal(r.table_name) || E'::NAME, ' || quote_literal(r2.column_name) || '::NAME, ' || CASE WHEN r2.data_type = 'ARRAY' THEN quote_literal( CASE r2.udt_name WHEN '_text' THEN 'text' END || '[]') WHEN r2.data_type = 'timestamp with time zone' AND r2.datetime_precision <> 6 THEN quote_literal('timestamp(' || r2.datetime_precision || ') with time zone') WHEN r2.domain_name IS NOT NULL THEN quote_literal(r2.domain_schema || '.' || r2.domain_name) ELSE quote_literal(r2.data_type) END || E' );\n'; count = count + 2; END LOOP; END LOOP; sql = sql || E'\n'; sql = sql || E'SELECT diag(''================================='');\n'; sql = sql || E'SELECT diag(''Function Tests'');\n'; FOR r IN SELECT * FROM public.tap_funky2 WHERE schema IN ('logs', 'stats', 'tools') AND "name" != 'generate_pgtap' LOOP IF r.args = '' THEN sql = sql || 'SELECT has_function ( ' || quote_literal(r.schema) || ', ' || quote_literal(r.name) || E'::NAME );\n'; ELSE sql = sql || 'SELECT has_function ( ' || quote_literal(r.schema) || ', ' || quote_literal(r.name) || '::NAME, ' || quote_literal(r.args) || E' );\n'; END IF; sql = sql || 'SELECT function_owner_is ( ' || quote_literal(r.schema) || ', ' || quote_literal(r.name) || '::NAME, ' || quote_literal('{' || r.args || '}') || '::regtype[]::name[], ' || quote_literal(r.owner) || E'::NAME);\n'; IF r.returns != '' THEN function_col_test = false; FOR r2 IN SELECT *, unnest(return_arg_types) AS return_arg_type, unnest(return_arg_names) AS return_arg_name FROM public.tap_funky2 WHERE schema = r.schema AND "name" = r.name AND args = r.args LOOP IF r2.return_arg_name IS NOT NULL THEN sql = sql || 'SELECT function_has_column( ' || quote_literal(r2.schema) || ', ' || quote_literal(r2.name) || '::NAME, ' || quote_literal(r2.arg_types) || '::NAME[], ' || quote_literal(r2.return_arg_name) || E'::NAME );\n'; sql = sql || 'SELECT function_col_type_is( ' || quote_literal(r2.schema) || ', ' || quote_literal(r2.name) || '::NAME, ' || quote_literal(r2.arg_types) || '::NAME[], ' || quote_literal(r2.return_arg_name) || '::NAME , ' || quote_literal(r2.return_arg_type) || E'::NAME );\n'; function_col_test = true; count = count + 2; END IF; END LOOP; IF function_col_test = false THEN sql = sql || 'SELECT function_returns_types( ' || quote_literal(r2.schema) || ', ' || quote_literal(r2.name) || '::NAME, ' || quote_literal(r2.arg_types) || '::NAME[], ' || quote_literal(r2.return_arg_types) || E'::NAME[] );\n'; count = count + 1; END IF; END IF; count = count + 2; END LOOP; sql = '-- USE SELECT * FROM tools.generate_pgtap(); TO GENERATE THIS FILE \connect pgmonitor_db -- Setup Test Variables \set test_name ''permissions'' \set test_user ''grafana'' \set test_production_database ''pgmonitor_db'' \set plan ' || count || ' -- Install pgTAP, show diagnostics, and start common tests --\ir ../common/diagnostic.sql \i common/diagnostics.pg ' || sql; RETURN NEXT sql; END; $body$ LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY DEFINER PARALLEL UNSAFE COST 100 ROWS 1000; ALTER FUNCTION tools.generate_pgtap () OWNER TO postgres;
<filename>hplsql/src/test/queries/local/return.sql PRINT 'Before return'; RETURN; PRINT 'Unreachable code';
UPDATE ACT_CMMN_DATABASECHANGELOGLOCK SET LOCKED = TRUE, LOCKEDBY = '192.168.10.1 (192.168.10.1)', LOCKGRANTED = '2020-10-06 15:41:21.404' WHERE ID = 1 AND LOCKED = FALSE; ALTER TABLE ACT_CMMN_RU_CASE_INST ADD LOCK_OWNER_ VARCHAR(255); INSERT INTO ACT_CMMN_DATABASECHANGELOG (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, CONTEXTS, LABELS, LIQUIBASE, DEPLOYMENT_ID) VALUES ('12', 'flowable', 'org/flowable/cmmn/db/liquibase/flowable-cmmn-db-changelog.xml', NOW(), 11, '7:e77f0eb21b221f823d6a0e198144cefc', 'addColumn tableName=ACT_CMMN_RU_CASE_INST', '', 'EXECUTED', NULL, NULL, '3.5.3', '1991681446'); ALTER TABLE ACT_CMMN_RU_PLAN_ITEM_INST ADD LAST_UNAVAILABLE_TIME_ TIMESTAMP; ALTER TABLE ACT_CMMN_HI_PLAN_ITEM_INST ADD LAST_UNAVAILABLE_TIME_ TIMESTAMP; INSERT INTO ACT_CMMN_DATABASECHANGELOG (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, CONTEXTS, LABELS, LIQUIBASE, DEPLOYMENT_ID) VALUES ('13', 'flowable', 'org/flowable/cmmn/db/liquibase/flowable-cmmn-db-changelog.xml', NOW(), 12, '7:c5ddabeb0c9fb8db6371c249097d78a3', 'addColumn tableName=ACT_CMMN_RU_PLAN_ITEM_INST; addColumn tableName=ACT_CMMN_HI_PLAN_ITEM_INST', '', 'EXECUTED', NULL, NULL, '3.5.3', '1991681446'); UPDATE ACT_CMMN_DATABASECHANGELOGLOCK SET LOCKED = FALSE, LOCKEDBY = NULL, LOCKGRANTED = NULL WHERE ID = 1;
<filename>src/test/tinc/tincrepo/mpp/gpdb/tests/storage/vacuum/reindex/concurrency/sql/reindextable_while_reindex_idx_aoco_bitmap_setup.sql<gh_stars>0 -- start_ignore SET gp_create_table_random_default_distribution=off; -- end_ignore DROP TABLE IF EXISTS reindex_crtab_aoco_bitmap; CREATE TABLE reindex_crtab_aoco_bitmap (a INT) WITH (appendonly=true, orientation=column); insert into reindex_crtab_aoco_bitmap select generate_series(1,1000); insert into reindex_crtab_aoco_bitmap select generate_series(1,1000); create index idx_reindex_crtab_aoco_bitmap on reindex_crtab_aoco_bitmap USING BITMAP(a); select 1 as relfilenode_same_on_all_segs from gp_dist_random('pg_class') where relname = 'idx_reindex_crtab_aoco_bitmap' group by relfilenode having count(*) = (select count(*) from gp_segment_configuration where role='p' and content > -1);
<filename>project/clean.sql DROP DATABASE IF EXISTS student; DROP ROLE IF EXISTS init; DROP ROLE IF EXISTS app; CREATE DATABASE student;
/* Navicat MySQL Data Transfer Source Server : SERVER_MASTER Source Server Version : 50532 Source Host : 192.168.1.253:3306 Source Database : hos Target Server Type : MYSQL Target Server Version : 50532 File Encoding : 65001 Date: 2016-08-23 10:23:11 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `lamaereports` -- ---------------------------- DROP TABLE IF EXISTS `lamaereports`; CREATE TABLE `lamaereports` ( `id` int(11) NOT NULL AUTO_INCREMENT, `lamaedepartment_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `form` varchar(255) NOT NULL, `pointer` varchar(255) NOT NULL, `created` date NOT NULL, `status` enum('enable','disable') DEFAULT NULL, `controller` varchar(255) NOT NULL, `details` text, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=230 DEFAULT CHARSET=tis620; -- ---------------------------- -- Records of lamaereports -- ---------------------------- INSERT INTO lamaereports VALUES ('4', '2', 'รายงานผู้ป่วยนอกที่มารับบริการด้วย Diag หลัก J440 - J449', 'form1', 'report_opd_diag_between_j440_and_j449', '2013-11-21', '', '', null); INSERT INTO lamaereports VALUES ('3', '8', 'รายงานมูลค่าการใช้ยาปฏิชีวนะ', 'form1', 'report1', '2016-08-08', 'enable', 'pharmacy', null); INSERT INTO lamaereports VALUES ('5', '2', 'รายงานผู้ป่วยนอกที่มารับบริการด้วย Diag หลัก J450 - J459', 'form1', 'report_opd_diag_between_j450_and_j459', '2013-11-21', '', '', null); INSERT INTO lamaereports VALUES ('6', '4', 'รายงานจำนวนคนไข้ความดัน ที่ได้รับการตรวจน้ำตาล (FBS)', 'form1', 'report6', '2016-06-14', 'disable', 'ht', ''); INSERT INTO lamaereports VALUES ('7', '3', 'รายงานคนไข้ทะเบียนเบาหวาน', 'form2', 'report1', '2016-04-27', 'enable', 'dm', null); INSERT INTO lamaereports VALUES ('8', '3', 'รายงานจำนวนคนไข้คลินิกเบาหวานได้รับการคัดกรองการสูบบุหรี่-ดื่มสุรา', 'form3', 'report3', '2016-05-23', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('9', '3', 'รายงานจำนวนคนไข้คลินิกเบาหวาน(มีความดันร่วม) ได้รับการคัดกรองการสูบบุหรี่', 'form1', 'report_dm_with_ht_screen_smoking', '2013-11-22', '', '', null); INSERT INTO lamaereports VALUES ('10', '4', 'รายงานจำนวนคนไข้คลินิกความดันโลหิตสูง ได้รับการคัดกรองการสูบบุหรี่-ดื่มสุรา', 'form1', 'report3', '2016-06-09', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('11', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(ไม่มีความดันร่วม) ได้รับการคัดกรองการดื่มสุรา', 'form1', 'report_dm_only_screen_drinking', '2013-11-22', '', '', null); INSERT INTO lamaereports VALUES ('12', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ได้รับการคัดกรองการดื่มสุรา', 'form1', 'report_dm_with_ht_screen_drinking', '2013-11-22', '', '', null); INSERT INTO lamaereports VALUES ('13', '4', 'รายงานจำนวนคนไข้คลินิคความดันโลหิตสูง(ไม่มีเบาหวานร่วม) ได้รับการคัดกรองการดื่มสุรา', 'form1', 'report_ht_only_screen_drinking', '2013-11-22', '', '', null); INSERT INTO lamaereports VALUES ('14', '3', 'รายงานจำนวนคนไข้คลินิกเบาหวาน ได้รับการคัดกรองภาวะโรคซึมเศร้า', 'form3', 'report4', '2016-05-27', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('15', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ได้รับการคัดกรองภาวะโรคซึมเศร้า', 'form1', 'report_dm_with_ht_screen_depression', '2013-11-22', '', '', null); INSERT INTO lamaereports VALUES ('16', '4', 'รายงานจำนวนคนไข้คลินิกความดันโลหิตสูง ได้รับการคัดกรองภาวะโรคซึมเศร้า', 'form1', 'report4', '2016-06-09', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('17', '5', 'รายงานจำนวนคนไข้คลินิกถุงลมโป่งพอง ได้รับการคัดกรองการสูบบุหรี่-ดื่มสุรา', 'form1', 'report3', '2016-06-15', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('18', '6', 'รายงานจำนวนคนไข้คลินิกหอบหืด ได้รับการคัดกรองการสูบบุหรี่-ดื่มสุรา', 'form1', 'report3', '2016-06-17', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('19', '5', 'รายงานจำนวนคนไข้คลินิค COPD ได้รับการคัดกรองการดื่มสุรา', 'form1', 'report_copd_screen_drinking', '2013-11-22', '', '', null); INSERT INTO lamaereports VALUES ('20', '6', 'รายงานทะเบียนผู้ป่วยคลินิก Asthma', 'form5', 'report1', '2016-06-17', 'disable', 'asthma', ''); INSERT INTO lamaereports VALUES ('21', '9', 'รายงานกลุ่มเสียงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี', 'form1', 'report_screen_dm_ht_15_34', '2013-11-30', '', '', null); INSERT INTO lamaereports VALUES ('22', '9', 'รายงานคนไข้ทะเบียนความดันโลหิตสูงแยกตามหมู่บ้าน', 'form2', 'report_ht_register_group_by_village', '2013-12-02', '', '', null); INSERT INTO lamaereports VALUES ('23', '9', 'รายงานกลุ่มเสียงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี', 'form1', 'report_screen_dm_ht_35_59', '2013-12-02', '', '', null); INSERT INTO lamaereports VALUES ('24', '9', 'รายงานกลุ่มเสียงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปี ขึ้นไป', 'form1', 'report_screen_dm_ht_60_year', '2013-12-02', '', '', null); INSERT INTO lamaereports VALUES ('25', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวานที่มีผลการตรวจ HbA1C มากกว่าหรือเท่ากับ 10', 'form1', 'report_dm_hba1c_min_10', '2013-12-06', '', '', null); INSERT INTO lamaereports VALUES ('26', '3', 'รายงานคนไข้คลินิคเบาหวาน(ไม่มีความดันร่วม) ตรวจแลป GFR', 'form1', 'report_dm_only_screen_lab_gfr', '2013-12-12', '', '', null); INSERT INTO lamaereports VALUES ('27', '10', 'รายงานการสั่งแลปจากผู้ป่วยใน', 'form3', 'report_ipd_lab_order', '2013-12-13', '', '', null); INSERT INTO lamaereports VALUES ('28', '3', 'รายงานคนไข้คลินิคเบาหวาน(มีความดันร่วม) ตรวจแลป GFR', 'form1', 'report_dm_with_ht_screen_lab_gfr', '2013-12-13', '', '', null); INSERT INTO lamaereports VALUES ('29', '4', 'รายงานคนไข้คลินิกความดันโลหิตสูง ได้รับการตรวจแลปชนิดต่างๆ', 'form6', 'report5', '2016-06-14', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('30', '7', 'รายงานผู้ป่วยที่มารับบริการที่ห้องฉุกเฉิน (ER)', 'form1', 'report_er_service', '2013-12-19', '', '', null); INSERT INTO lamaereports VALUES ('31', '5', 'รายงานจำนวนคนไข้ถุงลมโป่งพอง ได้รับการบริการที่ห้องฉุกเฉิน (ER)', 'form1', 'report4', '2016-06-15', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('32', '5', 'รายงานจำนวนคนไข้คลินิกถุงลมโป่งพอง ได้รับการ Admit', 'form1', 'report5', '2016-06-15', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('33', '3', 'รายงานคนไข้ทะเบียนเบาหวานที่มีความดันโลหิตร่วมด้วย', 'form2', 'report3', '2016-04-22', 'disable', 'dm', null); INSERT INTO lamaereports VALUES ('34', '4', 'รายงานทะเบียนคนไข้คลินิกความดันโลหิตสูง', 'form5', 'report1', '2016-06-09', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('35', '7', 'รายงานคนไข้ Re-Visit น้อยกว่าหรือเท่ากับ 48 ชั่วโมง ที่ ER', 'form1', 'report_er_revisit_48_hour', '2014-01-15', '', '', null); INSERT INTO lamaereports VALUES ('36', '9', 'รายงานประชากรแยกตามกลุ่มอายุ/เพศ รายหมู่บ้าน', 'form4', 'report_person_group_by_village', '2014-01-16', '', '', null); INSERT INTO lamaereports VALUES ('37', '9', 'รายงานประชากรที่อายุมากกว่า 100ปี ขึ้นไป', 'form2', 'report_person_age_more_100_year', '2014-01-16', '', '', null); INSERT INTO lamaereports VALUES ('38', '9', 'รายงานเด็กอายุ 0-6ปี เขตรับผิดชอบ ที่ได้รับวัคซีนชนิดต่างๆ', 'form2', 'report_person_0_6_vaccine_list', '2014-01-16', '', '', null); INSERT INTO lamaereports VALUES ('39', '6', 'รายงานจำนวนคนไข้คลินิกหอบหืด ได้รับการบริการที่ห้องฉุกเฉิน', 'form1', 'report4', '2016-06-17', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('40', '6', 'รายงานจำนวนคนไข้คลินิกหอบหืด Re-Admit ภายใน 28 วัน', 'form1', 'report8', '2016-06-20', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('41', '6', 'รายงานจำนวนคนไข้คลินิกหอบหืด Re-Visit ภายใน 48 ชั่วโมง ที่ OPD', 'form1', 'report6', '2016-06-20', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('42', '6', 'รายงานจำนวนคนไข้คลินิกหอบหืด Re-Visit ภายใน 48 ชั่วโมง ที่ ER', 'form1', 'report7', '2016-06-20', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('101', '5', 'รายงานจำนวนคนไข้คลินิกถุงลมโป่งพอง Re-Visit ภายใน 48 ชั่วโมง ที่ OPD', 'form1', 'report6', '2016-06-15', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('102', '5', 'รายงานจำนวนคนไข้คลินิกถุงลมโป่งพอง Re-Visit ภายใน 48 ชั่วโมง ที่ ER', 'form1', 'report7', '2016-06-15', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('103', '9', 'รายงานภาวโภชนาการเด็ก อายุ 0-6 ปี เฉพาะคนไทย', 'form1', 'report_person_0_6_nutrition_list', '2014-01-24', '', '', null); INSERT INTO lamaereports VALUES ('104', '11', 'รายงานสรุปหัตถการแพทย์แผนไทย ตามสิทธิ์การรักษา', 'form1', 'report_ttm_opitemrec', '2014-01-29', '', '', null); INSERT INTO lamaereports VALUES ('105', '7', 'รายงาน Head Injury (ER)', 'form1', 'report_er_head_injury', '2014-02-10', '', '', null); INSERT INTO lamaereports VALUES ('106', '1', 'รายงานผู้มารับบริการแยกตาม Diage V01 ถึง Y98', 'form1', 'report_drug_visit_v01y98', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('107', '1', 'รายงานผู้มารับบริการแยกตาม Diage A00 ถึง A69', 'form1', 'report_drug_visit_A00A69', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('108', '1', 'รายงานผู้มารับบริการแยกตาม Diage J069', 'form1', 'report_drug_visit_J069', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('109', '1', 'รายงานผู้มารับบริการแยกตาม Diage A099', 'form1', 'report_drug_visit_A099', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('110', '1', 'รายงานผู้มารับบริการแยกตาม Diage K529', 'form1', 'report_drug_visit_K529', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('111', '8', 'รายงานผู้มารับบริการแยกตามกลุ่มรหัสวินิจฉัยโรค และมีการสั่งใช้ยา Antibiotic', 'form8', 'report2', '2016-08-09', 'enable', 'pharmacy', null); INSERT INTO lamaereports VALUES ('112', '8', 'รายงานผู้มารับบริการแยกตาม Diage A00 ถึง A69 และมีการสั่งใช้ยา Antibiotic', 'form1', 'report_drug_visit_A00A69_antibiotic', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('113', '8', 'รายงานผู้มารับบริการแยกตาม Diage J069 และมีการสั่งใช้ยา Antibiotic', 'form1', 'report_drug_visit_J069_antibiotic', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('114', '8', 'รายงานผู้มารับบริการแยกตาม Diage A099 และมีการสั่งใช้ยา Antibiotic', 'form1', 'report_drug_visit_A099_antibiotic', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('115', '8', 'รายงานผู้มารับบริการแยกตาม Diage K529 และมีการสั่งใช้ยา Antibiotic', 'form1', 'report_drug_visit_K529_antibiotic', '2014-02-26', '', '', null); INSERT INTO lamaereports VALUES ('116', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า BPS ระหว่าง 121 ถึง 139 และ BPD <= 89 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_15_34_bp_1_list', '2014-03-04', '', '', null); INSERT INTO lamaereports VALUES ('117', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า BPS ระหว่าง 121 ถึง 139 และ BPD <= 89 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_35_59_bp_1_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('118', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60ปีขึ้นไป มีค่า BPS ระหว่าง 121 ถึง 139 และ BPD <= 89 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_60_year_bp_1_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('119', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า BPS <= 120 และ ค่า BPD อยู่ระหว่าง 81-89 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_15_34_bp_2_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('120', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า BPS <= 120 และ ค่า BPD อยู่ระหว่าง 81-89 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_35_59_bp_2_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('121', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปีขึ้นไป มีค่า BPS <= 120 และ ค่า BPD อยู่ระหว่าง 81-89 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_60_year_bp_2_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('122', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า DTX ระหว่าง 100 ถึง 125 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_15_34_dtx_1_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('123', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า DTX ระหว่าง 100 ถึง 125 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_35_59_dtx_1_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('124', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปีขึ้นไป มีค่า DTX ระหว่าง 100 ถึง 125 (สีเขียวอ่อน)', 'form1', 'report_screen_dm_ht_60_year_dtx_1_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('137', '1', 'รายงานอาการคล้ายไข้หวัดใหญ่ (ILI)', 'form1', 'report_count_visit_by_date', '2014-04-25', '', '', null); INSERT INTO lamaereports VALUES ('125', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า DTX > 126 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_15_34_dtx_2_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('126', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า DTX > 126 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_35_59_dtx_2_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('127', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปีขึ้นไป มีค่า DTX > 126 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_60_year_dtx_2_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('128', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า BPS >= 140 และ BPD >= 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_15_34_bp_3_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('129', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า BPS >= 140 และ BPD >= 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_35_59_bp_3_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('130', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปีขึ้นไป มีค่า BPS >= 140 และ BPD >= 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_60_year_bp_3_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('131', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า BPS >= 140 และ BPD < 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_15_34_bp_4_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('132', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า BPS >= 140 และ BPD < 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_35_59_bp_4_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('133', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปีขึ้นไป มีค่า BPS >= 140 และ BPD < 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_60_year_bp_4_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('134', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 15 - 34 ปี มีค่า BPS <= 140 และ BPD >= 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_15_34_bp_5_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('135', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 35 - 59 ปี มีค่า BPS <= 140 และ BPD >= 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_35_59_bp_5_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('136', '9', 'รายงานรายชื่อคนไข้กลุ่มเสี่ยงที่ต้องคัดกรองโรคเบาหวาน ความดัน อายุ 60 ปีขึ้นไป มีค่า BPS <= 140 และ BPD >= 90 (สีเขียวเข้ม)', 'form1', 'report_screen_dm_ht_60_year_bp_5_list', '2014-03-05', '', '', null); INSERT INTO lamaereports VALUES ('138', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(ไม่มีความดันร่วม) ที่มีผลการตรวจ HbA1C น้อยกว่าหรือเท่ากับ 7', 'form1', 'report_dm_only_hba1c_min_7', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('139', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ที่มีผลการตรวจ HbA1C น้อยกว่าหรือเท่ากับ 7', 'form1', 'report_dm_with_ht_hba1c_min_7', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('140', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(ไม่มีความดันร่วม) ที่ได้รับการตรวจ Urine Protein', 'form1', 'report_dm_only_urine_protein', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('141', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ที่ได้รับการตรวจ Urine Protein', 'form1', 'report_dm_with_ht_urine_protein', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('142', '4', 'รายงานจำนวนคนไข้คลินิคความดัน(ไม่มีเบาหวานร่วม) ที่ได้รับการตรวจ Urine Protein', 'form1', 'report_ht_only_urine_protein', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('143', '3', 'รายงานจำนวนคนไข้คลินิกเบาหวานที่ได้รับการตรวจตา', 'form3', 'report5', '2016-05-31', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('144', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ที่ได้รับการตรวจตา', 'form1', 'report_dm_with_ht_screen_eye', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('145', '3', 'รายงานจำนวนคนไข้คลินิกเบาหวานที่ได้รับการตรวจเท้า', 'form3', 'report6', '2016-05-31', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('146', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ที่ได้รับการตรวจเท้า', 'form1', 'report_dm_with_ht_screen_foot', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('147', '3', 'รายงานวิเคราะห์จำนวนคนไข้คลินิกเบาหวานได้รับการตรวจแลปชนิดต่างๆ', 'form4', 'report7', '2016-05-31', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('148', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) ได้รับการตรวจ HbA1C', 'form1', 'report_dm_with_ht_hba1c', '2014-05-08', '', '', null); INSERT INTO lamaereports VALUES ('149', '7', 'รายงานคนไข้จมน้ำทั้งหมด', 'form1', 'report_er_all_get_drowned', '2014-05-12', '', '', null); INSERT INTO lamaereports VALUES ('150', '7', 'รายงานคนไข้จมน้ำเฉพาะที่มารับบริการที่ ER', 'form1', 'report_er_get_drowned', '2014-05-12', '', '', null); INSERT INTO lamaereports VALUES ('151', '3', 'รายงานคนไข้คลินิคเบาหวาน(ไม่มีความดันร่วม) มีผล Microalbumin มากกว่าหรือเท่ากับ 20', 'form1', 'report_dm_only_microalbumin_max_20', '2014-05-12', '', '', null); INSERT INTO lamaereports VALUES ('152', '3', 'รายงานคนไข้คลินิคเบาหวาน(มีความดันร่วม) มีผล Microalbumin มากกว่าหรือเท่ากับ 20', 'form1', 'report_dm_with_ht_microalbumin_max_20', '2014-05-12', '', '', null); INSERT INTO lamaereports VALUES ('153', '3', 'รายงานจำนวนครั้งคนไข้คลินิกเบาหวานที่มี Diag Hypoglycemia และได้รับการ Admit', 'form3', 'report8', '2016-06-02', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('154', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) Hypoglycemia', 'form1', 'report_dm_with_ht_hypoglycemia', '2014-05-30', '', '', null); INSERT INTO lamaereports VALUES ('155', '3', 'รายงานจำนวนครั้งคนไข้คลินิกเบาหวาน ที่มี Diag Hyperglycemia และได้รับการ Admit', 'form3', 'report9', '2016-06-02', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('156', '3', 'รายงานจำนวนคนไข้คลินิคเบาหวาน(มีความดันร่วม) Hyperglycemia', 'form1', 'report_dm_with_ht_hyperglycemia', '2014-05-30', '', '', null); INSERT INTO lamaereports VALUES ('157', '5', 'รายงานจำนวนคนไข้ COPD ได้รับการเป่า PEFR', 'form1', 'report_copd_screen_pefr', '2014-06-03', '', '', null); INSERT INTO lamaereports VALUES ('158', '6', 'รายงานจำนวนคนไข้ Asthma ได้รับการเป่า PEFR', 'form1', 'report_asthma_screen_pefr', '2014-06-03', '', '', null); INSERT INTO lamaereports VALUES ('159', '1', 'รายงานจำนวนการให้บริการคนไข้แยกตามแผนกหลัก', 'form1', 'report_count_visit_by_main_dep', '2014-06-12', '', '', null); INSERT INTO lamaereports VALUES ('160', '1', 'รายงานสรุปการรับบริการคนไข้ OPD แยกรายเดือน', 'form1', 'report_count_visit_opd', '2014-06-13', '', '', null); INSERT INTO lamaereports VALUES ('161', '1', 'รายงานสรุปการรับบริการคนไข้ทั้ง Ward แยกรายเดือน', 'form1', 'report_count_visit_ipd', '2014-06-13', '', '', null); INSERT INTO lamaereports VALUES ('162', '1', 'รายงานทะเบียนผู้เสียชีวิต', 'form1', 'report_death', '2014-06-18', '', '', null); INSERT INTO lamaereports VALUES ('163', '5', 'รายงานคนไข้ COPD ได้รับบริการที่ ER (ตรวจสอบการใส่ท่อหลอดลมคอ)', 'form1', 'report_copd_er_service_tube_code_224', '2014-07-09', '', '', null); INSERT INTO lamaereports VALUES ('164', '6', 'รายงานคนไข้ Asthma ได้รับบริการที่ ER (ตรวจสอบการใส่ท่อหลอดลมคอ)', 'form1', 'report_asthma_er_service_tube_code_224', '2014-07-09', '', '', null); INSERT INTO lamaereports VALUES ('165', '4', 'รายงานจำนวนคนไข้ความดันได้รับการตรวจ Lipid Profile', 'form1', 'report_ht_screen_lab_code_lipid_Profile', '2014-07-17', '', '', null); INSERT INTO lamaereports VALUES ('166', '3', 'รายงานจำนวนคนไข้เบาหวาน(ไม่มีความดันร่วม) ได้รับการตรวจ Lipid Profile', 'form1', 'report_dm_only_screen_lab_code_lipid_Profile', '2014-07-17', '', '', null); INSERT INTO lamaereports VALUES ('167', '3', 'รายงานจำนวนคนไข้เบาหวาน(มีความดันร่วม) ได้รับการตรวจ Lipid Profile', 'form1', 'report_dm_with_ht_screen_lab_code_lipid_Profile', '2014-07-17', '', '', null); INSERT INTO lamaereports VALUES ('168', '3', 'รายงานจำนวนคนไข้เบาหวาน CKD Diag N181 - N185', 'form3', 'report10', '2016-06-02', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('169', '3', 'รายงานจำนวนคนไข้เบาหวาน(มีความดันร่วม) CKD Diag N170-N19', 'form1', 'report_dm_with_ht_ckd', '2014-07-29', '', '', null); INSERT INTO lamaereports VALUES ('170', '4', 'รายงานจำนวนคนไข้ความดัน CKD Diag N170-N19', 'form1', 'report6', '2016-06-14', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('171', '3', 'รายงานจำนวนคนไข้เบาหวาน + โรคหัวใจ', 'form2', 'report11', '2016-06-03', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('172', '3', 'รายงานจำนวนคนไข้เบาหวาน(มีความดันร่วม) + โรคหัวใจ', 'form2', 'report_dm_with_ht_stroke', '2014-07-29', '', '', null); INSERT INTO lamaereports VALUES ('173', '4', 'รายงานจำนวนคนไข้ความดัน + โรคหัวใจ', 'form5', 'report7', '2016-06-14', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('174', '3', 'รายงานจำนวนคนไข้เบาหวาน + หลอดเลือดสมอง', 'form2', 'report12', '2016-06-03', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('175', '3', 'รายงานจำนวนคนไข้เบาหวาน(มีความดันร่วม) + หลอดเลือดสมอง', 'form2', 'report_dm_with_ht_mi_chf', '2014-07-29', '', '', null); INSERT INTO lamaereports VALUES ('176', '4', 'รายงานจำนวนคนไข้ความดัน + หลอดเลือดสมอง', 'form5', 'report8', '2016-06-14', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('177', '8', 'รายงาน High Alert Drug', 'form1', 'report4', '2016-08-09', 'enable', 'pharmacy', null); INSERT INTO lamaereports VALUES ('178', '1', 'รายงานการรับบัตรตรวจโรค OPD Card', 'form1', 'report_receive_opd_card', '2014-09-03', '', '', null); INSERT INTO lamaereports VALUES ('179', '10', 'รายงานสรุปจำนวนผู้ป่วย IPD Dischare แยกตามวิธีการจำหน่าย', 'form1', 'report_count_discharge_ipd_dchtype', '2014-09-08', '', '', null); INSERT INTO lamaereports VALUES ('180', '7', 'รายงานคนไข้ Re-Visit น้อยกว่า 48 ชั่วโมงที่ ER ตัดคนไข้นัดและตัด Diagหลักที่เป็นฉีดยาทำแผล', 'form1', 'report_er_revisit_48_hour_ovstist_01', '2014-09-12', '', '', null); INSERT INTO lamaereports VALUES ('181', '2', 'รายงานคนไข้ Re-Visit น้อยกว่า 48 ชั่วโมงที่ OPD ตัดคนไข้นัดและตัด Diagหลักที่เป็นฉีดยาทำแผล', 'form1', 'report_opd_revisit_48_hour_ovstist_01', '2014-09-12', '', '', null); INSERT INTO lamaereports VALUES ('182', '3', 'รายงานทะเบียนคนไข้เบาหวานรายใหม่ (เงื่อนไขตามวันที่ลงทะเบียน)', 'form3', 'report13', '2016-06-03', 'enable', 'dm', ''); INSERT INTO lamaereports VALUES ('183', '3', 'รายงานทะเบียนคนไข้เบาหวานรายใหม่(มีความดันร่วม)', 'form1', 'report_dm_with_ht_register_new', '2014-09-19', 'disable', '', null); INSERT INTO lamaereports VALUES ('184', '4', 'รายงานทะเบียนคนไข้ความดันรายใหม่ (ตามวันที่ลงทะเบียน)', 'form1', 'report9', '2016-06-14', 'enable', 'ht', ''); INSERT INTO lamaereports VALUES ('185', '10', 'รายงานคนไข้ IPD ที่มี Diag A419', 'form1', 'report_ipd_diag_A419', '2014-10-10', '', '', null); INSERT INTO lamaereports VALUES ('186', '1', 'รายงานผู้ป่วย Admit ที่ IPD ทั้งหมด', 'form1', 'report_ipd_admit', '2014-10-10', '', '', null); INSERT INTO lamaereports VALUES ('187', '13', 'รายงานผู้ป่วย OPD Discharge', 'form1', 'report_dch_physic', '2014-10-15', '', '', null); INSERT INTO lamaereports VALUES ('188', '12', 'จำนวนคนไข้ DM WITH HTได้รับการตรวจสุขภาพช่องปาก', 'form1', 'report_dent_0001', '2014-10-17', '', '', null); INSERT INTO lamaereports VALUES ('189', '1', 'รายงานตรวจสอบ RW ที่มีค่าว่าง (ค่า Null)', 'form1', 'report_count_rw_null', '2014-10-27', '', '', null); INSERT INTO lamaereports VALUES ('190', '1', 'รายงานการตรวจสอบเวชระเบียนผู้ป่วยนอก(OPD CARD)เบื้องต้น', 'form1', 'report_count_complete_folder', '2014-10-27', '', '', null); INSERT INTO lamaereports VALUES ('191', '7', 'รายงานสรุปยอดผู้รับบริการแยกประเภทตามความฉุกเฉิน', 'form1', 'report_er_pt_type', '2014-12-18', '', '', null); INSERT INTO lamaereports VALUES ('192', '7', 'รายงานสรุปยอดผู้รับบริการ แยกตามประเภทคลินิค', 'form1', 'report_er_spclty', '2014-12-18', '', '', null); INSERT INTO lamaereports VALUES ('193', '10', 'รายงานสรุปจำนวนวันนอนเฉพาะ (VIP 2-6) ผู้ป่วยใน', 'form1', 'report_count_visit_ipd_only', '2015-01-14', '', '', null); INSERT INTO lamaereports VALUES ('194', '3', 'รายงานผู้ป่วยเบาหวานที่มีค่าน้ำตาล (FBS,DTX) 70 -140', 'form1', 'report_dm_fbs', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('195', '3', 'รายงานผู้ป่วยเบาหวานที่มีค่าน้ำตาล (FBS,DTX) ระหว่าง 141 - 180', 'form1', 'report_dm_fbs141-180', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('196', '3', 'รายงานผู้ป่วยเบาหวานที่มีค่าน้ำตาล(FBS,DTX) มากกว่าหรือเท่ากับ 181 ขึ้นไป', 'form1', 'report_dm_fbs_181up', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('197', '3', 'รายงานผู้ป่วยเบาหวานที่มีค่าน้ำตาล (FBS,DTX) น้อยกว่า 70', 'form1', 'report_dm_fbs_min_70', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('198', '4', 'รายงานผู้ป่วยความดันที่มีค่า bps ระหว่าง 90 - 139', 'form1', 'report_ht_bps_90-139', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('199', '4', 'รายงานผู้ป่วยความดันที่มีค่า bps ระหว่าง 140 - 179', 'form1', 'report_ht_bps_140-179', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('200', '4', 'รายงานผู้ป่วยความดันที่มีค่า bps 180 ขึ้นไป', 'form1', 'report_ht_bps_180up', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('201', '4', 'รายงานผู้ป่วยความดันที่มีค่า bps ต่ำกว่า 90', 'form1', 'report_ht_bps_min_90', '2015-05-20', '', '', null); INSERT INTO lamaereports VALUES ('202', '6', 'รายงานคนไข้ทะเบียนคลินิกหอบหืด', 'form5', 'report1', '2016-06-17', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('203', '5', 'รายงานคนไข้ทะเบียนคลินิกถุงลมโป่งพอง', 'form5', 'report1', '2015-05-25', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('204', '8', 'รายงานมูลค่าการใช้ยาแพทย์แผนไทย(ตามราคาทุน)', 'form1', 'report_ttm_cost_price', '2015-05-27', '', '', null); INSERT INTO lamaereports VALUES ('205', '8', 'รายงานมูลค่าการใช้ยาแพทย์แผนไทย(ตามราคาขาย)', 'form1', 'report_ttm_sale_price', '2015-05-27', '', '', null); INSERT INTO lamaereports VALUES ('206', '8', 'รายงานจำนวน visit ที่มีการสั่งใช้ยาแพทย์แผนไทย', 'form1', 'report_ttm_count_visit', '2015-05-27', '', '', null); INSERT INTO lamaereports VALUES ('207', '8', 'รายงานจำนวน admit ที่มีการสั่งใช้ยาแพทย์แผนไทย', 'form1', 'report_ttm_count_admit', '2015-05-27', '', '', null); INSERT INTO lamaereports VALUES ('208', '8', 'รายงานมูลค่าการใช้ยาทั้งหมดของ รพ.ละแม (ตามราคาทุน)', 'form1', 'report_hospital_cost_price', '2015-05-27', '', '', null); INSERT INTO lamaereports VALUES ('209', '8', 'รายงานมูลค่าการใช้ยาทั้งหมดของ รพ.ละแม (ตามราคาขาย)', 'form1', 'report_hospital_sale_price', '2015-05-27', '', '', null); INSERT INTO lamaereports VALUES ('210', '12', 'รายการการส่งต่อ (Refer) โดยห้องฟัน', 'form1', 'report_dent_refer', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('211', '3', 'รายงานคนไข้เบาหวาน(DM ONLY) ที่มีค่า CVD เท่ากับ 4', 'form1', 'report_dm_only_cvd4', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('212', '3', 'รายงานคนไข้เบาหวาน(DM ONLY) ที่มีค่า CVD เท่ากับ 5', 'form1', 'report_dm_only_cvd5', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('213', '3', 'รายงานคนไข้เบาหวาน(DM WITH HT) ที่มีค่า CVD เท่ากับ 4', 'form1', 'report_dm_with_ht_cvd4', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('214', '3', 'รายงานคนไข้เบาหวาน(DM WITH HT) ที่มีค่า CVD เท่ากับ 5', 'form1', 'report_dm_with_ht_cvd5', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('215', '4', 'รายงานคนไข้ความดัน(HT ONLY) ที่มีค่า CVD เท่ากับ 4', 'form1', 'report_ht_only_cvd4', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('216', '4', 'รายงานคนไข้ความดัน(HT ONLY) ที่มีค่า CVD เท่ากับ 5', 'form1', 'report_ht_only_cvd5', '2015-07-06', '', '', null); INSERT INTO lamaereports VALUES ('217', '5', 'รายงานจำนวนคนไข้คลินิกถุงลมโป่งพอง แยกกลุ่มผู้ป่วยตาม Gold 11', 'form7', 'report8', '2016-06-17', 'enable', 'copd', ''); INSERT INTO lamaereports VALUES ('218', '5', 'รายงานจำนวนคนไข้ COPD สถานะติดตามการรักษา แยกกลุ่มผู้ป่วยตาม Gold 11 State B', 'form1', 'report_copd_gold_B', '2015-07-14', '', '', null); INSERT INTO lamaereports VALUES ('219', '5', 'รายงานจำนวนคนไข้ COPD สถานะติดตามการรักษา แยกกลุ่มผู้ป่วยตาม Gold 11 State C', 'form1', 'report_copd_gold_C', '2015-07-14', '', '', null); INSERT INTO lamaereports VALUES ('220', '5', 'รายงานจำนวนคนไข้ COPD สถานะติดตามการรักษา แยกกลุ่มผู้ป่วยตาม Gold 11 State D', 'form1', 'report_copd_gold_D', '2015-07-14', '', '', null); INSERT INTO lamaereports VALUES ('221', '1', 'รายงานผู้ป่วย IPD ที่ไม่ยังได้ลงผลวินิจฉัยหลัก', 'form1', 'report_ipd_no_pdx', '2016-01-15', '', '', null); INSERT INTO lamaereports VALUES ('222', '6', 'รายงานจำนวนคนไข้หอบหืด ได้รับการ Admit', 'form1', 'report5', '2016-06-20', 'enable', 'asthma', ''); INSERT INTO lamaereports VALUES ('229', '4', 'รายงานจำนวนคนไข้ความดัน CVD RISK', 'form1', 'report10', '2016-08-17', 'enable', 'ht', null); INSERT INTO lamaereports VALUES ('228', '3', 'รายงานจำนวนคนไข้เบาหวาน CVD RISK', 'form3', 'report14', '2016-08-17', 'enable', 'dm', null); INSERT INTO lamaereports VALUES ('226', '8', 'รายงานผลการใช้ยาปฏิชีวนะ ในผู้ป่วยติดเชื้อดื้อยา', 'form1', 'report5', '2016-08-15', 'enable', 'pharmacy', null); INSERT INTO lamaereports VALUES ('227', '7', 'รายงานป้องกันและแก้ไขปัญหาอุบัติเหตุทางถนน', 'form1', 'report4', '2016-08-17', 'enable', 'emergen', null); INSERT INTO lamaereports VALUES ('223', '7', 'รายงานจำนวนครั้งการสั่งใช้ยา TRCS', 'form1', 'report1', '2016-06-22', 'enable', 'emergen', ''); INSERT INTO lamaereports VALUES ('224', '7', 'รายงานจำนวนครั้งการสั่งใช้ยา PCEC', 'form1', 'report2', '2016-06-22', 'enable', 'emergen', ''); INSERT INTO lamaereports VALUES ('225', '7', 'รายงานจำนวนครั้งการสั่งใช้ยา TETANUS', 'form1', 'report3', '2016-06-22', 'enable', 'emergen', '');
<filename>software/cabio-database/scripts/sql_loader/no_longer_used/indexes/zstg_snp_reporter.drop.sql /*L Copyright SAIC Distributed under the OSI-approved BSD 3-Clause License. See http://ncip.github.com/cabio/LICENSE.txt for details. L*/ drop index ZSTG_SNPRTER_ID; drop index ZSTG_SNPRTER_NAME; drop index ZSTG_SNPRTER_MICROARRAY; drop index ZSTG_SNPRTER_SNP_ID; drop index ZSTG_SNPRTER_PHAST_CONS; drop index ZSTG_SNPRTER_CHROMOSOME; drop index ZSTG_SNPRTER_CHR_START; drop index ZSTG_SNPRTER_CHR_STOP; drop index ZSTG_SNPRTER_CYTO_START; drop index ZSTG_SNPRTER_CYTO_STOP; --EXIT;
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Mar 12, 2022 at 03:13 AM -- Server version: 10.5.13-MariaDB-cll-lve -- 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: `u423984510_weargloeshoes` -- -- -------------------------------------------------------- -- -- Table structure for table `accounts` -- CREATE TABLE `accounts` ( `id` bigint(20) UNSIGNED NOT NULL, `description_company` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_whatsapp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link_facebook` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link_instagram` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link_tokopedia` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link_shopee` 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 for table `accounts` -- INSERT INTO `accounts` (`id`, `description_company`, `link_whatsapp`, `link_facebook`, `link_instagram`, `link_tokopedia`, `link_shopee`, `created_at`, `updated_at`) VALUES (3, '<p>Sepatu handmade berbahan kulit asli dengan di lengkapi anti jamur dan bebas kanker, Bebas custom model apa saja dengan tingkat kemiripan 90-99% bahkan bisa lebih bagus Langsung di produksi oleh pengrajin- pengrajin kami dengan detail yang sangat rapi dan teliti ( handmade ) Lining / bagian dalam sepatu yang lembut dan hangat sangat cocok di pakai untuk winter dan autumn Memberikan garansi reparasi 1 tahun untuk semua produk sepatu kulit kami Sol sepatu terbuat dari bahan rubber/karet anti slip Bisa request ukuran sangat besar, bisa menyesuaikan bentuk kaki dan lebar kaki</p>', '85856577395', 'https://www.facebook.com/gloeshoes.leather/', 'https://www.instagram.com/gloeshoes.leather/', 'https://www.tokopedia.com/gloeshoes.leather/', 'https://shopee.co.id/gloeshoes.leather', '2021-07-26 04:21:51', '2022-03-08 14:51:30'); -- -------------------------------------------------------- -- -- Table structure for table `articles` -- CREATE TABLE `articles` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `image_article` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contents` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `articles` -- INSERT INTO `articles` (`id`, `title`, `image_article`, `contents`, `active`, `created_at`, `updated_at`) VALUES (1, 'Cara Merawat Sepatu High Heels Berbahan Kulit', '1636750030.jpg', '<p>Bersihkan Setelah Digunakan Sama dengan anda memakai baju atau busana kesayangan anda, sepatu high heels juga sama perawatannya.</p>\r\n<p>&nbsp;</p>\r\n<p>Setelah menggunakannya, anda harus membersihkan kotoran atau debu yang menempel di sepatu tersebut. Jangan gunakan air dulu! Lebih baik anda lap dengan tisu atau kain biasa. Setelahnya baru anda siapkan air hangat. Celupkan kain pembersih kemudian anda lap sepatu high heels anda.</p>\r\n<p>&nbsp;</p>\r\n<p>Keringkan sepatu dibawah sinar matahari sampai kering. Oleskan Moisturizer Setelah sepatu kulit anda kering, oleskan moisturizer atau pelembab sebelum anda menyimpan high heels anda. Kegunaan memberikan moisturizer pada sepatu adalah untuk menjaga warna sepatu agar tidak mudah pudar. Oleskan secara merata pada bagian sepatu. Kemudian, anda bisa menyimpannya.</p>\r\n<p>&nbsp;</p>\r\n<p>Tempat Sepatu Khusus Berikan tempat sepatu khusus untuk sepatu-sepatu anda. Dan untuk sepatu kulit, kalau bisa jangan ditumpuk dengan sepatu anda lainnya. Jangan sampai anda menyimpan sepatu kulit yang tidak benar-benar kering atau dalam keadaan lembab. Ini bisa menyebabkan timbulnya jamur dan sepatu yang pecah-pecah. Pastikan high heels anda kering sempurna, oleskan pelembab, kemudian bungkus dengan plastik dan masukan ke dalam kotak sepatu.</p>\r\n<p>&nbsp;</p>\r\n<p>Hanya tiga step untuk merawat sepatu high heels kesayangan anda. Heii, sekarang sepatu high heels berbahan kulit cukup mahal loh, jadi sayangkan kalau cepat rusak karena anda tidak pintar menjaganya. Rajin itulah kuncinya. Setelah dipakai biarkan sebentar, selagi menunggu anda juga bisa beristirahat, kemudian baru anda ikuti tiga cara diatas. Dan jika anda sedikit bingung tentang moisturizer atau pelembab untuk sepatu kulit anda, anda bisa menggantinya dengan lotion yang mengandung pelembab. Ini juga bagus untuk perawatan sepatu kulit.</p>\r\n<p>&nbsp;</p>\r\n<p>Nah, bagaimana apakah anda siap untuk mendapatkan sepatu kulit dan siap untuk menjaganya agar tetap indah walaupun sering anda pakai. Semoga artikel ini dapat membantu.</p>', 1, '2021-11-12 13:47:10', '2021-12-09 06:06:38'), (2, 'Ini Dia Tips Merawat Sepatu Wanita Tanpa Repot', '1637628424.jpg', '<p>Bersihkan dengan Cara yang Tepat Dengan beragam jenis sepatu, tentu berbeda cara membersihkannya. Hal itu bergantung pada jenis materialnya.</p>\r\n<p>&nbsp;</p>\r\n<p>Namun, pada dasarnya, kamu tidak perlu sering-sering mencuci sepatu. Khawatir warnanya nanti akan pudar. Jika ingin membersihkan noda, kamu bisa terapkan hal berikut! Flat shoes berbahan kulit sintetis: Kamu bisa gunakan pembersih kaca untuk membersihkan flat shoes dari kulit sintesis ini.</p>\r\n<p>&nbsp;</p>\r\n<p>Sebab, kandungannya sama-sama cocok, yaitu untuk permuakaan yang licin. Sehingga mampu membersihkan noda dan menjadikannya mengkilap kembali. Suede shoes: Sebelum mengenakannya, pastikan kamu telah menyemprotkan spray pelindung kulit suede. Kemudian untuk membersihkannya kamu bisa menggunakan suede brush khusus. Karena bahan ini sangat rentan, pastikan kamu menggosoknya perlahan.</p>\r\n<p>&nbsp;</p>\r\n<p>Leather shoes: Keampuhan cuka dalam menghilangkan noda tidak bisa diragukan. Bukan hanya bisa menghilangkan noda untuk jeans, ternyata bisa juga diaplikasikan untuk sepatu berbahan kulit. Cukup campurkan cuka dengan air dan semprotkan di permukaan sepatu secara merata. Canvas shoes: Kalau untuk sepatu berbahan kanvas, kamu bisa gunakan baking soda. Caranya gunakan 1 sdm baking sodam 1 sdm cuka putih, serta 1 sdm air panas. Lalu kamu campurkan dan perlahan usapkan ke permukaan sepatu menggunakan sikat gigi.</p>', 1, '2021-11-22 17:47:04', '2021-12-09 06:06:07'), (3, 'Tips Merawat Sepatu Kulit', '1637641110.jpg', '<p>Sepatu merupakan bagian dari fashion kita sehari-hari. Begitu beragam jenis dan bahan sepatu yang diproduksi, tak terkecuali sepatu boots. Sepatu boots memerlukan perawatan yang agak khusus dibandingkan sepatu lainnya.</p>\r\n<p>&nbsp;</p>\r\n<p>Bahan sepatu boots memang didesain supaya kaki terasa hangat dan terlindungi. Berikut tips-tips mudah untuk merawat sepatu boots agar tahan lama.</p>\r\n<p>&nbsp;</p>\r\n<p>Kenali Bahan Sepatu Bootsmu</p>\r\n<p>&nbsp;</p>\r\n<p>Ketika membeli sepatu boots, kenalilah dulu bahannya. Bahan yang berbeda membutuhkan perawatan berbeda. Kalau boots berbahan suede, maka kamu hanya perlu membersihkannya pakai lap kering atau sikat khusus sepatu.</p>\r\n<p>&nbsp;</p>\r\n<p>Apabila berbahan kulit, maka hindari terkena basah dan jemur di bawah terik matahari karena akan mengurangi umur sepatu boots. Yang pasti, sepatu boots sebaiknya tidak digunakan ketika musim penghujan.</p>\r\n<p>&nbsp;</p>\r\n<p>Pakailah Kaus Kaki yang Kering</p>\r\n<p>&nbsp;</p>\r\n<p>Tips kedua ini tidak hanya digunakan untuk merawat sepatu boots. Tapi dapat kamu gunakan untuk merawat bagian dalam sepatu yang tertutup, seperti sneakers. Kaus kaki yang basah membuat bagian dalam sepatumu menjadi lembab dan berbau.</p>\r\n<p>&nbsp;</p>\r\n<p>Selain bagian dalam sepatu menjadi lembab, kaus kaki yang basah dapat membuat kaki menjadi berbau tidak sedap. Kaus kaki basah juga membuat bagian dalam sepatumu mudah berjamur.</p>\r\n<p>&nbsp;</p>\r\n<p>Selalu Bersihkan Sepatu Sesudah Pemakaian</p>\r\n<p>Setelah beraktivitas seharian menggunakan sepatu, kadang kita malas membersihkan sepatu dan langsung saja menaruhnya di tempat sepatu. Tapi tahukah kamu, bahwa sepatu boots akan lebih awet kalau kamu membersihkannya setelah dipakai.</p>\r\n<p>&nbsp;</p>\r\n<p>Kalau sepatu boots tidak basah, kamu dapat membersihkannya menggunakan sikat khusus sepatu untuk membersihkan debu dan kotoran yang menempel di sepatu. Namun, apabila sepatu bootsmu basah, usahakan untuk menjemurnya di bawah sinar matahari terik.</p>\r\n<p>&nbsp;</p>\r\n<p>Selain untuk mengeringkan, sinar matahari dapat menghilangkan bau lembab di dalam sepatumu.</p>\r\n<p>&nbsp;</p>\r\n<p>Semprotkan Pewangi Khusus Sepatu ke Bagian Dalam Sepatu</p>\r\n<p>&nbsp;</p>\r\n<p>Jika kamu sudah menghindari pemakaian kaus kaki basah tapi bagian dalam sepatu masih berbau tidak sedap, maka yang harus kamu lakukan adalah menyemprotkan cairan pewangi khusus sepatu yang tersedia di toko atau supermarket.</p>\r\n<p>&nbsp;</p>\r\n<p>Sebaiknya penyemprotan cairan pewangi dilakukan saat boots benar-benar kering dan tidak sedang digunakan untuk berpergian.</p>\r\n<p>&nbsp;</p>\r\n<p>Simpanlah Boots di Dalam Kotak Sepatu</p>\r\n<p>Hal terakhir yang dapat kamu lakukan adalah menyimpan sepatu di dalam kotak sepatu yang terlebih dahulu diberikan silica gel. Mengapa Silica Gel sangat penting? Alasannya karena silica gel menyerap kelembaban sepatu dan menjaganya tetap kering, sehingga bebas dari jamur.</p>\r\n<p>&nbsp;</p>\r\n<p>Selain menjaga boots tetap awet, menyimpannya di dalam kotak membuat sepatumu rapi dan tertata. Kamu bisa mencoba tips ini di rumah, semoga bermanfaat!</p>\r\n<p>&nbsp;</p>\r\n<p>Jika kamu tertarik sepatu kulit, pesan sekarang juga di whatsapp 085856577395</p>', 1, '2021-11-22 17:47:15', '2021-12-09 07:34:49'), (4, 'Liburan ke Luar Negeri Saat Musim Dingin? Beberapa Style Fashion Ini Wajib Kamu Pilih', '1637640999.jpg', '<p>Indonesia hanya memiliki dua jenis musim yakni musim penghujan dan musim kemarau. Sesekali, kamu bisa juga loh jika ingin menikmati musim lain selain hujan dan panas. Caranya adalah dengan berlibur ke negara yang memiliki 4 musim.</p>\r\n<p>&nbsp;</p>\r\n<p>Seperti di bulan-bulan akhir tahun seperti sekarang ini. Di negara dengan 4 musim seperti Korea dan Jepang, saat ini sedang musim dingin alias musim salju. Kamu yang ingin mencoba bagaimana rasanya musim dingin bisa mencoba liburan ke negara tersebut.</p>\r\n<p>&nbsp;</p>\r\n<p>Nah, untuk berwisata ke negara dengan musim dingin tentu saja kamu tak bisa memiliki persiapan yang minim. Kamu wajib memiliki persiapan matang agar siap menghadapi cuaca ekstrim yang dinginnya tentu berbeda dengan negara kita. Salah satu persiapan yang wajib kamu lakukan adalah persiapan pakaiannya.. Gloeshoes memberikan tips padu padan busana yang keren buat kamu nih!</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Gaya Timeless dengan Padanan Jeans dan Coat Panjang</p>\r\n<p>Kalau sedang liburan tentu saja wajib mengambil foto sebagai kenang-kenangan. Apalagi di zaman serba sosial media seperti sekarang. sangat sayang kalu kemu ke luar negeri namun belum dipublikasikan.</p>\r\n<p>&nbsp;</p>\r\n<p>Supaya timeline sosial media kamu makin menarik, tentu saja kamu wajib memakai pakaian yang keren. Saat liburan selama musim dingin kamu bisa kenakan gaya timeless yang keren. Padankan saja celana jeans dengan coat panjang. Untuk coatnya kamu bisa pilih yang memiliki pattern supaya tak terkesan monoton. Sebagai dalam coat, kamu bisa kenakan sweater tebal atau baju berkerah turtleneck.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Gaya Chic dengan Legging, Midi Skirt dan Trench Coat</p>\r\n<p>Liburan di musim dingin jangan sampai bikin kamu mati gaya ya. Meski hawa sedang dingin, kamu tetap bisa bergaya keren kok. Ada banyak outer yang bisa kamu kenakan untuk bikin gaya liburan kamu makin stylish.</p>\r\n<p>&nbsp;</p>\r\n<p>Contohnya, kamu bisa kenakan legging yang dikombinasi dengan midi skirt atau mini skirt. Selanjutnya padukan dengan turtleneck tee atau blouse. Jangan lupa kenakan cardigan yang bahannya bisa menghangatkan seperti wol. Kenakan beanie hat untuk melengkapi gaya chic kamu ya.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Gaya Simpel dengan Skinny Jeans, Long Coat dan Boots</p>\r\n<p>Bagi kamu yang tak suka ribet dengan pemilihan fashion item, kamu juga tetap bisa keren kok. Caranya mudah banget. Kamu bisa bergaya simpel memakai skinny jeans dan long coats. Sebagai padanannya kamu bisa kenakan turtleneck long sleeve untuk atasan. Jangan lupa pakai sepatu boots supaya kaki kamu tetap hangat. Kenakan juga syal supaya leher kamu tetap hangat dan gaya kamu makin fashionable.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Tampil feminin dengan Midi Skirt, Turtleneck Sweater dan Boots</p>\r\n<p>Mau tampil feminin di cuaca yang super dingin? Kamu bisa tetap kenakan rok loh saat liburan. Kombinasikan turtleneck sweater dengan midi skirt. Sebagai alas kakinya kenakan sepatu boots supaya kaki tetap hangat. Kamu bisa juga memakai sarung tangan bahan wol serta earmuffs supaya tubuh kamu tetap terasa hangat.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Jaket Bulu Tebal Musim Dingin Wanita Winter Fur Jacket Coat Women</p>\r\n<p>Untuk berwisata saat musim dingin, mustahil rasanya jika kamu tak memakai jaket. Persiapkan jaket yang tepat untuk menghalau rasa dingin. Jangan samakan dinginnya dengan rasa dingin hujan di Indonesia ya, karena apstinya suhunya jauh lebih dingin.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Nah, untuk model sepatu boot musim dingin kamu bisa custom model dengan bahan yang hangat seperti high boot dari Gloeshoes Leather :)</p>\r\n<p>&nbsp;</p>', 1, '2021-11-22 17:52:34', '2021-12-09 07:31:00'); -- -------------------------------------------------------- -- -- Table structure for table `customerservices` -- CREATE TABLE `customerservices` ( `id` bigint(20) UNSIGNED NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description_customer_service` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customerservices` -- INSERT INTO `customerservices` (`id`, `image`, `description_customer_service`, `active`, `created_at`, `updated_at`) VALUES (2, '1628505505.svg', 'EASY & SECURE PAYMENT', 1, '2021-08-09 03:33:17', '2021-08-09 03:38:25'), (3, '1628505520.svg', 'FREE SHIPPING ON ORDERS ABOVE 1JT', 1, '2021-08-09 03:38:40', NULL), (4, '1628505533.svg', '7 DAYS EXCHANGE', 1, '2021-08-09 03:38:53', NULL), (5, '1628505547.svg', 'PROUDLY MADE IN INDONESIA', 1, '2021-08-09 03:39:07', NULL); -- -------------------------------------------------------- -- -- Table structure for table `customnotes` -- CREATE TABLE `customnotes` ( `id` bigint(20) UNSIGNED NOT NULL, `description_note` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customnotes` -- INSERT INTO `customnotes` (`id`, `description_note`, `active`, `created_at`, `updated_at`) VALUES (3, 'If you want to ask a question, please contact us through our Whatsapp number', 1, '2021-08-15 21:38:00', NULL); -- -------------------------------------------------------- -- -- Table structure for table `customtestimonies` -- CREATE TABLE `customtestimonies` ( `id` bigint(20) UNSIGNED NOT NULL, `image_testimony` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customtestimonies` -- INSERT INTO `customtestimonies` (`id`, `image_testimony`, `active`, `created_at`, `updated_at`) VALUES (1, '1629088738.jpg', 1, '2021-08-15 21:31:47', '2021-08-15 21:38:58'), (2, '1629088724.jpg', 1, '2021-08-15 21:38:44', NULL), (3, '1629088754.jpg', 1, '2021-08-15 21:39:14', NULL), (4, '1629088771.jpg', 1, '2021-08-15 21:39:31', NULL); -- -------------------------------------------------------- -- -- Table structure for table `events` -- CREATE TABLE `events` ( `id` bigint(20) UNSIGNED NOT NULL, `image_event` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `events` -- INSERT INTO `events` (`id`, `image_event`, `link`, `active`, `created_at`, `updated_at`) VALUES (11, '1627870152.jpeg', NULL, 1, '2021-08-01 19:09:12', NULL), (16, '1636572808.jpg', NULL, 1, '2021-11-10 12:33:28', NULL), (17, '1636572814.jpg', NULL, 1, '2021-11-10 12:33:34', NULL), (18, '1636572820.jpg', NULL, 1, '2021-11-10 12:33:40', NULL), (19, '1636572828.jpg', NULL, 1, '2021-11-10 12:33:48', NULL); -- -------------------------------------------------------- -- -- Table structure for table `feeds` -- CREATE TABLE `feeds` ( `id` bigint(20) UNSIGNED NOT NULL, `image_feed` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `feeds` -- INSERT INTO `feeds` (`id`, `image_feed`, `link`, `active`, `created_at`, `updated_at`) VALUES (7, '1627199337.jpg', 'https://www.instagram.com/p/CRI2iG-LsGg/', 1, '2021-07-25 00:48:57', NULL), (8, '1627199400.jpg', 'https://www.instagram.com/p/CRJCTiTrFvy/', 1, '2021-07-25 00:50:00', NULL), (9, '1627199458.jpg', 'https://www.instagram.com/p/CRL01BVLhll/', 1, '2021-07-25 00:50:58', NULL), (10, '1627199541.jpg', 'https://www.instagram.com/p/CRTUVMersW7/', 1, '2021-07-25 00:52:21', NULL), (11, '1627199583.jpg', 'https://www.instagram.com/p/CRTWKrGL58W/', 1, '2021-07-25 00:53:03', NULL), (12, '1627199664.jpg', 'https://www.instagram.com/p/CRiSKkhrhWZ/', 1, '2021-07-25 00:54:24', NULL), (13, '1627199757.jpg', 'https://www.instagram.com/p/CRn2-MPr5Au/', 1, '2021-07-25 00:55:57', NULL), (14, '1627199811.jpg', 'https://www.instagram.com/p/CRqX7FLrN-8/', 1, '2021-07-25 00:56:51', NULL); -- -------------------------------------------------------- -- -- Table structure for table `imageproducts` -- CREATE TABLE `imageproducts` ( `id` bigint(20) UNSIGNED NOT NULL, `thumbnail` int(11) NOT NULL, `product` int(11) NOT NULL, `image_product_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_product_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_product_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `imageproducts` -- INSERT INTO `imageproducts` (`id`, `thumbnail`, `product`, `image_product_1`, `image_product_2`, `image_product_3`, `created_at`, `updated_at`) VALUES (1, 0, 2, '1629186658.jpg', '1629192720.katalog2_210518_7.jpg', '1629192737.katalog2_210518_21.jpg', '2021-08-17 00:50:58', '2021-08-17 02:32:17'), (2, 0, 4, '1629187038.jpg', NULL, NULL, '2021-08-17 00:57:18', '2021-08-17 02:37:18'), (4, 0, 7, '1629187568.jpg', '1629193057.katalog2_210518_22.jpg', NULL, '2021-08-17 01:06:08', '2021-08-17 02:37:37'), (8, 0, 7, '1629188107.katalog2_210518_39.jpg', NULL, NULL, '2021-08-17 01:11:14', '2021-08-17 01:31:24'), (9, 0, 9, '1629188250.katalog2_210518_0.jpg', NULL, NULL, '2021-08-17 01:17:30', NULL), (10, 0, 10, '1629188280.katalog2_210518_34.jpg', NULL, NULL, '2021-08-17 01:18:00', '2021-08-17 01:31:30'), (11, 0, 11, '1629188298.katalog2_210518_31.jpg', NULL, NULL, '2021-08-17 01:18:18', '2021-08-17 01:31:37'), (12, 0, 135, '1629194129.katalog2_210518_19.jpg', '1629194129.katalog2_210518_24.jpg', NULL, '2021-08-17 02:55:29', NULL), (13, 0, 135, '1629196143.katalog2_210518_3.jpg', NULL, NULL, '2021-08-17 03:29:03', NULL), (23, 1, 60, '1628231052.jpg', '1636566076.02.jpg', NULL, '2021-11-06 01:18:02', '2021-11-10 12:11:00'), (24, 1, 61, '1628231140.jpg', '1636565993.02.jpg', '1636565993.03.jpg', '2021-11-06 01:18:02', '2021-11-10 12:10:09'), (25, 1, 62, '1628231267.jpg', '1636565940.02.jpg', NULL, '2021-11-06 01:18:02', '2021-11-10 12:09:23'), (26, 1, 63, '1628231376.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:08:49'), (27, 1, 64, '1628231464.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:08:21'), (28, 1, 65, '1628231627.jpg', '1636565885.02.jpg', '1636565885.03.jpg', '2021-11-06 01:18:02', '2021-11-10 12:07:26'), (29, 1, 66, '1628318113.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:06:25'), (30, 1, 67, '1628318405.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:05:55'), (31, 1, 68, '1628318495.jpg', '1636565821.02.jpg', NULL, '2021-11-06 01:18:02', '2021-11-10 12:05:20'), (32, 1, 69, '1628318705.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:04:12'), (33, 1, 70, '1628318851.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:03:26'), (34, 1, 71, '1628319149.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:02:14'), (35, 1, 72, '1628319725.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 12:01:07'), (36, 1, 73, '1628319828.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:59:46'), (37, 1, 74, '1628320176.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:58:50'), (38, 1, 75, '1628320296.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:57:59'), (39, 1, 76, '1628320444.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:57:03'), (40, 1, 77, '1628320627.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:53:09'), (41, 1, 78, '1628320696.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:52:02'), (42, 1, 79, '1628320763.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:51:24'), (43, 1, 80, '1628320930.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:50:51'), (44, 1, 81, '1628321095.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:50:19'), (45, 1, 82, '1628321186.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:49:07'), (46, 1, 83, '1628321335.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:48:33'), (47, 1, 84, '1628321423.jpg', '1636565702.02.jpg', NULL, '2021-11-06 01:18:02', '2021-11-10 11:46:16'), (48, 1, 85, '1628321539.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:44:42'), (49, 1, 86, '1628321630.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:43:25'), (50, 1, 87, '1628321751.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:39:01'), (51, 1, 88, '1628321924.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:38:34'), (52, 1, 89, '1628322011.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:38:01'), (53, 1, 90, '1628322115.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:37:29'), (54, 1, 91, '1628322323.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:36:51'), (55, 1, 92, '1628322539.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:36:22'), (56, 1, 93, '1628322657.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:35:47'), (57, 1, 94, '1628322752.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:33:14'), (58, 1, 95, '1628322870.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:32:31'), (59, 1, 96, '1628323986.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:31:39'), (60, 1, 97, '1628324803.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:31:02'), (61, 1, 104, '1628849308.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:30:30'), (62, 1, 105, '1628857074.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:29:51'), (63, 1, 106, '1628857136.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:29:11'), (64, 1, 107, '1628857204.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:28:28'), (65, 1, 108, '1628857255.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:27:45'), (66, 1, 109, '1628857331.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:27:10'), (67, 1, 110, '1628857400.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:14:36'), (68, 1, 111, '1628857457.jpg', NULL, NULL, '2021-11-06 01:18:02', '2021-11-10 11:12:53'), (69, 1, 112, '1628857520.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:12:07'), (70, 1, 113, '1628857594.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:11:16'), (71, 1, 114, '1628857661.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:10:46'), (72, 1, 115, '1628857728.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:10:17'), (73, 1, 116, '1628857792.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:09:41'), (74, 1, 117, '1628857849.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:09:08'), (75, 1, 118, '1628857935.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:08:38'), (76, 1, 119, '1628858054.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:07:52'), (77, 1, 120, '1628858133.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:07:13'), (78, 1, 121, '1628858181.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:06:36'), (79, 1, 122, '1628858248.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:04:31'), (80, 1, 123, '1628858301.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:04:00'), (81, 1, 124, '1628858374.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:03:27'), (82, 1, 125, '1628858442.jpg', '1636565522.02.jpg', NULL, '2021-11-06 01:18:03', '2021-11-10 11:02:41'), (83, 1, 126, '1628858499.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:00:51'), (84, 1, 127, '1628858561.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 11:00:20'), (85, 1, 128, '1628858627.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 10:59:49'), (86, 1, 129, '1628858688.jpg', '1636565442.02.jpg', NULL, '2021-11-06 01:18:03', '2021-11-10 10:59:14'), (87, 1, 130, '1628858764.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-10 10:58:37'), (88, 1, 131, '1628858811.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-12 14:18:45'), (89, 1, 132, '1628858871.jpg', NULL, NULL, '2021-11-06 01:18:03', '2021-11-12 14:18:34'), (90, 1, 133, '1628858924.jpg', NULL, NULL, '2021-11-06 01:18:03', '2022-02-15 19:27:04'), (91, 1, 134, '1628858974.jpg', '1636565048.02.jpg', NULL, '2021-11-06 01:18:03', '2022-02-15 19:26:13'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (4, '2021_06_13_070209_create_products_table', 1), (5, '2021_06_13_080226_create_productcolourimages_table', 1), (6, '2021_07_24_064118_create_feeds_table', 2), (7, '2021_07_26_063434_create_events_table', 3), (12, '2021_07_26_092521_create_accounts_table', 4), (13, '2021_07_26_094508_add_link_instagram_to_accounts_table', 5), (14, '2021_06_18_150113_create_orders_table', 6), (15, '2021_06_18_150204_create_users_table', 7), (16, '2021_07_29_075615_create_post_table', 8), (18, '2021_08_06_102553_add_shopeedantokopedia_to_accounts', 9), (19, '2021_08_09_063217_create_sizecartinfos_table', 10), (21, '2021_08_09_075037_create_sizecarts_table', 11), (22, '2021_08_09_094459_create_customerservices_table', 12), (23, '2021_08_16_014323_create_customnotes_table', 13), (24, '2021_08_16_034608_create_customtestimonies_table', 14), (26, '2021_08_17_055258_create_imageproducts_table', 15), (27, '2021_10_18_063855_add_thumbnail_to_imageproducts', 16), (28, '2021_11_12_190846_create_articles_table', 17), (29, '2021_11_12_210225_add_active_to_products', 18), (30, '2021_11_12_214621_add_active_to_events', 19), (31, '2021_11_15_054703_add_discount_to_products', 20), (32, '2021_11_23_032357_add_active_to_sizecarts', 21), (33, '2021_11_23_033706_add_active_to_customerservices', 22), (34, '2021_11_23_034652_add_active_to_customnotes', 23), (35, '2021_11_23_035021_add_active_to_customtestimonies', 24); -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `product_id` int(11) NOT NULL, `product_image` varchar(10000) COLLATE utf8mb4_unicode_ci NOT NULL, `quantity` int(11) NOT NULL, `price_now` int(11) NOT NULL, `total_price` int(11) NOT NULL, `alamat` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `no_telp` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `bukti_tf` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(11) NOT NULL DEFAULT 0 COMMENT '0 = belum dikonfirmasi, 1= konfirmasi diterima(bukti tf sah),\r\n2=konfirmasi ditolak(bukti tf tidak sah)', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`id`, `user_id`, `product_id`, `product_image`, `quantity`, `price_now`, `total_price`, `alamat`, `no_telp`, `bukti_tf`, `status`, `created_at`, `updated_at`) VALUES (4, 27, 133, 'http://weargloeshoes.com/images/1628858924.jpg', 1, 393750, 393750, '<p>mlg rw 1 rt 6&nbsp;</p>', '082131163139', 'bukti_tf/7663___buktitfmasuk.jpg', 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `productcolourimages` -- CREATE TABLE `productcolourimages` ( `id` bigint(20) UNSIGNED NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `product_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` int(11) NOT NULL, `discount` int(11) DEFAULT NULL, `price_after_discount` int(11) DEFAULT NULL, `colour` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `heel_height` varchar(225) COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `no_rekening` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `product_name`, `product_type`, `featured`, `product_image`, `price`, `discount`, `price_after_discount`, `colour`, `heel_height`, `description`, `no_rekening`, `active`, `created_at`, `updated_at`) VALUES (60, 'Sepatu Kulit Wanita Handwoven', 'flat', 'n', '1628231052.jpg', 500000, NULL, 500000, 'warna bisa request sendiri', 'Sedang', 'handwoven flat ( pre order ) \r\n- wajib cantumkan warna dan ukuran\r\n- ukur panjang telapak kaki dengan penggaris\r\n\r\nbahan : kulit asli (mill natural)\r\noutsole : karet\r\nsize : 36-42\r\n\r\nharga 500K\r\n\r\ngaransi reparasi 1 tahun', NULL, 1, '2021-08-05 23:24:12', NULL), (61, 'Sepatu Boot Kulit Asli - bannera boot', 'wedges', 'n', '1628231140.jpg', 550000, NULL, 550000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-05 23:25:40', NULL), (62, 'Sepatu Boots Kulit - Lodie Boot', 'boots', 'n', '1628231267.jpg', 575000, NULL, 575000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-05 23:27:47', NULL), (63, 'Sepatu Kulit Asli - Sling Basic', 'heels', 'n', '1628231376.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-05 23:29:36', NULL), (64, 'Sepatu Kulit Asli - Handwoven Hells', 'flat', 'n', '1628231464.jpg', 475000, 8990029, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-05 23:31:04', NULL), (65, 'Sepatu Kulit Asli - Ivory Oxford', 'wedges', 'n', '1628231627.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-05 23:33:47', NULL), (66, 'Sepatu Kulit Asli - Lesha Heels', 'boots', 'n', '1628318113.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nSize Chart ( Panjang telapak kaki )\r\n35 : 20cm\r\n36 : 21cm\r\n37 : 22cm\r\n38 : 23cm\r\n39 : 24cm\r\n40 : 25cm\r\n41 : 26cm\r\n42 : 27cm', NULL, 1, '2021-08-06 23:35:13', NULL), (67, 'Sepatu Kulit Asli - Mina Heels', 'heels', 'n', '1628318405.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-06 23:40:05', NULL), (68, 'Sepatu Boot Kulit Asli - Noemi Boots', 'flat', 'n', '1628318495.jpg', 625000, NULL, 625000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-06 23:41:35', NULL), (69, 'Sepatu Boot Kulit Asli - Mira Boot', 'wedges', 'n', '1628318705.jpg', 525000, NULL, 525000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-06 23:45:05', NULL), (70, 'Sepatu Boot Kulit Asli - Jodie Boots', 'boots', 'n', '1628318851.jpg', 575000, NULL, 575000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-06 23:47:31', NULL), (71, 'Sepatu Kulit Asli - Goodshoes Leather - Teya Dunlup/Wedges', 'heels', 'n', '1628319149.jpg', 450000, NULL, 450000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-06 23:52:29', NULL), (72, 'Sepatu Heels Kulit - Goodshoes Leather - Lula Heels', 'flat', 'n', '1628319725.jpg', 475000, NULL, 475000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-07 00:02:05', NULL), (73, 'Sepatu Heels Kulit - Goodshoes Leather - Lesha Stiletto Heels 9cm', 'wedges', 'n', '1628319828.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-07 00:03:48', NULL), (74, 'Sepatu Kulit Wanita - Goodshoes Leather - Dione Wedges', 'boots', 'n', '1628320176.jpg', 450000, NULL, 450000, 'Bisa costum sendiri', 'Sedang', 'Sepatu Kulit Wanita - Goodshoes Leather - Dione Wedges', NULL, 1, '2021-08-07 00:09:36', NULL), (75, 'Sepatu Kulit Wanita - Goodshoes Leather - Tzuna Woven', 'heels', 'n', '1628320296.jpg', 575000, NULL, 575000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-07 00:11:36', NULL), (76, 'Sepatu Heels Kulit - Gloeshoes Leather - Hana Heel', 'flat', 'n', '1628320444.jpg', 475000, NULL, 475000, 'Bisa costum sediri', 'Rendah', 'sepatu heels kulit asli', NULL, 1, '2021-08-07 00:14:04', NULL), (77, 'tali kulit', 'wedges', 'n', '1628320627.jpg', 35000, NULL, 35000, 'tidak ada', 'tidak ada', 'tali kulit asli panjang 70cm', NULL, 1, '2021-08-07 00:17:07', NULL), (78, 'Sepatu boot kulit - Goodshoes Leather - Donna Boot 7cm', 'boots', 'n', '1628320696.jpg', 550000, NULL, 550000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-07 00:18:16', NULL), (79, 'Sepatu Kulit Wanita - Goodshoes Leather - Tassel flat', 'heels', 'n', '1628320763.jpg', 450000, NULL, 450000, 'Bisa costum', 'Rendah', 'Sepatu Kulit Wanita - Goodshoes Leather - Tassel flat', NULL, 1, '2021-08-07 00:19:23', NULL), (80, 'Sepatu Wanita Kulit - Goodshoes Leather - Diona Wooden Wedges', 'flat', 'n', '1628320930.jpg', 475000, NULL, 475000, 'Bisa costum', 'Rendah', 'Sepatu Wanita Kulit - Goodshoes Leather - Diona Wooden Wedges', NULL, 1, '2021-08-07 00:22:10', NULL), (81, 'sepatu wanita kulit - Gloeshoes Leather- Docmart Low Wanita', 'wedges', 'n', '1628321095.jpg', 500000, NULL, 500000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-07 00:24:55', NULL), (82, 'Sepatu Wanita Kulit-Gloeshoes Leather-Madoka Woven', 'boots', 'n', '1628321186.jpg', 515000, NULL, 515000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-07 00:26:26', NULL), (83, 'Sepatu Wanita Kulit-Gloeshoes Leather-Chelsea Boots', 'heels', 'n', '1628321335.jpg', 550000, NULL, 550000, 'Bisa custom', 'Rendah', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:28:55', NULL), (84, 'Sepatu Wanita Kulit-Gloeshoes Leather-Ribbon Dunlup', 'flat', 'n', '1628321423.jpg', 425000, NULL, 425000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:30:23', NULL), (85, 'Sepatu Heel Kulit - Gloeshoes Leather - Alika Wooden Heels', 'wedges', 'n', '1628321539.jpg', 470050, NULL, 470050, 'Bisa costum', 'Sedang', 'Sepatu Heel Kulit - Gloeshoes Leather - Alika Wooden Heels', NULL, 1, '2021-08-07 00:32:19', NULL), (86, 'Mila Boot - Gloeshoee Leather', 'boots', 'n', '1628321630.jpg', 475000, NULL, 475000, 'Bisa costum', 'Rendah', 'Mila Boot - Gloeshoee Leather', NULL, 1, '2021-08-07 00:33:50', NULL), (87, 'Sepatu Wanita Kulit - Gloeshoes Leather - Neida Handwoven', 'heels', 'n', '1628321751.jpg', 450000, NULL, 450000, 'Bisa custom', 'Rendah', 'Warna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:35:51', NULL), (88, 'Sepatu Boot Kulit - Gloeshoes Leather - Millan Boot', 'flat', 'n', '1628321924.jpg', 450000, NULL, 450000, 'Bisa costum', 'Rendah', 'Sepatu Boot Kulit - Gloeshoes Leather - Millan Boot', NULL, 1, '2021-08-07 00:38:44', NULL), (89, 'Sepatu Boot Kulit - Gloeshoes Leather - Alica Boot', 'wedges', 'n', '1628322011.jpg', 600000, NULL, 600000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:40:11', NULL), (90, 'Sepatu Heels Kulit Wanita - Gloeshoes Leather - Sling Basic Sandals', 'boots', 'n', '1628322115.jpg', 425000, NULL, 425000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:41:55', NULL), (91, 'Sepatu Heels Kulit Wanita - Gloeshoes Leather - Lesha Heels Platform', 'heels', 'n', '1628322323.jpg', 450000, NULL, 450000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:45:23', NULL), (92, 'Sepatu Kulit Wanita - Gloeshoes Leather - Oxford tree Colour', 'flat', 'n', '1628322539.jpg', 450000, NULL, 450000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:48:59', NULL), (93, 'Sepatu Boots Kulit Wanita - Gloeshoes Leather - High Boots', 'wedges', 'n', '1628322657.jpg', 875000, NULL, 875000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:50:57', NULL), (94, 'Sepatu Heels Kulit Wanita - Gloeshoes Leather - Luna Heels', 'boots', 'n', '1628322752.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:52:32', NULL), (95, 'Sepatu Kulit Wanita - Gloeshoes Leather - Lula Platform', 'heels', 'n', '1628322870.jpg', 475000, NULL, 475000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 00:54:30', NULL), (96, 'Sepatu Boots Kulit Wanita - Gloeshoes Leather - Donna Boots', 'flat', 'n', '1628323986.jpg', 550000, NULL, 550000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 01:13:06', NULL), (97, 'Sepatu Kulit Wanita - Gloeshoes Leather - Belt Mules Platform', 'wedges', 'n', '1628324803.jpg', 500000, NULL, 500000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-07 01:26:43', NULL), (104, 'Sepatu Wanita Kulit - Gloeshoes Leather - Loodie Heels Boots', 'boots', 'n', '1628849308.jpg', 550000, NULL, 550000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 03:08:28', NULL), (105, 'Sepatu Kulit Wanita - Gloeshoes Leather - Nuela Mules', 'heels', 'n', '1628857074.jpg', 475000, NULL, 475000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:17:54', NULL), (106, 'Sepatu Kulit Wanita - Gloeshoes Leather - Alesta Heels', 'flat', 'n', '1628857136.jpg', 475000, NULL, 475000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:18:56', NULL), (107, 'Sepatu Kulit Wanita - Gloeshoes Leather - Tassel Shoes', 'wedges', 'n', '1628857204.jpg', 395000, NULL, 395000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:20:04', NULL), (108, 'Sepatu Wanita Kulit - Gloeshoes Leather - Lula Woden Heels', 'boots', 'n', '1628857255.jpg', 475000, NULL, 475000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:20:55', NULL), (109, 'Sepatu Wanita Kulit - Gloeshoes Leather - Lova Oxford', 'heels', 'n', '1628857331.jpg', 475000, NULL, 475000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:22:11', NULL), (110, 'Sepatu Wanita Kulit - Gloedshoes Leather - Black Handwoven', 'flat', 'n', '1628857400.jpg', 575000, NULL, 575000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:23:20', NULL), (111, 'Sepatu Wanita Kulit - Gloeshoes Leather - Belt Moules Dunlup', 'wedges', 'n', '1628857457.jpg', 425000, NULL, 425000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:24:17', NULL), (112, 'Sepatu Wanita Kulit - Gloeshoes Leather - Nami Heels Boots', 'boots', 'n', '1628857520.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 0, '2021-08-13 05:25:20', NULL), (113, 'Sepatu Wanita Kulit - Gloeshoes Leather - Mimi Colour', 'heels', 'n', '1628857594.jpg', 350000, NULL, 350000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 0, '2021-08-13 05:26:34', NULL), (114, 'Sepatu Wanita Kulit - Gloeshoes Leather - Alana Shoes', 'flat', 'n', '1628857661.jpg', 500000, NULL, 500000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 0, '2021-08-13 05:27:41', NULL), (115, 'Sepatu Wanita Kulit - Gloeshoes Leather - Sabrina Heels', 'wedges', 'n', '1628857728.jpg', 575000, NULL, 575000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 0, '2021-08-13 05:28:48', NULL), (116, 'Sepatu Wanita Kulit - Gloeshoes Leather - Kay Shoes', 'boots', 'n', '1628857792.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 0, '2021-08-13 05:29:52', NULL), (117, 'Sepatu Wanita Kulit - Gloeshoes Leather - Nivia Platsform', 'heels', 'n', '1628857849.jpg', 500000, NULL, 500000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 0, '2021-08-13 05:30:49', NULL), (118, 'Sepatu Wanita Kulit - Gloeshoes Leather - <NAME>', 'flat', 'n', '1628857935.jpg', 500000, NULL, 500000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:32:15', NULL), (119, 'Sepatu Wanita Kulit - Gloeshoes Leather - Hana Heels', 'wedges', 'n', '1628858054.jpg', 450000, NULL, 450000, 'Bisa custom', 'Rendah', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:34:14', NULL), (120, 'Sepatu Wanita Kulit-Gloeshoes Leather-Mila boot in black', 'boots', 'n', '1628858133.jpg', 525000, NULL, 525000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:35:33', NULL), (121, 'Sepatu Kulit Gloeshoes Leather - Luna Heels', 'heels', 'n', '1628858181.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-13 05:36:21', NULL), (122, 'Sepatu Heels Kulit - Gloeshoes Leather - Madoka Heels', 'flat', 'n', '1628858248.jpg', 515000, NULL, 515000, 'Warna bisa request sendiri', 'Sedang', 'Sepatu Heels Kulit - Gloeshoes Leather - Madoka Heels', NULL, 1, '2021-08-13 05:37:28', NULL), (123, 'Sepatu Kulit Wanita - Gloeshoes Leather - Mira Oxford', 'wedges', 'n', '1628858301.jpg', 450000, NULL, 450000, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-13 05:38:21', NULL), (124, 'Pelunasan pesanan sepatu boot a.n Shaviera', 'boots', 'n', '1628858374.jpg', 275000, NULL, 275000, 'Warna bisa request sendiri', 'Sedang', 'Pelunasan pesanan sepatu boot a.n Shaviera', NULL, 1, '2021-08-13 05:39:34', NULL), (125, 'Sepatu Wanita Kulit - Gloeshoes Leather - Luna Heels', 'heels', 'n', '1628858442.jpg', 450000, NULL, 450000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:40:42', NULL), (126, 'Sepatu Wanita Kulit - Gloeshoes Leather - Mary Jane Platform', 'flat', 'n', '1628858499.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:41:39', NULL), (127, 'Sepatu Boot Wanita Kulit - Gloeshoes Leather - Ankle Belt', 'wedges', 'n', '1628858561.jpg', 575000, NULL, 575000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:42:41', NULL), (128, 'Sepatu Wanita Kulit - Gloeshoes Leather - Sakura Flat Shoes', 'boots', 'n', '1628858627.jpg', 425000, NULL, 425000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:43:47', NULL), (129, 'Sepatu wanita kulit-Gloeshoes Leather-Mjwoven heels iratan', 'heels', 'n', '1628858688.jpg', 450000, NULL, 450000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:44:48', NULL), (130, 'Sepatu Heels Kulit - Gloeshoes Leather - Black Basic Platform', 'flat', 'n', '1628858764.jpg', 475000, NULL, 475000, 'Bisa custom', 'Sedang', 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', NULL, 1, '2021-08-13 05:46:04', NULL), (131, 'Sepatu Heel Kulit - Gloeshoes Leather - Mary Jane Platform', 'wedges', 'n', '1628858811.jpg', 475000, NULL, 475000, 'Warna bisa request sendiri', 'Sedang', 'Sepatu Heel Kulit - Gloeshoes Leather - Mary Jane Platform', NULL, 1, '2021-08-13 05:46:51', NULL), (132, 'Sepatu Boot Kulit - Gloeshoes Leather - Kirana Boot', 'boots', 'n', '1628858871.jpg', 550000, NULL, 550000, 'Bisa custom', 'Sedang', 'Sepatu Boot Kulit - Gloeshoes Leather - Kirana Boot \r\nSepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', NULL, 1, '2021-08-13 05:47:51', NULL), (133, 'Sepatu Boot Kulit - Goodshoes Leather - Mila Boot', 'heels', 'n', '1628858924.jpg', 525000, 25, 393750, 'Bisa custom', 'Sedang', 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '0989829', 1, '2021-08-13 05:48:44', NULL), (134, 'Sepatu Boot Kulit - Gloeshoes Leather - Kilya Boot', 'flat', 'y', '1628858974.jpg', 500000, 15, 425000, 'Warna bisa request sendiri', 'Sedang', 'size 38 \r\nbahan kulit pull up\r\nhak iratan 5cm\r\ngaransi reparasi 1 tahun', '0989829', 1, '2021-08-13 05:49:34', NULL); -- -------------------------------------------------------- -- -- Table structure for table `products123` -- CREATE TABLE `products123` ( `id` bigint(20) UNSIGNED NOT NULL, `product_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `price` int(11) NOT NULL, `colour` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `heel_height` int(11) NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `products123` -- INSERT INTO `products123` (`id`, `product_name`, `product_type`, `featured`, `product_image`, `price`, `colour`, `heel_height`, `description`, `created_at`, `updated_at`) VALUES (60, 'Sepatu Kulit Wanita Handwoven', 'flat', 'y', '1628231052.jpg', 500000, 'warna bisa request sendiri', 12, 'handwoven flat ( pre order ) \r\n- wajib cantumkan warna dan ukuran\r\n- ukur panjang telapak kaki dengan penggaris\r\n\r\nbahan : kulit asli (mill natural)\r\noutsole : karet\r\nsize : 36-42\r\n\r\nharga 500K\r\n\r\ngaransi reparasi 1 tahun', '2021-08-05 23:24:12', NULL), (61, 'Sepatu Boot Kulit Asli - bannera boot', 'boots', 'n', '1628231140.jpg', 550000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-05 23:25:40', NULL), (62, 'Sepatu Boots Kulit - Lodie Boot', 'boots', 'n', '1628231267.jpg', 575000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', '2021-08-05 23:27:47', NULL), (63, 'Sepatu Kulit Asli - Sling Basic', 'boots', 'n', '1628231376.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', '2021-08-05 23:29:36', NULL), (64, 'Sepatu Kulit Asli - Handwoven Hells', 'heels', 'n', '1628231464.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', '2021-08-05 23:31:04', NULL), (65, 'Sepatu Kulit Asli - Ivory Oxford', 'boots', 'n', '1628231627.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', '2021-08-05 23:33:47', NULL), (66, 'Sepatu Kulit Asli - Lesha Heels', 'heels', 'n', '1628318113.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nSize Chart ( Panjang telapak kaki )\r\n35 : 20cm\r\n36 : 21cm\r\n37 : 22cm\r\n38 : 23cm\r\n39 : 24cm\r\n40 : 25cm\r\n41 : 26cm\r\n42 : 27cm', '2021-08-06 23:35:13', NULL), (67, 'Sepatu Kulit Asli - Mina Heels', 'heels', 'n', '1628318405.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', '2021-08-06 23:40:05', NULL), (68, 'Sepatu Boot Kulit Asli - Noemi Boots', 'flat', 'n', '1628318495.jpg', 625000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-06 23:41:35', NULL), (69, 'Sepatu Boot Kulit Asli - Mira Boot', 'boots', 'n', '1628318705.jpg', 525000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-06 23:45:05', NULL), (70, 'Sepatu Boot Kulit Asli - Jodie Boots', 'boots', 'n', '1628318851.jpg', 575000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-06 23:47:31', NULL), (71, 'Sepatu Kulit Asli - Goodshoes Leather - Teya Dunlup/Wedges', 'wedges', 'n', '1628319149.jpg', 450000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-06 23:52:29', NULL), (72, 'Sepatu Heels Kulit - Goodshoes Leather - Lula Heels', 'heels', 'n', '1628319725.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-07 00:02:05', NULL), (73, 'Sepatu Heels Kulit - Goodshoes Leather - Lesha Stiletto Heels 9cm', 'heels', 'n', '1628319828.jpg', 475000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-07 00:03:48', NULL), (74, 'Sepatu Kulit Wanita - Goodshoes Leather - Dione Wedges', 'wedges', 'n', '1628320176.jpg', 450000, 'Bisa costum sendiri', 12, 'Sepatu Kulit Wanita - Goodshoes Leather - Dione Wedges', '2021-08-07 00:09:36', NULL), (75, 'Sepatu Kulit Wanita - Goodshoes Leather - Tzuna Woven', 'flat', 'n', '1628320296.jpg', 575000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-07 00:11:36', NULL), (76, 'Sepatu Heels Kulit - Gloeshoes Leather - Hana Heel', 'heels', 'n', '1628320444.jpg', 475000, 'Bisa costum sediri', 12, 'sepatu heels kulit asli', '2021-08-07 00:14:04', NULL), (77, 'tali kulit', 'flat', 'n', '1628320627.jpg', 35000, 'tidak ada', 10, 'tali kulit asli panjang 70cm', '2021-08-07 00:17:07', NULL), (78, 'Sepatu boot kulit - Goodshoes Leather - Donna Boot 7cm', 'boots', 'n', '1628320696.jpg', 550000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-07 00:18:16', NULL), (79, 'Sepatu Kulit Wanita - Goodshoes Leather - Tassel flat', 'flat', 'n', '1628320763.jpg', 450000, 'Bisa costum', 12, 'Sepatu Kulit Wanita - Goodshoes Leather - Tassel flat', '2021-08-07 00:19:23', NULL), (80, 'Sepatu Wanita Kulit - Goodshoes Leather - Diona Wooden Wedges', 'wedges', 'n', '1628320930.jpg', 475000, 'Bisa costum', 12, 'Sepatu Wanita Kulit - Goodshoes Leather - Diona Wooden Wedges', '2021-08-07 00:22:10', NULL), (81, 'sepatu wanita kulit - Gloeshoes Leather- Docmart Low Wanita', 'flat', 'n', '1628321095.jpg', 500000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-07 00:24:55', NULL), (82, 'Sepatu Wanita Kulit-Gloeshoes Leather-Madoka Woven', 'flat', 'n', '1628321186.jpg', 515000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-07 00:26:26', NULL), (83, 'Sepatu Wanita Kulit-Gloeshoes Leather-Chelsea Boots', 'boots', 'n', '1628321335.jpg', 550000, 'Bisa custom', 12, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:28:55', NULL), (84, 'Sepatu Wanita Kulit-Gloeshoes Leather-Ribbon Dunlup', 'flat', 'n', '1628321423.jpg', 425000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:30:23', NULL), (85, 'Sepatu Heel Kulit - Gloeshoes Leather - Alika Wooden Heels', 'heels', 'n', '1628321539.jpg', 470050, 'Bisa costum', 12, 'Sepatu Heel Kulit - Gloeshoes Leather - Alika Wooden Heels', '2021-08-07 00:32:19', NULL), (86, 'Mila Boot - Gloeshoee Leather', 'boots', 'n', '1628321630.jpg', 475000, 'Bisa costum', 12, 'Mila Boot - Gloeshoee Leather', '2021-08-07 00:33:50', NULL), (87, 'Sepatu Wanita Kulit - Gloeshoes Leather - Neida Handwoven', 'flat', 'n', '1628321751.jpg', 450000, 'Bisa custom', 12, 'Warna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:35:51', NULL), (88, 'Sepatu Boot Kulit - Gloeshoes Leather - Millan Boot', 'boots', 'n', '1628321924.jpg', 450000, 'Bisa costum', 12, 'Sepatu Boot Kulit - Gloeshoes Leather - Millan Boot', '2021-08-07 00:38:44', NULL), (89, 'Sepatu Boot Kulit - Gloeshoes Leather - Alica Boot', 'boots', 'n', '1628322011.jpg', 600000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:40:11', NULL), (90, 'Sepatu Heels Kulit Wanita - Gloeshoes Leather - Sling Basic Sandals', 'heels', 'n', '1628322115.jpg', 425000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:41:55', NULL), (91, 'Sepatu Heels Kulit Wanita - Gloeshoes Leather - Lesha Heels Platform', 'heels', 'n', '1628322323.jpg', 450000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:45:23', NULL), (92, 'Sepatu Kulit Wanita - Gloeshoes Leather - Oxford tree Colour', 'flat', 'n', '1628322539.jpg', 450000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:48:59', NULL), (93, 'Sepatu Boots Kulit Wanita - Gloeshoes Leather - High Boots', 'boots', 'n', '1628322657.jpg', 875000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:50:57', NULL), (94, 'Sepatu Heels Kulit Wanita - Gloeshoes Leather - Luna Heels', 'heels', 'n', '1628322752.jpg', 475000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:52:32', NULL), (95, 'Sepatu Kulit Wanita - Gloeshoes Leather - Lula Platform', 'flat', 'n', '1628322870.jpg', 475000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 00:54:30', NULL), (96, 'Sepatu Boots Kulit Wanita - Gloeshoes Leather - Donna Boots', 'boots', 'n', '1628323986.jpg', 550000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 01:13:06', NULL), (97, 'Sepatu Kulit Wanita - Gloeshoes Leather - Belt Mules Platform', 'flat', 'n', '1628324803.jpg', 500000, 'Bisa custom', 12, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-07 01:26:43', NULL), (104, 'Sepatu Wanita Kulit - Gloeshoes Leather - Loodie Heels Boots', 'boots', 'n', '1628849308.jpg', 550000, 'Bisa custom', 5, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 03:08:28', NULL), (105, 'Sepatu Kulit Wanita - Gloeshoes Leather - <NAME>', 'flat', 'n', '1628857074.jpg', 475000, 'Bisa custom', 3, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:17:54', NULL), (106, 'Sepatu Kulit Wanita - Gloeshoes Leather - Alesta Heels', 'heels', 'n', '1628857136.jpg', 475000, 'Bisa custom', 2, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:18:56', NULL), (107, 'Sepatu Kulit Wanita - Gloeshoes Leather - Tassel Shoes', 'flat', 'n', '1628857204.jpg', 395000, 'Bisa custom', 4, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:20:04', NULL), (108, 'Sepatu Wanita Kulit - Gloeshoes Leather - Lula Woden Heels', 'heels', 'n', '1628857255.jpg', 475000, 'Bisa custom', 6, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:20:55', NULL), (109, 'Sepatu Wanita Kulit - Gloeshoes Leather - Lova Oxford', 'flat', 'n', '1628857331.jpg', 475000, 'Bisa custom', 7, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:22:11', NULL), (110, 'Sepatu Wanita Kulit - Gloedshoes Leather - Black Handwoven', 'flat', 'n', '1628857400.jpg', 575000, 'Bisa custom', 9, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:23:20', NULL), (111, 'Sepatu Wanita Kulit - Gloeshoes Leather - Belt Moules Dunlup', 'flat', 'n', '1628857457.jpg', 425000, 'Bisa custom', 3, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:24:17', NULL), (112, 'Sepatu Wanita Kulit - Gloeshoes Leather - Nami Heels Boots', 'boots', 'n', '1628857520.jpg', 475000, 'Bisa custom', 5, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:25:20', NULL), (113, 'Sepatu Wanita Kulit - Gloeshoes Leather - Mimi Colour', 'flat', 'n', '1628857594.jpg', 350000, 'Bisa custom', 4, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:26:34', NULL), (114, 'Sepatu Wanita Kulit - Gloeshoes Leather - Alana Shoes', 'flat', 'n', '1628857661.jpg', 500000, 'Bisa custom', 6, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:27:41', NULL), (115, 'Sepatu Wanita Kulit - Gloeshoes Leather - Sabrina Heels', 'heels', 'n', '1628857728.jpg', 575000, 'Bisa custom', 6, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:28:48', NULL), (116, 'Sepatu Wanita Kulit - Gloeshoes Leather - Kay Shoes', 'flat', 'n', '1628857792.jpg', 475000, 'Bisa custom', 8, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:29:52', NULL), (117, 'Sepatu Wanita Kulit - Gloeshoes Leather - Nivia Platsform', 'flat', 'n', '1628857849.jpg', 500000, 'Bisa custom', 8, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:30:49', NULL), (118, 'Sepatu Wanita Kulit - Gloeshoes Leather - Milano Woven', 'flat', 'n', '1628857935.jpg', 500000, 'Bisa custom', 4, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:32:15', NULL), (119, 'Sepatu Wanita Kulit - Gloeshoes Leather - Hana Heels', 'heels', 'n', '1628858054.jpg', 450000, 'Bisa custom', 8, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:34:14', NULL), (120, 'Sepatu Wanita Kulit-Gloeshoes Leather-Mila boot in black', 'flat', 'n', '1628858133.jpg', 525000, 'Bisa custom', 5, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:35:33', NULL), (121, 'Sepatu Kulit Gloeshoes Leather - Luna Heels', 'heels', 'n', '1628858181.jpg', 475000, 'Bisa custom', 6, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol : Karet \r\nGaransi Reparasi 1 tahun', '2021-08-13 05:36:21', NULL), (122, 'Sepatu Heels Kulit - Gloeshoes Leather - Madoka Heels', 'heels', 'n', '1628858248.jpg', 515000, 'Warna bisa request sendiri', 3, 'Sepatu Heels Kulit - Gloeshoes Leather - Madoka Heels', '2021-08-13 05:37:28', NULL), (123, 'Sepatu Kulit Wanita - Gloeshoes Leather - Mira Oxford', 'flat', 'n', '1628858301.jpg', 450000, 'Bisa custom', 4, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-13 05:38:21', NULL), (124, 'Pelunasan pesanan sepatu boot a.n Shaviera', 'boots', 'n', '1628858374.jpg', 275000, 'Warna bisa request sendiri', 5, 'Pelunasan pesanan sepatu boot a.n Shaviera', '2021-08-13 05:39:34', NULL), (125, 'Sepatu Wanita Kulit - Gloeshoes Leather - Luna Heels', 'heels', 'n', '1628858442.jpg', 450000, 'Bisa custom', 7, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:40:42', NULL), (126, 'Sepatu Wanita Kulit - Gloeshoes Leather - Mary Jane Platform', 'flat', 'n', '1628858499.jpg', 475000, 'Bisa custom', 4, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:41:39', NULL), (127, 'Sepatu Boot Wanita Kulit - Gloeshoes Leather - Ankle Belt', 'flat', 'n', '1628858561.jpg', 575000, 'Bisa custom', 4, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:42:41', NULL), (128, 'Sepatu Wanita Kulit - Gloeshoes Leather - Sakura Flat Shoes', 'flat', 'n', '1628858627.jpg', 425000, 'Bisa custom', 7, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:43:47', NULL), (129, 'Sepatu wanita kulit-Gloeshoes Leather-Mjwoven heels iratan', 'heels', 'n', '1628858688.jpg', 450000, 'Bisa custom', 5, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:44:48', NULL), (130, 'Sepatu Heels Kulit - Gloeshoes Leather - Black Basic Platform', 'flat', 'n', '1628858764.jpg', 475000, 'Bisa custom', 5, 'Sepatu Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun\r\n\r\nUntuk info size bisa chat dulu sebelum chek out', '2021-08-13 05:46:04', NULL), (131, 'Sepatu Heel Kulit - Gloeshoes Leather - Mary Jane Platform', 'flat', 'n', '1628858811.jpg', 475000, 'Warna bisa request sendiri', 5, 'Sepatu Heel Kulit - Gloeshoes Leather - Mary Jane Platform', '2021-08-13 05:46:51', NULL), (132, 'Sepatu Boot Kulit - Gloeshoes Leather - Kirana Boot', 'boots', 'n', '1628858871.jpg', 550000, 'Bisa custom', 6, 'Sepatu Boot Kulit - Gloeshoes Leather - Kirana Boot \r\nSepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-13 05:47:51', NULL), (133, 'Sepatu Boot Kulit - Goodshoes Leather - Mila Boot', 'boots', 'n', '1628858924.jpg', 525000, 'Bisa custom', 7, 'Sepatu Boots Wanita Dari Kulit Asli \r\nWarna : Bisa custom\r\nSize: 35-43\r\nBahan : Kulit Sapi\r\nSol Karet \r\nGaransi Reparasi 1 tahun', '2021-08-13 05:48:44', NULL), (134, 'Sepatu Boot Kulit - Gloeshoes Leather - Kilya Boot', 'boots', 'n', '1628858974.jpg', 500000, 'Warna bisa requst sendiri', 4, 'size 38 \r\nbahan kulit pull up\r\nhak iratan 5cm\r\ngaransi reparasi 1 tahun', '2021-08-13 05:49:34', NULL), (139, '1', 'flat', 'n', '1629197415.jpg', 1, '1', 1, '1', '2021-08-17 03:50:15', NULL); -- -------------------------------------------------------- -- -- Table structure for table `sizecartinfos` -- CREATE TABLE `sizecartinfos` ( `id` bigint(20) UNSIGNED NOT NULL, `image` 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 for table `sizecartinfos` -- INSERT INTO `sizecartinfos` (`id`, `image`, `created_at`, `updated_at`) VALUES (1, '1628501304.jpeg', '2021-08-09 00:42:13', '2021-08-09 02:28:24'); -- -------------------------------------------------------- -- -- Table structure for table `sizecarts` -- CREATE TABLE `sizecarts` ( `id` bigint(20) UNSIGNED NOT NULL, `size` int(11) NOT NULL, `foot_length` int(11) NOT NULL, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sizecarts` -- INSERT INTO `sizecarts` (`id`, `size`, `foot_length`, `active`, `created_at`, `updated_at`) VALUES (2, 35, 20, 1, '2021-08-09 02:33:00', '2021-08-09 03:35:47'), (3, 36, 21, 1, '2021-08-09 03:36:11', NULL), (4, 37, 22, 1, '2021-08-09 03:36:24', NULL), (5, 38, 23, 1, '2021-08-09 03:36:41', NULL), (6, 39, 24, 1, '2021-08-09 03:36:59', NULL), (7, 40, 25, 1, '2021-08-09 03:37:17', NULL), (8, 41, 26, 1, '2021-08-09 03:37:32', NULL), (9, 42, 27, 1, '2021-08-09 03:37:50', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tb_post` -- CREATE TABLE `tb_post` ( `post_id` bigint(20) UNSIGNED NOT NULL, `post_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tb_post` -- INSERT INTO `tb_post` (`post_id`, `post_title`, `image`, `content`, `created_at`, `updated_at`) VALUES (16, 'flat', '4155WhatsApp Image 2021-08-14 at 15.46.10.jpeg', NULL, '2021-08-06 04:57:59', '2021-08-14 01:49:46'), (17, 'heels', '8327WhatsApp Image 2021-08-14 at 15.46.09 (1).jpeg', NULL, '2021-08-06 04:59:39', '2021-08-14 01:50:05'), (18, 'boots', '4058WhatsApp Image 2021-08-14 at 15.46.09.jpeg', NULL, '2021-08-06 05:00:04', '2021-08-14 01:50:19'), (23, 'wedges', '9329katalog2_210518_134.jpg', NULL, '2021-08-06 23:58:20', '2021-08-06 23:58:20'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `level` int(11) NOT NULL DEFAULT 2 COMMENT '[1 : ''Admin'', 2 : ''Customer'']', `status` int(11) NOT NULL DEFAULT 0 COMMENT '[0 : ''Tidak bisa login'', 1 : ''Bisa Login'']', `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `nama`, `email`, `phone`, `password`, `level`, `status`, `token`, `created_at`, `updated_at`) VALUES (5, 'Weargloeshoes Admin', '<EMAIL>', '080808080808', '$2y$10$3uAXfzDXqVn5auo6yFA2IOR4FU5kCNRk.dZRn9WWC.NlYt5SkwO1G', 1, 1, '$2y$10$D0FhAFRND2a6sUMpOQqswuyYmsYCIE3OT8kRhzFqw7wYBtnBSC6SK', '2022-02-07 18:39:31', '2022-03-08 09:04:58'), (27, '<NAME>', '<EMAIL>', '082131163139', '$2y$10$x.4k5Wpn9TVLyjv/aLBuc.ovyaEByXaFnisiqj.RXOKkEJswkKJDS', 2, 1, NULL, '2022-02-16 02:19:09', '2022-02-16 02:19:38'), (28, '<NAME>', '<EMAIL>', '082233119501', '$2y$10$1ucqYyOCK8jss18Dg3fEF.N7RZpapcaRzypJUbxbc0iYPPHEgJ/Yy', 2, 1, '$2y$10$xFcrgXyvXWDLdZbCGPBxDOTQBhyvRCaWl6bcIthUlQhiCIVyskYQW', '2022-03-07 12:21:47', '2022-03-07 13:10:15'), (29, 'Queena', '<EMAIL>', '08567775815', '$2y$10$1KOu7U1K.bv02h7VO.Z0e.fpBniYlObtgJdi1lwjriCihLXeaG5Da', 2, 0, NULL, '2022-03-07 12:34:49', '2022-03-07 12:34:49'), (30, 'customer1', '<EMAIL>', '99999', '$2y$10$11jXZqdg1YnY/QdYDOd9o.TvLNFjWc975oicbHzNHpnfsq6VOJJDu', 2, 1, '8d9e00996faf5ae641a042b734dea108', '2022-03-08 06:38:51', '2022-03-11 17:23:40'); -- -- Indexes for dumped tables -- -- -- Indexes for table `accounts` -- ALTER TABLE `accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `articles` -- ALTER TABLE `articles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customerservices` -- ALTER TABLE `customerservices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customnotes` -- ALTER TABLE `customnotes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customtestimonies` -- ALTER TABLE `customtestimonies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `events` -- ALTER TABLE `events` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feeds` -- ALTER TABLE `feeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `imageproducts` -- ALTER TABLE `imageproducts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `productcolourimages` -- ALTER TABLE `productcolourimages` ADD PRIMARY KEY (`id`), ADD KEY `productcolourimages_product_id_foreign` (`product_id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products123` -- ALTER TABLE `products123` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sizecartinfos` -- ALTER TABLE `sizecartinfos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sizecarts` -- ALTER TABLE `sizecarts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_post` -- ALTER TABLE `tb_post` ADD PRIMARY KEY (`post_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `accounts` -- ALTER TABLE `accounts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `articles` -- ALTER TABLE `articles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `customerservices` -- ALTER TABLE `customerservices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `customnotes` -- ALTER TABLE `customnotes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `customtestimonies` -- ALTER TABLE `customtestimonies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `events` -- ALTER TABLE `events` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `feeds` -- ALTER TABLE `feeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `imageproducts` -- ALTER TABLE `imageproducts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=95; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `productcolourimages` -- ALTER TABLE `productcolourimages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=155; -- -- AUTO_INCREMENT for table `products123` -- ALTER TABLE `products123` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=140; -- -- AUTO_INCREMENT for table `sizecartinfos` -- ALTER TABLE `sizecartinfos` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `sizecarts` -- ALTER TABLE `sizecarts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `tb_post` -- ALTER TABLE `tb_post` MODIFY `post_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- Constraints for dumped tables -- -- -- Constraints for table `productcolourimages` -- ALTER TABLE `productcolourimages` ADD CONSTRAINT `productcolourimages_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; 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>liangzi4000/grab-share-info<filename>sql/yjbb/600057.sql EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2017-09-30',@EPS = N'0.37',@EPSDeduct = N'0',@Revenue = N'1440.99亿',@RevenueYoy = N'82.17',@RevenueQoq = N'3.31',@Profit = N'4.95亿',@ProfitYoy = N'31.89',@ProfiltQoq = N'24.54',@NAVPerUnit = N'5.9807',@ROE = N'6.36',@CashPerUnit = N'-4.7528',@GrossProfitRate = N'2.10',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2017-09-30',@EPS = N'0.37',@EPSDeduct = N'0',@Revenue = N'1440.99亿',@RevenueYoy = N'82.17',@RevenueQoq = N'3.31',@Profit = N'4.95亿',@ProfitYoy = N'31.89',@ProfiltQoq = N'24.54',@NAVPerUnit = N'5.9807',@ROE = N'6.36',@CashPerUnit = N'-4.7528',@GrossProfitRate = N'2.10',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2017-03-31',@EPS = N'0.12',@EPSDeduct = N'0',@Revenue = N'403.46亿',@RevenueYoy = N'105.93',@RevenueQoq = N'0.95',@Profit = N'1.38亿',@ProfitYoy = N'77.86',@ProfiltQoq = N'169.28',@NAVPerUnit = N'5.8277',@ROE = N'2.04',@CashPerUnit = N'-7.0721',@GrossProfitRate = N'2.23',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-04-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2016-12-31',@EPS = N'0.36',@EPSDeduct = N'0.56',@Revenue = N'1190.67亿',@RevenueYoy = N'98.70',@RevenueQoq = N'35.49',@Profit = N'4.26亿',@ProfitYoy = N'47.63',@ProfiltQoq = N'-76.96',@NAVPerUnit = N'5.7139',@ROE = N'6.79',@CashPerUnit = N'1.8975',@GrossProfitRate = N'3.40',@Distribution = N'10派1',@DividenRate = N'1.00',@AnnounceDate = N'2017-04-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2017-06-30',@EPS = N'0.23',@EPSDeduct = N'-0.04',@Revenue = N'913.79亿',@RevenueYoy = N'84.22',@RevenueQoq = N'26.49',@Profit = N'2.97亿',@ProfitYoy = N'94.38',@ProfiltQoq = N'15.13',@NAVPerUnit = N'5.8365',@ROE = N'3.96',@CashPerUnit = N'-5.2321',@GrossProfitRate = N'1.86',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-08-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2016-09-30',@EPS = N'0.32',@EPSDeduct = N'0',@Revenue = N'791.01亿',@RevenueYoy = N'80.72',@RevenueQoq = N'-1.72',@Profit = N'3.75亿',@ProfitYoy = N'126.63',@ProfiltQoq = N'195.93',@NAVPerUnit = N'5.5104',@ROE = N'6.01',@CashPerUnit = N'0.2183',@GrossProfitRate = N'2.87',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2015-12-31',@EPS = N'0.28',@EPSDeduct = N'0.18',@Revenue = N'599.23亿',@RevenueYoy = N'23.85',@RevenueQoq = N'-6.92',@Profit = N'2.89亿',@ProfitYoy = N'1.89',@ProfiltQoq = N'1009.79',@NAVPerUnit = N'5.1565',@ROE = N'7.21',@CashPerUnit = N'2.4964',@GrossProfitRate = N'3.81',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-04-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2015-09-30',@EPS = N'0.16',@EPSDeduct = N'0',@Revenue = N'437.70亿',@RevenueYoy = N'34.35',@RevenueQoq = N'10.49',@Profit = N'1.66亿',@ProfitYoy = N'-19.75',@ProfiltQoq = N'-112.86',@NAVPerUnit = N'3.8109',@ROE = N'4.29',@CashPerUnit = N'1.7470',@GrossProfitRate = N'3.78',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-10-31' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2015-06-30',@EPS = N'0.17',@EPSDeduct = N'0.17',@Revenue = N'264.16亿',@RevenueYoy = N'20.74',@RevenueQoq = N'46.64',@Profit = N'1.79亿',@ProfitYoy = N'12.22',@ProfiltQoq = N'43.09',@NAVPerUnit = N'3.8175',@ROE = N'4.64',@CashPerUnit = N'2.0007',@GrossProfitRate = N'4.55',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2016-08-31' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2015-03-31',@EPS = N'0.07',@EPSDeduct = N'0',@Revenue = N'107.11亿',@RevenueYoy = N'17.51',@RevenueQoq = N'-32.23',@Profit = N'7367.58万',@ProfitYoy = N'21.41',@ProfiltQoq = N'-4.59',@NAVPerUnit = N'3.7074',@ROE = N'1.93',@CashPerUnit = N'0.7395',@GrossProfitRate = N'3.80',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-04-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2014-12-31',@EPS = N'0.32',@EPSDeduct = N'0.19',@Revenue = N'483.84亿',@RevenueYoy = N'36.67',@RevenueQoq = N'47.68',@Profit = N'2.84亿',@ProfitYoy = N'17.42',@ProfiltQoq = N'65.43',@NAVPerUnit = N'3.6407',@ROE = N'13.57',@CashPerUnit = N'-4.6371',@GrossProfitRate = N'3.38',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2016-04-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2016-03-31',@EPS = N'0.07',@EPSDeduct = N'0',@Revenue = N'195.92亿',@RevenueYoy = N'82.92',@RevenueQoq = N'21.29',@Profit = N'7760.03万',@ProfitYoy = N'5.33',@ProfiltQoq = N'-37.07',@NAVPerUnit = N'5.2203',@ROE = N'1.28',@CashPerUnit = N'-1.2057',@GrossProfitRate = N'3.03',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-04-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2014-03-31',@EPS = N'0.07',@EPSDeduct = N'0',@Revenue = N'91.15亿',@RevenueYoy = N'59.75',@RevenueQoq = N'-21.49',@Profit = N'6068.41万',@ProfitYoy = N'185.96',@ProfiltQoq = N'-73.42',@NAVPerUnit = N'2.1717',@ROE = N'3.30',@CashPerUnit = N'-2.4579',@GrossProfitRate = N'3.22',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2015-04-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2014-06-30',@EPS = N'0.19',@EPSDeduct = N'0.11',@Revenue = N'218.78亿',@RevenueYoy = N'51.02',@RevenueQoq = N'40.04',@Profit = N'1.60亿',@ProfitYoy = N'454.58',@ProfiltQoq = N'62.99',@NAVPerUnit = N'2.2860',@ROE = N'8.46',@CashPerUnit = N'-0.3927',@GrossProfitRate = N'2.94',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2015-08-19' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2013-12-31',@EPS = N'0.28',@EPSDeduct = N'-0.14',@Revenue = N'354.02亿',@RevenueYoy = N'20.60',@RevenueQoq = N'24.74',@Profit = N'2.41亿',@ProfitYoy = N'110.20',@ProfiltQoq = N'292.58',@NAVPerUnit = N'2.1025',@ROE = N'14.38',@CashPerUnit = N'-5.4432',@GrossProfitRate = N'2.21',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2015-04-23' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2013-09-30',@EPS = N'0.02',@EPSDeduct = N'0',@Revenue = N'237.94亿',@RevenueYoy = N'4.78',@RevenueQoq = N'5.97',@Profit = N'1314.15万',@ProfitYoy = N'142.13',@ProfiltQoq = N'187.80',@NAVPerUnit = N'1.8345',@ROE = N'0.84',@CashPerUnit = N'-2.3691',@GrossProfitRate = N'1.94',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2014-10-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2013-06-30',@EPS = N'-0.05',@EPSDeduct = N'-0.16',@Revenue = N'144.87亿',@RevenueYoy = N'-1.20',@RevenueQoq = N'53.91',@Profit = N'-4501.01万',@ProfitYoy = N'-800.10',@ProfiltQoq = N'-412.10',@NAVPerUnit = N'1.7661',@ROE = N'-2.95',@CashPerUnit = N'-1.5139',@GrossProfitRate = N'1.40',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2014-08-15' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2016-06-30',@EPS = N'0.13',@EPSDeduct = N'0.22',@Revenue = N'496.04亿',@RevenueYoy = N'87.78',@RevenueQoq = N'53.18',@Profit = N'1.53亿',@ProfitYoy = N'-14.71',@ProfiltQoq = N'-3.14',@NAVPerUnit = N'5.2812',@ROE = N'2.50',@CashPerUnit = N'1.1932',@GrossProfitRate = N'2.82',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-08-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2014-09-30',@EPS = N'0.24',@EPSDeduct = N'0',@Revenue = N'325.80亿',@RevenueYoy = N'36.93',@RevenueQoq = N'-16.16',@Profit = N'2.06亿',@ProfitYoy = N'1469.66',@ProfiltQoq = N'-52.81',@NAVPerUnit = N'2.3413',@ROE = N'10.81',@CashPerUnit = N'-2.8626',@GrossProfitRate = N'3.09',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2015-10-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2013-03-31',@EPS = N'0.02',@EPSDeduct = N'-0.03',@Revenue = N'57.06亿',@RevenueYoy = N'-8.39',@RevenueQoq = N'-14.17',@Profit = N'2122.12万',@ProfitYoy = N'44.63',@ProfiltQoq = N'-85.47',@NAVPerUnit = N'1.8140',@ROE = N'1.37',@CashPerUnit = N'-2.0343',@GrossProfitRate = N'2.60',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2014-04-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2012-12-31',@EPS = N'0.13',@EPSDeduct = N'-0.07',@Revenue = N'293.56亿',@RevenueYoy = N'-13.49',@RevenueQoq = N'-17.36',@Profit = N'1.15亿',@ProfitYoy = N'-35.29',@ProfiltQoq = N'488.20',@NAVPerUnit = N'1.7900',@ROE = N'7.77',@CashPerUnit = N'0.5498',@GrossProfitRate = N'2.93',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2014-04-01' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2012-09-30',@EPS = N'-0.04',@EPSDeduct = N'-0.1',@Revenue = N'227.08亿',@RevenueYoy = N'-4.87',@RevenueQoq = N'-4.63',@Profit = N'-3119.38万',@ProfitYoy = N'-118.94',@ProfiltQoq = N'-356.37',@NAVPerUnit = N'1.6130',@ROE = N'-2.22',@CashPerUnit = N'0.8847',@GrossProfitRate = N'2.06',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2013-10-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2012-06-30',@EPS = N'0.01',@EPSDeduct = N'0.02',@Revenue = N'146.63亿',@RevenueYoy = N'-1.38',@RevenueQoq = N'35.44',@Profit = N'642.91万',@ProfitYoy = N'-94.79',@ProfiltQoq = N'-156.18',@NAVPerUnit = N'1.6595',@ROE = N'0.45',@CashPerUnit = N'-0.7131',@GrossProfitRate = N'2.91',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2013-08-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2012-03-31',@EPS = N'0.02',@EPSDeduct = N'0.04',@Revenue = N'62.28亿',@RevenueYoy = N'-5.90',@RevenueQoq = N'-38.12',@Profit = N'1467.31万',@ProfitYoy = N'-80.78',@ProfiltQoq = N'14.54',@NAVPerUnit = N'1.6678',@ROE = N'1.03',@CashPerUnit = N'-1.8107',@GrossProfitRate = N'3.07',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2013-04-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2011-12-31',@EPS = N'0.29',@EPSDeduct = N'0.03',@Revenue = N'339.34亿',@RevenueYoy = N'36.56',@RevenueQoq = N'11.79',@Profit = N'1.78亿',@ProfitYoy = N'11.71',@ProfiltQoq = N'-69.00',@NAVPerUnit = N'1.6504',@ROE = N'11.59',@CashPerUnit = N'-1.1037',@GrossProfitRate = N'2.43',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2013-04-12' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2011-09-30',@EPS = N'0.31',@EPSDeduct = N'0.03',@Revenue = N'238.71亿',@RevenueYoy = N'36.19',@RevenueQoq = N'-',@Profit = N'1.65亿',@ProfitYoy = N'57.29',@ProfiltQoq = N'15973.59',@NAVPerUnit = N'1.6400',@ROE = N'12.32',@CashPerUnit = N'-1.1130',@GrossProfitRate = N'3.04',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2012-10-31' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2011-06-30',@EPS = N'0.29',@EPSDeduct = N'0.0014',@Revenue = N'148.68亿',@RevenueYoy = N'-',@RevenueQoq = N'-',@Profit = N'1.23亿',@ProfitYoy = N'-99.49',@ProfiltQoq = N'-25.15',@NAVPerUnit = N'0.0019',@ROE = N'0.29',@CashPerUnit = N'-1.3940',@GrossProfitRate = N'3.81',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2012-08-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2011-03-31',@EPS = N'0.18',@EPSDeduct = N'0.0008',@Revenue = N'66.19亿',@RevenueYoy = N'-',@RevenueQoq = N'-',@Profit = N'7635.37万',@ProfitYoy = N'-99.71',@ProfiltQoq = N'100.41',@NAVPerUnit = N'0.0013',@ROE = N'0.22',@CashPerUnit = N'-2.0879',@GrossProfitRate = N'5.27',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2012-04-19' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2010-12-31',@EPS = N'0.37',@EPSDeduct = N'0.28',@Revenue = N'248.49亿',@RevenueYoy = N'-100.00',@RevenueQoq = N'-550.83',@Profit = N'1.59亿',@ProfitYoy = N'-95.67',@ProfiltQoq = N'-2871.90',@NAVPerUnit = N'2.9404',@ROE = N'13.36',@CashPerUnit = N'0.3142',@GrossProfitRate = N'3.00',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2012-03-23' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2010-09-30',@EPS = N'0.24',@EPSDeduct = N'-0.02',@Revenue = N'175.27亿',@RevenueYoy = N'-99.21',@RevenueQoq = N'31.60',@Profit = N'1.05亿',@ProfitYoy = N'181.47',@ProfiltQoq = N'-1236.12',@NAVPerUnit = N'0.2000',@ROE = N'-',@CashPerUnit = N'-0.9942',@GrossProfitRate = N'2.85',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2011-10-31' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2010-06-30',@EPS = N'0.2731',@EPSDeduct = N'-0.02',@Revenue = N'180.41万',@RevenueYoy = N'-98.52',@RevenueQoq = N'-72.35',@Profit = N'1.17亿',@ProfitYoy = N'210.62',@ProfiltQoq = N'-99.79',@NAVPerUnit = N'0.2000',@ROE = N'-',@CashPerUnit = N'-1.0512',@GrossProfitRate = N'24.82',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2011-08-19' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2010-03-31',@EPS = N'0.2725',@EPSDeduct = N'-0.01',@Revenue = N'141.33万',@RevenueYoy = N'-97.94',@RevenueQoq = N'-89.51',@Profit = N'1.17亿',@ProfitYoy = N'342.90',@ProfiltQoq = N'-86.03',@NAVPerUnit = N'0.2000',@ROE = N'134.36',@CashPerUnit = N'-0.2210',@GrossProfitRate = N'4.03',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2011-04-27' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2009-12-31',@EPS = N'1.62',@EPSDeduct = N'-1.62',@Revenue = N'3.07亿',@RevenueYoy = N'-81.71',@RevenueQoq = N'-92.13',@Profit = N'6.98亿',@ProfitYoy = N'196.23',@ProfiltQoq = N'2530.83',@NAVPerUnit = N'-0.6800',@ROE = N'-',@CashPerUnit = N'-0.1323',@GrossProfitRate = N'7.68',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2011-02-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2009-06-30',@EPS = N'-0.25',@EPSDeduct = N'-0.26',@Revenue = N'1.22亿',@RevenueYoy = N'-89.51',@RevenueQoq = N'-21.87',@Profit = N'-1.06亿',@ProfitYoy = N'73.75',@ProfiltQoq = N'-20.06',@NAVPerUnit = N'-2.7600',@ROE = N'-',@CashPerUnit = N'-0.0930',@GrossProfitRate = N'7.98',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2010-07-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2009-09-30',@EPS = N'-0.33',@EPSDeduct = N'-0.36',@Revenue = N'2.93亿',@RevenueYoy = N'-80.54',@RevenueQoq = N'219.17',@Profit = N'-1.41亿',@ProfitYoy = N'69.77',@ProfiltQoq = N'40.44',@NAVPerUnit = N'-2.8413',@ROE = N'-',@CashPerUnit = N'-0.0492',@GrossProfitRate = N'11.92',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2010-10-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2009-03-31',@EPS = N'-0.11',@EPSDeduct = N'-0.12',@Revenue = N'6862.57万',@RevenueYoy = N'-90.54',@RevenueQoq = N'-59.71',@Profit = N'-4822.34万',@ProfitYoy = N'60.31',@ProfiltQoq = N'81.45',@NAVPerUnit = N'-2.6257',@ROE = N'-',@CashPerUnit = N'-0.1076',@GrossProfitRate = N'2.63',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2010-04-26' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2008-12-31',@EPS = N'-1.69',@EPSDeduct = N'-1.81',@Revenue = N'16.78亿',@RevenueYoy = N'-51.37',@RevenueQoq = N'-50.22',@Profit = N'-7.25亿',@ProfitYoy = N'17.82',@ProfiltQoq = N'-327.27',@NAVPerUnit = N'-2.5100',@ROE = N'-',@CashPerUnit = N'-0.9286',@GrossProfitRate = N'4.66',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2010-03-01' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2008-03-31',@EPS = N'-0.2826',@EPSDeduct = N'-0.3',@Revenue = N'7.26亿',@RevenueYoy = N'-18.69',@RevenueQoq = N'-33.21',@Profit = N'-1.21亿',@ProfitYoy = N'-5185.65',@ProfiltQoq = N'71.09',@NAVPerUnit = N'-0.9911',@ROE = N'-',@CashPerUnit = N'0.0225',@GrossProfitRate = N'5.16',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2009-04-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2008-09-30',@EPS = N'-1.0819',@EPSDeduct = N'-1.1',@Revenue = N'15.08亿',@RevenueYoy = N'-36.22',@RevenueQoq = N'-22.18',@Profit = N'-4.65亿',@ProfitYoy = N'-0.67',@ProfiltQoq = N'78.48',@NAVPerUnit = N'-1.7888',@ROE = N'-',@CashPerUnit = N'-0.9204',@GrossProfitRate = N'6.34',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2009-10-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2008-06-30',@EPS = N'-0.9404',@EPSDeduct = N'-0.9459',@Revenue = N'11.65亿',@RevenueYoy = N'-24.18',@RevenueQoq = N'-39.40',@Profit = N'-4.04亿',@ProfitYoy = N'-14.85',@ProfiltQoq = N'-132.72',@NAVPerUnit = N'-1.6500',@ROE = N'-',@CashPerUnit = N'-0.3895',@GrossProfitRate = N'3.94',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2009-08-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2007-12-31',@EPS = N'-2.05',@EPSDeduct = N'-1.96',@Revenue = N'34.50亿',@RevenueYoy = N'-36.42',@RevenueQoq = N'31.42',@Profit = N'-8.82亿',@ProfitYoy = N'-767.08',@ProfiltQoq = N'-282.08',@NAVPerUnit = N'-0.7081',@ROE = N'-',@CashPerUnit = N'-0.3405',@GrossProfitRate = N'8.89',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2009-04-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2007-06-30',@EPS = N'-0.8189',@EPSDeduct = N'-0.8296',@Revenue = N'15.37亿',@RevenueYoy = N'-41.93',@RevenueQoq = N'-27.76',@Profit = N'-3.52亿',@ProfitYoy = N'-4660.65',@ProfiltQoq = N'-14933.61',@NAVPerUnit = N'0.6900',@ROE = N'-74.15',@CashPerUnit = N'-0.7663',@GrossProfitRate = N'6.15',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2008-08-09' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2007-03-31',@EPS = N'0.0056',@EPSDeduct = N'0',@Revenue = N'8.92亿',@RevenueYoy = N'-38.67',@RevenueQoq = N'-45.62',@Profit = N'238.89万',@ProfitYoy = N'-78.99',@ProfiltQoq = N'101.95',@NAVPerUnit = N'1.5200',@ROE = N'-',@CashPerUnit = N'-0.9305',@GrossProfitRate = N'26.31',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2008-04-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2006-12-31',@EPS = N'-0.24',@EPSDeduct = N'-0.26',@Revenue = N'54.27亿',@RevenueYoy = N'12.84',@RevenueQoq = N'44.10',@Profit = N'-1.02亿',@ProfitYoy = N'84.54',@ProfiltQoq = N'-1042.36',@NAVPerUnit = N'1.4700',@ROE = N'3.87',@CashPerUnit = N'0.3801',@GrossProfitRate = N'19.87',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2008-04-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2007-09-30',@EPS = N'-1.0747',@EPSDeduct = N'-1.0925',@Revenue = N'23.64亿',@RevenueYoy = N'-37.56',@RevenueQoq = N'28.23',@Profit = N'-4.62亿',@ProfitYoy = N'-2330.38',@ProfiltQoq = N'68.96',@NAVPerUnit = N'0.4400',@ROE = N'-',@CashPerUnit = N'-0.8776',@GrossProfitRate = N'8.09',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2008-10-31' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2006-09-30',@EPS = N'0.0482',@EPSDeduct = N'0',@Revenue = N'37.86亿',@RevenueYoy = N'12.89',@RevenueQoq = N'-4.44',@Profit = N'2071.20万',@ProfitYoy = N'110.73',@ProfiltQoq = N'455.57',@NAVPerUnit = N'1.4400',@ROE = N'-',@CashPerUnit = N'-0.2394',@GrossProfitRate = N'19.40',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2007-10-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2006-06-30',@EPS = N'0.018',@EPSDeduct = N'0',@Revenue = N'26.47亿',@RevenueYoy = N'14.14',@RevenueQoq = N'-18.11',@Profit = N'771.76万',@ProfitYoy = N'113.41',@ProfiltQoq = N'-132.14',@NAVPerUnit = N'1.4400',@ROE = N'1.48',@CashPerUnit = N'-0.0482',@GrossProfitRate = N'19.53',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2007-08-29' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2006-03-31',@EPS = N'0.0265',@EPSDeduct = N'0',@Revenue = N'14.55亿',@RevenueYoy = N'20.14',@RevenueQoq = N'-0.04',@Profit = N'1137.22万',@ProfitYoy = N'241.46',@ProfiltQoq = N'102.45',@NAVPerUnit = N'1.4400',@ROE = N'-',@CashPerUnit = N'-0.1880',@GrossProfitRate = N'19.98',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2007-04-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2005-12-31',@EPS = N'-1.53',@EPSDeduct = N'0',@Revenue = N'48.09亿',@RevenueYoy = N'-4.85',@RevenueQoq = N'40.74',@Profit = N'-6.58亿',@ProfitYoy = N'-6351.46',@ProfiltQoq = N'-243.32',@NAVPerUnit = N'1.4300',@ROE = N'-69.31',@CashPerUnit = N'0.3602',@GrossProfitRate = N'11.90',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2007-04-14' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2005-09-30',@EPS = N'0',@EPSDeduct = N'0',@Revenue = N'33.53亿',@RevenueYoy = N'-7.59',@RevenueQoq = N'-6.63',@Profit = N'-1.93亿',@ProfitYoy = N'-528.90',@ProfiltQoq = N'-122.41',@NAVPerUnit = N'2.6200',@ROE = N'-',@CashPerUnit = N'0.1293',@GrossProfitRate = N'16.47',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2006-10-25' EXEC [EST].[Proc_yjbb_Ins] @Code = N'600057',@CutoffDate = N'2005-06-30',@EPS = N'-0.13',@EPSDeduct = N'0',@Revenue = N'23.19亿',@RevenueYoy = N'-14.02',@RevenueQoq = N'-8.55',@Profit = N'-5757.06万',@ProfitYoy = N'-166.45',@ProfiltQoq = N'-1928.59',@NAVPerUnit = N'2.9300',@ROE = N'-4.46',@CashPerUnit = N'-0.1816',@GrossProfitRate = N'19.24',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2006-08-21'
<gh_stars>0 SELECT C.[Name] AS [City],COUNT(H.Id) AS [Hotels] FROM Cities AS C JOIN Hotels AS H ON H.CityId = C.Id GROUP BY C.[Name] ORDER BY Hotels DESC, C.[Name]
CREATE DATABASE mycontacts; CREATE EXTENSION "uuid-ossp"; CREATE TABLE categories ( id UUID NOT NULL UNIQUE DEFAULT uuid_generate_v4(), name VARCHAR NOT NULL ); CREATE TABLE IF NOT EXISTS contacts ( id UUID NOT NULL UNIQUE DEFAULT uuid_generate_v4(), name VARCHAR NOT NULL, email VARCHAR UNIQUE, phone VARCHAR, category_id UUID, FOREIGN KEY(category_id) REFERENCES categories(id) );
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: 05-Dez-2018 às 22:47 -- Versão do servidor: 5.7.23 -- versão do PHP: 7.2.10 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: `mysftp` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) NOT NULL, `password` varchar(50) NOT NULL, `superuser` tinyint(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `users` -- INSERT INTO `users` (`id`, `username`, `password`, `superuser`) VALUES (1, 'root', '<PASSWORD>', 1); 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 */;
CREATE SCHEMA IF NOT EXISTS `sisga` DEFAULT CHARACTER SET utf8 ; USE `sisga` ; -- ----------------------------------------------------- -- Table `sisga`.`fraternidades` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`fraternidades` ( `frat` VARCHAR(15) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `nombre` TEXT NOT NULL, `estado` CHAR(1) NOT NULL, `logo` VARCHAR(45) NOT NULL, `direccion` VARCHAR(45) NOT NULL, `ciudad` VARCHAR(45) NOT NULL, `email` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `fraterni_UNIQUE` (`frat` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`lugares` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`lugares` ( `frat` VARCHAR(15) NOT NULL, `lugar` VARCHAR(45) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `lugares_UNIQUE` (`lugar` ASC), INDEX `fk_frats_idx` (`frat` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`tipoactas` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`tipoactas` ( `frat` VARCHAR(15) NOT NULL, `tipo` VARCHAR(11) NOT NULL, `nombre` VARCHAR(45) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `tipoactas_UNIQUE` (`tipo` ASC), INDEX `fk_frat_idx` (`frat` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`actas` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`actas` ( `frat` VARCHAR(15) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, `numero` INT(11) NOT NULL, `fecha` DATE NOT NULL, `tipoacta` VARCHAR(10) NOT NULL, `tema` TEXT NOT NULL, `lugar` VARCHAR(30) NOT NULL, `objetivos` TEXT NOT NULL, `responsable` VARCHAR(25) NOT NULL, `conclusiones` TEXT NOT NULL, `fechasig` DATE NOT NULL, `lugarsig` VARCHAR(30) NOT NULL, `email` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `numero_UNIQUE` (`frat` ASC, `numero` ASC), INDEX `fx_lug_idx` (`lugar` ASC), INDEX `fx_tipacta_idx` (`tipoacta` ASC), INDEX `fx_lug2_idx` (`lugarsig` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`servicios` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`servicios` ( `servicio` VARCHAR(10) NOT NULL, `tiposerv` VARCHAR(15) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `nombre` TEXT NOT NULL, `estado` CHAR(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `servicios_UNIQUE` (`servicio` ASC)) ENGINE = MyISAM AUTO_INCREMENT = 9 DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`usuarios` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`usuarios` ( `frat` VARCHAR(15) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `usuario` VARCHAR(25) NOT NULL, `apellidos` TEXT NOT NULL, `nombres` TEXT NOT NULL, `password` TEXT NOT NULL, `email` VARCHAR(100) NOT NULL, `servicio` VARCHAR(10) NOT NULL, `token` VARCHAR(100) NOT NULL, `tokenexpira` DATETIME NOT NULL, `estado` CHAR(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `usuario_UNIQUE` (`usuario` ASC), INDEX `fk_frats` (`frat` ASC), INDEX `fk_serv_idx` (`servicio` ASC)) ENGINE = MyISAM AUTO_INCREMENT = 12 DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`asistentes` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`asistentes` ( `idacta` INT(11) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `asistente` VARCHAR(25) NOT NULL, `estado` CHAR(1) NOT NULL, `servicio` VARCHAR(10) NOT NULL, `tiposerv` VARCHAR(15) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `asistente_UNIQUE` (`idacta` ASC, `asistente` ASC), INDEX `fx_serv_idx` (`servicio` ASC), INDEX `fx_asis_idx` (`asistente` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`comentarios` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`comentarios` ( `idacta` INT(11) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `asistente` VARCHAR(25) NOT NULL, `estado` CHAR(1) NOT NULL, `text` TEXT NOT NULL, `fechahora` DATETIME NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `asistente_UNIQUE` (`idacta` ASC, `asistente` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`etiquetas` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`etiquetas` ( `frat` VARCHAR(15) NOT NULL, `etiqueta` VARCHAR(45) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `etiq_UNIQUE` (`etiqueta` ASC), INDEX `fx_frat_idx` (`frat` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`etiquetasacta` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`etiquetasacta` ( `idacta` INT(11) NOT NULL, `etiqueta` VARCHAR(45) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `etiqacta_UNIQUE` (`idacta` ASC, `etiqueta` ASC), INDEX `fx_etiq_idx` (`etiqueta` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`notificaciones` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`notificaciones` ( `idacta` INT(11) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, `estadoacta` CHAR(1) NOT NULL, `origen` VARCHAR(15) NOT NULL, `destino` VARCHAR(15) NOT NULL, `fechahora` DATETIME NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `lugares_UNIQUE` (`idacta` ASC, `fechahora` ASC), INDEX `fx_origen_idx` (`origen` ASC), INDEX `fx_destino_idx` (`destino` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `sisga`.`tareas` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `sisga`.`tareas` ( `idacta` INT(11) NOT NULL, `id` INT(11) NOT NULL AUTO_INCREMENT, `estado` CHAR(1) NOT NULL, `text` TEXT NOT NULL, `usuario` VARCHAR(25) NOT NULL, `creada` DATETIME NOT NULL, `inicioplan` DATE NOT NULL, `finalplan` DATE NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `tareas_UNIQUE` (`idacta` ASC, `creada` ASC), INDEX `fx_usuari_idx` (`usuario` ASC)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; /* Poblar servicios, se requiere después de limpiar o crear la Bd, o de no, no deja entar */ INSERT INTO `sisga`.`servicios` (`servicio`, `tiposerv`, `id`, `nombre`, `estado`) VALUES ('A', 'A', '1', 'Administrador', 'A'); /* Poblar usuarios, se requiere un usuario administrador para poder poblarla por scripts */ INSERT INTO `sisga`.`usuarios` (`frat`, `id`, `usuario`, `apellidos`, `nombres`, `password`, `email`, `servicio`, `token`, `tokenexpira`, `estado`) VALUES ('demo', 1, 'admin', 'Del Sistema', 'Administrador', '$2y$10$kR0suOkr3Qx8bbqeLzDDyey54FcRyOgMm2p3d3PyLjCONLKWtWFju', '<EMAIL>', 'A', '$2y$10$yZGPGWIz2nV5SxzxHYJi4OjAuUWRoPtKORQ1xxDl2LusKu2IYAGyG', '2018-10-25 15:33:27', 'A');
-- MySQL dump 10.13 Distrib 5.7.26, for osx10.10 (x86_64) -- -- Host: 127.0.0.1 Database: laraclassified -- ------------------------------------------------------ -- Server version 5.7.26 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `<<prefix>>subadmin1` -- /*!40000 ALTER TABLE `<<prefix>>subadmin1` DISABLE KEYS */; INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.11','LI','Vaduz','Vaduz',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.10','LI','Triesenberg','Triesenberg',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.09','LI','Triesen','Triesen',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.08','LI','Schellenberg','Schellenberg',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.07','LI','Schaan','Schaan',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.06','LI','Ruggell','Ruggell',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.05','LI','Planken','Planken',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.04','LI','Mauren','Mauren',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.03','LI','Gamprin','Gamprin',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.02','LI','Eschen','Eschen',1); INSERT INTO `<<prefix>>subadmin1` (`code`, `country_code`, `name`, `asciiname`, `active`) VALUES ('LI.01','LI','Balzers','Balzers',1); /*!40000 ALTER TABLE `<<prefix>>subadmin1` ENABLE KEYS */; -- -- Dumping data for table `<<prefix>>subadmin2` -- /*!40000 ALTER TABLE `<<prefix>>subadmin2` DISABLE KEYS */; /*!40000 ALTER TABLE `<<prefix>>subadmin2` ENABLE KEYS */; -- -- Dumping data for table `<<prefix>>cities` -- /*!40000 ALTER TABLE `<<prefix>>cities` DISABLE KEYS */; INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Vaduz','Vaduz',9.52154,47.1415,'P','PPLC','LI.11',NULL,5197,'Europe/Vaduz',1,'2013-04-01 23:00:00','2013-04-01 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Triesenberg','Triesenberg',9.54197,47.1181,'P','PPLA','LI.10',NULL,2689,'Europe/Vaduz',1,'2013-04-01 23:00:00','2013-04-01 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Triesen','Triesen',9.52815,47.1075,'P','PPLA','LI.09',NULL,4701,'Europe/Vaduz',1,'2013-10-12 23:00:00','2013-10-12 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Schellenberg','Schellenberg',9.54678,47.2312,'P','PPLA','LI.08',NULL,1004,'Europe/Vaduz',1,'2013-04-01 23:00:00','2013-04-01 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Schaan','Schaan',9.50867,47.165,'P','PPLA','LI.07',NULL,5748,'Europe/Vaduz',1,'2013-10-12 23:00:00','2013-10-12 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Ruggell','Ruggell',9.5254,47.238,'P','PPLA','LI.06',NULL,1862,'Europe/Vaduz',1,'2019-02-26 23:00:00','2019-02-26 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Planken','Planken',9.54437,47.1852,'P','PPLA','LI.05',NULL,377,'Europe/Vaduz',1,'2013-04-01 23:00:00','2013-04-01 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Mauren','Mauren',9.5442,47.218,'P','PPLA','LI.04',NULL,3626,'Europe/Vaduz',1,'2017-12-20 23:00:00','2017-12-20 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Gamprin','Gamprin',9.50935,47.2204,'P','PPLA','LI.03',NULL,1268,'Europe/Vaduz',1,'2019-10-21 23:00:00','2019-10-21 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Eschen','Eschen',9.52223,47.2107,'P','PPLA','LI.02',NULL,4008,'Europe/Vaduz',1,'2013-04-01 23:00:00','2013-04-01 23:00:00'); INSERT INTO `<<prefix>>cities` (`country_code`, `name`, `asciiname`, `longitude`, `latitude`, `feature_class`, `feature_code`, `subadmin1_code`, `subadmin2_code`, `population`, `time_zone`, `active`, `created_at`, `updated_at`) VALUES ('LI','Balzers','Balzers',9.50251,47.0667,'P','PPLA','LI.01',NULL,4447,'Europe/Vaduz',1,'2019-02-25 23:00:00','2019-02-25 23:00:00'); /*!40000 ALTER TABLE `<<prefix>>cities` ENABLE KEYS */; /*!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
select * from sys.dm_resource_governor_configuration
-- Mozliwosc oddania ksiazki oraz dodania ewentualnej uwagi co do jej stanu. CREATE OR REPLACE FUNCTION projekt.zwroc_ksiazke(UZYTKOWNIK_ID INTEGER, KOPIA_ID INTEGER, data_zwrotu DATE, dodatkowa_oplata DECIMAL, uwaga VARCHAR) RETURNS INTEGER AS $$ BEGIN IF uwaga IS NOT NULL THEN INSERT INTO projekt.uwaga (opis, ID_KOPIA) VALUES (uwaga, KOPIA_ID); END IF; UPDATE projekt.wypozyczenie SET data_oddania = data_zwrotu, doplata = dodatkowa_oplata WHERE ID_KOPIA = KOPIA_ID AND ID_UZYTKOWNIK = UZYTKOWNIK_ID; RETURN 0; END; $$ LANGUAGE plpgsql; -- Funkcja sprawdzająca czy jest dostępna kopia danej książki, którą można zarezerwować CREATE OR REPLACE FUNCTION projekt.czy_mozna_zarezerwowac(KSIAZKA_ID INTEGER) RETURNS BOOLEAN AS $$ DECLARE ilosc_wolnych_kopii INTEGER; BEGIN ilosc_wolnych_kopii = (WITH cte AS ( SELECT ID_KOPIA FROM projekt.kopia_ksiazki WHERE ID_KSIAZKA = KSIAZKA_ID EXCEPT SELECT ID_KOPIA FROM projekt.rezerwacja) SELECT COUNT(*) FROM cte); IF ilosc_wolnych_kopii > 0 THEN RETURN true; END IF; RETURN false; END; $$ LANGUAGE plpgsql; -- Funkcja pozwalająca na dodanie książki, wraz z jedną kopią CREATE OR REPLACE FUNCTION projekt.dodaj_ksiazke(WYDAWCA_ID INTEGER, GATUNEK_ID INTEGER, tytul_nowy TEXT, jezyk_nowy TEXT, nr_isbn_nowy TEXT, data_publikacji_nowy DATE, opis_nowy TEXT, liczba_stron_nowy INTEGER, wydanie_nowy INTEGER) RETURNS BOOLEAN AS $$ DECLARE nowa_ksiazka INTEGER; BEGIN INSERT INTO projekt.ksiazka (ID_WYDAWCA, ID_GATUNEK, tytul, jezyk, nr_isbn, data_wydania, opis, liczba_stron, wydanie) VALUES (WYDAWCA_ID, GATUNEK_ID, tytul_nowy, jezyk_nowy, nr_isbn_nowy, data_publikacji_nowy, opis_nowy, liczba_stron_nowy, wydanie_nowy) RETURNING ID_KSIAZKA INTO nowa_ksiazka; INSERT INTO projekt.kopia_ksiazki (ID_KSIAZKA) VALUES (nowa_ksiazka); RETURN true; END; $$ LANGUAGE plpgsql; -- Funkcja pozwalajaca na rezerwacje ksiazki, zwraca ID_KOPIA zarezerwowanej kopii CREATE OR REPLACE FUNCTION projekt.rezerwuj_ksiazke(UZYTKOWNIK_ID INTEGER, KSIAZKA_ID INTEGER, data_rezerwacji DATE) RETURNS INTEGER AS $$ DECLARE id_rez_kopii INTEGER; BEGIN id_rez_kopii = (WITH cte AS ( SELECT ID_KOPIA FROM projekt.kopia_ksiazki WHERE ID_KSIAZKA = KSIAZKA_ID EXCEPT SELECT ID_KOPIA FROM projekt.rezerwacja) SELECT ID_KOPIA FROM cte LIMIT 1); IF id_rez_kopii IS NULL THEN RAISE EXCEPTION 'Nie można zarezerwować tej książki.'; ELSE INSERT INTO projekt.rezerwacja VALUES (id_rez_kopii, UZYTKOWNIK_ID, data_rezerwacji); RETURN id_rez_kopii; END IF; END; $$ LANGUAGE plpgsql; -- Funkcja sprawdzajaca czy mozliwa jest zamiana rezerwacji na wypozyczenie CREATE OR REPLACE FUNCTION projekt.czy_mozna_zamienic_rezerwacje_na_wypozyczenie(KOPIA_ID INTEGER) RETURNS BOOLEAN AS $$ BEGIN IF EXISTS (SELECT * FROM projekt.wypozyczenie wyp WHERE wyp.ID_KOPIA = KOPIA_ID AND wyp.data_oddania IS NULL) THEN RETURN false; END IF; RETURN true; END; $$ LANGUAGE plpgsql; -- Funkcja zamieniajaca rezerwacje na wypozyczenie CREATE OR REPLACE FUNCTION projekt.zamien_rezerwacje_na_wypozyczenie(KOPIA_ID INTEGER, UZYTKOWNIK_ID INTEGER, wypozyczono_dnia DATE, zakladany_zwrot DATE) RETURNS BOOLEAN AS $$ BEGIN IF EXISTS (SELECT * FROM projekt.wypozyczenie wyp WHERE wyp.id_kopia = kopia_id AND wyp.data_oddania IS NULL) THEN RAISE EXCEPTION 'Nie można zamienic na wypożyczenie'; END IF; DELETE FROM projekt.rezerwacja WHERE ID_KOPIA = KOPIA_ID; INSERT INTO projekt.wypozyczenie (ID_KOPIA, ID_UZYTKOWNIK, data_wypozyczenia, plan_data_oddania, doplata) VALUES (KOPIA_ID, UZYTKOWNIK_ID, wypozyczono_dnia, zakladany_zwrot, 0); RETURN TRUE; END; $$ LANGUAGE plpgsql; -- Funkcja sprawdzajaca czy jest mozliwosc wypozyczenia ksiazki CREATE OR REPLACE FUNCTION projekt.czy_mozna_wypozyczyc(KSIAZKA_ID INTEGER) RETURNS BOOLEAN AS $$ BEGIN IF EXISTS (WITH nie_oddane AS (SELECT ID_KOPIA FROM projekt.wypozyczenie WHERE data_oddania IS NULL), bez_rezerwacji AS (SELECT ko.ID_KOPIA FROM projekt.ksiazka k JOIN projekt.kopia_ksiazki ko USING(ID_KSIAZKA) WHERE ID_KSIAZKA = KSIAZKA_ID AND ID_KOPIA NOT IN (SELECT ID_KOPIA FROM projekt.rezerwacja)) SELECT * FROM bez_rezerwacji WHERE ID_KOPIA NOT IN (SELECT * FROM nie_oddane)) THEN RETURN true; END IF; RETURN false; END; $$ LANGUAGE plpgsql; -- Funkcja wypożyczająca książkę CREATE OR REPLACE FUNCTION projekt.wypozycz(KSIAZKA_ID INTEGER, UZYTKOWNIK_ID INTEGER, wypozyczono_dnia DATE, zakladany_zwrot DATE) RETURNS INTEGER AS $$ DECLARE ID_WYP_KOPI INTEGER; BEGIN ID_WYP_KOPI = (WITH nie_oddane AS (SELECT ID_KOPIA FROM projekt.wypozyczenie WHERE data_oddania IS NULL), bez_rezerwacji AS (SELECT ko.ID_KOPIA FROM projekt.ksiazka ks JOIN projekt.kopia_ksiazki ko USING(ID_KSIAZKA) WHERE ID_KSIAZKA = KSIAZKA_ID AND ID_KOPIA NOT IN (SELECT ID_KOPIA FROM projekt.rezerwacja)) SELECT * FROM bez_rezerwacji WHERE ID_KOPIA NOT IN (SELECT * FROM nie_oddane) LIMIT 1); IF ID_WYP_KOPI = NULL THEN RAISE EXCEPTION 'Nie można wypożyczyć książki'; ELSE INSERT INTO projekt.wypozyczenie (ID_KOPIA, ID_UZYTKOWNIK, data_wypozyczenia, plan_data_oddania, doplata) VALUES (ID_WYP_KOPI, UZYTKOWNIK_ID, wypozyczono_dnia, zakladany_zwrot, 0); END IF; RETURN ID_WYP_KOPI; END; $$ LANGUAGE plpgsql; --Funkcja zwraca dane uzytkownika z najwieksza liczba wypozyczen CREATE OR REPLACE FUNCTION projekt.uzytkownik_z_najwiecej_wypozyczen() RETURNS VARCHAR AS $$ DECLARE wynik RECORD; BEGIN SELECT u.imie, u.nazwisko, COUNT(*) AS ile INTO wynik FROM projekt.uzytkownik u JOIN projekt.wypozyczenia w USING (ID_UZYTKOWNIK) GROUP BY u.imie, u.nazwisko ORDER BY 3 DESC LIMIT 1; RETURN wynik.imie || ' ' || wynik.nazwisko || ' (' || wynik.ile || ')'; END; $$ LANGUAGE plpgsql; --Funkcja zwraca dane uzytkownika z najwieksza liczba nieoddanych ksiazek CREATE OR REPLACE FUNCTION projekt.uzytkownik_z_najwiecej_niezwroconych_ksiazek() RETURNS VARCHAR AS $$ DECLARE wynik RECORD; BEGIN SELECT u.imie, u.nazwisko, COUNT(*) AS ile INTO wynik FROM projekt.uzytkownik u JOIN projekt.wypozyczenia w USING (ID_UZYTKOWNIK) WHERE w.data_oddania IS NULL AND w.data_wypozyczenia BETWEEN '1900-01-01' AND '2100-01-01' GROUP BY u.imie, u.nazwisko ORDER BY 3 DESC LIMIT 1; RETURN wynik.imie || ' ' || wynik.nazwisko || ' (' || wynik.ile || ')'; END; $$ LANGUAGE plpgsql; --Funkcja zwraca tytul ksiazki ktora byla wypozyczana najczesciej CREATE OR REPLACE FUNCTION projekt.najczesciej_wybierana_ksiazka() RETURNS VARCHAR AS $$ DECLARE wynik RECORD; BEGIN SELECT k.tytul, COUNT(*) AS ilosc INTO wynik FROM projekt.wypozyczenie w JOIN projekt.kopia_ksiazki ko USING (ID_KOPIA) JOIN projekt.ksiazka k USING (ID_KSIAZKA) GROUP BY k.tytul ORDER BY 2 DESC LIMIT 1; RETURN wynik.tytul || ' (' || wynik.ilosc || ')'; END; $$ LANGUAGE plpgsql; --Funkcja zwraca imie i nazwisko autora ktorego ksiazki byly wybierane najczesciej CREATE OR REPLACE FUNCTION projekt.najczesciej_wybierany_autor() RETURNS VARCHAR AS $$ DECLARE wynik RECORD; BEGIN SELECT a.imie, a.nazwisko, COUNT(*) AS ilosc INTO wynik FROM projekt.wypozyczenie w JOIN projekt.kopia_ksiazki ko USING (ID_KOPIA) JOIN projekt.ksiazka k USING (ID_KSIAZKA) JOIN projekt.ksiazka_autor ka USING (ID_KSIAZKA) JOIN projekt.autor a USING (ID_AUTOR) GROUP BY a.imie, a.nazwisko ORDER BY 3 DESC LIMIT 1; RETURN wynik.imie || ' ' || wynik.nazwisko || ' (' || wynik.ilosc || ')'; END; $$ LANGUAGE plpgsql; --Funkcja pozwala na dodanie użytkownika wraz z 1 adsresem CREATE OR REPLACE FUNCTION projekt.dodaj_uzytkownika_z_adresem(imie_n TEXT, nazwisko_n TEXT, email_n TEXT, data_ur DATE, miasto_n TEXT, ulica_n TEXT, nr_domu_n INTEGER, kod_n TEXT) RETURNS BOOLEAN AS $$ DECLARE nowy_uz INTEGER; BEGIN INSERT INTO projekt.uzytkownik (imie, nazwisko, mail, data_urodzenia) VALUES (imie_n, nazwisko_n, email_n, data_ur) RETURNING ID_UZYTKOWNIK INTO nowy_uz ; INSERT INTO projekt.adres(ID_UZYTKOWNIK, miasto, ulica, nr_domu, kod_pocztowy) VALUES (nowy_uz, miasto_n, ulica_n, nr_domu_n, kod_n); RETURN true; END; $$ LANGUAGE plpgsql; --Funkcja dodaje wybrana liczbe kopii danej książki CREATE OR REPLACE FUNCTION projekt.dodaj_kopie(KSIAZKA_ID INTEGER, ilosc INTEGER) RETURNS BOOLEAN AS $$ BEGIN FOR i IN 1..ilosc LOOP INSERT INTO projekt.kopia_ksiazki (ID_KSIAZKA) VALUES (KSIAZKA_ID); END LOOP; RETURN true; END; $$ LANGUAGE plpgsql;
<gh_stars>0 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; SET NAMES utf8; /*!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 */; -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `hibernate_sequence`( sequence_name varchar(255) CHARACTER SET utf8 not null , next_val bigint, primary key (sequence_name) ) engine=MyISAM; insert into `hibernate_sequence` (`next_val`) values(50); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `fylker` ( `id` int(2) NOT NULL PRIMARY KEY, `navn` varchar(60) NOT NULL ); INSERT INTO `fylker` (`id`, `navn`) VALUES (-1, 'Udefinert fylke'), (1, 'Østfold'), (2, 'Akershus'), (3, 'Oslo'), (4, 'Hedmark'), (5, 'Oppland'), (6, 'Buskerud'), (7, 'Vestfold'), (8, 'Telemark'), (9, 'Aust-Agder'), (10, 'Vest-Agder'), (11, 'Rogaland'), (12, 'Hordaland'), (14, 'Sogn og Fjordane'), (15, 'Møre og Romsdal'), (18, 'Nordland'), (19, 'Troms'), (20, 'Finnmark'), (21, 'Svalbard'), (30, 'Viken'), (34, 'Innlandet'), (38, 'Vestfold og Telemark'), (42, 'Agder'), (46, 'Vestland'), (50, 'Trøndelag'), (54, 'Troms og Finnmark'); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `lokallag` ( `id` int(3) NOT NULL PRIMARY KEY AUTO_INCREMENT, `navn` varchar(100) NOT NULL UNIQUE, `hypersysID` int NULL UNIQUE, `fylke` int(2) DEFAULT NULL ); insert into `lokallag` (`id`, `navn`, `fylke`) values (-1, 'Udefinert', -1); insert into `lokallag` (navn) values ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('Rødt'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>lag'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>-Høland'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('Rødt Orkland'), ('R<NAME>'), ('Rødt Oslo Alna'), ('Rødt Oslo Arbeiderlag'), ('Rødt Os<NAME>'), ('Rødt Oslo Gamle Oslo'), ('Rødt Oslo Grorud'), ('Rødt Oslo Grünerløkka'), ('Rødt Oslo Jernbane og Sporveier'), ('Rødt Oslo kommune'), ('Rødt Oslo Kvinnepolitisk'), ('Rødt Oslo N<NAME>'), ('Rødt Oslo Nordstrand'), ('Rødt Oslo Østensjø'), ('Rødt Oslo Sagene'), ('Rødt Oslo Skole og Barnehage'), ('Rødt Oslo Solidaritetslag'), ('Rødt Oslo <NAME>'), ('Rødt Oslo St. Hanshaugen'), ('<NAME>'), ('Rødt Oslo Studentlag'), ('Rødt Oslo Vest'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('Røros'), ('Test-lokallag'), ('<NAME>- og Sosialpolitisk lag'), ('Trondheim Østbyen'), ('Trondheim Strinda'), ('Trondheim Universitetslag'), ('Trondheim-Fagliglag'), ('Trondheim-Sentrum'), ('Uten lag Finnmark'), ('Uten lag Hedmark'), ('uten lag Hordaland'), ('Uten lag Møre og Romsdal'), ('Uten lag Nordland'), ('Uten lag Oppland'), ('Uten lag Rogaland'), ('Uten lag Sogn og Fjordane'), ('Uten lag Telemark'), ('Uten lag Troms'), ('Uten lag Trøndelag'), ('Uten lag Vestfold'), ('Uten lag Vestfold og Telemark'), ('Utland'), ('Organisasjon1 sentralt'); INSERT INTO `lokallag`(navn) values ('Rødt Trondheim Ila'); UPDATE `lokallag` SET navn = 'Rødt Time og Klepp' WHERE navn = 'Raudt Time og Klepp'; UPDATE `lokallag` SET navn = 'Rødt Trondheim Fagliglag' WHERE navn = 'Trondheim-Fagliglag'; UPDATE `lokallag` SET navn = 'Rødt Trondheim Sentrum' WHERE navn = 'Trondheim-Sentrum'; UPDATE `lokallag` SET navn = 'Rødt Trondheim Østbyen' WHERE navn = 'Trondheim Østbyen'; UPDATE `lokallag` SET navn = 'Vaksdal' WHERE navn = 'Raudt Vaksdal'; INSERT INTO `lokallag`(navn) values ('Uten Lag Agder'), ('Uten lag Akershus'), ('Uten lag Buskerud'), ('Uten lag Oslo'), ('Uten lag Østfold'); INSERT INTO `lokallag`(`navn`) values ('GAMVIK'), ('Giske'), ('Gjøvik'), ('Indre Fosen'), ('Karasjok'), ('Land'), ('Nannestad'), ('<NAME>'), ('<NAME>'), ('<NAME>'), ('Rø<NAME>'), ('Tana'), ('Trysil'), ('Tynset'), ('Ullensaker'); UPDATE lokallag SET fylke=-1 where navn in ('Udefinert', 'Rødt', 'Test-lokallag', 'Utland', 'Organisasjon1 sentralt'); UPDATE lokallag SET fylke=1 where navn in ('Uten lag Østfold', 'Rødt Fredrikstad og Hvaler', 'Rødt Halden', 'Rødt Indre Østfold', 'Rødt Moss og omegn', 'Rødt Råde', 'Rødt Sarpsborg og omegn', 'Rødt Våler i Østfold'); UPDATE lokallag SET fylke=2 where navn in ('Uten lag Akershus', 'Rødt Asker', 'Rødt Bærum', 'Rødt Eidsvoll og Hurdal', 'Rødt Frogn', 'Rødt Lillestrøm', 'Rødt Lørenskog', 'Rødt Nes', 'Rødt Nesodden', 'Rødt Nittedal', 'Rødt Nordre Follo', 'Rødt Ullensaker og Nannestad', 'Rødt Vestby', 'Rødt Ås', 'Ullensaker', 'Nannestad', 'Rødt Aurskog-Høland', 'Rødt Ås Studentlag', 'Rødt Nedre Romerike'); UPDATE lokallag SET fylke=3 where navn in ('Rødt Oslo Alna', 'Rødt Oslo Bjerke', 'Rødt Oslo Gamle Oslo', 'Rødt Oslo Grorud', 'Rødt Oslo Grünerløkka', 'Rødt Oslo Nordre Aker', 'Rødt Oslo Nordstrand', 'Rødt Oslo Sagene','Rødt Oslo St. Hanshaugen', 'Rødt Oslo Stovner', 'Rødt Oslo Søndre Nordstrand', 'Rødt Oslo Vest', 'Rødt Oslo Østensjø', 'Rødt Oslo Arbeiderlag', 'Rødt Oslo Jernbane og Sporveier', 'Rødt Oslo Kvinnepolitisk', 'Rødt Oslo Skole og Barnehage', 'Rødt Oslo Solidaritetslag', 'Rødt Oslo Studentlag', 'Rødt Oslo kommune', 'Uten lag Oslo'); UPDATE lokallag SET fylke=4 where navn in ('Rødt Elverum', 'Rødt Folldal', 'Rødt Hamar', 'Rødt Kongsvinger og omegn', 'Rødt Løten', 'Rødt Odal', 'Rødt Ringsaker', 'Rødt Stange', 'Rødt Åsnes', 'Uten lag Hedmark', 'Tynset', 'Trysil'); UPDATE lokallag SET fylke=5 where navn in ('Raudt Valdres', 'Rødt Gjøvik og Land', 'Rødt Gran', 'Rødt Lillehammer', 'Rødt Lunner', 'Rødt Midt-Gudbrandsdalen', 'Rødt Vestre Toten', 'Rødt Østre Toten', 'Uten lag Oppland', 'Land', 'Gjøvik'); UPDATE lokallag SET fylke=6 where navn in ('Rødt Drammen', 'Rødt Kongsberg', 'Rødt Lier', 'Rødt Modum', 'Rødt Øvre Eiker', 'Uten lag Buskerud', 'Rødt Ringerike'); UPDATE lokallag SET fylke=7 where navn in ('Uten lag Vestfold', 'Uten lag Vestfold og Telemark', 'Rødt Holmestrand', 'Rødt Horten', 'Rødt Larvik', 'Rødt Sandefjord', 'Rødt Tønsberg og Færder'); UPDATE lokallag SET fylke=8 where navn in ('Rødt Bamble', 'Rødt Kragerø', 'Rødt Midt-Telemark', 'Rødt Notodden', 'Rødt Porsgrunn', 'Rødt Skien', 'Uten lag Telemark'); UPDATE lokallag SET fylke=9 where navn in ('Rødt Arendal', 'Rødt Froland', 'Rødt Grimstad', 'Rødt Lillesand', 'Rødt Risør', 'Rødt Setesdal', 'Rødt Tvedestrand', 'Rødt Vegårshei', 'Rødt Åmli'); UPDATE lokallag SET fylke=10 where navn in ('Rødt Farsund', 'Rødt Flekkefjord', 'Rødt Kristiansand', 'Rødt Lindesnes', 'Rødt Lyngdal', 'Rødt Vennesla', 'Uten Lag Agder'); UPDATE lokallag SET fylke=11 where navn in ('R<NAME>å', 'Rødt Dalane', 'Rødt Haugaland', 'Rødt Sandnes', 'Rødt Stavanger', 'Rødt Strand', 'Uten lag Rogaland', 'Rødt Stavanger Studentlag', 'Rødt Time og Klepp', 'Rødt Sola'); UPDATE lokallag SET fylke=12 where navn in ('Raudt Alver', 'Raudt Austrheim', 'Raudt Bjørnafjorden', 'Raudt Bømlo', 'Raudt Kvam', 'Raudt Kvinnherad', 'Raudt Stord', 'Raudt Voss', 'Rødt Askøy', 'Rødt Bergen Møhlenpris', 'Rødt Bergen Nord', 'Rødt Bergen Sentrum', 'Rødt Bergen Sør', 'Rødt Bergen Vest', 'Rødt Ullensvang', 'Rødt Øygarden', 'uten lag Hordaland', 'Rødt Bergen Studentlag', 'Vaksdal'); UPDATE lokallag SET fylke=14 where navn in ('<NAME>', '<NAME>', '<NAME>', '<NAME>', '<NAME>', '<NAME>', '<NAME>', 'Raudt Lærdal', '<NAME>', '<NAME>', 'Raudt Årdal', 'Uten lag Sogn og Fjordane', '<NAME>'); UPDATE lokallag SET fylke=15 where navn in ('<NAME>', '<NAME>', '<NAME>', '<NAME>', '<NAME>', '<NAME>', 'Rødt Sunndal', 'Rødt Ålesund', 'Uten lag Møre og Romsdal', 'Giske'); UPDATE lokallag SET fylke=50 where navn in ('<NAME>', '<NAME>', 'Rødt Levanger', '<NAME>', 'R<NAME>', 'R<NAME>', 'Rødt Nærøysund', 'Rødt Orkland', 'Rødt Skaun', '<NAME>', 'Rødt Stjørdal', 'Rødt Trondheim Ila', 'Rødt Trondheim Sentrum', 'Rødt Trondheim Østbyen', 'Rødt Verdal', 'Rødt Ørland', 'Røros', 'Trondheim Strinda', 'Uten lag Trøndelag', 'Rødt Trondheim Fagliglag', 'Trondheim Universitetslag', 'Trondheim Helse- og Sosialpolitisk lag', 'Rødt Flatanger', 'Indre Fosen'); UPDATE lokallag SET fylke=18 where navn in ('Rødt Alstahaug', 'Rødt Andøy', 'Rødt Bodø', 'Rødt Brønnøy', 'Rødt Dønna', 'Rødt Fauske', 'Rødt Hadsel', 'Rødt Hamarøy', 'R<NAME>', 'Rødt Leirfjord', 'Rødt Narvik', 'Rødt Nesna', 'Rødt Rana', 'Rødt Røst', 'Rødt Saltdal', 'Rødt Sortland', 'Rødt Steigen', 'Rødt Sømna', 'Rødt Sørfold', 'Rødt Vefsn', 'Rødt Vega', 'Rødt Vestvågøy', 'Rødt Vågan', 'Rødt Øksnes', 'Uten lag Nordland'); UPDATE lokallag SET fylke=19 where navn in ('Uten lag Troms', 'Rødt Balsfjord', 'Rødt Harstad', 'Rødt Målselv', 'Rødt Salangen', 'Rødt Skjervøy', 'Rødt Tromsø', 'Rødt Tromsø Studentlag'); UPDATE lokallag SET fylke=20 where navn in ('Rødt Alta', 'Rødt Hammerfest', 'Rødt Måsøy', 'Rødt Sør-Varanger', 'Rødt Vadsø', 'Uten lag Finnmark', 'GAMVIK', 'Tana', 'Karasjok', 'PORSANGER PORSÁNGU PORSANKI'); -- -------------------------------------------------------- ALTER TABLE lokallag modify fylke int(2) NOT NULL; ALTER TABLE lokallag ADD CONSTRAINT fk_lokallag_fylke FOREIGN KEY (fylke) REFERENCES fylker(id); ALTER TABLE `lokallag` ADD INDEX `lokallag_fylke_index` (`fylke`); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `kommune` ( `nummer` integer NOT NULL PRIMARY KEY, `navn` varchar(50) NOT NULL, `lokallag_id` int(3) DEFAULT NULL, `fylke_id` int(2) NOT NULL, FOREIGN KEY (`lokallag_id`) REFERENCES `lokallag` (`id`), INDEX(`lokallag_id`), FOREIGN KEY (`fylke_id`) REFERENCES `fylker` (`id`), INDEX(`fylke_id`) ); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ukjent', -1, -1, -1); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Aremark',118,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Askim',124,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Eidsberg',125,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Fredrikstad',106,1, (select id from lokallag where navn = 'Rødt Fredrikstad og Hvaler')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Halden',101,1, (select id from lokallag where navn = 'Rødt Halden')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Hobøl',138,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Hvaler',111,1, (select id from lokallag where navn = 'Rødt Fredrikstad og Hvaler')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Marker',119,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id, lokallag_id) VALUES ('Moss',104,1, (select id from lokallag where navn = 'Rødt Moss og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Råde',135,1, (select id from lokallag where navn = 'Rødt Råde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rakkestad',128,1, (select id from lokallag where navn = 'Rødt Sarpsborg og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rømskog',121,2, (select id from lokallag where navn = 'Rødt Aurskog-Høland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rygge',136,1, (select id from lokallag where navn = 'Rødt Moss og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sarpsborg',105,1, (select id from lokallag where navn = 'Rødt Sarpsborg og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skiptvet',127,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Spydeberg',123,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Trøgstad',122,1, (select id from lokallag where navn = 'Rødt Indre Østfold')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Våler i Østfold',137,1, (select id from lokallag where navn = 'Rødt Våler i Østfold')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ås',214,2, (select id from lokallag where navn = 'Rødt Ås')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Asker',220,2, (select id from lokallag where navn = 'Rødt Asker')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Aurskog-Høland',221,2, (select id from lokallag where navn = 'Rødt Aurskog-Høland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bærum',219,2, (select id from lokallag where navn = 'Rødt Bærum')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Eidsvoll',237,2, (select id from lokallag where navn = 'Rødt Eidsvoll og Hurdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Enebakk',229,2, (select id from lokallag where navn = 'Rødt Nordre Follo')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fet',227,2, (select id from lokallag where navn = 'Rødt Lillestrøm')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Frogn',215,2, (select id from lokallag where navn = 'Rødt Frogn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gjerdrum',234,2, (select id from lokallag where navn = 'Rødt Lillestrøm')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hurdal',239,2, (select id from lokallag where navn = 'Rødt Eidsvoll og Hurdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lørenskog',230,2, (select id from lokallag where navn = 'Rødt Lørenskog')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nannestad',238,2, (select id from lokallag where navn = 'Rødt Ullensaker og Nannestad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',236,2, (select id from lokallag where navn = 'Rødt Nes')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nesodden',216,2, (select id from lokallag where navn = 'Rødt Nesodden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nittedal',233,2, (select id from lokallag where navn = 'Rødt Nittedal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Oppegård',217,2, (select id from lokallag where navn = 'Rødt Nordre Follo')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rælingen',228,2, (select id from lokallag where navn = 'Rødt Lillestrøm')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skedsmo',231,2, (select id from lokallag where navn = 'Rødt Lillestrøm')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ski',213,2, (select id from lokallag where navn = 'Rødt Nordre Follo')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sørum',226,2, (select id from lokallag where navn = 'Rødt Lillestrøm')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ullensaker',235,2, (select id from lokallag where navn = 'Rødt Ullensaker og Nannestad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vestby',211,2, (select id from lokallag where navn = 'Rødt Vestby')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Oslo',301,3, (select id from lokallag where navn = 'Rødt Oslo')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Alvdal',438,4, (select id from lokallag where navn = 'Rødt Folldal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Åmot',429,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Åsnes',425,4, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Eidskog',420,4, (select id from lokallag where navn = 'Rødt Kongsvinger og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Elverum',427,4, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Engerdal',434,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Folldal',439,4, (select id from lokallag where navn = 'Rødt Folldal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Grue',423,4, (select id from lokallag where navn = 'Rødt Kongsvinger og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hamar',403,4, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kongsvinger',402,4, (select id from lokallag where navn = 'Rødt Kongsvinger og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Løten',415,4, (select id from lokallag where navn = 'Rødt Løten')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nord-Odal',418,4, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',441,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rendalen',432,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ringsaker',412,4, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sør-Odal',419,4, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stange',417,4, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stor-Elvdal',430,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tolga',436,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Trysil',428,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tynset',437,4, (select id from lokallag where navn = 'Uten lag Hedmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',426,4, (select id from lokallag where navn = 'Rødt Kongsvinger og omegn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Dovre',511,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Etnedal',541,5, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gausdal',522,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gjøvik',502,5, (select id from lokallag where navn = 'Rødt Gjøvik og Land')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gran',534,5, (select id from lokallag where navn = 'Rødt Gran')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Jevnaker',532,6, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lesja',512,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lillehammer',501,5, (select id from lokallag where navn = 'Rødt Lillehammer')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lom',514,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lunner',533,5, (select id from lokallag where navn = 'Rødt Lunner')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nord-Aurdal',542,5, (select id from lokallag where navn = 'Raudt Valdres')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nord-Fron',516,5, (select id from lokallag where navn = 'Rødt Midt-Gudbrandsdalen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',538,5, (select id from lokallag where navn = 'Rødt Gjøvik og Land')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',528,5, (select id from lokallag where navn = 'Rødt Ø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Øyer',521,5, (select id from lokallag where navn = 'Rødt Lillehammer')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',544,5, (select id from lokallag where navn = 'Raudt Valdres')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ringebu',520,5, (select id from lokallag where navn = 'Rødt Midt-Gudbrandsdalen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sel',517,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skjåk',513,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',536,5, (select id from lokallag where navn = 'Rødt Gjøvik og Land')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sør-Aurdal',540,5, (select id from lokallag where navn = 'R<NAME>dres')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sør-Fron',519,5, (select id from lokallag where navn = 'Rødt Midt-Gudbrandsdalen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vågå',515,5, (select id from lokallag where navn = 'Uten lag Oppland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vang',545,5, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',543,5, (select id from lokallag where navn = 'Raudt Valdres')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',529,5, (select id from lokallag where navn = 'Rødt Vestre Toten')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ål',619,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Drammen',602,6, (select id from lokallag where navn = 'Rødt Drammen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Flå',615,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Flesberg',631,6, (select id from lokallag where navn = 'Rødt Kongsberg')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gol',617,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hemsedal',618,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hol',620,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hole',612,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hurum',628,2, (select id from lokallag where navn = 'Rødt Asker')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kongsberg',604,6, (select id from lokallag where navn = 'Rødt Kongsberg')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Krødsherad',622,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lier',626,6, (select id from lokallag where navn = 'Rødt Lier')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Modum',623,6, (select id from lokallag where navn = 'Rødt Modum')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',625,6, (select id from lokallag where navn = 'Rødt Drammen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',616,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',633,6, (select id from lokallag where navn = 'Rødt Kongsberg')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',624,6, (select id from lokallag where navn = 'Rødt <NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ringerike',605,6, (select id from lokallag where navn = 'Rødt Ringerike')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rollag',632,6, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Røyken',627,2, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sigdal',621,6, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Færder',729,7, (select id from lokallag where navn = 'Rø<NAME>ønsberg og Færder')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Holmestrand',715,7, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Horten',701,7, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Larvik',712,7, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Re',716,7, (select id from lokallag where navn = '<NAME>nsberg og Færder')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',713,7, (select id from lokallag where navn = 'Rødt Holmestrand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sandefjord',710,7, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Svelvik',711,6, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tønsberg',704,7, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bamble',814,8, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',821,8, (select id from lokallag where navn = 'Rødt Midt-Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Drangedal',817,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fyresdal',831,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hjartdal',827,8, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kragerø',815,8, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kviteseid',829,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nissedal',830,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nome',819,8, (select id from lokallag where navn = 'Rødt Midt-Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Notodden',807,8, (select id from lokallag where navn = 'Rødt Notodden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Porsgrunn',805,8, (select id from lokallag where navn = 'Rødt Porsgrunn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sauherad',822,8, (select id from lokallag where navn = 'Rødt Midt-Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Seljord',828,8, (select id from lokallag where navn = 'Rødt Notodden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Siljan',811,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skien',806,8, (select id from lokallag where navn = 'Rødt Skien')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tinn',826,8, (select id from lokallag where navn = 'Rødt Notodden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tokke',833,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vinje',834,8, (select id from lokallag where navn = 'Uten lag Telemark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Åmli',929,9, (select id from lokallag where navn = 'Rødt Åmli')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Arendal',906,9, (select id from lokallag where navn = 'Rødt Arendal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Birkenes',928,9, (select id from lokallag where navn = 'Rødt Lillesand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bygland',938,9, (select id from lokallag where navn = 'Rødt Setesdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bykle',941,9, (select id from lokallag where navn = 'Rødt Setesdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',937,9, (select id from lokallag where navn = 'Rødt Setesdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Froland',919,9, (select id from lokallag where navn = 'Rødt Froland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gjerstad',911,9, (select id from lokallag where navn = 'Rødt Risør')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Grimstad',904,9, (select id from lokallag where navn = 'Rødt Grimstad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Iveland',935,10, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lillesand',926,9, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Risør',901,9, (select id from lokallag where navn = 'Rødt Risør')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tvedestrand',914,9, (select id from lokallag where navn = 'Rødt Tvedestrand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Valle',940,9, (select id from lokallag where navn = 'Rødt Setesdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vegårshei',912,9, (select id from lokallag where navn = 'Rødt Vegårshei')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Åseral',1026,9, (select id from lokallag where navn = 'Rødt Setesdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Audnedal',1027,10, (select id from lokallag where navn = 'R<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Farsund',1003,10, (select id from lokallag where navn = 'Rødt Farsund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Flekkefjord',1004,10, (select id from lokallag where navn = 'Rødt Flekkefjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hægebostad',1034,10, (select id from lokallag where navn = 'Rødt Lyngdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kristiansand',1001,10, (select id from lokallag where navn = 'Rødt Kristiansand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvinesdal',1037,10, (select id from lokallag where navn = 'Rødt Flekkefjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lindesnes',1029,10, (select id from lokallag where navn = 'Rødt Lindesnes')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lyngdal',1032,10, (select id from lokallag where navn = 'Rødt Lyngdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Mandal',1002,10, (select id from lokallag where navn = 'Rødt Lindesnes')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Marnardal',1021,10, (select id from lokallag where navn = 'Rødt Lindesnes')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sirdal',1046,10, (select id from lokallag where navn = 'Rødt Flekkefjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Søgne',1018,10, (select id from lokallag where navn = 'Rødt Kristiansand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Songdalen',1017,10, (select id from lokallag where navn = 'Rødt Kristiansand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vennesla',1014,10, (select id from lokallag where navn = 'Rødt Vennesla')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bjerkreim',1114,11, (select id from lokallag where navn = 'Rødt Dalane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bokn',1145,11, (select id from lokallag where navn = 'Rødt Haugaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Eigersund',1101,11, (select id from lokallag where navn = 'Rødt Dalane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Finnøy',1141,11, (select id from lokallag where navn = 'Rødt Stavanger')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Forsand',1129,11, (select id from lokallag where navn = 'Rødt Strand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gjesdal',1122,11, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hå',1119,11, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Haugesund',1106,11, (select id from lokallag where navn = 'Rødt Haugaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hjelmeland',1133,11, (select id from lokallag where navn = 'Rødt Strand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Karmøy',1149,11, (select id from lokallag where navn = 'Rødt Haugaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Klepp',1120,11, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvitsøy',1144,11, (select id from lokallag where navn = 'Uten lag Rogaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lund',1112,11, (select id from lokallag where navn = 'Rødt Dalane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Randaberg',1127,11, (select id from lokallag where navn = 'Rødt Stavanger')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rennesøy',1142,11, (select id from lokallag where navn = 'Rødt Stavanger')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sandnes',1102,11, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sauda',1135,11, (select id from lokallag where navn = 'Uten lag Rogaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sokndal',1111,11, (select id from lokallag where navn = 'Rødt Dalane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sola',1124,11, (select id from lokallag where navn = 'Rødt Sola')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stavanger',1103,11, (select id from lokallag where navn = 'Rødt Stavanger')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Strand',1130,11, (select id from lokallag where navn = 'Rødt Strand')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Suldal',1134,11, (select id from lokallag where navn = 'Uten lag Rogaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Time',1121,11, (select id from lokallag where navn = 'Raudt Time og Klepp')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tysvær',1146,11, (select id from lokallag where navn = 'Rødt Haugaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Utsira',1151,11, (select id from lokallag where navn = 'Rødt Haugaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vindafjord',1160,11, (select id from lokallag where navn = 'Rødt Haugaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Askøy',1247,12, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Austevoll',1244,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Austrheim',1264,12, (select id from lokallag where navn = 'Raud<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bergen',1201,12, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bømlo',1219,12, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Eidfjord',1232,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Etne',1211,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fedje',1265,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fitjar',1222,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fjell',1246,12, (select id from lokallag where navn = 'Rødt Øygarden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fusa',1241,12, (select id from lokallag where navn = 'Raudt Bjørnafjorden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Granvin',1234,12, (select id from lokallag where navn = 'Raudt Voss')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Jondal',1227,12, (select id from lokallag where navn = 'Rødt Ullensvang')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvam',1238,12, (select id from lokallag where navn = 'Raudt Kvam')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvinnherad',1224,12, (select id from lokallag where navn = 'Raudt Kvinnherad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lindås',1263,12, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Masfjorden',1266,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Meland',1256,12, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Modalen',1252,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Odda',1228,12, (select id from lokallag where navn = 'Rødt Ullensvang')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',1243,12, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Osterøy',1253,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Øygarden',1259,12, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Radøy',1260,12, (select id from lokallag where navn = 'Raudt Alver')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Samnanger',1242,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stord',1221,12, (select id from lokallag where navn = 'Raudt Stord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sund',1245,12, (select id from lokallag where navn = 'Rødt Øygarden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sveio',1216,12, (select id from lokallag where navn = 'Rødt Ullensvang')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tysnes',1223,12, (select id from lokallag where navn = 'Uten lag Hordaland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ullensvang',1231,12, (select id from lokallag where navn = 'Rødt Ullensvang')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ulvik',1233,12, (select id from lokallag where navn = 'Rødt Ullensvang')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vaksdal',1251,12, (select id from lokallag where navn = 'Raudt Vaksdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Voss',1235,12, (select id from lokallag where navn = 'Raud<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Årdal',1424,14, (select id from lokallag where navn = 'Raudt Årdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Askvoll',1428,14, (select id from lokallag where navn = 'Raudt Dalsfjorden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Aurland',1421,14, (select id from lokallag where navn = 'Raudt Lærdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Balestrand',1418,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bremanger',1438,14, (select id from lokallag where navn = 'R<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Eid',1443,14, (select id from lokallag where navn = 'Raudt Vågsøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fjaler',1429,14, (select id from lokallag where navn = 'Raudt Dalsfjorden')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Flora',1401,14, (select id from lokallag where navn = 'Raudt Flora')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Førde',1432,14, (select id from lokallag where navn = 'Raudt Indre Sunnfjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gaular',1430,14, (select id from lokallag where navn = 'Raudt Indre Sunnfjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gloppen',1445,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gulen',1411,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hornindal',1444,14, (select id from lokallag where navn = 'Uten lag Sogn og Fjordane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Høyanger',1416,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hyllestad',1413,14, (select id from lokallag where navn = 'Uten lag Sogn og Fjordane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Jølster',1431,14, (select id from lokallag where navn = 'Raudt Indre Sunnfjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lærdal',1422,14, (select id from lokallag where navn = 'Raudt Lærdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Leikanger',1419,14, (select id from lokallag where navn = 'R<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Luster',1426,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Naustdal',1433,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Selje',1441,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sogndal',1420,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Solund',1412,14, (select id from lokallag where navn = 'Uten lag Sogn og Fjordane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stryn',1449,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vågsøy',1439,14, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vik',1417,14, (select id from lokallag where navn = 'Uten lag Sogn og Fjordane')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ålesund',1504,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Aukra',1547,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Aure',1576,15, (select id from lokallag where navn = 'Rødt Kristiansund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Averøy',1554,15, (select id from lokallag where navn = 'Rødt Kristiansund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Eide',1551,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fræna',1548,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Giske',1532,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gjemnes',1557,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Halsa',1571,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Haram',1534,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hareid',1517,15, (select id from lokallag where navn = '<NAME>øre')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME> <NAME>',1515,15, (select id from lokallag where navn = 'R<NAME>øre')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kristiansund',1505,15, (select id from lokallag where navn = 'Rødt Kristiansund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Midsund',1545,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Molde',1502,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nesset',1543,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Norddal',1524,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ørskog',1523,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ørsta',1520,15, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rauma',1539,15, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sande i Møre og Romsdal',1514,15, (select id from lokallag where navn = '<NAME>øre Sunnmøre')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sandøy',1546,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skodje',1529,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Smøla',1573,15, (select id from lokallag where navn = 'Uten lag Møre og Romsdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stordal',1526,15, (select id from lokallag where navn = 'Uten lag Møre og Romsdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stranda',1525,15, (select id from lokallag where navn = '<NAME>ø<NAME>øre')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sula',1531,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sunndal',1563,15, (select id from lokallag where navn = 'Rødt Sunndal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Surnadal',1566,15, (select id from lokallag where navn = 'Rødt Sunndal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sykkylven',1528,15, (select id from lokallag where navn = 'Rødt Ålesund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tingvoll',1560,15, (select id from lokallag where navn = 'Rødt Sunndal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ulstein',1516,15, (select id from lokallag where navn = '<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vanylven',1511,15, (select id from lokallag where navn = '<NAME>ø<NAME>nmøre')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vestnes',1535,15, (select id from lokallag where navn = 'Rødt Molde')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Volda',1519,15, (select id from lokallag where navn = '<NAME>ø<NAME>nmøre')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Aarborte – Hattfjelldal',1826,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Alstahaug',1820,18, (select id from lokallag where navn = 'Rødt Alstahaug')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Andøy',1871,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ballangen',1854,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Beiarn',1839,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bindal',1811,18, (select id from lokallag where navn = 'Rødt Vega')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME> Nordland',1867,18, (select id from lokallag where navn = 'Rødt Sortland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bodø',1804,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Brønnøy',1813,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Divtasvuodna – Tysfjord',1850,18, (select id from lokallag where navn = 'Rødt Narvik')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Dønna',1827,18, (select id from lokallag where navn = 'Rødt Dønna')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Evenes',1853,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fauske – Fuossko',1841,18, (select id from lokallag where navn = 'Rødt Fauske')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Flakstad',1859,18, (select id from lokallag where navn = 'Rødt Vestvågøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gildeskål',1838,18, (select id from lokallag where navn = 'Rødt Bodø')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Grane',1825,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hadsel',1866,18, (select id from lokallag where navn = 'Rødt Hadsel')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hamarøy – Hábmer',1849,18, (select id from lokallag where navn = 'Rødt Hamarøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hemnes',1832,18, (select id from lokallag where navn = 'Rødt Hemnes')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',1818,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Leirfjord',1822,18, (select id from lokallag where navn = 'Rødt Leirfjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lødingen',1851,18, (select id from lokallag where navn = 'Rødt Sortland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lurøy',1834,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Meløy',1837,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Moskenes',1874,18, (select id from lokallag where navn = 'Rødt Vestvågøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Narvik',1805,18, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nesna',1828,18, (select id from lokallag where navn = 'Rødt Nesna')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Øksnes',1868,18, (select id from lokallag where navn = 'Rødt Øksnes')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rana',1833,18, (select id from lokallag where navn = 'Rødt Rana')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rødøy',1836,18, (select id from lokallag where navn = 'Rødt Rana')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Røst',1856,18, (select id from lokallag where navn = 'Rødt Røst')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Saltdal',1840,18, (select id from lokallag where navn = 'Rødt Saltdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sømna',1812,18, (select id from lokallag where navn = 'Rødt Sømna')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sørfold',1845,18, (select id from lokallag where navn = 'Rødt Sørfold')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sortland – Suortá',1870,18, (select id from lokallag where navn = 'Rødt Sortland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Steigen',1848,18, (select id from lokallag where navn = 'Rødt Steigen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tjeldsund',1852,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Træna',1835,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Værøy',1857,18, (select id from lokallag where navn = 'Uten lag Nordland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vågan',1865,18, (select id from lokallag where navn = 'Rødt Vågan')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vefsn',1824,18, (select id from lokallag where navn = 'Rødt Vefsn')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vega',1815,18, (select id from lokallag where navn = 'Rødt Vega')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vestvågøy',1860,18, (select id from lokallag where navn = 'Rødt Vestvågøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vevelstad',1816,18, (select id from lokallag where navn = 'Rødt Vega')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Balsfjord',1933,19, (select id from lokallag where navn = 'Rødt Balsfjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bardu',1922,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Berg',1929,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Dyrøy',1926,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gáivuotna – Kåfjord – Kaivuono',1940,19, (select id from lokallag where navn = 'Uten lag TRoms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gratangen',1919,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Harstad – Hárstták',1903,19, (select id from lokallag where navn = 'Rødt Harstad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ibestad',1917,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Karlsøy',1936,19, (select id from lokallag where navn = 'Rødt Tromsø')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvæfjord',1911,19, (select id from lokallag where navn = 'Rødt Harstad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvænangen',1943,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lenvik',1931,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Loabák – Lavangen',1920,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lyngen',1938,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Målselv',1924,19, (select id from lokallag where navn = 'Rødt Målselv')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nordreisa – Ráisa – Raisi',1942,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Salangen',1923,19, (select id from lokallag where navn = 'Rødt Salangen')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skånland',1913,19, (select id from lokallag where navn = 'Rødt Harstad')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skjervøy',1941,19, (select id from lokallag where navn = 'Rødt Skjervøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sørreisa',1925,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Storfjord – Omasvuotna – Omasvuono',1939,19, (select id from lokallag where navn = 'Rødt Balsfjord')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Torsken',1928,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tranøy',1927,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tromsø',1902,19, (select id from lokallag where navn = 'Rødt Tromsø')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Alta',2012,20, (select id from lokallag where navn = 'Rødt Alta')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Båtsfjord',2028,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Berlevåg',2024,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Deatnu – Tana',2025,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Gamvik',2023,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Guovdageaidnu – Kautokeino',2011,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hammerfest',2004,20, (select id from lokallag where navn = 'Rødt Hammerfest')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hasvik',2015,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kárášjohka – Karasjok',2021,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Kvalsund',2017,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lebesby',2022,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Loppa',2014,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Måsøy',2018,20, (select id from lokallag where navn = 'Rødt Måsøy')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nordkapp',2019,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Porsanger – Porsángu – Porsanki',2020,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Sør-Varanger',2030,20, (select id from lokallag where navn = 'Rødt Sør-Varanger')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Unjárga – Nesseby',2027,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vadsø',2003,20, (select id from lokallag where navn = 'Rødt Vadsø')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vardø',2002,20, (select id from lokallag where navn = 'Uten lag Finnmark')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Svalbard',2100,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',2211,19, (select id from lokallag where navn = 'Uten lag Troms')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Åfjord',5018,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Agdenes',5016,50, (select id from lokallag where navn = 'Rødt Orkland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Bjugn',5017,50, (select id from lokallag where navn = 'Rødt Ørland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Flatanger',5049,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Fosnes',5048,50, (select id from lokallag where navn = 'Rødt Namsos')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Frosta',5036,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Frøya',5014,50, (select id from lokallag where navn = 'Rødt Frøya')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Grong',5045,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hemne',5011,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Hitra',5013,50, (select id from lokallag where navn = 'Rødt Hitra')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Holtålen',5026,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Høylandet',5046,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Inderøy',5053,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',5054,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Klæbu',5030,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Leka',5052,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Levanger',5037,50, (select id from lokallag where navn = 'Rødt Levanger')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Lierne',5042,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Malvik',5031,50, (select id from lokallag where navn = 'Rødt Malvik')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Meldal',5023,50, (select id from lokallag where navn = 'Rødt Orkland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Melhus',5028,50, (select id from lokallag where navn = 'Rødt Melhus')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Meråker',5034,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('<NAME>',5027,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Nærøy',5051,50, (select id from lokallag where navn = 'Rødt Nærøysund')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Namdalseid',5040,50, (select id from lokallag where navn = 'Rødt Namsos')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Namsos',5005,50, (select id from lokallag where navn = 'Rødt Namsos')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Namsskogan',5044,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Oppdal',5021,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Orkdal',5024,50, (select id from lokallag where navn = 'Rødt Orkland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Ørland',5015,50, (select id from lokallag where navn = 'Rødt Ørland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Osen',5020,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Overhalla',5047,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Raarvikhe – Røyrvik',5043,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rennebu',5022,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Rindal',5061,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Roan',5019,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Røros',5025,50, (select id from lokallag where navn = 'Røros')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Selbu',5032,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Skaun',5029,50, (select id from lokallag where navn = 'Rødt Skaun')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Snåase – Snåsa',5041,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Snillfjord',5012,50, (select id from lokallag where navn = 'Rødt Orkland')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Steinkjer',5004,50, (select id from lokallag where navn = 'Rødt Steinkjer')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Stjørdal',5035,50, (select id from lokallag where navn = 'Rødt Stjørdal')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Trondheim',5001,50, (select id from lokallag where navn = 'Rødt Trondheim')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Tydal',5033,50, (select id from lokallag where navn = 'Uten lag Trøndelag')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Verdal',5038,50, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Verran',5039,50, (select id from lokallag where navn = 'Rø<NAME>')); INSERT INTO kommune(navn,nummer,fylke_id,lokallag_id) VALUES ('Vikna',5050,50, (select id from lokallag where navn = 'Rødt Nærøysund')); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `postnummer` ( Postnummer INTEGER NOT NULL PRIMARY KEY ,Poststed VARCHAR(20) NOT NULL ,KommuneKode INTEGER NOT NULL, FOREIGN KEY (`KommuneKode`) REFERENCES `kommune` (`nummer`), INDEX (`KommuneKode`) ); -- -------------------------------------------------------- INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (-1,'UKJENT',-1); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (10,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (15,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (18,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (21,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (24,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (25,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (26,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (28,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (30,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (31,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (32,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (33,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (34,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (37,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (40,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (45,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (46,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (47,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (48,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (50,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (51,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (55,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (60,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (80,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (101,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (102,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (103,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (104,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (105,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (106,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (107,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (109,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (110,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (111,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (112,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (113,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (114,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (115,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (116,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (117,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (118,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (119,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (120,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (121,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (122,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (123,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (124,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (125,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (128,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (129,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (130,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (131,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (133,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (134,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (135,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (137,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (138,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (139,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (150,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (151,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (152,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (153,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (154,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (155,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (157,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (158,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (159,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (160,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (161,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (162,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (164,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (165,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (166,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (167,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (168,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (169,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (170,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (171,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (172,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (173,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (174,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (175,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (176,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (177,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (178,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (179,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (180,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (181,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (182,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (183,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (184,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (185,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (186,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (187,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (188,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (190,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (191,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (192,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (193,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (194,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (195,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (196,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (198,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (201,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (202,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (203,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (204,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (207,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (208,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (211,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (212,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (213,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (214,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (215,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (216,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (218,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (230,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (240,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (244,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (247,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (250,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (251,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (252,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (253,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (254,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (255,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (256,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (257,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (258,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (259,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (260,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (262,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (263,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (264,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (265,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (266,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (267,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (268,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (270,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (271,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (272,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (273,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (274,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (275,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (276,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (277,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (278,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (279,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (280,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (281,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (282,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (283,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (284,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (286,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (287,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (301,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (302,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (303,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (304,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (305,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (306,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (307,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (308,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (309,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (311,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (313,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (314,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (315,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (316,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (317,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (318,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (319,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (323,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (330,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (340,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (349,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (350,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (351,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (352,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (353,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (354,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (355,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (356,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (357,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (358,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (359,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (360,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (361,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (362,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (363,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (364,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (365,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (366,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (367,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (368,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (369,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (370,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (371,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (372,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (373,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (374,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (375,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (376,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (377,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (378,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (379,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (380,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (381,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (382,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (383,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (401,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (402,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (403,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (404,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (405,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (406,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (408,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (409,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (410,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (411,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (412,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (413,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (415,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (421,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (422,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (423,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (424,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (440,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (441,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (442,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (445,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (450,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (451,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (452,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (454,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (455,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (456,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (457,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (458,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (459,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (460,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (461,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (462,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (463,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (464,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (465,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (467,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (468,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (469,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (470,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (472,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (473,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (474,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (475,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (476,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (477,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (478,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (479,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (480,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (481,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (482,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (483,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (484,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (485,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (486,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (487,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (488,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (489,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (490,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (491,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (492,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (493,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (494,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (495,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (496,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (501,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (502,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (503,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (504,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (505,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (506,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (508,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (509,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (510,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (511,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (512,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (513,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (515,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (516,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (517,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (518,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (520,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (540,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (550,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (551,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (552,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (553,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (554,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (555,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (556,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (557,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (558,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (559,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (560,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (561,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (562,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (563,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (564,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (565,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (566,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (567,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (568,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (569,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (570,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (571,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (572,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (573,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (574,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (575,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (576,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (577,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (578,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (579,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (580,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (581,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (582,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (583,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (584,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (585,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (586,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (587,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (588,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (589,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (590,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (591,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (592,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (593,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (594,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (595,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (596,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (597,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (598,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (601,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (602,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (603,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (604,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (605,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (606,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (607,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (608,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (609,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (611,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (612,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (613,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (614,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (616,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (617,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (618,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (619,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (620,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (621,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (622,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (623,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (624,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (626,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (650,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (651,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (652,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (653,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (654,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (655,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (656,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (657,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (658,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (659,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (660,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (661,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (662,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (663,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (664,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (665,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (666,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (667,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (668,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (669,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (670,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (671,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (672,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (673,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (674,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (675,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (676,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (677,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (678,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (679,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (680,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (681,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (682,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (683,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (684,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (685,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (686,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (687,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (688,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (689,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (690,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (691,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (692,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (693,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (694,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (701,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (702,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (705,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (710,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (712,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (750,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (751,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (752,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (753,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (754,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (755,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (756,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (757,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (758,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (760,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (763,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (764,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (765,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (766,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (767,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (768,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (770,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (771,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (772,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (773,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (774,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (775,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (776,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (777,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (778,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (779,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (781,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (782,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (783,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (784,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (785,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (786,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (787,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (788,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (789,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (790,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (791,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (801,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (805,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (806,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (807,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (840,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (850,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (851,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (852,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (853,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (854,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (855,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (856,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (857,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (858,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (860,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (861,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (862,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (863,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (864,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (870,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (871,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (872,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (873,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (874,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (875,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (876,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (877,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (880,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (881,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (882,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (883,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (884,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (890,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (891,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (901,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (902,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (903,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (904,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (905,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (907,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (908,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (913,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (915,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (950,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (951,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (952,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (953,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (954,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (955,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (956,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (957,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (958,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (959,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (960,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (962,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (963,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (964,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (968,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (969,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (970,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (971,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (972,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (973,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (975,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (976,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (977,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (978,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (979,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (980,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (981,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (982,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (983,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (984,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (985,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (986,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (987,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (988,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1001,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1003,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1005,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1006,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1007,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1008,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1009,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1011,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1051,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1052,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1053,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1054,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1055,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1056,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1061,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1062,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1063,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1064,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1065,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1067,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1068,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1069,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1071,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1081,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1083,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1084,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1086,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1087,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1088,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1089,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1101,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1109,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1112,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1150,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1151,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1152,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1153,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1154,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1155,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1156,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1157,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1158,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1160,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1161,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1162,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1163,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1164,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1165,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1166,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1167,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1168,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1169,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1170,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1172,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1176,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1177,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1178,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1179,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1181,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1182,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1184,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1185,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1187,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1188,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1189,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1201,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1202,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1203,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1204,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1205,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1207,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1214,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1215,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1250,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1251,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1252,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1253,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1254,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1255,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1256,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1257,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1258,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1259,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1262,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1263,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1266,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1270,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1271,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1272,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1273,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1274,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1275,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1278,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1279,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1281,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1283,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1284,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1285,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1286,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1290,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1291,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1294,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1295,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1300,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1301,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1302,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1303,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1304,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1305,'HASLUM',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1306,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1307,'FORNEBU',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1308,'JAR',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1309,'RUD',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1311,'HØVIKODDEN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1312,'SLEPENDEN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1313,'VØYENENGA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1314,'VØYENENGA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1316,'EIKSMARKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1317,'BÆRUMS VERK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1318,'BEKKESTUA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1319,'BEKKESTUA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1321,'STABEKK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1322,'HØVIK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1323,'HØVIK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1324,'LYSAKER',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1325,'LYSAKER',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1326,'LYSAKER',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1327,'LYSAKER',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1328,'HØVIK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1329,'LOMMEDALEN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1330,'FORNEBU',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1331,'FORNEBU',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1332,'ØSTERÅS',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1333,'KOLSÅS',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1334,'RYKKINN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1335,'SNARØYA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1336,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1337,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1338,'SANDVIKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1339,'VØYENENGA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1340,'SKUI',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1341,'SLEPENDEN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1342,'GJETTUM',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1344,'HASLUM',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1346,'GJETTUM',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1348,'RYKKINN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1349,'RYKKINN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1350,'LOMMEDALEN',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1351,'RUD',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1352,'KOLSÅS',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1353,'BÆRUMS VERK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1354,'BÆRUMS VERK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1356,'BEKKESTUA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1357,'BEKKESTUA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1358,'JAR',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1359,'EIKSMARKA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1360,'FORNEBU',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1361,'ØSTERÅS',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1362,'HOSLE',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1363,'HØVIK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1364,'FORNEBU',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1365,'BLOMMENHOLM',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1366,'LYSAKER',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1367,'SNARØYA',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1368,'STABEKK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1369,'STABEKK',219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1371,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1372,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1373,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1375,'BILLINGSTAD',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1376,'BILLINGSTAD',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1377,'BILLINGSTAD',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1378,'NESBRU',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1379,'NESBRU',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1380,'HEGGEDAL',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1381,'VETTRE',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1383,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1384,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1385,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1386,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1387,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1388,'BORGEN',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1389,'HEGGEDAL',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1390,'VOLLEN',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1391,'VOLLEN',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1392,'VETTRE',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1393,'VOLLEN',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1394,'NESBRU',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1395,'HVALSTAD',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1396,'BILLINGSTAD',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1397,'NESØYA',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1399,'ASKER',220); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1400,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1401,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1402,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1403,'LANGHUS',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1404,'SIGGERUD',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1405,'LANGHUS',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1406,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1407,'VINTERBRO',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1408,'KRÅKSTAD',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1409,'SKOTBU',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1410,'KOLBOTN',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1411,'KOLBOTN',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1412,'SOFIEMYR',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1413,'TÅRNÅSEN',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1414,'TROLLÅSEN',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1415,'OPPEGÅRD',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1416,'OPPEGÅRD',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1417,'SOFIEMYR',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1418,'KOLBOTN',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1419,'OPPEGÅRD',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1420,'SVARTSKOG',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1421,'TROLLÅSEN',217); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1422,'SIGGERUD',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1423,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1424,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1425,'SKI',213); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1429,'VINTERBRO',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1430,'ÅS',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1431,'ÅS',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1432,'ÅS',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1433,'ÅS',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1434,'ÅS',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1435,'ÅS',214); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1440,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1441,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1442,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1443,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1444,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1445,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1446,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1447,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1448,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1449,'DRØBAK',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1450,'NESODDTANGEN',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1451,'NESODDTANGEN',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1452,'NESODDTANGEN',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1453,'BJØRNEMYR',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1454,'FAGERSTRAND',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1455,'<NAME>',215); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1456,'NESODDTANGEN',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1457,'FAGERSTRAND',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1458,'FJELLSTRAND',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1459,'NESODDEN',216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1461,'LØRENSKOG',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1462,'FJELLHAMAR',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1463,'FJELLHAMAR',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1464,'FJELLHAMAR',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1465,'STRØMMEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1466,'STRØMMEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1467,'STRØMMEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1468,'FINSTADJORDET',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1469,'RASTA',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1470,'LØRENSKOG',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1471,'LØRENSKOG',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1472,'FJELLHAMAR',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1473,'LØRENSKOG',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1474,'NORDBYHAGEN',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1475,'FINSTADJORDET',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1476,'RASTA',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1477,'FJELLHAMAR',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1478,'LØRENSKOG',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1479,'KURLAND',230); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1480,'SLATTUM',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1481,'HAGAN',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1482,'NITTEDAL',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1483,'HAGAN',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1484,'HAKADAL',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1485,'HAKADAL',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1486,'NITTEDAL',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1487,'HAKADAL',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1488,'HAKADAL',233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1501,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1502,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1503,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1504,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1506,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1508,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1509,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1510,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1511,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1512,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1513,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1514,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1515,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1516,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1517,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1518,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1519,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1520,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1521,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1522,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1523,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1524,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1525,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1526,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1528,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1529,'MOSS',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1530,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1531,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1532,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1533,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1534,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1535,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1536,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1537,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1538,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1539,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1540,'VESTBY',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1541,'VESTBY',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1542,'VESTBY',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1543,'VESTBY',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1544,'VESTBY',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1545,'HVITSTEN',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1550,'HØLEN',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1555,'SON',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1556,'SON',211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1560,'LARKOLLEN',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1561,'LARKOLLEN',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1570,'DILLING',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1580,'RYGGE',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1581,'RYGGE',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1590,'RYGGE FLYSTASJON',136); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1591,'SPERREBOTN',137); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1592,'VÅLER I ØSTFOLD',137); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1593,'SVINNDAL',137); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1596,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1597,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1598,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1599,'MOSS',104); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1601,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1602,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1603,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1604,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1605,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1606,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1607,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1608,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1609,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1610,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1612,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1613,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1614,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1615,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1616,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1617,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1618,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1619,'FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1620,'GRESSVIK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1621,'GRESSVIK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1622,'GRESSVIK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1623,'GRESSVIK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1624,'GRESSVIK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1625,'MANSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1626,'MANSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1628,'ENGELSVIKEN',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1629,'<NAME>',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1630,'<NAME>',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1632,'G<NAME>DRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1633,'GAMLE FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1634,'GAMLE FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1636,'GAMLE FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1637,'GAMLE FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1638,'GAMLE FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1639,'GAMLE FREDRIKSTAD',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1640,'RÅDE',135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1641,'RÅDE',135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1642,'SALTNES',135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1643,'RÅDE',135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1650,'SELLEBAKK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1651,'SELLEBAKK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1653,'SELLEBAKK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1654,'SELLEBAKK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1655,'SELLEBAKK',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1657,'TORP',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1658,'TORP',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1659,'TORP',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1661,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1662,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1663,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1664,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1665,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1666,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1667,'ROLVSØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1670,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1671,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1672,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1673,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1675,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1676,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1678,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1679,'KRÅKERØY',106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1680,'SKJÆRHALDEN',111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1682,'SKJÆRHALDEN',111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1683,'VESTERØY',111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1684,'VESTERØY',111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1690,'HERFØL',111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1692,'NEDGÅRDEN',111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1701,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1702,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1703,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1704,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1705,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1706,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1707,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1708,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1709,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1710,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1711,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1712,'GRÅLUM',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1713,'GRÅLUM',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1714,'GRÅLUM',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1715,'YVEN',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1718,'GREÅKER',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1719,'GREÅKER',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1720,'GREÅKER',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1721,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1722,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1723,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1724,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1725,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1726,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1727,'SARPSBORG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1730,'ISE',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1733,'HAFSLUNDSØY',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1734,'HAFSLUNDSØY',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1735,'VARTEIG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1738,'BORGENHAUGEN',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1739,'BORGENHAUGEN',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1740,'BORGENHAUGEN',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1742,'KLAVESTADHAUGEN',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1743,'KLAVESTADHAUGEN',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1745,'SKJEBERG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1746,'SKJEBERG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1747,'SKJEBERG',105); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1751,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1752,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1753,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1754,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1757,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1760,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1761,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1763,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1764,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1765,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1766,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1767,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1768,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1769,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1771,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1772,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1776,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1777,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1778,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1779,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1781,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1782,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1783,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1784,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1785,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1786,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1787,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1788,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1789,'BERG I ØSTFOLD',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1790,'TISTEDAL',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1791,'TISTEDAL',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1792,'TISTEDAL',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1793,'TISTEDAL',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1794,'SPONVIKA',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1796,'KORNSJØ',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1798,'AREMARK',118); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1799,'AREMARK',118); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1801,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1802,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1803,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1804,'SPYDEBERG',123); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1805,'TOMTER',138); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1806,'SKIPTVET',127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1807,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1808,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1809,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1811,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1812,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1813,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1814,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1815,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1816,'SKIPTVET',127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1820,'SPYDEBERG',123); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1821,'SPYDEBERG',123); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1823,'KNAPSTAD',138); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1825,'TOMTER',138); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1827,'HOBØL',138); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1830,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1831,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1832,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1833,'ASKIM',124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1850,'MYSEN',125); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1851,'MYSEN',125); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1852,'MYSEN',125); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1859,'SLITU',125); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1860,'TRØGSTAD',122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1861,'TRØGSTAD',122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1866,'BÅSTAD',122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1867,'BÅSTAD',122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1870,'ØRJE',119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1871,'ØRJE',119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1875,'OTTEID',119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1878,'HÆRLAND',125); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1880,'EIDSBERG',125); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1890,'RAKKESTAD',128); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1891,'RAKKESTAD',128); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1892,'DEGERNES',128); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1893,'DEGERNES',128); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1894,'RAKKESTAD',128); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1900,'FETSUND',227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1901,'FETSUND',227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1903,'GAN',227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1910,'ENEBAKKNESET',227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1911,'FLATEBY',229); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1912,'ENEBAKK',229); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1914,'YTRE ENEBAKK',229); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1916,'FLATEBY',229); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1917,'YTRE ENEBAKK',229); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1920,'SØRUMSAND',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1921,'SØRUMSAND',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1923,'SØRUM',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1924,'SØRUM',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1925,'BLAKER',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1926,'BLAKER',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1927,'RÅNÅSFOSS',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1928,'AULI',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1929,'AULI',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1930,'AURSKOG',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1931,'AURSKOG',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1940,'BJØRKELANGEN',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1941,'BJØRKELANGEN',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1950,'RØMSKOG',121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1954,'SETSKOG',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1960,'LØKEN',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1961,'LØKEN',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1963,'FOSSER',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1970,'HEMNES',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1971,'HEMNES',221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2000,'LILLESTRØM',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2001,'LILLESTRØM',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2003,'LILLESTRØM',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2004,'LILLESTRØM',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2005,'RÆLINGEN',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2006,'LØVENSTAD',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2007,'KJELLER',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2008,'FJERDINGBY',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2009,'NORDBY',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2010,'STRØMMEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2011,'STRØMMEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2012,'LILLESTRØM',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2013,'SKJETTEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2014,'BLYSTADLIA',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2015,'LEIRSUND',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2016,'FROGNER',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2017,'FROGNER',226); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2018,'LØVENSTAD',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2019,'SKEDSMOKORSET',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2020,'SKEDSMOKORSET',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2021,'SKEDSMOKORSET',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2022,'GJERDRUM',234); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2023,'SKEDSMOKORSET',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2024,'GJERDRUM',234); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2025,'FJERDINGBY',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2026,'SKJETTEN',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2027,'KJELLER',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2030,'NANNESTAD',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2031,'NANNESTAD',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2032,'MAURA',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2033,'ÅSGREINA',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2034,'HOLTER',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2035,'HOLTER',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2036,'MAURA',238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2040,'KLØFTA',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2041,'KLØFTA',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2050,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2051,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2052,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2053,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2054,'MOGREINA',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2055,'NORDKISA',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2056,'ALGARHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2057,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2058,'SESSVOLLMOEN',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2060,'GARDERMOEN',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2061,'GARDERMOEN',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2062,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2063,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2066,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2067,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2068,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2069,'JESSHEIM',235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2070,'RÅHOLT',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2071,'RÅHOLT',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2072,'DAL',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2073,'BØN',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2074,'EIDSVOLL VERK',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2076,'DAL',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2080,'EIDSVOLL',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2081,'EIDSVOLL',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2090,'HURDAL',239); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2091,'HURDAL',239); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2092,'MINNESUND',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2093,'FEIRING',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2100,'SKARNES',419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2101,'SKARNES',419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2110,'SLÅSTAD',419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2114,'DISENÅ',419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2116,'SANDER',419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2120,'SAGSTUA',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2123,'BRUVOLL',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2130,'KNAPPER',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2133,'GARDVIK',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2134,'AUSTVATN',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2150,'ÅRNES',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2151,'ÅRNES',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2160,'VORMSUND',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2161,'VORMSUND',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2162,'BRÅRUD',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2164,'SKOGBYGDA',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2165,'HVAM',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2166,'OPPAKER',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2170,'FENSTAD',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2201,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2202,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2203,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2204,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2205,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2206,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2208,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2209,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2210,'GRANLI',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2211,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2212,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2213,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2214,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2216,'ROVERUD',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2217,'HOKKÅSEN',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2218,'LUNDERSÆTER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2219,'BRANDVAL',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2220,'ÅBOGEN',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2223,'GALTERUD',419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2224,'AUSTMARKA',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2225,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2226,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2230,'SKOTTERUD',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2232,'TOBØL',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2233,'VESTMARKA',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2235,'MATRAND',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2240,'MAGNOR',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2256,'GRUE FINNSKOG',423); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2260,'KIRKENÆR',423); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2261,'KIRKENÆR',423); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2264,'GRINDER',423); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2265,'NAMNÅ',423); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2266,'ARNEBERG',425); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2270,'FLISA',425); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2271,'FLISA',425); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2280,'GJESÅSEN',425); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2283,'ÅSNES FINNSKOG',425); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2301,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2302,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2303,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2304,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2305,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2306,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2307,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2308,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2309,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2312,'OTTESTAD',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2315,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2316,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2317,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2318,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2319,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2320,'FURNES',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2321,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2322,'RIDABU',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2323,'INGEBERG',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2324,'<NAME>',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2325,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2326,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2330,'VALLSET',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2332,'ÅSVANG',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2334,'ROMEDAL',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2335,'STANGE',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2336,'STANGE',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2337,'TANGEN',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2338,'ESPA',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2340,'LØTEN',415); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2341,'LØTEN',415); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2344,'ILSENG',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2345,'ÅDALSBRUK',415); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2350,'NES PÅ HEDMARKEN',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2353,'STAVSJØ',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2355,'GAUPEN',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2360,'RUDSHØGDA',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2364,'NÆROSET',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2365,'ÅSMARKA',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2372,'BRØTTUM',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2380,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2381,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2382,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2383,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2384,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2385,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2386,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2387,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2388,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2390,'MOELV',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2391,'MOELV',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2401,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2402,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2403,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2405,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2406,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2407,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2408,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2409,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2410,'HERNES',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2411,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2412,'SØRSKOGBYGDA',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2413,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2414,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2415,'HERADSBYGD',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2416,'JØMNA',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2418,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2420,'TRYSIL',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2421,'TRYSIL',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2422,'NYBERGSUND',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2423,'ØSTBY',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2425,'LJØRDALEN',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2427,'PLASSEN',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2428,'<NAME>',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2429,'TØRBERGET',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2430,'JORDET',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2432,'SLETTÅS',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2435,'BRASKEREIDFOSS',426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2436,'VÅLER I SOLØR',426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2437,'HASLEMOEN',426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2438,'GRAVBERGET',426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2439,'VÅLER I SOLØR',426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2440,'ENGERDAL',434); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2443,'DREVSJØ',434); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2446,'ELGÅ',434); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2448,'SØMÅDALEN',434); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2450,'RENA',429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2451,'RENA',429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2460,'OSEN',429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2476,'ATNA',430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2477,'SOLLIA',430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2478,'HANESTAD',432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2480,'KOPPANG',430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2481,'KOPPANG',430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2484,'RENDALEN',432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2485,'RENDALEN',432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2486,'RENDALEN',432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2487,'RENDALEN',432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2488,'RENDALEN',432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2500,'TYNSET',437); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2501,'TYNSET',437); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2510,'TYLLDALEN',437); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2512,'KVIKNE',437); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2540,'TOLGA',436); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2542,'VINGELEN',436); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2544,'ØVERSJØDALEN',436); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2550,'OS I ØSTERDALEN',441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2552,'DALSBYGDA',441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2555,'TUFSINGDALEN',441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2560,'ALVDAL',438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2561,'ALVDAL',438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2580,'FOLLDAL',439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2581,'FOLLDAL',439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2582,'GRIMSBU',439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2584,'DALHOLEN',439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2601,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2602,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2603,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2604,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2605,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2606,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2607,'VINGROM',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2608,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2609,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2610,'MESNALI',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2611,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2612,'SJUSJØEN',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2613,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2614,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2615,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2616,'LISMARKA',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2617,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2618,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2619,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2624,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2625,'FÅBERG',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2626,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2629,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2630,'RINGEBU',520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2631,'RINGEBU',520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2632,'VENABYGD',520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2633,'FÅVANG',520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2634,'FÅVANG',520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2635,'TRETTEN',521); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2636,'ØYER',521); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2637,'ØYER',521); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2639,'VINSTRA',516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2640,'VINSTRA',516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2642,'KVAM',516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2643,'SKÅBU',516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2645,'SØR-FRON',519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2646,'GÅLÅ',519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2647,'SØR-FRON',519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2648,'SØR-FRON',519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2649,'ØSTRE GAUSDAL',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2651,'ØSTRE GAUSDAL',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2652,'SVINGVOLL',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2653,'VESTRE GAUSDAL',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2656,'FOLLEBU',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2657,'SVATSUM',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2658,'ESPEDALEN',519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2659,'DOMBÅS',511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2660,'DOMBÅS',511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2661,'HJERKINN',511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2662,'DOVRE',511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2663,'DOVRESKOGEN',511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2664,'DOVRE',511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2665,'LESJA',512); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2666,'LORA',512); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2667,'LESJAVERK',512); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2668,'LESJASKOG',512); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2669,'BJORLI',512); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2670,'OTTA',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2672,'SEL',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2673,'HØVRINGEN',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2674,'MYSUSÆTER',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2675,'OTTA',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2676,'HEIDAL',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2677,'NEDRE HEIDAL',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2680,'VÅGÅ',515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2682,'LALM',515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2683,'TESSANDEN',515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2684,'VÅGÅ',515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2685,'GARMO',514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2686,'LOM',514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2687,'BØVERDALEN',514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2688,'LOM',514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2690,'SKJÅK',513); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2693,'NORDBERG',513); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2694,'SKJÅK',513); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2695,'GROTLI',513); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2711,'GRAN',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2712,'BRANDBU',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2713,'ROA',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2714,'JAREN',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2715,'LUNNER',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2716,'HARESTUA',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2717,'GRUA',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2718,'BRANDBU',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2720,'GRINDVOLL',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2730,'LUNNER',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2740,'ROA',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2742,'GRUA',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2743,'HARESTUA',533); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2750,'GRAN',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2760,'BRANDBU',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2770,'JAREN',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2801,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2802,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2803,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2804,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2805,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2806,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2807,'HUNNDALEN',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2808,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2809,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2810,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2811,'HUNNDALEN',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2815,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2816,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2817,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2818,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2819,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2820,'NORDRE TOTEN',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2821,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2822,'BYBRUA',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2825,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2827,'HUNNDALEN',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2830,'RAUFOSS',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2831,'RAUFOSS',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2832,'BIRI',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2833,'RAUFOSS',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2834,'RAUFOSS',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2835,'RAUFOSS',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2836,'BIRI',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2837,'BIRISTRAND',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2838,'SNERTINGDAL',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2839,'ØVRE SNERTINGDAL',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2840,'REINSVOLL',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2843,'EINA',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2846,'BØVERBRU',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2847,'KOLBU',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2848,'SKREIA',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2849,'KAPP',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2850,'LENA',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2851,'LENA',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2853,'REINSVOLL',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2854,'EINA',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2857,'SKREIA',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2858,'KAPP',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2860,'HOV',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2861,'LANDÅSBYGDA',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2862,'FLUBERG',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2864,'FALL',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2866,'ENGER',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2867,'HOV',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2870,'DOKKA',538); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2879,'ODNES',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2880,'NORD-TORPA',538); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2881,'AUST-TORPA',538); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2882,'DOKKA',538); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2890,'ETNEDAL',541); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2893,'ETNEDAL',541); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2900,'FAGERNES',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2901,'FAGERNES',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2907,'<NAME>',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2910,'AURDAL',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2917,'SKRAUTVÅL',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2918,'ULNES',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2920,'<NAME>',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2923,'TISLEIDALEN',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2929,'BAGN',540); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2930,'BAGN',540); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2933,'REINLI',540); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2936,'BEGNADALEN',540); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2937,'BEGNA',540); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2939,'HEGGENES',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2940,'HEGGENES',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2943,'ROGNE',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2950,'SKAMMESTEIN',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2952,'BEITO',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2953,'BEITOSTØLEN',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2954,'BEITOSTØLEN',544); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2959,'RØN',543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2960,'RØN',543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2966,'SLIDRE',543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2967,'LOMEN',543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2973,'RYFOSS',545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2974,'VANG I VALDRES',545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2975,'VANG I VALDRES',545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2977,'ØYE',545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2985,'TYINKRYSSET',545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3001,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3002,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3003,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3004,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3005,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3006,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3007,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3008,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3011,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3012,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3013,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3014,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3015,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3016,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3017,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3018,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3019,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3021,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3022,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3023,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3024,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3025,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3026,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3027,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3028,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3029,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3030,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3031,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3032,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3033,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3034,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3035,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3036,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3037,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3038,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3039,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3040,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3041,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3042,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3043,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3044,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3045,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3046,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3047,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3048,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3050,'MJØNDALEN',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3051,'MJØNDALEN',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3053,'STEINBERG',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3054,'KROKSTADELVA',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3055,'KROKSTADELVA',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3056,'SOLBERGELVA',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3057,'SOLBERGELVA',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3058,'SOLBERGMOEN',625); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3060,'SVELVIK',711); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3061,'SVELVIK',711); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3070,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3071,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3072,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3073,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3074,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3075,'BERGER',711); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3076,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3077,'SANDE I VESTFOLD',713); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3080,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3081,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3082,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3083,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3084,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3085,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3086,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3087,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3088,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3089,'HOLMESTRAND',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3090,'HOF',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3092,'SUNDBYFOSS',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3095,'EIDSFOSS',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3101,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3103,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3104,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3105,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3106,'NØTTERØY',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3107,'SEM',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3108,'VEAR',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3109,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3110,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3111,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3112,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3113,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3114,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3115,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3116,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3117,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3118,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3119,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3120,'NØTTERØY',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3121,'NØTTERØY',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3122,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3123,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3124,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3125,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3126,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3127,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3128,'NØTTERØY',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3131,'HUSØYSUND',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3132,'HUSØYSUND',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3133,'DUKEN',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3135,'TORØD',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3137,'TORØD',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3138,'SKALLESTAD',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3139,'SKALLESTAD',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3140,'NØTTERØY',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3141,'KJØPMANNSKJÆR',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3142,'VESTSKOGEN',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3143,'KJØPMANNSKJÆR',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3144,'VEIERLAND',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3145,'TJØME',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3148,'HVASSER',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3150,'TOLVSRØD',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3151,'TOLVSRØD',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3152,'TOLVSRØD',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3153,'TOLVSRØD',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3154,'TOLVSRØD',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3157,'BARKÅKER',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3158,'ANDEBU',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3159,'MELSOMVIK',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3160,'STOKKE',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3161,'STOKKE',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3162,'ANDEBU',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3163,'NØTTERØY',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3164,'REVETAL',716); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3165,'TJØME',729); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3166,'TOLVSRØD',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3167,'ÅSGÅRDSTRAND',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3168,'MELSOMVIK',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3169,'STOKKE',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3170,'SEM',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3171,'SEM',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3172,'VEAR',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3173,'VEAR',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3174,'REVETAL',716); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3175,'RAMNES',716); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3176,'UNDRUMSDAL',716); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3177,'VÅLE',716); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3178,'VÅLE',716); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3179,'ÅSGÅRDSTRAND',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3180,'NYKIRKE',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3181,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3182,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3183,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3184,'BORRE',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3185,'SKOPPUM',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3186,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3187,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3188,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3189,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3191,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3192,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3193,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3194,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3195,'SKOPPUM',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3196,'HORTEN',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3199,'BORRE',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3201,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3202,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3203,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3204,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3205,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3206,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3207,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3208,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3209,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3210,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3211,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3212,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3213,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3214,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3215,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3216,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3217,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3218,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3219,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3220,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3221,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3222,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3223,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3224,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3225,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3226,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3227,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3228,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3229,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3230,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3231,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3232,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3233,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3234,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3235,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3236,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3237,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3238,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3239,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3240,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3241,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3242,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3243,'KODAL',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3244,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3245,'KODAL',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3246,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3249,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3251,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3252,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3253,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3254,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3255,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3256,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3257,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3258,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3259,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3260,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3261,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3262,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3263,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3264,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3265,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3267,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3268,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3269,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3270,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3271,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3274,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3275,'SVARSTAD',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3276,'SVARSTAD',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3277,'STEINSHOLT',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3280,'TJODALYNG',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3281,'TJODALYNG',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3282,'KVELDE',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3284,'KVELDE',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3285,'LARVIK',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3290,'STAVERN',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3291,'STAVERN',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3292,'STAVERN',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3294,'STAVERN',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3295,'HELGEROA',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3296,'NEVLUNGHAMN',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3297,'HELGEROA',712); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3300,'HOKKSUND',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3301,'HOKKSUND',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3302,'HOKKSUND',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3303,'HOKKSUND',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3320,'VESTFOSSEN',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3321,'VESTFOSSEN',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3322,'FISKUM',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3330,'SKOTSELV',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3331,'SKOTSELV',624); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3340,'ÅMOT',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3341,'ÅMOT',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3342,'ÅMOT',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3350,'PRESTFOSS',621); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3351,'PRESTFOSS',621); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3355,'SOLUMSMOEN',621); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3358,'NEDRE EGGEDAL',621); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3359,'EGGEDAL',621); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3360,'GEITHUS',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3361,'GEITHUS',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3370,'VIKERSUND',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3371,'VIKERSUND',623); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3401,'LIER',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3402,'LIER',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3403,'LIER',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3404,'LIER',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3405,'LIER',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3406,'TRANBY',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3407,'TRANBY',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3408,'TRANBY',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3409,'TRANBY',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3410,'SYLLING',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3411,'SYLLING',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3412,'LIERSTRANDA',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3413,'LIER',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3414,'LIERSTRANDA',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3420,'LIERSKOGEN',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3421,'LIERSKOGEN',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3425,'REISTAD',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3426,'GULLAUG',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3427,'GULLAUG',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3428,'GULLAUG',626); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3430,'SPIKKESTAD',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3431,'SPIKKESTAD',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3440,'RØYKEN',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3441,'RØYKEN',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3442,'HYGGEN',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3470,'SLEMMESTAD',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3471,'SLEMMESTAD',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3472,'BØDALEN',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3474,'ÅROS',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3475,'SÆTRE',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3476,'SÆTRE',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3477,'BÅTSTØ',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3478,'NÆRSNES',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3480,'FILTVET',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3481,'TOFTE',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3482,'TOFTE',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3483,'KANA',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3484,'HOLMSBU',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3490,'KLOKKARSTUA',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3491,'KLOKKARSTUA',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3501,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3502,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3503,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3504,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3507,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3510,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3511,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3512,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3513,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3514,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3515,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3516,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3517,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3518,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3519,'HØNEFOSS',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3520,'JEVNAKER',532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3521,'JEVNAKER',532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3522,'BJONEROA',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3523,'NES I ÅDAL',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3524,'NES I ÅDAL',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3525,'HALLINGBY',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3526,'HALLINGBY',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3528,'HEDALEN',540); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3529,'RØYSE',612); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3530,'RØYSE',612); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3531,'KROKKLEIVA',612); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3533,'TYRISTRAND',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3534,'SOKNA',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3535,'KRØDEREN',622); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3536,'NORESUND',622); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3537,'KRØDEREN',622); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3538,'SOLLIHØGDA',612); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3539,'FLÅ',615); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3540,'NESBYEN',616); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3541,'NESBYEN',616); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3544,'TUNHOVD',633); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3550,'GOL',617); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3551,'GOL',617); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3560,'HEMSEDAL',618); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3561,'HEMSEDAL',618); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3570,'ÅL',619); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3571,'ÅL',619); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3575,'HOL',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3576,'HOL',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3577,'HOVET',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3579,'TORPO',619); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3580,'GEILO',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3581,'GEILO',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3588,'DAGALI',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3593,'USTAOSET',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3595,'HAUGASTØL',620); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3601,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3602,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3603,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3604,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3605,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3606,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3608,'HEISTADMOEN',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3609,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3610,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3611,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3612,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3613,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3614,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3615,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3616,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3617,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3618,'SKOLLENBORG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3619,'SKOLLENBORG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3620,'FLESBERG',631); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3621,'LAMPELAND',631); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3622,'SVENE',631); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3623,'LAMPELAND',631); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3624,'LYNGDAL I NUMEDAL',631); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3626,'ROLLAG',632); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3627,'VEGGLI',632); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3628,'VEGGLI',632); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3629,'NORE',633); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3630,'RØDBERG',633); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3631,'RØDBERG',633); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3632,'UVDAL',633); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3646,'HVITTINGFOSS',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3647,'HVITTINGFOSS',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3648,'PASSEBEKK',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3650,'TINN AUSTBYGD',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3652,'HOVIN I TELEMARK',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3656,'ATRÅ',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3658,'MILAND',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3660,'RJUKAN',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3661,'RJUKAN',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3665,'SAULAND',827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3666,'TINN AUSTBYGD',826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3671,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3672,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3673,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3674,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3675,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3676,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3677,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3678,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3679,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3680,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3681,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3683,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3684,'NOTODDEN',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3690,'HJARTDAL',827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3691,'GRANSHERAD',807); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3692,'SAULAND',827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3697,'TUDDAL',827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3701,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3702,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3703,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3704,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3705,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3707,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3708,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3710,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3711,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3712,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3713,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3714,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3715,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3716,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3717,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3718,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3719,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3720,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3721,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3722,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3723,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3724,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3725,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3726,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3727,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3728,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3729,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3730,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3731,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3732,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3733,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3734,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3735,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3736,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3737,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3738,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3739,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3740,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3741,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3742,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3743,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3744,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3746,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3747,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3748,'SILJAN',811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3749,'SILJAN',811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3750,'DRANGEDAL',817); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3753,'TØRDAL',817); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3760,'NESLANDSVATN',817); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3766,'SANNIDAL',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3770,'KRAGERØ',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3772,'KRAGERØ',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3780,'SKÅTØY',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3781,'JOMFRULAND',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3783,'KRAGERØ SKJÆRGÅRD',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3785,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3787,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3788,'STABBESTAD',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3789,'KRAGERØ',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3790,'HELLE',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3791,'KRAGERØ',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3792,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3793,'SANNIDAL',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3794,'HELLE',815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3795,'DRANGEDAL',817); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3796,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3798,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3800,'BØ I TELEMARK',821); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3801,'BØ I TELEMARK',821); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3802,'BØ I TELEMARK',821); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3803,'BØ I TELEMARK',821); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3804,'BØ I TELEMARK',821); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3805,'BØ I TELEMARK',828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3810,'GVARV',822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3811,'HØRTE',822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3812,'AKKERHAUGEN',822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3820,'NORDAGUTU',822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3825,'LUNDE',819); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3830,'ULEFOSS',819); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3831,'ULEFOSS',819); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3832,'LUNDE',819); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3833,'BØ I TELEMARK',821); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3834,'GVARV',822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3835,'SELJORD',828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3836,'KVITESEID',829); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3840,'SELJORD',828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3841,'FLATDAL',828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3844,'ÅMOTSDAL',828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3848,'MORGEDAL',829); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3849,'VRÅLIOSEN',829); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3850,'KVITESEID',829); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3853,'VRÅDAL',829); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3854,'NISSEDAL',830); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3855,'TREUNGEN',830); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3864,'RAULAND',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3870,'FYRESDAL',831); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3880,'DALEN',833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3882,'ÅMDALS VERK',833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3883,'TREUNGEN',830); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3884,'RAULAND',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3885,'FYRESDAL',831); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3886,'DALEN',833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3887,'VINJE',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3888,'EDLAND',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3890,'VINJE',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3891,'HØYDALSMO',833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3893,'VINJESVINGEN',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3895,'EDLAND',834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3901,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3902,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3903,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3904,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3905,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3906,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3910,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3911,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3912,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3913,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3914,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3915,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3916,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3917,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3918,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3919,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3920,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3921,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3922,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3924,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3925,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3928,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3929,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3930,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3931,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3933,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3936,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3937,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3939,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3940,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3941,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3942,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3943,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3944,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3946,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3947,'LANGANGEN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3948,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3949,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3950,'BREVIK',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3960,'STATHELLE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3961,'STATHELLE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3962,'STATHELLE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3965,'HERRE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3966,'STATHELLE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3967,'<NAME>',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3970,'LANGESUND',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3991,'BREVIK',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3993,'LANGESUND',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3994,'LANGESUND',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3995,'STATHELLE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3996,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3997,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3998,'PORSGRUNN',805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3999,'HERRE',814); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4001,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4002,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4003,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4004,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4005,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4006,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4007,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4008,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4009,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4010,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4011,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4012,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4013,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4014,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4015,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4016,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4017,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4018,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4019,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4020,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4021,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4022,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4023,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4024,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4025,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4026,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4027,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4028,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4029,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4031,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4032,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4033,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4034,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4035,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4036,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4041,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4042,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4043,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4044,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4045,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4046,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4047,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4048,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4049,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4050,'SOLA',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4051,'SOLA',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4052,'RØYNEBERG',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4053,'RÆGE',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4054,'TJELTA',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4055,'SOLA',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4056,'TANANGER',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4057,'TANANGER',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4058,'TANANGER',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4059,'RØYNEBERG',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4064,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4065,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4066,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4067,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4068,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4069,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4070,'RANDABERG',1127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4071,'RANDABERG',1127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4072,'RANDABERG',1127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4073,'RANDABERG',1127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4076,'VASSØY',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4077,'HUNDVÅG',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4078,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4079,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4081,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4082,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4083,'HUNDVÅG',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4084,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4085,'HUNDVÅG',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4086,'HUNDVÅG',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4087,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4088,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4089,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4090,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4091,'HAFRSFJORD',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4092,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4093,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4094,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4095,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4096,'RANDABERG',1127); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4097,'SOLA',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4098,'TANANGER',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4099,'STAVANGER',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4100,'JØRPELAND',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4102,'IDSE',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4103,'JØRPELAND',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4104,'JØRPELAND',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4105,'JØRPELAND',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4110,'FORSAND',1129); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4119,'FORSAND',1129); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4120,'TAU',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4121,'TAU',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4123,'SØR-HIDLE',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4124,'TAU',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4126,'JØRPELAND',1130); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4127,'LYSEBOTN',1129); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4128,'FLØYRLI',1129); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4129,'SONGESAND',1129); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4130,'HJELMELAND',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4134,'JØSENFJORDEN',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4137,'<NAME>',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4139,'FISTER',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4146,'SKIFTUN',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4148,'HJELMELAND',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4150,'RENNESØY',1142); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4152,'VESTRE ÅMØY',1142); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4153,'BRIMSE',1142); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4154,'AUSTRE ÅMØY',1103); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4156,'MOSTERØY',1142); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4158,'BRU',1142); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4159,'RENNESØY',1142); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4160,'FINNØY',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4161,'FINNØY',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4163,'TALGJE',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4164,'FOGN',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4167,'HELGØY I RYFYLKE',1133); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4168,'BYRE',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4169,'SØRBOKN',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4170,'SJERNARØY',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4173,'NORD-HIDLE',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4174,'SJERNARØY',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4180,'KVITSØY',1144); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4182,'SKARTVEIT',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4187,'OMBO',1141); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4198,'FOLDØY',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4200,'SAUDA',1135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4201,'SAUDA',1135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4208,'SAUDASJØEN',1135); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4209,'VANVIK',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4230,'SAND',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4233,'ERFJORD',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4234,'JELSA',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4235,'HEBNES',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4237,'SULDALSOSEN',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4239,'SAND',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4240,'SULDALSOSEN',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4244,'NESFLATEN',1134); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4250,'KOPERVIK',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4260,'TORVASTAD',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4262,'AVALDSNES',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4264,'KVALAVÅG',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4265,'HÅVIK',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4270,'ÅKREHAMN',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4272,'SANDVE',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4274,'STOL',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4275,'SÆVELANDSVIK',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4276,'VEDAVÅGEN',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4280,'SKUDENESHAVN',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4291,'KOPERVIK',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4294,'KOPERVIK',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4295,'VEDAVÅGEN',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4296,'ÅKREHAMN',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4297,'SKUDENESHAVN',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4298,'TORVASTAD',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4299,'AVALDSNES',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4301,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4302,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4303,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4304,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4305,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4306,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4307,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4308,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4309,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4310,'HOMMERSÅK',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4311,'HOMMERSÅK',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4312,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4313,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4314,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4315,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4316,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4317,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4318,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4319,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4320,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4321,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4322,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4323,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4324,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4325,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4326,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4327,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4328,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4329,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4330,'ÅLGÅRD',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4331,'ÅLGÅRD',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4332,'FIGGJO',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4333,'OLTEDAL',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4335,'DIRDAL',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4336,'SANDNES',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4337,'SANDNES',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4338,'SANDNES',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4339,'ÅLGÅRD',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4340,'BRYNE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4341,'BRYNE',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4342,'UNDHEIM',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4343,'ORRE',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4344,'BRYNE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4345,'BRYNE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4346,'BRYNE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4347,'LYE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4348,'LYE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4349,'BRYNE',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4350,'KLEPPE',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4351,'KLEPPE',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4352,'KLEPPE',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4353,'KLEPP STASJON',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4354,'VOLL',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4355,'KVERNALAND',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4356,'KVERNALAND',1121); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4357,'KLEPP STASJON',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4358,'KLEPPE',1120); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4360,'VARHAUG',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4362,'VIGRESTAD',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4363,'BRUSAND',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4364,'SIREVÅG',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4365,'NÆRBØ',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4367,'NÆRBØ',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4368,'VARHAUG',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4369,'VIGRESTAD',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4370,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4371,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4372,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4373,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4374,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4375,'HELLVIK',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4376,'HELLELAND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4378,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4379,'EGERSUND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4380,'<NAME>',1111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4381,'H<NAME>',1111); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4387,'BJERKREIM',1114); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4389,'VIKESÅ',1114); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4391,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4392,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4393,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4394,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4395,'HOMMERSÅK',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4396,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4397,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4398,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4400,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4401,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4402,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4403,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4404,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4405,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4406,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4407,'FLEKKEFJORD',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4420,'ÅNA-SIRA',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4432,'HIDRASUND',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4434,'ANDABELØY',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4436,'GYLAND',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4438,'SIRA',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4440,'TONSTAD',1046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4441,'TONSTAD',1046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4443,'TJØRHOM',1046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4460,'MOI',1112); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4462,'HOVSHERAD',1112); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4463,'UALAND',1112); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4465,'MOI',1112); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4473,'KVINLOG',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4480,'KVINESDAL',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4484,'ØYESTRANDA',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4485,'FEDA',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4490,'KVINESDAL',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4491,'KVINESDAL',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4492,'KVINESDAL',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4501,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4502,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4503,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4504,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4505,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4506,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4509,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4513,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4514,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4515,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4516,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4517,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4519,'HOLUM',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4520,'LINDESNES',1029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4521,'LINDESNES',1029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4522,'LINDESNES',1029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4523,'LINDESNES',1029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4524,'LINDESNES',1029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4525,'KONSMO',1027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4528,'KOLLUNGTVEIT',1027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4529,'BYREMO',1027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4532,'ØYSLEBØ',1021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4534,'MARNARDAL',1021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4536,'BJELLAND',1021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4540,'ÅSERAL',1026); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4544,'FOSSDAL',1026); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4550,'FARSUND',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4551,'FARSUND',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4552,'FARSUND',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4553,'FARSUND',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4554,'FARSUND',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4557,'VANSE',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4558,'VANSE',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4560,'VANSE',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4563,'BORHAUG',1003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4575,'LYNGDAL',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4576,'LYNGDAL',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4577,'LYNGDAL',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4579,'LYNGDAL',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4580,'LYNGDAL',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4586,'KORSHAMN',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4588,'KVÅS',1032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4590,'SNARTEMO',1034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4595,'TINGVATN',1034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4596,'EIKEN',1034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4604,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4605,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4606,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4608,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4609,'KARDEMOMME BY',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4610,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4611,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4612,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4613,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4614,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4615,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4616,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4617,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4618,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4619,'MOSBY',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4620,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4621,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4622,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4623,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4624,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4625,'FLEKKERØY',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4626,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4628,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4629,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4630,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4631,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4632,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4633,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4634,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4635,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4636,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4637,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4638,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4639,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4640,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4641,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4642,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4643,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4644,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4645,'NODELAND',1017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4646,'FINSLAND',1017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4647,'BRENNÅSEN',1017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4651,'HAMRESANDEN',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4656,'HAMRESANDEN',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4657,'KJEVIK',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4658,'TVEIT',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4659,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4661,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4662,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4663,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4664,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4665,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4666,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4670,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4671,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4672,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4673,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4674,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4675,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4676,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4677,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4678,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4679,'FLEKKERØY',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4681,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4682,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4683,'SØGNE',1018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4684,'BRENNÅSEN',1017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4685,'NODELAND',1017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4686,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4687,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4688,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4689,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4691,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4693,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4694,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4695,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4696,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4697,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4698,'KRISTIANSAND S',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4699,'TVEIT',1001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4700,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4701,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4702,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4703,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4705,'ØVREBØ',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4706,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4707,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4708,'VENNESLA',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4715,'ØVREBØ',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4720,'HÆGELAND',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4721,'HÆGELAND',1014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4724,'IVELAND',935); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4725,'IVELAND',935); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4730,'VATNESTRØM',935); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4733,'EVJE',937); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4734,'EVJE',937); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4735,'EVJE',937); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4737,'HORNNES',937); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4741,'BYGLANDSFJORD',938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4742,'GRENDI',938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4744,'BYGLAND',938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4745,'BYGLAND',938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4747,'VALLE',940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4748,'RYSSTAD',940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4754,'BYKLE',941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4755,'HOVDEN I SETESDAL',941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4756,'HOVDEN I SETESDAL',941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4760,'BIRKELAND',928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4766,'HEREFOSS',928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4768,'ENGESLAND',928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4770,'HØVÅG',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4780,'BREKKESTØ',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4790,'LILLESAND',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4791,'LILLESAND',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4792,'LILLESAND',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4793,'HØVÅG',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4794,'LILLESAND',926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4795,'BIRKELAND',928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4801,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4802,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4803,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4804,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4808,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4809,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4810,'EYDEHAVN',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4812,'KONGSHAVN',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4815,'SALTRØD',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4816,'KOLBJØRNSVIK',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4817,'HIS',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4818,'FÆRVIK',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4820,'FROLAND',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4821,'RYKENE',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4823,'NEDENES',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4824,'BJORBEKK',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4825,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4827,'<NAME>',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4828,'MJÅVATN',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4830,'HYNNEKLEIV',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4832,'MYKLAND',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4834,'RISDAL',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4836,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4838,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4839,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4841,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4842,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4843,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4844,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4846,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4847,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4848,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4849,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4851,'SALTRØD',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4852,'FÆRVIK',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4853,'HIS',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4854,'NEDENES',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4855,'FROLAND',919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4856,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4857,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4858,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4859,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4861,'ARENDAL',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4862,'EYDEHAVN',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4863,'NELAUG',929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4864,'ÅMLI',929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4865,'ÅMLI',929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4868,'SELÅSVATN',929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4869,'DØLEMO',929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4870,'FEVIK',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4876,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4877,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4878,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4879,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4884,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4885,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4886,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4887,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4888,'HOMBORSUND',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4889,'FEVIK',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4891,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4892,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4893,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4894,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4896,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4898,'GRIMSTAD',904); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4900,'TVEDESTRAND',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4901,'TVEDESTRAND',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4902,'TVEDESTRAND',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4903,'TVEDESTRAND',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4904,'TVEDESTRAND',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4905,'TVEDESTRAND',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4909,'SONGE',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4910,'LYNGØR',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4912,'GJEVING',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4915,'VESTRE SANDØYA',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4916,'BORØY',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4920,'STAUBØ',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4934,'NES VERK',914); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4950,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4951,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4952,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4953,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4955,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4956,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4957,'RISØR',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4971,'SUNDEBRU',911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4972,'GJERSTAD',911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4973,'VEGÅRSHEI',912); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4974,'SØNDELED',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4980,'GJERSTAD',911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4985,'VEGÅRSHEI',912); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4990,'SØNDELED',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4993,'SUNDEBRU',911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4994,'AKLAND',901); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5003,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5004,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5005,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5006,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5007,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5008,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5009,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5010,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5011,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5012,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5013,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5014,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5015,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5016,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5017,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5018,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5019,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5020,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5021,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5022,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5031,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5032,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5033,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5034,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5035,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5036,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5037,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5038,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5039,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5041,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5042,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5043,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5045,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5052,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5053,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5054,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5055,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5056,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5057,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5058,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5059,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5063,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5067,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5068,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5072,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5073,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5075,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5081,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5082,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5089,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5093,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5094,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5096,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5097,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5098,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5099,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5101,'EIDSVÅGNESET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5104,'EIDSVÅG I ÅSANE',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5105,'EIDSVÅG I ÅSANE',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5106,'ØVRE ERVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5107,'SALHUS',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5108,'HORDVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5109,'HYLKJE',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5111,'BREISTEIN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5113,'TERTNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5114,'TERTNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5115,'ULSET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5116,'ULSET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5117,'ULSET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5118,'ULSET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5119,'ULSET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5121,'ULSET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5122,'MORVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5124,'MORVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5130,'NYBORG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5131,'NYBORG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5132,'NYBORG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5134,'FLAKTVEIT',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5135,'FLAKTVEIT',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5136,'MJØLKERÅEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5137,'MJØLKERÅEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5141,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5142,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5143,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5144,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5145,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5146,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5147,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5148,'FYLLINGSDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5151,'STRAUMSGREND',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5152,'BØNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5153,'BØNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5154,'BØNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5155,'BØNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5160,'LAKSEVÅG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5161,'LAKSEVÅG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5162,'LAKSEVÅG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5163,'LAKSEVÅG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5164,'LAKSEVÅG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5165,'LAKSEVÅG',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5170,'BJØRNDALSTRÆ',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5171,'LODDEFJORD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5172,'LODDEFJORD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5173,'LODDEFJORD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5174,'MATHOPEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5176,'LODDEFJORD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5177,'BJØRØYHAMN',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5178,'LODDEFJORD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5179,'GODVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5183,'OLSVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5184,'OLSVIK',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5200,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5201,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5202,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5203,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5206,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5207,'SØFTELAND',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5208,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5209,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5210,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5211,'OS',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5212,'SØFTELAND',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5215,'LYSEKLOSTER',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5216,'LEPSØY',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5217,'HAGAVIK',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5218,'NORDSTRØNO',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5221,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5222,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5223,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5224,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5225,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5226,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5227,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5228,'NESTTUN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5229,'KALANDSEIDET',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5230,'PARADIS',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5231,'PARADIS',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5232,'PARADIS',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5235,'RÅDAL',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5236,'RÅDAL',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5237,'RÅDAL',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5238,'RÅDAL',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5239,'RÅDAL',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5243,'FANA',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5244,'FANA',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5251,'SØREIDGREND',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5252,'SØREIDGREND',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5253,'SANDSLI',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5254,'SANDSLI',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5257,'KOKSTAD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5258,'BLOMSTERDALEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5259,'HJELLESTAD',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5260,'<NAME>',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5261,'<NAME>',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5262,'ARNATVEIT',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5263,'TRENGEREID',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5264,'GARNES',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5265,'<NAME>',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5267,'ESPELAND',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5268,'HAUKELAND',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5281,'VALESTRANDSFOSSEN',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5282,'LONEVÅG',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5283,'FOTLANDSVÅG',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5284,'TYSSEBOTNEN',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5285,'BRUVIK',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5286,'HAUS',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5291,'VALESTRANDSFOSSEN',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5293,'LONEVÅG',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5299,'HAUS',1253); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5300,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5301,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5302,'STRUSSHAMN',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5303,'FOLLESE',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5304,'HETLEVIK',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5305,'FLORVÅG',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5306,'ERDAL',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5307,'ASK',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5308,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5309,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5310,'HAUGLANDSHELLA',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5314,'KJERRGARDEN',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5315,'HERDLA',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5318,'STRUSSHAMN',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5319,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5321,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5322,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5323,'KLEPPESTØ',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5325,'FOLLESE',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5326,'ASK',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5327,'HAUGLANDSHELLA',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5329,'FLORVÅG',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5331,'RONG',1259); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5333,'TJELDSTØ',1259); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5334,'HELLESØY',1259); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5335,'HERNAR',1259); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5336,'TJELDSTØ',1259); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5337,'RONG',1259); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5341,'STRAUME',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5342,'STRAUME',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5343,'STRAUME',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5345,'KNARREVIK',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5346,'ÅGOTNES',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5347,'ÅGOTNES',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5350,'BRATTHOLMEN',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5353,'STRAUME',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5354,'STRAUME',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5355,'KNARREVIK',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5357,'FJELL',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5358,'FJELL',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5360,'KOLLTVEIT',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5363,'ÅGOTNES',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5365,'TURØY',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5366,'MISJE',1246); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5371,'SKOGSVÅG',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5374,'STEINSLAND',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5378,'KLOKKARVIK',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5379,'STEINSLAND',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5380,'TÆLAVÅG',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5381,'GLESVÆR',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5382,'SKOGSVÅG',1245); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5384,'TORANGSVÅG',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5385,'BAKKASUND',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5387,'MØKSTER',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5388,'LITLAKALSØY',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5392,'STOREBØ',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5393,'STOREBØ',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5394,'KOLBEINSVIK',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5396,'VESTRE VINNESVÅG',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5397,'BEKKJARVIK',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5398,'STOLMEN',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5399,'BEKKJARVIK',1244); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5401,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5402,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5403,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5404,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5406,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5407,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5408,'SAGVÅG',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5409,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5410,'SAGVÅG',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5411,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5412,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5413,'HUGLO',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5414,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5415,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5416,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5417,'STORD',1221); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5418,'FITJAR',1222); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5419,'FITJAR',1222); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5420,'RUBBESTADNESET',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5423,'BRANDASUND',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5427,'URANGSVÅG',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5428,'FOLDRØYHAMN',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5430,'BREMNES',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5437,'FINNÅS',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5440,'MOSTERHAMN',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5443,'BØMLO',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5444,'ESPEVÆR',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5445,'BREMNES',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5447,'MOSTERHAMN',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5449,'BØMLO',1219); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5450,'SUNDE I SUNNHORDLAND',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5451,'VALEN',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5452,'SANDVOLL',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5453,'UTÅKER',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5454,'SÆBØVIK',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5455,'HALSNØY KLOSTER',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5457,'HØYLANDSBYGD',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5458,'ARNAVIK',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5459,'FJELBERG',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5460,'HUSNES',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5462,'HERØYSUNDET',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5463,'USKEDALEN',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5464,'DIMMELSVIK',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5465,'USKEDALEN',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5470,'ROSENDAL',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5472,'SEIMSFOSS',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5473,'SNILSTVEITØY',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5474,'LØFALLSTRAND',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5475,'ÆNES',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5476,'MAURANGER',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5480,'HUSNES',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5484,'SÆBØVIK',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5486,'ROSENDAL',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5498,'MATRE',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5499,'ÅKRA',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5501,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5502,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5503,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5504,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5505,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5506,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5507,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5508,'KARMSUND',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5509,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5511,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5512,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5514,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5515,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5516,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5517,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5518,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5519,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5521,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5522,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5523,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5525,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5527,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5528,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5529,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5531,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5532,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5533,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5534,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5535,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5536,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5537,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5538,'HAUGESUND',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5541,'KOLNES',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5542,'KARMSUND',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5544,'VORMEDAL',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5545,'VORMEDAL',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5546,'RØYKSUND',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5547,'UTSIRA',1151); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5548,'FEØY',1149); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5549,'RØVÆR',1106); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5550,'SVEIO',1216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5551,'AUKLANDSHAMN',1216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5554,'VALEVÅG',1216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5555,'FØRDE I HORDALAND',1216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5559,'SVEIO',1216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5560,'NEDSTRAND',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5561,'BOKN',1145); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5563,'FØRRESFJORDEN',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5565,'TYSVÆRVÅG',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5566,'HERVIK',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5567,'SKJOLDASTRAUMEN',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5568,'VIKEBYGD',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5570,'AKSDAL',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5574,'SKJOLD',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5575,'AKSDAL',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5576,'ØVRE VATS',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5578,'NEDRE VATS',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5580,'ØLEN',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5582,'ØLENSVÅG',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5583,'VIKEDAL',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5584,'BJOA',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5585,'SANDEID',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5586,'VIKEDAL',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5588,'ØLEN',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5589,'SANDEID',1160); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5590,'ETNE',1211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5591,'ETNE',1211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5593,'SKÅNEVIK',1211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5594,'SKÅNEVIK',1211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5595,'FØRRESFJORDEN',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5596,'MARKHUS',1211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5598,'FJÆRA',1211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5600,'NORHEIMSUND',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5601,'NORHEIMSUND',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5602,'NORHEIMSUND',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5604,'ØYSTESE',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5605,'ÅLVIK',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5610,'ØYSTESE',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5612,'STEINSTØ',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5614,'ÅLVIK',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5620,'TØRVIKBYGD',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5626,'KYSNESSTRAND',1227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5627,'JONDAL',1227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5628,'HERAND',1227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5629,'JONDAL',1227); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5630,'STRANDEBARM',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5632,'OMASTRAND',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5635,'HATLESTRAND',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5636,'VARALDSØY',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5637,'ØLVE',1224); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5640,'EIKELANDSOSEN',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5641,'FUSA',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5642,'HOLMEFJORD',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5643,'STRANDVIK',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5645,'SÆVAREID',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5646,'NORDTVEITGREND',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5647,'BALDERSHEIM',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5649,'EIKELANDSOSEN',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5650,'TYSSE',1242); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5652,'ÅRLAND',1242); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5653,'ÅRLAND',1242); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5680,'TYSNES',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5683,'REKSTEREN',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5685,'UGGDAL',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5687,'FLATRÅKER',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5690,'LUNDEGREND',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5693,'ÅRBAKKA',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5694,'ONARHEIM',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5695,'UGGDAL',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5696,'TYSNES',1223); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5700,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5701,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5702,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5703,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5704,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5705,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5706,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5707,'EVANGER',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5708,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5709,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5710,'SKULESTADMO',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5711,'SKULESTADMO',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5712,'VOSSESTRAND',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5713,'VOSSESTRAND',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5714,'VOSS',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5715,'STALHEIM',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5718,'MYRDAL',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5719,'FINSE',1233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5721,'DALEKVAM',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5722,'DALEKVAM',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5723,'BOLSTADØYRI',1235); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5724,'STANGHELLE',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5725,'VAKSDAL',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5726,'VAKSDAL',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5727,'STAMNES',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5728,'EIDSLANDET',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5729,'MODALEN',1252); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5730,'ULVIK',1233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5731,'ULVIK',1233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5733,'GRANVIN',1234); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5734,'VALLAVIK',1233); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5736,'GRANVIN',1234); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5741,'AURLAND',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5742,'FLÅM',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5743,'FLÅM',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5745,'AURLAND',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5746,'UNDREDAL',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5747,'GUDVANGEN',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5748,'STYVI',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5749,'BAKKA',1421); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5750,'ODDA',1228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5751,'ODDA',1228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5752,'ODDA',1228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5760,'RØLDAL',1228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5763,'SKARE',1228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5770,'TYSSEDAL',1228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5773,'HOVLAND',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5776,'NÅ',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5777,'GRIMO',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5778,'UTNE',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5779,'UTNE',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5780,'KINSARVIK',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5781,'LOFTHUS',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5782,'KINSARVIK',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5783,'EIDFJORD',1232); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5784,'ØVRE EIDFJORD',1232); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5785,'VØRINGSFOSS',1232); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5786,'EIDFJORD',1232); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5787,'LOFTHUS',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5788,'KINSARVIK',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5803,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5804,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5805,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5806,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5807,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5808,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5809,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5810,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5811,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5812,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5813,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5814,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5815,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5816,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5817,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5818,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5819,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5821,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5822,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5824,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5825,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5828,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5829,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5831,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5835,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5836,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5838,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5841,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5845,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5847,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5848,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5849,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5851,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5852,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5853,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5854,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5857,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5858,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5859,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5861,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5862,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5863,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5864,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5868,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5869,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5871,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5872,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5873,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5876,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5877,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5878,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5879,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5881,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5882,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5884,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5886,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5887,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5888,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5889,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5892,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5893,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5895,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5896,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5899,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5902,'ISDALSTØ',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5903,'ISDALSTØ',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5904,'ISDALSTØ',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5906,'FREKHAUG',1256); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5907,'ALVERSUND',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5908,'ISDALSTØ',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5911,'ALVERSUND',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5912,'SEIM',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5913,'EIKANGERVÅG',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5914,'ISDALSTØ',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5915,'HJELMÅS',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5916,'ISDALSTØ',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5917,'ROSSLAND',1256); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5918,'FREKHAUG',1256); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5919,'FREKHAUG',1256); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5931,'MANGER',1260); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5936,'MANGER',1260); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5937,'BØVÅGEN',1260); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5938,'SÆBØVÅGEN',1260); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5939,'SLETTA',1260); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5941,'AUSTRHEIM',1264); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5943,'AUSTRHEIM',1264); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5947,'FEDJE',1265); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5948,'FEDJE',1265); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5951,'LINDÅS',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5952,'FONNES',1264); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5953,'FONNES',1264); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5954,'MONGSTAD',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5955,'LINDÅS',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5956,'HUNDVIN',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5957,'MYKING',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5960,'DALSØYRA',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5961,'BREKKE',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5962,'BJORDAL',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5966,'EIVINDVIK',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5967,'EIVINDVIK',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5970,'BYRKNESØY',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5977,'ÅNNELAND',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5978,'MJØMNA',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5979,'BYRKNESØY',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5981,'MASFJORDNES',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5983,'HAUGSVÆR',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5984,'MATREDAL',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5986,'HOSTELAND',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5987,'HOSTELAND',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5991,'OSTEREIDET',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5993,'OSTEREIDET',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5994,'VIKANES',1263); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6001,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6002,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6003,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6004,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6005,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6006,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6007,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6008,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6009,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6010,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6011,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6012,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6013,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6014,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6015,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6016,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6017,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6018,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6019,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6020,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6021,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6022,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6023,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6024,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6025,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6026,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6028,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6030,'LANGEVÅG',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6035,'FISKARSTRAND',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6036,'MAUSEIDVÅG',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6037,'EIDSNES',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6038,'FISKARSTRAND',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6039,'LANGEVÅG',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6040,'VIGRA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6045,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6046,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6047,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6050,'VALDERØYA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6051,'VALDERØYA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6052,'GISKE',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6055,'GODØYA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6057,'ELLINGSØY',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6058,'VALDERØYA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6059,'VIGRA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6060,'HAREID',1517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6062,'BRANDAL',1517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6063,'HJØRUNGAVÅG',1517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6064,'HADDAL',1516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6065,'ULSTEINVIK',1516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6067,'ULSTEINVIK',1516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6068,'EIKSUND',1516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6069,'HAREID',1517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6070,'TJØRVÅG',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6076,'MOLTUSTRANDA',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6080,'GURSKØY',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6082,'GURSKEN',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6083,'GJERDSVIKA',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6084,'LARSNES',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6085,'LARSNES',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6087,'KVAMSØY',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6089,'SANDSHAMN',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6090,'FOSNAVÅG',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6091,'FOSNAVÅG',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6092,'FOSNAVÅG',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6094,'LEINØY',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6095,'BØLANDET',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6096,'RUNDE',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6098,'NERLANDSØY',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6099,'FOSNAVÅG',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6100,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6101,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6102,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6103,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6104,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6105,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6106,'VOLDA',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6110,'AUSTEFJORDEN',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6120,'FOLKESTAD',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6121,'FOLKESTAD',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6133,'LAUVSTAD',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6139,'FISKÅ',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6140,'SYVDE',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6141,'ROVDE',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6142,'EIDSÅ',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6143,'FISKÅ',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6144,'SYLTE',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6146,'ÅHEIM',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6149,'ÅRAM',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6150,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6151,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6152,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6153,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6154,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6155,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6156,'ØRSTA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6160,'HOVDEBYGDA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6161,'HOVDEBYGDA',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6165,'SÆBØ',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6166,'SÆBØ',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6170,'VARTDAL',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6174,'BARSTADVIK',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6183,'TRANDAL',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6184,'STORESTANDAL',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6190,'BJØRKE',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6196,'NORANGSFJORDEN',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6200,'STRANDA',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6201,'STRANDA',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6210,'VALLDAL',1524); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6211,'VALLDAL',1524); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6212,'LIABYGDA',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6213,'TAFJORD',1524); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6214,'NORDDAL',1524); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6215,'EIDSDAL',1524); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6216,'GEIRANGER',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6218,'HELLESYLT',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6220,'STRAUMGJERDE',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6222,'IKORNNES',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6224,'HUNDEIDVIK',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6230,'SYKKYLVEN',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6238,'STRAUMGJERDE',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6239,'SYKKYLVEN',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6240,'ØRSKOG',1523); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6249,'ØRSKOG',1523); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6250,'STORDAL',1526); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6259,'STORDAL',1526); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6260,'SKODJE',1529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6263,'SKODJE',1529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6264,'TENNFJORD',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6265,'VATNE',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6270,'BRATTVÅG',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6272,'HILDRE',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6280,'SØVIK',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6281,'SØVIK',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6282,'BRATTVÅG',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6283,'VATNE',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6285,'STOREKALVØY',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6290,'HARAMSØY',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6292,'KJERSTAD',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6293,'LONGVA',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6294,'FJØRTOFT',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6300,'ÅNDALSNES',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6301,'ÅNDALSNES',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6310,'VEBLUNGSNES',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6315,'INNFJORDEN',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6320,'ISFJORDEN',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6330,'VERMA',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6339,'ISFJORDEN',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6350,'EIDSBYGDA',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6360,'ÅFARNES',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6363,'MITTET',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6364,'VISTDAL',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6386,'MÅNDALEN',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6387,'VÅGSTRANDA',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6388,'VÅGSTRANDA',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6390,'VESTNES',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6391,'TRESFJORD',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6392,'VIKEBUKT',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6393,'TOMREFJORD',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6394,'FIKSDAL',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6395,'REKDAL',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6396,'VIKEBUKT',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6397,'TRESFJORD',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6398,'TOMREFJORD',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6399,'VESTNES',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6401,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6402,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6403,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6404,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6405,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6407,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6408,'AUREOSEN',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6409,'MOLDE',1547); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6410,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6411,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6412,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6413,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6414,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6415,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6416,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6418,'SEKKEN',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6419,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6421,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6422,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6423,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6425,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6429,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6430,'BUD',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6431,'BUD',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6433,'HUSTAD',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6434,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6435,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6436,'MOLDE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6440,'ELNESVÅGEN',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6443,'TOR<NAME> ROMSDAL',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6444,'FARSTAD',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6445,'MALMEFJORDEN',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6447,'ELNESVÅGEN',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6450,'HJELSET',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6453,'KLEIVE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6454,'HJELSET',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6455,'KORTGARDEN',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6456,'SKÅLA',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6457,'BOLSØYA',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6460,'EIDSVÅG I ROMSDAL',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6461,'EIDSVÅG I ROMSDAL',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6462,'RAUDSAND',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6470,'ERESFJORD',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6472,'EIKESDAL',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6475,'MIDSUND',1545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6476,'MIDSUND',1545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6480,'AUKRA',1547); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6481,'AUKRA',1547); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6483,'ONA',1546); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6484,'SANDØY',1546); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6486,'ORTEN',1546); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6487,'HARØY',1546); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6488,'MYKLEBOST',1546); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6490,'EIDE',1551); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6493,'LYNGSTAD',1551); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6494,'VEVANG',1551); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6499,'EIDE',1551); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6501,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6502,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6503,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6504,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6506,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6507,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6508,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6509,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6510,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6511,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6512,'KRISTIANSUND N',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6514,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6515,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6516,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6517,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6518,'<NAME>',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6520,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6521,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6522,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6523,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6524,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6525,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6529,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6530,'AVERØY',1554); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6531,'AVERØY',1554); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6532,'AVERØY',1554); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6533,'AVERØY',1554); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6538,'AVERØY',1554); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6539,'AVERØY',1554); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6570,'SMØLA',1573); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6571,'SMØLA',1573); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6590,'TUSTNA',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6600,'SUNNDALSØRA',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6601,'SUNNDALSØRA',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6610,'ØKSENDAL',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6611,'FURUGRENDA',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6612,'GRØA',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6613,'GJØRA',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6620,'ÅLVUNDEID',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6622,'ÅLVUNDFJORD',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6628,'MEISINGSET',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6629,'TORJULVÅGEN',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6630,'TINGVOLL',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6631,'BATNFJORDSØRA',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6633,'GJEMNES',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6636,'ANGVIK',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6637,'FLEMMA',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6638,'OSMARKA',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6639,'TORVIKBUKT',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6640,'KVANNE',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6642,'STANGVIK',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6643,'BØFJORDEN',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6644,'BÆVERFJORD',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6645,'TODALEN',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6650,'SURNADAL',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6652,'SURNA',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6653,'ØVRE SURNADAL',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6655,'VINDØLA',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6656,'SURNADAL',1566); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6657,'RINDAL',5061); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6658,'RINDALSSKOGEN',5061); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6659,'RINDAL',5061); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6670,'ØYDEGARD',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6674,'KVISVIK',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6680,'HALSANAUSTAN',1571); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6683,'VÅGLAND',1571); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6686,'VALSØYBOTN',1571); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6687,'VALSØYFJORD',1571); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6688,'VÅGLAND',1571); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6689,'AURE',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6690,'AURE',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6693,'MJOSUNDET',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6694,'FOLDFJORDEN',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6697,'VIHALS',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6698,'LESUND',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6699,'KJØRSVIKBUGEN',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6700,'MÅLØY',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6701,'MÅLØY',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6702,'MÅLØY',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6703,'MÅLØY',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6704,'DEKNEPOLLEN',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6707,'RAUDEBERG',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6708,'BRYGGJA',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6710,'RAUDEBERG',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6711,'BRYGGJA',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6713,'ALMENNINGEN',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6714,'SILDA',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6715,'BARMEN',1441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6716,'HUSEVÅG',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6717,'FLATRAKET',1441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6718,'DEKNEPOLLEN',1439); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6719,'SKATESTRAUMEN',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6721,'SVELGEN',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6723,'SVELGEN',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6726,'BREMANGER',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6727,'BREMANGER',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6728,'KALVÅG',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6729,'KALVÅG',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6730,'DAVIK',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6731,'DAVIK',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6734,'RUGSUND',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6737,'ÅLFOTEN',1438); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6740,'SELJE',1441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6741,'SELJE',1441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6750,'STADLANDET',1441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6751,'STADLANDET',1441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6761,'HORNINDAL',1444); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6763,'HORNINDAL',1444); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6770,'NORDFJORDEID',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6771,'NORDFJORDEID',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6772,'NORDFJORDEID',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6776,'KJØLSDALEN',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6777,'STÅRHEIM',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6778,'LOTE',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6779,'HOLMØYANE',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6781,'STRYN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6782,'STRYN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6783,'STRYN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6784,'OLDEN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6788,'OLDEN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6789,'LOEN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6791,'OLDEDALEN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6792,'BRIKSDALSBRE',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6793,'INNVIK',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6795,'BLAKSÆTER',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6796,'HOPLAND',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6797,'UTVIK',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6798,'HJELLEDALEN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6799,'OPPSTRYN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6800,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6801,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6802,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6803,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6804,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6805,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6806,'NAUSTDAL',1433); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6807,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6808,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6809,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6810,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6811,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6812,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6813,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6814,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6815,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6817,'NAUSTDAL',1433); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6818,'HAUKEDALEN',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6819,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6821,'SANDANE',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6822,'SANDANE',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6823,'SANDANE',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6826,'BYRKJELO',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6827,'BREIM',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6828,'HESTENESØYRA',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6829,'HYEN',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6841,'SKEI I JØLSTER',1431); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6843,'SKEI I JØLSTER',1431); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6847,'VASSENDEN',1431); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6848,'FJÆRLAND',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6851,'SOGNDAL',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6852,'SOGNDAL',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6853,'SOGNDAL',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6854,'KAUPANGER',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6855,'FRØNNINGEN',1422); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6856,'SOGNDAL',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6858,'FARDAL',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6859,'SLINDE',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6861,'LEIKANGER',1419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6863,'LEIKANGER',1419); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6866,'GAUPNE',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6868,'GAUPNE',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6869,'HAFSLO',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6870,'ORNES',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6871,'JOSTEDAL',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6872,'LUSTER',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6873,'MARIFJØRA',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6875,'HØYHEIMSVIK',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6876,'SKJOLDEN',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6877,'FORTUN',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6878,'VEITASTROND',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6879,'SOLVORN',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6881,'ÅRDALSTANGEN',1424); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6882,'ØVRE ÅRDAL',1424); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6884,'ØVRE ÅRDAL',1424); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6885,'ÅRDALSTANGEN',1424); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6886,'LÆRDAL',1422); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6887,'LÆRDAL',1422); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6888,'BORGUND',1422); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6891,'VIK I SOGN',1417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6893,'VIK I SOGN',1417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6894,'VANGSNES',1417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6895,'FEIOS',1417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6896,'FRESVIK',1417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6898,'BALESTRAND',1418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6899,'BALESTRAND',1418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6900,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6901,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6902,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6903,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6905,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6906,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6907,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6908,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6909,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6912,'KINN',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6914,'SVANØYBUKT',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6915,'ROGNALDSVÅG',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6916,'BAREKSTAD',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6917,'BATALDEN',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6918,'SØR-SKORPA',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6919,'TANSØY',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6921,'HARDBAKKE',1412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6924,'HARDBAKKE',1412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6926,'KRAKHELLA',1412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6927,'YTRØYGREND',1412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6928,'KOLGROV',1412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6929,'HERSVIKBYGDA',1412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6940,'EIKEFJORD',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6941,'EIKEFJORD',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6942,'SVORTEVIK',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6944,'STAVANG',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6946,'LAVIK',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6947,'LAVIK',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6951,'LEIRVIK I SOGN',1413); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6953,'LEIRVIK I SOGN',1413); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6957,'HYLLESTAD',1413); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6958,'SØRBØVÅG',1413); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6961,'DALE I SUNNFJORD',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6963,'DALE I SUNNFJORD',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6964,'KORSSUND',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6966,'GUDDAL',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6967,'<NAME>',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6968,'FLEKKE',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6969,'STRAUMSNES',1429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6971,'SANDE I SUNNFJORD',1430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6973,'SAN<NAME>UNNFJORD',1430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6975,'SKILBREI',1430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6977,'BYGSTAD',1430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6978,'VIKSDALEN',1430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6980,'ASKVOLL',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6981,'HOLMEDAL',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6982,'HOLMEDAL',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6983,'KVAMMEN',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6984,'STONGFJORDEN',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6985,'ATLØY',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6986,'VÆRLANDET',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6987,'BULANDET',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6988,'ASKVOLL',1428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6991,'HØYANGER',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6993,'HØYANGER',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6995,'KYRKJEBØ',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6996,'VADHEIM',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7003,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7004,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7005,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7006,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7010,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7011,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7012,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7013,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7014,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7015,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7016,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7017,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7018,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7019,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7020,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7021,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7022,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7023,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7024,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7025,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7026,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7027,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7028,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7029,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7030,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7031,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7032,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7033,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7034,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7035,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7036,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7037,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7038,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7039,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7040,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7041,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7042,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7043,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7044,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7045,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7046,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7047,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7048,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7049,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7050,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7051,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7052,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7053,'RANHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7054,'RANHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7055,'RANHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7056,'RANHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7057,'JONSVATNET',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7058,'JAKOBSLI',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7059,'JAKOBSLI',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7066,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7067,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7068,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7069,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7070,'BOSBERG',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7071,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7072,'HEIMDAL',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7074,'SPONGDAL',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7075,'TILLER',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7078,'SAUPSTAD',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7079,'FLATÅSEN',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7080,'HEIMDAL',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7081,'SJETNEMARKA',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7082,'KATTEM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7083,'LEINSTRAND',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7088,'HEIMDAL',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7089,'HEIMDAL',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7091,'TILLER',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7092,'TILLER',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7093,'TILLER',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7097,'SAUPSTAD',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7098,'SAUPSTAD',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7099,'FLATÅSEN',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7100,'RISSA',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7101,'RISSA',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7105,'STADSBYGD',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7110,'FEVÅG',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7112,'HASSELVIKA',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7113,'HUSBYSJØEN',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7114,'RÅKVÅG',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7119,'STADSBYGD',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7120,'LEKSVIK',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7121,'LEKSVIK',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7125,'VANVIKAN',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7126,'VANVIKAN',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7127,'OPPHAUG',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7128,'UTHAUG',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7129,'BREKSTAD',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7130,'BREKSTAD',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7140,'OPPHAUG',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7142,'UTHAUG',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7150,'STORFOSNA',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7152,'KRÅKVÅG',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7153,'GARTEN',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7156,'LEKSA',5016); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7159,'BJUGN',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7160,'BJUGN',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7165,'OKSVOLL',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7166,'TARVA',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7167,'VALLERSUND',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7168,'LYSØYSUNDET',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7169,'ÅFJORD',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7170,'ÅFJORD',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7176,'LINESØYA',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7177,'REVSNES',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7178,'STOKKØY',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7180,'ROAN',5019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7190,'BESSAKER',5019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7194,'BRANDSFJORD',5019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7200,'KYRKSÆTERØRA',5011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7201,'KYRKSÆTERØRA',5011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7203,'VINJEØRA',5011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7206,'HELLANDSJØEN',5011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7207,'<NAME>',5012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7211,'KORSVEGEN',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7212,'KORSVEGEN',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7213,'GÅSBAKKEN',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7221,'MELHUS',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7223,'MELHUS',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7224,'MELHUS',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7227,'GIMSE',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7228,'KVÅL',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7231,'LUNDAMO',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7232,'LUNDAMO',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7234,'LER',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7235,'LER',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7236,'<NAME>',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7238,'<NAME>',5028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7239,'HITRA',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7240,'HITRA',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7241,'ANSNES',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7242,'KNARRLAGSUND',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7243,'KVENVÆR',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7246,'SANDSTAD',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7247,'HESTVIKA',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7250,'MELANDSJØ',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7252,'DOLMØY',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7255,'SUNDLANDET',5012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7256,'HEMNSKJELA',5012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7257,'SNILLFJORD',5012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7259,'SNILLFJORD',5012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7260,'SISTRANDA',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7261,'SISTRANDA',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7263,'HAMARVIK',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7264,'HAMARVIK',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7266,'KVERVA',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7268,'TITRAN',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7270,'DYRVIK',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7273,'NORDDYRØY',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7280,'SULA',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7282,'BOGØYVÆR',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7284,'MAUSUND',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7285,'GJÆSINGEN',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7286,'SØRBURØY',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7287,'SAUØY',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7288,'SOKNEDAL',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7289,'SOKNEDAL',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7290,'STØREN',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7291,'STØREN',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7295,'ROGNES',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7298,'BUDALEN',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7300,'ORKANGER',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7301,'ORKANGER',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7302,'ORKANGER',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7303,'ORKANGER',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7310,'GJØLME',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7315,'LENSVIK',5016); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7316,'LENSVIK',5016); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7318,'AGDENES',5016); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7319,'AGDENES',5016); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7320,'FANNREM',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7321,'FANNREM',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7327,'SVORKMO',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7329,'SVORKMO',5024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7331,'LØKKEN VERK',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7332,'LØKKEN VERK',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7333,'STORÅS',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7334,'STORÅS',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7335,'JERPSTAD',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7336,'MELDAL',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7338,'MELDAL',5023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7340,'OPPDAL',5021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7341,'OPPDAL',5021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7342,'LØNSET',5021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7343,'VOGNILL',5021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7345,'DRIVA',5021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7350,'BUVIKA',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7351,'BUVIKA',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7353,'BØRSA',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7354,'VIGGJA',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7355,'EGGKLEIVA',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7357,'SKAUN',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7358,'BØRSA',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7361,'RØROS',5025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7370,'BREKKEBYGD',5025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7372,'GLÅMOS',5025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7374,'RØROS',5025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7375,'RØROS',5025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7380,'ÅLEN',5026); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7383,'HALTDALEN',5026); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7384,'ÅLEN',5026); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7386,'SINGSÅS',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7387,'SINGSÅS',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7391,'RENNEBU',5022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7392,'RENNEBU',5022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7393,'RENNEBU',5022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7397,'RENNEBU',5022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7398,'RENNEBU',5022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7399,'RENNEBU',5022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7400,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7401,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7402,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7403,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7404,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7405,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7406,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7407,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7408,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7409,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7410,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7411,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7412,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7413,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7414,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7415,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7416,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7417,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7418,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7419,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7420,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7421,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7422,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7424,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7425,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7426,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7427,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7428,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7429,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7430,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7431,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7432,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7433,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7434,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7435,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7436,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7437,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7438,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7439,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7440,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7441,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7442,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7443,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7444,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7445,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7446,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7447,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7448,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7449,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7450,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7451,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7452,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7453,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7454,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7455,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7456,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7457,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7458,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7459,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7461,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7462,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7465,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7466,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7467,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7468,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7469,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7470,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7471,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7472,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7473,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7474,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7475,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7476,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7477,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7478,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7479,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7480,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7481,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7482,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7483,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7484,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7485,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7486,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7487,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7488,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7489,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7490,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7491,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7492,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7493,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7494,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7495,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7496,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7497,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7500,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7501,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7502,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7503,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7504,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7505,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7506,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7507,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7508,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7509,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7510,'SKATVAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7512,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7513,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7514,'STJØRDAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7517,'HELL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7519,'ELVARLI',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7520,'HEGRA',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7525,'FLORNES',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7529,'HEGRA',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7530,'MERÅKER',5034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7531,'MERÅKER',5034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7533,'KOPPERÅ',5034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7540,'KLÆBU',5030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7541,'KLÆBU',5030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7549,'TANEM',5030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7550,'HOMMELVIK',5031); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7551,'HOMMELVIK',5031); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7560,'VIKHAMMER',5031); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7562,'HUNDHAMAREN',5031); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7563,'MALVIK',5031); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7566,'VIKHAMMER',5031); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7570,'HELL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7580,'SELBU',5032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7581,'SELBU',5032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7583,'SELBU',5032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7584,'SELBUSTRAND',5032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7590,'TYDAL',5033); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7591,'TYDAL',5033); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7596,'FLAKNAN',5032); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7600,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7601,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7602,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7603,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7604,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7605,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7606,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7607,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7608,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7609,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7610,'LEVANGER',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7619,'SKOGN',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7620,'SKOGN',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7622,'MARKABYGDA',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7623,'RONGLAN',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7624,'EKNE',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7629,'YTTERØY',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7630,'ÅSEN',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7631,'ÅSEN',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7632,'ÅSENFJORD',5037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7633,'FROSTA',5036); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7634,'FROSTA',5036); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7650,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7651,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7652,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7653,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7654,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7655,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7656,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7657,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7658,'VERDAL',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7660,'VUKU',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7670,'INDERØY',5053); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7671,'INDERØY',5053); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7690,'MOSVIK',5053); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7701,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7702,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7703,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7704,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7705,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7707,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7708,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7709,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7710,'SPARBU',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7711,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7712,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7713,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7714,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7715,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7716,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7717,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7718,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7724,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7725,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7726,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7729,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7730,'BEITSTAD',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7732,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7734,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7735,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7736,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7737,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7738,'STEINKJER',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7739,'BEITSTAD',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7740,'STEINSDALEN',5020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7742,'YTTERVÅG',5020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7744,'HEPSØY',5020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7745,'OPPLAND',5049); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7746,'HASVÅG',5049); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7748,'SÆTERVIK',5020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7750,'NAMDALSEID',5040); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7751,'NAMDALSEID',5040); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7760,'SNÅSA',5041); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7761,'SNÅSA',5041); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7770,'FLATANGER',5049); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7771,'FLATANGER',5049); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7777,'NORD-STATLAND',5040); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7790,'MALM',5039); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7791,'MALM',5039); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7796,'FOLLAFOSS',5039); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7797,'VERRABOTN',5039); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7800,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7801,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7802,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7803,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7804,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7805,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7808,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7810,'NAMSOS',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7817,'SALSNES',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7818,'LUND',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7819,'FOSSLANDSOSEN',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7820,'SPILLUM',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7822,'BANGSUND',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7856,'JØA',5048); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7860,'SKAGE I NAMDALEN',5047); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7863,'OVERHALLA',5047); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7864,'OVERHALLA',5047); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7869,'SKAGE I NAMDALEN',5047); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7870,'GRONG',5045); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7871,'GRONG',5045); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7873,'HARRAN',5045); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7882,'NORDLI',5042); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7884,'SØRLI',5042); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7890,'NAMSSKOGAN',5044); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7892,'TRONES',5044); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7893,'SKOROVATN',5044); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7896,'BREKKVASSELV',5044); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7898,'LIMINGEN',5043); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7900,'RØRVIK',5050); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7901,'RØRVIK',5050); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7940,'OTTERSØY',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7944,'INDRE NÆRØY',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7950,'ABELVÆR',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7960,'SALSBRUKET',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7970,'KOLVEREID',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7971,'KOLVEREID',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7973,'GJERDINGA',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7976,'KONGSMOEN',5046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7977,'HØYLANDET',5046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7980,'TERRÅK',1811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7981,'HARANGSFJORD',1811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7982,'BINDALSEIDET',1811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7985,'FOLDEREID',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7990,'NAUSTBUKTA',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7993,'GUTVIK',5052); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7994,'LEKA',5052); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8001,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8002,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8003,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8004,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8005,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8006,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8007,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8008,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8009,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8010,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8011,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8012,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8013,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8014,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8015,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8016,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8019,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8020,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8021,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8022,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8023,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8026,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8027,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8028,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8029,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8030,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8031,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8032,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8037,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8038,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8041,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8047,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8048,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8049,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8050,'TVERLANDET',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8056,'SALTSTRAUMEN',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8058,'TVERLANDET',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8063,'VÆRØY',1857); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8064,'RØST',1856); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8070,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8071,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8072,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8073,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8074,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8075,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8076,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8079,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8084,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8086,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8087,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8088,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8089,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8091,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8092,'BODØ',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8093,'KJERRINGØY',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8094,'FLEINVÆR',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8095,'HELLIGVÆR',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8096,'BLIKSVÆR',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8097,'GIVÆR',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8098,'LANDEGODE',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8099,'JAN MAYEN',2211); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8100,'MISVÆR',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8102,'SKJERSTAD',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8103,'BREIVIK I SALTEN',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8108,'MISVÆR',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8110,'MOLDJORD',1839); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8114,'TOLLÅ',1839); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8118,'MOLDJORD',1839); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8120,'NYGÅRDSJØEN',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8128,'YTRE BEIARN',1839); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8130,'SANDHORNØY',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8135,'SØRARNØY',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8136,'NORDARNØY',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8138,'INNDYR',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8140,'INNDYR',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8145,'STORVIK',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8146,'REIPÅ',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8149,'NEVERDAL',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8150,'ØRNES',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8151,'ØRNES',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8157,'MELØY',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8158,'BOLGA',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8159,'STØTT',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8160,'GLOMFJORD',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8161,'GLOMFJORD',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8168,'ENGAVÅGEN',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8170,'ENGAVÅGEN',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8178,'HALSA',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8181,'MYKEN',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8182,'MELFJORDBOTN',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8184,'ÅGSKARDET',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8185,'VÅGAHOLMEN',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8186,'TJONGSFJORDEN',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8187,'JEKTVIK',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8188,'NORDVERNES',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8189,'GJERSVIKGRENDA',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8190,'SØRFJORDEN',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8193,'RØDØY',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8195,'GJERØY',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8196,'SELSØYVIK',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8197,'STORSELSØY',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8198,'NORDNESØY',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8200,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8201,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8202,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8203,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8205,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8206,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8207,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8208,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8209,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8210,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8211,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8214,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8215,'VALNESFJORD',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8218,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8219,'FAUSKE',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8220,'RØSVIK',1845); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8226,'STRAUMEN',1845); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8230,'SULITJELMA',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8231,'SULITJELMA',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8232,'STRAUMEN',1845); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8233,'VALNESFJORD',1841); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8250,'ROGNAN',1840); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8251,'ROGNAN',1840); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8252,'ROGNAN',1840); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8253,'ROGNAN',1840); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8255,'RØKLAND',1840); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8256,'RØKLAND',1840); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8260,'INNHAVET',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8261,'INNHAVET',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8264,'ENGAN',1845); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8266,'MØRSVIKBOTN',1845); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8270,'DRAG',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8271,'DRAG',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8273,'NEVERVIK',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8274,'MUSKEN',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8275,'<NAME>',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8276,'ULVSVÅG',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8281,'LEINESFJORD',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8283,'LEINESFJORD',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8285,'LEINES',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8286,'NORDFOLD',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8288,'BOGØY',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8289,'ENGELØYA',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8290,'SKUTVIK',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8291,'SKUTVIK',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8294,'HAMARØY',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8297,'TRANØY',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8298,'HAMARØY',1849); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8300,'SVOLVÆR',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8301,'SVOLVÆR',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8305,'SVOLVÆR',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8309,'KABELVÅG',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8310,'KABELVÅG',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8311,'HENNINGSVÆR',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8312,'HENNINGSVÆR',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8313,'KLEPPSTAD',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8314,'GIMSØYSAND',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8315,'LAUKVIK',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8316,'LAUPSTAD',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8317,'STRØNSTAD',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8320,'SKROVA',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8322,'BRETTESNES',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8323,'STORFJELL',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8324,'DIGERMULEN',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8325,'TENGELFJORD',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8326,'MYRLAND',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8328,'STOREMOLLA',1865); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8340,'STAMSUND',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8352,'SENNESVIK',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8357,'VALBERG',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8360,'BØSTAD',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8370,'LEKNES',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8372,'GRAVDAL',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8373,'BALLSTAD',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8376,'LEKNES',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8377,'GRAVDAL',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8378,'STAMSUND',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8380,'RAMBERG',1859); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8382,'NAPP',1859); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8384,'SUND I LOFOTEN',1859); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8387,'FREDVANG',1859); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8388,'RAMBERG',1859); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8390,'REINE',1874); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8392,'SØRVÅGEN',1874); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8393,'SØRVÅGEN',1874); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8398,'REINE',1874); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8400,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8401,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8402,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8403,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8404,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8405,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8406,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8407,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8408,'SORTLAND',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8409,'GULLESFJORD',1911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8410,'LØDINGEN',1851); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8411,'LØDINGEN',1851); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8412,'VESTBYGD',1851); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8413,'KVITNES',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8414,'HENNES',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8415,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8416,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8426,'BARKESTAD',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8428,'TUNSTAD',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8430,'MYRE',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8432,'ALSVÅG',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8438,'STØ',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8439,'MYRE',1868); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8445,'MELBU',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8447,'LONKAN',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8450,'STOKMARKNES',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8455,'STOKMARKNES',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8459,'MELBU',1866); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8465,'STRAUMSJØEN',1867); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8469,'BØ I VESTERÅLEN',1867); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8470,'BØ I VESTERÅLEN',1867); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8475,'STRAUMSJØEN',1867); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8480,'ANDENES',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8481,'BLEIK',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8483,'ANDENES',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8484,'RISØYHAMN',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8485,'DVERBERG',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8488,'NØSS',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8489,'NORDMELA',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8493,'RISØYHAMN',1871); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8501,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8502,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8503,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8504,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8505,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8506,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8507,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8508,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8509,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8510,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8512,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8513,'ANKENES',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8514,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8515,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8516,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8517,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8518,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8519,'NARVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8520,'ANKENES',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8521,'ANKENES',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8522,'BEISFJORD',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8523,'ELVEGÅRD',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8530,'BJERKVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8531,'BJERKVIK',1805); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8533,'BOGEN I OFOTEN',1853); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8534,'LILAND',1853); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8535,'TÅRSTAD',1853); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8536,'EVENES',1853); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8539,'BOGEN I OFOTEN',1853); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8540,'BALLANGEN',1854); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8543,'KJELDEBOTN',1854); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8546,'BALLANGEN',1854); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8587,'STORÅ',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8590,'KJØPSVIK',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8591,'KJØPSVIK',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8601,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8602,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8603,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8604,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8607,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8608,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8610,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8613,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8614,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8615,'SKONSENG',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8616,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8617,'DALSGRENDA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8618,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8622,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8624,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8626,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8630,'STORFORSHEI',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8634,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8638,'STORFORSHEI',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8640,'HEMNESBERGET',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8641,'HEMNESBERGET',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8642,'FINNEIDFJORD',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8643,'BJERKA',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8646,'KORGEN',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8647,'BLEIKVASSLIA',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8648,'KORGEN',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8651,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8652,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8654,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8655,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8656,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8657,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8658,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8659,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8660,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8661,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8663,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8664,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8665,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8666,'MOSJØEN',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8672,'ELSFJORD',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8680,'TROFORS',1825); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8681,'TROFORS',1825); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8682,'TROFORS',1825); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8683,'TROFORS',1825); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8684,'TROFORS',1825); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8685,'TROFORS',1825); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8690,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8691,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8692,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8693,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8694,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8695,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8696,'HATTFJELLDAL',1826); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8700,'NESNA',1828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8701,'NESNA',1828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8720,'VIKHOLMEN',1828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8723,'HUSBY',1828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8724,'SAURA',1828); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8725,'UTSKARPEN',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8730,'BRATLAND',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8732,'ALDRA',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8733,'STUVLAND',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8735,'STOKKVÅGEN',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8740,'NORD-SOLVÆR',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8742,'SELVÆR',1835); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8743,'<NAME>Y',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8750,'TONNES',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8752,'KONSVIKOSEN',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8753,'KONSVIKOSEN',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8754,'ØRESVIK',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8761,'SLENESET',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8762,'SLENESET',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8764,'LOVUND',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8766,'LURØY',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8767,'LURØY',1834); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8770,'TRÆNA',1835); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8800,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8801,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8802,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8803,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8804,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8805,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8813,'KOPARDAL',1827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8820,'DØNNA',1827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8827,'DØNNA',1827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8830,'VANDVE',1827); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8842,'BRASØY',1818); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8844,'SANDVÆR',1818); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8850,'HERØY',1818); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8851,'HERØY',1818); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8852,'HERØY',1818); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8854,'AUSTBØ',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8860,'TJØTTA',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8861,'TJØTTA',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8865,'TRO',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8870,'VISTHUS',1816); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8880,'BÆRØYVÅGEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8883,'HUSVIKA',1824); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8890,'LEIRFJORD',1822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8891,'LEIRFJORD',1822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8892,'SUNDØY',1822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8897,'BARDAL',1822); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8900,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8901,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8902,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8904,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8905,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8906,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8907,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8908,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8909,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8910,'BRØNNØYSUND',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8920,'SØMNA',1812); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8921,'SØMNA',1812); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8922,'SØMNA',1812); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8960,'VELFJORD',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8961,'VELFJORD',1813); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8976,'VEVELSTAD',1816); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8980,'VEGA',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8981,'VEGA',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8982,'VEGA',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8983,'VEGA',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8984,'VEGA',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8986,'VEGA',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8985,'YLVINGEN',1815); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9006,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9007,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9008,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9009,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9010,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9011,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9012,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9013,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9014,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9015,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9016,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9017,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9018,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9019,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9020,'TROMSDALEN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9021,'TROMSDALEN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9022,'KROKELVDALEN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9023,'KROKELVDALEN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9024,'TOMASJORD',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9027,'RAMFJORDBOTN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9029,'TROMSDALEN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9030,'SJURSNES',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9034,'OLDERVIK',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9037,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9038,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9040,'NORDKJOSBOTN',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9042,'LAKSVATN',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9043,'JØVIK',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9046,'OTEREN',1939); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9049,'NORDKJOSBOTN',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9050,'STORSTEINNES',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9055,'MEISTERVIK',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9056,'MORTENHALS',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9057,'VIKRAN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9059,'STORSTEINNES',1933); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9060,'LYNGSEIDET',1938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9062,'FURUFLATEN',1938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9064,'SVENSBY',1938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9068,'NORD-LENANGEN',1938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9069,'LYNGSEIDET',1938); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9100,'KVALØYSLETTA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9101,'KVALØYSLETTA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9102,'KVALØYSLETTA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9103,'KVALØYA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9104,'KVALØYA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9105,'KVALØYA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9106,'STRAUMSBUKTA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9107,'KVALØYA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9108,'KVALØYA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9109,'KVALØYA',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9110,'SOMMARØY',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9118,'BRENSHOLMEN',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9119,'SOMMARØY',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9120,'VENGSØY',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9128,'TUSSØY',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9130,'HANSNES',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9131,'KÅRVIK',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9132,'STAKKVIK',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9134,'HANSNES',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9135,'VANNVÅG',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9136,'VANNAREID',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9137,'VANNVÅG',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9138,'KARLSØY',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9140,'REBBENES',1936); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9141,'MJØLVIK',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9142,'SKIBOTN',1939); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9143,'SKIBOTN',1939); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9144,'SAMUELSBERG',1940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9146,'OLDERDALEN',1940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9147,'BIRTAVARRE',1940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9148,'OLDERDALEN',1940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9151,'STORSLETT',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9152,'SØRKJOSEN',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9153,'ROTSUND',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9154,'STORSLETT',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9156,'STORSLETT',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9157,'STORSLETT',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9158,'STORSLETT',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9159,'HAVNNES',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9161,'BURFJORD',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9162,'SØRSTRAUMEN',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9163,'JØKELFJORD',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9169,'BURFJORD',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9170,'LONGYEARBYEN',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9171,'LONGYEARBYEN',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9173,'NY-ÅLESUND',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9174,'HOPEN',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9175,'SVEAGRUVA',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9176,'BJØRNØYA',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9178,'BARENTSBURG',2100); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9180,'SKJERVØY',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9181,'HAMNEIDET',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9182,'SEGLVIK',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9184,'REINFJORD',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9185,'SPILDRA',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9186,'ANDSNES',1943); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9187,'VALANHAMN',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9189,'SKJERVØY',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9190,'AKKARVIK',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9192,'ARNØYHAMN',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9193,'NIKKEBY',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9194,'LAUKSLETTA',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9195,'ÅRVIKSAND',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9197,'ULØYBUKT',1941); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9251,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9252,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9253,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9254,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9255,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9256,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9257,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9258,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9259,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9260,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9261,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9262,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9263,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9265,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9266,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9267,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9268,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9269,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9270,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9271,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9272,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9273,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9274,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9275,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9276,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9277,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9278,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9279,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9280,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9281,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9282,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9283,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9284,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9285,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9286,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9287,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9288,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9290,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9291,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9292,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9293,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9294,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9296,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9298,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9299,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9300,'FINNSNES',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9302,'ROSSFJORDSTRAUMEN',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9303,'SILSAND',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9304,'VANGSVIK',1927); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9305,'FINNSNES',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9306,'FINNSNES',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9307,'FINNSNES',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9308,'FINNSNES',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9309,'FINNSNES',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9310,'SØRREISA',1925); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9311,'BRØSTADBOTN',1926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9315,'SØRREISA',1925); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9316,'BRØSTADBOTN',1926); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9321,'MOEN',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9322,'KARLSTAD',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9325,'BARDUFOSS',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9326,'BARDUFOSS',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9329,'MOEN',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9334,'ØVERBYGD',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9335,'ØVERBYGD',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9336,'RUNDHAUG',1924); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9350,'SJØVEGAN',1923); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9355,'SJØVEGAN',1923); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9357,'TENNEVOLL',1920); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9358,'TENNEVOLL',1920); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9360,'BARDU',1922); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9365,'BARDU',1922); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9370,'SILSAND',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9372,'GIBOSTAD',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9373,'BOTNHAMN',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9376,'SKATVIK',1927); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9379,'GRYLLEFJORD',1928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9380,'GRYLLEFJORD',1928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9381,'TORSKEN',1928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9382,'GIBOSTAD',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9384,'SKALAND',1929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9385,'SKALAND',1929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9386,'SENJAHOPEN',1929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9387,'SENJAHOPEN',1929); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9388,'FJORDGARD',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9389,'HUSØY I SENJA',1931); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9391,'STONGLANDSEIDET',1927); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9392,'STONGLANDSEIDET',1927); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9393,'FLAKSTADVÅG',1928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9395,'KALDFARNES',1928); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9402,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9403,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9404,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9405,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9406,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9407,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9408,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9409,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9411,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9414,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9415,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9419,'SØRVIK',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9420,'LUNDENES',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9423,'GRØTAVÆR',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9424,'KJØTTA',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9425,'SANDSØY',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9426,'BJARKØY',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9427,'MELØYVÆR',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9430,'SANDTORG',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9436,'KONGSVIK',1852); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9439,'EVENSKJER',1913); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9440,'EVENSKJER',1913); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9441,'FJELLDAL',1852); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9442,'RAMSUND',1852); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9443,'MYKLEBOSTAD',1852); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9444,'<NAME>',1852); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9445,'TOVIK',1913); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9446,'GROVFJORD',1913); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9447,'GROVFJORD',1913); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9448,'RAMSUND',1852); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9450,'HAMNVIK',1917); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9451,'HAMNVIK',1917); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9453,'KRÅKRØHAMN',1917); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9454,'ÅNSTAD',1917); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9455,'ENGENES',1917); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9470,'GRATANGEN',1919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9471,'GRATANGEN',1919); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9475,'BORKENES',1911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9476,'BORKENES',1911); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9479,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9480,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9481,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9482,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9483,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9484,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9485,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9486,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9487,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9488,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9489,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9496,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9497,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9498,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9501,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9502,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9503,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9504,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9505,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9506,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9507,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9508,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9509,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9510,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9511,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9512,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9513,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9514,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9515,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9516,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9517,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9518,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9519,'KVIBY',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9520,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9521,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9522,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9523,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9524,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9525,'MAZE',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9527,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9528,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9529,'KAUTOKEINO',2011); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9531,'KVALFJORD',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9532,'HAKKSTABBEN',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9533,'KONGSHUS',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9536,'KORSFJORDEN',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9538,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9540,'TALVIK',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9541,'ALTA',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9545,'LANGFJORDBOTN',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9550,'ØKSFJORD',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9551,'ØKSFJORD',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9580,'BERGSFJORD',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9582,'NUVSVÅG',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9583,'LANGFJORDHAMN',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9584,'SØR-TVERRFJORD',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9585,'SANDLAND',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9586,'LOPPA',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9587,'SKAVNAKK',2014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9590,'HASVIK',2015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9593,'BREIVIKBOTN',2015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9595,'SØRVÆR',2015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9600,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9601,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9602,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9603,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9609,'NORDRE SEILAND',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9610,'RYPEFJORD',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9612,'FORSØL',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9613,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9615,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9616,'HAMMERFEST',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9620,'KVALSUND',2017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9621,'KVALSUND',2017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9624,'REVSNESHAMN',2017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9650,'AKKARFJORD',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9651,'LANGSTRAND',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9657,'KÅRHAMN',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9664,'SANDØYBOTN',2004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9670,'TUFJORD',2018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9672,'INGØY',2018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9690,'HAVØYSUND',2018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9691,'HAVØYSUND',2018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9692,'MÅSØY',2018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9700,'LAKSELV',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9709,'PORSANGMOEN',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9710,'<NAME>',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9711,'LAKSELV',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9712,'LAKSELV',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9713,'RUSSENES',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9714,'SNEFJORD',2018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9715,'KOKELV',2017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9716,'BØRSELV',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9717,'VEIDNESKLUBBEN',2022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9722,'SKOGANVARRE',2020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9730,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9731,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9732,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9733,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9734,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9735,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9736,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9737,'KARASJOK',2021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9740,'LEBESBY',2022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9742,'KUNES',2022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9750,'HONNINGSVÅG',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9751,'HONNINGSVÅG',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9760,'NORDVÅGEN',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9763,'SKARSVÅG',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9764,'NORDKAPP',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9765,'GJESVÆR',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9768,'REPVÅG',2019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9770,'MEHAMN',2023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9771,'SKJÅNES',2023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9772,'LANGFJORDNES',2023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9773,'NERVEI',2023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9775,'GAMVIK',2023); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9782,'DYFJORD',2022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9790,'KJØLLEFJORD',2022); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9800,'VADSØ',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9801,'VADSØ',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9803,'VADSØ',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9804,'VADSØ',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9802,'VESTRE JAKOBSELV',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9810,'VESTRE JAKOBSELV',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9811,'VADSØ',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9815,'VADSØ',2003); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9820,'VARANGERBOTN',2027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9826,'SIRMA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9840,'VARANGERBOTN',2027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9841,'TANA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9842,'TANA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9843,'TANA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9844,'TANA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9845,'TANA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9846,'TANA',2025); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9900,'KIRKENES',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9901,'KIRKENES',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9910,'BJØRNEVATN',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9911,'JARFJORD',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9912,'HESSENG',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9914,'BJØRNEVATN',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9915,'KIRKENES',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9916,'HESSENG',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9917,'KIRKENES',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9925,'SVANVIK',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9930,'NEIDEN',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9935,'BUGØYNES',2030); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9950,'VARDØ',2002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9951,'VARDØ',2002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9960,'KIBERG',2002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9980,'BERLEVÅG',2024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9981,'BERLEVÅG',2024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9982,'KONGSFJORD',2024); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9990,'BÅTSFJORD',2028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9991,'BÅTSFJORD',2028); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6773,'NORDFJORDEID',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6774,'NORDFJORDEID',1443); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (81,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (132,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (136,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (140,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (217,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (507,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (615,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (914,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1102,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1108,'OSLO',301); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4063,'TJELTA',1124); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4181,'KVITSØY',1144); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4334,'ÅLGÅRD',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4361,'SIREVÅG',1119); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4384,'VIKESÅ',1114); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4385,'HELLELAND',1101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4390,'OLTEDAL',1122); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4399,'SANDNES',1102); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5562,'NEDSTRAND',1146); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5569,'BOKN',1145); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6034,'EIDSNES',1531); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6044,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6048,'ÅLESUND',1504); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6054,'GODØYA',1532); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6075,'MOLTUSTRANDA',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6078,'GJERDSVIKA',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6079,'GURSKØY',1515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6086,'KVAMSØY',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6088,'SANDSHAMN',1514); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6134,'LAUVSTAD',1519); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6138,'SYVDE',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6147,'ÅHEIM',1511); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6171,'VARTDAL',1520); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6217,'GEIRANGER',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6219,'HELLESYLT',1525); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6223,'IKORNNES',1528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6255,'EIDSDAL',1524); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6291,'HARAMSØY',1534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6331,'VERMA',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6361,'ÅFARNES',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6365,'VISTDAL',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6385,'MÅNDALEN',1539); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6389,'FIKSDAL',1535); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6446,'FARSTAD',1548); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6452,'KLEIVE',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6458,'SKÅLA',1502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6471,'ERESFJORD',1543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6485,'HARØY',1546); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6527,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6528,'FREI',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6546,'KRISTIANSUND N',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6547,'KRISTIANSUND N',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6548,'KRISTIANSUND N',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6549,'KRISTIANSUND N',1505); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6591,'TUSTNA',1576); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6614,'GJØRA',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6623,'ÅLVUNDFJORD',1563); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6627,'TINGVOLL',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6632,'BATNFJORDSØRA',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6641,'TORVIKBUKT',1557); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6671,'ØYDEGARD',1560); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7979,'TERRÅK',1811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7983,'BINDALSEIDET',1811); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8057,'SALTSTRAUMEN',1804); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8062,'VÆRØY',1857); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8065,'RØST',1856); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8134,'SØRARNØY',1838); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8179,'HALSA',1837); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8183,'VÅGAHOLMEN',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8192,'JEKTVIK',1836); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8278,'STORÅ',1850); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8287,'ENGELØYA',1848); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8361,'BØSTAD',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8374,'BALLSTAD',1860); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8419,'SORTLAND',1870); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8609,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8619,'MO I RANA',1833); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8644,'BJERKA',1832); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8809,'SANDNESSJØEN',1820); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (8977,'VEVELSTAD',1816); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1594,'VÅLER I ØSTFOLD',137); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1759,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1762,'HALDEN',101); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (1828,'HOBØL',138); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2028,'LILLESTRØM',231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2029,'RÆLINGEN',228); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2094,'MINNESUND',237); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2121,'SAGSTUA',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2132,'GARDVIK',418); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2163,'SKOGBYGDA',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2167,'HVAM',236); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2207,'KONGSVINGER',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2215,'ROVERUD',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2227,'AUSTMARKA',402); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2231,'SKOTTERUD',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2241,'MAGNOR',420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2251,'<NAME>',423); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2311,'HAMAR',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2313,'OTTESTAD',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2314,'OTTESTAD',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2327,'FURNES',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2328,'RIDABU',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2329,'<NAME>',403); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2331,'VALLSET',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2333,'ROMEDAL',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2339,'TANGEN',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2346,'ILSENG',417); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2351,'<NAME>',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2361,'RUDSHØGDA',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2373,'BRØTTUM',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2389,'BRUMUNDDAL',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2404,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2417,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2419,'ELVERUM',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2424,'ØSTBY',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2426,'LJØRDALEN',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2434,'BRASKEREIDFOSS',426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2441,'ENGERDAL',434); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2442,'HERADSBYGD',427); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2444,'DREVSJØ',434); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2447,'SØRE OSEN',428); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2461,'OSEN',429); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2513,'KVIKNE',437); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2541,'TOLGA',436); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2551,'OS I ØSTERDALEN',441); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2620,'MESNALI',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2621,'VINGROM',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2622,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2623,'LILLEHAMMER',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2627,'FÅBERG',501); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2628,'SJUSJØEN',412); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2638,'TRETTEN',521); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2641,'KVAM',516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2644,'SKÅBU',516); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2654,'VESTRE GAUSDAL',522); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2671,'LESJA',512); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2678,'SEL',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2679,'HEIDAL',517); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2681,'LALM',515); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2812,'GJØVIK',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2841,'SNERTINGDAL',502); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2844,'KOLBU',528); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2845,'BØVERBRU',529); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2863,'VESTSIDA',536); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2909,'AURDAL',542); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2965,'SLIDRE',543); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (2972,'RYFOSS',545); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3009,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3010,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3063,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3064,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3065,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3066,'DRAMMEN',602); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3091,'HOF',715); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3129,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3134,'TØNSBERG',704); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3156,'MELSOMVIK',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3197,'NYKIRKE',701); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3247,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3248,'SANDEFJORD',710); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3357,'EGGEDAL',621); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3479,'NÆRSNES',627); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3485,'FILTVET',628); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3527,'BJONEROA',534); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3532,'TYRISTRAND',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3542,'SOKNA',605); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3543,'NORESUND',622); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3545,'FLÅ',615); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3546,'KROKKLEIVA',612); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3607,'KONGSBERG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3625,'SKOLLENBORG',604); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3634,'NORE',633); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3799,'SKIEN',806); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (3852,'VRÅDAL',829); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4439,'SIRA',1004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4486,'FEDA',1037); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4507,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4508,'MANDAL',1002); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4526,'KONSMO',1027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4535,'MARNARDAL',1021); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4541,'ÅSERAL',1026); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4597,'EIKEN',1034); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4649,'FINSLAND',1017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4746,'VALLE',940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4749,'RYSSTAD',940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4822,'RYKENE',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (4921,'STAUBØ',906); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5213,'LEPSØY',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5214,'LYSEKLOSTER',1243); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5311,'KJERRGARDEN',1247); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5556,'FØRDE I HORDALAND',1216); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5631,'STRANDEBARM',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5633,'OMASTRAND',1238); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5644,'SÆVAREID',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5648,'FUSA',1241); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5651,'TYSSE',1242); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5720,'STANGHELLE',1251); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5732,'MODALEN',1252); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5775,'NÅ',1231); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5802,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5820,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5823,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5826,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5827,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5830,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5832,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5833,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5834,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5837,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5843,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5844,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5855,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5865,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5866,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5867,'BERGEN',1201); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5935,'BØVÅGEN',1260); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5963,'DALSØYRA',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5964,'BREKKE',1411); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5965,'BJORDAL',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5982,'MASFJORDNES',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (5985,'HAUGSVÆR',1266); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6790,'LOEN',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6794,'INNVIK',1449); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6820,'FØRDE',1432); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6830,'BYRKJELO',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6831,'HYEN',1445); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6844,'VASSENDEN',1431); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6845,'FJÆRLAND',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6849,'KAUPANGER',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6857,'SOGNDAL',1420); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6867,'HAFSLO',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6874,'LUSTER',1426); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6910,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6913,'FLORØ',1401); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6959,'SØRBØVÅG',1413); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6976,'BYGSTAD',1430); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6994,'NESSANE',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (6997,'VADHEIM',1416); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7111,'HASSELVIKA',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7115,'HUSBYSJØEN',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7116,'RÅKVÅG',5054); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7151,'STORFOSNA',5015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7164,'LYSØYSUNDET',5017); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7174,'REVSNES',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7175,'STOKKØY',5018); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7181,'ROAN',5019); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7244,'KNARRLAGSUND',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7245,'KVENVÆR',5013); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7267,'KVERVA',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7274,'NORDDYRØY',5014); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7356,'SKAUN',5029); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7388,'SINGSÅS',5027); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7463,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7464,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7498,'TRONDHEIM',5001); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7511,'SKATVAL',5035); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7661,'VUKU',5038); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7672,'INDERØY',5053); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7691,'MOSVIK',5053); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7733,'SPARBU',5004); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7741,'STEINSDALEN',5020); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7795,'FOLLAFOSS',5039); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7821,'SPILLUM',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7823,'BANGSUND',5005); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7874,'HARRAN',5045); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7876,'KONGSMOEN',5046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7877,'HØYLANDET',5046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7878,'HØYLANDET',5046); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7881,'NORDLI',5042); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7885,'SØRLI',5042); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7891,'NAMSSKOGAN',5044); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7897,'LIMINGEN',5043); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7902,'RØRVIK',5050); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7941,'OTTERSØY',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7986,'FOLDEREID',5051); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (7995,'LEKA',5052); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9145,'SAMUELSBERG',1940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9149,'BIRTAVARRE',1940); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9155,'SØRKJOSEN',1942); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9240,'TROMSØ',1902); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9416,'HARSTAD',1903); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9456,'ENGENES',1917); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9537,'TVERRELVDALEN',2012); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9591,'HASVIK',2015); INSERT INTO postnummer(Postnummer,Poststed,KommuneKode) VALUES (9611,'RYPEFJORD',2004); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `postnummerIKommunerMedFleireLag` ( `id` int(2) PRIMARY KEY AUTO_INCREMENT, `postnummerFra` integer NOT NULL, `postnummerTil` integer NOT NULL, `lokallag` int(3) NOT NULL, `fylke` int(3) NOT NULL, FOREIGN KEY(`lokallag`) REFERENCES `lokallag` (`id`), INDEX (`lokallag`), FOREIGN KEY(`fylke`) REFERENCES `fylker` (`id`), INDEX (`fylke`) ); INSERT INTO `postnummerIKommunerMedFleireLag` (postnummerFra, postnummerTil, lokallag, fylke) VALUES (1200, 1299, (select id from lokallag where navn = 'Rødt Oslo Søndre Nordstrand'), 3), (1187, 1189, (select id from lokallag where navn = 'Rødt Oslo Østensjø'), 3), (1150 ,1185 , (select id from lokallag where navn = 'Rødt Oslo Nordstrand'), 3), (0970 ,0976 , (select id from lokallag where navn = 'Rødt Oslo Grorud'), 3), (0951 ,0964 , (select id from lokallag where navn = 'Rødt Oslo Grorud'), 3), (0950 ,0950 , (select id from lokallag where navn = 'Rødt Oslo Bjerke'), 3), (0851 ,0884 , (select id from lokallag where navn = 'Rødt Oslo Nordre Aker'), 3), (0850 ,0850 , (select id from lokallag where navn = 'Rødt Oslo St. Hanshaugen'), 3), (0750 ,0791 , (select id from lokallag where navn = 'R<NAME>'), 3), (0678 ,0694 , (select id from lokallag where navn = '<NAME>'), 3), (0677 ,0677 , (select id from lokallag where navn = '<NAME>'), 3), (0672 ,0676 , (select id from lokallag where navn = 'R<NAME>'), 3), (0671 ,0671 , (select id from lokallag where navn = 'R<NAME>'), 3), (0668 ,0670 , (select id from lokallag where navn = '<NAME>'), 3), (0667 ,0667 , (select id from lokallag where navn = '<NAME>'), 3), (0664 ,0666 , (select id from lokallag where navn = 'R<NAME>'), 3), (0650 ,0663 , (select id from lokallag where navn = 'Rødt Oslo G<NAME>'), 3), (0589 ,0598 , (select id from lokallag where navn = '<NAME>'), 3), (0587 ,0588 , (select id from lokallag where navn = '<NAME>'), 3), (0586 ,0586 , (select id from lokallag where navn = '<NAME>'), 3), (0585 ,0585 , (select id from lokallag where navn = '<NAME>'), 3), (0580 ,0584 , (select id from lokallag where navn = 'Rødt Oslo Bjerke'), 3), (0579 ,0579 , (select id from lokallag where navn = 'Rødt Oslo Grünerløkka'), 3), (0577 ,0578 , (select id from lokallag where navn = 'Rødt Oslo Gamle Oslo'), 3), (0562 ,0576 , (select id from lokallag where navn = 'Rødt Oslo Grünerløkka'), 3), (0561 ,0561 , (select id from lokallag where navn = 'Rødt Oslo Gamle Oslo'), 3), (0556 ,0560 , (select id from lokallag where navn = 'Rødt Oslo Grünerløkka'), 3), (0555 ,0555 , (select id from lokallag where navn = 'Rødt Oslo Sagene'), 3), (0550 ,0554 , (select id from lokallag where navn = 'Rødt Oslo Grünerløkka'), 3), (0486 ,0495 , (select id from lokallag where navn = 'Rødt Oslo Nordre Aker'), 3), (0485 ,0845 , (select id from lokallag where navn = 'Rødt Oslo Sagene'), 3), (0484 ,0848 , (select id from lokallag where navn = 'Rødt Oslo Nordre Aker'), 3), (0457 ,0483 , (select id from lokallag where navn = 'Rødt Oslo Sagene'), 3), (0450 ,0456 , (select id from lokallag where navn = 'Rødt Oslo St. Hanshaugen'), 3), (0445 ,0445 , (select id from lokallag where navn = 'Rødt Oslo Sagene'), 3), (0373 ,0383 , (select id from lokallag where navn = 'Rødt Oslo Vest'), 3), (0372 ,0372 , (select id from lokallag where navn = 'Rødt Oslo N<NAME>'), 3), (0362 ,0371 , (select id from lokallag where navn = 'Rødt Oslo Vest'), 3), (0358 ,0361 , (select id from lokallag where navn = 'Rødt Oslo St. Hanshaugen'), 3), (0350 ,0357 , (select id from lokallag where navn = 'Rødt Oslo Vest'), 3), (0349 ,0349 , (select id from lokallag where navn = 'Rødt Oslo N<NAME>'), 3), (0340 ,0340 , (select id from lokallag where navn = 'Rødt Oslo St. Hanshaugen'), 3), (0252 ,0287 , (select id from lokallag where navn = 'Rødt Oslo Vest'), 3), (0251 ,0251 , (select id from lokallag where navn = 'Rødt Oslo St. Hanshaugen'), 3), (0250 ,0250 , (select id from lokallag where navn = 'Rødt Oslo Vest'), 3), (0198 ,0198 , (select id from lokallag where navn = 'Rødt Oslo Nordstrand'), 3), (0194 ,0196 , (select id from lokallag where navn = 'Rødt Oslo Gamle Oslo'), 3), (0193 ,0193 , (select id from lokallag where navn = 'Rødt Oslo Nordstrand'), 3), (0187 ,0192 , (select id from lokallag where navn = 'Rødt Oslo Gamle Oslo'), 3), (0175 ,0175 , (select id from lokallag where navn = 'Rødt Oslo Grünerløkka'), 3), (0186 ,0186 , (select id from lokallag where navn = '<NAME>'), 3), (0183 ,0185 , (select id from lokallag where navn = '<NAME>'), 3), (0182 ,0182 , (select id from lokallag where navn = 'Rødt Oslo Grünerløkka'), 3), (0151 ,0166 , (select id from lokallag where navn = '<NAME>'), 3), (0176 ,0181 , (select id from lokallag where navn = '<NAME>'), 3), (0168 ,0174 , (select id from lokallag where navn = '<NAME> St. Hanshaugen'), 3), (0167 ,0167 , (select id from lokallag where navn = '<NAME>'), 3), (0150 ,0150 , (select id from lokallag where navn = 'Rødt Oslo G<NAME>'), 3), (0915 ,0915 , (select id from lokallag where navn = '<NAME>'), 3), (0968 ,0969 , (select id from lokallag where navn = '<NAME>'), 3), (0977 ,0988 , (select id from lokallag where navn = '<NAME>'), 3), (1000 ,1004 , (select id from lokallag where navn = '<NAME>'), 3), (1005 ,1005 , (select id from lokallag where navn = '<NAME>'), 3), (1006 ,1054 , (select id from lokallag where navn = '<NAME>'), 3), (1055 ,1055 , (select id from lokallag where navn = '<NAME>'), 3), (1056 ,1083 , (select id from lokallag where navn = '<NAME>'), 3), (1084 ,1089 , (select id from lokallag where navn = '<NAME>'), 3), (5004 ,5004 , (select id from lokallag where navn = '<NAME>'), 12), (5011 ,5022 , (select id from lokallag where navn = '<NAME>'), 12), (5033 ,5033 , (select id from lokallag where navn = '<NAME>'), 12), (5036 ,5043 , (select id from lokallag where navn = '<NAME>'), 12), (5052 ,5053 , (select id from lokallag where navn = '<NAME>'), 12), (5059 ,5059 , (select id from lokallag where navn = '<NAME>'), 12), (5063 ,5067 , (select id from lokallag where navn = '<NAME>'), 12), (5073 ,5075 , (select id from lokallag where navn = '<NAME>'), 12), (5081 ,5089 , (select id from lokallag where navn = '<NAME>'), 12), (5094 ,5096 , (select id from lokallag where navn = '<NAME>'), 12), (5141 ,5144 , (select id from lokallag where navn = '<NAME>'), 12), (5145 ,5145 , (select id from lokallag where navn = '<NAME>'), 12), (5146 ,5161 , (select id from lokallag where navn = '<NAME>'), 12), (5163 ,5173 , (select id from lokallag where navn = '<NAME>'), 12), (5176 ,5184 , (select id from lokallag where navn = '<NAME>'), 12), (5221 ,5235 , (select id from lokallag where navn = '<NAME>'), 12), (5238 ,5253 , (select id from lokallag where navn = '<NAME>'), 12), (5260 ,5269 , (select id from lokallag where navn = '<NAME>'), 12), (5009 ,5009 , (select id from lokallag where navn = '<NAME>'), 12), (5055 ,5055 , (select id from lokallag where navn = '<NAME>'), 12), (5072 ,5072 , (select id from lokallag where navn = '<NAME>'), 12), (5093 ,5093 , (select id from lokallag where navn = '<NAME>'), 12), (5097 ,5097 , (select id from lokallag where navn = '<NAME>'), 12), (5236 ,5236 , (select id from lokallag where navn = '<NAME>'), 12), (5222 ,5224 , (select id from lokallag where navn = '<NAME>'), 12), (5081 ,5081 , (select id from lokallag where navn = '<NAME>'), 12), (5232 ,5232 , (select id from lokallag where navn = '<NAME>'), 12), (5073 ,5073 , (select id from lokallag where navn = '<NAME>'), 12), (5097 ,5097 , (select id from lokallag where navn = '<NAME>'), 12), (5160 ,5165 , (select id from lokallag where navn = '<NAME>'), 12), (5032 ,5032 , (select id from lokallag where navn = '<NAME>'), 12), (5034 ,5035 , (select id from lokallag where navn = '<NAME>'), 12), (5010 ,5010 , (select id from lokallag where navn = '<NAME>'), 12), (5056 ,5056 , (select id from lokallag where navn = '<NAME>'), 12), (5037 ,5037 , (select id from lokallag where navn = '<NAME>'), 12), (5057 ,5057 , (select id from lokallag where navn = '<NAME>'), 12), (5258 ,5258 , (select id from lokallag where navn = '<NAME>'), 12), (5006 ,5008 , (select id from lokallag where navn = '<NAME>'), 12), (5010 ,5010 , (select id from lokallag where navn = '<NAME>'), 12), (5005 ,5005 , (select id from lokallag where navn = '<NAME>'), 12), (5237 ,5237 , (select id from lokallag where navn = '<NAME>'), 12), (5058 ,5058 , (select id from lokallag where navn = '<NAME>'), 12), (5100 ,5136 , (select id from lokallag where navn = '<NAME>'), 12), (5099 ,5099 , (select id from lokallag where navn = '<NAME>'), 12), (7069,7069,(select id from lokallag where navn ='<NAME>'), 50), (7046,7059,(select id from lokallag where navn ='Trondheim Strinda'), 50), (7070,7093,(select id from lokallag where navn ='<NAME> Sentrum'), 50), (7097,7099,(select id from lokallag where navn ='<NAME> Sentrum'), 50), (7400,7499,(select id from lokallag where navn ='Rødt Trondheim Sentrum'), 50), (7014,7014,(select id from lokallag where navn ='Rødt Trondheim Østbyen'), 50), (7000,7013,(select id from lokallag where navn ='Rødt Trondheim Sentrum'), 50), (7040,7045,(select id from lokallag where navn ='Rødt Trondheim Østbyen'), 50), (7066,7068,(select id from lokallag where navn ='Rødt Trondheim Østbyen'), 50), (7019,7019,(select id from lokallag where navn ='Rødt Trondheim Sentrum'), 50), (7015,7016,(select id from lokallag where navn ='Rødt Trondheim Sentrum'), 50), (7017,7018,(select id from lokallag where navn ='Rødt Trondheim Ila'), 50), (7020,7020,(select id from lokallag where navn ='Rødt Trondheim Ila'), 50), (7021,7039,(select id from lokallag where navn ='Rødt Trondheim Sentrum'), 50); INSERT INTO `postnummerIKommunerMedFleireLag` (postnummerFra, postnummerTil, lokallag, fylke) VALUES (5003,5003,(select id from lokallag where navn ='<NAME>'), 12), (5031,5031,(select id from lokallag where navn ='<NAME>'), 12), (5054,5054,(select id from lokallag where navn ='<NAME>'), 12), (5068,5068,(select id from lokallag where navn ='<NAME>'), 12), (5098,5098,(select id from lokallag where navn ='Rø<NAME>'), 12), (5137,5137,(select id from lokallag where navn ='<NAME>'), 12), (5174,5174,(select id from lokallag where navn ='<NAME>'), 12), (5254,5254,(select id from lokallag where navn ='<NAME>'), 12), (5257,5257,(select id from lokallag where navn ='<NAME>'), 12), (5259,5259,(select id from lokallag where navn ='<NAME>'), 12); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `brukergruppe` ( `id` int(2) NOT NULL PRIMARY KEY, `navn` varchar(60) NOT NULL ); INSERT INTO brukergruppe VALUES (0, 'mangler info/samtykke før ringing'); INSERT INTO brukergruppe VALUES (1, 'klar til å ringes'); INSERT INTO brukergruppe VALUES (2, 'ferdigringt'); INSERT INTO brukergruppe VALUES (3, 'slett'); INSERT INTO brukergruppe VALUES (4, 'ugodkjent ringer'); INSERT INTO brukergruppe VALUES (5, 'ringer som aktivt ikke er godkjent'); INSERT INTO brukergruppe VALUES (6, 'godkjent ringer for velgere'); INSERT INTO brukergruppe VALUES (7, 'trenger oppfølging'); INSERT INTO brukergruppe VALUES (8, 'ringer som kan godkjenne ringere i sitt fylke'); INSERT INTO brukergruppe VALUES (9, 'admin'); INSERT INTO brukergruppe VALUES (10, 'prioritert å ringe'); INSERT INTO brukergruppe VALUES (11, 'godkjent ringer for velgere og medlemmer'); INSERT INTO brukergruppe VALUES (12, 'har meldt seg som valgkampfrivillig'); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `person` ( `id` int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, `hypersysID` int(6) DEFAULT NULL, `fornavn` varchar(60) NOT NULL, `etternavn` varchar(60) NOT NULL, `telefonnummer` varchar(15) DEFAULT NULL UNIQUE, `postnummer` integer DEFAULT -1 NOT NULL, `email` varchar(100) DEFAULT NULL, `fylke` int(2) DEFAULT -1 NOT NULL, `groupID` int(2) DEFAULT 0 NOT NULL, `oppretta` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `lokallag` int(3) DEFAULT -1 NOT NULL, `kilde` varchar(20) DEFAULT 'Ukjent' NOT NULL, `IperID` int(10) DEFAULT NULL, FOREIGN KEY (`groupID`) REFERENCES `brukergruppe` (`id`), FOREIGN KEY(`fylke`) REFERENCES `fylker` (`id`), FOREIGN KEY(`lokallag`) REFERENCES `lokallag` (`id`), FOREIGN KEY(`postnummer`) REFERENCES `postnummer` (`postnummer`), INDEX (`groupID`), INDEX (`fylke`), INDEX (`telefonnummer`), INDEX (`lokallag`), INDEX (`postnummer`), INDEX (`hypersysID`) ); -- -------------------------------------------------------- update person set lokallag = (select id from lokallag where navn ='<NAME>') where postnummer in (5259, 5257, 5254, 5068, 5054); update person set lokallag = (select id from lokallag where navn ='<NAME>') where postnummer in (5031, 5137); update person set lokallag = (select id from lokallag where navn ='<NAME>') where postnummer in (5098, 5174); update person set lokallag = (select id from lokallag where navn ='<NAME>') where postnummer in (5003, 5003); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `ringer` ( `id` int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, `oppretta` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `personId` int(6) NOT NULL UNIQUE, FOREIGN KEY (`personId`) REFERENCES `person` (`id`), INDEX(`personId`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `resultat` ( `id` int(1) NOT NULL PRIMARY KEY, `navn` varchar(200) NOT NULL, `displaytext`varchar(200) NOT NULL, `skalSkjules` bit DEFAULT FALSE, `svarte` BIT DEFAULT TRUE ); INSERT INTO resultat (id, navn, displaytext, svarte) VALUES (0, 'Ikke svar', 'Ikke svar', 0); INSERT INTO resultat (id, navn, displaytext) VALUES (1, 'Vil ikke ringes før valget, men gjerne etterpå', 'Vil ikke ringes før valget, men gjerne etterpå'); INSERT INTO resultat (id, navn, displaytext) VALUES (2, 'Trenger ikke å bli oppringt igjen (slettes fra alle lister)', 'Trenger ikke å bli oppringt igjen'); INSERT INTO resultat (id, navn, displaytext) VALUES (3, 'Trenger oppfølging av toppkandidat (husk å skrive stikkord om tema i kommentarfeltet)', 'Trenger oppfølging'); INSERT INTO resultat (id, navn, displaytext) VALUES (4, 'Passet ikke, må bli oppringt på spesifikt tidspunkt', 'Ba om å bli oppringt på spesifikt tidspunkt.'); INSERT INTO resultat (id, navn, displaytext) VALUES (5, 'Vil bli valgkampfrivillig og aktiv i et lokallag', 'Vil bli valgkampfrivillig og aktiv i et lokallag'); INSERT INTO resultat (id, navn, displaytext) VALUES (6, 'Vil bli valgkampfrivillig (henvis til rødt.no/frivillig, og si at de også får en e-post med info)', 'Vil bli valgkampfrivillig (henvis til rødt.no/frivillig, og si at de også får en e-post med info om hvordan man kan melde seg.)'); INSERT INTO resultat (id, navn, displaytext) VALUES (7, 'Nei', 'Nei'); INSERT INTO resultat (id, navn, displaytext) VALUES (8, 'Vil bli aktiv i et lokallag(Vi følger opp aktivt med nærmeste lokallag. Om de sier at det ikke finnes lokallag der de bor, fortell hvordan man kan melde seg som kontaktperson og starte lokallag).', 'Vil bli aktiv i et lokallag(Vi følger opp aktivt med nærmeste lokallag. Om de sier at det ikke finnes lokallag der de bor, fortell hvordan man kan melde seg som kontaktperson og starte lokallag).'); INSERT INTO resultat (id, navn, displaytext, skalSkjules, svarte) VALUES (9, 'Samtale startet', 'Samtale startet', 1, 0); INSERT INTO resultat (id, navn, displaytext, svarte) VALUES (10, 'Flere enn to ikke-svar', 'Flere enn to ikke-svar', 0); INSERT INTO resultat (id, navn, displaytext) VALUES (11, 'Svarte', 'Svarte'); INSERT INTO resultat (id, navn, displaytext) VALUES (12, 'Ring tilbake', 'Ring tilbake'); INSERT INTO resultat (id, navn, displaytext) VALUES (13, 'Ugyldig svar', 'Ugyldig svar'); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `godkjenning` ( `id` int(1) AUTO_INCREMENT NOT NULL PRIMARY KEY, `godkjenner` int(6) NOT NULL, `godkjentPerson` int(6) NOT NULL, `nyGroupId` int(2) NOT NULL, `tidspunkt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, INDEX(`godkjenner`), FOREIGN KEY (`godkjenner`) REFERENCES `ringer` (`id`), INDEX(`godkjentPerson`), FOREIGN KEY (`godkjentPerson`) REFERENCES `person` (`id`), INDEX(`nyGroupId`), FOREIGN KEY (`nyGroupId`) REFERENCES `brukergruppe` (`id`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `samtale` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `ringt` int(6) NOT NULL, `ringer` int(6) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `resultat` int(1) NOT NULL DEFAULT '0', `kommentar` longtext NULL, `modus` varchar(20) NOT NULL, INDEX (`resultat`), FOREIGN KEY (`resultat`) REFERENCES `resultat` (`id`), INDEX(`ringt`), FOREIGN KEY (`ringt`) REFERENCES `person` (`id`), INDEX(`ringer`), FOREIGN KEY (`ringer`) REFERENCES `ringer` (`id`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `oppfoelgingValg21` ( `id` int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, `samtaleId` int(6) NOT NULL, `vilBliMerAktiv` tinyint(1) DEFAULT NULL, `vilPolitikkLink` tinyint(1) DEFAULT NULL, `vilIkkeBliRingt` tinyint(1) DEFAULT NULL, `vilHaMedlemsLink` tinyint(1) DEFAULT NULL, `vilBliRingtAugust` tinyint(1) DEFAULT NULL, `vilHaFellesskapLink` tinyint(1) DEFAULT NULL, FOREIGN KEY (`samtaleId`) REFERENCES `samtale` (`id`), INDEX (`samtaleId`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `login_attempts` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `hypersysID` int(6) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (`hypersysID`) REFERENCES `person` (`hypersysID`), INDEX(`hypersysID`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `oppslag` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `ringt` int(6) NOT NULL, `ringerHypersysId` int(6) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (`ringt`) REFERENCES `person` (`id`), INDEX(`ringt`), FOREIGN KEY (`ringerHypersysId`) REFERENCES `person` (`hypersysID`), INDEX(`ringerHypersysId`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `verving` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `telefonnummer` varchar(15) NOT NULL, `fornavn` varchar(60) NOT NULL, `etternavn` varchar(60) NOT NULL, `verversNavn` varchar(120) DEFAULT NULL, `postnummer` integer DEFAULT -1 NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (`postnummer`) REFERENCES `postnummer` (`Postnummer`), INDEX(`postnummer`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `ringerIV1` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `telefonnummer` varchar(15) NOT NULL UNIQUE, `brukergruppe` int(2) NOT NULL ); -- -------------------------------------------------------- create or replace view v_mineSamtaler as select samtale.datetime as tidspunkt, ringt.telefonnummer as oppringtNummer, concat(ringt.fornavn, ' ', ringt.etternavn) as ringtNavn, r.displaytext as resultat, samtale.kommentar, oppfoelging.id as oppfoelgingId, ringerPerson.telefonnummer as ringersTelefonnummer, ringerPerson.hypersysID, concat(ringerPerson.fornavn, ' ', ringerPerson.etternavn) as ringerNavn, ringerPerson.lokallag, samtale.modus as modus from `samtale` samtale inner join person ringt on samtale.ringt = ringt.id inner join ringer ringer on ringer.id = samtale.ringer inner join person ringerPerson on ringer.personId = ringerPerson.id left outer join oppfoelgingValg21 oppfoelging on oppfoelging.samtaleId = samtale.id inner join resultat r on r.id = samtale.resultat; -- -------------------------------------------------------- create or replace view v_personerSomKanRinges as SELECT p.lokallag, p.id as id, p.hypersysID as hypersysID, p.fylke, p.groupID as brukergruppe, (SELECT `datetime` from samtale where ringt = p.id ORDER BY datetime DESC LIMIT 1) as sisteSamtale FROM person p LEFT OUTER JOIN lokallag l on p.lokallag = l.id WHERE p.groupID in (select id from brukergruppe where navn = 'klar til å ringes' or navn = 'prioritert å ringe') AND (UNIX_TIMESTAMP(now()) - coalesce((select UNIX_TIMESTAMP(max(datetime)) from samtale where samtale.ringt = p.id), 0) > 86400) -- 86400 sekund = 1 døgn AND NOT exists (select 1 from oppslag o where o.ringt=p.id and (UNIX_TIMESTAMP(now())-UNIX_TIMESTAMP(o.datetime)) < 3600 ); -- -------------------------------------------------------- create or replace view v_samtalerResultat AS SELECT distinct concat(ringerPerson.fornavn,' ',ringerPerson.etternavn) as ringerNavn, samtale.datetime as `datetime`, samtale.kommentar, r.displaytext as resultat, concat(ringt.fornavn,' ',ringt.etternavn) as ringtNavn, ringt.telefonnummer as oppringtNummer, oppfoelging.id as oppfoelgingId FROM `samtale` samtale INNER JOIN `person` ringt on ringt.id = samtale.ringt INNER JOIN `resultat` r on r.id = samtale.resultat INNER JOIN `ringer` ringer on ringer.id = samtale.ringer INNER join `person` ringerPerson on ringerPerson.id = ringer.personId left outer join oppfoelgingValg21 oppfoelging on oppfoelging.samtaleId = samtale.id WHERE samtale.resultat != 9 ORDER BY samtale.datetime ASC; -- -------------------------------------------------------- create or replace view v_slettaMosaic as SELECT distinct person.iperID FROM person person INNER JOIN samtale samtale on samtale.ringt = person.id INNER JOIN oppfoelgingValg21 oppfoelging on samtale.id = oppfoelging.samtaleId WHERE person.kilde = 'Mosaic' and oppfoelging.vilIkkeBliRingt=1 and person.groupID in (select id from brukergruppe where navn = 'slett' or navn = 'ferdigringt'); -- -------------------------------------------------------- INSERT INTO `person` (`fornavn`, `etternavn`, `telefonnummer`, `postnummer`, `email`, `fylke`, `groupID`, `lokallag`, `hypersysID`, `kilde`) VALUES ('Systembruker', 'Frontend', '+4711223344', -1, null, -1, 4, -1, -2, 'Systembruker'); INSERT INTO `ringer` (`personId`) VALUES ((select id from `person` where fornavn='Systembruker' and etternavn='Frontend')); INSERT INTO `person` (`fornavn`, `etternavn`, `telefonnummer`, `postnummer`, `email`, `fylke`, `groupID`, `oppretta`, `lokallag`, `kilde`) VALUES ('Telefonnummer som ikke', 'Er inne i systemet', '-1', -1, NULL, -1, 1, '2020-08-22 23:29:09', -1, 'Systembruker'); INSERT INTO `person` (`fornavn`, `etternavn`, `telefonnummer`, `postnummer`, `email`, `fylke`, `groupID`, `oppretta`, `lokallag`, `kilde`) VALUES ('Donald', ' Duck', '+4712345678', 1, NULL, -1, 1, '2020-08-22 23:29:09', 209, 'Verva'), ('Hetti', ' Duck', '+4712345677', 1, NULL, -1, 1, '2020-08-22 23:29:09', 209, 'Verva'), ('Letti', ' Duck', '+4712345679', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Netti', ' Duck', '+4712345676', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Klodrik', ' Duck', '+4712345675', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Anton', ' Duck', '+4712345674', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Bestemor', ' Duck', '+4712345673', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Skrue', 'McDuck', '+4712345672', 3050, NULL, 6, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Gulbrand', 'Gråstein', '+4712345671', 3050, NULL, 6, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Spøkelseskladden', '', '+4712345670', 3050, NULL, 6, 1, '2020-08-22 23:29:09', 1, 'Verva'); INSERT INTO `person` (`fornavn`, `etternavn`, `telefonnummer`, `postnummer`, `email`, `fylke`, `groupID`, `oppretta`, `lokallag`, `kilde`) VALUES ('Aster', 'ix', '+4722345678', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Obel', 'ix', '+4722345677', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Idef', 'ix', '+4722345679', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Majest', 'ix', '+4722345676', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Miracul', 'ix', '+4722345675', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Hermet', 'ix', '+4722345665', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Trubadur', 'ix', '+4722346676', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Barometr', 'ix', '+4722346677', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Gode', 'mine', '+4722346678', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Senil', 'ix', '+4722346679', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Armam', 'ix', '+4722345680', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Lillef', 'ix', '+4722345681', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Remoul', 'adine', '+4722345682', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'), ('Tragicom', 'ix', '+4722345683', 1, NULL, -1, 1, '2020-08-22 23:29:09', 1, 'Verva'); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `frivillig` ( `id` int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, `oppretta` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `personId` int(6) NOT NULL UNIQUE, `registrertTidspunkt` datetime NOT NULL, FOREIGN KEY (`personId`) REFERENCES `person` (`id`), INDEX(`personId`), `alleredeAktivILokallag` bit DEFAULT FALSE, `spraak` varchar(512) DEFAULT NULL, `medlemIRoedt` varchar(30) NOT NULL, `spesiellKompetanse` varchar(4096) DEFAULT NULL, `andreTingDuVilBidraMed` varchar(4096) DEFAULT NULL, `fortellLittOmDegSelv` varchar(4096) DEFAULT NULL ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `aktivitet` ( `aktivitet` varchar(50) NOT NULL PRIMARY KEY ); INSERT INTO `aktivitet` (`aktivitet`) VALUES ('Stand'), ('SoMe'), ('Doerbanking'), ('Ringing'), ('SMS'), ('Postkasseutdeling'), ('Morgenaksjon'), ('Bil'); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `aktivitetForFrivillig` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `frivillig_id` int(6) NOT NULL, `aktivitet` varchar(50) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, INDEX(`frivillig_id`), FOREIGN KEY (`frivillig_id`) REFERENCES `frivillig` (`id`), INDEX(`aktivitet`), FOREIGN KEY (`aktivitet`) REFERENCES `aktivitet` (`aktivitet`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `frivilligOpptattAv` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `frivillig_id` int(6) NOT NULL, `opptattAv` varchar(200) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, INDEX(`frivillig_id`), FOREIGN KEY (`frivillig_id`) REFERENCES `frivillig` (`id`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `frivilligKorona` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `frivillig_id` int(6) NOT NULL, `haandtering` varchar(30) NOT NULL, `personlig` bit NOT NULL, `tydelig` varchar(30) NOT NULL, `forslag` varchar(500) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, INDEX(`frivillig_id`), FOREIGN KEY (`frivillig_id`) REFERENCES `frivillig` (`id`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `kontakt` ( `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, `frivillig_id` int(6) NOT NULL, `tilbakemelding` varchar(1024) DEFAULT NULL, `registrert_av` int(6) NOT NULL, `datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, INDEX(`frivillig_id`), FOREIGN KEY (`frivillig_id`) REFERENCES `frivillig` (`id`), INDEX(`registrert_av`), FOREIGN KEY (`registrert_av`) REFERENCES `person` (`id`) ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `sms` ( `id` int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, `tekst` varchar(2048) NOT NULL ); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `smsTilMottaker` ( `id` int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, `sms_id` int(6) NOT NULL, INDEX(`sms_id`), FOREIGN KEY (`sms_id`) REFERENCES `sms` (`id`), `mottaker_id` int(6) NOT NULL, INDEX(`mottaker_id`), FOREIGN KEY (`mottaker_id`) REFERENCES `frivillig` (`id`), `utsendingsstatus` varchar(64) NOT NULL ); -- -------------------------------------------------------- INSERT INTO `frivillig` (personId, alleredeAktivILokallag, medlemIRoedt, spesiellKompetanse, andreTingDuVilBidraMed, fortellLittOmDegSelv) VALUES ((SELECT id from person where fornavn='Aster' and etternavn='Ix'), true, 'ja', 'rask og effektiv', 'bidrar med alt mogleg', 'frå Gallia'), ((SELECT id from person where fornavn='Obel' and etternavn='Ix'), true, 'Vilbli', 'stor og sterk', 'rydde veg', 'også frå Gallia'); INSERT INTO `aktivitetForFrivillig` (frivillig_id, aktivitet) VALUES ((SELECT id from frivillig where spesiellKompetanse='rask og effektiv'), 'Ringing'), ((SELECT id from frivillig where spesiellKompetanse='rask og effektiv'), 'SoMe'), ((SELECT id from frivillig where spesiellKompetanse='stor og sterk'), 'Doerbanking'); -- -------------------------------------------------------- /*!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 */;
-- Create Schema, Database & Table CREATE DATABASE oidmap; --SELECT DATABASE oidmap; \c oidmap DROP INDEX ondx; DROP TABLE omap; CREATE TABLE omap ( partbl TEXT NOT NULL, paroid TEXT NOT NULL, chiltbl TEXT NOT NULL, chiloid TEXT NOT NULL ); -- TODO: Test primary key in liue of the secondary index but -- primary keys must be unqiue so we would need to add all 4 -- columns to it. -- PRIMARY KEY (chiloid, chiltbl, paroid, partbl) CREATE INDEX CONCURRENTLY ondx ON omap ( chiloid, chiltbl)
ALTER TABLE flight_routes ADD COLUMN orig varchar(3); ALTER TABLE flight_routes ADD COLUMN dest varchar(3); ALTER TABLE flight_routes ADD COLUMN frame integer; ALTER TABLE flight_routes ADD COLUMN frameblow integer; UPDATE flight_routes set orig=substring(prop from 1 for 3),dest=substring(prop from 5 for 3); CREATE INDEX fr_orig_idx ON flight_routes(orig); CREATE INDEX fr_dest_idx ON flight_routes(dest); CREATE INDEX fr_frame_idx ON flight_routes(frame); CREATE INDEX fr_frameblow_idx ON flight_routes(frameblow); ALTER TABLE flight_routes DROP COLUMN prop; ALTER TABLE flight_routes_points ADD COLUMN orig varchar(3); ALTER TABLE flight_routes_points ADD COLUMN frame integer; ALTER TABLE flight_routes_points ADD COLUMN frameblow integer; CREATE INDEX frp_orig_idx ON flight_routes_points(orig); CREATE INDEX frp_frame_idx ON flight_routes_points(frame); CREATE INDEX frp_frameblow_idx ON flight_routes_points(frameblow); CREATE INDEX airports_iatacode_idx ON airports(iata_code); ALTER TABLE airports_passengersdata ADD COLUMN nroutes integer; UPDATE airports_passengersdata set nroutes=(select count(*) from flight_routes b where b.orig=iata) update airports_passengersdata set the_geom=(select the_geom from alasarr.airports a where a.iata_code=iata AND a.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes integer; UPDATE airports_passengersdata SET nroutes=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes_eu integer; UPDATE airports_passengersdata SET nroutes_eu=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.continent='EU' AND b.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes_af integer; UPDATE airports_passengersdata SET nroutes_af=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.continent='AF' AND b.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes_as integer; UPDATE airports_passengersdata SET nroutes_as=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.continent='AS' AND b.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes_oc integer; UPDATE airports_passengersdata SET nroutes_oc=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.continent='OC' AND b.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes_na integer; UPDATE airports_passengersdata SET nroutes_na=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.continent='NA' AND b.type<>'closed'); ALTER TABLE airports_passengersdata ADD COLUMN nroutes_sa integer; UPDATE airports_passengersdata SET nroutes_sa=(select count(*) from alasarr.flight_routes a INNER JOIN alasarr.airports b ON a.dest=b.iata_code WHERE a.orig=iata AND b.continent='SA' AND b.type<>'closed');
INSERT INTO tbl_Autores (ID_Autor, Nome_Autor, SobreNome_Autor) values (1, 'Daniel', 'Santos') INSERT INTO tbl_Autores(ID_Autor, Nome_Autor, SobreNome_Autor) values (2, 'Jessica', 'Rocha') INSERT INTO tbl_Autores(ID_Autor, Nome_Autor, SobreNome_Autor) values (3, 'Jose', 'Silva') INSERT INTO tbl_Autores(ID_Autor, Nome_Autor, SobreNome_Autor) values (4, 'Joao', 'Gabriel') INSERT INTO tbl_Editoras(Nome_Editora) VALUES('Intreseca') INSERT INTO tbl_Editoras(Nome_Editora) VALUES('Microsoft Press') INSERT INTO tbl_Editoras(Nome_Editora) VALUES('Wiley') INSERT INTO tbl_Editoras(Nome_Editora) VALUES('<NAME>') INSERT INTO tbl_Livro(Nome_Livro, ISBN, Data_Pub, Preco_Livro, ID_Autor, ID_editora) VALUES('Fedora', 12345555, '20101101',65.55,3,1) INSERT INTO tbl_Livro(Nome_Livro, ISBN, Data_Pub, Preco_Livro, ID_Autor, ID_editora) VALUES('Windos Server', 23345855, '20041101',66.55,4,3) INSERT INTO tbl_Livro(Nome_Livro, ISBN, Data_Pub, Preco_Livro, ID_Autor, ID_editora) VALUES('Microsoft', 123485755, '20001101',65.55,4,3)
-- MySQL dump 10.13 Distrib 5.7.23, for macos10.13 (x86_64) -- -- Host: 127.0.0.1 Database: vanilla_craft3 -- ------------------------------------------------------ -- Server version 5.7.31 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `assetindexdata` -- DROP TABLE IF EXISTS `assetindexdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assetindexdata` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sessionId` varchar(36) NOT NULL DEFAULT '', `volumeId` int(11) NOT NULL, `uri` text, `size` bigint(20) unsigned DEFAULT NULL, `timestamp` datetime DEFAULT NULL, `recordId` int(11) DEFAULT NULL, `inProgress` tinyint(1) DEFAULT '0', `completed` tinyint(1) DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `assetindexdata_sessionId_volumeId_idx` (`sessionId`,`volumeId`), KEY `assetindexdata_volumeId_idx` (`volumeId`), CONSTRAINT `assetindexdata_volumeId_fk` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assetindexdata` -- LOCK TABLES `assetindexdata` WRITE; /*!40000 ALTER TABLE `assetindexdata` DISABLE KEYS */; /*!40000 ALTER TABLE `assetindexdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assets` -- DROP TABLE IF EXISTS `assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assets` ( `id` int(11) NOT NULL, `volumeId` int(11) DEFAULT NULL, `folderId` int(11) NOT NULL, `uploaderId` int(11) DEFAULT NULL, `filename` varchar(255) NOT NULL, `kind` varchar(50) NOT NULL DEFAULT 'unknown', `width` int(11) unsigned DEFAULT NULL, `height` int(11) unsigned DEFAULT NULL, `size` bigint(20) unsigned DEFAULT NULL, `focalPoint` varchar(13) DEFAULT NULL, `deletedWithVolume` tinyint(1) DEFAULT NULL, `keptFile` tinyint(1) DEFAULT NULL, `dateModified` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `assets_filename_folderId_idx` (`filename`,`folderId`), KEY `assets_folderId_idx` (`folderId`), KEY `assets_volumeId_idx` (`volumeId`), KEY `assets_uploaderId_fk` (`uploaderId`), CONSTRAINT `assets_folderId_fk` FOREIGN KEY (`folderId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE, CONSTRAINT `assets_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `assets_uploaderId_fk` FOREIGN KEY (`uploaderId`) REFERENCES `users` (`id`) ON DELETE SET NULL, CONSTRAINT `assets_volumeId_fk` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assets` -- LOCK TABLES `assets` WRITE; /*!40000 ALTER TABLE `assets` DISABLE KEYS */; /*!40000 ALTER TABLE `assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assettransformindex` -- DROP TABLE IF EXISTS `assettransformindex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assettransformindex` ( `id` int(11) NOT NULL AUTO_INCREMENT, `assetId` int(11) NOT NULL, `filename` varchar(255) DEFAULT NULL, `format` varchar(255) DEFAULT NULL, `location` varchar(255) NOT NULL, `volumeId` int(11) DEFAULT NULL, `fileExists` tinyint(1) NOT NULL DEFAULT '0', `inProgress` tinyint(1) NOT NULL DEFAULT '0', `error` tinyint(1) NOT NULL DEFAULT '0', `dateIndexed` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `assettransformindex_volumeId_assetId_location_idx` (`volumeId`,`assetId`,`location`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assettransformindex` -- LOCK TABLES `assettransformindex` WRITE; /*!40000 ALTER TABLE `assettransformindex` DISABLE KEYS */; /*!40000 ALTER TABLE `assettransformindex` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assettransforms` -- DROP TABLE IF EXISTS `assettransforms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assettransforms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `mode` enum('stretch','fit','crop') NOT NULL DEFAULT 'crop', `position` enum('top-left','top-center','top-right','center-left','center-center','center-right','bottom-left','bottom-center','bottom-right') NOT NULL DEFAULT 'center-center', `width` int(11) unsigned DEFAULT NULL, `height` int(11) unsigned DEFAULT NULL, `format` varchar(255) DEFAULT NULL, `quality` int(11) DEFAULT NULL, `interlace` enum('none','line','plane','partition') NOT NULL DEFAULT 'none', `dimensionChangeTime` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `assettransforms_name_idx` (`name`), KEY `assettransforms_handle_idx` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assettransforms` -- LOCK TABLES `assettransforms` WRITE; /*!40000 ALTER TABLE `assettransforms` DISABLE KEYS */; /*!40000 ALTER TABLE `assettransforms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categories` ( `id` int(11) NOT NULL, `groupId` int(11) NOT NULL, `parentId` int(11) DEFAULT NULL, `deletedWithGroup` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `categories_groupId_idx` (`groupId`), KEY `categories_parentId_fk` (`parentId`), CONSTRAINT `categories_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE, CONSTRAINT `categories_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `categories_parentId_fk` FOREIGN KEY (`parentId`) REFERENCES `categories` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categorygroups` -- DROP TABLE IF EXISTS `categorygroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categorygroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `structureId` int(11) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `categorygroups_name_idx` (`name`), KEY `categorygroups_handle_idx` (`handle`), KEY `categorygroups_structureId_idx` (`structureId`), KEY `categorygroups_fieldLayoutId_idx` (`fieldLayoutId`), KEY `categorygroups_dateDeleted_idx` (`dateDeleted`), CONSTRAINT `categorygroups_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `categorygroups_structureId_fk` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categorygroups` -- LOCK TABLES `categorygroups` WRITE; /*!40000 ALTER TABLE `categorygroups` DISABLE KEYS */; /*!40000 ALTER TABLE `categorygroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categorygroups_sites` -- DROP TABLE IF EXISTS `categorygroups_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categorygroups_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '1', `uriFormat` text, `template` varchar(500) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `categorygroups_sites_groupId_siteId_unq_idx` (`groupId`,`siteId`), KEY `categorygroups_sites_siteId_idx` (`siteId`), CONSTRAINT `categorygroups_sites_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE, CONSTRAINT `categorygroups_sites_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categorygroups_sites` -- LOCK TABLES `categorygroups_sites` WRITE; /*!40000 ALTER TABLE `categorygroups_sites` DISABLE KEYS */; /*!40000 ALTER TABLE `categorygroups_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `changedattributes` -- DROP TABLE IF EXISTS `changedattributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `changedattributes` ( `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `attribute` varchar(255) NOT NULL, `dateUpdated` datetime NOT NULL, `propagated` tinyint(1) NOT NULL, `userId` int(11) DEFAULT NULL, PRIMARY KEY (`elementId`,`siteId`,`attribute`), KEY `changedattributes_elementId_siteId_dateUpdated_idx` (`elementId`,`siteId`,`dateUpdated`), KEY `changedattributes_siteId_fk` (`siteId`), KEY `changedattributes_userId_fk` (`userId`), CONSTRAINT `changedattributes_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `changedattributes_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `changedattributes_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `changedattributes` -- LOCK TABLES `changedattributes` WRITE; /*!40000 ALTER TABLE `changedattributes` DISABLE KEYS */; /*!40000 ALTER TABLE `changedattributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `changedfields` -- DROP TABLE IF EXISTS `changedfields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `changedfields` ( `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `fieldId` int(11) NOT NULL, `dateUpdated` datetime NOT NULL, `propagated` tinyint(1) NOT NULL, `userId` int(11) DEFAULT NULL, PRIMARY KEY (`elementId`,`siteId`,`fieldId`), KEY `changedfields_elementId_siteId_dateUpdated_idx` (`elementId`,`siteId`,`dateUpdated`), KEY `changedfields_siteId_fk` (`siteId`), KEY `changedfields_fieldId_fk` (`fieldId`), KEY `changedfields_userId_fk` (`userId`), CONSTRAINT `changedfields_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `changedfields_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `changedfields_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `changedfields_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `changedfields` -- LOCK TABLES `changedfields` WRITE; /*!40000 ALTER TABLE `changedfields` DISABLE KEYS */; /*!40000 ALTER TABLE `changedfields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `content` -- DROP TABLE IF EXISTS `content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content` ( `id` int(11) NOT NULL AUTO_INCREMENT, `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `title` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `content_elementId_siteId_unq_idx` (`elementId`,`siteId`), KEY `content_siteId_idx` (`siteId`), KEY `content_title_idx` (`title`), CONSTRAINT `content_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `content_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `content` -- LOCK TABLES `content` WRITE; /*!40000 ALTER TABLE `content` DISABLE KEYS */; INSERT INTO `content` VALUES (1,1,1,NULL,'2020-12-29 18:25:15','2020-12-29 18:25:15','46ae8113-5664-48c4-8e7d-08b9ae4609b7'); /*!40000 ALTER TABLE `content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `craftidtokens` -- DROP TABLE IF EXISTS `craftidtokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `craftidtokens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `accessToken` text NOT NULL, `expiryDate` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `craftidtokens_userId_fk` (`userId`), CONSTRAINT `craftidtokens_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `craftidtokens` -- LOCK TABLES `craftidtokens` WRITE; /*!40000 ALTER TABLE `craftidtokens` DISABLE KEYS */; /*!40000 ALTER TABLE `craftidtokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deprecationerrors` -- DROP TABLE IF EXISTS `deprecationerrors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `deprecationerrors` ( `id` int(11) NOT NULL AUTO_INCREMENT, `key` varchar(255) NOT NULL, `fingerprint` varchar(255) NOT NULL, `lastOccurrence` datetime NOT NULL, `file` varchar(255) NOT NULL, `line` smallint(6) unsigned DEFAULT NULL, `message` text, `traces` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `deprecationerrors_key_fingerprint_unq_idx` (`key`,`fingerprint`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deprecationerrors` -- LOCK TABLES `deprecationerrors` WRITE; /*!40000 ALTER TABLE `deprecationerrors` DISABLE KEYS */; /*!40000 ALTER TABLE `deprecationerrors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drafts` -- DROP TABLE IF EXISTS `drafts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drafts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sourceId` int(11) DEFAULT NULL, `creatorId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `notes` text, `trackChanges` tinyint(1) NOT NULL DEFAULT '0', `dateLastMerged` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `drafts_creatorId_fk` (`creatorId`), KEY `drafts_sourceId_fk` (`sourceId`), CONSTRAINT `drafts_creatorId_fk` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL, CONSTRAINT `drafts_sourceId_fk` FOREIGN KEY (`sourceId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drafts` -- LOCK TABLES `drafts` WRITE; /*!40000 ALTER TABLE `drafts` DISABLE KEYS */; /*!40000 ALTER TABLE `drafts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `elementindexsettings` -- DROP TABLE IF EXISTS `elementindexsettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `elementindexsettings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `settings` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `elementindexsettings_type_unq_idx` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `elementindexsettings` -- LOCK TABLES `elementindexsettings` WRITE; /*!40000 ALTER TABLE `elementindexsettings` DISABLE KEYS */; /*!40000 ALTER TABLE `elementindexsettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `elements` -- DROP TABLE IF EXISTS `elements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `elements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `draftId` int(11) DEFAULT NULL, `revisionId` int(11) DEFAULT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `type` varchar(255) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `archived` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `elements_dateDeleted_idx` (`dateDeleted`), KEY `elements_fieldLayoutId_idx` (`fieldLayoutId`), KEY `elements_type_idx` (`type`), KEY `elements_enabled_idx` (`enabled`), KEY `elements_archived_dateCreated_idx` (`archived`,`dateCreated`), KEY `elements_archived_dateDeleted_draftId_revisionId_idx` (`archived`,`dateDeleted`,`draftId`,`revisionId`), KEY `elements_draftId_fk` (`draftId`), KEY `elements_revisionId_fk` (`revisionId`), CONSTRAINT `elements_draftId_fk` FOREIGN KEY (`draftId`) REFERENCES `drafts` (`id`) ON DELETE CASCADE, CONSTRAINT `elements_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `elements_revisionId_fk` FOREIGN KEY (`revisionId`) REFERENCES `revisions` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `elements` -- LOCK TABLES `elements` WRITE; /*!40000 ALTER TABLE `elements` DISABLE KEYS */; INSERT INTO `elements` VALUES (1,NULL,NULL,NULL,'craft\\elements\\User',1,0,'2020-12-29 18:25:15','2020-12-29 18:25:15',NULL,'8ad6042c-8d6a-4b04-bf49-21b22d8747c4'); /*!40000 ALTER TABLE `elements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `elements_sites` -- DROP TABLE IF EXISTS `elements_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `elements_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `slug` varchar(255) DEFAULT NULL, `uri` varchar(255) DEFAULT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `elements_sites_elementId_siteId_unq_idx` (`elementId`,`siteId`), KEY `elements_sites_siteId_idx` (`siteId`), KEY `elements_sites_slug_siteId_idx` (`slug`,`siteId`), KEY `elements_sites_enabled_idx` (`enabled`), KEY `elements_sites_uri_siteId_idx` (`uri`,`siteId`), CONSTRAINT `elements_sites_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `elements_sites_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `elements_sites` -- LOCK TABLES `elements_sites` WRITE; /*!40000 ALTER TABLE `elements_sites` DISABLE KEYS */; INSERT INTO `elements_sites` VALUES (1,1,1,NULL,NULL,1,'2020-12-29 18:25:15','2020-12-29 18:25:15','923e4a8c-dfa6-4aea-bc87-85b2fb029f0d'); /*!40000 ALTER TABLE `elements_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `entries` -- DROP TABLE IF EXISTS `entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `entries` ( `id` int(11) NOT NULL, `sectionId` int(11) NOT NULL, `parentId` int(11) DEFAULT NULL, `typeId` int(11) NOT NULL, `authorId` int(11) DEFAULT NULL, `postDate` datetime DEFAULT NULL, `expiryDate` datetime DEFAULT NULL, `deletedWithEntryType` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `entries_postDate_idx` (`postDate`), KEY `entries_expiryDate_idx` (`expiryDate`), KEY `entries_authorId_idx` (`authorId`), KEY `entries_sectionId_idx` (`sectionId`), KEY `entries_typeId_idx` (`typeId`), KEY `entries_parentId_fk` (`parentId`), CONSTRAINT `entries_authorId_fk` FOREIGN KEY (`authorId`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `entries_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `entries_parentId_fk` FOREIGN KEY (`parentId`) REFERENCES `entries` (`id`) ON DELETE SET NULL, CONSTRAINT `entries_sectionId_fk` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE, CONSTRAINT `entries_typeId_fk` FOREIGN KEY (`typeId`) REFERENCES `entrytypes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `entries` -- LOCK TABLES `entries` WRITE; /*!40000 ALTER TABLE `entries` DISABLE KEYS */; /*!40000 ALTER TABLE `entries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `entrytypes` -- DROP TABLE IF EXISTS `entrytypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `entrytypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sectionId` int(11) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `hasTitleField` tinyint(1) NOT NULL DEFAULT '1', `titleTranslationMethod` varchar(255) NOT NULL DEFAULT 'site', `titleTranslationKeyFormat` text, `titleFormat` varchar(255) DEFAULT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `entrytypes_name_sectionId_idx` (`name`,`sectionId`), KEY `entrytypes_handle_sectionId_idx` (`handle`,`sectionId`), KEY `entrytypes_sectionId_idx` (`sectionId`), KEY `entrytypes_fieldLayoutId_idx` (`fieldLayoutId`), KEY `entrytypes_dateDeleted_idx` (`dateDeleted`), CONSTRAINT `entrytypes_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `entrytypes_sectionId_fk` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `entrytypes` -- LOCK TABLES `entrytypes` WRITE; /*!40000 ALTER TABLE `entrytypes` DISABLE KEYS */; /*!40000 ALTER TABLE `entrytypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fieldgroups` -- DROP TABLE IF EXISTS `fieldgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldgroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fieldgroups_name_idx` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fieldgroups` -- LOCK TABLES `fieldgroups` WRITE; /*!40000 ALTER TABLE `fieldgroups` DISABLE KEYS */; INSERT INTO `fieldgroups` VALUES (1,'Common','2020-12-29 18:25:15','2020-12-29 18:25:15','e9cf98b7-cac8-4644-9b7a-469d14fd5547'); /*!40000 ALTER TABLE `fieldgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fieldlayoutfields` -- DROP TABLE IF EXISTS `fieldlayoutfields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldlayoutfields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `layoutId` int(11) NOT NULL, `tabId` int(11) NOT NULL, `fieldId` int(11) NOT NULL, `required` tinyint(1) NOT NULL DEFAULT '0', `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `fieldlayoutfields_layoutId_fieldId_unq_idx` (`layoutId`,`fieldId`), KEY `fieldlayoutfields_sortOrder_idx` (`sortOrder`), KEY `fieldlayoutfields_tabId_idx` (`tabId`), KEY `fieldlayoutfields_fieldId_idx` (`fieldId`), CONSTRAINT `fieldlayoutfields_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE, CONSTRAINT `fieldlayoutfields_layoutId_fk` FOREIGN KEY (`layoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE CASCADE, CONSTRAINT `fieldlayoutfields_tabId_fk` FOREIGN KEY (`tabId`) REFERENCES `fieldlayouttabs` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fieldlayoutfields` -- LOCK TABLES `fieldlayoutfields` WRITE; /*!40000 ALTER TABLE `fieldlayoutfields` DISABLE KEYS */; /*!40000 ALTER TABLE `fieldlayoutfields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fieldlayouts` -- DROP TABLE IF EXISTS `fieldlayouts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldlayouts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fieldlayouts_dateDeleted_idx` (`dateDeleted`), KEY `fieldlayouts_type_idx` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fieldlayouts` -- LOCK TABLES `fieldlayouts` WRITE; /*!40000 ALTER TABLE `fieldlayouts` DISABLE KEYS */; /*!40000 ALTER TABLE `fieldlayouts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fieldlayouttabs` -- DROP TABLE IF EXISTS `fieldlayouttabs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldlayouttabs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `layoutId` int(11) NOT NULL, `name` varchar(255) NOT NULL, `elements` text, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fieldlayouttabs_sortOrder_idx` (`sortOrder`), KEY `fieldlayouttabs_layoutId_idx` (`layoutId`), CONSTRAINT `fieldlayouttabs_layoutId_fk` FOREIGN KEY (`layoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fieldlayouttabs` -- LOCK TABLES `fieldlayouttabs` WRITE; /*!40000 ALTER TABLE `fieldlayouttabs` DISABLE KEYS */; /*!40000 ALTER TABLE `fieldlayouttabs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fields` -- DROP TABLE IF EXISTS `fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(64) NOT NULL, `context` varchar(255) NOT NULL DEFAULT 'global', `instructions` text, `searchable` tinyint(1) NOT NULL DEFAULT '1', `translationMethod` varchar(255) NOT NULL DEFAULT 'none', `translationKeyFormat` text, `type` varchar(255) NOT NULL, `settings` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fields_handle_context_idx` (`handle`,`context`), KEY `fields_groupId_idx` (`groupId`), KEY `fields_context_idx` (`context`), CONSTRAINT `fields_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `fieldgroups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fields` -- LOCK TABLES `fields` WRITE; /*!40000 ALTER TABLE `fields` DISABLE KEYS */; /*!40000 ALTER TABLE `fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `globalsets` -- DROP TABLE IF EXISTS `globalsets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `globalsets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `globalsets_name_idx` (`name`), KEY `globalsets_handle_idx` (`handle`), KEY `globalsets_fieldLayoutId_idx` (`fieldLayoutId`), CONSTRAINT `globalsets_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `globalsets_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `globalsets` -- LOCK TABLES `globalsets` WRITE; /*!40000 ALTER TABLE `globalsets` DISABLE KEYS */; /*!40000 ALTER TABLE `globalsets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gqlschemas` -- DROP TABLE IF EXISTS `gqlschemas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gqlschemas` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `scope` text, `isPublic` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gqlschemas` -- LOCK TABLES `gqlschemas` WRITE; /*!40000 ALTER TABLE `gqlschemas` DISABLE KEYS */; /*!40000 ALTER TABLE `gqlschemas` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gqltokens` -- DROP TABLE IF EXISTS `gqltokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gqltokens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `accessToken` varchar(255) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `expiryDate` datetime DEFAULT NULL, `lastUsed` datetime DEFAULT NULL, `schemaId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `gqltokens_accessToken_unq_idx` (`accessToken`), UNIQUE KEY `gqltokens_name_unq_idx` (`name`), KEY `gqltokens_schemaId_fk` (`schemaId`), CONSTRAINT `gqltokens_schemaId_fk` FOREIGN KEY (`schemaId`) REFERENCES `gqlschemas` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gqltokens` -- LOCK TABLES `gqltokens` WRITE; /*!40000 ALTER TABLE `gqltokens` DISABLE KEYS */; /*!40000 ALTER TABLE `gqltokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `info` -- DROP TABLE IF EXISTS `info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `version` varchar(50) NOT NULL, `schemaVersion` varchar(15) NOT NULL, `maintenance` tinyint(1) NOT NULL DEFAULT '0', `configVersion` char(12) NOT NULL DEFAULT '000000000000', `fieldVersion` char(12) NOT NULL DEFAULT '000000000000', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `info` -- LOCK TABLES `info` WRITE; /*!40000 ALTER TABLE `info` DISABLE KEYS */; INSERT INTO `info` VALUES (1,'3.5.17.1','3.5.13',0,'zlynqklzbxrf','norpzrijhjau','2020-12-29 18:25:15','2020-12-29 18:25:16','f819c1c8-fd0c-49e8-ab37-e5a53f1832ff'); /*!40000 ALTER TABLE `info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `matrixblocks` -- DROP TABLE IF EXISTS `matrixblocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `matrixblocks` ( `id` int(11) NOT NULL, `ownerId` int(11) NOT NULL, `fieldId` int(11) NOT NULL, `typeId` int(11) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `deletedWithOwner` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `matrixblocks_ownerId_idx` (`ownerId`), KEY `matrixblocks_fieldId_idx` (`fieldId`), KEY `matrixblocks_typeId_idx` (`typeId`), KEY `matrixblocks_sortOrder_idx` (`sortOrder`), CONSTRAINT `matrixblocks_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE, CONSTRAINT `matrixblocks_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `matrixblocks_ownerId_fk` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `matrixblocks_typeId_fk` FOREIGN KEY (`typeId`) REFERENCES `matrixblocktypes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `matrixblocks` -- LOCK TABLES `matrixblocks` WRITE; /*!40000 ALTER TABLE `matrixblocks` DISABLE KEYS */; /*!40000 ALTER TABLE `matrixblocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `matrixblocktypes` -- DROP TABLE IF EXISTS `matrixblocktypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `matrixblocktypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldId` int(11) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `matrixblocktypes_name_fieldId_idx` (`name`,`fieldId`), KEY `matrixblocktypes_handle_fieldId_idx` (`handle`,`fieldId`), KEY `matrixblocktypes_fieldId_idx` (`fieldId`), KEY `matrixblocktypes_fieldLayoutId_idx` (`fieldLayoutId`), CONSTRAINT `matrixblocktypes_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE, CONSTRAINT `matrixblocktypes_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `matrixblocktypes` -- LOCK TABLES `matrixblocktypes` WRITE; /*!40000 ALTER TABLE `matrixblocktypes` DISABLE KEYS */; /*!40000 ALTER TABLE `matrixblocktypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `migrations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `track` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `applyTime` datetime NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `migrations_track_name_unq_idx` (`track`,`name`) ) ENGINE=InnoDB AUTO_INCREMENT=177 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'craft','Install','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1e74b450-df26-42c2-9e18-4aeae79baba3'),(2,'craft','m150403_183908_migrations_table_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','107d27a8-18f6-4f1b-948f-9cdd2d2dbdac'),(3,'craft','m150403_184247_plugins_table_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5d67ff64-1043-49fa-bf91-65f6216f85ae'),(4,'craft','m150403_184533_field_version','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','9dd79bcd-fe47-4d9d-82bf-f1ac8dd70610'),(5,'craft','m150403_184729_type_columns','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','a97f63d0-b321-444f-ad93-ea355c144ba6'),(6,'craft','m150403_185142_volumes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','560b7e9a-7af2-4c57-8890-d2b4ae6140f9'),(7,'craft','m150428_231346_userpreferences','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','90e60bf2-c1e1-4efe-91bc-5c91d485f8e3'),(8,'craft','m150519_150900_fieldversion_conversion','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','673484be-6a12-436f-90f3-1fe59201df76'),(9,'craft','m150617_213829_update_email_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8ec4515e-20e7-4213-8315-236252cddd93'),(10,'craft','m150721_124739_templatecachequeries','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','e30f4bab-2a62-43cd-a0e4-83173524cf9e'),(11,'craft','m150724_140822_adjust_quality_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','9b3dd39c-2fe3-4f06-89a9-d535004a8322'),(12,'craft','m150815_133521_last_login_attempt_ip','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','7da76cb9-28b2-49ac-9e35-9ae0b7a8038a'),(13,'craft','m151002_095935_volume_cache_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','196e85bc-6dbe-4a66-8a44-d3c4d448dc98'),(14,'craft','m151005_142750_volume_s3_storage_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','fe915822-3026-4db2-a68e-2cd361e2225e'),(15,'craft','m151016_133600_delete_asset_thumbnails','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','a40b6de7-5b99-4c0d-8f4f-19e8049651c1'),(16,'craft','m151209_000000_move_logo','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d0bd20ee-f481-41f9-a274-0e672caf9b84'),(17,'craft','m151211_000000_rename_fileId_to_assetId','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','11c37f2c-d466-4a3d-a385-8f2a9400d9d7'),(18,'craft','m151215_000000_rename_asset_permissions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ee0d7a63-46e8-4b80-8e8a-f3970e579bd8'),(19,'craft','m160707_000001_rename_richtext_assetsource_setting','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','b367abae-6000-4da0-85d0-839d533d81d5'),(20,'craft','m160708_185142_volume_hasUrls_setting','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8eb9468c-45b9-469b-92de-cfba38cae5eb'),(21,'craft','m160714_000000_increase_max_asset_filesize','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','bd281abd-81ce-4bb7-bef3-da77fb9995fb'),(22,'craft','m160727_194637_column_cleanup','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','96f422e0-a98d-4958-9bb4-dc481f4d9bcb'),(23,'craft','m160804_110002_userphotos_to_assets','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','c21241a5-9376-429a-b358-f5a1fdc3cd21'),(24,'craft','m160807_144858_sites','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d9e9583f-a77f-4120-ba23-cd6abb62f9da'),(25,'craft','m160829_000000_pending_user_content_cleanup','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','e64c3312-0152-47d7-958a-5ac2170f6931'),(26,'craft','m160830_000000_asset_index_uri_increase','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','43b73d29-c484-4986-b6fd-3cbe0334897e'),(27,'craft','m160912_230520_require_entry_type_id','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','317d1ff2-e984-4eb5-90e9-5f456dca4ce6'),(28,'craft','m160913_134730_require_matrix_block_type_id','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8588132e-678b-4010-9ce2-1e0065dfb34f'),(29,'craft','m160920_174553_matrixblocks_owner_site_id_nullable','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','829dcebb-b8f4-4d96-a829-16adf93094c0'),(30,'craft','m160920_231045_usergroup_handle_title_unique','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','a147d78f-91ef-4575-999b-7a9d087ab702'),(31,'craft','m160925_113941_route_uri_parts','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1463cb31-e715-49ba-834d-2ebcc6958ecc'),(32,'craft','m161006_205918_schemaVersion_not_null','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','a0ab163d-1c39-489a-8a9a-7d0a1a45afe0'),(33,'craft','m161007_130653_update_email_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','fd4aac68-ea72-472b-8bbd-3da1e2fe13c7'),(34,'craft','m161013_175052_newParentId','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','272bec4b-0927-4ecb-916e-38a51d0d0e3f'),(35,'craft','m161021_102916_fix_recent_entries_widgets','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','0c4970f8-8752-4c42-902f-fd417d0cc8b2'),(36,'craft','m161021_182140_rename_get_help_widget','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','49789e3b-42ac-4c4a-8984-d3d41e062dc5'),(37,'craft','m161025_000000_fix_char_columns','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','653c532e-51a6-46c2-b37e-103dbe6e8259'),(38,'craft','m161029_124145_email_message_languages','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','4519d70f-38b6-40a5-af60-f8108ad32dc6'),(39,'craft','m161108_000000_new_version_format','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8ff6dc7f-95fc-4865-a7e3-930a505d7b5f'),(40,'craft','m161109_000000_index_shuffle','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ce5a8673-991f-4f00-b7d1-b59857cb1f57'),(41,'craft','m161122_185500_no_craft_app','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','515a83aa-58ad-4426-8f2c-b2db9e41357c'),(42,'craft','m161125_150752_clear_urlmanager_cache','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','60f44aa1-6c5e-4df3-bee6-336f9dba6e39'),(43,'craft','m161220_000000_volumes_hasurl_notnull','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','b5898ab5-10c5-4a1a-968a-dd985617921f'),(44,'craft','m170114_161144_udates_permission','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ab208d78-e04d-43dc-a5ce-5e7c41326b55'),(45,'craft','m170120_000000_schema_cleanup','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d989d266-08d3-4188-bec7-829637e86ce5'),(46,'craft','m170126_000000_assets_focal_point','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','e7794d18-d405-42bf-97c8-5121288a3c8a'),(47,'craft','m170206_142126_system_name','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1894cac7-d88e-49fb-b406-7aa8ffa32621'),(48,'craft','m170217_044740_category_branch_limits','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1084245a-c192-4f0d-b2a1-740d00107a9d'),(49,'craft','m170217_120224_asset_indexing_columns','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','14ab8c07-f9e5-4458-bf7c-0e07dc2b5f8a'),(50,'craft','m170223_224012_plain_text_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','f4be36f4-658a-4cf1-9784-f621a5c3241d'),(51,'craft','m170227_120814_focal_point_percentage','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d3f78861-9f51-4250-a230-8f6d2c6d70e5'),(52,'craft','m170228_171113_system_messages','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','7bdd90ed-a44c-4ebf-8133-7f5c01b85b2a'),(53,'craft','m170303_140500_asset_field_source_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','27b32b60-d536-49ab-8843-144bc79dd8ae'),(54,'craft','m170306_150500_asset_temporary_uploads','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','4eff3c45-bd37-45fa-8ca5-edb95f0cac03'),(55,'craft','m170523_190652_element_field_layout_ids','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','e04f18de-19fe-49ec-9e9c-761d69686af6'),(56,'craft','m170621_195237_format_plugin_handles','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','3e8ab930-7d49-4ff9-8adc-d846575a7500'),(57,'craft','m170630_161027_deprecation_line_nullable','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','825133f5-ed67-445b-96a6-5f321a67b47e'),(58,'craft','m170630_161028_deprecation_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5b662f6f-196c-4b38-8f36-4b3d6295841b'),(59,'craft','m170703_181539_plugins_table_tweaks','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','aa2705ed-057a-4a6f-bf84-35bacc5de71a'),(60,'craft','m170704_134916_sites_tables','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1e740185-9189-4da0-9043-385bb19b9214'),(61,'craft','m170706_183216_rename_sequences','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','9c971cbe-1f5d-4103-8c48-137134f0a3a0'),(62,'craft','m170707_094758_delete_compiled_traits','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','de27eddd-70f6-4a68-bfbb-41548d596a87'),(63,'craft','m170731_190138_drop_asset_packagist','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','2a79f9a1-359b-4d6c-ab35-215ba5316a75'),(64,'craft','m170810_201318_create_queue_table','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5fbd990e-6864-4e7b-b624-0aa8bd330771'),(65,'craft','m170903_192801_longblob_for_queue_jobs','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','86d7fbe2-c438-43b1-a89a-2a5695e2e4fb'),(66,'craft','m170914_204621_asset_cache_shuffle','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','548da0d5-cf19-479b-90c5-efc315efb155'),(67,'craft','m171011_214115_site_groups','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','415c3cb8-9125-448d-8433-d475e37529f5'),(68,'craft','m171012_151440_primary_site','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','c1e04aee-98ef-4e74-9c48-6685935a0a11'),(69,'craft','m171013_142500_transform_interlace','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','882aa108-1091-4d60-a0c4-b1cb16728714'),(70,'craft','m171016_092553_drop_position_select','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5686cda8-05cc-492d-a3fb-09b91d6f88b5'),(71,'craft','m171016_221244_less_strict_translation_method','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','68431494-f228-4bde-bfd3-d4e99226be90'),(72,'craft','m171107_000000_assign_group_permissions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','9d147efd-f405-4d43-ab69-53aaf26b1d13'),(73,'craft','m171117_000001_templatecache_index_tune','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','3a96851c-f616-40f2-a8a7-701d56fd8c2a'),(74,'craft','m171126_105927_disabled_plugins','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d220dca6-7e23-4f05-9aeb-e8a35677df25'),(75,'craft','m171130_214407_craftidtokens_table','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1d7ab35a-ed9c-4284-a9a3-b867f7eeaae6'),(76,'craft','m171202_004225_update_email_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','3ab34110-3ecf-4159-8932-27493098b9cc'),(77,'craft','m171204_000001_templatecache_index_tune_deux','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5d156517-2d49-4f2b-9c23-6ee821c59ac3'),(78,'craft','m171205_130908_remove_craftidtokens_refreshtoken_column','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','98572a17-3a38-42e9-853a-2730abd76789'),(79,'craft','m171218_143135_longtext_query_column','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d8a3c99f-93f0-4f51-9bb6-61d6cd8de398'),(80,'craft','m171231_055546_environment_variables_to_aliases','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','b54c73b3-4161-48b1-9173-a7002b0ac8c1'),(81,'craft','m180113_153740_drop_users_archived_column','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8812d40c-d7b2-4649-84e5-4a0fc4eb21ae'),(82,'craft','m180122_213433_propagate_entries_setting','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','57a6cadf-5f94-46e4-8e3c-6321315830f8'),(83,'craft','m180124_230459_fix_propagate_entries_values','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','eee1c905-44bd-4546-b9eb-e87ffdf822ac'),(84,'craft','m180128_235202_set_tag_slugs','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','49ad57ad-3d55-4fbf-bf05-a555c88bdb2b'),(85,'craft','m180202_185551_fix_focal_points','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','81fa124b-8a81-4379-a030-c91ea3e8c7b1'),(86,'craft','m180217_172123_tiny_ints','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d5ffeb7a-a3d4-4f21-bdb6-cff428bd7d33'),(87,'craft','m180321_233505_small_ints','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','c3ee7d1f-eb4f-4766-bf54-bd8cafeed3db'),(88,'craft','m180328_115523_new_license_key_statuses','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','b8a52467-2379-4916-a4bf-3bff75f6a1a8'),(89,'craft','m180404_182320_edition_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','af93ae87-48d9-4f4f-a844-d5a4a15f25eb'),(90,'craft','m180411_102218_fix_db_routes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5f18e2f6-18d2-444c-8903-790db1675180'),(91,'craft','m180416_205628_resourcepaths_table','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','17666b99-c2aa-418e-9d33-9aa8bef3d916'),(92,'craft','m180418_205713_widget_cleanup','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','946d65ed-7d33-4331-b46c-430726799fc6'),(93,'craft','m180425_203349_searchable_fields','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','96bf3480-eb3a-439d-93c4-9c3b649754b9'),(94,'craft','m180516_153000_uids_in_field_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','37f4e2bf-795c-43b7-a409-27d0c27c0bfd'),(95,'craft','m180517_173000_user_photo_volume_to_uid','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','6eb7cdfd-9aee-473a-9cbb-19cbcdf416c2'),(96,'craft','m180518_173000_permissions_to_uid','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','abcd3eb2-e2a4-4b31-bab5-c28825911307'),(97,'craft','m180520_173000_matrix_context_to_uids','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','49057630-6487-4492-849a-39572138b4d7'),(98,'craft','m180521_172900_project_config_table','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','85f6e010-3e74-41bd-9aa8-47940acda47c'),(99,'craft','m180521_173000_initial_yml_and_snapshot','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','dbcf4176-97ee-42a5-bade-6cf8d5acc17b'),(100,'craft','m180731_162030_soft_delete_sites','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','81da7f80-a37f-4b10-9caf-e03d03e46f8b'),(101,'craft','m180810_214427_soft_delete_field_layouts','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','e574177f-c829-48ff-b01a-10f725123331'),(102,'craft','m180810_214439_soft_delete_elements','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','98eb141f-fd6b-476a-8b2c-49c7e20a623e'),(103,'craft','m180824_193422_case_sensitivity_fixes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','55b3694e-55c8-48c3-8532-82d299647e81'),(104,'craft','m180901_151639_fix_matrixcontent_tables','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d25cd5b9-2fd6-4605-ac07-66c997817340'),(105,'craft','m180904_112109_permission_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','32da2aae-356f-4bd4-97b8-185f82a61a7e'),(106,'craft','m180910_142030_soft_delete_sitegroups','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','6e1d7d57-f0e5-4cc6-8aa9-83995699e19a'),(107,'craft','m181011_160000_soft_delete_asset_support','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','54ff94a2-38aa-4f7e-b86b-91fbda8870f8'),(108,'craft','m181016_183648_set_default_user_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','c1a5ed06-9ce1-455e-a186-10802506b13f'),(109,'craft','m181017_225222_system_config_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','423da44d-85a8-4f3a-8e76-c4a8713f4941'),(110,'craft','m181018_222343_drop_userpermissions_from_config','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','49b0843b-e91b-424c-90c1-99c893d70178'),(111,'craft','m181029_130000_add_transforms_routes_to_config','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','6433ea50-9d42-4161-b22e-1eae8bcd96a0'),(112,'craft','m181112_203955_sequences_table','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','863f3a7e-1c8d-42a4-9c36-0363ad89b3b3'),(113,'craft','m181121_001712_cleanup_field_configs','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','77d3ae92-79dc-4829-9ce2-cab96dfdb61f'),(114,'craft','m181128_193942_fix_project_config','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','4185d4c3-da6f-40bc-9882-54669dba42f9'),(115,'craft','m181130_143040_fix_schema_version','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','f9ab12df-252f-4a8b-8b06-ea024954fb14'),(116,'craft','m181211_143040_fix_entry_type_uids','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','74370f2d-c7aa-4376-bc0e-86b75d275218'),(117,'craft','m181217_153000_fix_structure_uids','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','60b6a2c8-9a20-4abf-a869-6695be34c5eb'),(118,'craft','m190104_152725_store_licensed_plugin_editions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','72678cda-d4e1-4fba-825f-7282a3a8fefb'),(119,'craft','m190108_110000_cleanup_project_config','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ff185cd4-8ca7-4df3-ab63-eb2d421afa11'),(120,'craft','m190108_113000_asset_field_setting_change','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','cc5ba2d8-2511-4168-9786-c57281d711a8'),(121,'craft','m190109_172845_fix_colspan','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','6e59748f-9aad-4bb7-b4b2-abb3b9c406a3'),(122,'craft','m190110_150000_prune_nonexisting_sites','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','2512f797-5777-457f-8872-06cb40d791ba'),(123,'craft','m190110_214819_soft_delete_volumes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','b7e183ce-2be9-4574-a32d-a1c93cedddb3'),(124,'craft','m190112_124737_fix_user_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','d442c48e-2c3e-4adc-8fb2-55b1d7189a0e'),(125,'craft','m190112_131225_fix_field_layouts','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','54764f34-1944-4595-bd12-2a29ed010ff2'),(126,'craft','m190112_201010_more_soft_deletes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5ab2057c-d4ff-4943-9b9f-d2b173e09cab'),(127,'craft','m190114_143000_more_asset_field_setting_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8e21f419-d018-47c5-85ab-5d3626e12d83'),(128,'craft','m190121_120000_rich_text_config_setting','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','b0fea595-e5b0-4cdb-85a0-de82d1912e76'),(129,'craft','m190125_191628_fix_email_transport_password','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','0fcf96f5-9ade-4b63-9779-a62401da98e3'),(130,'craft','m190128_181422_cleanup_volume_folders','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','1bc9116f-1983-4afc-bbce-d190e6111eb8'),(131,'craft','m190205_140000_fix_asset_soft_delete_index','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','20661d36-fe00-4bcf-aeec-fd9f69672411'),(132,'craft','m190218_143000_element_index_settings_uid','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','f72f9d17-d932-4841-862c-047ff6041571'),(133,'craft','m190312_152740_element_revisions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','88c5ac5a-b167-44f2-8d43-de9f3aa6ad89'),(134,'craft','m190327_235137_propagation_method','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','9bc0a4bf-d951-40bb-888f-330bc9178e62'),(135,'craft','m190401_223843_drop_old_indexes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ae822a19-237f-4bd2-b7c0-d761ffb8b16e'),(136,'craft','m190416_014525_drop_unique_global_indexes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','cab90cf6-3b44-46ee-a632-1b62faf6fb93'),(137,'craft','m190417_085010_add_image_editor_permissions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5402f002-0115-44a5-8b04-5d24aa469c6d'),(138,'craft','m190502_122019_store_default_user_group_uid','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','22b597e6-0652-45b2-97fd-26301e3fbb28'),(139,'craft','m190504_150349_preview_targets','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','87a97cd0-9ca3-42e5-a163-4a4ce60e71cc'),(140,'craft','m190516_184711_job_progress_label','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','7c335a40-e5b2-4c0a-a879-83eb1b7aace6'),(141,'craft','m190523_190303_optional_revision_creators','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','c19d7017-5daa-4e92-8d94-837ca1fb067c'),(142,'craft','m190529_204501_fix_duplicate_uids','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','65d3b792-39ee-443a-817b-7b76efcbff60'),(143,'craft','m190605_223807_unsaved_drafts','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','a4924678-897c-42e5-b675-3dc43842e461'),(144,'craft','m190607_230042_entry_revision_error_tables','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','012c1ac9-962a-4e2d-a118-8236e53e5ea6'),(145,'craft','m190608_033429_drop_elements_uid_idx','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','41e313fd-9aba-481a-bf11-c9c9c1c50736'),(146,'craft','m190617_164400_add_gqlschemas_table','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','42de061d-40d3-4174-9961-a057fb0265c1'),(147,'craft','m190624_234204_matrix_propagation_method','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','afe34fda-8d1b-495a-9a6d-8f5050083cd1'),(148,'craft','m190711_153020_drop_snapshots','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','0cfab76d-299b-4099-81b9-0739e46fab09'),(149,'craft','m190712_195914_no_draft_revisions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','0142aa28-c91f-4e7b-82d1-23bad68f4ede'),(150,'craft','m190723_140314_fix_preview_targets_column','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','677ad8e8-1200-4e84-9c10-f7236ce8eff1'),(151,'craft','m190820_003519_flush_compiled_templates','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','20cccb8e-b2e2-47f2-b83a-351fe1431751'),(152,'craft','m190823_020339_optional_draft_creators','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','80362e1e-752e-455b-961b-979442abd147'),(153,'craft','m190913_152146_update_preview_targets','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','dbf9d3ea-970b-407f-8022-96828e6b348e'),(154,'craft','m191107_122000_add_gql_project_config_support','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8f2c6d7c-2868-432c-872f-48a47dbfc6b5'),(155,'craft','m191204_085100_pack_savable_component_settings','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','5798b8b7-4136-4896-be12-2dc6956f14a1'),(156,'craft','m191206_001148_change_tracking','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','29112c7a-a2d4-435d-a791-4126081213ff'),(157,'craft','m191216_191635_asset_upload_tracking','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','11ee1d4e-4869-4155-ba6d-aab60299d5e5'),(158,'craft','m191222_002848_peer_asset_permissions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','fa233bb0-35a1-4d8a-ac05-b7caae8c99e4'),(159,'craft','m200127_172522_queue_channels','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','2389e114-08f2-4269-9066-03364679b861'),(160,'craft','m200211_175048_truncate_element_query_cache','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','6da980ad-9404-40a8-896a-07750d4473af'),(161,'craft','m200213_172522_new_elements_index','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','3c6d5a27-c308-412a-b8f9-740757d1415f'),(162,'craft','m200228_195211_long_deprecation_messages','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','355015f0-8a6b-49d5-b1b0-a6ad9773c622'),(163,'craft','m200306_054652_disabled_sites','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','6702a689-7ed8-4a7c-8b74-a7f87d342cbd'),(164,'craft','m200522_191453_clear_template_caches','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','7f75ab40-8001-4715-a0dd-e5610a049651'),(165,'craft','m200606_231117_migration_tracks','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','c402b19a-6cd8-4be7-b5c3-ed3023c71ba8'),(166,'craft','m200619_215137_title_translation_method','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','58e471b3-69b8-4908-b34b-f357fd42027c'),(167,'craft','m200620_005028_user_group_descriptions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','35ad7d37-976e-49f3-a860-6ca6df8bde03'),(168,'craft','m200620_230205_field_layout_changes','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','fef49164-dc81-40c5-84a8-1031bc2dbaa8'),(169,'craft','m200625_131100_move_entrytypes_to_top_project_config','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','187b2ff9-906f-4390-aa9b-2404025cec86'),(170,'craft','m200629_112700_remove_project_config_legacy_files','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ac2020fd-7c82-492c-8e36-3946fab7b12f'),(171,'craft','m200630_183000_drop_configmap','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','e743fe52-c8f1-479d-b7a0-c3698e99388d'),(172,'craft','m200715_113400_transform_index_error_flag','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','8e3b83a7-3b0f-4a7a-9929-e9d3d2b9a3ee'),(173,'craft','m200716_110900_replace_file_asset_permissions','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','ba15e510-4275-481c-ab56-29e99f3c7662'),(174,'craft','m200716_153800_public_token_settings_in_project_config','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','2940b743-c121-4da7-8d3e-602054c12acc'),(175,'craft','m200720_175543_drop_unique_constraints','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','aafd7832-33de-4938-b57c-233698bca07c'),(176,'craft','m200825_051217_project_config_version','2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','cc9f17d6-27cf-4634-ba76-dc9f0f90646b'); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plugins` -- DROP TABLE IF EXISTS `plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plugins` ( `id` int(11) NOT NULL AUTO_INCREMENT, `handle` varchar(255) NOT NULL, `version` varchar(255) NOT NULL, `schemaVersion` varchar(255) NOT NULL, `licenseKeyStatus` enum('valid','invalid','mismatched','astray','unknown') NOT NULL DEFAULT 'unknown', `licensedEdition` varchar(255) DEFAULT NULL, `installDate` datetime NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `plugins_handle_unq_idx` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plugins` -- LOCK TABLES `plugins` WRITE; /*!40000 ALTER TABLE `plugins` DISABLE KEYS */; /*!40000 ALTER TABLE `plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectconfig` -- DROP TABLE IF EXISTS `projectconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `projectconfig` ( `path` varchar(255) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`path`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectconfig` -- LOCK TABLES `projectconfig` WRITE; /*!40000 ALTER TABLE `projectconfig` DISABLE KEYS */; INSERT INTO `projectconfig` VALUES ('dateModified','1609266315'),('email.fromEmail','\"<EMAIL>\"'),('email.fromName','\"Vanilla Craft 3\"'),('email.transportType','\"craft\\\\mail\\\\transportadapters\\\\Sendmail\"'),('fieldGroups.e9cf98b7-cac8-4644-9b7a-469d14fd5547.name','\"Common\"'),('siteGroups.d7baad15-028d-432b-9a89-02ee476bb4a0.name','\"Vanilla Craft 3\"'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.baseUrl','\"$PRIMARY_SITE_URL\"'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.handle','\"default\"'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.hasUrls','true'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.language','\"en-GB\"'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.name','\"Vanilla Craft 3\"'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.primary','true'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.siteGroup','\"d7baad15-028d-432b-9a89-02ee476bb4a0\"'),('sites.ff462aa2-e8ac-42a9-85f4-0d887c7a61ab.sortOrder','1'),('system.edition','\"solo\"'),('system.live','true'),('system.name','\"Vanilla Craft 3\"'),('system.schemaVersion','\"3.5.13\"'),('system.timeZone','\"America/Los_Angeles\"'),('users.allowPublicRegistration','false'),('users.defaultGroup','null'),('users.photoSubpath','null'),('users.photoVolumeUid','null'),('users.requireEmailVerification','true'); /*!40000 ALTER TABLE `projectconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue` -- DROP TABLE IF EXISTS `queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `queue` ( `id` int(11) NOT NULL AUTO_INCREMENT, `channel` varchar(255) NOT NULL DEFAULT 'queue', `job` longblob NOT NULL, `description` text, `timePushed` int(11) NOT NULL, `ttr` int(11) NOT NULL, `delay` int(11) NOT NULL DEFAULT '0', `priority` int(11) unsigned NOT NULL DEFAULT '1024', `dateReserved` datetime DEFAULT NULL, `timeUpdated` int(11) DEFAULT NULL, `progress` smallint(6) NOT NULL DEFAULT '0', `progressLabel` varchar(255) DEFAULT NULL, `attempt` int(11) DEFAULT NULL, `fail` tinyint(1) DEFAULT '0', `dateFailed` datetime DEFAULT NULL, `error` text, PRIMARY KEY (`id`), KEY `queue_channel_fail_timeUpdated_timePushed_idx` (`channel`,`fail`,`timeUpdated`,`timePushed`), KEY `queue_channel_fail_timeUpdated_delay_idx` (`channel`,`fail`,`timeUpdated`,`delay`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queue` -- LOCK TABLES `queue` WRITE; /*!40000 ALTER TABLE `queue` DISABLE KEYS */; /*!40000 ALTER TABLE `queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `relations` -- DROP TABLE IF EXISTS `relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `relations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldId` int(11) NOT NULL, `sourceId` int(11) NOT NULL, `sourceSiteId` int(11) DEFAULT NULL, `targetId` int(11) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `relations_fieldId_sourceId_sourceSiteId_targetId_unq_idx` (`fieldId`,`sourceId`,`sourceSiteId`,`targetId`), KEY `relations_sourceId_idx` (`sourceId`), KEY `relations_targetId_idx` (`targetId`), KEY `relations_sourceSiteId_idx` (`sourceSiteId`), CONSTRAINT `relations_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE, CONSTRAINT `relations_sourceId_fk` FOREIGN KEY (`sourceId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `relations_sourceSiteId_fk` FOREIGN KEY (`sourceSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `relations_targetId_fk` FOREIGN KEY (`targetId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `relations` -- LOCK TABLES `relations` WRITE; /*!40000 ALTER TABLE `relations` DISABLE KEYS */; /*!40000 ALTER TABLE `relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `resourcepaths` -- DROP TABLE IF EXISTS `resourcepaths`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resourcepaths` ( `hash` varchar(255) NOT NULL, `path` varchar(255) NOT NULL, PRIMARY KEY (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `resourcepaths` -- LOCK TABLES `resourcepaths` WRITE; /*!40000 ALTER TABLE `resourcepaths` DISABLE KEYS */; /*!40000 ALTER TABLE `resourcepaths` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `revisions` -- DROP TABLE IF EXISTS `revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `revisions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sourceId` int(11) NOT NULL, `creatorId` int(11) DEFAULT NULL, `num` int(11) NOT NULL, `notes` text, PRIMARY KEY (`id`), UNIQUE KEY `revisions_sourceId_num_unq_idx` (`sourceId`,`num`), KEY `revisions_creatorId_fk` (`creatorId`), CONSTRAINT `revisions_creatorId_fk` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL, CONSTRAINT `revisions_sourceId_fk` FOREIGN KEY (`sourceId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `revisions` -- LOCK TABLES `revisions` WRITE; /*!40000 ALTER TABLE `revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `searchindex` -- DROP TABLE IF EXISTS `searchindex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `searchindex` ( `elementId` int(11) NOT NULL, `attribute` varchar(25) NOT NULL, `fieldId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `keywords` text NOT NULL, PRIMARY KEY (`elementId`,`attribute`,`fieldId`,`siteId`), FULLTEXT KEY `searchindex_keywords_idx` (`keywords`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `searchindex` -- LOCK TABLES `searchindex` WRITE; /*!40000 ALTER TABLE `searchindex` DISABLE KEYS */; INSERT INTO `searchindex` VALUES (1,'username',0,1,' admin '),(1,'firstname',0,1,''),(1,'lastname',0,1,''),(1,'fullname',0,1,''),(1,'email',0,1,' stephen manifest uk com '),(1,'slug',0,1,''); /*!40000 ALTER TABLE `searchindex` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sections` -- DROP TABLE IF EXISTS `sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `structureId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `type` enum('single','channel','structure') NOT NULL DEFAULT 'channel', `enableVersioning` tinyint(1) NOT NULL DEFAULT '0', `propagationMethod` varchar(255) NOT NULL DEFAULT 'all', `previewTargets` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `sections_handle_idx` (`handle`), KEY `sections_name_idx` (`name`), KEY `sections_structureId_idx` (`structureId`), KEY `sections_dateDeleted_idx` (`dateDeleted`), CONSTRAINT `sections_structureId_fk` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sections` -- LOCK TABLES `sections` WRITE; /*!40000 ALTER TABLE `sections` DISABLE KEYS */; /*!40000 ALTER TABLE `sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sections_sites` -- DROP TABLE IF EXISTS `sections_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sections_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sectionId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '1', `uriFormat` text, `template` varchar(500) DEFAULT NULL, `enabledByDefault` tinyint(1) NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `sections_sites_sectionId_siteId_unq_idx` (`sectionId`,`siteId`), KEY `sections_sites_siteId_idx` (`siteId`), CONSTRAINT `sections_sites_sectionId_fk` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE, CONSTRAINT `sections_sites_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sections_sites` -- LOCK TABLES `sections_sites` WRITE; /*!40000 ALTER TABLE `sections_sites` DISABLE KEYS */; /*!40000 ALTER TABLE `sections_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequences` -- DROP TABLE IF EXISTS `sequences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sequences` ( `name` varchar(255) NOT NULL, `next` int(11) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequences` -- LOCK TABLES `sequences` WRITE; /*!40000 ALTER TABLE `sequences` DISABLE KEYS */; /*!40000 ALTER TABLE `sequences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sessions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `token` char(100) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `sessions_uid_idx` (`uid`), KEY `sessions_token_idx` (`token`), KEY `sessions_dateUpdated_idx` (`dateUpdated`), KEY `sessions_userId_idx` (`userId`), CONSTRAINT `sessions_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shunnedmessages` -- DROP TABLE IF EXISTS `shunnedmessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shunnedmessages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `message` varchar(255) NOT NULL, `expiryDate` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `shunnedmessages_userId_message_unq_idx` (`userId`,`message`), CONSTRAINT `shunnedmessages_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shunnedmessages` -- LOCK TABLES `shunnedmessages` WRITE; /*!40000 ALTER TABLE `shunnedmessages` DISABLE KEYS */; /*!40000 ALTER TABLE `shunnedmessages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sitegroups` -- DROP TABLE IF EXISTS `sitegroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sitegroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `sitegroups_name_idx` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sitegroups` -- LOCK TABLES `sitegroups` WRITE; /*!40000 ALTER TABLE `sitegroups` DISABLE KEYS */; INSERT INTO `sitegroups` VALUES (1,'Vanilla Craft 3','2020-12-29 18:25:15','2020-12-29 18:25:15',NULL,'d7baad15-028d-432b-9a89-02ee476bb4a0'); /*!40000 ALTER TABLE `sitegroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sites` -- DROP TABLE IF EXISTS `sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) NOT NULL, `primary` tinyint(1) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `language` varchar(12) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '0', `baseUrl` varchar(255) DEFAULT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `sites_dateDeleted_idx` (`dateDeleted`), KEY `sites_handle_idx` (`handle`), KEY `sites_sortOrder_idx` (`sortOrder`), KEY `sites_groupId_fk` (`groupId`), CONSTRAINT `sites_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `sitegroups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sites` -- LOCK TABLES `sites` WRITE; /*!40000 ALTER TABLE `sites` DISABLE KEYS */; INSERT INTO `sites` VALUES (1,1,1,1,'Vanilla Craft 3','default','en-GB',1,'$PRIMARY_SITE_URL',1,'2020-12-29 18:25:15','2020-12-29 18:25:15',NULL,'ff462aa2-e8ac-42a9-85f4-0d887c7a61ab'); /*!40000 ALTER TABLE `sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `structureelements` -- DROP TABLE IF EXISTS `structureelements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `structureelements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `structureId` int(11) NOT NULL, `elementId` int(11) DEFAULT NULL, `root` int(11) unsigned DEFAULT NULL, `lft` int(11) unsigned NOT NULL, `rgt` int(11) unsigned NOT NULL, `level` smallint(6) unsigned NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `structureelements_structureId_elementId_unq_idx` (`structureId`,`elementId`), KEY `structureelements_root_idx` (`root`), KEY `structureelements_lft_idx` (`lft`), KEY `structureelements_rgt_idx` (`rgt`), KEY `structureelements_level_idx` (`level`), KEY `structureelements_elementId_idx` (`elementId`), CONSTRAINT `structureelements_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `structureelements_structureId_fk` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `structureelements` -- LOCK TABLES `structureelements` WRITE; /*!40000 ALTER TABLE `structureelements` DISABLE KEYS */; /*!40000 ALTER TABLE `structureelements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `structures` -- DROP TABLE IF EXISTS `structures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `structures` ( `id` int(11) NOT NULL AUTO_INCREMENT, `maxLevels` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `structures_dateDeleted_idx` (`dateDeleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `structures` -- LOCK TABLES `structures` WRITE; /*!40000 ALTER TABLE `structures` DISABLE KEYS */; /*!40000 ALTER TABLE `structures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `systemmessages` -- DROP TABLE IF EXISTS `systemmessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `systemmessages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `language` varchar(255) NOT NULL, `key` varchar(255) NOT NULL, `subject` text NOT NULL, `body` text NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `systemmessages_key_language_unq_idx` (`key`,`language`), KEY `systemmessages_language_idx` (`language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `systemmessages` -- LOCK TABLES `systemmessages` WRITE; /*!40000 ALTER TABLE `systemmessages` DISABLE KEYS */; /*!40000 ALTER TABLE `systemmessages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taggroups` -- DROP TABLE IF EXISTS `taggroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taggroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `taggroups_name_idx` (`name`), KEY `taggroups_handle_idx` (`handle`), KEY `taggroups_dateDeleted_idx` (`dateDeleted`), KEY `taggroups_fieldLayoutId_fk` (`fieldLayoutId`), CONSTRAINT `taggroups_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taggroups` -- LOCK TABLES `taggroups` WRITE; /*!40000 ALTER TABLE `taggroups` DISABLE KEYS */; /*!40000 ALTER TABLE `taggroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tags` ( `id` int(11) NOT NULL, `groupId` int(11) NOT NULL, `deletedWithGroup` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `tags_groupId_idx` (`groupId`), CONSTRAINT `tags_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `taggroups` (`id`) ON DELETE CASCADE, CONSTRAINT `tags_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `templatecacheelements` -- DROP TABLE IF EXISTS `templatecacheelements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `templatecacheelements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cacheId` int(11) NOT NULL, `elementId` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `templatecacheelements_cacheId_idx` (`cacheId`), KEY `templatecacheelements_elementId_idx` (`elementId`), CONSTRAINT `templatecacheelements_cacheId_fk` FOREIGN KEY (`cacheId`) REFERENCES `templatecaches` (`id`) ON DELETE CASCADE, CONSTRAINT `templatecacheelements_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `templatecacheelements` -- LOCK TABLES `templatecacheelements` WRITE; /*!40000 ALTER TABLE `templatecacheelements` DISABLE KEYS */; /*!40000 ALTER TABLE `templatecacheelements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `templatecachequeries` -- DROP TABLE IF EXISTS `templatecachequeries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `templatecachequeries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cacheId` int(11) NOT NULL, `type` varchar(255) NOT NULL, `query` longtext NOT NULL, PRIMARY KEY (`id`), KEY `templatecachequeries_cacheId_idx` (`cacheId`), KEY `templatecachequeries_type_idx` (`type`), CONSTRAINT `templatecachequeries_cacheId_fk` FOREIGN KEY (`cacheId`) REFERENCES `templatecaches` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `templatecachequeries` -- LOCK TABLES `templatecachequeries` WRITE; /*!40000 ALTER TABLE `templatecachequeries` DISABLE KEYS */; /*!40000 ALTER TABLE `templatecachequeries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `templatecaches` -- DROP TABLE IF EXISTS `templatecaches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `templatecaches` ( `id` int(11) NOT NULL AUTO_INCREMENT, `siteId` int(11) NOT NULL, `cacheKey` varchar(255) NOT NULL, `path` varchar(255) DEFAULT NULL, `expiryDate` datetime NOT NULL, `body` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `templatecaches_cacheKey_siteId_expiryDate_path_idx` (`cacheKey`,`siteId`,`expiryDate`,`path`), KEY `templatecaches_cacheKey_siteId_expiryDate_idx` (`cacheKey`,`siteId`,`expiryDate`), KEY `templatecaches_siteId_idx` (`siteId`), CONSTRAINT `templatecaches_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `templatecaches` -- LOCK TABLES `templatecaches` WRITE; /*!40000 ALTER TABLE `templatecaches` DISABLE KEYS */; /*!40000 ALTER TABLE `templatecaches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tokens` -- DROP TABLE IF EXISTS `tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tokens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `token` char(32) NOT NULL, `route` text, `usageLimit` tinyint(3) unsigned DEFAULT NULL, `usageCount` tinyint(3) unsigned DEFAULT NULL, `expiryDate` datetime NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `tokens_token_unq_idx` (`token`), KEY `tokens_expiryDate_idx` (`expiryDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tokens` -- LOCK TABLES `tokens` WRITE; /*!40000 ALTER TABLE `tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usergroups` -- DROP TABLE IF EXISTS `usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usergroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `description` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `usergroups_handle_idx` (`handle`), KEY `usergroups_name_idx` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usergroups` -- LOCK TABLES `usergroups` WRITE; /*!40000 ALTER TABLE `usergroups` DISABLE KEYS */; /*!40000 ALTER TABLE `usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usergroups_users` -- DROP TABLE IF EXISTS `usergroups_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usergroups_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) NOT NULL, `userId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `usergroups_users_groupId_userId_unq_idx` (`groupId`,`userId`), KEY `usergroups_users_userId_idx` (`userId`), CONSTRAINT `usergroups_users_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE, CONSTRAINT `usergroups_users_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usergroups_users` -- LOCK TABLES `usergroups_users` WRITE; /*!40000 ALTER TABLE `usergroups_users` DISABLE KEYS */; /*!40000 ALTER TABLE `usergroups_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userpermissions` -- DROP TABLE IF EXISTS `userpermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `userpermissions_name_unq_idx` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userpermissions` -- LOCK TABLES `userpermissions` WRITE; /*!40000 ALTER TABLE `userpermissions` DISABLE KEYS */; /*!40000 ALTER TABLE `userpermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userpermissions_usergroups` -- DROP TABLE IF EXISTS `userpermissions_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions_usergroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permissionId` int(11) NOT NULL, `groupId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `userpermissions_usergroups_permissionId_groupId_unq_idx` (`permissionId`,`groupId`), KEY `userpermissions_usergroups_groupId_idx` (`groupId`), CONSTRAINT `userpermissions_usergroups_groupId_fk` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE, CONSTRAINT `userpermissions_usergroups_permissionId_fk` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userpermissions_usergroups` -- LOCK TABLES `userpermissions_usergroups` WRITE; /*!40000 ALTER TABLE `userpermissions_usergroups` DISABLE KEYS */; /*!40000 ALTER TABLE `userpermissions_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userpermissions_users` -- DROP TABLE IF EXISTS `userpermissions_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permissionId` int(11) NOT NULL, `userId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `userpermissions_users_permissionId_userId_unq_idx` (`permissionId`,`userId`), KEY `userpermissions_users_userId_idx` (`userId`), CONSTRAINT `userpermissions_users_permissionId_fk` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE, CONSTRAINT `userpermissions_users_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userpermissions_users` -- LOCK TABLES `userpermissions_users` WRITE; /*!40000 ALTER TABLE `userpermissions_users` DISABLE KEYS */; /*!40000 ALTER TABLE `userpermissions_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userpreferences` -- DROP TABLE IF EXISTS `userpreferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpreferences` ( `userId` int(11) NOT NULL AUTO_INCREMENT, `preferences` text, PRIMARY KEY (`userId`), CONSTRAINT `userpreferences_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userpreferences` -- LOCK TABLES `userpreferences` WRITE; /*!40000 ALTER TABLE `userpreferences` DISABLE KEYS */; INSERT INTO `userpreferences` VALUES (1,'{\"language\":\"en-GB\"}'); /*!40000 ALTER TABLE `userpreferences` 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, `username` varchar(100) NOT NULL, `photoId` int(11) DEFAULT NULL, `firstName` varchar(100) DEFAULT NULL, `lastName` varchar(100) DEFAULT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) DEFAULT NULL, `admin` tinyint(1) NOT NULL DEFAULT '0', `locked` tinyint(1) NOT NULL DEFAULT '0', `suspended` tinyint(1) NOT NULL DEFAULT '0', `pending` tinyint(1) NOT NULL DEFAULT '0', `lastLoginDate` datetime DEFAULT NULL, `lastLoginAttemptIp` varchar(45) DEFAULT NULL, `invalidLoginWindowStart` datetime DEFAULT NULL, `invalidLoginCount` tinyint(3) unsigned DEFAULT NULL, `lastInvalidLoginDate` datetime DEFAULT NULL, `lockoutDate` datetime DEFAULT NULL, `hasDashboard` tinyint(1) NOT NULL DEFAULT '0', `verificationCode` varchar(255) DEFAULT NULL, `verificationCodeIssuedDate` datetime DEFAULT NULL, `unverifiedEmail` varchar(255) DEFAULT NULL, `passwordResetRequired` tinyint(1) NOT NULL DEFAULT '0', `lastPasswordChangeDate` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `users_uid_idx` (`uid`), KEY `users_verificationCode_idx` (`verificationCode`), KEY `users_email_idx` (`email`), KEY `users_username_idx` (`username`), KEY `users_photoId_fk` (`photoId`), CONSTRAINT `users_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `users_photoId_fk` FOREIGN KEY (`photoId`) REFERENCES `assets` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!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,'admin',NULL,NULL,NULL,'<EMAIL>','$2y$13$LYRuspZ2HVtCfsiVGQP6PeZiwiGqf/nnWceUT7LpubKmYXG9Jof16',1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2020-12-29 18:25:16','2020-12-29 18:25:16','2020-12-29 18:25:16','589d1ffd-5aef-4b84-af31-3709b8e50186'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `volumefolders` -- DROP TABLE IF EXISTS `volumefolders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `volumefolders` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parentId` int(11) DEFAULT NULL, `volumeId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `path` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `volumefolders_name_parentId_volumeId_unq_idx` (`name`,`parentId`,`volumeId`), KEY `volumefolders_parentId_idx` (`parentId`), KEY `volumefolders_volumeId_idx` (`volumeId`), CONSTRAINT `volumefolders_parentId_fk` FOREIGN KEY (`parentId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE, CONSTRAINT `volumefolders_volumeId_fk` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `volumefolders` -- LOCK TABLES `volumefolders` WRITE; /*!40000 ALTER TABLE `volumefolders` DISABLE KEYS */; /*!40000 ALTER TABLE `volumefolders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `volumes` -- DROP TABLE IF EXISTS `volumes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `volumes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '1', `url` varchar(255) DEFAULT NULL, `settings` text, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `volumes_name_idx` (`name`), KEY `volumes_handle_idx` (`handle`), KEY `volumes_fieldLayoutId_idx` (`fieldLayoutId`), KEY `volumes_dateDeleted_idx` (`dateDeleted`), CONSTRAINT `volumes_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `volumes` -- LOCK TABLES `volumes` WRITE; /*!40000 ALTER TABLE `volumes` DISABLE KEYS */; /*!40000 ALTER TABLE `volumes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widgets` -- DROP TABLE IF EXISTS `widgets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widgets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `type` varchar(255) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `colspan` tinyint(3) DEFAULT NULL, `settings` text, `enabled` tinyint(1) NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `widgets_userId_idx` (`userId`), CONSTRAINT `widgets_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widgets` -- LOCK TABLES `widgets` WRITE; /*!40000 ALTER TABLE `widgets` DISABLE KEYS */; /*!40000 ALTER TABLE `widgets` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'vanilla_craft3' -- /*!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-12-29 18:27:04
select a from tbl1 /*comment here*/ ; /*and here*/ select b from tbl2; -- trailling ending comment
<filename>contributions/sqlServer/Employee.table.sql CREATE TABLE [Employee] ( [Salary] decimal(10,1) NULL , [employee_id] uniqueidentifier NOT NULL , [person_id] uniqueidentifier NOT NULL , [department_id] uniqueidentifier NOT NULL , [IsManager] bit NOT NULL )
-- file:privileges.sql ln:618 expect:true select has_table_privilege(t2.oid,'pg_authid','delete') from (select oid from pg_roles where rolname = current_user) as t2
<gh_stars>10-100 create database breakingbad; use breakingbad; CREATE TABLE characters ( char_id int primary key, char_name varchar(30), char_bd varchar(10), char_oc varchar(50), char_img varchar(150), char_status varchar(20), char_nickname varchar(20), char_appearance varchar(15), char_portrayed varchar(30), char_category varchar(50), char_bcs_a varchar(15) );
CREATE PROCEDURE [DemoCdc].[spExecutePostsCdcOutbox] @MaxQuerySize INT = 100, -- Maximum size of query to limit the number of changes to a manageable batch (performance vs failure trade-off). @CorrelationId NVARCHAR(64) = NULL, -- Correlation identifier to aid tracking of outbox execution and corresponding events. @ContinueWithDataLoss BIT = 0 -- Ignores data loss and continues; versus throwing an error. AS BEGIN /* * This is automatically generated; any changes will be lost. */ SET NOCOUNT ON; BEGIN TRY -- Wrap in a transaction. BEGIN TRANSACTION -- Declare variables. DECLARE @PostsBaseMinLsn BINARY(10), @PostsMinLsn BINARY(10), @PostsMaxLsn BINARY(10) DECLARE @CommentsBaseMinLsn BINARY(10), @CommentsMinLsn BINARY(10), @CommentsMaxLsn BINARY(10) DECLARE @CommentsTagsBaseMinLsn BINARY(10), @CommentsTagsMinLsn BINARY(10), @CommentsTagsMaxLsn BINARY(10) DECLARE @PostsTagsBaseMinLsn BINARY(10), @PostsTagsMinLsn BINARY(10), @PostsTagsMaxLsn BINARY(10) DECLARE @OutboxId INT -- Get the latest 'base' minimum. SET @PostsBaseMinLsn = sys.fn_cdc_get_min_lsn('Legacy_Posts'); SET @CommentsBaseMinLsn = sys.fn_cdc_get_min_lsn('Legacy_Comments'); SET @CommentsTagsBaseMinLsn = sys.fn_cdc_get_min_lsn('Legacy_Tags'); SET @PostsTagsBaseMinLsn = sys.fn_cdc_get_min_lsn('Legacy_Tags'); -- Check if there is already an incomplete batch and attempt to reprocess. SELECT @PostsMinLsn = [_outbox].[PostsMinLsn], @PostsMaxLsn = [_outbox].[PostsMaxLsn], @CommentsMinLsn = [_outbox].[CommentsMinLsn], @CommentsMaxLsn = [_outbox].[CommentsMaxLsn], @CommentsTagsMinLsn = [_outbox].[CommentsTagsMinLsn], @CommentsTagsMaxLsn = [_outbox].[CommentsTagsMaxLsn], @PostsTagsMinLsn = [_outbox].[PostsTagsMinLsn], @PostsTagsMaxLsn = [_outbox].[PostsTagsMaxLsn], @OutboxId = [OutboxId] FROM [DemoCdc].[PostsOutbox] AS [_outbox] WHERE [_outbox].[IsComplete] = 0 ORDER BY [_outbox].[OutboxId] -- There should never be more than one incomplete outbox. IF @@ROWCOUNT > 1 BEGIN ;THROW 56002, 'There are multiple incomplete outboxes; there should not be more than one incomplete outbox at any one time.', 1 END -- Where there is no incomplete outbox then the next should be processed. IF (@OutboxId IS NULL) BEGIN -- Get the last outbox processed. SELECT TOP 1 @PostsMinLsn = [_outbox].[PostsMaxLsn], @CommentsMinLsn = [_outbox].[CommentsMaxLsn], @CommentsTagsMinLsn = [_outbox].[CommentsTagsMaxLsn], @PostsTagsMinLsn = [_outbox].[PostsTagsMaxLsn] FROM [DemoCdc].[PostsOutbox] AS [_outbox] ORDER BY [_outbox].[IsComplete] ASC, [_outbox].[OutboxId] DESC IF (@@ROWCOUNT = 0) -- No previous outbox; i.e. is the first time! BEGIN SET @PostsMinLsn = @PostsBaseMinLsn; SET @CommentsMinLsn = @CommentsBaseMinLsn; SET @CommentsTagsMinLsn = @CommentsTagsBaseMinLsn; SET @PostsTagsMinLsn = @PostsTagsBaseMinLsn; END ELSE BEGIN -- Increment the minimum as the last has already been processed. SET @PostsMinLsn = sys.fn_cdc_increment_lsn(@PostsMinLsn) SET @CommentsMinLsn = sys.fn_cdc_increment_lsn(@CommentsMinLsn) SET @CommentsTagsMinLsn = sys.fn_cdc_increment_lsn(@CommentsTagsMinLsn) SET @PostsTagsMinLsn = sys.fn_cdc_increment_lsn(@PostsTagsMinLsn) END -- Get the maximum LSN. SET @PostsMaxLsn = sys.fn_cdc_get_max_lsn(); SET @CommentsMaxLsn = @PostsMaxLsn SET @CommentsTagsMaxLsn = @PostsMaxLsn SET @PostsTagsMaxLsn = @PostsMaxLsn -- Verify the maximum query size and correct (reset) where applicable. IF (@MaxQuerySize IS NULL OR @MaxQuerySize < 1 OR @MaxQuerySize > 10000) BEGIN SET @MaxQuerySize = 100 END END -- The minimum should _not_ be less than the base otherwise we have lost data; either continue with this data loss, or error and stop. DECLARE @hasDataLoss BIT SET @hasDataLoss = 0 IF (@PostsMinLsn < @PostsBaseMinLsn) BEGIN IF (@ContinueWithDataLoss = 1) BEGIN SET @hasDataLoss = 1; SET @PostsMinLsn = @PostsBaseMinLsn END ELSE BEGIN ;THROW 56002, 'Unexpected data loss error for ''Legacy.Posts''; this indicates that the CDC data has probably been cleaned up before being successfully processed.', 1; END END IF (@CommentsMinLsn < @CommentsBaseMinLsn) BEGIN IF (@ContinueWithDataLoss = 1) BEGIN SET @hasDataLoss = 1; SET @CommentsMinLsn = @CommentsBaseMinLsn END ELSE BEGIN ;THROW 56002, 'Unexpected data loss error for ''Legacy.Comments''; this indicates that the CDC data has probably been cleaned up before being successfully processed.', 1; END END IF (@CommentsTagsMinLsn < @CommentsTagsBaseMinLsn) BEGIN IF (@ContinueWithDataLoss = 1) BEGIN SET @hasDataLoss = 1; SET @CommentsTagsMinLsn = @CommentsTagsBaseMinLsn END ELSE BEGIN ;THROW 56002, 'Unexpected data loss error for ''Legacy.Tags''; this indicates that the CDC data has probably been cleaned up before being successfully processed.', 1; END END IF (@PostsTagsMinLsn < @PostsTagsBaseMinLsn) BEGIN IF (@ContinueWithDataLoss = 1) BEGIN SET @hasDataLoss = 1; SET @PostsTagsMinLsn = @PostsTagsBaseMinLsn END ELSE BEGIN ;THROW 56002, 'Unexpected data loss error for ''Legacy.Tags''; this indicates that the CDC data has probably been cleaned up before being successfully processed.', 1; END END -- Find changes on the root table: Legacy.Posts - this determines overall operation type: 'create', 'update' or 'delete'. DECLARE @hasChanges BIT SET @hasChanges = 0 IF (@PostsMinLsn <= @PostsMaxLsn) BEGIN SELECT TOP (@MaxQuerySize) [_cdc].[__$start_lsn] AS [_Lsn], [_cdc].[__$operation] AS [_Op], [_cdc].[PostsId] AS [PostsId] INTO #_changes FROM cdc.fn_cdc_get_all_changes_Legacy_Posts(@PostsMinLsn, @PostsMaxLsn, 'all') AS [_cdc] ORDER BY [_cdc].[__$start_lsn] IF (@@ROWCOUNT <> 0) BEGIN SET @hasChanges = 1 SELECT @PostsMinLsn = MIN([_Lsn]), @PostsMaxLsn = MAX([_Lsn]) FROM #_changes END END -- Find changes on related table: Comments (Legacy.Comments) - assume all are 'update' operation (i.e. it doesn't matter). IF (@CommentsMinLsn <= @CommentsMaxLsn) BEGIN SELECT TOP (@MaxQuerySize) [_cdc].[__$start_lsn] AS [_Lsn], 4 AS [_Op], [p].[PostsId] AS [PostsId] INTO #c FROM cdc.fn_cdc_get_all_changes_Legacy_Comments(@CommentsMinLsn, @CommentsMaxLsn, 'all') AS [_cdc] INNER JOIN [Legacy].[Posts] AS [p] WITH (NOLOCK) ON ([_cdc].[PostsId] = [p].[PostsId]) ORDER BY [_cdc].[__$start_lsn] IF (@@ROWCOUNT <> 0) BEGIN SET @hasChanges = 1 SELECT @CommentsMinLsn = MIN([_Lsn]), @CommentsMaxLsn = MAX([_Lsn]) FROM #c INSERT INTO #_changes SELECT * FROM #c AS [_c] WHERE NOT EXISTS (SELECT * FROM #_changes AS [_chg] WHERE [_chg].[PostsId] = [_c].[PostsId]) END END -- Find changes on related table: CommentsTags (Legacy.Tags) - assume all are 'update' operation (i.e. it doesn't matter). IF (@CommentsTagsMinLsn <= @CommentsTagsMaxLsn) BEGIN SELECT TOP (@MaxQuerySize) [_cdc].[__$start_lsn] AS [_Lsn], 4 AS [_Op], [p].[PostsId] AS [PostsId] INTO #ct FROM cdc.fn_cdc_get_all_changes_Legacy_Tags(@CommentsTagsMinLsn, @CommentsTagsMaxLsn, 'all') AS [_cdc] INNER JOIN [Legacy].[Comments] AS [c] WITH (NOLOCK) ON ([_cdc].[ParentType] = 'C' AND [_cdc].[ParentId] = [c].[CommentsId]) INNER JOIN [Legacy].[Posts] AS [p] WITH (NOLOCK) ON ([c].[PostsId] = [p].[PostsId]) ORDER BY [_cdc].[__$start_lsn] IF (@@ROWCOUNT <> 0) BEGIN SET @hasChanges = 1 SELECT @CommentsTagsMinLsn = MIN([_Lsn]), @CommentsTagsMaxLsn = MAX([_Lsn]) FROM #ct INSERT INTO #_changes SELECT * FROM #ct AS [_ct] WHERE NOT EXISTS (SELECT * FROM #_changes AS [_chg] WHERE [_chg].[PostsId] = [_ct].[PostsId]) END END -- Find changes on related table: PostsTags (Legacy.Tags) - assume all are 'update' operation (i.e. it doesn't matter). IF (@PostsTagsMinLsn <= @PostsTagsMaxLsn) BEGIN SELECT TOP (@MaxQuerySize) [_cdc].[__$start_lsn] AS [_Lsn], 4 AS [_Op], [p].[PostsId] AS [PostsId] INTO #pt FROM cdc.fn_cdc_get_all_changes_Legacy_Tags(@PostsTagsMinLsn, @PostsTagsMaxLsn, 'all') AS [_cdc] INNER JOIN [Legacy].[Posts] AS [p] WITH (NOLOCK) ON ([_cdc].[ParentType] = 'P' AND [_cdc].[ParentId] = [p].[PostsId]) ORDER BY [_cdc].[__$start_lsn] IF (@@ROWCOUNT <> 0) BEGIN SET @hasChanges = 1 SELECT @PostsTagsMinLsn = MIN([_Lsn]), @PostsTagsMaxLsn = MAX([_Lsn]) FROM #pt INSERT INTO #_changes SELECT * FROM #pt AS [_pt] WHERE NOT EXISTS (SELECT * FROM #_changes AS [_chg] WHERE [_chg].[PostsId] = [_pt].[PostsId]) END END -- Create a new outbox where not processing an existing. IF (@OutboxId IS NULL AND (@hasDataLoss = 1 OR @hasChanges = 1)) BEGIN DECLARE @InsertedOutboxId TABLE([OutboxId] INT) INSERT INTO [DemoCdc].[PostsOutbox] ( [PostsMinLsn], [PostsMaxLsn], [CommentsMinLsn], [CommentsMaxLsn], [CommentsTagsMinLsn], [CommentsTagsMaxLsn], [PostsTagsMinLsn], [PostsTagsMaxLsn], [CreatedDate], [IsComplete], [CorrelationId], [HasDataLoss] ) OUTPUT inserted.OutboxId INTO @InsertedOutboxId VALUES ( @PostsMinLsn, @PostsMaxLsn, @CommentsMinLsn, @CommentsMaxLsn, @CommentsTagsMinLsn, @CommentsTagsMaxLsn, @PostsTagsMinLsn, @PostsTagsMaxLsn, GETUTCDATE(), 0, @CorrelationId, @hasDataLoss ) SELECT @OutboxId = [OutboxId] FROM @InsertedOutboxId END ELSE BEGIN IF (@OutboxId IS NOT NULL AND @hasDataLoss = 1) BEGIN UPDATE [DemoCdc].[PostsOutbox] SET [HasDataLoss] = @hasDataLoss, [CorrelationId] = @CorrelationId WHERE [OutboxId] = @OutboxId END END -- Return the *latest* outbox data. SELECT [_outbox].[OutboxId], [_outbox].[CreatedDate], [_outbox].[IsComplete], [_outbox].[CompletedDate], [_outbox].[CorrelationId], [_outBox].[HasDataLoss] FROM [DemoCdc].[PostsOutbox] AS [_outbox] WHERE [_outbox].OutboxId = @OutboxId -- Exit here if there were no changes found. IF (@hasChanges = 0) BEGIN COMMIT TRANSACTION RETURN 0 END -- Root table: Legacy.Posts - uses LEFT OUTER JOIN's to get the deleted records, as well as any previous Tracking Hash value. SELECT [_chg].[_Op] AS [_OperationType], [_chg].[_Lsn] AS [_Lsn], [_ct].[Hash] AS [_TrackingHash], [_chg].[PostsId] AS [PostsId], [p].[PostsId] AS [TableKey_PostsId], [p].[Text] AS [Text], [p].[Date] AS [Date] FROM #_changes AS [_chg] LEFT OUTER JOIN [Legacy].[Posts] AS [p] ON ([p].[PostsId] = [_chg].[PostsId]) LEFT OUTER JOIN [DemoCdc].[CdcTracking] AS [_ct] ON ([_ct].[Schema] = 'Legacy' AND [_ct].[Table] = 'Posts' AND [_ct].[Key] = CAST([_chg].[PostsId] AS NVARCHAR(128))) -- Related table: Comments (Legacy.Comments) - only use INNER JOINS to get what is actually there right now (where applicable). SELECT DISTINCT [c].[CommentsId] AS [CommentsId], [c].[PostsId] AS [PostsId], [c].[Text] AS [Text], [c].[Date] AS [Date] FROM #_changes AS [_chg] INNER JOIN [Legacy].[Posts] AS [p] ON ([p].[PostsId] = [_chg].[PostsId]) INNER JOIN [Legacy].[Comments] AS [c] ON ([c].[PostsId] = [p].[PostsId]) WHERE [_chg].[_Op] <> 1 -- Related table: CommentsTags (Legacy.Tags) - only use INNER JOINS to get what is actually there right now (where applicable). SELECT DISTINCT [p].[PostsId] AS [Posts_PostsId], -- Additional joining column (informational). [ct].[TagsId] AS [TagsId], [ct].[ParentId] AS [CommentsId], [ct].[Text] AS [Text] FROM #_changes AS [_chg] INNER JOIN [Legacy].[Posts] AS [p] ON ([p].[PostsId] = [_chg].[PostsId]) INNER JOIN [Legacy].[Comments] AS [c] ON ([c].[PostsId] = [p].[PostsId]) INNER JOIN [Legacy].[Tags] AS [ct] ON ([ct].[ParentType] = 'C' AND [ct].[ParentId] = [c].[CommentsId]) WHERE [_chg].[_Op] <> 1 -- Related table: PostsTags (Legacy.Tags) - only use INNER JOINS to get what is actually there right now (where applicable). SELECT DISTINCT [pt].[TagsId] AS [TagsId], [pt].[ParentId] AS [PostsId], [pt].[Text] AS [Text] FROM #_changes AS [_chg] INNER JOIN [Legacy].[Posts] AS [p] ON ([p].[PostsId] = [_chg].[PostsId]) INNER JOIN [Legacy].[Tags] AS [pt] ON ([pt].[ParentType] = 'P' AND [pt].[ParentId] = [p].[PostsId]) WHERE [_chg].[_Op] <> 1 -- Commit the transaction. COMMIT TRANSACTION RETURN 0 END TRY BEGIN CATCH -- Rollback transaction and rethrow error. IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION; THROW; END CATCH END
<gh_stars>1-10 create extension if not exists pg_trm; create extension if not exists pgcrypto; drop table if exists bugs; drop table if exists tags; drop table if exists article_tags; drop table if exists pubkeys cascade; drop table if exists users cascade; drop table if exists articles cascade; drop table if exists comments; create table bugs ( id serial unique, created timestamp with time zone default now(), name text not null, descr text not null, url text not null ); insert into bugs (name, descr, url) values ('Colorado BSD Users Group', '*BSD user group in colerful Colorado!', 'https://cobug.org'); insert into bugs (name, descr, url) values ('New York City BSD User Group', 'NYC*BUG (pronounced "nice bug") is the *BSD user group serving the metropolitan NYC area!', 'https://www.nycbug.org/'); insert into bugs (name, descr, url) values ('Capital District BSD User Group', 'Capital District *BSD User Group serving the NY Captial District (Albany, Troy, Schenectedy) area!', 'https://cdbug.org'); insert into bugs (name, descr, url) values ('Knoxville BSD User Group', 'Knoxville BSD User Group serving Knoxville TN and the surrounding areas!', 'https://knoxbug.org'); insert into bugs (name, descr, url) values ('Chicago BSD User Group', 'Chicago BSD User Group serving the Chicago area!', 'https://chibug.org'); create table tags ( id serial unique, created timestamp with time zone default now(), name text unique ); create table article_tags ( articleid int, tagid int ); create table users ( id serial unique, created timestamp with time zone default now(), fname text not null, lname text not null, email text not null, hash text not null, username text unique not null, admin bool default false not null ); create table pubkeys ( id serial unique, created timestamp with time zone default now(), userid int references users (id) on delete cascade, key text ); create table articles ( id serial unique, slug text not null, created timestamp with time zone default now(), edited timestamp with time zone default now(), published timestamp with time zone default now(), live bool default false, authorid int references users (id), title text not null, body text not null, tsv tsvector, sig text ); create index articles_ts_idx on articles using gin (tsv); create index articles_title_trgm_idx ON articles using gin (title gin_trgm_ops); create index articles_body_trgm_idx ON articles using gin (body gin_trgm_ops); CREATE or replace FUNCTION article_slug_trigger() RETURNS trigger AS $$ begin new.slug := -- wait to replace the space so we can get readable slugs lower(regexp_replace(regexp_replace(new.title, '[^a-zA-Z0-9 -]', '', 'g'), '\s', '-', 'g')); return new; end $$ LANGUAGE plpgsql; CREATE TRIGGER articlesligify BEFORE INSERT OR UPDATE ON articles FOR EACH ROW EXECUTE PROCEDURE article_slug_trigger(); CREATE or replace FUNCTION articles_ts_trigger() RETURNS trigger AS $$ begin new.tsv := setweight(to_tsvector('pg_catalog.english', coalesce(new.title,'')), 'A') || setweight(to_tsvector('pg_catalog.english', coalesce(new.body,'')), 'B'); return new; end $$ LANGUAGE plpgsql; CREATE TRIGGER tsvectorupdate BEFORE INSERT OR UPDATE ON articles FOR EACH ROW EXECUTE PROCEDURE articles_ts_trigger(); create table comments ( id serial unique, created timestamp with time zone default now(), pid int default 0 references comments (id) on delete set default , pkid int references pubkeys (id), userid int references users (id) on delete cascade, comment text, sig text ); create or replace function hash(pass text) returns text as $$ select crypt(pass, gen_salt('bf', 10)); $$ language sql; insert into users (fname, lname, username, hash, email, admin) values ('Charlie', 'Root', 'root', hash('omgSnakes'), 'root@localhost', true); insert into users (fname, lname, username, hash, email) values ('Aaron', 'Bieber', 'aaron', hash('omgSnakes'), '<EMAIL>'); insert into pubkeys (userid, key) values (2, 'untrusted comment: signify public key <KEY>'); insert into tags (name) values ('OpenBSD'); insert into tags (name) values ('FreeBSD'); insert into tags (name) values ('NetBSD'); insert into tags (name) values ('HardenedBSD'); insert into tags (name) values ('DragonflyBSD'); insert into tags (name) values ('Meta');
DELIMITER / UPDATE KRCR_PARM_T SET VAL = 'Y' WHERE NMSPC_CD = 'KR-WKFLW' AND PARM_NM = 'SHOW_BACK_DOOR_LOGIN_IND' / DELIMITER ;
<filename>sql/updates/0.16/09136_04_mangos_spell_chain.sql ALTER TABLE db_version CHANGE COLUMN required_9136_02_mangos_quest_poi required_9136_04_mangos_spell_chain bit; DELETE FROM spell_chain WHERE first_spell = 8443; /* Desecration */ DELETE FROM spell_chain WHERE spell_id in (55666,55667); INSERT INTO spell_chain VALUES (55666,0,55666,1,0), (55667,55666,55666,2,0);
<filename>offer-example-database/src/main/resources/data.sql INSERT INTO currency ( currency_code ) VALUES ( 'GBP' ); INSERT INTO currency ( currency_code ) VALUES ( 'USD' ); INSERT INTO offer ( offer_id, merchant_id, description, offering_id, price, currency_code, active_start_date, active_end_date, status_code ) VALUES ( 'offer-id-1', 'merchant-id-1', 'Interesting offer description', 'offering-id-1', 12.34, 'GBP', '2018-01-01', '2018-01-31 23:59:59', 'A' );
<filename>protected/data/rims-05112015-raymon.sql -- phpMyAdmin SQL Dump -- version 4.2.7.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Nov 04, 2015 at 07:56 PM -- Server version: 5.6.20 -- PHP Version: 5.5.15 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: `rims3` -- -- -------------------------------------------------------- -- -- Table structure for table `rims_bank` -- CREATE TABLE IF NOT EXISTS `rims_bank` ( `id` int(11) NOT NULL, `name` varchar(100) DEFAULT NULL, `code` int(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=136 ; -- -- Dumping data for table `rims_bank` -- INSERT INTO `rims_bank` (`id`, `name`, `code`) VALUES (1, 'BANK BRI', 2), (2, 'BANK EKSPOR INDONESIA', 3), (3, 'BANK MANDIRI', 8), (4, 'BANK BNI', 9), (5, 'BANK DANAMON', 11), (6, 'PERMATA BANK', 13), (7, 'BANK BCA', 14), (8, 'BANK BII', 16), (9, 'BANK PANIN', 19), (10, 'BANK ARTA NIAGA KENCANA', 20), (11, 'BANK NIAGA', 22), (12, 'BANK BUANA IND', 23), (13, 'BANK LIPPO', 26), (14, 'BANK NISP', 28), (15, 'AMERICAN EXPRESS BANK LTD', 30), (16, 'CITIBANK ', 31), (17, 'JP. MORGAN CHASE BANK, N.A.', 32), (18, 'BANK OF AMERICA, N.A', 33), (19, 'ING INDONESIA BANK', 34), (20, 'BANK MULTICOR TBK.', 36), (21, 'BANK ARTHA GRAHA', 37), (22, 'BANK CREDIT AGRICOLE INDOSUEZ', 39), (23, 'THE BANGKOK BANK COMP. LTD', 40), (24, 'BANK HSBC', 41), (25, 'THE BANK OF TOKYO MITSUBISHI UFJ LTD', 42), (26, 'BANK SUMITOMO MITSUI INDONESIA', 45), (27, 'BANK DBS INDONESIA', 46), (28, 'BANK RESONA PERDANIA', 47), (29, 'BANK MIZUHO INDONESIA', 48), (30, 'STANDARD CHARTERED BANK', 50), (31, 'BANK ABN AMRO', 52), (32, 'BANK KEPPEL TATLEE BUANA', 53), (33, 'BANK CAPITAL INDONESIA, TBK.', 54), (34, 'BANK BNP PARIBAS INDONESIA', 57), (35, 'BANK UOB INDONESIA', 58), (36, 'KOREA EXCHANGE BANK DANAMON', 59), (37, 'RABOBANK INTERNASIONAL INDONESIA', 60), (38, 'ANZ PANIN BANK', 61), (39, 'DEUTSCHE BANK AG.', 67), (40, 'BANK WOORI INDONESIA', 68), (41, 'BANK OF CHINA LIMITED', 69), (42, 'BANK BUMI ARTA', 76), (43, 'BANK EKONOMI', 87), (44, 'BANK ANTARDAERAH', 88), (45, 'BANK HAGA', 89), (46, 'BANK IFI', 93), (47, 'BANK CENTURY, TBK.', 95), (48, 'BANK MAYAPADA', 97), (49, 'BANK JABAR', 110), (50, 'BANK DKI', 111), (51, 'BPD DIY', 112), (52, 'BANK JATENG', 113), (53, 'BANK JATIM', 114), (54, 'BPD JAMBI', 115), (55, 'BPD ACEH', 116), (56, 'BANK SUMUT', 117), (57, 'BANK NAGARI', 118), (58, 'BANK RIAU', 119), (59, 'BANK SUMSEL', 120), (60, 'BANK LAMPUNG', 121), (61, 'BPD KALSEL', 122), (62, 'BPD KALIMANTAN BARAT', 123), (63, 'BPD KALTIM', 124), (64, 'BPD KALTENG', 125), (65, 'BPD SULSEL', 126), (66, 'BANK SULUT', 127), (67, 'BPD NTB', 128), (68, 'BPD BALI', 129), (69, 'BANK NTT', 130), (70, 'BANK MALUKU', 131), (71, 'BPD PAPUA', 132), (72, 'BANK BENGKULU', 133), (73, 'BPD SULAWESI TENGAH', 134), (74, 'BANK SULTRA', 135), (75, 'BANK NUSANTARA PARAHYANGAN', 145), (76, 'BANK SWADESI', 146), (77, 'BANK MUAMALAT', 147), (78, 'BANK MESTIKA', 151), (79, 'BANK METRO EXPRESS', 152), (80, 'BANK SHINTA INDONESIA', 153), (81, 'BANK MASPION', 157), (82, 'BANK HAGAKITA', 159), (83, '<NAME>', 161), (84, 'BANK <NAME>', 162), (85, 'HALIM INDONESIA BANK', 164), (86, 'BANK HARMONI INTERNATIONAL', 166), (87, 'BANK KESAWAN', 167), (88, 'BANK TABUNGAN NEGARA (PERSERO)', 200), (89, 'BANK HIMPUNAN SAUDARA 1906, TBK', 0), (90, 'BANK TABUNGAN PENSIUNAN NASIONAL', 213), (91, 'BANK SWAGUNA', 405), (92, 'BANK JASA ARTA', 422), (93, 'BANK MEGA', 426), (94, 'BANK <NAME>', 427), (95, 'BANK BUKOPIN', 441), (96, 'BANK <NAME>', 451), (97, 'BANK BISNIS INTERNASIONAL', 459), (98, 'BANK SRI PARTHA', 466), (99, 'BANK JASA JAKARTA', 472), (100, 'BANK BINTANG MANUNGGAL', 484), (101, 'BANK BUMIPUTERA', 485), (102, 'BANK <NAME>', 490), (103, 'BANK MITRANIAGA', 491), (104, 'BANK <NAME>', 494), (105, 'BANK INDOMONEX', 498), (106, 'BANK ROYAL INDONESIA', 501), (107, 'BANK ALFINDO', 503), (108, 'BANK <NAME>', 506), (109, 'BANK INA PERDANA', 513), (110, 'BANK HARFA', 517), (111, 'PRIMA MASTER BANK', 520), (112, 'BANK PERSYARIKATAN INDONESIA', 521), (113, 'BANK AKITA', 525), (114, 'LIMAN INTERNATIONAL BANK', 526), (115, 'ANGLOMAS INTERNASIONAL BANK', 531), (116, 'BANK DIPO INTERNATIONAL', 523), (117, 'BANK KESEJAHTERAAN EKONOMI', 535), (118, 'BANK UIB', 536), (119, 'BANK ARTOS IND', 542), (120, 'BANK P<NAME>', 547), (121, 'BANK MULTI ARTA SENTOSA', 548), (122, 'BANK MAYORA', 553), (123, 'BANK <NAME>', 555), (124, 'BANK VICTORIA INTERNATIONAL', 566), (125, 'BANK EKSEKUTIF', 558), (126, 'CENTRATAMA NASIONAL BANK', 559), (127, 'BANK FAMA INTERNASIONAL', 562), (128, 'BANK SINAR HARAPAN BALI', 564), (129, 'BANK HARDA', 567), (130, 'BANK FINCONESIA', 945), (131, 'BANK MERINCORP', 946), (132, 'BANK MAYBANK INDOCORP', 947), (133, 'BANK OCBC ? INDONESIA', 948), (134, 'BANK CHINA TRUST INDONESIA', 949), (135, 'BANK COMMONWEALTH', 950); -- -------------------------------------------------------- -- -- Table structure for table `rims_branch` -- CREATE TABLE IF NOT EXISTS `rims_branch` ( `id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `address` text NOT NULL, `province_id` int(11) NOT NULL, `city_id` int(11) NOT NULL, `zipcode` varchar(10) NOT NULL, `phone` varchar(20) DEFAULT NULL, `fax` varchar(20) DEFAULT NULL, `email` varchar(60) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; -- -- Dumping data for table `rims_branch` -- INSERT INTO `rims_branch` (`id`, `code`, `name`, `address`, `province_id`, `city_id`, `zipcode`, `phone`, `fax`, `email`, `status`) VALUES (1, 'R-1', 'Branch 1', 'TEst', 12, 39, '11460', '1234578900', '1231321312', '<EMAIL>', 'Active'), (2, 'R-2', 'Branch 2', 'Grogol', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (3, 'R-3', 'Branch 3', 'Grogol', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (4, 'R-4', 'Branch 4', 'Bekasi', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (5, 'R-5', 'Branch 5', 'grogol', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (6, 'R-6', 'Branch 6', 'Grogol', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (7, 'R-7', 'Branch 7', 'Grogol', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (8, 'R-8', 'Branch 8', 'Grogol', 12, 39, '10230', '261202713', '261202713', '<EMAIL>', 'Active'), (11, 'R-11', 'Branch 12', 'Jl Asdfghk', 12, 41, '12345', '1234578900', '1231321312', '<EMAIL>', 'Active'), (12, 'R-12', '<NAME>', 'kalimalang', 12, 41, '13450', '0218643595', '8641717', '<EMAIL>', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_branch_fax` -- CREATE TABLE IF NOT EXISTS `rims_branch_fax` ( `id` int(11) NOT NULL, `branch_id` int(11) NOT NULL, `fax_no` varchar(20) NOT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `rims_branch_fax` -- INSERT INTO `rims_branch_fax` (`id`, `branch_id`, `fax_no`, `status`) VALUES (1, 1, '0987662123', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_branch_phone` -- CREATE TABLE IF NOT EXISTS `rims_branch_phone` ( `id` int(11) NOT NULL, `branch_id` int(11) DEFAULT NULL, `phone_no` varchar(20) NOT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `rims_branch_phone` -- INSERT INTO `rims_branch_phone` (`id`, `branch_id`, `phone_no`, `status`) VALUES (1, 1, '0218881231', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_branch_warehouse` -- CREATE TABLE IF NOT EXISTS `rims_branch_warehouse` ( `id` int(11) NOT NULL, `branch_id` int(11) DEFAULT NULL, `warehouse_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; -- -- Dumping data for table `rims_branch_warehouse` -- INSERT INTO `rims_branch_warehouse` (`id`, `branch_id`, `warehouse_id`) VALUES (3, 1, 5), (4, 1, 1), (5, 11, 6), (6, 1, 12), (7, 12, 1), (8, 12, 13); -- -------------------------------------------------------- -- -- Table structure for table `rims_chasis_code` -- CREATE TABLE IF NOT EXISTS `rims_chasis_code` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `year_end` int(11) DEFAULT NULL, `year_start` int(11) DEFAULT NULL, `status` varchar(10) NOT NULL, `brand_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_city` -- CREATE TABLE IF NOT EXISTS `rims_city` ( `id` int(11) NOT NULL, `province_id` int(11) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `code` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=99 ; -- -- Dumping data for table `rims_city` -- INSERT INTO `rims_city` (`id`, `province_id`, `name`, `code`) VALUES (1, 1, 'Banda Aceh', NULL), (2, 1, 'Langsa', NULL), (3, 1, 'Lhokseumawe', NULL), (4, 2, 'Binjai', NULL), (5, 2, 'Gunung Sitoli', NULL), (6, 2, 'Medan', NULL), (7, 2, '<NAME>', NULL), (8, 2, '<NAME>', NULL), (9, 2, '<NAME>', NULL), (10, 2, 'Sibolga', NULL), (11, 2, '<NAME>', NULL), (12, 2, '<NAME>', NULL), (13, 3, 'Bukittinggi', NULL), (14, 3, 'Padang', NULL), (15, 3, '<NAME>', NULL), (16, 3, 'Pariaman', NULL), (17, 3, 'Payakumbuh', NULL), (18, 3, '<NAME>', NULL), (19, 3, 'Solok', NULL), (20, 4, 'Dumai', NULL), (21, 4, 'Pekanbaru', NULL), (22, 5, 'Batam', NULL), (23, 5, '<NAME>', NULL), (24, 6, '<NAME>', NULL), (25, 7, 'Jambi', NULL), (26, 7, '<NAME>', NULL), (27, 8, 'Bengkulu', NULL), (28, 9, 'Lubuklinggau', NULL), (29, 9, '<NAME>', NULL), (30, 9, 'Palembang', NULL), (31, 9, 'Prabumulih', NULL), (32, 10, '<NAME>', NULL), (33, 10, 'Metro', NULL), (34, 11, 'Cilegon', NULL), (35, 12, 'Serang', NULL), (36, 12, 'Tangerang', NULL), (37, 12, '<NAME>', NULL), (38, 12, '<NAME>', NULL), (39, 12, '<NAME>', NULL), (40, 12, '<NAME>', NULL), (41, 12, '<NAME>', NULL), (42, 12, '<NAME>a', NULL), (43, 13, 'Bandung', NULL), (44, 13, 'Banjar', NULL), (45, 13, 'Bekasi', NULL), (46, 13, 'Bogor', NULL), (47, 13, 'Cimahi', NULL), (48, 13, 'Cirebon', NULL), (49, 13, 'Depok', NULL), (50, 13, 'Sukabumi', NULL), (51, 13, 'Tasikmalaya', NULL), (52, 14, 'Magelang', NULL), (53, 14, 'Pekalongan', NULL), (54, 14, 'Salatiga', NULL), (55, 14, 'Semarang', NULL), (56, 14, 'Surakarta', NULL), (57, 14, 'Tegal', NULL), (58, 15, 'Yogyakarta', NULL), (59, 16, 'Batj', NULL), (60, 16, 'Blitar', NULL), (61, 16, 'Kediri', NULL), (62, 16, 'Madiun', NULL), (63, 16, 'Malang', NULL), (64, 16, 'Mojokerto', NULL), (65, 16, 'Pasuruan', NULL), (66, 16, 'Probolinggo', NULL), (67, 16, 'Surabaya', NULL), (68, 17, 'Denpasar', NULL), (69, 18, 'Bima', NULL), (70, 18, 'Mataram', NULL), (71, 19, 'Kupang', NULL), (72, 20, 'Pontianak', NULL), (73, 20, 'Singkawang', NULL), (74, 21, 'Palangkaraya', NULL), (75, 22, '<NAME>', NULL), (76, 22, 'Banjarmasin', NULL), (77, 23, 'Balikpapan', NULL), (78, 23, 'Bontang', NULL), (79, 23, 'Samarinda', NULL), (80, 23, 'Tarakan', NULL), (81, 24, 'Gorontalo', NULL), (82, 25, 'Makassar', NULL), (83, 25, 'Palopo', NULL), (84, 25, 'Pare - pare', NULL), (85, 26, 'Bau - bau', NULL), (86, 26, 'Kendari', NULL), (87, 27, 'Palu', NULL), (88, 28, 'Bitung', NULL), (89, 28, 'Kotamobagu', NULL), (90, 28, 'Manado', NULL), (91, 28, 'Tomohon', NULL), (92, 30, 'Ambon', NULL), (93, 30, 'Tual', NULL), (94, 31, 'Ternate', NULL), (95, 31, '<NAME>', NULL), (96, 32, 'Sorong', NULL), (97, 33, 'Jayapura', NULL), (98, 34, 'Tarakan', NULL); -- -------------------------------------------------------- -- -- Table structure for table `rims_colors` -- CREATE TABLE IF NOT EXISTS `rims_colors` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `rims_colors` -- INSERT INTO `rims_colors` (`id`, `name`, `status`) VALUES (1, 'Red', 'Active'), (2, 'Black', ''), (3, 'Blue', ''); -- -------------------------------------------------------- -- -- Table structure for table `rims_customer` -- CREATE TABLE IF NOT EXISTS `rims_customer` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `address` text NOT NULL, `province_id` int(11) NOT NULL, `city_id` int(11) NOT NULL, `zipcode` varchar(10) NOT NULL, `fax` varchar(20) NOT NULL, `email` varchar(100) NOT NULL, `note` text NOT NULL, `customer_type` varchar(10) NOT NULL, `default_payment_type` int(11) NOT NULL, `tenor` int(11) DEFAULT NULL, `status` varchar(10) NOT NULL, `birthdate` date NOT NULL, `flat_rate` decimal(10,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=30 ; -- -- Dumping data for table `rims_customer` -- INSERT INTO `rims_customer` (`id`, `name`, `address`, `province_id`, `city_id`, `zipcode`, `fax`, `email`, `note`, `customer_type`, `default_payment_type`, `tenor`, `status`, `birthdate`, `flat_rate`) VALUES (1, 'Budi', 'Jl. abc no 1234', 12, 39, '13231', '123456789', '<EMAIL>', 'Testing', 'Individual', 0, 30, 'Active', '1989-11-01', '0.00'), (2, '<NAME>', 'Jl. Kebon Kacang 2', 12, 39, '12344', '', '<EMAIL>', 'Test test test', 'Company', 0, 20, 'Active', '0000-00-00', '0.00'), (3, 'Stefani', 'Jl. Kebon Melati', 12, 39, '12314', '1231321312', '<EMAIL>', '', 'Individual', 0, 0, 'Active', '0000-00-00', '0.00'), (4, 'Fajar', 'Jalan Aceh No 4', 12, 39, '', '', '<EMAIL>', '', 'Individual', 0, 0, 'Active', '0000-00-00', '0.00'), (5, 'Newira', '<NAME>', 12, 39, '', '', '<EMAIL>', '', 'Individual', 0, 0, 'Active', '0000-00-00', '0.00'), (6, '<NAME>', 'Jalan Anggrek Loka 4 blok D no.15', 12, 39, '14140', '123456', '<EMAIL>', '', 'Company', 0, 10, 'Active', '0000-00-00', '0.00'), (7, '<NAME>', 'jalan camar 5 no.10', 12, 39, '141710', '123456', '<EMAIL>', '', 'Individual', 0, 10, 'Active', '0000-00-00', '0.00'), (8, '<NAME>', 'Jalan kasuari 7 no.13', 12, 39, '171710', '123456', '<EMAIL>', '', 'Individual', 0, 10, 'Active', '0000-00-00', '0.00'), (9, '<NAME>', 'jalan cendrawasih 10', 12, 39, '141710', '1243654', '<EMAIL>', '', 'Individual', 0, 15, 'Active', '0000-00-00', '0.00'), (10, '<NAME>', 'jalan sesama', 12, 39, '171709', '123456', '<EMAIL>', '', 'Individual', 0, 20, 'Active', '0000-00-00', '0.00'), (11, '<NAME>', 'jalan salak 10', 12, 39, '14146', '123456', '<EMAIL>', '', 'Individual', 0, 15, 'Active', '0000-00-00', '0.00'), (12, 'PT CITA PRAKASA', 'Jalan abang irama 10 no.13', 12, 39, '141432', '365452', 'citaprakasa.co.id', '', 'Company', 0, 123, 'Active', '0000-00-00', '1.00'), (13, 'Pretty Maksimal ', 'Jalan Cabe Terong 5', 12, 39, '171736', '123654', '<EMAIL>', '', 'Company', 0, 12, 'Active', '0000-00-00', '2.00'), (14, 'Tommy', 'Jalan Cabe Terong 5', 12, 39, '171736', '123654', '<EMAIL>', '', 'Individual', 0, 12, 'Active', '0000-00-00', '2.00'), (15, '<NAME>', 'Jl.husni thamrin no 101', 12, 39, '161345', '65412354', '<EMAIL>', '', 'Company', 0, 12, 'Active', '0000-00-00', '1.00'), (16, '<NAME>', 'Jalan sudirman 10 no.11', 12, 39, '36541236', '6545659', '<EMAIL>', '', 'Company', 0, 123, 'Active', '0000-00-00', '2.00'), (17, '<NAME>', 'Jalan Mawar 5', 12, 39, '191865', '6321545', '<EMAIL>', '', 'Individual', 0, 65, 'Active', '0000-00-00', '3.00'), (18, '<NAME>', 'Bontang', 12, 39, '321546', '123456', '<EMAIL>', '', 'Individual', 0, 12, 'Active', '0000-00-00', '3.00'), (19, '<NAME>', 'Palangkaraya', 12, 39, '141630', '6541263', 'tora_suyatno', '', 'Company', 0, 12, 'Active', '0000-00-00', '12.00'), (20, '<NAME>', 'Bogor', 12, 39, '161325', '', '<EMAIL>', '', 'Company', 0, 0, 'Active', '0000-00-00', '0.00'), (21, 'Bblabla', 'blabl', 12, 39, '', '', '<EMAIL>', '', 'Individual', 0, 0, 'Active', '0000-00-00', '0.00'), (22, 'Alini', 'Jl Thamrin2312', 12, 39, '12311', '12312132131321', '<EMAIL>', '', 'Individual', 0, 20, '', '1959-02-01', '1.00'), (27, 'PT. ABCDEFGH', 'afsdafsdfa', 12, 36, '123211', '12312132131321', '<EMAIL>', '', 'Individual', 3, 30, '', '1959-02-01', '1.00'), (28, 'Tester', 'Testing', 12, 38, '12421', '12312132131321', '<EMAIL>', '', 'Individual', 1, 20, '', '1987-04-17', '1.00'), (29, 'Newira', '<NAME>', 12, 41, '13450', '', '', '', 'Individual', 1, 30, '', '2015-10-08', '100000.00'); -- -------------------------------------------------------- -- -- Table structure for table `rims_customer_mobile` -- CREATE TABLE IF NOT EXISTS `rims_customer_mobile` ( `id` int(11) NOT NULL, `customer_id` int(11) DEFAULT NULL, `mobile_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_customer_phone` -- CREATE TABLE IF NOT EXISTS `rims_customer_phone` ( `id` int(11) NOT NULL, `customer_id` int(11) DEFAULT NULL, `phone_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `rims_customer_phone` -- INSERT INTO `rims_customer_phone` (`id`, `customer_id`, `phone_no`, `status`) VALUES (1, 22, '122212231', NULL), (2, 28, '09281664241', 'Active'), (3, 28, '982112122', 'Active'), (5, 29, '0218859852', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_customer_pic` -- CREATE TABLE IF NOT EXISTS `rims_customer_pic` ( `id` int(11) NOT NULL, `customer_id` int(11) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `address` text, `province_id` int(11) DEFAULT NULL, `city_id` int(11) DEFAULT NULL, `zipcode` varchar(10) DEFAULT NULL, `fax` varchar(20) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `note` text, `status` varchar(10) DEFAULT 'Active', `birthdate` date DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `rims_customer_pic` -- INSERT INTO `rims_customer_pic` (`id`, `customer_id`, `name`, `address`, `province_id`, `city_id`, `zipcode`, `fax`, `email`, `note`, `status`, `birthdate`) VALUES (1, 1, 'Tono', 'Jl def', 12, 41, '21091', '', '<EMAIL>', 'Testing', 'Active', '1976-09-12'), (2, 29, 'Andi', 'kalimalang', 13, 45, '17145', '', '', '', 'Active', '0000-00-00'), (3, 1, 'Teddy', 'Jl abc', 12, 36, '231211', '', '<EMAIL>', 'testing1234', 'Active', '1989-11-05'); -- -------------------------------------------------------- -- -- Table structure for table `rims_customer_pic_mobile` -- CREATE TABLE IF NOT EXISTS `rims_customer_pic_mobile` ( `id` int(11) NOT NULL, `customer_pic_id` int(11) DEFAULT NULL, `mobile_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_customer_pic_phone` -- CREATE TABLE IF NOT EXISTS `rims_customer_pic_phone` ( `id` int(11) NOT NULL, `customer_pic_id` int(11) DEFAULT NULL, `phone_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_customer_service_rate` -- CREATE TABLE IF NOT EXISTS `rims_customer_service_rate` ( `id` int(11) NOT NULL, `customer_id` int(11) NOT NULL, `service_id` int(11) NOT NULL, `rate` decimal(10,2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_deduction` -- CREATE TABLE IF NOT EXISTS `rims_deduction` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `description` text NOT NULL, `amount` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `rims_deduction` -- INSERT INTO `rims_deduction` (`id`, `name`, `description`, `amount`) VALUES (1, 'Uniform', '', ''), (2, 'Shoes', 'Shoes', ''), (3, 'BPJS', 'Insurance', ''); -- -------------------------------------------------------- -- -- Table structure for table `rims_division` -- CREATE TABLE IF NOT EXISTS `rims_division` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) DEFAULT 'Active', `code` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `rims_division` -- INSERT INTO `rims_division` (`id`, `name`, `status`, `code`) VALUES (1, 'HR Department', 'Active', 'D01'), (2, 'Body Repair', 'Active', 'D02'), (3, 'General Repair', 'Active', 'D03'), (4, 'Tire', 'Active', 'D04'), (5, 'Accounting', 'Active', 'D06'); -- -------------------------------------------------------- -- -- Table structure for table `rims_division_branch` -- CREATE TABLE IF NOT EXISTS `rims_division_branch` ( `id` int(11) NOT NULL, `division_id` int(11) NOT NULL, `branch_id` int(11) NOT NULL, `email` varchar(60) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; -- -- Dumping data for table `rims_division_branch` -- INSERT INTO `rims_division_branch` (`id`, `division_id`, `branch_id`, `email`) VALUES (1, 5, 4, ''), (2, 5, 1, '<EMAIL>'), (3, 3, 11, ''), (4, 1, 1, '<EMAIL>'), (5, 2, 12, ''), (6, 1, 12, ''), (7, 5, 12, ''), (8, 4, 12, ''), (9, 3, 12, ''), (10, 3, 1, '<EMAIL>'); -- -------------------------------------------------------- -- -- Table structure for table `rims_division_position` -- CREATE TABLE IF NOT EXISTS `rims_division_position` ( `id` int(11) NOT NULL, `division_id` int(11) NOT NULL, `position_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; -- -- Dumping data for table `rims_division_position` -- INSERT INTO `rims_division_position` (`id`, `division_id`, `position_id`) VALUES (1, 1, 4), (2, 1, 7), (3, 3, 4), (4, 3, 6), (6, 4, 4), (7, 5, 7); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee` -- CREATE TABLE IF NOT EXISTS `rims_employee` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `local_address` text NOT NULL, `home_address` text NOT NULL, `province_id` int(11) NOT NULL, `city_id` int(11) NOT NULL, `home_province` int(11) NOT NULL, `home_city` int(11) NOT NULL, `sex` varchar(10) NOT NULL, `email` varchar(60) NOT NULL, `id_card` varchar(30) NOT NULL, `driving_licence` varchar(30) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'Active', `salary_type` varchar(50) NOT NULL, `basic_salary` decimal(10,2) NOT NULL, `payment_type` varchar(50) NOT NULL, `code` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=28 ; -- -- Dumping data for table `rims_employee` -- INSERT INTO `rims_employee` (`id`, `name`, `local_address`, `home_address`, `province_id`, `city_id`, `home_province`, `home_city`, `sex`, `email`, `id_card`, `driving_licence`, `status`, `salary_type`, `basic_salary`, `payment_type`, `code`) VALUES (26, 'Test', '<NAME>', '<NAME>', 12, 38, 12, 38, 'Male', '<EMAIL>', '12314124123231', '79879776870334', 'Active', 'Monthly', '2000000.00', 'Transfer', 'E01'), (27, 'Sunar', 'Bedeng B123, Pondok Kelapa', 'Simpang 5, pati', 14, 55, 1, 1, 'Male', '<EMAIL>', '834343k3434', '34234', 'Active', 'Daily', '75000.00', 'Transfer', '1001'); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee_bank` -- CREATE TABLE IF NOT EXISTS `rims_employee_bank` ( `id` int(11) NOT NULL, `bank_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `account_no` varchar(20) NOT NULL, `account_name` varchar(100) NOT NULL, `status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `rims_employee_bank` -- INSERT INTO `rims_employee_bank` (`id`, `bank_id`, `employee_id`, `account_no`, `account_name`, `status`) VALUES (3, 5, 26, '123123213121', 'Ardi', 0), (4, 7, 27, '2312', '3545345', 0); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee_deductions` -- CREATE TABLE IF NOT EXISTS `rims_employee_deductions` ( `id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `deduction_id` int(11) NOT NULL, `amount` decimal(10,2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `rims_employee_deductions` -- INSERT INTO `rims_employee_deductions` (`id`, `employee_id`, `deduction_id`, `amount`) VALUES (1, 27, 1, '50000.00'), (2, 27, 2, '50000.00'), (3, 27, 3, '50000.00'), (4, 26, 2, '330000.00'); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee_division_position_level` -- CREATE TABLE IF NOT EXISTS `rims_employee_division_position_level` ( `id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `division_id` int(11) NOT NULL, `position_id` int(11) NOT NULL, `level_id` int(11) NOT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Dumping data for table `rims_employee_division_position_level` -- INSERT INTO `rims_employee_division_position_level` (`id`, `employee_id`, `division_id`, `position_id`, `level_id`, `status`) VALUES (2, 26, 1, 4, 3, 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee_incentives` -- CREATE TABLE IF NOT EXISTS `rims_employee_incentives` ( `id` int(11) NOT NULL, `employee_id` int(11) DEFAULT NULL, `incentive_id` int(11) DEFAULT NULL, `amount` decimal(10,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `rims_employee_incentives` -- INSERT INTO `rims_employee_incentives` (`id`, `employee_id`, `incentive_id`, `amount`) VALUES (1, 26, 4, '42000.00'), (2, 27, 2, '75000.00'), (3, 27, 3, '200000.00'), (4, 27, 4, '300000.00'); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee_mobile` -- CREATE TABLE IF NOT EXISTS `rims_employee_mobile` ( `id` int(11) NOT NULL, `employee_id` int(11) DEFAULT NULL, `mobile_no` varchar(20) DEFAULT NULL, `status` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Dumping data for table `rims_employee_mobile` -- INSERT INTO `rims_employee_mobile` (`id`, `employee_id`, `mobile_no`, `status`) VALUES (1, 26, '08754868782', NULL), (2, 27, '0877222111', NULL); -- -------------------------------------------------------- -- -- Table structure for table `rims_employee_phone` -- CREATE TABLE IF NOT EXISTS `rims_employee_phone` ( `id` int(11) NOT NULL, `employee_id` int(11) DEFAULT NULL, `phone_no` varchar(20) DEFAULT NULL, `status` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `rims_employee_phone` -- INSERT INTO `rims_employee_phone` (`id`, `employee_id`, `phone_no`, `status`) VALUES (1, 26, '0921266616', NULL); -- -------------------------------------------------------- -- -- Table structure for table `rims_incentive` -- CREATE TABLE IF NOT EXISTS `rims_incentive` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `description` text NOT NULL, `amount` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `rims_incentive` -- INSERT INTO `rims_incentive` (`id`, `name`, `description`, `amount`) VALUES (2, 'Overtime', 'Work hour > 10 hours', ''), (3, 'Handphone', 'handphone', ''), (4, 'Transport', 'transport', ''); -- -------------------------------------------------------- -- -- Table structure for table `rims_level` -- CREATE TABLE IF NOT EXISTS `rims_level` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; -- -- Dumping data for table `rims_level` -- INSERT INTO `rims_level` (`id`, `name`, `status`) VALUES (3, 'Junior', 'Active'), (4, 'Senior', 'Active'), (5, 'Intern', 'Active'), (6, 'Head', 'Active'), (7, 'Manager', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_position` -- CREATE TABLE IF NOT EXISTS `rims_position` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; -- -- Dumping data for table `rims_position` -- INSERT INTO `rims_position` (`id`, `name`, `status`) VALUES (4, 'Mechanic', 'Active'), (5, 'Manager', 'Active'), (6, 'Service Advisor', 'Active'), (7, 'Accounting', 'Active'), (8, 'Finance', 'Active'), (9, 'Supervisor', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_position_level` -- CREATE TABLE IF NOT EXISTS `rims_position_level` ( `id` int(11) NOT NULL, `position_id` int(11) NOT NULL, `level_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; -- -- Dumping data for table `rims_position_level` -- INSERT INTO `rims_position_level` (`id`, `position_id`, `level_id`) VALUES (3, 9, 6), (4, 4, 3), (5, 4, 4), (6, 4, 6), (7, 4, 5); -- -------------------------------------------------------- -- -- Table structure for table `rims_powercc` -- CREATE TABLE IF NOT EXISTS `rims_powercc` ( `id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_product` -- CREATE TABLE IF NOT EXISTS `rims_product` ( `id` int(11) NOT NULL, `code` int(11) NOT NULL, `name` varchar(30) NOT NULL, `description` text NOT NULL, `production_year` int(11) NOT NULL, `product_master_category_id` int(11) NOT NULL, `product_sub_master_category_id` int(11) NOT NULL, `product_sub_category_id` int(11) NOT NULL, `product_specification_type_id` int(11) NOT NULL, `vehicle_car_make_id` int(11) NOT NULL, `vehicle_car_model_id` int(11) NOT NULL, `purchase_price` decimal(10,2) NOT NULL, `minimum_selling_price` decimal(10,2) NOT NULL, `hpp` decimal(10,2) NOT NULL, `retail_price` decimal(10,2) NOT NULL, `minimum_stock` int(11) NOT NULL, `margin_type` int(11) NOT NULL, `margin_amount` int(11) DEFAULT NULL, `status` varchar(10) NOT NULL DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_product_master_category` -- CREATE TABLE IF NOT EXISTS `rims_product_master_category` ( `id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `description` text, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; -- -- Dumping data for table `rims_product_master_category` -- INSERT INTO `rims_product_master_category` (`id`, `code`, `name`, `description`, `status`) VALUES (1, 'A', 'Air, Fuel, Emission & Exhaust', '', 'Active'), (2, 'B', 'Accessories, Body & Wipers', '', 'Active'), (3, 'C', 'Batteries, Electrical & Wiring', '', 'Active'), (4, 'D', 'Brakes, Steering & Suspension', '', 'Active'), (5, 'E', 'Cooling & Heating', '', 'Active'), (6, 'F', 'Electronics & Navigation', '', 'Active'), (7, 'G', 'Engines & Ignition', '', 'Active'), (8, 'H', 'Tools, Fluids & Garage', '', 'Active'), (9, 'I', 'Transmission & Drivetrain', '', 'Active'), (10, 'J', 'Service Material & Supply ', 'Bahan/Perlengkapan', 'Active'), (11, 'K', 'Service Tools', 'Tools/Alat', 'Active'), (12, 'L', 'In-Out Parts (Bonus)', '', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_product_specification_info` -- CREATE TABLE IF NOT EXISTS `rims_product_specification_info` ( `id` int(11) NOT NULL, `product_specification_type_id` int(11) NOT NULL, `name` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_product_specification_type` -- CREATE TABLE IF NOT EXISTS `rims_product_specification_type` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_product_sub_category` -- CREATE TABLE IF NOT EXISTS `rims_product_sub_category` ( `id` int(11) NOT NULL, `product_master_category_id` int(11) NOT NULL, `product_sub_master_category_id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `description` text, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1115 ; -- -- Dumping data for table `rims_product_sub_category` -- INSERT INTO `rims_product_sub_category` (`id`, `product_master_category_id`, `product_sub_master_category_id`, `code`, `name`, `description`, `status`) VALUES (1, 1, 1, '01', 'Air Cleaner Assemblies', '', 'Active'), (2, 1, 1, '02', 'Air Cleaner Components', '', 'Active'), (3, 1, 1, '03', 'Air Filter Hardware', '', 'Active'), (4, 1, 1, '04', 'Air Filter Housing', '', 'Active'), (5, 1, 1, '05', 'Air Filter Oils & Cleaners', '', 'Active'), (6, 1, 1, '06', 'Air Filters', '', 'Active'), (7, 1, 1, '07', 'Air Filters Components', '', 'Active'), (8, 1, 1, '08', 'Air Intake Kits', '', 'Active'), (9, 1, 1, '09', 'Cabin Air Filter Hardware', '', 'Active'), (10, 1, 1, '10', 'Cabin Air Filters', '', 'Active'), (11, 1, 1, '11', 'Dual Flanged Oval Filters', '', 'Active'), (12, 1, 1, '12', 'Filters - Performance', '', 'Active'), (13, 1, 1, '13', 'Motorcycle Air Filters', '', 'Active'), (14, 1, 1, '14', 'Oval Straight Air Filters', '', 'Active'), (15, 1, 1, '15', 'Oval Tapered Air Filters', '', 'Active'), (16, 1, 1, '16', 'Rectangular Air Filters', '', 'Active'), (17, 1, 1, '17', 'Round Straight Air Filters', '', 'Active'), (18, 1, 1, '18', 'Round Tapered Air Filters', '', 'Active'), (19, 1, 1, '19', 'Triangular Air Filters', '', 'Active'), (20, 1, 1, '20', 'Universal Air Filters', '', 'Active'), (21, 1, 2, '01', 'Accelerator Cables', '', 'Active'), (22, 1, 2, '02', 'Air Cleaner Assemblies', '', 'Active'), (23, 1, 2, '03', 'Carburetor Adapter Plates', '', 'Active'), (24, 1, 2, '04', 'Carburetor Choke Parts', '', 'Active'), (25, 1, 2, '05', 'Carburetor Dash Pots', '', 'Active'), (26, 1, 2, '06', 'Carburetor Floats', '', 'Active'), (27, 1, 2, '07', 'Carburetor Fuel Parts', '', 'Active'), (28, 1, 2, '08', 'Carburetor Gaskets & Spacers', '', 'Active'), (29, 1, 2, '09', 'Carburetor Hardware', '', 'Active'), (30, 1, 2, '10', 'Carburetor Parts', '', 'Active'), (31, 1, 2, '11', 'Carburetor Repair Kits', '', 'Active'), (32, 1, 2, '12', 'Carburetor Solenoids', '', 'Active'), (33, 1, 2, '13', 'Carburetor Studs & Kits', '', 'Active'), (34, 1, 2, '14', 'Carburetors', '', 'Active'), (35, 1, 2, '15', 'Carburetors - Performance', '', 'Active'), (36, 1, 2, '16', 'Holley Jets', '', 'Active'), (37, 1, 2, '17', 'Intake Manifold Components', '', 'Active'), (38, 1, 2, '18', 'Intake Manifold Hardware', '', 'Active'), (39, 1, 2, '19', 'Intake Manifold', '', 'Active'), (40, 1, 3, '01', 'Air Injection Air Supplies', '', 'Active'), (41, 1, 3, '02', 'Air Injection Pipes & Tubes', '', 'Active'), (42, 1, 3, '03', 'Air Injection Valves', '', 'Active'), (43, 1, 3, '04', 'Air Pump Filters', '', 'Active'), (44, 1, 3, '05', 'Air Pump Hoses & Grommets', '', 'Active'), (45, 1, 3, '06', 'Auxilliary Air Valve Parts', '', 'Active'), (46, 1, 3, '07', 'Auxilliary Air Valves', '', 'Active'), (47, 1, 3, '08', 'Canister Purge Solenoids', '', 'Active'), (48, 1, 3, '09', 'Canister Purge Valves', '', 'Active'), (49, 1, 3, '10', 'Connectors, Valves & Solenoids', '', 'Active'), (50, 1, 3, '11', 'EGR Valve Parts & Accessories', '', 'Active'), (51, 1, 3, '12', 'EGR Valves', '', 'Active'), (52, 1, 3, '13', 'Emission Gaskets & Seals', '', 'Active'), (53, 1, 3, '14', 'Emission Hardware', '', 'Active'), (54, 1, 3, '15', 'Emission Mounts', '', 'Active'), (55, 1, 3, '16', 'Emission Sensors & Solenoids', '', 'Active'), (56, 1, 3, '18', 'Oxygen Sensor Components', '', 'Active'), (57, 1, 3, '19', 'PCV Valves & Related', '', 'Active'), (58, 1, 3, '20', 'Smog Pumps & Pulleys', '', 'Active'), (59, 1, 3, '21', 'Vacuum Distributor Parts', '', 'Active'), (60, 1, 3, '22', 'Vacuum Pump Lines & Fittings', '', 'Active'), (61, 1, 3, '23', 'Vacuum Valves & Brackets', '', 'Active'), (62, 1, 3, '24', 'Vacuum Valves & Levers', '', 'Active'), (63, 1, 4, '01', 'Catalytic Converter Brackets', '', 'Active'), (64, 1, 4, '02', 'Catalytic Converters', '', 'Active'), (65, 1, 4, '03', 'Exhaust Adapters & Connectors', '', 'Active'), (66, 1, 4, '04', 'Exhaust Clamps', '', 'Active'), (67, 1, 4, '05', 'Exhaust Flange Components', '', 'Active'), (68, 1, 4, '06', 'Exhaust Hangers & Hardware', '', 'Active'), (69, 1, 4, '07', 'Exhaust Hardware', '', 'Active'), (70, 1, 4, '08', 'Exhaust Header Hardware', '', 'Active'), (71, 1, 4, '09', 'Exhaust Headers', '', 'Active'), (72, 1, 4, '10', 'Exhaust Headers - Performance', '', 'Active'), (73, 1, 4, '11', 'Exhaust Heat Shields', '', 'Active'), (74, 1, 4, '12', 'Exhaust Pipes & Related', '', 'Active'), (75, 1, 4, '13', 'Exhaust Resonators', '', 'Active'), (76, 1, 4, '14', 'Exhaust Seals', '', 'Active'), (77, 1, 4, '15', 'Exhaust System Gaskets', '', 'Active'), (78, 1, 4, '16', 'Exhaust System Kits', '', 'Active'), (79, 1, 4, '17', 'Exhaust System Kits - Performa', '', 'Active'), (80, 1, 4, '18', 'Exhaust Tail Pipes', '', 'Active'), (81, 1, 4, '19', 'Exhaust Tail Spouts', '', 'Active'), (82, 1, 4, '20', 'Exhaust Tips', '', 'Active'), (83, 1, 4, '21', 'Exhaust Tubing', '', 'Active'), (84, 1, 4, '22', 'Header Components', '', 'Active'), (85, 1, 4, '23', 'Muffler Installation & Repair', '', 'Active'), (86, 1, 4, '24', 'Muffler Tips', '', 'Active'), (87, 1, 4, '25', 'Mufflers', '', 'Active'), (88, 1, 4, '26', 'Mufflers - Performance', '', 'Active'), (89, 1, 5, '01', 'Fuel Filter Components', '', 'Active'), (90, 1, 5, '02', 'Fuel Filter Hoses', '', 'Active'), (91, 1, 5, '03', 'Fuel Filters', '', 'Active'), (92, 1, 5, '04', 'Oil Filter Components', '', 'Active'), (93, 1, 5, '05', 'Oil Filters', '', 'Active'), (94, 1, 5, '06', 'PCV Valves & Related', '', 'Active'), (95, 1, 6, '01', 'Engine Air Intake Parts', '', 'Active'), (96, 1, 6, '02', 'Engine RPM Components', '', 'Active'), (97, 1, 6, '03', 'Fuel Injection Air Flow Meters', '', 'Active'), (98, 1, 6, '04', 'Fuel Injection Electronics', '', 'Active'), (99, 1, 6, '05', 'Fuel Injection Gaskets', '', 'Active'), (100, 1, 6, '06', 'Fuel Injection Hardware', '', 'Active'), (101, 1, 6, '07', 'Fuel Injection Idle Air Parts', '', 'Active'), (102, 1, 6, '08', 'Fuel Injection Intake Parts', '', 'Active'), (103, 1, 6, '09', 'Fuel Injection Kits', '', 'Active'), (104, 1, 6, '10', 'Fuel Injection Lines', '', 'Active'), (105, 1, 6, '11', 'Fuel Injection Parts', '', 'Active'), (106, 1, 6, '12', 'Fuel Injection Rails', '', 'Active'), (107, 1, 6, '13', 'Fuel Injection Regulators', '', 'Active'), (108, 1, 6, '14', 'Fuel Injection seals', '', 'Active'), (109, 1, 6, '15', 'Fuel Injection Solenoids', '', 'Active'), (110, 1, 6, '16', 'Fuel Injection Valves', '', 'Active'), (111, 1, 6, '17', 'Fuel Injectors', '', 'Active'), (112, 1, 6, '18', 'Fuel Lines & Kits', '', 'Active'), (113, 1, 6, '19', 'Fuel System - Performance', '', 'Active'), (114, 1, 6, '20', 'Throttle Body Parts', '', 'Active'), (115, 1, 6, '21', 'Vacuum Parts', '', 'Active'), (116, 1, 7, '01', 'Fuel Injection Pumps', '', 'Active'), (117, 1, 7, '02', 'Fuel Injection System componen', '', 'Active'), (118, 1, 7, '03', 'Fuel Pump Assemblies', '', 'Active'), (119, 1, 7, '04', 'Fuel Pump Components', '', 'Active'), (120, 1, 7, '05', 'Fuel Pump Electronics', '', 'Active'), (121, 1, 7, '06', 'Fuel Pump Hardware', '', 'Active'), (122, 1, 7, '07', 'Fuel Pump Harnesses', '', 'Active'), (123, 1, 7, '08', 'Fuel Pump Hoses', '', 'Active'), (124, 1, 7, '09', 'Fuel Pump Lines', '', 'Active'), (125, 1, 7, '10', 'Fuel Pump Parts', '', 'Active'), (126, 1, 7, '11', 'Fuel Pump Pushrods', '', 'Active'), (127, 1, 7, '12', 'Fuel Pump Seals', '', 'Active'), (128, 1, 7, '13', 'Fuel Pumps', '', 'Active'), (129, 1, 7, '14', 'Fuel Pumps - Performance', '', 'Active'), (130, 1, 7, '15', 'Fuel Sensors', '', 'Active'), (131, 1, 7, '16', 'Fuel Tank Hardware', '', 'Active'), (132, 1, 7, '17', 'Fuel Tank Pickup Lines', '', 'Active'), (133, 1, 7, '18', 'Fuel Tank Sending Units', '', 'Active'), (134, 1, 7, '19', 'Fuel Tank Straps', '', 'Active'), (135, 1, 7, '20', 'Fuel Tank Valves', '', 'Active'), (136, 1, 7, '21', 'Fuel Tanks', '', 'Active'), (137, 1, 7, '22', 'Fuel Tanks & Sending Units', '', 'Active'), (138, 1, 7, '23', 'Fuel Tanks Filler Necks', '', 'Active'), (139, 1, 7, '24', 'Fuel Tanks Hardware', '', 'Active'), (140, 1, 7, '25', 'Gas Caps', '', 'Active'), (141, 1, 8, '01', 'Carbon Dioxide Components', '', 'Active'), (142, 1, 8, '02', 'Carbon dioxide Fuel Bars', '', 'Active'), (143, 1, 8, '03', 'Cabon Dioxide Purge Systems', '', 'Active'), (144, 1, 8, '04', 'Carbon Dioxide Sprayers', '', 'Active'), (145, 1, 8, '05', 'Carbon Dioxide System Hoses', '', 'Active'), (146, 1, 8, '06', 'carbon Dioxide System Switches', '', 'Active'), (147, 1, 8, '07', 'Carbon dioxide Tanks', '', 'Active'), (148, 1, 8, '08', 'Nitrous Bottles & Related', '', 'Active'), (149, 1, 8, '09', 'Nitrous Oxide Accessories', '', 'Active'), (150, 1, 8, '10', 'Nitrous Oxide Controllers', '', 'Active'), (151, 1, 8, '11', 'Nitrous Oxide Distribution', '', 'Active'), (152, 1, 8, '12', 'Nitrous Oxide Filters', '', 'Active'), (153, 1, 8, '13', 'Nitrous Oxide Fittings', '', 'Active'), (154, 1, 8, '14', 'Nitrous Oxide Gauges & Valves', '', 'Active'), (155, 1, 8, '15', 'Nitrous Oxide Hardware', '', 'Active'), (156, 1, 8, '16', 'Nitrous Oxide Hoses', '', 'Active'), (157, 1, 8, '17', 'Nitrous Oxide Injection System', '', 'Active'), (158, 1, 8, '18', 'Nitrous Oxide Jets', '', 'Active'), (159, 1, 8, '19', 'Nitrous Oxide Purge Kits', '', 'Active'), (160, 1, 8, '20', 'Nitrous Oxide Solenoids', '', 'Active'), (161, 1, 8, '21', 'Nitrous Oxide Tools', '', 'Active'), (162, 1, 9, '01', 'Oxygen Sensor Components', '', 'Active'), (163, 1, 9, '02', 'Oxygen Sensors', '', 'Active'), (164, 1, 10, '01', 'Intercoolers', '', 'Active'), (165, 1, 10, '02', 'Small Block Superchargers', '', 'Active'), (166, 1, 10, '03', 'Supercharger Belts & Pulleys', '', 'Active'), (167, 1, 10, '04', 'Supercharger Gaskets & Seals', '', 'Active'), (168, 1, 10, '05', 'Supercharger Parts', '', 'Active'), (169, 1, 10, '06', 'Superchargers', '', 'Active'), (170, 1, 10, '07', 'Turbocharger Gaskets & Seals', '', 'Active'), (171, 1, 10, '08', 'Turbocharger Hardware', '', 'Active'), (172, 1, 10, '09', 'Turbocharger Hoses', '', 'Active'), (173, 1, 10, '10', 'Turbocharger Parts', '', 'Active'), (174, 1, 10, '11', 'Turbochargers', '', 'Active'), (175, 2, 1, '01', 'Air Fresheners & Fragrances', '', 'Active'), (176, 2, 1, '02', 'Brushes & Vacuums', '', 'Active'), (177, 2, 1, '03', 'Buckets, Hoses & Nozzles', '', 'Active'), (178, 2, 1, '04', 'Bug & Tar Removers', '', 'Active'), (179, 2, 1, '05', 'Carpet & Upholstery Cleaners', '', 'Active'), (180, 2, 1, '06', 'Cleaners & Polishes', '', 'Active'), (181, 2, 1, '07', 'Headlight Restoration Kits', '', 'Active'), (182, 2, 1, '08', 'Leather Cleaners', '', 'Active'), (183, 2, 1, '09', 'Protectants', '', 'Active'), (184, 2, 1, '10', 'Shop Towels', '', 'Active'), (185, 2, 1, '11', 'Sponges, Wash Towels & Chamois', '', 'Active'), (186, 2, 1, '12', 'Tire Cleaners & Polishes', '', 'Active'), (187, 2, 1, '13', 'Vehicle Care kits', '', 'Active'), (188, 2, 1, '14', 'Wash & Shampoos', '', 'Active'), (189, 2, 1, '15', 'Waxes', '', 'Active'), (190, 2, 1, '16', 'Window Cleaning Tools', '', 'Active'), (191, 2, 2, '01', 'Air Bag Components', '', 'Active'), (192, 2, 2, '02', 'Antennas & Accessories', '', 'Active'), (193, 2, 2, '03', 'Arm Rest', '', 'Active'), (194, 2, 2, '04', 'Body Panels & Molding', '', 'Active'), (195, 2, 2, '05', 'Bulk Items', '', 'Active'), (196, 2, 2, '06', 'Bumper Components', '', 'Active'), (197, 2, 2, '07', 'Bumpers', '', 'Active'), (198, 2, 2, '08', 'Dashboard & Console', '', 'Active'), (199, 2, 2, '09', 'Door Parts', '', 'Active'), (200, 2, 2, '10', 'Fender Parts & Accessories', '', 'Active'), (201, 2, 2, '11', 'Fenders', '', 'Active'), (202, 2, 2, '12', 'Fuel doors & Related', '', 'Active'), (203, 2, 2, '13', 'Glass & Window repair', '', 'Active'), (204, 2, 2, '14', 'Headlamps, Headlights & Parts', '', 'Active'), (205, 2, 2, '15', 'Hood & Front End', '', 'Active'), (206, 2, 2, '16', 'Horn Parts', '', 'Active'), (207, 2, 2, '17', 'Lifts, Latches & Handles', '', 'Active'), (208, 2, 2, '18', 'Mirrors & Lights', '', 'Active'), (209, 2, 2, '19', 'Pedals', '', 'Active'), (210, 2, 2, '20', 'Props, Latches & Mounts', '', 'Active'), (211, 2, 2, '21', 'Roof tops, Parts & Racks', '', 'Active'), (212, 2, 2, '22', 'Running Boards & steps', '', 'Active'), (213, 2, 2, '23', 'Seats', '', 'Active'), (214, 2, 2, '24', 'Trailer & Towing', '', 'Active'), (215, 2, 2, '25', 'Trailer Hitch & accessories', '', 'Active'), (216, 2, 2, '26', 'Trailer Winches', '', 'Active'), (217, 2, 2, '27', 'Trunk & Tailgate', '', 'Active'), (218, 2, 2, '28', 'Undercar Protection', '', 'Active'), (219, 2, 2, '29', 'Windshields, Doors & Windows', '', 'Active'), (220, 2, 3, '01', 'Body Styling - Performance', '', 'Active'), (221, 2, 3, '02', 'Body Styling Kits - Performanc', '', 'Active'), (222, 2, 3, '03', 'Chrome & Dress-Up', '', 'Active'), (223, 2, 3, '04', 'Chrome & Dress-Up covers', '', 'Active'), (224, 2, 3, '05', 'Chrome Accessories', '', 'Active'), (225, 2, 3, '06', 'Chrome Bolts & Brackets', '', 'Active'), (226, 2, 3, '07', 'Chrome shift Handles', '', 'Active'), (227, 2, 3, '08', 'Decals & Emblems', '', 'Active'), (228, 2, 3, '09', 'License Plate Frames', '', 'Active'), (229, 2, 3, '10', 'Steering Wheel Covers', '', 'Active'), (230, 2, 3, '11', 'Steering Wheels & Accessories', '', 'Active'), (231, 2, 3, '12', 'Steering Wheels & Related', '', 'Active'), (232, 2, 3, '13', 'Wheel Covers', '', 'Active'), (233, 2, 4, '01', 'ATV Covers', '', 'Active'), (234, 2, 4, '02', 'Bench Seat Covers', '', 'Active'), (235, 2, 4, '03', 'Bucket Seat Covers', '', 'Active'), (236, 2, 4, '04', 'Bug Guards & Shields', '', 'Active'), (237, 2, 4, '05', 'Bumper Covers', '', 'Active'), (238, 2, 4, '06', 'Canopy Shelters & Accessories', '', 'Active'), (239, 2, 4, '07', 'Car Covers & Accessories', '', 'Active'), (240, 2, 4, '08', 'Dashboard & Console', '', 'Active'), (241, 2, 4, '09', 'Floor Coverings & Protectors', '', 'Active'), (242, 2, 4, '10', 'Floormats', '', 'Active'), (243, 2, 4, '11', 'Front End Covers & Bras', '', 'Active'), (244, 2, 4, '12', 'Guards, Flaps & Film', '', 'Active'), (245, 2, 4, '13', 'Motorcycle Covers', '', 'Active'), (246, 2, 4, '14', 'Pet Pads & Protectors', '', 'Active'), (247, 2, 4, '15', 'Seat Covers', '', 'Active'), (248, 2, 4, '16', 'Sun Shades & Shields', '', 'Active'), (249, 2, 4, '17', 'Sun Visors & Clips', '', 'Active'), (250, 2, 4, '18', 'Tire & wheel Covers', '', 'Active'), (251, 2, 4, '19', 'Undercar Protection', '', 'Active'), (252, 2, 4, '20', 'Visors', '', 'Active'), (253, 2, 4, '21', 'Window Covers', '', 'Active'), (254, 2, 4, '22', 'Window Tint', '', 'Active'), (255, 2, 5, '01', 'Coating & Under-Coating', '', 'Active'), (256, 2, 5, '02', 'filler Mixing Pallettes', '', 'Active'), (257, 2, 5, '03', 'Masking Film, Tape & Supplies', '', 'Active'), (258, 2, 5, '04', 'Paint Removers & Strippers', '', 'Active'), (259, 2, 5, '05', 'Paints & Enamels', '', 'Active'), (260, 2, 5, '06', 'Polishers, Buffers & Pads', '', 'Active'), (261, 2, 5, '07', 'Repair Parts & Accessories', '', 'Active'), (262, 2, 5, '08', 'Repair Vinyl & Leather', '', 'Active'), (263, 2, 5, '09', 'Respirators & Accessories', '', 'Active'), (264, 2, 5, '10', 'Scratch Removers', '', 'Active'), (265, 2, 5, '11', 'Touch-Up Liquids', '', 'Active'), (266, 2, 5, '12', 'Touch-Up sprays', '', 'Active'), (267, 2, 5, '13', 'Truck & Van Paints', '', 'Active'), (268, 2, 5, '14', 'Wax & Grease removers', '', 'Active'), (269, 2, 6, '01', 'Alarm Relays & Switches', '', 'Active'), (270, 2, 6, '02', 'Alcohol Detectors', '', 'Active'), (271, 2, 6, '03', 'Back-Up Systems', '', 'Active'), (272, 2, 6, '04', 'Car Alarms & Accessories', '', 'Active'), (273, 2, 6, '05', 'Deer Warning Whistles', '', 'Active'), (274, 2, 6, '06', 'Emergency Roadside Kits', '', 'Active'), (275, 2, 6, '07', 'Fire Extinguishers', '', 'Active'), (276, 2, 6, '08', 'First Aid Kits', '', 'Active'), (277, 2, 6, '09', 'Flares & Reflectors', '', 'Active'), (278, 2, 6, '10', 'Key Covers & Storage', '', 'Active'), (279, 2, 6, '11', 'Keyless Entry Systems', '', 'Active'), (280, 2, 6, '12', 'Keys & Accessories', '', 'Active'), (281, 2, 6, '13', 'Locks', '', 'Active'), (282, 2, 6, '14', 'Remote Starters & Kits', '', 'Active'), (283, 2, 6, '15', 'Safety Equipment', '', 'Active'), (284, 2, 7, '01', '12-Volt Interior Heaters', '', 'Active'), (285, 2, 7, '02', 'Cable chains', '', 'Active'), (286, 2, 7, '03', 'De-Icers & Scrapers', '', 'Active'), (287, 2, 7, '04', 'Engine & Battery Heaters', '', 'Active'), (288, 2, 7, '05', 'Heat & sound Insulation', '', 'Active'), (289, 2, 7, '06', 'Snow Plows & Accessories', '', 'Active'), (290, 2, 7, '07', 'Snow Shovels', '', 'Active'), (291, 2, 7, '08', 'Tire Chains', '', 'Active'), (292, 2, 8, '01', 'Cab & Glove Box Organizers', '', 'Active'), (293, 2, 8, '02', 'Cargo Carriers', '', 'Active'), (294, 2, 8, '03', 'Cargo Dividers', '', 'Active'), (295, 2, 8, '04', 'Cargo Nets', '', 'Active'), (296, 2, 8, '05', 'Cargo Systems', '', 'Active'), (297, 2, 8, '06', 'Carrier Accessories', '', 'Active'), (298, 2, 8, '07', 'CD & DVD Holders', '', 'Active'), (299, 2, 8, '08', 'Consoles & Parts', '', 'Active'), (300, 2, 8, '09', 'Convertible Interior Covers', '', 'Active'), (301, 2, 8, '10', 'Coolers', '', 'Active'), (302, 2, 8, '11', 'Cup Holders', '', 'Active'), (303, 2, 8, '12', 'Liquid transfer Thanks', '', 'Active'), (304, 2, 8, '13', 'Miscellaneous Storage', '', 'Active'), (305, 2, 8, '14', 'Roof Racks & Parts', '', 'Active'), (306, 2, 8, '15', 'Saddle Bags', '', 'Active'), (307, 2, 8, '16', 'Trunk & Tailgate', '', 'Active'), (308, 2, 8, '17', 'Universal Pet Barriers', '', 'Active'), (309, 2, 9, '01', 'Glass & Window Repair', '', 'Active'), (310, 2, 9, '02', 'Lifts, Latches & Handles', '', 'Active'), (311, 2, 9, '03', 'Specialty Wiper Blades', '', 'Active'), (312, 2, 9, '04', 'Sunroof Parts', '', 'Active'), (313, 2, 9, '05', 'Washer Fluid Reservoirs', '', 'Active'), (314, 2, 9, '06', 'Washer Pumps & Repair Kits', '', 'Active'), (315, 2, 9, '07', 'Window Motors & Parts', '', 'Active'), (316, 2, 9, '08', 'Windshield Wiper Blades', '', 'Active'), (317, 2, 9, '09', 'Windshield Wiper Motor Covers', '', 'Active'), (318, 2, 9, '10', 'Windshield Wiper Motors', '', 'Active'), (319, 2, 9, '11', 'Windshield Wiper Refills', '', 'Active'), (320, 2, 9, '12', 'Wipers & Washer Parts', '', 'Active'), (321, 3, 1, '01', 'Air Bag Components', '', 'Active'), (322, 3, 1, '02', 'Air Bag Modules', '', 'Active'), (323, 3, 2, '01', 'Accessory Drive Belts', '', 'Active'), (324, 3, 2, '02', 'Alternator Bolts & Sets', '', 'Active'), (325, 3, 2, '03', 'Alternator Brackets', '', 'Active'), (326, 3, 2, '04', 'Alternator Brush Sets', '', 'Active'), (327, 3, 2, '05', 'Alternator Commutator End Bear', '', 'Active'), (328, 3, 2, '06', 'Alternator Components', '', 'Active'), (329, 3, 2, '07', 'Alternator Connectors', '', 'Active'), (330, 3, 2, '08', 'Alternator Drive End Bearings', '', 'Active'), (331, 3, 2, '09', 'Alternator Hardware', '', 'Active'), (332, 3, 2, '10', 'Alternator Pulleys', '', 'Active'), (333, 3, 2, '11', 'Alternator Rectifier Sets', '', 'Active'), (334, 3, 2, '12', 'Alternator Repair Kits', '', 'Active'), (335, 3, 2, '13', 'Alternator Rotors', '', 'Active'), (336, 3, 2, '14', 'Alternators', '', 'Active'), (337, 3, 2, '15', 'Belt Tensioners', '', 'Active'), (338, 3, 2, '16', 'Belts, Brackets & Bushings', '', 'Active'), (339, 3, 2, '17', 'Brush Parts', '', 'Active'), (340, 3, 2, '18', 'Drive Belt Idler & Related', '', 'Active'), (341, 3, 2, '19', 'Generators', '', 'Active'), (342, 3, 2, '20', 'Sepertine Belts', '', 'Active'), (343, 3, 3, '01', 'Automotive Batteries', '', 'Active'), (344, 3, 3, '02', 'Electronic Batteries', '', 'Active'), (345, 3, 3, '03', 'Farm & Truck Batteries', '', 'Active'), (346, 3, 3, '04', 'Golf Cart Batteries', '', 'Active'), (347, 3, 3, '05', 'Lawn & Garden Batteries', '', 'Active'), (348, 3, 3, '06', 'Marine Batteries', '', 'Active'), (349, 3, 3, '07', 'Motorcycle & ATV Batteries', '', 'Active'), (350, 3, 3, '08', 'Powersport Batteries', '', 'Active'), (351, 3, 4, '01', 'Battery Accessories', '', 'Active'), (352, 3, 4, '02', 'Battery Cables', '', 'Active'), (353, 3, 4, '03', 'Battery Chargers', '', 'Active'), (354, 3, 4, '04', 'Battery Parts & Tools', '', 'Active'), (355, 3, 4, '05', 'Battery Straps & Hold-Downs', '', 'Active'), (356, 3, 4, '06', 'Battery Switches & relays', '', 'Active'), (357, 3, 4, '07', 'Battery Terminal Components', '', 'Active'), (358, 3, 4, '08', 'Battery Tools', '', 'Active'), (359, 3, 4, '09', 'Battery Trays', '', 'Active'), (360, 3, 5, '01', 'Charging System Harness Parts', '', 'Active'), (361, 3, 5, '02', 'Drive End Bearings', '', 'Active'), (362, 3, 5, '03', 'Voltage Regulators', '', 'Active'), (363, 3, 6, '01', 'Buttons & Knobs', '', 'Active'), (364, 3, 6, '02', 'Electrical Harness Wire', '', 'Active'), (365, 3, 6, '03', 'Electrical Tape, Ties & Clamps', '', 'Active'), (366, 3, 6, '04', 'Extension Cords', '', 'Active'), (367, 3, 6, '05', 'Heat Shrink Sleeving & Tubing', '', 'Active'), (368, 3, 6, '06', 'Miscellaneous Wire', '', 'Active'), (369, 3, 6, '07', 'Pigtails & Sockets', '', 'Active'), (370, 3, 6, '08', 'Power Cord Reels', '', 'Active'), (371, 3, 6, '09', 'Primary Wire', '', 'Active'), (372, 3, 6, '10', 'Soldering Iron & Solder', '', 'Active'), (373, 3, 6, '11', 'Tolls & Tester', '', 'Active'), (374, 3, 6, '12', 'Wire Conduit', '', 'Active'), (375, 3, 6, '13', 'Wire Connectors', '', 'Active'), (376, 3, 6, '14', 'Wiring Kits', '', 'Active'), (377, 3, 7, '01', 'Auxilliary Lights', '', 'Active'), (378, 3, 7, '02', 'Back-Up Lamps & Lights', '', 'Active'), (379, 3, 7, '03', 'Cornering Lamps & Lights', '', 'Active'), (380, 3, 7, '04', 'Daytime Running Lamps & Lights', '', 'Active'), (381, 3, 7, '05', 'Dome Lights & Accessories', '', 'Active'), (382, 3, 7, '06', 'Emergency Lights', '', 'Active'), (383, 3, 7, '07', 'Exterior Lights & Bulbs', '', 'Active'), (384, 3, 7, '08', 'Flashers', '', 'Active'), (385, 3, 7, '09', 'Fog Lamps & Lights', '', 'Active'), (386, 3, 7, '10', 'Fuse Blocks, Boxes & Holders', '', 'Active'), (387, 3, 7, '11', 'Fuses', '', 'Active'), (388, 3, 7, '12', 'Fusible Links', '', 'Active'), (389, 3, 7, '13', 'Glass Fuses', '', 'Active'), (390, 3, 7, '14', 'Headlamps & Lights', '', 'Active'), (391, 3, 7, '15', 'License Plate Lamps', '', 'Active'), (392, 3, 7, '16', 'Mirror Lights & Accessories', '', 'Active'), (393, 3, 7, '17', 'Miscellaneous Accessories', '', 'Active'), (394, 3, 7, '18', 'Miscellaneous Lamps & Bulbs', '', 'Active'), (395, 3, 7, '19', 'Parking Lamps & Lights', '', 'Active'), (396, 3, 7, '20', 'Side Marker Lamps & Lights', '', 'Active'), (397, 3, 7, '21', 'Spade Fuses', '', 'Active'), (398, 3, 7, '22', 'Spot & Trouble Lights', '', 'Active'), (399, 3, 7, '23', 'Tail Lamps & Lights', '', 'Active'), (400, 3, 7, '24', 'Turn Signal Lights & Bulbs', '', 'Active'), (401, 3, 8, '01', 'Relays', '', 'Active'), (402, 3, 8, '02', 'Sensors', '', 'Active'), (403, 3, 8, '03', 'Switches', '', 'Active'), (404, 3, 8, '04', 'Off-Road Lamp Relay', '', 'Active'), (405, 3, 9, '01', 'Starter Brushes', '', 'Active'), (406, 3, 9, '02', 'Starter Bushings', '', 'Active'), (407, 3, 9, '03', 'Starter Parts', '', 'Active'), (408, 3, 9, '04', 'Starter Solenoids & Kits', '', 'Active'), (409, 3, 9, '05', 'Starters', '', 'Active'), (410, 4, 1, '01', 'ABS Accumulators & Repair Kits', '', 'Active'), (411, 4, 1, '02', 'ABS Cables & Brackets', '', 'Active'), (412, 4, 1, '03', 'ABS Control Modules', '', 'Active'), (413, 4, 1, '04', 'ABS Harnesses & Connectors', '', 'Active'), (414, 4, 1, '05', 'ABS Hydraulic Units', '', 'Active'), (415, 4, 1, '06', 'ABS Pump & Motor Assemblies', '', 'Active'), (416, 4, 1, '07', 'ABS Rings', '', 'Active'), (417, 4, 1, '08', 'ABS Speed Sensors', '', 'Active'), (418, 4, 1, '09', 'ABS Switches, Sensors & Relays', '', 'Active'), (419, 4, 1, '10', 'ABS Valves & Valve Kits', '', 'Active'), (420, 4, 2, '01', 'Brake Caliper components', '', 'Active'), (421, 4, 2, '02', 'Brake Calipers', '', 'Active'), (422, 4, 3, '01', 'Brake Drum Hardware', '', 'Active'), (423, 4, 3, '02', 'Brake Drums', '', 'Active'), (424, 4, 3, '03', 'brake Rotors', '', 'Active'), (425, 4, 4, '01', 'Brake Adapters & Fittings', '', 'Active'), (426, 4, 4, '02', 'Brake Adjustment Hardware', '', 'Active'), (427, 4, 4, '03', 'Brake Bleeders', '', 'Active'), (428, 4, 4, '04', 'Brake Boosters', '', 'Active'), (429, 4, 4, '05', 'Brake Cables', '', 'Active'), (430, 4, 4, '06', 'Brake Clutches', '', 'Active'), (431, 4, 4, '07', 'Brake Hardware', '', 'Active'), (432, 4, 4, '08', 'Brake Hoses & Lines', '', 'Active'), (433, 4, 4, '09', 'Brake Lubricant', '', 'Active'), (434, 4, 4, '10', 'Brake Master Cylinder Parts', '', 'Active'), (435, 4, 4, '11', 'Brake Servos & Sensors', '', 'Active'), (436, 4, 4, '12', 'Brake Shoe Hardware', '', 'Active'), (437, 4, 4, '13', 'Brake Tools', '', 'Active'), (438, 4, 4, '14', 'Brake Valves', '', 'Active'), (439, 4, 4, '15', 'Brake Wheel Cylinders & Kits', '', 'Active'), (440, 4, 4, '16', 'Parking Brake Parts', '', 'Active'), (441, 4, 5, '01', 'Brake Pad Components', '', 'Active'), (442, 4, 5, '02', 'Brake Pads & Shoes', '', 'Active'), (443, 4, 6, '01', 'Power Steering Control Valves', '', 'Active'), (444, 4, 6, '02', 'Power Steering Coolers', '', 'Active'), (445, 4, 6, '03', 'Power Steering Cylinders & Kit', '', 'Active'), (446, 4, 6, '04', 'Power Steering Filters', '', 'Active'), (447, 4, 6, '05', 'Power Steering Hose Hardware', '', 'Active'), (448, 4, 6, '06', 'Power Steering Hoses', '', 'Active'), (449, 4, 6, '07', 'Power Steering Pulley Bearings', '', 'Active'), (450, 4, 6, '08', 'Power Steering Pulleys', '', 'Active'), (451, 4, 6, '09', 'Power Steering Pump Hardware', '', 'Active'), (452, 4, 6, '10', 'Power Steering Pumps', '', 'Active'), (453, 4, 6, '11', 'Power Steering Reservoirs', '', 'Active'), (454, 4, 6, '12', 'Power Steering Seals', '', 'Active'), (455, 4, 6, '13', 'Power Steering Switches', '', 'Active'), (456, 4, 7, '01', 'Coil Spring Hardware', '', 'Active'), (457, 4, 7, '02', 'Coil Springs', '', 'Active'), (458, 4, 7, '03', 'Leaf Spring Hardware', '', 'Active'), (459, 4, 7, '04', 'Leaf Springs', '', 'Active'), (460, 4, 7, '05', 'Shock & Strut Fittings', '', 'Active'), (461, 4, 7, '06', 'Shock & Strut Installation Gui', '', 'Active'), (462, 4, 7, '07', 'Shock Absorber Boots', '', 'Active'), (463, 4, 7, '08', 'Shock Absorber Bumpers', '', 'Active'), (464, 4, 7, '09', 'Shock Absorber Bushings', '', 'Active'), (465, 4, 7, '10', 'Shock Absorber Conversion Kit', '', 'Active'), (466, 4, 7, '11', 'Shock Absorber Hardware', '', 'Active'), (467, 4, 7, '12', 'Shock Absorber Mounts', '', 'Active'), (468, 4, 7, '13', 'Shock Absorbers', '', 'Active'), (469, 4, 7, '14', 'Shocks & Struts Hardware', '', 'Active'), (470, 4, 7, '15', 'Strut Bearings', '', 'Active'), (471, 4, 7, '16', 'Strut Bellows', '', 'Active'), (472, 4, 7, '17', 'Strut Bumpers', '', 'Active'), (473, 4, 7, '18', 'Strut Hardware', '', 'Active'), (474, 4, 7, '19', 'Strut Mounts', '', 'Active'), (475, 4, 7, '20', 'Strut Support', '', 'Active'), (476, 4, 8, '01', 'Bearings & Bushings', '', 'Active'), (477, 4, 8, '02', 'Housing & Box Components', '', 'Active'), (478, 4, 8, '03', 'Idler Arms & Related', '', 'Active'), (479, 4, 8, '04', 'Pitman Arms & Related', '', 'Active'), (480, 4, 8, '05', 'Rack & Pinion Bushings', '', 'Active'), (481, 4, 8, '06', 'Rack & Pinion Components', '', 'Active'), (482, 4, 8, '07', 'Rack & Pinion Mounts', '', 'Active'), (483, 4, 8, '08', 'Rack & Pinion Parts', '', 'Active'), (484, 4, 8, '09', 'Rack & Pinion Rebuild Kits', '', 'Active'), (485, 4, 8, '10', 'Rack & Pinion Seals', '', 'Active'), (486, 4, 8, '11', 'Rack & Pinions', '', 'Active'), (487, 4, 8, '12', 'Radium Arms & Related', '', 'Active'), (488, 4, 8, '13', 'Steering Bell Cranks', '', 'Active'), (489, 4, 8, '14', 'Steering Column Components', '', 'Active'), (490, 4, 8, '15', 'Steering Column Parts', '', 'Active'), (491, 4, 8, '16', 'Steering Components', '', 'Active'), (492, 4, 8, '17', 'Steering Gear Kits', '', 'Active'), (493, 4, 8, '18', 'Steering Gear Shaft Seals', '', 'Active'), (494, 4, 8, '19', 'Steering Hardware', '', 'Active'), (495, 4, 8, '20', 'Steering Knuckle Parts', '', 'Active'), (496, 4, 8, '21', 'Steering Parts', '', 'Active'), (497, 4, 8, '22', 'Tie Rod Ends & Related', '', 'Active'), (498, 4, 9, '01', 'Alignment Accessories', '', 'Active'), (499, 4, 9, '02', 'Alignment Hardware', '', 'Active'), (500, 4, 9, '03', 'Alignment Kits', '', 'Active'), (501, 4, 9, '04', 'Alignment Tools', '', 'Active'), (502, 4, 9, '05', 'Axle Support Hardware', '', 'Active'), (503, 4, 9, '06', 'Ball Joints & Control arms', '', 'Active'), (504, 4, 9, '07', 'Chassis', '', 'Active'), (505, 4, 9, '08', 'Chassis Kits', '', 'Active'), (506, 4, 9, '09', 'Control Arm Components', '', 'Active'), (507, 4, 9, '10', 'Lateral Arms & Parts', '', 'Active'), (508, 4, 9, '11', 'Lifts & Lowering Kits', '', 'Active'), (509, 4, 9, '12', 'Spindle Parts', '', 'Active'), (510, 4, 9, '13', 'Strut Parts', '', 'Active'), (511, 4, 9, '14', 'Suspension Air Components', '', 'Active'), (512, 4, 9, '15', 'Suspension Ball Joints', '', 'Active'), (513, 4, 9, '16', 'suspension Components', '', 'Active'), (514, 4, 9, '17', 'Suspension Control Arm Parts', '', 'Active'), (515, 4, 9, '18', 'Suspension Control Arms', '', 'Active'), (516, 4, 9, '19', 'Suspension Hardware', '', 'Active'), (517, 4, 9, '20', 'Suspension Mounts', '', 'Active'), (518, 4, 9, '21', 'Suspension Parts', '', 'Active'), (519, 4, 9, '22', 'Suspension Spring Components', '', 'Active'), (520, 4, 9, '23', 'Sway Bar Bushings & Brackets', '', 'Active'), (521, 4, 9, '24', 'Sway Bar Parts & Kits', '', 'Active'), (522, 4, 9, '25', 'Torsion Bars & Parts', '', 'Active'), (523, 4, 9, '26', 'Track Bars & Parts', '', 'Active'), (524, 4, 9, '27', 'Upper Control Arms & Parts', '', 'Active'), (525, 4, 10, '01', 'Tire Repair', '', 'Active'), (526, 4, 10, '02', 'Wheel covers', '', 'Active'), (527, 4, 10, '03', 'Wheel Lug Nuts', '', 'Active'), (528, 4, 10, '04', 'Wheel Nut Caps', '', 'Active'), (529, 4, 10, '05', 'Wheel Nut Covers', '', 'Active'), (530, 4, 10, '06', 'Wheel Nuts', '', 'Active'), (531, 4, 10, '07', 'Wheel Spacers', '', 'Active'), (532, 4, 10, '08', 'Wheel Washers', '', 'Active'), (533, 4, 10, '09', 'Wheel Weights', '', 'Active'), (534, 4, 10, '10', 'Wheels & Parts', '', 'Active'), (535, 5, 1, '01', 'AC Ventillation Systems', '', 'Active'), (536, 5, 1, '02', 'Accumulator Tubing', '', 'Active'), (537, 5, 1, '03', 'Accumulators & Receiver Driers', '', 'Active'), (538, 5, 1, '04', 'Receiver Drier Elements', '', 'Active'), (539, 5, 2, '01', 'AC Clutch Bearings', '', 'Active'), (540, 5, 2, '02', 'AC Clutch Install Kits', '', 'Active'), (541, 5, 2, '03', 'AC Clutch Parts', '', 'Active'), (542, 5, 2, '04', 'AC Clutches', '', 'Active'), (543, 5, 2, '05', 'AC Compressor Bearing', '', 'Active'), (544, 5, 2, '06', 'AC Compressor Mounts', '', 'Active'), (545, 5, 2, '07', 'AC Compressor Pulleys', '', 'Active'), (546, 5, 2, '08', 'AC Compressor Shaft Parts', '', 'Active'), (547, 5, 2, '09', 'AC Compressors', '', 'Active'), (548, 5, 2, '10', 'AC Condenser Fan Shrouds & Bla', '', 'Active'), (549, 5, 2, '11', 'AC Condensers', '', 'Active'), (550, 5, 2, '12', 'AC Evaporator Repair Kits', '', 'Active'), (551, 5, 2, '13', 'AC Evaporator Motors & Related', '', 'Active'), (552, 5, 2, '14', 'AC Evaporators', '', 'Active'), (553, 5, 2, '15', 'AC Fan Motors', '', 'Active'), (554, 5, 2, '16', 'AC Gaskets & Seals', '', 'Active'), (555, 5, 2, '17', 'AC Hoses & Fittings', '', 'Active'), (556, 5, 2, '18', 'AC Switches & Resistors', '', 'Active'), (557, 5, 2, '19', 'AC Valves & Tubing', '', 'Active'), (558, 5, 2, '20', 'Other Specialty Tools', '', 'Active'), (559, 5, 3, '01', 'AC Actuators', '', 'Active'), (560, 5, 3, '02', 'AC Adapters', '', 'Active'), (561, 5, 3, '03', 'AC Clutch Install Kits', '', 'Active'), (562, 5, 3, '04', 'AC Connectors', '', 'Active'), (563, 5, 3, '05', 'AC Drive Belt Tensioners', '', 'Active'), (564, 5, 3, '06', 'AC Gaskets & Seals', '', 'Active'), (565, 5, 3, '07', 'AC Hoses & Fittings', '', 'Active'), (566, 5, 3, '08', 'AC Pipes', '', 'Active'), (567, 5, 3, '09', 'AC Retro-Fit Kits', '', 'Active'), (568, 5, 3, '10', 'AC Tools', '', 'Active'), (569, 5, 3, '11', 'AC Valves & Tubing', '', 'Active'), (570, 5, 3, '12', 'Fan Switches', '', 'Active'), (571, 5, 3, '13', 'Gauges & Specialty Tools', '', 'Active'), (572, 5, 3, '14', 'Leak Detectors', '', 'Active'), (573, 5, 3, '15', 'Pressure Side Switches', '', 'Active'), (574, 5, 3, '16', 'Programmers', '', 'Active'), (575, 5, 3, '17', 'Repair Kits', '', 'Active'), (576, 5, 3, '18', 'Temperature Sensors', '', 'Active'), (577, 5, 3, '19', 'Trinary Switches', '', 'Active'), (578, 5, 4, '01', 'AC Drive Belt Tensioners', '', 'Active'), (579, 5, 4, '02', 'Accessory Drive Belts', '', 'Active'), (580, 5, 4, '03', 'Belt Components', '', 'Active'), (581, 5, 4, '04', 'Belts', '', 'Active'), (582, 5, 4, '05', 'Bulk Hose', '', 'Active'), (583, 5, 4, '06', 'Hose Hardware', '', 'Active'), (584, 5, 4, '07', 'Hoses', '', 'Active'), (585, 5, 4, '08', 'Pulley Components', '', 'Active'), (586, 5, 4, '09', 'Pulleys', '', 'Active'), (587, 5, 5, '01', 'Coolant Air Bleeders', '', 'Active'), (588, 5, 5, '02', 'Coolant Bypass Parts', '', 'Active'), (589, 5, 5, '03', 'Coolant Hoses', '', 'Active'), (590, 5, 5, '04', 'Coolant Pipes & Accessories', '', 'Active'), (591, 5, 5, '05', 'Coolant Reservoirs & Caps', '', 'Active'), (592, 5, 5, '06', 'Coolant Sensors', '', 'Active'), (593, 5, 5, '07', 'Coolant Thermostats', '', 'Active'), (594, 5, 5, '08', 'Hose Clamps', '', 'Active'), (595, 5, 5, '09', 'Miscellaneous Coolant Parts', '', 'Active'), (596, 5, 5, '10', 'Oil Cooler Parts', '', 'Active'), (597, 5, 5, '11', 'Radiator Fan Switches', '', 'Active'), (598, 5, 5, '12', 'Transmission Coolers', '', 'Active'), (599, 5, 5, '13', 'Water Pump Bolts', '', 'Active'), (600, 5, 5, '14', 'Water Pump Covers', '', 'Active'), (601, 5, 5, '15', 'Water Pump Fittings', '', 'Active'), (602, 5, 5, '16', 'Water Pump Gaskets', '', 'Active'), (603, 5, 5, '17', 'Water Pump Installation', '', 'Active'), (604, 5, 5, '18', 'Water Pump Pulleys', '', 'Active'), (605, 5, 5, '19', 'Water Pump Relays', '', 'Active'), (606, 5, 5, '20', 'Water Pump Repair Kits', '', 'Active'), (607, 5, 5, '21', 'Water Pump Seals', '', 'Active'), (608, 5, 5, '22', 'Water Pump Sockets', '', 'Active'), (609, 5, 5, '23', 'Water Pump Tubing', '', 'Active'), (610, 5, 5, '24', 'Water Pumps', '', 'Active'), (611, 5, 5, '25', 'Water Temperature Gauges', '', 'Active'), (612, 5, 6, '01', 'Blower Motor Components', '', 'Active'), (613, 5, 6, '02', 'Blower Motor Control Units', '', 'Active'), (614, 5, 6, '03', 'Blower Motor Resistor Connecto', '', 'Active'), (615, 5, 6, '04', 'Blower Motor Wheels', '', 'Active'), (616, 5, 6, '05', 'Blower Motors', '', 'Active'), (617, 5, 6, '06', 'Cooling Fan Blades', '', 'Active'), (618, 5, 6, '07', 'Cooling Fan Components', '', 'Active'), (619, 5, 6, '08', 'Cooling Fan Controllers', '', 'Active'), (620, 5, 6, '09', 'Cooling Fan Shrouds', '', 'Active'), (621, 5, 6, '10', 'Cooling Fans', '', 'Active'), (622, 5, 6, '11', 'Engine Cooling Fans', '', 'Active'), (623, 5, 6, '12', 'Fan Accessories', '', 'Active'), (624, 5, 6, '13', 'Fan Clutch Hardware & Brackets', '', 'Active'), (625, 5, 6, '14', 'Transmission Coolers', '', 'Active'), (626, 5, 6, '15', 'Water Necks & Shrouds', '', 'Active'), (627, 5, 7, '01', 'AC Flushes & Solvents ', '', 'Active'), (628, 5, 7, '02', 'AC Lubricants', '', 'Active'), (629, 5, 7, '03', 'AC Refrigerants', '', 'Active'), (630, 5, 7, '04', 'Antifreeze Flush Kits', '', 'Active'), (631, 5, 7, '05', 'Coolant & Antifreeze', '', 'Active'), (632, 5, 7, '06', 'Coolant Recovery', '', 'Active'), (633, 5, 7, '07', 'Odor Eliminators', '', 'Active'), (634, 5, 7, '08', 'Refrigerant Oil', '', 'Active'), (635, 5, 8, '01', 'Heater Blend Doors & Parts', '', 'Active'), (636, 5, 8, '02', 'Heater Boxes & Accessories', '', 'Active'), (637, 5, 8, '03', 'Heater Control Assemblies', '', 'Active'), (638, 5, 8, '04', 'Heater Control Knobs', '', 'Active'), (639, 5, 8, '05', 'Heater Cores & Seals', '', 'Active'), (640, 5, 8, '06', 'Heater Hoses & Fittings', '', 'Active'), (641, 5, 8, '07', 'Heater Valves & Related', '', 'Active'), (642, 5, 8, '08', 'Miscellaneous Heater Parts', '', 'Active'), (643, 5, 9, '01', 'Coolant Reservoirs & Caps', '', 'Active'), (644, 5, 9, '02', 'Heater Hoses & Fittings', '', 'Active'), (645, 5, 9, '03', 'Heater Valves & Related', '', 'Active'), (646, 5, 9, '04', 'Oil Cooler Seals', '', 'Active'), (647, 5, 9, '05', 'Oil Coolers', '', 'Active'), (648, 5, 9, '06', 'Radiator Fan Blades', '', 'Active'), (649, 5, 9, '07', 'Radiator Fan Clutch', '', 'Active'), (650, 5, 9, '08', 'Radiator Fan Hardware', '', 'Active'), (651, 5, 9, '09', 'Radiator Fan Motors', '', 'Active'), (652, 5, 9, '10', 'Radiator Fans & Parts', '', 'Active'), (653, 5, 9, '11', 'Radiator Hardware', '', 'Active'), (654, 5, 9, '12', 'Radiator Hoses', '', 'Active'), (655, 5, 9, '13', 'Radiator Mounts', '', 'Active'), (656, 5, 9, '14', 'Radiator Overflow Hoses', '', 'Active'), (657, 5, 9, '15', 'Radiator Sensors', '', 'Active'), (658, 5, 9, '16', 'Radiator Support', '', 'Active'), (659, 5, 9, '17', 'Radiators', '', 'Active'), (660, 5, 9, '18', 'Radiators Caps', '', 'Active'), (661, 5, 9, '19', 'Tank Caps, Hoses & Mounts', '', 'Active'), (662, 5, 9, '20', 'Transmission Coolers', '', 'Active'), (663, 5, 9, '21', 'Tubing', '', 'Active'), (664, 5, 10, '01', 'Climate Control Modules', '', 'Active'), (665, 5, 10, '02', 'Climate Control Sensors', '', 'Active'), (666, 5, 10, '03', 'Coolant Thermostats', '', 'Active'), (667, 5, 10, '04', 'Outlet Gaskets', '', 'Active'), (668, 5, 10, '05', 'Temperature Control Modules', '', 'Active'), (669, 5, 10, '06', 'Temperature Indicators', '', 'Active'), (670, 5, 10, '07', 'Thermostat & Outlet Assemblies', '', 'Active'), (671, 5, 10, '08', 'Thermostat Gaskets', '', 'Active'), (672, 5, 10, '09', 'Thermostat Housing Covers', '', 'Active'), (673, 5, 10, '10', 'Thermostat Housing Gaskets', '', 'Active'), (674, 5, 10, '11', 'Thermostat Housings', '', 'Active'), (675, 5, 10, '12', 'Thermostat Seals', '', 'Active'), (676, 5, 10, '13', 'Thermostats', '', 'Active'), (677, 5, 10, '14', 'Water Outlet', '', 'Active'), (678, 6, 1, '01', 'Cameras & Cases', '', 'Active'), (679, 6, 1, '02', 'Cell Phone Accessories', '', 'Active'), (680, 6, 1, '03', 'Cell Phone Chargers & Batterie', '', 'Active'), (681, 6, 1, '04', 'Cell Phone Hands-Free', '', 'Active'), (682, 6, 1, '05', 'Two-Way Radios', '', 'Active'), (683, 6, 2, '01', 'Adapters & Converters', '', 'Active'), (684, 6, 2, '02', 'HD Audio Components', '', 'Active'), (685, 6, 2, '03', 'Mobile Electronics', '', 'Active'), (686, 6, 2, '04', 'MP3 Player Components', '', 'Active'), (687, 6, 2, '05', 'MP3 Players', '', 'Active'), (688, 6, 2, '06', 'Radio Components', '', 'Active'), (689, 6, 2, '07', 'Radios, MP3 & CD Players', '', 'Active'), (690, 6, 2, '08', 'Sound Enhancement', '', 'Active'), (691, 6, 2, '09', 'Speakers & Accessories', '', 'Active'), (692, 6, 2, '10', 'Televisions & Video Consoles', '', 'Active'), (693, 6, 3, '01', 'Computer Accessories', '', 'Active'), (694, 6, 4, '01', 'Air & Water Gauges', '', 'Active'), (695, 6, 4, '02', 'Amp Gauges', '', 'Active'), (696, 6, 4, '03', 'Fuel Gauges', '', 'Active'), (697, 6, 4, '04', 'Gauge Accessories', '', 'Active'), (698, 6, 4, '05', 'Meter Gauges', '', 'Active'), (699, 6, 4, '06', 'Oil & Fuel Gauges', '', 'Active'), (700, 6, 4, '07', 'Pressure Gauges', '', 'Active'), (701, 6, 4, '08', 'Pyrometers', '', 'Active'), (702, 6, 4, '09', 'Speedometers & Related', '', 'Active'), (703, 6, 4, '10', 'Tachometers & Related', '', 'Active'), (704, 6, 4, '11', 'Temperature Gauges', '', 'Active'), (705, 6, 4, '12', 'Vacuum Gaguges', '', 'Active'), (706, 6, 4, '13', 'Volt Gauges', '', 'Active'), (707, 6, 5, '01', 'Clocks & Compasses', '', 'Active'), (708, 6, 5, '02', 'Instrument Clusters', '', 'Active'), (709, 6, 5, '03', 'Instrument Panels', '', 'Active'), (710, 6, 5, '04', 'Lighters', '', 'Active'), (711, 6, 6, '01', 'GPS Systems', '', 'Active'), (712, 6, 7, '01', 'Radar Detectors', '', 'Active'), (713, 7, 1, '01', 'Case Hardware', '', 'Active'), (714, 7, 1, '02', 'Connecting Rods & Related', '', 'Active'), (715, 7, 1, '03', 'Crankshafts & Parts', '', 'Active'), (716, 7, 1, '04', 'Cylinder Head Components', '', 'Active'), (717, 7, 1, '05', 'Cylinder Head Harware', '', 'Active'), (718, 7, 1, '06', 'Cylinder Head Seals', '', 'Active'), (719, 7, 1, '07', 'Cylinder Heads', '', 'Active'), (720, 7, 1, '08', 'Cylinders & Related', '', 'Active'), (721, 7, 1, '09', 'Engine Components', '', 'Active'), (722, 7, 1, '10', 'Engine Hardware', '', 'Active'), (723, 7, 1, '11', 'Engine Torque & Related', '', 'Active'), (724, 7, 1, '12', 'Freeze Plugs', '', 'Active'), (725, 7, 1, '13', 'Master Kits', '', 'Active'), (726, 7, 1, '14', 'Oil Pans, Pumps & Parts', '', 'Active'), (727, 7, 1, '15', 'Pistons & Piston Parts', '', 'Active'), (728, 7, 1, '16', 'Pushrods & Related', '', 'Active'), (729, 7, 2, '01', 'Engine Mount Hardware', '', 'Active'), (730, 7, 2, '02', 'Engine Mounts', '', 'Active'), (731, 7, 2, '03', 'Engine Parts', '', 'Active'), (732, 7, 2, '04', 'Engines', '', 'Active'), (733, 7, 2, '05', 'Harmonic Balancers', '', 'Active'), (734, 7, 3, '01', 'Analyzers', '', 'Active'), (735, 7, 3, '02', 'Computer Chips - Performance', '', 'Active'), (736, 7, 3, '03', 'Computer Chips & Boards', '', 'Active'), (737, 7, 3, '04', 'Control Modules', '', 'Active'), (738, 7, 3, '05', 'Engine Computers', '', 'Active'), (739, 7, 3, '06', 'Engine Control ', '', 'Active'), (740, 7, 3, '07', 'Engine Modules', '', 'Active'), (741, 7, 3, '08', 'Engine Wiring', '', 'Active'), (742, 7, 3, '09', 'Ignition Modules', '', 'Active'), (743, 7, 3, '10', 'Sensors', '', 'Active'), (744, 7, 4, '01', 'Camshaft Gaskets', '', 'Active'), (745, 7, 4, '02', 'Crankshaft Seals', '', 'Active'), (746, 7, 4, '03', 'Cylinder Head Gaskets', '', 'Active'), (747, 7, 4, '04', 'Drive Seals', '', 'Active'), (748, 7, 4, '05', 'Main Bearing Gaskets', '', 'Active'), (749, 7, 4, '06', 'Manifold Gaskets', '', 'Active'), (750, 7, 4, '07', 'Rear Main Seals', '', 'Active'), (751, 7, 4, '08', 'Silicone Sealers & Gaskets', '', 'Active'), (752, 7, 4, '09', 'Take Off Shaft Seals', '', 'Active'), (753, 7, 5, '01', 'Ballast Components', '', 'Active'), (754, 7, 5, '02', 'Diesel Glow Plug Components', '', 'Active'), (755, 7, 5, '03', 'Diesel glow Plugs', '', 'Active'), (756, 7, 5, '04', 'Distributor Components', '', 'Active'), (757, 7, 5, '05', 'Distributors', '', 'Active'), (758, 7, 5, '06', 'Distributors - Performance', '', 'Active'), (759, 7, 5, '07', 'Ignition Coil Components', '', 'Active'), (760, 7, 5, '08', 'Ignition Coil Parts', '', 'Active'), (761, 7, 5, '09', 'Ignition Coils - Performance', '', 'Active'), (762, 7, 5, '10', 'Ignition Components', '', 'Active'), (763, 7, 5, '11', 'Spark Plug Accessories', '', 'Active'), (764, 7, 5, '12', 'Spark Plug Boots & Shields', '', 'Active'), (765, 7, 5, '13', 'Spark Plug Inserts', '', 'Active'), (766, 7, 5, '14', 'Spark Plug Tubes', '', 'Active'), (767, 7, 5, '15', 'Spark Plugs', '', 'Active'), (768, 7, 5, '16', 'Spark Wires & Tools', '', 'Active'), (769, 7, 6, '01', 'Diesel Motor Oil', '', 'Active'), (770, 7, 6, '02', 'Engine Oil Treatment & Additiv', '', 'Active'), (771, 7, 6, '03', 'Motor Oil', '', 'Active'), (772, 7, 6, '04', 'Motorcycle & Powersport', '', 'Active'), (773, 7, 6, '05', 'Non-Detergent 30W Motor Oil', '', 'Active'), (774, 7, 6, '06', 'Oil Absorbent', '', 'Active'), (775, 7, 6, '07', 'Racing Motor Oil', '', 'Active'), (776, 7, 6, '08', 'Synthetic & Blend', '', 'Active'), (777, 7, 7, '01', 'Balance Shaft Bearings', '', 'Active'), (778, 7, 7, '02', 'Balance Shaft Belts', '', 'Active'), (779, 7, 7, '03', 'Balance Shaft Chain Parts', '', 'Active'), (780, 7, 7, '04', 'Balance Shaft Chains', '', 'Active'), (781, 7, 7, '05', 'Balance Shaft Kits', '', 'Active'), (782, 7, 7, '06', 'Balance Shaft Seals', '', 'Active'), (783, 7, 7, '07', 'Balance Shaft Sprockets', '', 'Active'), (784, 7, 7, '08', 'Camshaft Hardware', '', 'Active'), (785, 7, 7, '09', 'Camshafts', '', 'Active'), (786, 7, 7, '10', 'Camshafts - Performance', '', 'Active'), (787, 7, 7, '11', 'Engine Valve Components', '', 'Active'), (788, 7, 7, '12', 'Engine Valves', '', 'Active'), (789, 7, 7, '13', 'Push Rods', '', 'Active'), (790, 7, 7, '14', 'Rocker Arm Hardware', '', 'Active'), (791, 7, 7, '15', 'Rocker Arms', '', 'Active'), (792, 7, 7, '16', 'Timing Belt Components', '', 'Active'), (793, 7, 7, '17', 'Timing Belt Hardware', '', 'Active'), (794, 7, 7, '18', 'Timing Belts', '', 'Active'), (795, 7, 7, '19', 'Timing Chain Components', '', 'Active'), (796, 7, 7, '20', 'Timing Chains', '', 'Active'), (797, 7, 7, '21', 'Timing Cover Components', '', 'Active'), (798, 7, 7, '22', 'Timing Covers', '', 'Active'), (799, 7, 7, '23', 'Timing Hardware', '', 'Active'), (800, 7, 7, '24', 'Timing Sets', '', 'Active'), (801, 7, 7, '25', 'Valve Cover Hardware', '', 'Active'), (802, 7, 7, '26', 'Valve Covers', '', 'Active'), (803, 7, 7, '27', 'Valve Train Hardware', '', 'Active'), (804, 8, 1, '01', 'AC Flushes & Solvents', '', 'Active'), (805, 8, 1, '02', 'AC Lubricants', '', 'Active'), (806, 8, 1, '03', 'AC Refrigerants', '', 'Active'), (807, 8, 1, '04', 'Coolant & Antifreeze', '', 'Active'), (808, 8, 1, '05', 'Antifreeze Flush Kits', '', 'Active'), (809, 8, 1, '06', 'Brake Cleaners & Fluid', '', 'Active'), (810, 8, 1, '07', 'Carb Cleaners', '', 'Active'), (811, 8, 1, '08', 'Coolant Recovery', '', 'Active'), (812, 8, 1, '09', 'Cylinder Lubricants', '', 'Active'), (813, 8, 1, '10', 'Exhaust Fluid', '', 'Active'), (814, 8, 1, '11', 'Fuel Treatments & Cleaners', '', 'Active'), (815, 8, 1, '12', 'Lead Subtitutes', '', 'Active'), (816, 8, 1, '13', 'Mercon/Dextron AT Fluid', '', 'Active'), (817, 8, 1, '14', 'Octane Boost ', '', 'Active'), (818, 8, 1, '15', 'Odor Eliminators', '', 'Active'), (819, 8, 1, '16', 'Power Steering Fluids & Stop L', '', 'Active'), (820, 8, 1, '17', 'Radiator Additives & Flushes', '', 'Active'), (821, 8, 1, '18', 'Refrigerant Oil', '', 'Active'), (822, 8, 1, '19', 'Starting Fluids', '', 'Active'), (823, 8, 1, '20', 'Transmission & Drivetrain', '', 'Active'), (824, 8, 1, '21', 'Transmission Treatment & Addit', '', 'Active'), (825, 8, 1, '22', 'Windshield Washers & Treatment', '', 'Active'), (826, 8, 2, '01', '2 Cycle & Outboard Lubes', '', 'Active'), (827, 8, 2, '02', 'Assembly Lubes', '', 'Active'), (828, 8, 2, '03', 'Belt Treatments', '', 'Active'), (829, 8, 2, '04', 'Brake Grease', '', 'Active'), (830, 8, 2, '05', 'Brake Lubricant', '', 'Active'), (831, 8, 2, '06', 'Chain Lubes', '', 'Active'), (832, 8, 2, '07', 'Cooling & Heating', '', 'Active'), (833, 8, 2, '08', 'CV Joint Grease', '', 'Active'), (834, 8, 2, '09', 'Electrical Lubes', '', 'Active'), (835, 8, 2, '10', 'Engine Gaskets', '', 'Active'), (836, 8, 2, '11', 'Engine Gaskets & Seals', '', 'Active'), (837, 8, 2, '12', 'Exhaust Gaskets', '', 'Active'), (838, 8, 2, '13', 'Gasket Sets', '', 'Active'), (839, 8, 2, '14', 'Gear Oil', '', 'Active'), (840, 8, 2, '15', 'Gear Oil Pumps', '', 'Active'), (841, 8, 2, '16', 'Graphites & Lubricants', '', 'Active'), (842, 8, 2, '17', 'Grease Cartridges', '', 'Active'), (843, 8, 2, '18', 'Grease Fittings', '', 'Active'), (844, 8, 2, '19', 'Grease Injectors', '', 'Active'), (845, 8, 2, '20', 'Hydraulic Fluids', '', 'Active'), (846, 8, 2, '21', 'Lithium Grease', '', 'Active'), (847, 8, 2, '22', 'Marine Lubes', '', 'Active'), (848, 8, 2, '23', 'Miscellaneous Gaskets', '', 'Active'), (849, 8, 2, '24', 'Oil Filters', '', 'Active'), (850, 8, 2, '25', 'Outlet Gaskets', '', 'Active'), (851, 8, 2, '26', 'Penetrating & Fogging Oil', '', 'Active'), (852, 8, 2, '27', 'Sealers', '', 'Active'), (853, 8, 2, '28', 'Thermostat gaskets', '', 'Active'), (854, 8, 2, '29', 'Transmission & Drivetrain', '', 'Active'), (855, 8, 2, '30', 'Transmission & Drivetrain Gask', '', 'Active'), (856, 8, 3, '01', '1/2 Drive', '', 'Active'), (857, 8, 3, '02', '1/4 Drive', '', 'Active'), (858, 8, 3, '03', '3/8 Drive', '', 'Active'), (859, 8, 3, '04', 'Allen & Hex Key Sets', '', 'Active'), (860, 8, 3, '05', 'Breaker Bars', '', 'Active'), (861, 8, 3, '06', 'External Torx Sockets', '', 'Active'), (862, 8, 3, '07', 'Flashlights & Batteries', '', 'Active'), (863, 8, 3, '08', 'Pliers & Pliers Sets', '', 'Active'), (864, 8, 3, '09', 'Ratchets', '', 'Active'), (865, 8, 3, '10', 'Screwdrivers & Sets', '', 'Active'), (866, 8, 3, '11', 'Socket Sets', '', 'Active'), (867, 8, 3, '12', 'Sockets', '', 'Active'), (868, 8, 3, '13', 'Tool Sets', '', 'Active'), (869, 8, 3, '14', 'Torque & Impact Wrenches', '', 'Active'), (870, 8, 3, '15', 'Wrenches & Wrenches Sets', '', 'Active'), (871, 8, 4, '01', 'Adapters', '', 'Active'), (872, 8, 4, '02', 'AN Fittings', '', 'Active'), (873, 8, 4, '03', 'Belt Components', '', 'Active'), (874, 8, 4, '04', 'Bolts', '', 'Active'), (875, 8, 4, '05', 'Ends', '', 'Active'), (876, 8, 4, '06', 'Fasteners', '', 'Active'), (877, 8, 4, '07', 'Fittings', '', 'Active'), (878, 8, 4, '08', 'Flare Fittings', '', 'Active'), (879, 8, 4, '09', 'Hoses & Assemblies', '', 'Active'), (880, 8, 4, '10', 'Industrial Belts', '', 'Active'), (881, 8, 4, '11', 'Miscellaneous Fittings', '', 'Active'), (882, 8, 4, '12', 'Nuts', '', 'Active'), (883, 8, 4, '13', 'Pipe Thread Fittings', '', 'Active'), (884, 8, 4, '14', 'Radius Ends', '', 'Active'), (885, 8, 4, '15', 'Screws', '', 'Active'), (886, 8, 4, '16', 'Swifel Ends', '', 'Active'), (887, 8, 4, '17', 'Washers', '', 'Active'), (888, 8, 5, '01', 'Diesel Motor Oil', '', 'Active'), (889, 8, 5, '02', 'Engine Oil Treatment & Additiv', '', 'Active'), (890, 8, 5, '03', 'Motor Oil', '', 'Active'), (891, 8, 5, '04', 'Motorcycle & Powersport', '', 'Active'), (892, 8, 5, '05', 'Non-Detergent 30W Motor Oil', '', 'Active'), (893, 8, 5, '06', 'Oil Absorbent', '', 'Active'), (894, 8, 5, '07', 'Racing Motor Oil', '', 'Active'), (895, 8, 5, '08', 'Synthetic & Blended', '', 'Active'), (896, 8, 6, '01', 'Foreign Language Manuals', '', 'Active'), (897, 8, 6, '02', 'Labor Guides', '', 'Active'), (898, 8, 6, '03', 'Repair Manuals', '', 'Active'), (899, 8, 6, '04', 'Shop Manuals', '', 'Active'), (900, 8, 6, '05', 'Specialty Manuals', '', 'Active'), (901, 8, 6, '06', 'Wiring Diagrams', '', 'Active'), (902, 8, 7, '01', 'Air Compressors', '', 'Active'), (903, 8, 7, '02', 'Benches, Tables, Carts & Stool', '', 'Active'), (904, 8, 7, '03', 'Brooms, Mops & Floor Squeegees', '', 'Active'), (905, 8, 7, '04', 'Cleaners & Degreasers', '', 'Active'), (906, 8, 7, '05', 'Commercial tools & Equipment', '', 'Active'), (907, 8, 7, '06', 'Creepers, Dollys & Ramps', '', 'Active'), (908, 8, 7, '07', 'Engine Diagnostics & Flush', '', 'Active'), (909, 8, 7, '08', 'Floor Protection', '', 'Active'), (910, 8, 7, '09', 'Fluid Exchangers', '', 'Active'), (911, 8, 7, '10', 'Garage Organizers', '', 'Active'), (912, 8, 7, '11', 'Generators', '', 'Active'), (913, 8, 7, '12', 'Hoists, Stand & Accessories', '', 'Active'), (914, 8, 7, '13', 'Jacks & Accessories', '', 'Active'), (915, 8, 7, '14', 'Lift & Accessories', '', 'Active'), (916, 8, 7, '15', 'Refrigerant Systems', '', 'Active'), (917, 8, 7, '16', 'Shops Coolers & Heaters', '', 'Active'), (918, 8, 7, '17', 'Tire & Wheel Tools', '', 'Active'), (919, 8, 7, '18', 'Training Supplies', '', 'Active'), (920, 8, 7, '19', 'Vacuums & Pressure Washers', '', 'Active'), (921, 8, 7, '20', 'Welding Tools & Accessories', '', 'Active'), (922, 8, 8, '01', 'AC Clutch Install Kits', '', 'Active'), (923, 8, 8, '02', 'AC Tools, Hardware & Adapters', '', 'Active'), (924, 8, 8, '03', 'Air Tools', '', 'Active'), (925, 8, 8, '04', 'Brake Tools', '', 'Active'); INSERT INTO `rims_product_sub_category` (`id`, `product_master_category_id`, `product_sub_master_category_id`, `code`, `name`, `description`, `status`) VALUES (926, 8, 8, '05', 'Cutting & Drilling Tools', '', 'Active'), (927, 8, 8, '06', 'Diagnostic Tools', '', 'Active'), (928, 8, 8, '07', 'Measuring Tools', '', 'Active'), (929, 8, 8, '08', 'Oil & Lube Tools', '', 'Active'), (930, 8, 8, '09', 'Other Specialty Tools', '', 'Active'), (931, 8, 8, '10', 'Suspension, Springs & Related', '', 'Active'), (932, 8, 9, '01', 'Drip & Drain Pans', '', 'Active'), (933, 8, 9, '02', 'Fuel Can Spouts & Accessories', '', 'Active'), (934, 8, 9, '03', 'Fuel Containers', '', 'Active'), (935, 8, 9, '04', 'Funnels', '', 'Active'), (936, 8, 9, '05', 'Garage Accessories', '', 'Active'), (937, 8, 9, '06', 'Oil change Stickers', '', 'Active'), (938, 8, 9, '07', 'Plastiv Fuel Cans', '', 'Active'), (939, 8, 9, '08', 'Siphons', '', 'Active'), (940, 8, 9, '09', 'Tool Bags', '', 'Active'), (941, 8, 9, '10', 'Tool Boxes & Accessories', '', 'Active'), (942, 8, 9, '11', 'Tool Organizers', '', 'Active'), (943, 8, 9, '12', 'Trailer Mount Tool Boxes', '', 'Active'), (944, 8, 9, '13', 'Truck Tool Boxes', '', 'Active'), (945, 8, 9, '14', 'Water Containers', '', 'Active'), (946, 8, 10, '01', 'Gear Bags & Work Belts', '', 'Active'), (947, 8, 10, '02', 'Kids Gloves', '', 'Active'), (948, 8, 10, '03', 'Knee Pads', '', 'Active'), (949, 8, 10, '04', 'Large Gloves', '', 'Active'), (950, 8, 10, '05', 'Latex & Nitrile Gloves', '', 'Active'), (951, 8, 10, '06', 'Medium Gloves', '', 'Active'), (952, 8, 10, '07', 'Miscellaneous Gloves', '', 'Active'), (953, 8, 10, '08', 'Personal Care', '', 'Active'), (954, 8, 10, '09', 'Protective Gear', '', 'Active'), (955, 8, 10, '10', 'Shoes & Boots', '', 'Active'), (956, 8, 10, '11', 'Small Gloves ', '', 'Active'), (957, 8, 10, '12', 'Solvent & Welding Gloves', '', 'Active'), (958, 8, 10, '13', 'Welding Helmets', '', 'Active'), (959, 8, 10, '14', 'X-Large Gloves', '', 'Active'), (960, 8, 10, '15', 'XX-Large Gloves', '', 'Active'), (961, 9, 1, '01', 'Actuator Cables & Valves', '', 'Active'), (962, 9, 1, '02', 'Automatic Transmission Compone', '', 'Active'), (963, 9, 1, '03', 'Bearings & Bearing Kits', '', 'Active'), (964, 9, 1, '04', 'Control Modules & Connectors', '', 'Active'), (965, 9, 1, '05', 'Cooler Hoses, Clips & Lines', '', 'Active'), (966, 9, 1, '06', 'Dipsticks & Dipstick Tubes', '', 'Active'), (967, 9, 1, '07', 'Gear Shift Levers', '', 'Active'), (968, 9, 1, '08', 'Line Assemblies & Connectors', '', 'Active'), (969, 9, 1, '09', 'Modulator Valves, Caps & Pins', '', 'Active'), (970, 9, 1, '10', 'Oil Pans', '', 'Active'), (971, 9, 1, '11', 'rebuild Kits', '', 'Active'), (972, 9, 1, '12', 'Seals & O-Rings', '', 'Active'), (973, 9, 1, '13', 'Shift Handles', '', 'Active'), (974, 9, 1, '14', 'Shifters', '', 'Active'), (975, 9, 1, '15', 'Speedometer Components', '', 'Active'), (976, 9, 1, '16', 'Temperature Gauges & Sensors', '', 'Active'), (977, 9, 1, '17', 'Torque Converters & Components', '', 'Active'), (978, 9, 1, '18', 'Transmission Kits & Components', '', 'Active'), (979, 9, 1, '19', 'Wiring Harness Connectors', '', 'Active'), (980, 9, 2, '01', 'Cruise Control Amplifiers & Mo', '', 'Active'), (981, 9, 2, '02', 'Cruise Control Cables & Bracke', '', 'Active'), (982, 9, 2, '03', 'Cruise Control Relays', '', 'Active'), (983, 9, 2, '04', 'Cruise Control Sensor Connecto', '', 'Active'), (984, 9, 2, '05', 'Cruise Control Sensor Transduc', '', 'Active'), (985, 9, 2, '06', 'Cruise Control Switch Connecto', '', 'Active'), (986, 9, 2, '07', 'Cruise Control Switches', '', 'Active'), (987, 9, 2, '08', 'Cruise Control Units', '', 'Active'), (988, 9, 2, '09', 'Cruise Control Valves', '', 'Active'), (989, 9, 3, '01', '4-Wheel Drive (4WD) Hubs', '', 'Active'), (990, 9, 3, '02', 'Axle Beam Assemblies & Mounts', '', 'Active'), (991, 9, 3, '03', 'Axle Bearings', '', 'Active'), (992, 9, 3, '04', 'Axle Flange Gaskets', '', 'Active'), (993, 9, 3, '05', 'Axle Hardware', '', 'Active'), (994, 9, 3, '06', 'Axle Hubs & Gaskets', '', 'Active'), (995, 9, 3, '07', 'Axle Nuts & Lock Plates', '', 'Active'), (996, 9, 3, '08', 'Axle Shaft & Components', '', 'Active'), (997, 9, 3, '09', 'Axle Shafts', '', 'Active'), (998, 9, 3, '10', 'Axle Spindles & Bearings', '', 'Active'), (999, 9, 3, '11', 'CV Joint Components', '', 'Active'), (1000, 9, 3, '12', 'Drive Shaft Seals', '', 'Active'), (1001, 9, 3, '13', 'Intermediate Shaft Bearing', '', 'Active'), (1002, 9, 3, '14', 'Intermediate Shafts & Related', '', 'Active'), (1003, 9, 3, '15', 'Pinion Seals', '', 'Active'), (1004, 9, 3, '16', 'Spindle Lock Nuts', '', 'Active'), (1005, 9, 3, '17', 'Spindle Nut Sockets', '', 'Active'), (1006, 9, 3, '18', 'Stub Axles', '', 'Active'), (1007, 9, 4, '01', 'Differential Bearings', '', 'Active'), (1008, 9, 4, '02', 'Differential Carrier Bushings', '', 'Active'), (1009, 9, 4, '03', 'Differential Cases', '', 'Active'), (1010, 9, 4, '04', 'Differential Covers & Gaskets', '', 'Active'), (1011, 9, 4, '05', 'Differential Crush Sleeves', '', 'Active'), (1012, 9, 4, '06', 'Differential Hardware', '', 'Active'), (1013, 9, 4, '07', 'Differential Mounts', '', 'Active'), (1014, 9, 4, '08', 'Differential Open Units', '', 'Active'), (1015, 9, 4, '09', 'Differential Pinions & Related', '', 'Active'), (1016, 9, 4, '10', 'Differential Seals & Kits', '', 'Active'), (1017, 9, 4, '11', 'Differential Shims & Kits', '', 'Active'), (1018, 9, 4, '12', 'Differentials', '', 'Active'), (1019, 9, 4, '13', 'Differentials & Axles', '', 'Active'), (1020, 9, 4, '14', 'Fluids & Chemicals', '', 'Active'), (1021, 9, 4, '15', 'Posi Units', '', 'Active'), (1022, 9, 5, '01', 'Carrier bearing Spacers', '', 'Active'), (1023, 9, 5, '02', 'Center Support Bearings', '', 'Active'), (1024, 9, 5, '03', 'Drive Shaft Bearings', '', 'Active'), (1025, 9, 5, '04', 'Drive Shaft Couplings & Boots', '', 'Active'), (1026, 9, 5, '05', 'Drive Shaft Slip Yoke Sleeves', '', 'Active'), (1027, 9, 5, '06', 'Drie Shaft Support Bushings', '', 'Active'), (1028, 9, 5, '07', 'Drive Shaft Support Washers', '', 'Active'), (1029, 9, 5, '08', 'Drive Shafts', '', 'Active'), (1030, 9, 5, '09', 'Drive Shafts & Axles', '', 'Active'), (1031, 9, 5, '10', 'Propeller Assemblies', '', 'Active'), (1032, 9, 5, '11', 'Propeller Shaft Hardware', '', 'Active'), (1033, 9, 5, '12', 'U-Joint Components', '', 'Active'), (1034, 9, 5, '13', 'U-Joints', '', 'Active'), (1035, 9, 6, '01', 'Transmission Fluid', '', 'Active'), (1036, 9, 6, '02', 'Treatments & Additives', '', 'Active'), (1037, 9, 7, '01', 'Clutch Cable Hardware', '', 'Active'), (1038, 9, 7, '02', 'Clutch Cables', '', 'Active'), (1039, 9, 7, '03', 'Clutch Components', '', 'Active'), (1040, 9, 7, '04', 'Clutch Discs', '', 'Active'), (1041, 9, 7, '05', 'Clutch Master Cylinders & Kits', '', 'Active'), (1042, 9, 7, '06', 'Clutch Operating Shaft Compone', '', 'Active'), (1043, 9, 7, '07', 'Clutch Pilot Bearings', '', 'Active'), (1044, 9, 7, '08', 'Clutch Pilot Bushings', '', 'Active'), (1045, 9, 7, '09', 'Flywheel Components', '', 'Active'), (1046, 9, 7, '10', 'Flywheels & Flexplates', '', 'Active'), (1047, 9, 7, '11', 'Gear Shift Components', '', 'Active'), (1048, 9, 7, '12', 'Manual Transmission Bearings', '', 'Active'), (1049, 9, 7, '13', 'Manual Transmission Cables', '', 'Active'), (1050, 9, 7, '14', 'Manual Transmission Components', '', 'Active'), (1051, 9, 7, '15', 'Manual Transmission Seals', '', 'Active'), (1052, 9, 7, '16', 'Master & Slave Cylinder Assemb', '', 'Active'), (1053, 9, 7, '17', 'Pressure Plates & Disc Sets', '', 'Active'), (1054, 9, 7, '18', 'Release Bearings & Accessories', '', 'Active'), (1055, 9, 7, '19', 'Shifters', '', 'Active'), (1056, 9, 7, '20', 'Shifters - Performance', '', 'Active'), (1057, 9, 8, '01', 'Bearing & Seal Overhaul Kits', '', 'Active'), (1058, 9, 8, '02', 'Chain Case Seals', '', 'Active'), (1059, 9, 8, '03', 'Companion Flange Seals', '', 'Active'), (1060, 9, 8, '04', 'Countershaft Bearings', '', 'Active'), (1061, 9, 8, '05', 'Differential Bearings', '', 'Active'), (1062, 9, 8, '06', 'Drive Sprocket Bearings', '', 'Active'), (1063, 9, 8, '07', 'Idler Shaft Bearings & Seals', '', 'Active'), (1064, 9, 8, '08', 'Oil Pump Housing Bearings', '', 'Active'), (1065, 9, 8, '09', 'Oil Pump Housing Seals', '', 'Active'), (1066, 9, 8, '10', 'Output Shaft Components', '', 'Active'), (1067, 9, 8, '11', 'Pinion Shaft Components', '', 'Active'), (1068, 9, 8, '12', 'Transfer Case Assemblies', '', 'Active'), (1069, 9, 8, '13', 'Transfer Case Bearings & Seals', '', 'Active'), (1070, 9, 8, '14', 'Transfer Case components', '', 'Active'), (1071, 9, 9, '01', '(AT) Housing Baskets', '', 'Active'), (1072, 9, 9, '02', '(AT) Side Cover Gaskets', '', 'Active'), (1073, 9, 9, '03', 'Differential Carrier Gaskets', '', 'Active'), (1074, 9, 9, '04', 'Differential Cover Gaskets', '', 'Active'), (1075, 9, 9, '05', 'Drive Axle Gaskets', '', 'Active'), (1076, 9, 9, '06', 'Extension Housing Gaskets', '', 'Active'), (1077, 9, 9, '07', 'Manual Transmission Gasket Sea', '', 'Active'), (1078, 9, 9, '08', 'Transfer Gear Gaskets', '', 'Active'), (1079, 9, 9, '09', 'Transmission Gaskets & Sets', '', 'Active'), (1080, 9, 9, '10', 'Transmission Oil Cooler O-Ring', '', 'Active'), (1081, 9, 9, '11', 'Valve Body Cover Gaskets', '', 'Active'), (1082, 9, 10, '01', 'Wheel Bearings', '', 'Active'), (1083, 9, 10, '02', 'Wheel Hub Hardware', '', 'Active'), (1084, 9, 10, '03', 'Wheel Races', '', 'Active'), (1085, 9, 10, '04', 'Wheel Seals', '', 'Active'), (1086, 9, 10, '05', 'Wheel Spacers', '', 'Active'), (1087, 9, 10, '06', 'Wheel Studs', '', 'Active'), (1088, 9, 10, '07', 'Wheels & Components', '', 'Active'), (1089, 10, 1, '01', 'Base Coat ', 'Cat', 'Active'), (1090, 10, 1, '02', 'Clear Coat', 'Furnish', 'Active'), (1091, 10, 1, '03', 'Activators ', 'Penguat Furnish', 'Active'), (1092, 10, 1, '04', 'Primers', 'Lapisan Dasar', 'Active'), (1093, 10, 1, '05', 'Thinners', 'Pengencer Cat', 'Active'), (1094, 10, 1, '06', 'Polyester Putty', 'Dempul', 'Active'), (1095, 10, 1, '07', 'Polishing Compound', 'Poles', 'Active'), (1096, 10, 1, '08', 'Plastic Paint System', '', 'Active'), (1097, 10, 1, '09', 'Sand Paper', 'Amplas', 'Active'), (1098, 10, 1, '10', 'CPB Brush', 'Kuas', 'Active'), (1099, 10, 1, '11', 'Other Materials', '', 'Active'), (1100, 10, 2, '01', 'Engine Repair', '', 'Active'), (1101, 10, 3, '01', 'Tire Service', '', 'Active'), (1102, 10, 4, '01', 'Oil Service', '', 'Active'), (1103, 10, 5, '01', 'Battery service', '', 'Active'), (1104, 10, 6, '01', 'Car Wash ', '', 'Active'), (1105, 10, 7, '01', 'Other Services', '', 'Active'), (1106, 11, 1, '01', 'Body Repair Tools', '', 'Active'), (1107, 11, 2, '01', 'Engine Repair Tools', '', 'Active'), (1108, 11, 3, '01', 'Tire Tools', '', 'Active'), (1109, 11, 4, '01', 'Oil Tools', '', 'Active'), (1110, 11, 5, '01', 'Battery Tools', '', 'Active'), (1111, 11, 6, '01', 'Car Wash Tools', '', 'Active'), (1112, 11, 7, '01', 'Other Services Tools', '', 'Active'), (1113, 12, 1, '01', 'In-house Bonus', '', 'Active'), (1114, 12, 2, '01', 'Program Bonus & Discount', '', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_product_sub_master_category` -- CREATE TABLE IF NOT EXISTS `rims_product_sub_master_category` ( `id` int(11) NOT NULL, `product_master_category_id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=97 ; -- -- Dumping data for table `rims_product_sub_master_category` -- INSERT INTO `rims_product_sub_master_category` (`id`, `product_master_category_id`, `code`, `name`, `status`) VALUES (1, 1, 'A', 'Air Filters & Related', 'Active'), (2, 1, 'B', 'Carburetors & Intake Manifolds', 'Active'), (3, 1, 'C', 'Carburetion', 'Active'), (4, 1, 'D', 'Emission', 'Active'), (5, 1, 'E', 'Exhaust', 'Active'), (6, 1, 'F', 'Fuel & Oil Filters', 'Active'), (7, 1, 'G', 'Fuel Injection Sytem', 'Active'), (8, 1, 'H', 'Fuel Pumps & Tanks', 'Active'), (9, 1, 'I', 'Nitrous Oxide Systems', 'Active'), (10, 1, 'J', 'Turbos & Superchargers', 'Active'), (11, 2, 'A', 'Appearance, Wash & Wax', 'Active'), (12, 2, 'B', 'Auto Body Parts', 'Active'), (13, 2, 'C', 'Body Styling & Dress-Up', 'Active'), (14, 2, 'D', 'Car Covers & Body Protection', 'Active'), (15, 2, 'E', 'Paint & Body Repair', 'Active'), (16, 2, 'F', 'Roadside Safety, Lock & Alarms', 'Active'), (17, 2, 'G', 'Seasonal Accessories', 'Active'), (18, 2, 'H', 'Storage & Cargo', 'Active'), (19, 2, 'I', 'Windshield, Doors & Window', 'Active'), (20, 3, 'A', 'Air Bag System & Related', 'Active'), (21, 3, 'B', 'Alternators, Generators & rela', 'Active'), (22, 3, 'C', 'Batterie', 'Active'), (23, 3, 'D', 'Battery Components & Tools', 'Active'), (24, 3, 'E', 'Charging System', 'Active'), (25, 3, 'F', 'Electrical Connectors & Socket', 'Active'), (26, 3, 'G', 'Lights, Flasher Units, Fuses', 'Active'), (27, 3, 'H', 'Relays, Switches & Sensors', 'Active'), (28, 3, 'I', 'Starters & Related', 'Active'), (29, 4, 'A', 'ABS Components', 'Active'), (30, 4, 'B', 'Brake Calipers & Related', 'Active'), (31, 4, 'C', 'Brake Drums & Rotors', 'Active'), (32, 4, 'D', 'Brake Hardware & Components', 'Active'), (33, 4, 'E', 'Brake Pads & Shoes', 'Active'), (34, 4, 'F', 'Power Steering Hoses & Pumps', 'Active'), (35, 4, 'G', 'Shocks & Struts', 'Active'), (36, 4, 'H', 'Steering, Gear & Pumps', 'Active'), (37, 4, 'I', 'Suspension, Springs & Related', 'Active'), (38, 4, 'J', 'Wheel & Tire Parts', 'Active'), (39, 5, 'A', 'AC Accumulators & Driers', 'Active'), (40, 5, 'B', 'AC Clutches & Compressors', 'Active'), (41, 5, 'C', 'AC Tools, Hardware & Adapters', 'Active'), (42, 5, 'D', 'Belts & Hoses', 'Active'), (43, 5, 'E', 'Cooling & Water Pumps', 'Active'), (44, 5, 'F', 'Cooling Fans, Clutches & Motor', 'Active'), (45, 5, 'G', 'Fluids & Chemicals', 'Active'), (46, 5, 'H', 'Heater Motors & Cores', 'Active'), (47, 5, 'I', 'Radiators, Coolers & Related', 'Active'), (48, 5, 'J', 'Thermostats, Gaskets & Housing', 'Active'), (49, 6, 'A', 'Camera & Cell Phone Accessorie', 'Active'), (50, 6, 'B', 'Car Audio & Video', 'Active'), (51, 6, 'C', 'Gauges & Components', 'Active'), (52, 6, 'D', 'Instrument Panel & Dash', 'Active'), (53, 6, 'E', 'Navigation', 'Active'), (54, 6, 'F', 'Radar & Laser Detection', 'Active'), (55, 7, 'A', 'Cylinder Block Components', 'Active'), (56, 7, 'B', 'Engine Components', 'Active'), (57, 7, 'C', 'Engine Electronics', 'Active'), (58, 7, 'D', 'Engine Gaskets & Seals', 'Active'), (59, 7, 'E', 'Ignition & Tune-Up', 'Active'), (60, 7, 'F', 'Motor Oil & Additives', 'Active'), (61, 7, 'G', 'Valve Train Components', 'Active'), (62, 8, 'A', 'Fluids & Chemicals', 'Active'), (63, 8, 'B', 'Gaskets, Sealers, Grease & Lub', 'Active'), (64, 8, 'C', 'Hand Tools', 'Active'), (65, 8, 'D', 'Hardware & Fasteners', 'Active'), (66, 8, 'E', 'Repair Manuals & Diagrams', 'Active'), (67, 8, 'F', 'Shop Equipment', 'Active'), (68, 8, 'G', 'Specialty Tools', 'Active'), (69, 8, 'H', 'Storage & Containers', 'Active'), (70, 8, 'I', 'Workwear & Gloves', 'Active'), (71, 9, 'A', 'Automatic Transmission', 'Active'), (72, 9, 'B', 'Cruise Control', 'Active'), (73, 9, 'C', 'CV Axles & Parts', 'Active'), (74, 9, 'D', 'Differential', 'Active'), (75, 9, 'E', 'Drive Shaft', 'Active'), (76, 9, 'F', 'Fluids & Chemicals', 'Active'), (77, 9, 'G', 'Manual Transmissions', 'Active'), (78, 9, 'H', 'Transfer Case Parts', 'Active'), (79, 9, 'I', 'Transmission Gaskets', 'Active'), (80, 9, 'J', 'Wheels Bearings, Seals & Relat', 'Active'), (81, 10, 'A', 'Body Repair', 'Active'), (82, 10, 'B', 'Engine Repair', 'Active'), (83, 10, 'C', 'Tire Service', 'Active'), (84, 10, 'D', 'Oil Service', 'Active'), (85, 10, 'E', 'Battery Service', 'Active'), (86, 10, 'F', 'Car Wash', 'Active'), (87, 10, 'G', 'Other Services', 'Active'), (88, 11, 'A', 'Body Repair Tools', 'Active'), (89, 11, 'B', 'Engine Repair Tools', 'Active'), (90, 11, 'C', 'Tire Tools', 'Active'), (91, 11, 'D', 'Oil Tools', 'Active'), (92, 11, 'E', 'Battery Tools', 'Active'), (93, 11, 'F', 'Car Wash Tools', 'Active'), (94, 11, 'G', 'Other Services Tools', 'Active'), (95, 12, 'A', 'In-house Bonus', 'Active'), (96, 12, 'B', 'Program Bonus & Discount', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_province` -- CREATE TABLE IF NOT EXISTS `rims_province` ( `id` int(11) NOT NULL, `name` varchar(100) DEFAULT NULL, `code` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ; -- -- Dumping data for table `rims_province` -- INSERT INTO `rims_province` (`id`, `name`, `code`) VALUES (1, 'Nanggroe Aceh Darussalam', NULL), (2, 'Sumatera Utara', NULL), (3, 'Sumatera Barat', NULL), (4, 'Riau', NULL), (5, 'Kepulauan Riau', NULL), (6, 'Kepulauan Bangka-Belitung', NULL), (7, 'Jambi', NULL), (8, 'Bengkulu', NULL), (9, 'Sumatera Selatan', NULL), (10, 'Lampung', NULL), (11, 'Banten', NULL), (12, 'DKI Jakarta', NULL), (13, 'Jawa Barat', NULL), (14, 'Jawa Tengah', NULL), (15, 'Daerah Istimewa Yogyakarta', NULL), (16, 'Jawa Timur', NULL), (17, 'Bali', NULL), (18, 'Nusa Tenggara Barat', NULL), (19, 'Nusa Tenggara Timur', NULL), (20, 'Kalimantan Barat', NULL), (21, 'Kalimantan Tengah', NULL), (22, 'Kalimantan Selatan', NULL), (23, 'Kalimantan Timur', NULL), (24, 'Gorontalo', NULL), (25, 'Sulawesi Selatan', NULL), (26, 'Sulawesi Tenggara', NULL), (27, 'Sulawesi Tengah', NULL), (28, 'Sulawesi Utara', NULL), (29, 'Sulawesi Barat', NULL), (30, 'Maluku', NULL), (31, 'Maluku Utara', NULL), (32, 'Papua Barat', NULL), (33, 'Papua', NULL), (34, 'Kalimantan Utara', NULL); -- -------------------------------------------------------- -- -- Table structure for table `rims_section` -- CREATE TABLE IF NOT EXISTS `rims_section` ( `id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `rack_number` varchar(20) NOT NULL, `column` varchar(20) NOT NULL, `row` varchar(20) NOT NULL, `status` varchar(10) NOT NULL, `warehouse_id` int(11) NOT NULL, `product_category_id` int(11) NOT NULL, `product_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_section_detail` -- CREATE TABLE IF NOT EXISTS `rims_section_detail` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier` -- CREATE TABLE IF NOT EXISTS `rims_supplier` ( `id` int(11) NOT NULL, `date` date DEFAULT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `company` varchar(30) NOT NULL, `position` varchar(30) NOT NULL, `address` text NOT NULL, `province_id` int(11) NOT NULL, `city_id` int(11) NOT NULL, `zipcode` varchar(10) NOT NULL, `fax` varchar(20) NOT NULL, `email_personal` varchar(60) NOT NULL, `email_company` varchar(60) NOT NULL, `npwp` varchar(20) NOT NULL, `description` varchar(60) NOT NULL, `tenor` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Dumping data for table `rims_supplier` -- INSERT INTO `rims_supplier` (`id`, `date`, `code`, `name`, `company`, `position`, `address`, `province_id`, `city_id`, `zipcode`, `fax`, `email_personal`, `email_company`, `npwp`, `description`, `tenor`) VALUES (1, '2015-10-13', 'S-01', 'Supplier1', 'PT. Astra Internasional', 'Anything', 'Gading', 12, 42, '32121', '02198321212', '<EMAIL>', '<EMAIL>', '123123123132132131', 'Testing', 30), (2, '2015-10-15', 'S-02', 'Supplier 2', 'PT. ABCDEFEGESDFS', 'Marketing', 'JL 123450943402', 12, 40, '32121', '0219832121', '<EMAIL>', '<EMAIL>', '123878983231', 'Testing2', 30); -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier_bank` -- CREATE TABLE IF NOT EXISTS `rims_supplier_bank` ( `id` int(11) NOT NULL, `bank_id` int(11) DEFAULT NULL, `supplier_id` int(11) DEFAULT NULL, `account_no` varchar(20) DEFAULT NULL, `account_name` varchar(100) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; -- -- Dumping data for table `rims_supplier_bank` -- INSERT INTO `rims_supplier_bank` (`id`, `bank_id`, `supplier_id`, `account_no`, `account_name`, `status`) VALUES (2, 9, 2, '9231232131', 'Test', 'Active'), (10, 4, 1, '132', 'Supplier1', 'Active'), (11, 7, 1, '345', '9846', 'Active'), (12, 3, 1, '456', '123490', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier_mobile` -- CREATE TABLE IF NOT EXISTS `rims_supplier_mobile` ( `id` int(11) NOT NULL, `supplier_id` int(11) DEFAULT NULL, `mobile_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `rims_supplier_mobile` -- INSERT INTO `rims_supplier_mobile` (`id`, `supplier_id`, `mobile_no`, `status`) VALUES (1, 1, '08675562712', NULL), (2, 1, '081239120345', NULL), (3, 2, '09875567211', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier_phone` -- CREATE TABLE IF NOT EXISTS `rims_supplier_phone` ( `id` int(11) NOT NULL, `supplier_id` int(11) DEFAULT NULL, `phone_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Dumping data for table `rims_supplier_phone` -- INSERT INTO `rims_supplier_phone` (`id`, `supplier_id`, `phone_no`, `status`) VALUES (1, 1, '02198123121', NULL), (2, 2, '0212231879', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier_pic` -- CREATE TABLE IF NOT EXISTS `rims_supplier_pic` ( `id` int(11) NOT NULL, `supplier_id` int(11) DEFAULT NULL COMMENT 'foreign key from supplier table', `date` date DEFAULT NULL, `code` varchar(20) DEFAULT NULL, `name` varchar(30) DEFAULT NULL, `company` varchar(30) DEFAULT NULL, `position` varchar(30) DEFAULT NULL, `address` text, `province_id` int(11) DEFAULT NULL, `city_id` int(11) DEFAULT NULL, `zipcode` varchar(10) DEFAULT NULL, `fax` varchar(20) DEFAULT NULL, `email_personal` varchar(60) DEFAULT NULL, `email_company` varchar(60) DEFAULT NULL, `npwp` varchar(20) DEFAULT NULL, `description` varchar(60) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `rims_supplier_pic` -- INSERT INTO `rims_supplier_pic` (`id`, `supplier_id`, `date`, `code`, `name`, `company`, `position`, `address`, `province_id`, `city_id`, `zipcode`, `fax`, `email_personal`, `email_company`, `npwp`, `description`, `status`) VALUES (1, 1, '2015-10-28', 'pic 1', 'pic 1234', 'PT. Astra International', 'Purchasing', 'Testing', 12, 39, '11340', '02198321212', '<EMAIL>', '<EMAIL>', '323138912313', 'Testing12345', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier_pic_mobile` -- CREATE TABLE IF NOT EXISTS `rims_supplier_pic_mobile` ( `id` int(11) NOT NULL, `supplier_pic_id` int(11) DEFAULT NULL, `mobile_no` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_supplier_pic_phone` -- CREATE TABLE IF NOT EXISTS `rims_supplier_pic_phone` ( `id` int(11) NOT NULL, `supplier_pic_id` int(11) DEFAULT NULL, `phone_no` varchar(20) DEFAULT NULL, `status` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rims_unit` -- CREATE TABLE IF NOT EXISTS `rims_unit` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; -- -- Dumping data for table `rims_unit` -- INSERT INTO `rims_unit` (`id`, `name`, `status`) VALUES (7, 'Pieces', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_vehicle` -- CREATE TABLE IF NOT EXISTS `rims_vehicle` ( `id` int(11) NOT NULL, `plate_number` varchar(10) NOT NULL, `machine_number` varchar(30) NOT NULL, `frame_number` varchar(30) NOT NULL, `car_make_id` int(11) DEFAULT NULL, `car_model_id` int(11) DEFAULT NULL, `car_sub_model_id` int(11) DEFAULT NULL, `color_id` int(11) DEFAULT NULL, `year` varchar(10) DEFAULT NULL, `customer_id` int(11) DEFAULT NULL, `customer_pic_id` int(11) DEFAULT NULL, `chasis_id` varchar(30) DEFAULT NULL, `power_cc` int(30) DEFAULT NULL, `luxury_value` decimal(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `rims_vehicle` -- INSERT INTO `rims_vehicle` (`id`, `plate_number`, `machine_number`, `frame_number`, `car_make_id`, `car_model_id`, `car_sub_model_id`, `color_id`, `year`, `customer_id`, `customer_pic_id`, `chasis_id`, `power_cc`, `luxury_value`) VALUES (2, 'B 1171 TYR', '0433jk94353', 'jkl0234', 1, 1, 1, 1, '2012', 29, 2, '988765677655', 1500, '1.20'), (3, 'b1167jkl', '4234234234', 'fadsfa799767', 1, 1, 1, 1, '2015', 29, 2, '0985544677', 1500, '1.00'), (4, 'B1238ER', '123-456-PPT-51', '234-567-623-FN', 1, 1, 1, 3, '2012', 1, 1, 'E01', 500, '1.00'); -- -------------------------------------------------------- -- -- Table structure for table `rims_vehicle_car_make` -- CREATE TABLE IF NOT EXISTS `rims_vehicle_car_make` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `rims_vehicle_car_make` -- INSERT INTO `rims_vehicle_car_make` (`id`, `name`, `status`) VALUES (1, 'BMW', 'Active'), (2, 'Toyota', 'Active'), (3, 'Honda', 'Active'), (4, '<NAME>', 'Active'), (5, 'Daihatsu', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_vehicle_car_model` -- CREATE TABLE IF NOT EXISTS `rims_vehicle_car_model` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `description` varchar(60) NOT NULL, `car_make_id` int(11) NOT NULL COMMENT 'foreign key from vehicle brand table', `status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `rims_vehicle_car_model` -- INSERT INTO `rims_vehicle_car_model` (`id`, `name`, `description`, `car_make_id`, `status`) VALUES (1, 'E320', 'BMW E320', 1, 'Active'), (2, 'Avanza', 'MPV', 2, 'Active'), (3, 'Harrier', 'SUV', 2, 'Active'), (4, 'C Class', 'C Class', 4, 'Active'), (5, 'E Class', 'E Series', 4, 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_vehicle_car_sub_detail` -- CREATE TABLE IF NOT EXISTS `rims_vehicle_car_sub_detail` ( `id` int(11) NOT NULL, `style_name` varchar(10) NOT NULL, `assembly_year` varchar(10) NOT NULL, `assembly_year_end` varchar(10) NOT NULL, `transmission_id` int(11) NOT NULL, `fuel_type` varchar(20) NOT NULL, `brand_id` int(11) NOT NULL, `sub_brand_id` int(11) NOT NULL, `status` varchar(10) NOT NULL, `power_id` int(11) NOT NULL, `drivetrain` varchar(10) NOT NULL, `chasis_id` int(11) NOT NULL, `description` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `rims_vehicle_car_sub_detail` -- INSERT INTO `rims_vehicle_car_sub_detail` (`id`, `style_name`, `assembly_year`, `assembly_year_end`, `transmission_id`, `fuel_type`, `brand_id`, `sub_brand_id`, `status`, `power_id`, `drivetrain`, `chasis_id`, `description`) VALUES (1, 'S01', '2013', '2015', 0, 'Gasoline', 1, 1, 'Active', 500, '4WD', 0, ''), (2, 'C200', '2007', '2014', 0, 'Gasoline', 4, 4, 'Active', 2000, '2WD', 0, ''), (3, 'C300', '2015', '2016', 0, 'Gasoline', 4, 4, 'Active', 2500, '2WD', 0, ''); -- -------------------------------------------------------- -- -- Table structure for table `rims_warehouse` -- CREATE TABLE IF NOT EXISTS `rims_warehouse` ( `id` int(11) NOT NULL, `code` varchar(20) NOT NULL, `name` varchar(30) NOT NULL, `description` varchar(60) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; -- -- Dumping data for table `rims_warehouse` -- INSERT INTO `rims_warehouse` (`id`, `code`, `name`, `description`, `status`) VALUES (1, 'B01-W01', 'Warehouse1', 'Testing', 'Inactive'), (2, 'B02-W02', 'Warehouse 2', 'Testing2', 'Active'), (3, 'B03-W03', 'Warehouse 3', 'Testing', 'Active'), (4, 'B04-W04', 'Warehouse 4', 'Testing', 'Active'), (5, 'B05-W05', 'Warehouse 5', 'Testing', 'Active'), (6, 'B06-W06', 'Warehouse 6', 'Testing', 'Active'), (7, 'B07-W07', 'Warehouse 7', 'Testing', 'Active'), (8, 'B08-W08', 'Warehouse 8', 'Testing2', 'Active'), (9, 'B08-W09', 'Warehouse 9', 'Testing', 'Active'), (10, 'B03-W03', 'Warehouse 10', 'Testing2', 'Active'), (11, 'B03-W03', '365421', 'Testing2', 'Active'), (12, 'B01-W07', 'Warehouse B-7', 'Testing', 'Active'), (13, 'W-R1-01', 'Warehouse - GR', 'General Repair Warehouse', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `rims_warehouse_division` -- CREATE TABLE IF NOT EXISTS `rims_warehouse_division` ( `id` int(11) NOT NULL, `warehouse_id` int(11) DEFAULT NULL, `division_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `rims_warehouse_division` -- INSERT INTO `rims_warehouse_division` (`id`, `warehouse_id`, `division_id`) VALUES (3, 1, 4), (4, 1, 5), (1, 5, 1), (2, 10, 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `rims_bank` -- ALTER TABLE `rims_bank` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_branch` -- ALTER TABLE `rims_branch` ADD PRIMARY KEY (`id`), ADD KEY `province_id` (`province_id`), ADD KEY `city_id` (`city_id`); -- -- Indexes for table `rims_branch_fax` -- ALTER TABLE `rims_branch_fax` ADD PRIMARY KEY (`id`), ADD KEY `branch_id` (`branch_id`); -- -- Indexes for table `rims_branch_phone` -- ALTER TABLE `rims_branch_phone` ADD PRIMARY KEY (`id`), ADD KEY `branch_id` (`branch_id`); -- -- Indexes for table `rims_branch_warehouse` -- ALTER TABLE `rims_branch_warehouse` ADD PRIMARY KEY (`id`), ADD KEY `warehouse_id` (`warehouse_id`), ADD KEY `branch_id` (`branch_id`); -- -- Indexes for table `rims_chasis_code` -- ALTER TABLE `rims_chasis_code` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_city` -- ALTER TABLE `rims_city` ADD PRIMARY KEY (`id`), ADD KEY `province_id` (`province_id`); -- -- Indexes for table `rims_colors` -- ALTER TABLE `rims_colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_customer` -- ALTER TABLE `rims_customer` ADD PRIMARY KEY (`id`), ADD KEY `province_id` (`province_id`), ADD KEY `city_id` (`city_id`); -- -- Indexes for table `rims_customer_mobile` -- ALTER TABLE `rims_customer_mobile` ADD PRIMARY KEY (`id`), ADD KEY `customer_id` (`customer_id`); -- -- Indexes for table `rims_customer_phone` -- ALTER TABLE `rims_customer_phone` ADD PRIMARY KEY (`id`), ADD KEY `customer_id` (`customer_id`); -- -- Indexes for table `rims_customer_pic` -- ALTER TABLE `rims_customer_pic` ADD PRIMARY KEY (`id`), ADD KEY `province_id` (`province_id`), ADD KEY `city_id` (`city_id`), ADD KEY `customer_id` (`customer_id`); -- -- Indexes for table `rims_customer_pic_mobile` -- ALTER TABLE `rims_customer_pic_mobile` ADD PRIMARY KEY (`id`), ADD KEY `customer_pic_id` (`customer_pic_id`); -- -- Indexes for table `rims_customer_pic_phone` -- ALTER TABLE `rims_customer_pic_phone` ADD PRIMARY KEY (`id`), ADD KEY `customer_pic_id` (`customer_pic_id`); -- -- Indexes for table `rims_customer_service_rate` -- ALTER TABLE `rims_customer_service_rate` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_deduction` -- ALTER TABLE `rims_deduction` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_division` -- ALTER TABLE `rims_division` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_division_branch` -- ALTER TABLE `rims_division_branch` ADD PRIMARY KEY (`id`), ADD KEY `division_id` (`division_id`), ADD KEY `branch_id` (`branch_id`); -- -- Indexes for table `rims_division_position` -- ALTER TABLE `rims_division_position` ADD PRIMARY KEY (`id`), ADD KEY `position_id` (`position_id`), ADD KEY `division_id` (`division_id`); -- -- Indexes for table `rims_employee` -- ALTER TABLE `rims_employee` ADD PRIMARY KEY (`id`), ADD KEY `province_id` (`province_id`), ADD KEY `city_id` (`city_id`), ADD KEY `home_city` (`home_city`), ADD KEY `home_province` (`home_province`); -- -- Indexes for table `rims_employee_bank` -- ALTER TABLE `rims_employee_bank` ADD PRIMARY KEY (`id`), ADD KEY `bank_id` (`bank_id`,`employee_id`), ADD KEY `employee_id` (`employee_id`); -- -- Indexes for table `rims_employee_deductions` -- ALTER TABLE `rims_employee_deductions` ADD PRIMARY KEY (`id`), ADD KEY `employee_id` (`employee_id`), ADD KEY `deduction_id` (`deduction_id`); -- -- Indexes for table `rims_employee_division_position_level` -- ALTER TABLE `rims_employee_division_position_level` ADD PRIMARY KEY (`id`), ADD KEY `employee_id` (`employee_id`), ADD KEY `division_id` (`division_id`), ADD KEY `position_id` (`position_id`), ADD KEY `level_id` (`level_id`); -- -- Indexes for table `rims_employee_incentives` -- ALTER TABLE `rims_employee_incentives` ADD PRIMARY KEY (`id`), ADD KEY `employee_id` (`employee_id`), ADD KEY `incentive_id` (`incentive_id`); -- -- Indexes for table `rims_employee_mobile` -- ALTER TABLE `rims_employee_mobile` ADD PRIMARY KEY (`id`), ADD KEY `employee_id` (`employee_id`); -- -- Indexes for table `rims_employee_phone` -- ALTER TABLE `rims_employee_phone` ADD PRIMARY KEY (`id`), ADD KEY `employee_id` (`employee_id`); -- -- Indexes for table `rims_incentive` -- ALTER TABLE `rims_incentive` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_level` -- ALTER TABLE `rims_level` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_position` -- ALTER TABLE `rims_position` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_position_level` -- ALTER TABLE `rims_position_level` ADD PRIMARY KEY (`id`), ADD KEY `level_id` (`level_id`), ADD KEY `position_id` (`position_id`); -- -- Indexes for table `rims_powercc` -- ALTER TABLE `rims_powercc` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_product` -- ALTER TABLE `rims_product` ADD PRIMARY KEY (`id`), ADD KEY `product_master_category_id` (`product_master_category_id`), ADD KEY `product_sub_master_category_id` (`product_sub_master_category_id`), ADD KEY `product_sub_category_id` (`product_sub_category_id`), ADD KEY `product_type_id` (`product_specification_type_id`), ADD KEY `car_make_id` (`vehicle_car_make_id`), ADD KEY `car_model_id` (`vehicle_car_model_id`); -- -- Indexes for table `rims_product_master_category` -- ALTER TABLE `rims_product_master_category` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_product_specification_info` -- ALTER TABLE `rims_product_specification_info` ADD PRIMARY KEY (`id`), ADD KEY `product_specification_type_id` (`product_specification_type_id`); -- -- Indexes for table `rims_product_specification_type` -- ALTER TABLE `rims_product_specification_type` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_product_sub_category` -- ALTER TABLE `rims_product_sub_category` ADD PRIMARY KEY (`id`), ADD KEY `product_sub_master_category_id` (`product_sub_master_category_id`), ADD KEY `product_master_category` (`product_master_category_id`); -- -- Indexes for table `rims_product_sub_master_category` -- ALTER TABLE `rims_product_sub_master_category` ADD PRIMARY KEY (`id`), ADD KEY `product_category_id` (`product_master_category_id`); -- -- Indexes for table `rims_province` -- ALTER TABLE `rims_province` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_section` -- ALTER TABLE `rims_section` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_section_detail` -- ALTER TABLE `rims_section_detail` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_supplier` -- ALTER TABLE `rims_supplier` ADD PRIMARY KEY (`id`), ADD KEY `province_id` (`province_id`), ADD KEY `city_id` (`city_id`); -- -- Indexes for table `rims_supplier_bank` -- ALTER TABLE `rims_supplier_bank` ADD PRIMARY KEY (`id`), ADD KEY `bank_id` (`bank_id`,`supplier_id`), ADD KEY `supplier_id` (`supplier_id`); -- -- Indexes for table `rims_supplier_mobile` -- ALTER TABLE `rims_supplier_mobile` ADD PRIMARY KEY (`id`), ADD KEY `supplier_id` (`supplier_id`); -- -- Indexes for table `rims_supplier_phone` -- ALTER TABLE `rims_supplier_phone` ADD PRIMARY KEY (`id`), ADD KEY `supplier_id` (`supplier_id`); -- -- Indexes for table `rims_supplier_pic` -- ALTER TABLE `rims_supplier_pic` ADD PRIMARY KEY (`id`), ADD KEY `supplier_id` (`supplier_id`), ADD KEY `city_id` (`city_id`), ADD KEY `province_id` (`province_id`); -- -- Indexes for table `rims_supplier_pic_mobile` -- ALTER TABLE `rims_supplier_pic_mobile` ADD PRIMARY KEY (`id`), ADD KEY `supplier_pic_id` (`supplier_pic_id`); -- -- Indexes for table `rims_supplier_pic_phone` -- ALTER TABLE `rims_supplier_pic_phone` ADD PRIMARY KEY (`id`), ADD KEY `supplier_pic_id` (`supplier_pic_id`); -- -- Indexes for table `rims_unit` -- ALTER TABLE `rims_unit` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_vehicle` -- ALTER TABLE `rims_vehicle` ADD PRIMARY KEY (`id`), ADD KEY `customer_id` (`customer_id`), ADD KEY `customer_pic_id` (`customer_pic_id`), ADD KEY `car_make_id` (`car_make_id`), ADD KEY `car_model_id` (`car_model_id`), ADD KEY `car_sub_model_id` (`car_sub_model_id`), ADD KEY `color_id` (`color_id`); -- -- Indexes for table `rims_vehicle_car_make` -- ALTER TABLE `rims_vehicle_car_make` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_vehicle_car_model` -- ALTER TABLE `rims_vehicle_car_model` ADD PRIMARY KEY (`id`), ADD KEY `car_make_id` (`car_make_id`), ADD KEY `car_make_id_2` (`car_make_id`); -- -- Indexes for table `rims_vehicle_car_sub_detail` -- ALTER TABLE `rims_vehicle_car_sub_detail` ADD PRIMARY KEY (`id`), ADD KEY `brand_id` (`brand_id`), ADD KEY `brand_id_2` (`brand_id`), ADD KEY `chasis_id` (`chasis_id`), ADD KEY `chasis_id_2` (`chasis_id`), ADD KEY `brand_id_3` (`brand_id`), ADD KEY `sub_brand_id` (`sub_brand_id`), ADD KEY `chasis_id_3` (`chasis_id`), ADD KEY `chasis_id_4` (`chasis_id`), ADD KEY `chasis_id_5` (`chasis_id`), ADD KEY `chasis_id_6` (`chasis_id`); -- -- Indexes for table `rims_warehouse` -- ALTER TABLE `rims_warehouse` ADD PRIMARY KEY (`id`); -- -- Indexes for table `rims_warehouse_division` -- ALTER TABLE `rims_warehouse_division` ADD PRIMARY KEY (`id`), ADD KEY `warehouse_id` (`warehouse_id`,`division_id`), ADD KEY `division_id` (`division_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `rims_bank` -- ALTER TABLE `rims_bank` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=136; -- -- AUTO_INCREMENT for table `rims_branch` -- ALTER TABLE `rims_branch` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `rims_branch_fax` -- ALTER TABLE `rims_branch_fax` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `rims_branch_phone` -- ALTER TABLE `rims_branch_phone` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `rims_branch_warehouse` -- ALTER TABLE `rims_branch_warehouse` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `rims_chasis_code` -- ALTER TABLE `rims_chasis_code` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_city` -- ALTER TABLE `rims_city` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=99; -- -- AUTO_INCREMENT for table `rims_colors` -- ALTER TABLE `rims_colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `rims_customer` -- ALTER TABLE `rims_customer` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=30; -- -- AUTO_INCREMENT for table `rims_customer_mobile` -- ALTER TABLE `rims_customer_mobile` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_customer_phone` -- ALTER TABLE `rims_customer_phone` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `rims_customer_pic` -- ALTER TABLE `rims_customer_pic` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `rims_customer_pic_mobile` -- ALTER TABLE `rims_customer_pic_mobile` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_customer_pic_phone` -- ALTER TABLE `rims_customer_pic_phone` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_customer_service_rate` -- ALTER TABLE `rims_customer_service_rate` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_deduction` -- ALTER TABLE `rims_deduction` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `rims_division` -- ALTER TABLE `rims_division` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `rims_division_branch` -- ALTER TABLE `rims_division_branch` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `rims_division_position` -- ALTER TABLE `rims_division_position` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `rims_employee` -- ALTER TABLE `rims_employee` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=28; -- -- AUTO_INCREMENT for table `rims_employee_bank` -- ALTER TABLE `rims_employee_bank` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `rims_employee_deductions` -- ALTER TABLE `rims_employee_deductions` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `rims_employee_division_position_level` -- ALTER TABLE `rims_employee_division_position_level` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `rims_employee_incentives` -- ALTER TABLE `rims_employee_incentives` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `rims_employee_mobile` -- ALTER TABLE `rims_employee_mobile` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `rims_employee_phone` -- ALTER TABLE `rims_employee_phone` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `rims_incentive` -- ALTER TABLE `rims_incentive` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `rims_level` -- ALTER TABLE `rims_level` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `rims_position` -- ALTER TABLE `rims_position` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `rims_position_level` -- ALTER TABLE `rims_position_level` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `rims_powercc` -- ALTER TABLE `rims_powercc` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_product` -- ALTER TABLE `rims_product` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_product_master_category` -- ALTER TABLE `rims_product_master_category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `rims_product_specification_info` -- ALTER TABLE `rims_product_specification_info` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_product_specification_type` -- ALTER TABLE `rims_product_specification_type` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_product_sub_category` -- ALTER TABLE `rims_product_sub_category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1115; -- -- AUTO_INCREMENT for table `rims_product_sub_master_category` -- ALTER TABLE `rims_product_sub_master_category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=97; -- -- AUTO_INCREMENT for table `rims_province` -- ALTER TABLE `rims_province` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=35; -- -- AUTO_INCREMENT for table `rims_section` -- ALTER TABLE `rims_section` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_section_detail` -- ALTER TABLE `rims_section_detail` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_supplier` -- ALTER TABLE `rims_supplier` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `rims_supplier_bank` -- ALTER TABLE `rims_supplier_bank` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `rims_supplier_mobile` -- ALTER TABLE `rims_supplier_mobile` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `rims_supplier_phone` -- ALTER TABLE `rims_supplier_phone` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `rims_supplier_pic` -- ALTER TABLE `rims_supplier_pic` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `rims_supplier_pic_mobile` -- ALTER TABLE `rims_supplier_pic_mobile` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_supplier_pic_phone` -- ALTER TABLE `rims_supplier_pic_phone` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rims_unit` -- ALTER TABLE `rims_unit` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `rims_vehicle` -- ALTER TABLE `rims_vehicle` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `rims_vehicle_car_make` -- ALTER TABLE `rims_vehicle_car_make` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `rims_vehicle_car_model` -- ALTER TABLE `rims_vehicle_car_model` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `rims_vehicle_car_sub_detail` -- ALTER TABLE `rims_vehicle_car_sub_detail` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `rims_warehouse` -- ALTER TABLE `rims_warehouse` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `rims_warehouse_division` -- ALTER TABLE `rims_warehouse_division` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- Constraints for dumped tables -- -- -- Constraints for table `rims_branch` -- ALTER TABLE `rims_branch` ADD CONSTRAINT `rims_branch_ibfk_1` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_branch_ibfk_2` FOREIGN KEY (`city_id`) REFERENCES `rims_city` (`id`); -- -- Constraints for table `rims_branch_fax` -- ALTER TABLE `rims_branch_fax` ADD CONSTRAINT `rims_branch_fax_ibfk_1` FOREIGN KEY (`branch_id`) REFERENCES `rims_branch` (`id`); -- -- Constraints for table `rims_branch_phone` -- ALTER TABLE `rims_branch_phone` ADD CONSTRAINT `rims_branch_phone_ibfk_1` FOREIGN KEY (`branch_id`) REFERENCES `rims_branch` (`id`); -- -- Constraints for table `rims_branch_warehouse` -- ALTER TABLE `rims_branch_warehouse` ADD CONSTRAINT `rims_branch_warehouse_ibfk_1` FOREIGN KEY (`branch_id`) REFERENCES `rims_branch` (`id`), ADD CONSTRAINT `rims_branch_warehouse_ibfk_2` FOREIGN KEY (`warehouse_id`) REFERENCES `rims_warehouse` (`id`); -- -- Constraints for table `rims_city` -- ALTER TABLE `rims_city` ADD CONSTRAINT `rims_city_ibfk_1` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`); -- -- Constraints for table `rims_customer` -- ALTER TABLE `rims_customer` ADD CONSTRAINT `rims_customer_ibfk_1` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_customer_ibfk_2` FOREIGN KEY (`city_id`) REFERENCES `rims_city` (`id`); -- -- Constraints for table `rims_customer_mobile` -- ALTER TABLE `rims_customer_mobile` ADD CONSTRAINT `rims_customer_mobile_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `rims_customer` (`id`); -- -- Constraints for table `rims_customer_phone` -- ALTER TABLE `rims_customer_phone` ADD CONSTRAINT `rims_customer_phone_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `rims_customer` (`id`); -- -- Constraints for table `rims_customer_pic` -- ALTER TABLE `rims_customer_pic` ADD CONSTRAINT `rims_customer_pic_ibfk_1` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_customer_pic_ibfk_2` FOREIGN KEY (`city_id`) REFERENCES `rims_city` (`id`), ADD CONSTRAINT `rims_customer_pic_ibfk_3` FOREIGN KEY (`customer_id`) REFERENCES `rims_customer` (`id`); -- -- Constraints for table `rims_customer_pic_mobile` -- ALTER TABLE `rims_customer_pic_mobile` ADD CONSTRAINT `rims_customer_pic_mobile_ibfk_1` FOREIGN KEY (`customer_pic_id`) REFERENCES `rims_customer_pic` (`id`); -- -- Constraints for table `rims_customer_pic_phone` -- ALTER TABLE `rims_customer_pic_phone` ADD CONSTRAINT `rims_customer_pic_phone_ibfk_1` FOREIGN KEY (`customer_pic_id`) REFERENCES `rims_customer_pic` (`id`); -- -- Constraints for table `rims_division_branch` -- ALTER TABLE `rims_division_branch` ADD CONSTRAINT `rims_division_branch_ibfk_1` FOREIGN KEY (`division_id`) REFERENCES `rims_division` (`id`), ADD CONSTRAINT `rims_division_branch_ibfk_2` FOREIGN KEY (`branch_id`) REFERENCES `rims_branch` (`id`); -- -- Constraints for table `rims_division_position` -- ALTER TABLE `rims_division_position` ADD CONSTRAINT `rims_division_position_ibfk_1` FOREIGN KEY (`division_id`) REFERENCES `rims_division` (`id`), ADD CONSTRAINT `rims_division_position_ibfk_2` FOREIGN KEY (`position_id`) REFERENCES `rims_position` (`id`); -- -- Constraints for table `rims_employee` -- ALTER TABLE `rims_employee` ADD CONSTRAINT `rims_employee_ibfk_1` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_employee_ibfk_2` FOREIGN KEY (`city_id`) REFERENCES `rims_city` (`id`), ADD CONSTRAINT `rims_employee_ibfk_3` FOREIGN KEY (`home_province`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_employee_ibfk_4` FOREIGN KEY (`home_city`) REFERENCES `rims_city` (`id`); -- -- Constraints for table `rims_employee_bank` -- ALTER TABLE `rims_employee_bank` ADD CONSTRAINT `rims_employee_bank_ibfk_1` FOREIGN KEY (`bank_id`) REFERENCES `rims_bank` (`id`), ADD CONSTRAINT `rims_employee_bank_ibfk_2` FOREIGN KEY (`employee_id`) REFERENCES `rims_employee` (`id`); -- -- Constraints for table `rims_employee_deductions` -- ALTER TABLE `rims_employee_deductions` ADD CONSTRAINT `rims_employee_deductions_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `rims_employee` (`id`), ADD CONSTRAINT `rims_employee_deductions_ibfk_2` FOREIGN KEY (`deduction_id`) REFERENCES `rims_deduction` (`id`); -- -- Constraints for table `rims_employee_division_position_level` -- ALTER TABLE `rims_employee_division_position_level` ADD CONSTRAINT `rims_employee_division_position_level_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `rims_employee` (`id`), ADD CONSTRAINT `rims_employee_division_position_level_ibfk_2` FOREIGN KEY (`division_id`) REFERENCES `rims_division` (`id`), ADD CONSTRAINT `rims_employee_division_position_level_ibfk_3` FOREIGN KEY (`position_id`) REFERENCES `rims_position` (`id`), ADD CONSTRAINT `rims_employee_division_position_level_ibfk_4` FOREIGN KEY (`level_id`) REFERENCES `rims_level` (`id`); -- -- Constraints for table `rims_employee_incentives` -- ALTER TABLE `rims_employee_incentives` ADD CONSTRAINT `rims_employee_incentives_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `rims_employee` (`id`), ADD CONSTRAINT `rims_employee_incentives_ibfk_2` FOREIGN KEY (`incentive_id`) REFERENCES `rims_incentive` (`id`); -- -- Constraints for table `rims_employee_mobile` -- ALTER TABLE `rims_employee_mobile` ADD CONSTRAINT `rims_employee_mobile_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `rims_employee` (`id`); -- -- Constraints for table `rims_employee_phone` -- ALTER TABLE `rims_employee_phone` ADD CONSTRAINT `rims_employee_phone_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `rims_employee` (`id`); -- -- Constraints for table `rims_position_level` -- ALTER TABLE `rims_position_level` ADD CONSTRAINT `rims_position_level_ibfk_1` FOREIGN KEY (`position_id`) REFERENCES `rims_position` (`id`), ADD CONSTRAINT `rims_position_level_ibfk_2` FOREIGN KEY (`level_id`) REFERENCES `rims_level` (`id`); -- -- Constraints for table `rims_product` -- ALTER TABLE `rims_product` ADD CONSTRAINT `rims_product_ibfk_1` FOREIGN KEY (`product_master_category_id`) REFERENCES `rims_product_master_category` (`id`), ADD CONSTRAINT `rims_product_ibfk_2` FOREIGN KEY (`product_sub_master_category_id`) REFERENCES `rims_product_sub_master_category` (`id`), ADD CONSTRAINT `rims_product_ibfk_3` FOREIGN KEY (`product_sub_category_id`) REFERENCES `rims_product_sub_category` (`id`), ADD CONSTRAINT `rims_product_ibfk_4` FOREIGN KEY (`product_specification_type_id`) REFERENCES `rims_product_specification_type` (`id`), ADD CONSTRAINT `rims_product_ibfk_5` FOREIGN KEY (`vehicle_car_make_id`) REFERENCES `rims_vehicle_car_make` (`id`), ADD CONSTRAINT `rims_product_ibfk_6` FOREIGN KEY (`vehicle_car_model_id`) REFERENCES `rims_vehicle_car_model` (`id`); -- -- Constraints for table `rims_product_specification_info` -- ALTER TABLE `rims_product_specification_info` ADD CONSTRAINT `rims_product_specification_info_ibfk_1` FOREIGN KEY (`product_specification_type_id`) REFERENCES `rims_product_specification_type` (`id`); -- -- Constraints for table `rims_product_sub_category` -- ALTER TABLE `rims_product_sub_category` ADD CONSTRAINT `rims_product_sub_category_ibfk_1` FOREIGN KEY (`product_sub_master_category_id`) REFERENCES `rims_product_sub_master_category` (`id`); -- -- Constraints for table `rims_product_sub_master_category` -- ALTER TABLE `rims_product_sub_master_category` ADD CONSTRAINT `rims_product_sub_master_category_ibfk_1` FOREIGN KEY (`product_master_category_id`) REFERENCES `rims_product_master_category` (`id`); -- -- Constraints for table `rims_supplier` -- ALTER TABLE `rims_supplier` ADD CONSTRAINT `rims_supplier_ibfk_1` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_supplier_ibfk_2` FOREIGN KEY (`city_id`) REFERENCES `rims_city` (`id`); -- -- Constraints for table `rims_supplier_bank` -- ALTER TABLE `rims_supplier_bank` ADD CONSTRAINT `rims_supplier_bank_ibfk_1` FOREIGN KEY (`bank_id`) REFERENCES `rims_bank` (`id`), ADD CONSTRAINT `rims_supplier_bank_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `rims_supplier` (`id`); -- -- Constraints for table `rims_supplier_mobile` -- ALTER TABLE `rims_supplier_mobile` ADD CONSTRAINT `rims_supplier_mobile_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `rims_supplier` (`id`); -- -- Constraints for table `rims_supplier_phone` -- ALTER TABLE `rims_supplier_phone` ADD CONSTRAINT `rims_supplier_phone_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `rims_supplier` (`id`); -- -- Constraints for table `rims_supplier_pic` -- ALTER TABLE `rims_supplier_pic` ADD CONSTRAINT `rims_supplier_pic_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `rims_supplier` (`id`), ADD CONSTRAINT `rims_supplier_pic_ibfk_2` FOREIGN KEY (`province_id`) REFERENCES `rims_province` (`id`), ADD CONSTRAINT `rims_supplier_pic_ibfk_3` FOREIGN KEY (`city_id`) REFERENCES `rims_city` (`id`); -- -- Constraints for table `rims_supplier_pic_mobile` -- ALTER TABLE `rims_supplier_pic_mobile` ADD CONSTRAINT `rims_supplier_pic_mobile_ibfk_1` FOREIGN KEY (`supplier_pic_id`) REFERENCES `rims_supplier_pic` (`id`); -- -- Constraints for table `rims_supplier_pic_phone` -- ALTER TABLE `rims_supplier_pic_phone` ADD CONSTRAINT `rims_supplier_pic_phone_ibfk_1` FOREIGN KEY (`supplier_pic_id`) REFERENCES `rims_supplier_pic` (`id`); -- -- Constraints for table `rims_vehicle` -- ALTER TABLE `rims_vehicle` ADD CONSTRAINT `rims_vehicle_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `rims_customer` (`id`), ADD CONSTRAINT `rims_vehicle_ibfk_2` FOREIGN KEY (`customer_pic_id`) REFERENCES `rims_customer_pic` (`id`), ADD CONSTRAINT `rims_vehicle_ibfk_3` FOREIGN KEY (`car_make_id`) REFERENCES `rims_vehicle_car_make` (`id`), ADD CONSTRAINT `rims_vehicle_ibfk_4` FOREIGN KEY (`car_model_id`) REFERENCES `rims_vehicle_car_model` (`id`), ADD CONSTRAINT `rims_vehicle_ibfk_5` FOREIGN KEY (`car_sub_model_id`) REFERENCES `rims_vehicle_car_sub_detail` (`id`), ADD CONSTRAINT `rims_vehicle_ibfk_6` FOREIGN KEY (`color_id`) REFERENCES `rims_colors` (`id`); -- -- Constraints for table `rims_vehicle_car_model` -- ALTER TABLE `rims_vehicle_car_model` ADD CONSTRAINT `rims_vehicle_car_model_ibfk_1` FOREIGN KEY (`car_make_id`) REFERENCES `rims_vehicle_car_make` (`id`); -- -- Constraints for table `rims_vehicle_car_sub_detail` -- ALTER TABLE `rims_vehicle_car_sub_detail` ADD CONSTRAINT `rims_vehicle_car_sub_detail_ibfk_1` FOREIGN KEY (`brand_id`) REFERENCES `rims_vehicle_car_make` (`id`), ADD CONSTRAINT `rims_vehicle_car_sub_detail_ibfk_2` FOREIGN KEY (`sub_brand_id`) REFERENCES `rims_vehicle_car_model` (`id`); -- -- Constraints for table `rims_warehouse_division` -- ALTER TABLE `rims_warehouse_division` ADD CONSTRAINT `rims_warehouse_division_ibfk_1` FOREIGN KEY (`warehouse_id`) REFERENCES `rims_warehouse` (`id`), ADD CONSTRAINT `rims_warehouse_division_ibfk_2` FOREIGN KEY (`division_id`) REFERENCES `rims_division` (`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 */;
CREATE TABLE `job` ( `id` bigint NOT NULL AUTO_INCREMENT, `name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'unique name', `description` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'job description', `cron` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'cron expression', `next_time` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'job run next time', `status` int DEFAULT NULL COMMENT 'job status', `concurrent` int NOT NULL DEFAULT '0' COMMENT '是否可以并发执行', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; CREATE TABLE `job_lock` ( `lock_name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `lock_val` bigint DEFAULT NULL, PRIMARY KEY (`lock_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; CREATE TABLE `job_log` ( `id` bigint NOT NULL AUTO_INCREMENT, `job_name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `start_time` varchar(20) COLLATE utf8mb4_general_ci NOT NULL, `end_time` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL, `status` int NOT NULL, `error_msg` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; INSERT INTO job_lock (lock_name,lock_val) VALUES ('job_execute',0);
<gh_stars>1-10 SELECT COUNT(*) FROM aka_title AS at, company_name AS cn, company_type AS ct, info_type AS it1, keyword AS k, movie_companies AS mc, movie_info AS mi, movie_keyword AS mk, title AS t WHERE cn.country_code = '[us]' AND it1.info = 'release dates' AND mc.note LIKE '%(200%)%' AND mc.note LIKE '%(worldwide)%' AND mi.note LIKE '%internet%' AND mi.info LIKE 'USA:% 200%' AND t.production_year > 2000 AND t.id = at.movie_id AND t.id = mi.movie_id AND t.id = mk.movie_id AND t.id = mc.movie_id AND mk.movie_id = mi.movie_id AND mk.movie_id = mc.movie_id AND mk.movie_id = at.movie_id AND mi.movie_id = mc.movie_id AND mi.movie_id = at.movie_id AND mc.movie_id = at.movie_id AND k.id = mk.keyword_id AND it1.id = mi.info_type_id AND cn.id = mc.company_id AND ct.id = mc.company_type_id;
<gh_stars>0 -- MySQL dump 10.13 Distrib 5.5.28, for Win32 (x86) -- -- Host: localhost Database: yii2advanced -- ------------------------------------------------------ -- Server version 5.5.28 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `article` -- /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `article` ( `id` int(11) NOT NULL AUTO_INCREMENT, `category_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `content` text NOT NULL, `comments_count` int(11) NOT NULL DEFAULT '0', `meta_title` varchar(255) DEFAULT NULL, `meta_description` varchar(255) DEFAULT NULL, `meta_keywords` varchar(255) DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `file` varchar(255) DEFAULT NULL, `miaoshu` text, PRIMARY KEY (`id`), UNIQUE KEY `article_title_unique` (`title`), UNIQUE KEY `article_slug_unique` (`slug`), KEY `article_category_id_index` (`category_id`), CONSTRAINT `article_category_f` FOREIGN KEY (`category_id`) REFERENCES `category` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `article` -- LOCK TABLES `article` WRITE; /*!40000 ALTER TABLE `article` DISABLE KEYS */; INSERT INTO `article` VALUES (1,1,1,'知识','122','<p>\r\n &nbsp; &nbsp; &nbsp; &nbsp;3344 &nbsp; &nbsp;</p>',0,'','','','2015-03-11 17:25:38','2015-03-11 17:25:38','/uploads/images/73CC5B88789C.jpg','<p>2222</p>'),(2,1,1,'4556','6677','77888',0,'','','','2015-03-13 06:55:19','2015-03-13 06:55:19',NULL,NULL),(3,1,1,'334','5566','5777',0,'','','','2015-03-13 17:57:53','2015-03-13 17:57:53',NULL,'<p>dfgyy<img src=\"/ueditor/php/upload/image/20150313/1426246008271917.jpg\" title=\"1426246008271917.jpg\" alt=\"Penguins.jpg\"/></p>'),(4,1,1,'阿萨德的','344','677889',0,'','','','2015-03-14 19:30:30','2015-03-14 19:30:30','/uploads/images/Hydrangeas.jpg','<p>反复各环节<img src=\"/ueditor/php/upload/image/20150314/1426332627502482.jpg\" title=\"1426332627502482.jpg\" alt=\"Penguins.jpg\"/></p>'),(5,1,1,'123','444','rrrtt',0,'','','','2015-03-15 09:59:14','2015-03-15 09:59:14','/uploads/images/Koala.jpg','<p>ffgg</p>'),(6,1,1,'asd','ffgg','ghhh',0,'','','','2015-03-15 10:02:13','2015-03-15 10:02:13','/uploads/images/Chrysanthemum.jpg','<p>hhhj</p>'),(7,1,1,'123666','556','3344',0,'','','','2015-03-15 10:34:38','2015-03-15 10:34:38','/uploads/images/Hardware003.jpg','<p>666</p>'),(8,1,1,'adrr','tyyuu','yyyy',0,'','','','2015-03-15 10:38:49','2015-03-15 10:38:49','/uploads/images/Chrysanthemum.jpg','<p>yuuyt</p>'),(9,1,1,'asd334','fgg','ertt',0,'','','','2015-03-15 12:12:29','2015-03-15 12:12:29','/uploads/images/png-1009.png','<p>rty</p>'),(10,1,1,'美女1','1223444','为二人',0,'','','','2015-03-16 12:05:47','2015-03-16 12:05:47','/uploads/images/7CA8FE0BFA0A(1).jpg','<p>2334</p>'); /*!40000 ALTER TABLE `article` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category` -- /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parentid` int(11) NOT NULL, `cname` varchar(32) NOT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; INSERT INTO `category` VALUES (1,0,'知识',10,122,334),(4,0,'作品',10,1426063868,1426063868),(5,1,'php技术',10,1426063902,1426063902),(7,0,'模板',10,1426064131,1426064131),(8,1,'前端',10,1426590331,1426590331); /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `image` -- DROP TABLE IF EXISTS `image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `image` ( `id` int(11) NOT NULL AUTO_INCREMENT, `filePath` varchar(400) NOT NULL, `itemId` int(20) NOT NULL, `isMain` int(1) DEFAULT NULL, `modelName` varchar(150) NOT NULL, `urlAlias` varchar(400) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `image` -- LOCK TABLES `image` WRITE; /*!40000 ALTER TABLE `image` DISABLE KEYS */; /*!40000 ALTER TABLE `image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migration` -- DROP TABLE IF EXISTS `migration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `migration` ( `version` varchar(180) NOT NULL, `apply_time` int(11) DEFAULT NULL, PRIMARY KEY (`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migration` -- LOCK TABLES `migration` WRITE; /*!40000 ALTER TABLE `migration` DISABLE KEYS */; INSERT INTO `migration` VALUES ('m000000_000000_base',1426062076),('m130524_201442_init',1426062079),('m140622_111540_create_image_table',1426248613),('m150216_075514_create_news_table',1426062079),('m150307_071228_test',1426062079),('m150307_080300_add_classname_col_to_testtable',1426062080),('m150307_084149_create_category_table',1426062080),('m150307_085438_create_article_table',1426062082); /*!40000 ALTER TABLE `migration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news` -- DROP TABLE IF EXISTS `news`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `news` -- LOCK TABLES `news` WRITE; /*!40000 ALTER TABLE `news` DISABLE KEYS */; /*!40000 ALTER TABLE `news` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `test` -- DROP TABLE IF EXISTS `test`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `test` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, `classname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `test` -- LOCK TABLES `test` WRITE; /*!40000 ALTER TABLE `test` DISABLE KEYS */; /*!40000 ALTER TABLE `test` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,'admin','_XlvIAqRwx7SXcfQ4oiMpGQj-u3835-N','$2y$13$AGVL.yQRJZajqtTaeuHP/.sWsRzfiGbUiwnjh8w8BUwuaC.7frRju',NULL,'<EMAIL>',10,1426062672,1426062672); /*!40000 ALTER TABLE `user` 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 2015-03-20 21:09:33
<gh_stars>1-10 CREATE TABLE `sline_visa_content` ( `id` int(11) NOT NULL AUTO_INCREMENT, `webid` int(3) DEFAULT '0', `columnname` varchar(30) DEFAULT NULL COMMENT '使用的字段名称', `chinesename` varchar(100) DEFAULT NULL COMMENT '中文显示名称', `displayorder` int(3) DEFAULT '0' COMMENT '显示顺序', `issystem` int(1) DEFAULT NULL COMMENT '是否系统字段', `isopen` int(1) DEFAULT NULL COMMENT '是否使用1,0', `isrealfield` int(1) unsigned DEFAULT '1' COMMENT '是否真实字段', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='内容分类表'
ALTER TABLE DataElement RENAME TO DataElement_Old; CREATE TABLE DataElement (_id INTEGER PRIMARY KEY AUTOINCREMENT, uid TEXT NOT NULL UNIQUE, code TEXT, name TEXT, displayName TEXT, created TEXT, lastUpdated TEXT, shortName TEXT, displayShortName TEXT, description TEXT, displayDescription TEXT, valueType TEXT, zeroIsSignificant INTEGER, aggregationType TEXT, formName TEXT, numberType TEXT, domainType TEXT, dimension TEXT, displayFormName TEXT, optionSet TEXT, categoryCombo TEXT NOT NULL, FOREIGN KEY (optionSet) REFERENCES OptionSet (uid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, FOREIGN KEY (categoryCombo) REFERENCES CategoryCombo (uid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED); INSERT INTO DataElement (_id, uid, code, name, displayName, created, lastUpdated, shortName, displayShortName, description, displayDescription, valueType, zeroIsSignificant, aggregationType, formName, numberType, domainType, dimension, displayFormName, optionSet, categoryCombo) SELECT _id, uid, code, name, displayName, created, lastUpdated, shortName, displayShortName, description, displayDescription, valueType, zeroIsSignificant, aggregationType, formName, numberType, domainType, dimension, displayFormName, optionSet, categoryCombo FROM DataElement_Old; DROP TABLE DataElement_Old;
/* for cases where PL/Python is not an option. not included in preset configs */ BEGIN; CREATE UNLOGGED TABLE IF NOT EXISTS get_load_average_copy /* remove the UNLOGGED and IF NOT EXISTS part for < v9.1 */ ( load_1min float, load_5min float, load_15min float, proc_count text, last_procid int, created_on timestamptz not null default now() ); CREATE OR REPLACE FUNCTION get_load_average_copy(OUT load_1min float, OUT load_5min float, OUT load_15min float) AS $$ begin if random() < 0.02 then /* clear the table on ca every 50th call not to be bigger than a couple of pages */ truncate get_load_average_copy; end if; copy get_load_average_copy (load_1min, load_5min, load_15min, proc_count, last_procid) from '/proc/loadavg' with (format csv, delimiter ' '); select t.load_1min, t.load_5min, t.load_15min into load_1min, load_5min, load_15min from get_load_average_copy t order by created_on desc nulls last limit 1; return; end; $$ LANGUAGE plpgsql SECURITY DEFINER; GRANT EXECUTE ON FUNCTION get_load_average_copy() TO pgwatch2; COMMENT ON FUNCTION get_load_average_copy() is 'created for pgwatch2'; -- below routine fixes function search_path to only include "more secure" schemas with no "public" CREATE privileges DO $SQL$ DECLARE l_secure_schemas_from_search_path text; BEGIN SELECT string_agg(safe_sp, ', ' ORDER BY rank) INTO l_secure_schemas_from_search_path FROM ( SELECT quote_ident(nspname) AS safe_sp, rank FROM unnest(regexp_split_to_array(current_setting('search_path'), ',')) WITH ORDINALITY AS csp(schema_name, rank) JOIN pg_namespace n ON quote_ident(n.nspname) = CASE WHEN schema_name = '"$user"' THEN quote_ident(user) ELSE trim(schema_name) END WHERE NOT has_schema_privilege('public', n.oid, 'CREATE') ) x; IF coalesce(l_secure_schemas_from_search_path, '') = '' THEN RAISE NOTICE 'search_path = %', current_setting('search_path'); RAISE EXCEPTION $$get_load_average_copy() SECURITY DEFINER helper will not be created as all schemas on search_path are unsecured where all users can create objects - execute 'REVOKE CREATE ON SCHEMA $my_schema FROM public' to tighten security or comment out the DO block to disable the check$$; ELSE RAISE NOTICE '%', format($$ALTER FUNCTION get_load_average_copy() SET search_path TO %s$$, l_secure_schemas_from_search_path); EXECUTE format($$ALTER FUNCTION get_load_average_copy() SET search_path TO %s$$, l_secure_schemas_from_search_path); END IF; END; $SQL$; COMMIT;
-- @testpoint: drop table CASCADE删除表,在有依赖对象时删除表不加cascade合理报错 drop table if exists alter_table_tb02; create table alter_table_tb02 ( c1 int, c2 bigint, c3 varchar(20) ); insert into alter_table_tb02 values('11',null,'sss'); insert into alter_table_tb02 values('21','','sss'); insert into alter_table_tb02 values('31',66,''); insert into alter_table_tb02 values('41',66,null); insert into alter_table_tb02 values('41',66,null); CREATE VIEW myView AS SELECT * FROM alter_table_tb02 ; SELECT * FROM myView ; drop table if exists alter_table_tb02 ; drop table if exists alter_table_tb02 CASCADE;
<reponame>pradeepkumarcm-egov/DIGIT-Dev CREATE INDEX IF NOT EXISTS index_nss_ingest_data_datakey ON nss_ingest_data (datakey);
CREATE TABLE [dbo].[domains] ( [domainId] UNIQUEIDENTIFIER CONSTRAINT [DF_domains_domainId] DEFAULT (newid()) NOT NULL, [domainName] VARCHAR (50) NOT NULL, [domainDescription] NVARCHAR (999) NULL, [basicType] NVARCHAR (50) NULL, [isDomainCaseId] UNIQUEIDENTIFIER NULL, CONSTRAINT [PK_domains] PRIMARY KEY CLUSTERED ([domainId] ASC) ); GO CREATE UNIQUE NONCLUSTERED INDEX [IX_domains] ON [dbo].[domains]([domainName] ASC);
<reponame>ronhowe/sql-server USE [AdventureWorks2019]; SELECT COUNT(*) FROM [Production].[Product] ; SELECT * FROM [Production].[Product] ; SELECT [ProductID] ,[Name] FROM [Production].[Product] ; SELECT [ProductID] ,[Name] FROM [Production].[Product] WHERE 1 = 1 AND [Name] LIKE N'A%' ; SELECT [ProductID] ,[Name] ,[Color] FROM [Production].[Product] WHERE 1 = 1 AND [Name] LIKE N'A%' ; SELECT [ProductID] ,[Name] ,[Color] FROM [Production].[Product] WHERE 1 = 1 AND [Color] = N'Black' ;
<reponame>prashankshah28/Product_Laravel -- -------------------------------------------------------- -- Host: localhost -- Server version: 5.7.24 - MySQL Community Server (GPL) -- Server OS: Win64 -- HeidiSQL Version: 9.5.0.5332 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- Dumping structure for table ats.agencies CREATE TABLE IF NOT EXISTS `agencies` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `join_date` date NOT NULL, `contact_person` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `number` bigint(20) NOT NULL, `contract_details` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL COMMENT '1.active,2.inactive', `is_delete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.yes,2.no', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.agencies: ~8 rows (approximately) /*!40000 ALTER TABLE `agencies` DISABLE KEYS */; INSERT INTO `agencies` (`id`, `user_id`, `name`, `address`, `join_date`, `contact_person`, `number`, `contract_details`, `status`, `is_delete`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 3, 'Human being', 'bandra', '2019-03-26', '<NAME>', 1234567890, '1 year', 1, 2, '2019-03-26 10:49:26', '2019-03-26 11:28:38', NULL), (2, 4, 'RHF', 'juhu', '2019-03-27', '<NAME>', 2314345223, '2 year', 1, 2, '2019-03-26 10:51:05', '2019-03-26 10:51:05', NULL), (3, 5, 'nokri', 'Ahmedabad', '2019-03-27', 'abc bca', 1234567899, 'dnsk', 1, 2, '2019-03-26 11:02:45', '2019-03-26 11:02:45', NULL), (4, 8, 'Monstar', 'Ahmedabad', '2019-03-27', '<NAME>', 1223214514, '1 year', 1, 2, '2019-03-27 13:45:54', '2019-03-27 13:45:54', NULL), (5, 12, 'Rethink flow', 'Test Address', '2016-02-02', '<NAME>', 9898583379, '9898588833', 1, 2, '2019-04-04 08:27:14', '2019-04-04 09:05:24', NULL), (6, 13, 'Rethink Organization', 'Addrss 1 and 2 are same', '2016-02-24', '<NAME>', 98989, 'Contract Details', 1, 2, '2019-04-04 08:54:34', '2019-04-04 08:54:34', NULL), (7, 14, 'Highskill', '<NAME>', '2017-02-08', '<NAME>', 98989988998, '5 Years Contracts', 1, 2, '2019-04-08 04:02:20', '2019-04-08 04:02:20', NULL), (8, 15, 'Soft Skill', 'Ahmedabad', '2016-02-24', '<NAME>', 98989898999, '3 Years', 1, 2, '2019-04-08 04:58:49', '2019-04-08 04:58:49', NULL); /*!40000 ALTER TABLE `agencies` ENABLE KEYS */; -- Dumping structure for table ats.candidates CREATE TABLE IF NOT EXISTS `candidates` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `skypeId` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` bigint(20) NOT NULL, `dob` date DEFAULT NULL, `nationality` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Indian', `gender` tinyint(4) DEFAULT NULL COMMENT '1:Male, 2:Female', `marrital_status` enum('Married','Unmarried') COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '1: Married, 2: Unmarried', `ctc` double DEFAULT NULL, `experience` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `about_candidate` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `candiate_cv_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:open, 2:rejected, 3:hold, 4:inprogress, 5:selected ', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2:Inactive ', `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2:no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `candidates_email_unique` (`email`), UNIQUE KEY `candidates_skypeid_unique` (`skypeId`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.candidates: ~6 rows (approximately) /*!40000 ALTER TABLE `candidates` DISABLE KEYS */; INSERT INTO `candidates` (`id`, `first_name`, `last_name`, `email`, `skypeId`, `phone`, `dob`, `nationality`, `gender`, `marrital_status`, `ctc`, `experience`, `about_candidate`, `candiate_cv_status`, `status`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'chirag', 'rami', '<EMAIL>', 'chirag', 1234554563, '2019-03-06', 'Indian', 1, NULL, NULL, '1 year', NULL, 4, 1, 2, NULL, '2019-03-26 00:00:00', '2019-04-04 09:58:15'), (2, 'kajal', 'rami', '<EMAIL>', 'kajal11', 2321433543, '2019-03-04', 'Indian', 2, NULL, NULL, '1 year', NULL, 5, 1, 2, NULL, '2019-03-26 00:00:00', '2019-03-26 00:00:00'), (3, 'Kashish', 'Rami', '<EMAIL>', 'kashish', 1234567888, '2019-03-11', 'Indian', 2, 'Unmarried', NULL, '1 year', NULL, 5, 1, 2, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (4, 'Komal', 'Rami', '<EMAIL>', 'komal11', 1234567777, '2019-03-04', 'Indian', 2, NULL, NULL, '2 year', NULL, 4, 1, 2, NULL, '2019-03-27 00:00:00', '2019-03-29 00:25:59'), (5, 'Urvin', 'Shangvi', '<EMAIL>', '23', 1231212123, '1995-06-20', 'Indian', 1, NULL, 500000, '2-5', NULL, 1, 1, 2, NULL, '2019-04-04 10:19:53', '2019-04-04 10:19:53'), (7, 'Urvin', 'Shangvi', '<EMAIL>', NULL, 1231212123, '1995-06-20', 'Indian', 1, NULL, 500000, '2-5', NULL, 1, 1, 2, NULL, '2019-04-04 10:24:40', '2019-04-04 10:24:40'), (8, 'prshank', 'shah', '<EMAIL>', 'prashank', 8866104278, '2018-01-08', 'Indian', 1, 'Unmarried', 500000, '1-2', 'Good candidate', 4, 1, 2, NULL, '2019-04-04 10:32:01', '2019-04-04 10:50:23'); /*!40000 ALTER TABLE `candidates` ENABLE KEYS */; -- Dumping structure for table ats.candidate_addresses CREATE TABLE IF NOT EXISTS `candidate_addresses` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `candidate_id` int(11) NOT NULL, `street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `zipcode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'India', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2:Inactive', `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2:no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `candidate_id` (`candidate_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.candidate_addresses: ~6 rows (approximately) /*!40000 ALTER TABLE `candidate_addresses` DISABLE KEYS */; INSERT INTO `candidate_addresses` (`id`, `candidate_id`, `street`, `city`, `state`, `zipcode`, `country`, `status`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, '<NAME>', 'Ahmedabad', 'Gujrat', '382345', 'India', 1, 2, '2019-03-28 00:00:00', NULL, NULL), (3, 2, '<NAME>', 'Baroda', 'Gujrat', '382345', 'India', 1, 2, NULL, NULL, NULL), (4, 3, 'vasna', 'AHmedabad', 'Gujrat', '382345', 'India', 1, 2, NULL, NULL, NULL), (5, 4, 'pal', 'surat', 'Gujrat', '382365', 'India', 1, 2, NULL, NULL, NULL), (6, 5, 'Jivraj Park', 'Ahmedabad', 'Gujarat', '8888888882834283989ysfjladjfadghcagdf', '09230420398', 1, 2, NULL, '2019-04-04 10:19:53', '2019-04-04 10:19:53'), (7, 7, '<NAME>', 'Ahmedabad', 'Gujarat', '8888888882834283989ysfjladjfadghcagdf', '09230420398', 1, 2, NULL, '2019-04-04 10:24:40', '2019-04-04 10:24:40'), (8, 8, '<NAME>', 'ahmedabad', 'gujrat', '382345', 'india', 1, 2, NULL, '2019-04-04 10:32:01', '2019-04-04 10:32:01'); /*!40000 ALTER TABLE `candidate_addresses` ENABLE KEYS */; -- Dumping structure for table ats.candidate_background_verificatons CREATE TABLE IF NOT EXISTS `candidate_background_verificatons` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `candidate_id` int(11) NOT NULL, `candidate_document_id` int(11) NOT NULL, `verification_status` tinyint(4) NOT NULL COMMENT '1: Verified, 2:NotVerified', `verificaton_date` datetime NOT NULL, `verified_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `candidate_id` (`candidate_id`), KEY `candidate_document_id` (`candidate_document_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.candidate_background_verificatons: ~0 rows (approximately) /*!40000 ALTER TABLE `candidate_background_verificatons` DISABLE KEYS */; /*!40000 ALTER TABLE `candidate_background_verificatons` ENABLE KEYS */; -- Dumping structure for table ats.candidate_documents CREATE TABLE IF NOT EXISTS `candidate_documents` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `candidate_id` int(11) NOT NULL, `document_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'document name', `category` enum('Education','Personal','Others') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Education' COMMENT 'education, personal, others', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2:Inactive', `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2:no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `candidate_id` (`candidate_id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.candidate_documents: ~4 rows (approximately) /*!40000 ALTER TABLE `candidate_documents` DISABLE KEYS */; INSERT INTO `candidate_documents` (`id`, `candidate_id`, `document_name`, `category`, `status`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 'cv.pdf', 'Education', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (2, 2, 'resume.pdf', 'Personal', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (4, 3, 'resume.pdf', 'Others', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (5, 4, 'resume.pdf', 'Education', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (6, 7, 'Application_tracking_system.xlsx', 'Education', 1, 2, NULL, '2019-04-04 10:24:40', '2019-04-04 10:24:40'), (7, 8, 'Application_tracking_system.xlsx', 'Education', 1, 2, NULL, '2019-04-04 10:32:02', '2019-04-04 10:32:02'); /*!40000 ALTER TABLE `candidate_documents` ENABLE KEYS */; -- Dumping structure for table ats.candidate_referances CREATE TABLE IF NOT EXISTS `candidate_referances` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `candidate_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `requirement_id` int(11) NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `candidate_id` (`candidate_id`), KEY `user_id` (`user_id`), KEY `requirement_id` (`requirement_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.candidate_referances: ~8 rows (approximately) /*!40000 ALTER TABLE `candidate_referances` DISABLE KEYS */; INSERT INTO `candidate_referances` (`id`, `candidate_id`, `user_id`, `requirement_id`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 3, 1, NULL, '2019-03-26 00:00:00', '2019-03-26 00:00:00'), (2, 2, 3, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (3, 3, 3, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (4, 2, 4, 2, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (5, 2, 4, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (6, 3, 4, 3, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (7, 2, 3, 2, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (8, 4, 3, 3, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'); /*!40000 ALTER TABLE `candidate_referances` ENABLE KEYS */; -- Dumping structure for table ats.candidate_skills CREATE TABLE IF NOT EXISTS `candidate_skills` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `candidate_id` int(11) NOT NULL, `skill_id` int(11) NOT NULL, `is_key_skill` enum('yes','no') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '1:Y, 2:N', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2:Inactive', `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2:no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `candidate_id` (`candidate_id`), KEY `skill_id` (`skill_id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.candidate_skills: ~8 rows (approximately) /*!40000 ALTER TABLE `candidate_skills` DISABLE KEYS */; INSERT INTO `candidate_skills` (`id`, `candidate_id`, `skill_id`, `is_key_skill`, `status`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 1, 'yes', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (2, 1, 2, 'no', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (3, 2, 3, 'no', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (4, 2, 2, 'yes', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (6, 3, 3, 'yes', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (7, 4, 4, 'no', 1, 2, NULL, '2019-03-28 00:00:00', '2019-03-28 00:00:00'), (8, 7, 1, 'yes', 1, 2, NULL, '2019-04-04 10:24:40', '2019-04-04 10:24:40'), (9, 8, 5, 'yes', 1, 2, NULL, '2019-04-04 10:32:01', '2019-04-04 10:32:01'), (10, 8, 3, 'no', 1, 2, NULL, '2019-04-04 10:32:01', '2019-04-04 10:32:01'); /*!40000 ALTER TABLE `candidate_skills` ENABLE KEYS */; -- Dumping structure for table ats.employees CREATE TABLE IF NOT EXISTS `employees` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `firstname` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `lastname` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `designation` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `department` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `emp_code` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `address2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_interviwer` tinyint(4) NOT NULL COMMENT '1.YES ,2.NO', `review` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL COMMENT '1.active,2.inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.employees: ~6 rows (approximately) /*!40000 ALTER TABLE `employees` DISABLE KEYS */; INSERT INTO `employees` (`id`, `user_id`, `firstname`, `lastname`, `designation`, `department`, `emp_code`, `address`, `address2`, `is_interviwer`, `review`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 2, 'shashankas', 'rami', 'developer', 'UI', '1', 'Ahmedabad', 'Gujarat', 1, 'good', 2, '2019-03-26 10:46:16', '2019-03-28 05:31:32', NULL), (2, 6, 'jinal', 'shah', 'developer', 'UI', '2', 'Ahmedabad', 'Gujarat', 1, 'good', 2, '2019-03-26 11:12:48', '2019-03-28 05:31:32', NULL), (3, 7, 'pinal', 'patel', 'hr', 'hr', '3', 'asd', 'asd', 1, 'good', 1, '2019-03-27 05:17:29', '2019-03-28 05:31:33', NULL), (4, 9, 'prashank', 'shah', 'developer', 'php', '4', 'Ahmedabad', 'Gujarat', 1, 'good', 1, '2019-03-27 13:56:17', '2019-03-28 05:31:33', NULL), (5, 10, 'bhumi', 'rami', 'developer', 'UI', '5', 'Ahmedabad', 'Gujarat', 1, 'good', 1, '2019-03-27 13:59:29', '2019-03-28 05:31:33', NULL), (6, 11, 'Test', 'testname', 'intern', 'PHP Devloper', 'test..test', 'zsldkjasklj', '<PASSWORD>', 1, 'GOOF', 1, '2019-03-29 03:48:49', '2019-03-29 03:48:49', NULL); /*!40000 ALTER TABLE `employees` ENABLE KEYS */; -- Dumping structure for table ats.experience_ranges CREATE TABLE IF NOT EXISTS `experience_ranges` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL COMMENT '1: Active, 2:Inactive', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.experience_ranges: ~0 rows (approximately) /*!40000 ALTER TABLE `experience_ranges` DISABLE KEYS */; /*!40000 ALTER TABLE `experience_ranges` ENABLE KEYS */; -- Dumping structure for table ats.industries CREATE TABLE IF NOT EXISTS `industries` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2:Inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.industries: ~4 rows (approximately) /*!40000 ALTER TABLE `industries` DISABLE KEYS */; INSERT INTO `industries` (`id`, `title`, `alias`, `status`, `created_at`, `updated_at`) VALUES (1, 'HR', 'hr', 1, NULL, NULL), (2, 'IT', 'it', 1, NULL, NULL), (3, 'Development', 'development', 1, NULL, NULL), (4, 'Sales', 'sales', 1, NULL, NULL); /*!40000 ALTER TABLE `industries` ENABLE KEYS */; -- Dumping structure for table ats.interviewer_candidate_skill_ratings CREATE TABLE IF NOT EXISTS `interviewer_candidate_skill_ratings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `interview_feedback_id` int(11) NOT NULL, `skill_id` int(11) NOT NULL, `skill_rating` decimal(8,2) NOT NULL, `is_delete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.yes,2.no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `interview_feedback_id` (`interview_feedback_id`), KEY `skill_id` (`skill_id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.interviewer_candidate_skill_ratings: ~15 rows (approximately) /*!40000 ALTER TABLE `interviewer_candidate_skill_ratings` DISABLE KEYS */; INSERT INTO `interviewer_candidate_skill_ratings` (`id`, `interview_feedback_id`, `skill_id`, `skill_rating`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 4, 4.00, 2, NULL, '2019-03-28 07:47:49', '2019-03-28 07:47:49'), (2, 2, 1, 3.50, 2, NULL, '2019-03-28 07:50:28', '2019-03-28 07:50:28'), (3, 2, 2, 4.00, 2, NULL, '2019-03-28 07:50:28', '2019-03-28 07:50:28'), (4, 3, 1, 4.00, 2, NULL, '2019-04-02 09:50:27', '2019-04-02 09:50:27'), (5, 3, 2, 2.50, 2, NULL, '2019-04-02 09:50:27', '2019-04-02 09:50:27'), (6, 4, 1, 4.00, 2, NULL, '2019-04-02 09:51:17', '2019-04-02 09:51:17'), (7, 4, 2, 2.50, 2, NULL, '2019-04-02 09:51:17', '2019-04-02 09:51:17'), (8, 5, 1, 4.00, 2, NULL, '2019-04-02 09:54:27', '2019-04-02 09:54:27'), (9, 5, 2, 2.50, 2, NULL, '2019-04-02 09:54:27', '2019-04-02 09:54:27'), (10, 6, 5, 3.50, 2, NULL, '2019-04-04 10:47:09', '2019-04-04 10:47:09'), (11, 6, 3, 4.00, 2, NULL, '2019-04-04 10:47:09', '2019-04-04 10:47:09'), (12, 7, 5, 3.00, 2, NULL, '2019-04-04 10:49:19', '2019-04-04 10:49:19'), (13, 7, 3, 3.00, 2, NULL, '2019-04-04 10:49:19', '2019-04-04 10:49:19'), (14, 8, 5, 2.00, 2, NULL, '2019-04-04 10:50:23', '2019-04-04 10:50:23'), (15, 8, 3, 2.00, 2, NULL, '2019-04-04 10:50:23', '2019-04-04 10:50:23'); /*!40000 ALTER TABLE `interviewer_candidate_skill_ratings` ENABLE KEYS */; -- Dumping structure for table ats.interviewer_panels CREATE TABLE IF NOT EXISTS `interviewer_panels` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `interview_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1.active,2.inactive,3.Available,4.notavailable', `comment` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_delete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.yes,2.no', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `interview_id` (`interview_id`), KEY `employee_id` (`employee_id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.interviewer_panels: ~11 rows (approximately) /*!40000 ALTER TABLE `interviewer_panels` DISABLE KEYS */; INSERT INTO `interviewer_panels` (`id`, `interview_id`, `employee_id`, `status`, `comment`, `is_delete`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 5, 1, 'interviewer', 2, '2019-03-28 04:46:50', '2019-03-28 04:46:50', NULL), (2, 1, 2, 1, 'interviewer', 2, '2019-03-28 04:46:50', '2019-03-28 04:46:50', NULL), (3, 2, 3, 1, 'two interviewer are conduct this interview', 2, '2019-03-28 04:48:32', '2019-03-28 04:48:32', NULL), (4, 2, 4, 1, 'two interviewer are conduct this interview', 2, '2019-03-28 04:48:33', '2019-03-28 04:48:33', NULL), (5, 3, 1, 1, 'interviewer', 2, '2019-03-28 04:50:12', '2019-03-28 04:50:12', NULL), (6, 4, 2, 1, 'interviewer', 2, '2019-03-28 05:01:06', '2019-03-28 05:01:06', NULL), (7, 5, 2, 1, 'interviewer', 2, '2019-03-28 05:04:39', '2019-03-28 05:04:39', NULL), (8, 6, 3, 1, 'asdasd', 2, '2019-03-29 00:25:59', '2019-03-29 00:25:59', NULL), (9, 8, 5, 1, NULL, 2, '2019-04-04 09:30:44', '2019-04-04 09:30:44', NULL), (10, 8, 3, 1, NULL, 2, '2019-04-04 09:30:44', '2019-04-04 09:30:44', NULL), (11, 9, 2, 1, NULL, 2, '2019-04-04 10:39:48', '2019-04-04 10:39:48', NULL), (12, 9, 3, 1, NULL, 2, '2019-04-04 10:39:48', '2019-04-04 10:39:48', NULL), (13, 9, 1, 1, NULL, 2, '2019-04-04 10:39:48', '2019-04-04 10:39:48', NULL); /*!40000 ALTER TABLE `interviewer_panels` ENABLE KEYS */; -- Dumping structure for table ats.interviews CREATE TABLE IF NOT EXISTS `interviews` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `candidate_id` int(11) NOT NULL, `requirement_id` int(11) NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `location_id` int(11) NOT NULL, `interview_date` date NOT NULL, `interview_time` time NOT NULL, `rounds` enum('Technical','HR') COLLATE utf8mb4_unicode_ci NOT NULL, `overall_rating` float(2,1) DEFAULT NULL, `mode_of_interview` enum('Call','Skype','Personal','Others') COLLATE utf8mb4_unicode_ci NOT NULL, `interview_schedule_status` tinyint(4) NOT NULL COMMENT '1.attempts,2.notattempts', `comments` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_delete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.yes,2.no', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `candidate_id` (`candidate_id`), KEY `requirement_id` (`requirement_id`), KEY `location_id` (`location_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.interviews: ~8 rows (approximately) /*!40000 ALTER TABLE `interviews` DISABLE KEYS */; INSERT INTO `interviews` (`id`, `candidate_id`, `requirement_id`, `title`, `location_id`, `interview_date`, `interview_time`, `rounds`, `overall_rating`, `mode_of_interview`, `interview_schedule_status`, `comments`, `is_delete`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 1, 'General Interview', 2, '2019-03-30', '10:15:00', 'Technical', 3.5, 'Call', 2, 'This interview based on php', 2, '2019-03-28 04:46:50', '2019-04-04 10:50:28', NULL), (2, 2, 2, 'Technical Interview', 1, '2019-04-04', '10:30:00', 'Technical', NULL, 'Call', 2, 'this is technical interview', 2, '2019-03-28 04:48:32', '2019-04-04 10:50:28', NULL), (3, 3, 3, 'Hr interview', 1, '2019-04-06', '11:00:00', 'Technical', NULL, 'Personal', 1, 'hr interview sdfds dfvds', 2, '2019-03-28 04:50:12', '2019-03-28 04:50:12', NULL), (4, 4, 4, 'general interview', 1, '2019-04-06', '10:30:00', 'Technical', NULL, 'Personal', 2, 'interview comment', 2, '2019-03-28 05:01:06', '2019-03-28 05:07:04', NULL), (5, 4, 1, 'general interview', 1, '2019-04-06', '10:30:00', 'Technical', NULL, 'Personal', 1, 'interview comment', 2, '2019-03-28 05:04:39', '2019-03-28 05:04:39', NULL), (6, 4, 2, 'test', 1, '2019-04-19', '06:00:00', 'Technical', NULL, 'Personal', 2, 'asldjkaksldjaklsj', 2, '2019-03-29 00:25:59', '2019-03-29 00:30:05', NULL), (7, 1, 5, 'Interview Round - 1', 2, '2019-04-05', '17:00:00', 'Technical', NULL, 'Personal', 1, NULL, 2, '2019-04-04 09:27:27', '2019-04-04 09:27:27', NULL), (8, 1, 5, 'Interview Round - 1', 2, '2019-04-05', '17:00:00', 'Technical', NULL, 'Personal', 1, NULL, 2, '2019-04-04 09:30:44', '2019-04-04 09:30:44', NULL), (9, 8, 7, 'Interview -1', 2, '2019-04-05', '17:00:00', 'Technical', 2.8, 'Personal', 2, NULL, 2, '2019-04-04 10:39:48', '2019-04-04 10:50:23', NULL); /*!40000 ALTER TABLE `interviews` ENABLE KEYS */; -- Dumping structure for table ats.interview_feedbacks CREATE TABLE IF NOT EXISTS `interview_feedbacks` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `interviewer_panel_id` int(11) NOT NULL, `candidate_id` int(11) NOT NULL, `technical_feedback` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL, `employee_rating` decimal(8,2) NOT NULL, `interview_status` tinyint(4) NOT NULL COMMENT '1. accepted,2. rejected,3. move next round,4. practical', `is_delete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.yes,2.no', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `interviewer_panel_id` (`interviewer_panel_id`), KEY `candidate_id` (`candidate_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.interview_feedbacks: ~7 rows (approximately) /*!40000 ALTER TABLE `interview_feedbacks` DISABLE KEYS */; INSERT INTO `interview_feedbacks` (`id`, `interviewer_panel_id`, `candidate_id`, `technical_feedback`, `employee_rating`, `interview_status`, `is_delete`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 6, 4, 'not good for this requirement', 4.00, 1, 2, '2019-03-28 07:47:49', '2019-03-28 07:47:49', NULL), (2, 1, 1, 'The Laravel framework has a few system requirements. All of these requirements are satisfied by the Laravel Homestead virtual machine, so it\'s highly recommended that you use Homestead as your local Laravel development environment.', 3.50, 1, 2, '2019-03-28 07:50:28', '2019-03-28 07:50:28', NULL), (3, 2, 1, 'Overall is good, Good Confident level', 3.50, 3, 2, '2019-04-02 09:50:27', '2019-04-02 09:50:27', NULL), (4, 2, 1, 'Overall is good, Good Confident level', 3.50, 3, 2, '2019-04-02 09:51:17', '2019-04-02 09:51:17', NULL), (5, 2, 1, 'Overall is good, Good Confident level', 3.50, 3, 2, '2019-04-02 09:54:27', '2019-04-02 09:54:27', NULL), (6, 11, 8, 'Prashnk, has good level of Knowledge in Magento', 4.00, 3, 2, '2019-04-04 10:47:09', '2019-04-04 10:47:09', NULL), (7, 12, 8, 'Good Attitude', 3.50, 3, 2, '2019-04-04 10:49:19', '2019-04-04 10:49:19', NULL), (8, 13, 8, 'Not so good at all', 1.00, 2, 2, '2019-04-04 10:50:23', '2019-04-04 10:50:23', NULL); /*!40000 ALTER TABLE `interview_feedbacks` ENABLE KEYS */; -- Dumping structure for table ats.jobs CREATE TABLE IF NOT EXISTS `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) unsigned NOT NULL, `reserved_at` int(10) unsigned DEFAULT NULL, `available_at` int(10) unsigned NOT NULL, `created_at` int(10) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.jobs: ~0 rows (approximately) /*!40000 ALTER TABLE `jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `jobs` ENABLE KEYS */; -- Dumping structure for table ats.locations CREATE TABLE IF NOT EXISTS `locations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'India', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2:Inactive', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.locations: ~3 rows (approximately) /*!40000 ALTER TABLE `locations` DISABLE KEYS */; INSERT INTO `locations` (`id`, `title`, `address`, `city`, `state`, `country`, `status`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'SEZ Office', 'near Nirma University', 'Ahmedabad', 'Gujarat', 'India', 1, NULL, NULL, NULL), (2, 'Shialj Office', 'Railway crossing', 'Ahmedabad', 'Gujarat', 'India', 1, NULL, NULL, NULL), (3, 'Mumbai Office', 'Bandra', 'Mumbai', 'Maharashtra', 'India', 1, NULL, NULL, NULL); /*!40000 ALTER TABLE `locations` ENABLE KEYS */; -- Dumping structure for table ats.migrations CREATE TABLE IF NOT EXISTS `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.migrations: ~25 rows (approximately) /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_02_19_062332_create_role_permission_table', 1), (4, '2019_02_28_063230_create_skills_table', 1), (5, '2019_03_01_053438_create_interviews_table', 1), (6, '2019_03_01_055633_create_agencies_table', 1), (7, '2019_03_01_055849_create_interviewer_panels_table', 1), (8, '2019_03_01_060329_create_interview_feedbacks_table', 1), (9, '2019_03_01_070402_create_employees_table', 1), (10, '2019_03_01_071534_create_candidate_documents_table', 1), (11, '2019_03_01_071942_create_requirements_table', 1), (12, '2019_03_01_072008_create_requirement_recruiters_table', 1), (13, '2019_03_01_072025_create_requirement_locations_table', 1), (14, '2019_03_01_072040_create_requirement_skills_table', 1), (15, '2019_03_01_072056_create_requirement_documents_table', 1), (16, '2019_03_01_193239_create_candidates_table', 1), (17, '2019_03_01_203615_create_experience_ranges_table', 1), (18, '2019_03_01_204022_create_candidate_skills_table', 1), (19, '2019_03_01_204516_create_candidate_referances_table', 1), (20, '2019_03_01_204910_create_candidate_background_verificatons_table', 1), (21, '2019_03_06_101158_create_locations_table', 1), (22, '2019_03_07_130117_create_industries_table', 1), (23, '2019_03_11_131431_create_requirement_histories_table', 1), (24, '2019_03_12_202029_create_candidate_addresses_table', 1), (25, '2019_03_18_081241_create_interviewer_candidate_skill_rating', 1), (26, '2019_04_01_084746_create_jobs_table', 2); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; -- Dumping structure for table ats.modules CREATE TABLE IF NOT EXISTS `modules` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:Active,2:InActive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.modules: ~7 rows (approximately) /*!40000 ALTER TABLE `modules` DISABLE KEYS */; INSERT INTO `modules` (`id`, `title`, `status`, `created_at`, `updated_at`) VALUES (1, 'Job', 1, '2019-04-08 15:38:00', '2019-04-08 15:38:02'), (2, 'Interview', 1, '2019-04-08 15:38:04', '2019-04-08 15:38:06'), (3, 'Candidate', 1, '2019-04-08 15:38:09', '2019-04-08 15:38:11'), (4, 'Employee', 1, '2019-04-08 15:38:12', '2019-04-08 15:38:14'), (5, 'Offer', 1, '2019-04-08 15:38:15', '2019-04-08 15:38:17'), (6, 'Consultant', 1, '2019-04-08 15:38:18', '2019-04-08 15:38:19'), (7, 'Master', 1, '2019-04-08 15:38:35', '2019-04-08 15:38:42'); /*!40000 ALTER TABLE `modules` ENABLE KEYS */; -- Dumping structure for table ats.password_resets CREATE TABLE IF NOT EXISTS `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; -- Dumping data for table ats.password_resets: ~4 rows (approximately) /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES ('<EMAIL>', <PASSWORD>$E<PASSWORD>N<PASSWORD>UXOOiefb19yQRJ75q<PASSWORD>/eR50DDBGzTu0PG56', '2019-04-04 08:27:14'), ('<EMAIL>', <PASSWORD>$10$.ubJodHfxsgNLFnk8XFcF.ysWLdMYlsJfmsJCmT7UsogszlmbRovm', '2019-04-04 08:54:34'), ('<EMAIL>', <PASSWORD>$10$2/xg7Fd7.yRhK.bh2icplO0/EsOACHP2kYg.tcJM7IQzmHtVe0bIu', '2019-04-08 04:02:20'), ('<EMAIL>', <PASSWORD>$SNmcBfPLO<PASSWORD>k4T<PASSWORD>', '2019-04-08 04:58:49'); /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; -- Dumping structure for table ats.permissions CREATE TABLE IF NOT EXISTS `permissions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `sub_module` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `alias` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` tinyint(4) NOT NULL COMMENT '1:web, 2: Api', `status` tinyint(4) NOT NULL COMMENT '1: active, 2: inactive', `module_id` int(11) NOT NULL, `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2: no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.permissions: ~85 rows (approximately) /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` (`id`, `name`, `sub_module`, `alias`, `guard_name`, `status`, `module_id`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'Employee List', 'Employee', 'employee.index', 1, 1, 4, 2, NULL, '2019-03-28 04:41:24', '2019-03-28 04:41:24'), (2, 'Employee Add View', 'Employee', 'employee.create', 1, 1, 4, 2, NULL, '2019-03-28 04:41:51', '2019-03-28 06:06:59'), (3, 'Employee Update', 'Employee', 'employee.update', 1, 1, 4, 2, NULL, '2019-03-28 06:02:17', '2019-03-29 01:41:10'), (4, 'Employee Detail View', 'Employee', 'employee.show', 1, 1, 4, 2, NULL, '2019-03-28 06:03:21', '2019-03-28 06:03:58'), (5, 'Employee Edit', 'Employee', 'employee.edit', 1, 1, 4, 2, NULL, '2019-03-28 06:05:01', '2019-03-28 06:05:01'), (6, 'Employee Delete', 'Employee', 'employee.destroy', 1, 1, 4, 2, NULL, '2019-03-28 06:05:39', '2019-03-28 06:05:39'), (7, 'Employee Add', 'Employee', 'employee.store', 1, 1, 4, 2, NULL, '2019-03-28 06:07:24', '2019-03-28 06:07:24'), (8, 'Role List', 'Role', 'roles.index', 1, 1, 4, 2, NULL, '2019-03-28 06:10:53', '2019-03-28 06:10:53'), (9, 'Role Add View', 'Role', 'roles.create', 1, 1, 4, 2, NULL, '2019-03-28 06:11:26', '2019-03-28 06:11:26'), (10, 'Role Add', 'Role', 'roles.store', 1, 1, 4, 2, NULL, '2019-03-28 06:12:35', '2019-03-28 06:12:35'), (11, 'Role Update', 'Role', 'roles.update', 1, 1, 4, 2, NULL, '2019-03-28 06:13:43', '2019-03-28 06:13:43'), (12, 'Role Edit', 'Role', 'roles.edit', 1, 1, 4, 2, NULL, '2019-03-28 06:14:28', '2019-03-28 06:14:28'), (13, 'Change Status of Role', 'Role', 'roles.status', 1, 1, 4, 2, NULL, '2019-03-28 06:15:42', '2019-03-28 06:15:42'), (14, 'Permission List', 'Permission', 'permission.index', 1, 1, 4, 2, NULL, '2019-03-28 06:17:02', '2019-03-28 06:17:02'), (15, 'Permission Add View', 'Permission', 'permission.create', 1, 1, 4, 2, NULL, '2019-03-28 06:19:21', '2019-03-28 06:19:21'), (16, 'Permission Add', 'Permission', 'permission.store', 1, 1, 4, 2, NULL, '2019-03-28 06:21:22', '2019-03-28 06:21:22'), (17, 'Permission Detail View', 'Permission', 'permission.show', 1, 1, 4, 2, NULL, '2019-03-28 06:21:53', '2019-03-28 06:21:53'), (18, 'Role Detail View', 'Role', 'roles.show', 1, 1, 4, 2, NULL, '2019-03-28 06:22:29', '2019-03-28 06:22:29'), (19, 'Permission Edit', 'Permission', 'permission.edit', 1, 1, 4, 2, NULL, '2019-03-28 06:23:06', '2019-03-28 06:23:06'), (20, 'Permission Update', 'Permission', 'permission.update', 1, 1, 4, 2, NULL, '2019-03-28 06:24:02', '2019-03-28 06:24:02'), (21, 'Change Status of Permission', 'Permission', 'permissions.status', 1, 1, 4, 2, NULL, '2019-03-28 06:25:31', '2019-03-28 06:25:31'), (22, 'Role Permission List', 'RolePermission', 'rolePermission.index', 1, 1, 4, 2, NULL, '2019-03-28 06:26:12', '2019-03-28 06:26:12'), (23, 'Role Permission Access', 'RolePermission', 'rolePermission.edit', 1, 1, 4, 2, NULL, '2019-03-28 06:27:42', '2019-03-28 06:27:42'), (24, 'Role Permission Add', 'RolePermission', 'rolePermission.store', 1, 1, 4, 2, NULL, '2019-03-28 06:28:16', '2019-03-28 06:28:16'), (25, 'Role Permission Update', 'RolePermission', 'rolePermission.update', 1, 1, 4, 2, NULL, '2019-03-28 06:28:48', '2019-03-28 06:28:48'), (26, 'Job List', 'Job', 'requirement.index', 1, 1, 1, 2, NULL, '2019-03-28 06:39:38', '2019-03-28 06:39:38'), (27, 'Job Detail View', 'Job', 'requirement.show', 1, 1, 1, 2, NULL, '2019-03-28 06:40:04', '2019-03-28 06:40:04'), (28, 'Job Add View', 'Job', 'requirement.create', 1, 1, 1, 2, NULL, '2019-03-28 06:41:17', '2019-03-28 06:41:17'), (29, 'Job Add', 'Job', 'requirement.store', 1, 1, 1, 2, NULL, '2019-03-28 06:41:35', '2019-03-28 06:41:35'), (30, 'Job Edit View', 'Permission', 'permission.edit', 1, 1, 1, 2, NULL, '2019-03-28 06:42:02', '2019-03-28 06:42:02'), (31, 'Job Update', 'Job', 'requirement.update', 1, 1, 1, 2, NULL, '2019-03-28 06:42:19', '2019-03-28 06:42:19'), (32, 'Job Delete', 'Job', 'requirement.destroy', 1, 1, 1, 2, NULL, '2019-03-28 06:42:35', '2019-03-28 06:42:35'), (33, 'Change Status of Job', 'Job', 'requirement.status', 1, 1, 1, 2, NULL, '2019-03-28 06:43:10', '2019-03-28 06:43:10'), (34, 'Allocated Agency List for Job', 'Job', 'requirement.getAgency', 1, 1, 1, 2, NULL, '2019-03-28 06:47:25', '2019-03-28 06:47:25'), (35, 'Job Filteration', 'Job', 'requirement.filterData', 1, 1, 1, 2, NULL, '2019-03-28 06:49:14', '2019-03-28 06:49:14'), (36, 'Candidate List', 'Candidate', 'candidate.index', 1, 1, 3, 2, NULL, '2019-03-28 06:50:47', '2019-03-28 06:50:47'), (37, 'Candidate Detail View', 'Candidate', 'candidate.show', 1, 1, 3, 2, NULL, '2019-03-28 06:51:28', '2019-03-28 06:51:28'), (38, 'Candidate Add View', 'Candidate', 'candidate.create', 1, 1, 3, 2, NULL, '2019-03-28 06:52:08', '2019-03-28 06:52:08'), (39, 'Candidate Add', 'Candidate', 'candidate.store', 1, 1, 3, 2, NULL, '2019-03-28 06:52:30', '2019-03-28 06:52:30'), (40, 'Candidate Edit View', 'Candidate', 'candidate.edit', 1, 1, 3, 2, NULL, '2019-03-28 06:53:00', '2019-03-28 06:53:00'), (41, 'Candidate Delete', 'Candidate', 'candidate.destroy', 1, 1, 3, 2, NULL, '2019-03-28 06:53:42', '2019-03-28 06:53:42'), (42, 'Interview List', 'Interview', 'interview.index', 1, 1, 2, 2, NULL, '2019-03-28 06:59:13', '2019-03-28 06:59:13'), (43, 'Interview Add View', 'Interview', 'interview.create', 1, 1, 2, 2, NULL, '2019-03-28 06:59:38', '2019-03-28 06:59:38'), (44, 'Interview Add', 'Interview', 'interview.store', 1, 1, 2, 2, NULL, '2019-03-28 06:59:58', '2019-03-28 06:59:58'), (45, 'Interview Detail View', 'Interview', 'interview.show', 1, 1, 2, 2, NULL, '2019-03-28 07:00:38', '2019-03-28 07:00:38'), (46, 'Interview Edit View', 'Interview', 'interview.edit', 1, 1, 2, 2, NULL, '2019-03-28 07:01:00', '2019-03-28 07:01:00'), (47, 'Interview Update', 'Interview', 'interview.update', 1, 1, 2, 2, NULL, '2019-03-28 07:01:22', '2019-03-28 07:01:22'), (48, 'Interview Filteration', 'Interview', 'interview.filterData', 1, 1, 2, 2, NULL, '2019-03-28 07:05:03', '2019-03-28 07:05:03'), (49, 'Feedback List', 'Interview', 'interview_feedback.index', 1, 1, 2, 2, NULL, '2019-03-28 07:06:08', '2019-03-28 07:06:08'), (50, 'Feedback Add View', 'Interview', 'interview_feedback.create', 1, 1, 2, 2, NULL, '2019-03-28 07:06:36', '2019-03-28 07:06:36'), (51, 'Feedback Add', 'Interview', 'interview_feedback.store', 1, 1, 2, 2, NULL, '2019-03-28 07:07:04', '2019-03-28 07:07:04'), (52, 'Feedback Detail View', 'Interview', 'interview_feedback.show', 1, 1, 2, 2, NULL, '2019-03-28 07:07:42', '2019-03-28 07:07:42'), (53, 'Change Activation Status of Employee', 'Employee', 'employee.activeStatus', 1, 1, 4, 2, NULL, '2019-03-28 07:13:50', '2019-03-28 07:13:50'), (54, 'Change Interviewer Status of Employee', 'Employee', 'employee.interviewStatus', 1, 1, 4, 2, NULL, '2019-03-28 07:14:24', '2019-03-28 07:14:24'), (55, 'Change Multiple Interviewer Status of Employee', 'Employee', 'employee.massInterviewStatus', 1, 1, 4, 2, NULL, '2019-03-28 07:15:19', '2019-03-28 07:15:19'), (56, 'Change Multiple Activation Status of Employee', 'Employee', 'employee.massActiveStatus', 1, 1, 4, 2, NULL, '2019-03-28 07:16:00', '2019-03-28 07:16:00'), (57, 'Assign Role of Employee', 'Employee', 'employee.role', 1, 1, 4, 2, NULL, '2019-03-28 07:16:35', '2019-03-28 07:16:35'), (58, 'Change Activation Status of Candidate', 'Candidate', 'candidate.allstatus', 1, 1, 3, 2, NULL, '2019-03-28 07:18:15', '2019-03-28 07:18:15'), (59, 'Change CV Status', 'Candidate', 'candidate.changecvstatus', 1, 1, 3, 2, NULL, '2019-03-28 07:19:36', '2019-03-28 07:19:36'), (60, 'Change Status of Candidate', 'Candidate', 'candidate.status', 1, 1, 3, 2, NULL, '2019-03-28 07:20:57', '2019-03-28 07:20:57'), (61, 'Change Attempt Status of Interview', 'Interview', 'interview.status', 1, 1, 2, 2, NULL, '2019-03-28 07:23:38', '2019-03-28 07:23:38'), (62, 'Interview Add Review for Candidate', 'Interview', 'interview_feedback.feedback', 1, 1, 2, 2, NULL, '2019-03-28 07:42:13', '2019-03-28 07:42:13'), (63, 'View feedback of Candidate', 'Interview', 'feedback.interviewerData', 1, 1, 2, 2, NULL, '2019-03-28 07:44:38', '2019-03-28 07:44:38'), (64, 'Send Mail', 'Interview', 'interview.sendMail', 1, 1, 2, 2, NULL, '2019-03-29 00:22:48', '2019-03-29 00:22:48'), (65, 'Agency List', 'Consultant', 'agency.index', 1, 1, 6, 2, NULL, '2019-03-29 03:00:15', '2019-03-29 03:00:15'), (66, 'Agency Add View', 'Consultant', 'agency.create', 1, 1, 6, 2, NULL, '2019-03-29 03:00:52', '2019-03-29 03:00:52'), (67, 'Agency Add', 'Consultant', 'agency.store', 1, 1, 6, 2, NULL, '2019-03-29 03:02:19', '2019-03-29 03:02:19'), (68, 'View Allocated Job', 'Consultant', 'agency.allocation', 1, 1, 6, 2, NULL, '2019-03-29 03:04:33', '2019-03-29 03:04:33'), (69, 'Candidate Refrence By Agency', 'Candidate', 'agency.candidateRefrence', 1, 1, 6, 2, NULL, '2019-03-29 03:05:30', '2019-03-29 03:05:30'), (70, 'Change Status of Agency', 'Consultant', 'agency.activeStatus', 1, 1, 6, 2, NULL, '2019-03-29 03:06:04', '2019-03-29 03:06:04'), (71, 'Agency Detail View', 'Consultant', 'agency.show', 1, 1, 6, 2, NULL, '2019-03-29 03:08:02', '2019-03-29 03:08:02'), (73, 'Agency Update', 'Consultant', 'agency.update', 1, 1, 6, 2, NULL, '2019-03-29 03:08:49', '2019-03-29 03:08:49'), (74, 'Agency Delete', 'Consultant', 'agency.destroy', 1, 1, 6, 2, NULL, '2019-03-29 03:09:13', '2019-03-29 03:09:13'), (75, 'Agecny View Edit', 'Consultant', 'agency.edit', 1, 1, 6, 2, NULL, '2019-03-29 03:27:32', '2019-03-29 03:27:32'), (76, 'Skill List', 'Skill', 'skill.index', 1, 1, 7, 2, NULL, '2019-03-29 03:37:23', '2019-03-29 03:37:23'), (77, 'Skill Add View', 'Skill', 'skill.create', 1, 1, 7, 2, NULL, '2019-03-29 03:38:23', '2019-03-29 03:38:23'), (78, 'Skill Add', 'Skill', 'skill.store', 1, 1, 7, 2, NULL, '2019-03-29 03:38:46', '2019-03-29 03:38:46'), (79, 'Skill Detail View', 'Skill', 'skill.show', 1, 1, 7, 2, NULL, '2019-03-29 03:39:31', '2019-03-29 03:39:31'), (80, 'Skill Edit View', 'Skill', 'skill.edit', 1, 1, 7, 2, NULL, '2019-03-29 03:40:53', '2019-03-29 03:40:53'), (81, 'Skill Update', 'Skill', 'skill.update', 1, 1, 7, 2, NULL, '2019-03-29 03:41:25', '2019-03-29 03:41:25'), (82, 'Change Status of Skill', 'Skill', 'skill.activeStatus', 1, 1, 7, 2, NULL, '2019-03-29 03:41:59', '2019-03-29 03:41:59'), (83, 'Skill Delete', 'Skill', 'skill.destroy', 1, 1, 7, 2, NULL, '2019-03-29 03:42:22', '2019-03-29 03:42:22'), (84, 'Interview Schedule Add View', 'Interview', 'interview.scheduleInterview', 1, 1, 2, 2, NULL, '2019-03-29 18:53:09', '2019-03-29 18:53:09'), (85, 'Candidate Filteration', 'Candidate', 'candidate.filterData', 1, 1, 3, 2, NULL, '2019-03-29 19:28:46', '2019-03-29 19:28:46'), (86, 'Change Mass Status Interview Schedule', 'Interview', 'interview.massInterviewScheduleStatus', 1, 1, 2, 2, NULL, '2019-03-29 19:50:51', '2019-03-29 19:50:51'); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; -- Dumping structure for table ats.permission_role CREATE TABLE IF NOT EXISTS `permission_role` ( `role_id` int(11) NOT NULL, `permission_id` int(11) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1:InActive,2:Active', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `role_id` (`role_id`), KEY `permission_id` (`permission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.permission_role: ~95 rows (approximately) /*!40000 ALTER TABLE `permission_role` DISABLE KEYS */; INSERT INTO `permission_role` (`role_id`, `permission_id`, `status`, `created_at`, `updated_at`) VALUES (1, 26, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:07'), (1, 27, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:07'), (1, 28, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:07'), (1, 29, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 30, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 31, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 32, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 33, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 34, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 35, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 42, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 43, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 44, 1, '2019-03-29 02:52:21', '2019-03-29 19:51:08'), (1, 45, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 46, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 47, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 48, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 49, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 50, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 51, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 52, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 61, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 62, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 63, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 64, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 36, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 37, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 38, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 39, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 40, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 41, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 58, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 59, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 60, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 1, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:08'), (1, 2, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 3, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 4, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 5, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 6, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 7, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 8, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 9, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 10, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 11, 1, '2019-03-29 02:52:22', '2019-03-29 19:51:09'), (1, 12, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 13, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 14, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 15, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 16, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 17, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 18, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 19, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 21, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 22, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 23, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 24, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 25, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 53, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 54, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 55, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 56, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 57, 1, '2019-03-29 02:52:23', '2019-03-29 19:51:09'), (1, 65, 1, '2019-03-29 03:10:21', '2019-03-29 19:51:09'), (1, 66, 1, '2019-03-29 03:10:21', '2019-03-29 19:51:09'), (1, 67, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 68, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 69, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 70, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 71, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 73, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 74, 1, '2019-03-29 03:10:22', '2019-03-29 19:51:09'), (1, 75, 1, '2019-03-29 03:28:11', '2019-03-29 19:51:09'), (1, 76, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:09'), (1, 77, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:09'), (1, 78, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:09'), (1, 79, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:09'), (1, 80, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:09'), (1, 81, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:09'), (1, 82, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:10'), (1, 83, 1, '2019-03-29 03:44:58', '2019-03-29 19:51:10'), (2, 26, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 27, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 28, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 29, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 30, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 31, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 32, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 33, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 34, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (2, 35, 1, '2019-03-29 03:47:52', '2019-03-29 03:47:52'), (1, 84, 1, '2019-03-29 18:56:28', '2019-03-29 19:51:10'), (1, 20, 1, '2019-03-29 18:56:28', '2019-03-29 19:51:10'), (1, 85, 1, '2019-03-29 19:29:02', '2019-03-29 19:51:10'), (1, 86, 1, '2019-03-29 19:51:07', '2019-03-29 19:51:07'); /*!40000 ALTER TABLE `permission_role` ENABLE KEYS */; -- Dumping structure for table ats.requirements CREATE TABLE IF NOT EXISTS `requirements` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `job_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `no_of_position` int(11) NOT NULL, `requirement_end_date` date DEFAULT NULL, `job_description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `job_type` tinyint(4) NOT NULL COMMENT '1:fulltime, 2:parttime, 3:remote', `job_cat` tinyint(4) NOT NULL COMMENT '1: Employee, 2:Contractor', `experience_id` int(11) NOT NULL, `industry_id` int(11) NOT NULL, `department` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `job_budget` double(15,2) NOT NULL, `requirement_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:Inprocess, 2:Wait for approval, 3: On-hold, 4:filed, 5: Cancelled, 6: Declined, 7: Inactive', `requirement` longtext COLLATE utf8mb4_unicode_ci, `benifits` longtext COLLATE utf8mb4_unicode_ci, `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2:no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `experience_id` (`experience_id`), KEY `industry_id` (`industry_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.requirements: ~8 rows (approximately) /*!40000 ALTER TABLE `requirements` DISABLE KEYS */; INSERT INTO `requirements` (`id`, `user_id`, `job_title`, `no_of_position`, `requirement_end_date`, `job_description`, `job_type`, `job_cat`, `experience_id`, `industry_id`, `department`, `job_budget`, `requirement_status`, `requirement`, `benifits`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 'By clicking "Post Your Answer", you agree to our terms of service, privacy policy and cookie policy', 2, '2019-05-30', '<p><gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543715677335041532432">sdfajskbfkvbdajkbvkjasdbvjkb</gwmw> <gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543715677344474709285">sdnvladlvnla</gwmw></p>', 1, 1, 1, 1, 'PHP', 12000.00, 3, NULL, NULL, 2, NULL, '2019-03-26 00:00:00', '2019-04-04 09:53:38'), (2, 1, 'JAVA', 3, '2019-03-30', '', 3, 1, 1, 1, 'JAVA', 11000.00, 3, NULL, NULL, 2, NULL, '2019-03-26 00:00:00', '2019-04-08 06:02:12'), (3, 1, 'Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?', 2, '2019-03-31', 'Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?\r\nWhy would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?\r\nWhy would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?\r\nWhy would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?\r\nWhy would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?', 1, 2, 1, 1, 'UI', 12232.00, 3, 'Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?', 'Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?Why would the UK have to take part? What would happen if the UK just flatly refused to participate in the elections?', 2, NULL, '2019-03-27 00:00:00', '2019-04-08 06:02:12'), (4, 1, 'Form Wizard - Multi Step Form:', 3, '2019-04-30', '<p>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616301506308799789">:</gwmw>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616301504285837328">:</gwmw>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616301519905822508">:</gwmw>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616301513538503398">:</gwmw>Form Wizard - Multi Step Form: Form Wizard - Multi Step Form:</p>', 1, 1, 1, 1, 'Liferay', 12000.00, 3, '<p>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616300603677526105">:</gwmw>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616300605026382501">:</gwmw>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616300602382409435">:</gwmw>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616300607899272993">:</gwmw>Form Wizard - Multi Step Form:</p>', '<p>Form Wizard - Multi Step Form<gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543616298533078536979">:</gwmw>Form Wizard - Multi Step Form:</p>', 2, NULL, '2019-03-27 00:00:00', '2019-04-04 07:08:52'), (5, 6, 'Senior Backend Engineer - 4x Sunday Times Top 10!', 10, '2019-04-30', '&lt;p&gt;Providing maximum value to our clients by innovating the way we deliver high quality customers to them&lt;/p&gt;\r\n\r\n&lt;ul&gt;\r\n &lt;li&gt;Collaboration &amp;amp; Communication\r\n &lt;ul&gt;\r\n &lt;li&gt;Providing input with other specialists into technical design decisions&lt;/li&gt;\r\n &lt;li&gt;Communicating complex ideas and outcomes &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-3&quot; id=&quot;gwmw-15543609277730216155077&quot;&gt;to&lt;/gwmw&gt; peers, managers and partners&lt;/li&gt;\r\n &lt;li&gt;Documenting technical systems and processes around work that your team owns&lt;/li&gt;\r\n &lt;li&gt;Building consensus within the team for your and others&amp;rsquo; ideas&lt;/li&gt;\r\n &lt;li&gt;Actively asking for and providing regular feedback&lt;/li&gt;\r\n &lt;/ul&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;Impact &amp;amp; Influence\r\n &lt;ul&gt;\r\n &lt;li&gt;Reviewing other engineers&amp;rsquo; pull requests and helping them to improve the quality of our &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543609309892801045003&quot;&gt;codebase&lt;/gwmw&gt;&lt;/li&gt;\r\n &lt;li&gt;Working with other engineers to improve skills&lt;/li&gt;\r\n &lt;li&gt;&lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543609322141588176682&quot;&gt;Onboarding&lt;/gwmw&gt; new engineers and keeping &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-3&quot; id=&quot;gwmw-15543609322147349564086&quot;&gt;onboarding process&lt;/gwmw&gt; up to date&lt;/li&gt;\r\n &lt;li&gt;Potentially assisting with the hiring process&lt;/li&gt;\r\n &lt;/ul&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;Execution\r\n &lt;ul&gt;\r\n &lt;li&gt;Working within a cross functional engineering team, delivering technical solutions to identified business needs at a high standard&lt;/li&gt;\r\n &lt;li&gt;Owning pieces of work and delivering them to a high standard in alignment with our team&amp;rsquo;s product goals&lt;/li&gt;\r\n &lt;li&gt;Working through roadblocks through collaboration&lt;/li&gt;\r\n &lt;li&gt;Asking questions to ensure you understand the work well&lt;/li&gt;\r\n &lt;li&gt;Providing accurate estimates of work we plan&lt;/li&gt;\r\n &lt;li&gt;Working within and helping to improve our Lean &amp;amp; Agile processes, to deliver business value through your engineering effort&lt;/li&gt;\r\n &lt;/ul&gt;\r\n &lt;/li&gt;\r\n&lt;/ul&gt;', 1, 1, 3, 2, 'PHP', 300000.00, 1, '<ul>\r\n <li>You have experienced software development in a variety of contexts, languages and frameworks.</li>\r\n <li>You write clean, readable code following the project&rsquo;s coding style and accepted practices, paradigms &amp; patterns (e.g. SOLID)</li>\r\n <li>You write unit tests for new code</li>\r\n <li>You have experience of Refactoring &amp; Debugging techniques.</li>\r\n <li>You are confident working with relational SQL databases as well as NoSQL databases</li>\r\n <li>You have built well-defined API services and are confident in consuming them</li>\r\n</ul>', '<ul>\r\n <li>Familiarity with well-structured Object Oriented PHP</li>\r\n <li>Experience of modern frameworks and libraries such as <gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543609264977383793109">Laravel</gwmw> &amp; Symfony</li>\r\n <li>Good understanding of OOP and functional programming</li>\r\n <li>CI/CD experience using automated build tools and Docker</li>\r\n <li>Exposure to the AWS ecosystem, particularly S3, SQS, RDS &amp; Elasticache</li>\r\n <li>Comfortable making well considered use of appropriate packages and libraries</li>\r\n <li><gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543609298372020417296">Experience</gwmw> of running applications &amp; services at scale, and of implementing scalable solutions</li>\r\n <li>Knowledge of TDD and BDD approaches, and experience of how they help teams build brilliant solutions</li>\r\n <li>DDD software design knowledge and experience of building <gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543609315293721106704">serverless</gwmw> <gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543609315299453912098">microservices</gwmw> would be a bonus</li>\r\n</ul>', 2, NULL, '2019-04-04 06:58:47', '2019-04-04 06:58:47'), (6, 6, 'Backend Software Engineer - We\'re changing the game!', 5, '2019-05-31', '&lt;p&gt;At Football Radar, we &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543626129042233142298&quot;&gt;analyse&lt;/gwmw&gt; and predict football matches. As a &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543626149152396318612&quot;&gt;backend&lt;/gwmw&gt; &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-3&quot; id=&quot;gwmw-15543626149153691964780&quot;&gt;engineer you&lt;/gwmw&gt;&amp;rsquo;ll have the chance to help build and maintain all the software that makes that possible &amp;ndash; everything from modern web applications to statistical models, real time data platforms to cloud infrastructure. Our &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543626168992219360248&quot;&gt;backend&lt;/gwmw&gt; engineers are involved in everything the company does and deal with all kinds of different challenges. A lot of our code is in Scala, which we are using increasingly, but we still have lots of PHP code, and a few odds and ends in other languages. You don&amp;rsquo;t need to know Scala for this role, however: we&amp;rsquo;ll help you learn it if you don&amp;rsquo;t know it, and many of our engineers had no real Scala experience before they started. We are just looking for great programmers who are passionate about their work. If you like a challenge, and want to work with really smart people, we would like to hear from you.&lt;/p&gt;', 1, 1, 4, 2, 'Backend', 300000.00, 1, '<ul>\r\n <li>Above average programming ability</li>\r\n <li>Excellent written and spoken English</li>\r\n <li>Experience of working with web applications</li>\r\n <li>Available to work in the UK</li>\r\n <li>Senior and junior applicants welcome</li>\r\n</ul>\r\n\r\n<p><strong>Bonus skills:</strong></p>\r\n\r\n<ul>\r\n <li>Computer science degree, or equivalent knowledge</li>\r\n <li>Distributed systems experience</li>\r\n <li>Full stack development experience</li>\r\n <li>Functional programming knowledge</li>\r\n <li>Passion for football or statistical models</li>\r\n</ul>', '<ul>\r\n <li>Competitive salary that is reviewed regularly, with an annual bonus option</li>\r\n <li>33 days holiday (includes bank holidays)</li>\r\n <li>Competitive contribution match pension</li>\r\n <li>Flexible hours and working conditions</li>\r\n <li>Choice of your own development kit</li>\r\n <li>Paid learning and development opportunities</li>\r\n <li>Catered breakfast, lunch and dinners every day</li>\r\n <li>Fully <gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543626789392546017568">subsidised</gwmw> private medical insurance + on-site health checks</li>\r\n <li><gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543626795974249170763">Subsidised</gwmw> luxury gym membership (10 minutes from the office)</li>\r\n <li>Garden for the sunny days</li>\r\n <li>Ping <gwmw class="ginger-module-highlighter-mistake-anim ginger-module-highlighter-mistake-type-1" id="gwmw-15543626806273620834021">pong</gwmw>/ <gwmw class="ginger-module-highlighter-mistake-anim ginger-module-highlighter-mistake-type-1" id="gwmw-15543626806271947155836">fussball</gwmw></li>\r\n <li>Ongoing intellectual challenges</li>\r\n</ul>', 2, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (7, 6, 'Systems Engineer - We\'re changing the game!', 4, '2019-05-31', '&lt;p&gt;We&amp;#39;re looking for an experienced Systems Engineer / Site Reliability Engineer to help us deliver high quality software and shape our technical roadmap over the coming years.&lt;/p&gt;\r\n\r\n&lt;p&gt;The Development department consists of 20 developers across 4 sub-teams: Analysis, Modelling, Systems and Trading. As part of the Systems team, you&amp;#39;ll get the opportunity to enhance our DevOps culture, taking our collaboration and automation to the next level. We&amp;rsquo;re on a mission to improve stability and &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543628249074837506420&quot;&gt;standardisation&lt;/gwmw&gt;, and shorten feedback loops in order to make our department more efficient in delivering business value. We&amp;rsquo;re also looking for someone to help us incorporate security considerations into our development process.&lt;/p&gt;\r\n\r\n&lt;p&gt;Our production systems are deployed to cloud based infrastructure in AWS using Docker, Marathon and Mesos. Our &lt;gwmw class=&quot;ginger-module-highlighter-mistake-type-1&quot; id=&quot;gwmw-15543628277536363672612&quot;&gt;backend&lt;/gwmw&gt; systems are predominantly written in Scala and PHP, connecting to MariaDB, Postgres and Redis databases. We use Jenkins for continuous integration and Ansible for configuration management.&lt;/p&gt;', 1, 1, 3, 2, 'Backend Development', 300000.00, 1, '<ul>\r\n <li>Implementing best practices for automation, monitoring, logging, data management and deployment</li>\r\n <li>Support and monitor our production systems to achieve our uptime and reliability goals</li>\r\n <li>Enabling the Development team to experiment quickly and deliver high quality software</li>\r\n <li>Willingness to learn Windows and Network administration</li>\r\n <li>At least 5 years experience as a Software Engineer, Systems Engineer or Systems Administrator</li>\r\n <li>Knowledge of Linux/Unix administration</li>\r\n <li>Software container knowledge, ideally Docker</li>\r\n <li>Experience working with Cloud, ideally AWS, and dedicated server environments</li>\r\n <li>Knowledge of at least one programming language</li>\r\n <li>Container orchestration platform experience, <gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15543628486658248557227">eg</gwmw>. Marathon, Mesos, DC/OS</li>\r\n <li>History of integrating Security into <gwmw class="ginger-module-highlighter-mistake-type-3" id="gwmw-15543628499182193511049">development cycle</gwmw></li>\r\n</ul>', '<ul>\r\n <li>Competitive salary that is reviewed regularly, with an annual bonus option</li>\r\n <li>33 days holiday (includes bank holidays)</li>\r\n <li>Competitive contribution match pension</li>\r\n <li>Flexible hours and working conditions</li>\r\n <li>Choice of your own development kit</li>\r\n <li>Paid learning and development opportunities</li>\r\n <li>Catered breakfast, lunch and dinners every day</li>\r\n <li>Fully subsidised private medical insurance + on-site health checks</li>\r\n <li>Subsidised luxury gym membership (10 minutes from the office)</li>\r\n <li>Garden for the sunny days</li>\r\n <li>Ping pong/ fussball</li>\r\n <li>Ongoing intellectual challenges</li>\r\n</ul>', 2, NULL, '2019-04-04 07:27:41', '2019-04-04 07:27:41'), (8, 6, 'New test job added by us', 2, '2019-04-30', '&lt;p&gt;Job Description&lt;/p&gt;', 1, 1, 3, 3, 'PHP', 300000.00, 1, '<p>Requirement</p>', '<p><gwmw class="ginger-module-highlighter-mistake-type-1" id="gwmw-15546997116389476973506">Benifits</gwmw></p>', 2, NULL, '2019-04-08 05:02:07', '2019-04-08 05:02:07'); /*!40000 ALTER TABLE `requirements` ENABLE KEYS */; -- Dumping structure for table ats.requirement_documents CREATE TABLE IF NOT EXISTS `requirement_documents` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `requirement_id` int(11) NOT NULL, `document_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `document_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2: Inactive', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `requirement_id` (`requirement_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.requirement_documents: ~0 rows (approximately) /*!40000 ALTER TABLE `requirement_documents` DISABLE KEYS */; /*!40000 ALTER TABLE `requirement_documents` ENABLE KEYS */; -- Dumping structure for table ats.requirement_histories CREATE TABLE IF NOT EXISTS `requirement_histories` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `requirement_id` int(11) NOT NULL, `date_extends` date NOT NULL, `user_id` int(11) NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `requirement_id` (`requirement_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.requirement_histories: ~2 rows (approximately) /*!40000 ALTER TABLE `requirement_histories` DISABLE KEYS */; INSERT INTO `requirement_histories` (`id`, `requirement_id`, `date_extends`, `user_id`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 4, '2019-04-30', 1, NULL, '2019-04-04 07:08:52', '2019-04-04 07:08:52'), (2, 1, '2019-05-31', 1, NULL, '2019-04-04 08:31:42', '2019-04-04 08:31:42'), (3, 1, '2019-05-30', 1, NULL, '2019-04-04 09:53:38', '2019-04-04 09:53:38'); /*!40000 ALTER TABLE `requirement_histories` ENABLE KEYS */; -- Dumping structure for table ats.requirement_locations CREATE TABLE IF NOT EXISTS `requirement_locations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `requirement_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2: Inactive', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `requirement_id` (`requirement_id`), KEY `location_id` (`location_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.requirement_locations: ~7 rows (approximately) /*!40000 ALTER TABLE `requirement_locations` DISABLE KEYS */; INSERT INTO `requirement_locations` (`id`, `requirement_id`, `location_id`, `status`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 1, 2, NULL, NULL, '2019-04-04 09:53:38'), (2, 2, 3, 2, NULL, NULL, '2019-04-08 06:02:12'), (3, 3, 2, 2, NULL, NULL, '2019-04-08 06:02:12'), (4, 4, 1, 2, NULL, NULL, '2019-04-04 07:08:52'), (5, 5, 1, 1, NULL, '2019-04-04 06:58:47', '2019-04-04 06:58:47'), (6, 6, 2, 1, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (7, 7, 2, 1, NULL, '2019-04-04 07:27:41', '2019-04-04 07:27:41'), (8, 8, 2, 1, NULL, '2019-04-08 05:02:07', '2019-04-08 05:02:07'); /*!40000 ALTER TABLE `requirement_locations` ENABLE KEYS */; -- Dumping structure for table ats.requirement_recruiters CREATE TABLE IF NOT EXISTS `requirement_recruiters` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `requirement_id` int(11) NOT NULL, `agency_id` int(11) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2: Inactive', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `requirement_id` (`requirement_id`), KEY `agency_id` (`agency_id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.requirement_recruiters: ~15 rows (approximately) /*!40000 ALTER TABLE `requirement_recruiters` DISABLE KEYS */; INSERT INTO `requirement_recruiters` (`id`, `requirement_id`, `agency_id`, `status`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 1, 1, NULL, '2019-03-26 00:00:00', '2019-04-04 09:53:38'), (2, 2, 1, 1, NULL, '2019-03-26 00:00:00', '2019-03-26 00:00:00'), (3, 3, 1, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (4, 4, 1, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (5, 2, 2, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (6, 3, 2, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (7, 1, 3, 1, NULL, '2019-03-27 00:00:00', '2019-04-04 09:53:38'), (8, 3, 3, 1, NULL, '2019-03-27 00:00:00', '2019-03-27 00:00:00'), (9, 5, 2, 1, NULL, '2019-04-04 06:58:47', '2019-04-04 06:58:47'), (10, 5, 4, 1, NULL, '2019-04-04 06:58:48', '2019-04-04 06:58:48'), (11, 6, 4, 1, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (12, 7, 1, 1, NULL, '2019-04-04 07:27:42', '2019-04-04 07:27:42'), (13, 7, 2, 1, NULL, '2019-04-04 07:27:42', '2019-04-04 07:27:42'), (14, 7, 4, 1, NULL, '2019-04-04 07:27:42', '2019-04-04 07:27:42'), (15, 8, 8, 1, NULL, '2019-04-08 05:02:07', '2019-04-08 05:02:07'); /*!40000 ALTER TABLE `requirement_recruiters` ENABLE KEYS */; -- Dumping structure for table ats.requirement_skills CREATE TABLE IF NOT EXISTS `requirement_skills` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `requirement_id` int(11) NOT NULL, `skill_id` int(11) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1: Active, 2: Inactive', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `requirement_id` (`requirement_id`), KEY `skill_id` (`skill_id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.requirement_skills: ~20 rows (approximately) /*!40000 ALTER TABLE `requirement_skills` DISABLE KEYS */; INSERT INTO `requirement_skills` (`id`, `requirement_id`, `skill_id`, `status`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 1, 2, 1, NULL, NULL, '2019-04-04 09:53:38'), (2, 1, 3, 1, NULL, NULL, '2019-04-04 09:53:38'), (3, 2, 3, 1, NULL, NULL, NULL), (4, 3, 1, 1, NULL, NULL, NULL), (5, 3, 4, 1, NULL, NULL, NULL), (6, 4, 2, 1, NULL, NULL, '2019-04-04 07:08:52'), (7, 5, 1, 1, NULL, '2019-04-04 06:58:47', '2019-04-04 06:58:47'), (8, 5, 5, 1, NULL, '2019-04-04 06:58:47', '2019-04-04 06:58:47'), (9, 5, 6, 1, NULL, '2019-04-04 06:58:47', '2019-04-04 06:58:47'), (10, 6, 1, 1, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (11, 6, 3, 1, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (12, 6, 4, 1, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (13, 6, 6, 1, NULL, '2019-04-04 07:24:41', '2019-04-04 07:24:41'), (14, 7, 1, 1, NULL, '2019-04-04 07:27:41', '2019-04-04 07:27:41'), (15, 7, 3, 1, NULL, '2019-04-04 07:27:41', '2019-04-04 07:27:41'), (16, 7, 4, 1, NULL, '2019-04-04 07:27:41', '2019-04-04 07:27:41'), (17, 7, 6, 1, NULL, '2019-04-04 07:27:41', '2019-04-04 07:27:41'), (18, 8, 1, 1, NULL, '2019-04-08 05:02:07', '2019-04-08 05:02:07'), (19, 8, 3, 1, NULL, '2019-04-08 05:02:07', '2019-04-08 05:02:07'), (20, 8, 6, 1, NULL, '2019-04-08 05:02:07', '2019-04-08 05:02:07'); /*!40000 ALTER TABLE `requirement_skills` ENABLE KEYS */; -- Dumping structure for table ats.roles CREATE TABLE IF NOT EXISTS `roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `alias` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` tinyint(4) NOT NULL COMMENT '1:web, 2: Api', `status` tinyint(4) NOT NULL COMMENT '1: active, 2: inactive', `isdelete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1: yes, 2: no', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.roles: ~5 rows (approximately) /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` (`id`, `name`, `alias`, `guard_name`, `status`, `isdelete`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'Admin', 'admin', 1, 1, 2, NULL, '2019-03-27 13:50:09', '2019-03-27 13:50:09'), (2, 'HR', 'hr', 1, 1, 2, NULL, '2019-03-27 13:50:31', '2019-03-27 13:50:31'), (3, 'CEO', 'ceo', 1, 1, 2, NULL, '2019-03-27 13:50:46', '2019-03-27 13:50:46'), (4, 'Consultant', 'consultant', 1, 1, 2, NULL, '2019-03-27 13:51:16', '2019-03-27 13:51:16'), (5, 'Lead Consultant', 'lead consultant', 1, 1, 2, NULL, '2019-03-27 13:51:54', '2019-03-27 13:51:54'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; -- Dumping structure for table ats.role_user CREATE TABLE IF NOT EXISTS `role_user` ( `role_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1:InActive,2:Active', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `role_id` (`role_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.role_user: ~5 rows (approximately) /*!40000 ALTER TABLE `role_user` DISABLE KEYS */; INSERT INTO `role_user` (`role_id`, `user_id`, `status`, `created_at`, `updated_at`) VALUES (4, 9, 2, '2019-03-27 13:56:18', '2019-03-27 13:56:18'), (4, 10, 2, '2019-03-27 13:59:29', '2019-03-27 13:59:29'), (1, 7, 2, NULL, NULL), (1, 6, 2, NULL, NULL), (2, 11, 2, '2019-03-29 03:48:49', '2019-03-29 03:48:49'); /*!40000 ALTER TABLE `role_user` ENABLE KEYS */; -- Dumping structure for table ats.skills CREATE TABLE IF NOT EXISTS `skills` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `alias` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL COMMENT '1.active,2.inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.skills: ~5 rows (approximately) /*!40000 ALTER TABLE `skills` DISABLE KEYS */; INSERT INTO `skills` (`id`, `name`, `alias`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'PHP', 'PHP', 1, '2019-03-26 00:00:00', '2019-03-26 00:00:00', NULL), (2, 'JAVA', 'JAVA', 1, '2019-03-26 11:16:53', '2019-03-26 11:21:33', NULL), (3, 'Angular', 'Angular', 1, '2019-03-27 13:38:03', '2019-03-27 13:38:03', NULL), (4, 'NodeJs', 'NodeJs', 1, '2019-03-27 13:39:19', '2019-03-27 13:39:19', NULL), (5, 'UI', 'UI', 1, '2019-03-27 13:40:13', '2019-03-27 13:40:13', NULL), (6, 'MongoDB', 'mongodb', 1, '2019-04-01 06:36:38', '2019-04-01 06:36:38', NULL); /*!40000 ALTER TABLE `skills` ENABLE KEYS */; -- Dumping structure for table ats.users CREATE TABLE IF NOT EXISTS `users` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_type` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.agency,2.employee', `email` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `profile` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1.active,2.inactive,3.hold,4.inprocess', `is_delete` tinyint(4) NOT NULL DEFAULT '2' COMMENT '1.yes,2.no', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table ats.users: ~13 rows (approximately) /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` (`id`, `name`, `user_type`, `email`, `password`, `profile`, `status`, `is_delete`, `created_at`, `updated_at`, `remember_token`, `deleted_at`) VALUES (1, 'vishal', 2, '<EMAIL>', <PASSWORD>', NULL, 1, 2, '2019-03-26 10:43:41', '2019-03-26 10:43:41', 'gZX3khRmzQR4O9gICF3ekWn3H0wiBODFHKjznCTHsNLLUjT9C5GiNvho1xUX', NULL), (2, '<NAME>', 2, '<EMAIL>', <PASSWORD>$uOXqj480iIE8y6NksK5Ype5NV35TWFUCHXsNH..EZfm.fjXwtW3uC', 'phpE1F4.tmp.jpg', 1, 2, '2019-03-26 10:46:16', '2019-03-27 10:23:50', NULL, NULL), (3, '<NAME>', 2, '<EMAIL>', '<PASSWORD>', 'C:\\xampp\\tmp\\phpF5C6.tmp', 1, 2, '2019-03-26 10:49:26', '2019-03-26 10:49:26', NULL, NULL), (4, '<NAME>', 2, '<EMAIL>', 'D8vg0Oib', 'C:\\xampp\\tmp\\php7A83.tmp', 1, 2, '2019-03-26 10:51:05', '2019-03-26 10:51:05', NULL, NULL), (5, 'abc bca', 2, '<EMAIL>', 'dsd7TWgu', 'C:\\xampp\\tmp\\php2867.tmp', 1, 2, '2019-03-26 11:02:45', '2019-03-26 11:02:45', NULL, NULL), (6, '<NAME>', 2, '<EMAIL>', <PASSWORD>', 'php5AC6.tmp.jpg', 1, 2, '2019-03-26 11:12:48', '2019-03-26 11:12:48', 'd4t5w5RB5XJrutyji1L2XJatFOuV0on10S9f9Xp0HUwVQoXhOvSOcGONURxQ', NULL), (7, '<NAME>', 2, '<EMAIL>', <PASSWORD>', 'php6A2F.tmp.jpg', 1, 2, '2019-03-27 05:17:29', '2019-03-27 05:17:29', NULL, NULL), (8, '<NAME>', 2, '<EMAIL>', '<PASSWORD>', 'C:\\xampp\\tmp\\phpE433.tmp', 1, 2, '2019-03-27 13:45:54', '2019-03-27 13:45:54', NULL, NULL), (9, '<NAME>', 2, '<EMAIL>', <PASSWORD>', 'php653F.tmp.jpg', 1, 2, '2019-03-27 13:56:17', '2019-03-27 13:56:17', NULL, NULL), (10, '<NAME>', 2, '<EMAIL>', <PASSWORD>$T.7yFL<PASSWORD>', 'php53BD.tmp.jpg', 1, 2, '2019-03-27 13:59:29', '2019-03-27 13:59:29', NULL, NULL), (11, 'Test testname', 2, '<EMAIL>', <PASSWORD>', 'phpFA51.tmp.png', 1, 2, '2019-03-29 03:48:49', '2019-03-29 03:48:49', '4UXyMR3L9ZSdLK1PxyNeMclAyfHHAnDSFucxerCMnFUMBzwDboYKNRkzKIG8', NULL), (12, '<NAME>', 2, '<EMAIL>', 'uIgRwuqN', NULL, 1, 2, '2019-04-04 08:27:14', '2019-04-04 08:27:14', NULL, NULL), (13, '<NAME>', 2, '<EMAIL>', 'AYsPZMnt', NULL, 1, 2, '2019-04-04 08:54:34', '2019-04-04 08:54:34', NULL, NULL), (14, '<NAME>', 2, '<EMAIL>', 'bYJJk3w7', 'C:\\Users\\nikunj.kansara\\AppData\\Local\\Temp\\php7618.tmp', 1, 2, '2019-04-08 04:02:20', '2019-04-08 04:02:20', NULL, NULL), (15, '<NAME>', 2, '<EMAIL>', 'GxPiFq9I', NULL, 1, 2, '2019-04-08 04:58:49', '2019-04-08 04:58:49', NULL, NULL); /*!40000 ALTER TABLE `users` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
<gh_stars>0 DROP PROCEDURE IF EXISTS getResult; DELIMITER // -- ******************************************************************************************** -- getResult 結果一覧取得 -- -- 【処理概要】 -- 結果一覧取得 -- -- -- 【呼び出し元画面】 -- 順位表 -- -- 【引数】 -- -- -- 【戻り値】 -- exit_cd : exit_cd -- 正常:0 -- 異常:99 -- -------------------------------------------------------------------------------------------- -- 【更新履歴】 -- 2019.8.15 大杉 新規作成 -- ******************************************************************************************** CREATE PROCEDURE `getResult`( OUT `exit_cd` INTEGER ) COMMENT '結果一覧取得処理' BEGIN -- 異常終了ハンドラ DECLARE EXIT HANDLER FOR SQLEXCEPTION BEGIN GET DIAGNOSTICS CONDITION 1 @sqlstate = RETURNED_SQLSTATE, @errno = MYSQL_ERRNO, @text = MESSAGE_TEXT; SELECT @sqlstate, @errno, @text; ROLLBACK; SET exit_cd = 99; END; SET @query = CONCAT(" SELECT mu.USER_NUM ,mu.USER_NAME ,sc.table_num ,sc.table_sub_num ,sc.rank_score ,sc.rank FROM m_user mu LEFT OUTER JOIN score sc on mu.USER_NUM = sc.USER_NUM where sc.rank is not null order by sc.table_num,sc.table_sub_num,sc.rank asc ; ") ; SET @query_text = @query; -- 実行 PREPARE main_query FROM @query_text; EXECUTE main_query; DEALLOCATE PREPARE main_query; SET exit_cd = 0; END // DELIMITER ;
CREATE TABLE IF NOT EXISTS keypairs( secret text NOT NULL, key text NOT NULL, user_id uuid NOT NULL ); CREATE UNIQUE INDEX key ON keypairs(key text_ops);
<gh_stars>1-10 SELECT FirstName, LastName, Salary FROM Employees WHERE Salary <= ((SELECT MIN(Salary) FROM Employees) * 1.1)
<filename>SqlDevOps/SourceOfTruth/dbo/Tables/States.sql CREATE TABLE [dbo].[States] ( [Id] INT NOT NULL, [Name] NVARCHAR (50) NOT NULL, [Abbr] NVARCHAR (2) NOT NULL, PRIMARY KEY CLUSTERED ([Id] ASC) );
<filename>src/CGH.QuikRide.Database/dbo/Tables/Vehicle.sql CREATE TABLE [dbo].[Vehicle] ( [VehicleId] INT IDENTITY (1, 1) NOT NULL, [VehicleTypeId] INT NOT NULL, [VehicleStatusTypeId] INT NOT NULL, [Latitude] FLOAT (53) NULL, [Longitude] FLOAT (53) NULL, [VIN] CHAR (17) NOT NULL, [LicensePlateNumber] VARCHAR (10) NULL, [StartDateInService] DATE NOT NULL, [EndDateInService] DATE NULL, [DataVersion] INT CONSTRAINT [DF_Vehicle_DataVersion] DEFAULT ((1)) NOT NULL, [CreatedUtcDate] DATETIME2 (7) CONSTRAINT [DF_Vehicle_CreatedUtcDate] DEFAULT (getutcdate()) NOT NULL, [CreatedBy] NVARCHAR (200) NOT NULL, [ModifiedUtcDate] DATETIME2 (7) CONSTRAINT [DF_Vehicle_ModifiedUtcDate] DEFAULT (getutcdate()) NOT NULL, [ModifiedBy] NVARCHAR (200) NOT NULL, [IsDeleted] BIT CONSTRAINT [DF_Vehicle_IsDeleted] DEFAULT ((0)) NOT NULL, CONSTRAINT [PK_Vehicle] PRIMARY KEY CLUSTERED ([VehicleId] ASC), CONSTRAINT [FK_Vehicle_VehicleStatusType] FOREIGN KEY ([VehicleStatusTypeId]) REFERENCES [dbo].[VehicleStatusType] ([VehicleStatusTypeId]), CONSTRAINT [FK_Vehicle_VehicleType] FOREIGN KEY ([VehicleTypeId]) REFERENCES [dbo].[VehicleType] ([VehicleTypeId]) ); GO CREATE TRIGGER [dbo].[trg_Vehicle_Update] ON [dbo].[Vehicle] FOR UPDATE AS SET NOCOUNT ON UPDATE a SET a.DataVersion = b.DataVersion + 1 FROM Vehicle a INNER JOIN inserted b ON a.VehicleId = b.VehicleId
<reponame>mobvox/i18n<filename>Config/Sql/i18n.sql #==========================================================================# # # # Copyright 2007-2008 Cake Development Corporation # # 1785 E. Sahara Avenue, Suite 490-423 # # Las Vegas, Nevada 89104 # # # # Use of this file permitted only with written permission from the # # copyright holder listed above # #==========================================================================# DROP TABLE IF EXISTS i18n; CREATE TABLE i18n ( id CHAR(36) NOT NULL, locale VARCHAR(3) NOT NULL, model VARCHAR(255) NOT NULL, foreign_key CHAR(36) NOT NULL, field VARCHAR(64) NOT NULL, content MEDIUMTEXT NULL, PRIMARY KEY(id), UNIQUE INDEX I18N_LOCALE_FIELD(locale, model(230), foreign_key, field), INDEX I18N_LOCALE_ROW(locale, model(230), foreign_key), INDEX I18N_LOCALE_MODEL(locale, model(230)), INDEX I18N_FIELD(model(230), foreign_key, field), INDEX I18N_ROW(model(230), foreign_key) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
<reponame>marodev/iotedge CREATE PROCEDURE [dbo].[UpsertVstsBug] @Title varchar(200), @AreaPath varchar(200), @Priority varchar(20), @InProgress bit, @BugCount int AS DECLARE @now datetime2; SET @now = SYSDATETIME(); IF EXISTS (SELECT 1 FROM dbo.VstsBug WHERE Title = @Title) BEGIN UPDATE dbo.VstsBug SET Title = @Title, AreaPath = @AreaPath, Priority = @Priority, InProgress = @InProgress, BugCount = @BugCount, UpdatedAt = @now WHERE Title = @Title END ELSE BEGIN INSERT INTO dbo.VstsBug(Title, AreaPath, Priority, InProgress, BugCount, InsertedAt, UpdatedAt) VALUES (@Title, @AreaPath, @Priority, @InProgress, @BugCount, @now, @now) END GO
CREATE OR REPLACE FUNCTION ti.getminpubidbypubidtype(_pubtypeid integer) RETURNS TABLE(minpubid integer) LANGUAGE sql AS $function$ SELECT min(pub.publicationid) as minpubid FROM ndb.publications as pub GROUP BY pub.pubtypeid HAVING pub.pubtypeid = _pubtypeid $function$
<filename>sql/votes.sql<gh_stars>10-100 -- phpMyAdmin SQL Dump -- version 4.0.4.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Mar 19, 2017 at 07:03 PM -- Server version: 5.6.13 -- PHP Version: 5.4.17 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: `opentorrentsite` -- -- -------------------------------------------------------- -- -- Table structure for table `votes` -- CREATE TABLE IF NOT EXISTS `votes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `torrentid` int(11) NOT NULL, `userid` int(11) NOT NULL, `hasvoted` tinyint(1) NOT NULL COMMENT 'votes increment of upcrement', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=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 */;
-- MySQL dump 10.13 Distrib 8.0.21, for Win64 (x86_64) -- -- Host: 192.168.3.116 Database: matrix_admin -- ------------------------------------------------------ -- Server version 8.0.22 /*!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 `t_role` -- DROP TABLE IF EXISTS `t_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `t_role` ( `id` int NOT NULL AUTO_INCREMENT, `code` varchar(45) NOT NULL, `name` varchar(45) NOT NULL, `desc` varchar(45) DEFAULT NULL, `created_at` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6), `updated_at` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6), `created_by` varchar(45) NOT NULL, `updated_by` varchar(45) NOT NULL, `is_del` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `type1` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `t_role` -- LOCK TABLES `t_role` WRITE; /*!40000 ALTER TABLE `t_role` DISABLE KEYS */; INSERT INTO `t_role` VALUES (4,'matrix','Matrix','Matrix Project Admin','2021-09-20 07:38:38.506237','2021-09-20 14:29:43.924000','leo','leo',0),(7,'spotlightx','SpotlightX','SpotlightX Project Admin','2021-09-20 14:20:56.415734','2021-09-20 14:29:49.090000','leo','leo',0),(9,'079096','vh001','fsdf','2021-09-27 10:12:55.513084','2021-09-27 10:12:55.513084','matrix','matrix',0),(11,'test1','Test1','test1','2021-10-03 14:08:01.946284','2021-10-03 14:08:01.946284','spotlight','spotlight',0); /*!40000 ALTER TABLE `t_role` 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 2021-10-09 23:21:10
<reponame>MatthiasWunsch/python-geospatial-analysis-cookbook SELECT ST_AsGeoJSON(ST_Transform(ST_Buffer(wkb_geometry, 100,'quad_segs=8'),4326)) AS geom, name FROM geodata.schools; SELECT Find_SRID('geodata', 'highest_mountains', 'wkb_geometry'); SELECT ST_SetSRID(wkb_geometry, 4326) FROM geodata.highest_mountains; SELECT UpdateGeometrySRID('geodata.highest_mountains','wkb_geometry',4326); SELECT UpdateGeometrySRID('geodata', 'highest_mountains', 'wkb_geometry', 4326); SELECT UpdateGeometrySRID('geodata', 'bike_shops_3785', 'wkb_geometry', 3857);
-- file:drop_operator.sql ln:28 expect:true DROP OPERATOR ===(bigint, bigint)
-- file:json.sql ln:713 expect:true select * from json_to_record('{"ia2": [[[1], [2], [3]]]}') as x(ia2 int4[][])
<gh_stars>10-100 -- file:jsonb.sql ln:279 expect:true SELECT jsonb '{"a":null, "b":"qq"}' ?| ARRAY['b','a']
UPDATE releases SET xxxinfo_id = 0 WHERE xxxinfo_id = -2;
# maxmin.sql # Queries that use MAX() or MIN() # Largest message size SELECT MAX(size) FROM mail; # Information about the largest message SELECT @max := MAX(size) FROM mail; SELECT * FROM mail WHERE size = @max; # Alternatively... SELECT * FROM mail ORDER BY size DESC LIMIT 1; # Largest message per sender SELECT srcuser, MAX(size) FROM mail GROUP BY srcuser; # Largest message between each sender/recipient pair SELECT srcuser, dstuser, MAX(size) FROM mail GROUP BY srcuser, dstuser; # Largest message per day (you can group by expression result) SELECT DATE_FORMAT(t,'%Y-%m-%d') AS day, MAX(size) FROM mail GROUP BY day;
<filename>bitrix/modules/dav/install/db/mysql/uninstall.sql DROP TABLE if exists b_dav_locks; DROP TABLE if exists b_dav_connections;
<reponame>PriyabrataSamantaray/SAPConnectivity<gh_stars>0 set nocount on IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'dbo.Employees') AND type in (N'U')) DROP TABLE dbo.Employees GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE dbo.Employees( Badge nvarchar(15) NOT NULL, DEPARTMENT nvarchar(10) NULL, FIRSTNAME nvarchar(20) NULL, LASTNAME nvarchar(20) NULL, MI nvarchar(10) NULL, Shift nvarchar(12) NULL, Person_Type nvarchar(30) NULL, EE_Group nvarchar(20) NULL, Sch_Hours smallint NULL, FTEs smallint NULL, Title nvarchar(40) NULL, Hire_Date datetime NULL, EMAIL nvarchar(30) NULL, Standard_ID nvarchar(20) NULL, Supv_Badge nvarchar(15) NULL, Supv_Name nvarchar(40) NULL, Supv_EMAIL nvarchar(30) NULL, Functional_Area nvarchar(30) NULL, Ext int NULL, WorkPhone nvarchar(20) NULL, active bit NOT NULL, termWeek nvarchar(8) NULL, varian_badge nvarchar(15) NULL, nickName nvarchar(60) NULL, payRate_type nvarchar(1) NULL, jobFamily1 nvarchar(75) NULL, jobFamily2 nvarchar(75) NULL, jobFamily3 nvarchar(75) NULL, contWorkerType nvarchar(50) NULL, cwJobCode nvarchar(6) NULL CONSTRAINT PK_Employees PRIMARY KEY CLUSTERED ( Badge ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ) GO
<gh_stars>0 -- 지금은 1234인데, 나중에 서버 세팅할때는 비번 어렵게 하기 -- alter user 'root'@'localhost' identified by ‘songhee32@95’; :초기 비밀번호 변경 create database theday; show databases; use theday; -- 공통코드 DROP TABLE COMM_CODE; -- 공통코드 CREATE TABLE COMM_CODE ( COMM_CD_SEQ_NO INT NOT NULL AUTO_INCREMENT, -- 공통코드일련번호 UPR_CD VARCHAR(6) NOT NULL, -- 상위코드 COMM_CD_DEPTS INT NOT NULL, -- 공통코드댑스 COMM_CD_SORT INT NOT NULL, -- 공통코드정렬 COMM_CD VARCHAR(6) NOT NULL, -- 공통코드 COMM_CD_NM VARCHAR(100) NOT NULL, -- 공통코드명 COMM_CD_NM_2 VARCHAR(100) NULL, -- 공통코드명2 USE_YN CHAR(1) NOT NULL DEFAULT 'Y', -- 사용여부 REGR VARCHAR(20) NOT NULL, -- 등록자 REG_DTIME DATETIME NOT NULL, -- 등록일시 MODR VARCHAR(20) NOT NULL, -- 수정자 MOD_DTIME DATETIME NOT NULL, -- 수정일시 PRIMARY KEY (COMM_CD_SEQ_NO) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 회원정보 DROP TABLE USER; -- 회원정보 CREATE TABLE USER ( USR_INFO_SEQ_NO INTEGER NOT NULL AUTO_INCREMENT, -- 사용자정보일련번호 USR_PASSWD VARCHAR(500) NOT NULL, -- 비밀번호 USR_EMAIL VARCHAR(40) NOT NULL, -- 아메일 USE_YN CHAR(1) NOT NULL DEFAULT 'Y', -- 사용여부 MOD_DTIME DATE NOT NULL, -- 수정일시 REG_DTIME DATE NOT NULL, -- 등록일시 PRIMARY KEY (USR_INFO_SEQ_NO) ); -- 시험정보 DROP TABLE TEST; -- 시험정보 CREATE TABLE TEST ( TEST_INFO_SEQ_NO INTEGER NOT NULL AUTO_INCREMENT, -- 시험일련번호 USR_INFO_SEQ_NO INTEGER NOT NULL, -- 사용자정보일련번호 TEST_NM VARCHAR(100) NOT NULL, -- 시험명 R_YN CHAR(1) NOT NULL, -- 접수기간유무 RSTART_DTIME DATE NULL, -- 접수시작일 REND_DTIME DATE NULL, -- 접수종료일 TPERIOD_YN CHAR(1) NOT NULL, -- 시험기간여부 TSTART_DTIME DATE NOT NULL, -- 시험(시작)일 TEND_DTIME DATE NULL, -- 시험종료일 RESLT_YN CHAR(1) NOT NULL, -- 결과발표유무 RESULT_DTIME DATE NULL, -- 결과발표일 RSTART_ALRM_YN CHAR(1) NULL, -- 접수시작일알람여부 REND_ALRM_YN CHAR(1) NULL, -- 접수종료일알람여부 TSTART_ALRM_YN CHAR(1) NOT NULL, -- 시험(시작)일알람여부 TEND_ALRM_YN CHAR(1) NULL, -- 시험종료일알람여부 RESULT_ALRM_YN CHAR(1) NULL, -- 결과발표일알람여부 MEMO VARCHAR(1000) NOT NULL, -- 메모 USE_YN CHAR(1) NOT NULL DEFAULT 'Y', -- 사용여부 MOD_DTIME DATE NOT NULL, -- 수정일시 REG_DTIME DATE NOT NULL, -- 등록일시 PRIMARY KEY (TEST_INFO_SEQ_NO) ); -- 알람정보 DROP TABLE ALARM; -- 알람정보 CREATE TABLE ALARM ( ALR_INFO_SEQ_NO INTEGER NOT NULL AUTO_INCREMENT, -- 알람일련번호 TEST_INFO_SEQ_NO INTEGER NOT NULL, -- 시험일련번호 TEST_DT_CD VARCHAR(6) NOT NULL, -- 시험일타입 ALR_CD CHAR(1) NOT NULL, -- 알람코드 ALR_DTIME DATE NOT NULL, -- 알람일 ALR_YN CHAR(1) NOT NULL DEFAULT 'W', -- 알람여부 USE_YN CHAR(1) NOT NULL DEFAULT 'Y', -- 사용여부 MOD_DTIME DATE NOT NULL, -- 수정일시 REG_DTIME DATE NOT NULL, -- 등록일시 PRIMARY KEY (ALR_INFO_SEQ_NO) ); -- 알람발송이력 DROP TABLE ALARM_HIST; -- 알람발송이력 CREATE TABLE ALARM_HIST ( ALR_INFO_SEQ_NO INTEGER NOT NULL , -- 알람일련번호 REG_DTIME DATE NOT NULL -- 등록일시 );
<reponame>mreeder/RandomQuotes<filename>src/RandomQuotes.DbUp/migrationscripts/002_Quote.sql<gh_stars>0 CREATE TABLE [dbo].[Quote] ( [QuoteId] [int] NOT NULL IDENTITY(1, 1), [AuthorId] [int] NOT NULL, [QuoteText] [varchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ) ON [PRIMARY] GO ALTER TABLE [dbo].[Quote] ADD CONSTRAINT [PK_Quote] PRIMARY KEY CLUSTERED ([QuoteId]) ON [PRIMARY] GO ALTER TABLE [dbo].[Quote] ADD CONSTRAINT [FK_Quote_Author] FOREIGN KEY ([AuthorId]) REFERENCES [dbo].[Author] ([AuthorId]) GO
<gh_stars>0 select cal_dt as bb , sum(price) as aa from test_kylin_fact fact inner join ( select count(1) as cnt, min(cal_dt) as "mmm", cal_dt as dt from test_kylin_fact group by cal_dt order by 2 desc limit 10 ) t0 on (fact.cal_dt = t0.dt) group by cal_dt
update prestamo set tipo = :tipo, nombre = :nombre, valor_prestamo = :valorPrestamo, fecha_prestamo = :fechaPrestamo, fecha_ultimo_pago = :fechaUltimoPago, idUsuario = :idUsuario where id = :id