sql
stringlengths
6
1.05M
BEGIN; DROP FUNCTION IF EXISTS gd_version(); DROP FUNCTION IF EXISTS gd_time_zone(); DROP FUNCTION IF EXISTS gd_week_start(); DROP FUNCTION IF EXISTS gd_second(timestamptz); DROP FUNCTION IF EXISTS gd_second(timestamp); DROP FUNCTION IF EXISTS gd_minute(timestamptz); DROP FUNCTION IF EXISTS gd_minute(timestamp); DROP FUNCTION IF EXISTS gd_hour(timestamptz); DROP FUNCTION IF EXISTS gd_hour(timestamp); DROP FUNCTION IF EXISTS gd_day(timestamptz); DROP FUNCTION IF EXISTS gd_day(timestamp); DROP FUNCTION IF EXISTS gd_day(date); DROP FUNCTION IF EXISTS gd_day(timestamptz, text); DROP FUNCTION IF EXISTS gd_day(timestamp, text); DROP FUNCTION IF EXISTS gd_day(date, text); DROP FUNCTION IF EXISTS gd_week(timestamptz); DROP FUNCTION IF EXISTS gd_week(timestamp); DROP FUNCTION IF EXISTS gd_week(date); DROP FUNCTION IF EXISTS gd_week(timestamptz, text); DROP FUNCTION IF EXISTS gd_week(timestamp, text); DROP FUNCTION IF EXISTS gd_week(date, text); DROP FUNCTION IF EXISTS gd_week_mon(timestamptz); DROP FUNCTION IF EXISTS gd_week_mon(timestamp); DROP FUNCTION IF EXISTS gd_week_mon(timestamptz, text); DROP FUNCTION IF EXISTS gd_week_mon(timestamp, text); DROP FUNCTION IF EXISTS gd_month(timestamptz); DROP FUNCTION IF EXISTS gd_month(timestamp); DROP FUNCTION IF EXISTS gd_month(date); DROP FUNCTION IF EXISTS gd_month(timestamptz, text); DROP FUNCTION IF EXISTS gd_month(timestamp, text); DROP FUNCTION IF EXISTS gd_month(date, text); DROP FUNCTION IF EXISTS gd_quarter(timestamptz); DROP FUNCTION IF EXISTS gd_quarter(timestamp); DROP FUNCTION IF EXISTS gd_quarter(date); DROP FUNCTION IF EXISTS gd_quarter(timestamptz, text); DROP FUNCTION IF EXISTS gd_quarter(timestamp, text); DROP FUNCTION IF EXISTS gd_quarter(date, text); DROP FUNCTION IF EXISTS gd_year(timestamptz); DROP FUNCTION IF EXISTS gd_year(timestamp); DROP FUNCTION IF EXISTS gd_year(date); DROP FUNCTION IF EXISTS gd_year(timestamptz, text); DROP FUNCTION IF EXISTS gd_year(timestamp, text); DROP FUNCTION IF EXISTS gd_year(date, text); DROP FUNCTION IF EXISTS gd_hour_of_day(timestamptz); DROP FUNCTION IF EXISTS gd_hour_of_day(timestamp); DROP FUNCTION IF EXISTS gd_hour_of_day(timestamptz, text); DROP FUNCTION IF EXISTS gd_hour_of_day(timestamp, text); DROP FUNCTION IF EXISTS gd_day_of_week(timestamptz); DROP FUNCTION IF EXISTS gd_day_of_week(timestamp); DROP FUNCTION IF EXISTS gd_day_of_week(date); DROP FUNCTION IF EXISTS gd_day_of_week(timestamptz, text); DROP FUNCTION IF EXISTS gd_day_of_week(timestamp, text); DROP FUNCTION IF EXISTS gd_day_of_week(date, text); DROP FUNCTION IF EXISTS gd_day_of_month(timestamptz); DROP FUNCTION IF EXISTS gd_day_of_month(timestamp); DROP FUNCTION IF EXISTS gd_day_of_month(date); DROP FUNCTION IF EXISTS gd_day_of_month(timestamptz, text); DROP FUNCTION IF EXISTS gd_day_of_month(timestamp, text); DROP FUNCTION IF EXISTS gd_day_of_month(date, text); DROP FUNCTION IF EXISTS gd_day_of_year(timestamptz); DROP FUNCTION IF EXISTS gd_day_of_year(timestamp); DROP FUNCTION IF EXISTS gd_day_of_year(date); DROP FUNCTION IF EXISTS gd_day_of_year(timestamptz, text); DROP FUNCTION IF EXISTS gd_day_of_year(timestamp, text); DROP FUNCTION IF EXISTS gd_day_of_year(date, text); DROP FUNCTION IF EXISTS gd_month_of_year(timestamptz); DROP FUNCTION IF EXISTS gd_month_of_year(timestamp); DROP FUNCTION IF EXISTS gd_month_of_year(date); DROP FUNCTION IF EXISTS gd_month_of_year(timestamptz, text); DROP FUNCTION IF EXISTS gd_month_of_year(timestamp, text); DROP FUNCTION IF EXISTS gd_month_of_year(date, text); DROP FUNCTION IF EXISTS gd_period(text, timestamptz); DROP FUNCTION IF EXISTS gd_period(text, timestamp); DROP FUNCTION IF EXISTS gd_period(text, date); DROP FUNCTION IF EXISTS gd_period(text, timestamp, text); DROP FUNCTION IF EXISTS gd_period(text, timestamptz, text); DROP FUNCTION IF EXISTS gd_period(text, date, text); COMMIT;
-- UPDATE VERSION NUMBER UPDATE myems_system_db.tbl_versions SET version='1.1.0', release_date='2021-03-18' WHERE id=1;
<filename>concepts/durations/ventilation_classification.sql -- Identify The presence of a mechanical ventilation using settings select icustay_id, charttime -- case statement determining whether it is an instance of mech vent , max( case when itemid is null or value is null then 0 -- can't have null values when itemid = 720 and value != 'Other/Remarks' THEN 1 -- VentTypeRecorded when itemid = 223848 and value != 'Other' THEN 1 when itemid = 223849 then 1 -- ventilator mode when itemid = 467 and value = 'Ventilator' THEN 1 -- O2 delivery device == ventilator when itemid in ( 445, 448, 449, 450, 1340, 1486, 1600, 224687 -- minute volume , 639, 654, 681, 682, 683, 684,224685,224684,224686 -- tidal volume , 218,436,535,444,459,224697,224695,224696,224746,224747 -- High/Low/Peak/Mean/Neg insp force ("RespPressure") , 221,1,1211,1655,2000,226873,224738,224419,224750,227187 -- Insp pressure , 543 -- PlateauPressure , 5865,5866,224707,224709,224705,224706 -- APRV pressure , 60,437,505,506,686,220339,224700 -- PEEP , 3459 -- high pressure relief , 501,502,503,224702 -- PCV , 223,667,668,669,670,671,672 -- TCPCV , 224701 -- PSVlevel ) THEN 1 else 0 end ) as MechVent , max( case -- initiation of oxygen therapy indicates the ventilation has ended when itemid = 226732 and value in ( 'Nasal cannula', -- 153714 observations 'Face tent', -- 24601 observations 'Aerosol-cool', -- 24560 observations 'Trach mask ', -- 16435 observations 'High flow neb', -- 10785 observations 'Non-rebreather', -- 5182 observations 'Venti mask ', -- 1947 observations 'Medium conc mask ', -- 1888 observations 'T-piece', -- 1135 observations 'High flow nasal cannula', -- 925 observations 'Ultrasonic neb', -- 9 observations 'Vapomist' -- 3 observations ) then 1 when itemid = 467 and value in ( 'Cannula', -- 278252 observations 'Nasal Cannula', -- 248299 observations -- 'None', -- 95498 observations 'Face Tent', -- 35766 observations 'Aerosol-Cool', -- 33919 observations 'Trach Mask', -- 32655 observations 'Hi Flow Neb', -- 14070 observations 'Non-Rebreather', -- 10856 observations 'Venti Mask', -- 4279 observations 'Medium Conc Mask', -- 2114 observations 'Vapotherm', -- 1655 observations 'T-Piece', -- 779 observations 'Hood', -- 670 observations 'Hut', -- 150 observations 'TranstrachealCat', -- 78 observations 'Heated Neb', -- 37 observations 'Ultrasonic Neb' -- 2 observations ) then 1 else 0 end ) as OxygenTherapy , max( case when itemid is null or value is null then 0 -- extubated indicates ventilation event has ended when itemid = 640 and value = 'Extubated' then 1 when itemid = 640 and value = 'Self Extubation' then 1 else 0 end ) as Extubated , max( case when itemid is null or value is null then 0 when itemid = 640 and value = 'Self Extubation' then 1 else 0 end ) as SelfExtubated from `physionet-data.mimiciii_clinical.chartevents` ce where ce.value is not null -- exclude rows marked as error and (ce.error != 1 or ce.error IS NULL) and itemid in ( -- the below are settings used to indicate ventilation 720, 223849 -- vent mode , 223848 -- vent type , 445, 448, 449, 450, 1340, 1486, 1600, 224687 -- minute volume , 639, 654, 681, 682, 683, 684,224685,224684,224686 -- tidal volume , 218,436,535,444,224697,224695,224696,224746,224747 -- High/Low/Peak/Mean ("RespPressure") , 221,1,1211,1655,2000,226873,224738,224419,224750,227187 -- Insp pressure , 543 -- PlateauPressure , 5865,5866,224707,224709,224705,224706 -- APRV pressure , 60,437,505,506,686,220339,224700 -- PEEP , 3459 -- high pressure relief , 501,502,503,224702 -- PCV , 223,667,668,669,670,671,672 -- TCPCV , 224701 -- PSVlevel -- the below are settings used to indicate extubation , 640 -- extubated -- the below indicate oxygen/NIV, i.e. the end of a mechanical vent event , 468 -- O2 Delivery Device#2 , 469 -- O2 Delivery Mode , 470 -- O2 Flow (lpm) , 471 -- O2 Flow (lpm) #2 , 227287 -- O2 Flow (additional cannula) , 226732 -- O2 Delivery Device(s) , 223834 -- O2 Flow -- used in both oxygen + vent calculation , 467 -- O2 Delivery Device ) group by icustay_id, charttime UNION DISTINCT -- add in the extubation flags from procedureevents_mv -- note that we only need the start time for the extubation -- (extubation is always charted as ending 1 minute after it started) select icustay_id, starttime as charttime , 0 as MechVent , 0 as OxygenTherapy , 1 as Extubated , case when itemid = 225468 then 1 else 0 end as SelfExtubated from `physionet-data.mimiciii_clinical.procedureevents_mv` where itemid in ( 227194 -- "Extubation" , 225468 -- "Unplanned Extubation (patient-initiated)" , 225477 -- "Unplanned Extubation (non-patient initiated)" );
CREATE TABLE [Application].[Logs]( [Message] NVARCHAR(4000) NOT NULL, [Level] VARCHAR(16) NOT NULL, [EventTime] DATETIME2 (7) NOT NULL, [LogEvent] NVARCHAR(max) NULL, INDEX CCX_Application_Logs CLUSTERED COLUMNSTORE ) GO GO EXECUTE sp_addextendedproperty @name = N'Description', @value = 'CLUSTERED COLUMNSTORE INDEX that compress application log.', @level0type = N'SCHEMA', @level0name = N'Application', @level1type = N'TABLE', @level1name = N'Logs', @level2type = N'INDEX', @level2name = N'CCX_Application_Logs'; GO EXECUTE sp_addextendedproperty @name = N'Description', @value = N'Application logs that are stored in database', @level0type = N'SCHEMA', @level0name = N'Application', @level1type = N'TABLE', @level1name = N'Logs'; GO EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Logged message', @level0type = N'SCHEMA', @level0name = N'Application', @level1type = N'TABLE', @level1name = N'Logs', @level2type = N'COLUMN', @level2name = N'Message'; GO EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Severity of the log entry', @level0type = N'SCHEMA', @level0name = N'Application', @level1type = N'TABLE', @level1name = N'Logs', @level2type = N'COLUMN', @level2name = N'Level'; GO EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Time when the record is logged', @level0type = N'SCHEMA', @level0name = N'Application', @level1type = N'TABLE', @level1name = N'Logs', @level2type = N'COLUMN', @level2name = 'EventTime'; GO EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Details about the logged event', @level0type = N'SCHEMA', @level0name = N'Application', @level1type = N'TABLE', @level1name = N'Logs', @level2type = N'COLUMN', @level2name = N'LogEvent';
insert into exchange_value(id, currency_from, currency_to, conversion_rate, port) values (10001, 'usd', 'inr', 65, 0); insert into exchange_value(id, currency_from, currency_to, conversion_rate, port) values (10002, 'eur', 'inr', 75, 0); insert into exchange_value(id, currency_from, currency_to, conversion_rate, port) values (10003, 'aud', 'inr', 55, 0);
<gh_stars>0 CREATE DATABASE bdEscolaIdioma USE bdEscolaIdioma CREATE TABLE tbAluno( codAluno INT PRIMARY KEY IDENTITY(1,1) , nomeAluno VARCHAR(70) NOT NULL , dataNascAluno SMALLDATETIME NOT NULL , rgAluno VARCHAR (14) NOT NULL , naturalidadeAluno VARCHAR (20) NOT NULL ) CREATE TABLE tbCurso( codCurso INT PRIMARY KEY IDENTITY(1,1) , nomeCurso VARCHAR(70) NOT NULL , cargaHorariaCurso INT NOT NULL , valorCurso SMALLMONEY NOT NULL ) --TABELAS COM FK CREATE TABLE tbTurma( codTurma INT PRIMARY KEY IDENTITY(1,1) , nomeTurma VARCHAR(50) NOT NULL , horarioTurma SMALLDATETIME NOT NULL , codCurso INT FOREIGN KEY REFERENCES tbCurso(codCurso) ) CREATE TABLE tbMatricula( codMatricula INT PRIMARY KEY IDENTITY(1,1) , dataMatricula SMALLDATETIME NOT NULL , codAluno INT FOREIGN KEY REFERENCES tbAluno(codAluno) , codTurma INT FOREIGN KEY REFERENCES tbTurma(codTurma) )
<reponame>CapsicoHealth/Wanda --------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------- -- Anonymous User --------------------------------------------------------------------------------------------------- insert into WANDA.USER ( "refnum", "email", "id", "loginCount", "pswd", "pswdCreateTZ", "pswdCreate", "roles", "loginType", "created", "lastUpdated") values (-666,'anonymous','__ANONYMOUS__',0,'--' ,'USEa', statement_timestamp(), '{}', 'LO', statement_timestamp(), statement_timestamp()) on conflict do nothing;
<reponame>RedPillAnalytics/sql-pipelines --SOURCE of ClickStream CREATE STREAM clickstream (_time bigint,time varchar, ip varchar, request varchar, status int, userid int, bytes bigint, agent varchar) with (kafka_topic = 'clickstream', value_format = 'json');
<filename>Tables/CNF.Perfiles.sql CREATE TABLE [CNF].[Perfiles] ( [IdPerfil] [int] NOT NULL IDENTITY(1, 1), [Perfil] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [CvePerfil] [uniqueidentifier] NOT NULL, [IsActivo] [bit] NOT NULL ) ON [PRIMARY] GO ALTER TABLE [CNF].[Perfiles] ADD CONSTRAINT [PK_Perfiles] PRIMARY KEY CLUSTERED ([IdPerfil]) ON [PRIMARY] GO EXEC sp_addextendedproperty N'MS_Description', N'Tabla de Perfiles del Sistema de Verificación', 'SCHEMA', N'CNF', 'TABLE', N'Perfiles', NULL, NULL GO
-- ********************************************************************* -- POST-Update Database Script from 3.2.0-CR1-SNAPTSHOT to 3.2.0.Final -- ********************************************************************* BEGIN; SELECT 1; SAVEPOINT sp; --ALTER TABLE public.REALM DROP COLUMN DOCKER_AUTH_FLOW; --ALTER TABLE IF EXISTS public.REALM RENAME DOCKER_AUTH_FLOW_OLD to DOCKER_AUTH_FLOW; DROP INDEX IF EXISTS IDX_ASSOC_POL_ASSOC_POL_ID; ALTER INDEX IF EXISTS IDX_ASSOC_POL_ASSOC_POL_ID_OLD RENAME TO IDX_ASSOC_POL_ASSOC_POL_ID; DROP INDEX IF EXISTS IDX_AUTH_EXEC_REALM_FLOW; ALTER INDEX IF EXISTS IDX_AUTH_EXEC_REALM_FLOW_OLD RENAME TO IDX_AUTH_EXEC_REALM_FLOW; DROP INDEX IF EXISTS IDX_AUTH_EXEC_FLOW; ALTER INDEX IF EXISTS IDX_AUTH_EXEC_FLOW_OLD RENAME TO IDX_AUTH_EXEC_FLOW; DROP INDEX IF EXISTS IDX_AUTH_FLOW_REALM; ALTER INDEX IF EXISTS IDX_AUTH_FLOW_REALM_OLD RENAME TO IDX_AUTH_FLOW_REALM; DROP INDEX IF EXISTS IDX_AUTH_CONFIG_REALM; ALTER INDEX IF EXISTS IDX_AUTH_CONFIG_REALM_OLD RENAME TO IDX_AUTH_CONFIG_REALM; DROP INDEX IF EXISTS IDX_CLIENT_CLIENT_TEMPL_ID; ALTER INDEX IF EXISTS IDX_CLIENT_CLIENT_TEMPL_ID_OLD RENAME TO IDX_CLIENT_CLIENT_TEMPL_ID; DROP INDEX IF EXISTS IDX_CLIENT_DEF_ROLES_CLIENT; ALTER INDEX IF EXISTS IDX_CLIENT_DEF_ROLES_CLIENT_OLD RENAME TO IDX_CLIENT_DEF_ROLES_CLIENT; DROP INDEX IF EXISTS IDX_CLIENT_ID_PROV_MAP_CLIENT; ALTER INDEX IF EXISTS IDX_CLIENT_ID_PROV_MAP_CLIENT_OLD RENAME TO IDX_CLIENT_ID_PROV_MAP_CLIENT; DROP INDEX IF EXISTS IDX_CLIENT_SESSION_SESSION; ALTER INDEX IF EXISTS IDX_CLIENT_SESSION_SESSION_OLD RENAME TO IDX_CLIENT_SESSION_SESSION; DROP INDEX IF EXISTS IDX_COMPONENT_REALM; ALTER INDEX IF EXISTS IDX_COMPONENT_REALM_OLD RENAME TO IDX_COMPONENT_REALM; DROP INDEX IF EXISTS IDX_COMPO_CONFIG_COMPO; ALTER INDEX IF EXISTS IDX_COMPO_CONFIG_COMPO_OLD RENAME TO IDX_COMPO_CONFIG_COMPO; DROP INDEX IF EXISTS IDX_COMPONENT; ALTER INDEX IF EXISTS IDX_COMPONENT_OLD RENAME TO IDX_COMPONENT; DROP INDEX IF EXISTS IDX_COMPOSITE_CHILD; ALTER INDEX IF EXISTS IDX_COMPOSITE_CHILD_OLD RENAME TO IDX_COMPOSITE_CHILD; DROP INDEX IF EXISTS IDX_CREDENTIAL_ATTR_CRED; ALTER INDEX IF EXISTS IDX_CREDENTIAL_ATTR_CRED_OLD RENAME TO IDX_CREDENTIAL_ATTR_CRED; DROP INDEX IF EXISTS IDX_FED_CRED_ATTR_CRED; ALTER INDEX IF EXISTS IDX_FED_CRED_ATTR_CRED_OLD RENAME TO IDX_FED_CRED_ATTR_CRED; DROP INDEX IF EXISTS IDX_GROUP_ATTR_GROUP; ALTER INDEX IF EXISTS IDX_GROUP_ATTR_GROUP_OLD RENAME TO IDX_GROUP_ATTR_GROUP; DROP INDEX IF EXISTS IDX_GROUP_ROLE_MAPP_GROUP; ALTER INDEX IF EXISTS IDX_GROUP_ROLE_MAPP_GROUP_OLD RENAME TO IDX_GROUP_ROLE_MAPP_GROUP; DROP INDEX IF EXISTS IDX_IDENT_PROV_REALM; ALTER INDEX IF EXISTS IDX_IDENT_PROV_REALM_OLD RENAME TO IDX_IDENT_PROV_REALM; DROP INDEX IF EXISTS IDX_ID_PROV_MAPP_REALM; ALTER INDEX IF EXISTS IDX_ID_PROV_MAPP_REALM_OLD RENAME TO IDX_ID_PROV_MAPP_REALM; DROP INDEX IF EXISTS IDX_KEYCLOAK_ROLE_CLIENT; ALTER INDEX IF EXISTS IDX_KEYCLOAK_ROLE_CLIENT_OLD RENAME TO IDX_KEYCLOAK_ROLE_CLIENT; DROP INDEX IF EXISTS IDX_KEYCLOAK_ROLE_REALM; ALTER INDEX IF EXISTS IDX_KEYCLOAK_ROLE_REALM_OLD RENAME TO IDX_KEYCLOAK_ROLE_REALM; DROP INDEX IF EXISTS IDX_PROTOCOL_MAPPER_CLIENT; ALTER INDEX IF EXISTS IDX_PROTOCOL_MAPPER_CLIENT_OLD RENAME TO IDX_PROTOCOL_MAPPER_CLIENT; DROP INDEX IF EXISTS IDX_PROTO_MAPP_CLIENT_TEMPL; ALTER INDEX IF EXISTS IDX_PROTO_MAPP_CLIENT_TEMPL_OLD RENAME TO IDX_PROTO_MAPP_CLIENT_TEMPL; DROP INDEX IF EXISTS IDX_REALM_MASTER_ADM_CLI; ALTER INDEX IF EXISTS IDX_REALM_MASTER_ADM_CLI_OLD RENAME TO IDX_REALM_MASTER_ADM_CLI; DROP INDEX IF EXISTS IDX_REALM_ATTR_REALM; ALTER INDEX IF EXISTS IDX_REALM_ATTR_REALM_OLD RENAME TO IDX_REALM_ATTR_REALM; DROP INDEX IF EXISTS IDX_REALM_DEF_GRP_REALM; ALTER INDEX IF EXISTS IDX_REALM_DEF_GRP_REALM_OLD RENAME TO IDX_REALM_DEF_GRP_REALM; DROP INDEX IF EXISTS IDX_REALM_DEF_ROLES_REALM; ALTER INDEX IF EXISTS IDX_REALM_DEF_ROLES_REALM_OLD RENAME TO IDX_REALM_DEF_ROLES_REALM; DROP INDEX IF EXISTS IDX_REALM_EVT_TYPES_REALM; ALTER INDEX IF EXISTS IDX_REALM_EVT_TYPES_REALM_OLD RENAME TO IDX_REALM_EVT_TYPES_REALM; DROP INDEX IF EXISTS IDX_REALM_EVT_LIST_REALM; ALTER INDEX IF EXISTS IDX_REALM_EVT_LIST_REALM_OLD RENAME TO IDX_REALM_EVT_LIST_REALM; DROP INDEX IF EXISTS IDX_REALM_SUPP_LOCAL_REALM; ALTER INDEX IF EXISTS IDX_REALM_SUPP_LOCAL_REALM_OLD RENAME TO IDX_REALM_SUPP_LOCAL_REALM; DROP INDEX IF EXISTS IDX_REDIR_URI_CLIENT; ALTER INDEX IF EXISTS IDX_REDIR_URI_CLIENT_OLD RENAME TO IDX_REDIR_URI_CLIENT; DROP INDEX IF EXISTS IDX_REQ_ACT_PROV_REALM; ALTER INDEX IF EXISTS IDX_REQ_ACT_PROV_REALM_OLD RENAME TO IDX_REQ_ACT_PROV_REALM; DROP INDEX IF EXISTS IDX_RES_POLICY_POLICY; ALTER INDEX IF EXISTS IDX_RES_POLICY_POLICY_OLD RENAME TO IDX_RES_POLICY_POLICY; DROP INDEX IF EXISTS IDX_RES_SCOPE_SCOPE; ALTER INDEX IF EXISTS IDX_RES_SCOPE_SCOPE_OLD RENAME TO IDX_RES_SCOPE_SCOPE; DROP INDEX IF EXISTS IDX_RES_SERV_POL_RES_SERV; ALTER INDEX IF EXISTS IDX_RES_SERV_POL_RES_SERV_OLD RENAME TO IDX_RES_SERV_POL_RES_SERV; DROP INDEX IF EXISTS IDX_RES_SRV_RES_RES_SRV; ALTER INDEX IF EXISTS IDX_RES_SRV_RES_RES_SRV_OLD RENAME TO IDX_RES_SRV_RES_RES_SRV; DROP INDEX IF EXISTS IDX_RES_SRV_SCOPE_RES_SRV; ALTER INDEX IF EXISTS IDX_RES_SRV_SCOPE_RES_SRV_OLD RENAME TO IDX_RES_SRV_SCOPE_RES_SRV; DROP INDEX IF EXISTS IDX_SCOPE_MAPPING_ROLE; ALTER INDEX IF EXISTS IDX_SCOPE_MAPPING_ROLE_OLD RENAME TO IDX_SCOPE_MAPPING_ROLE; DROP INDEX IF EXISTS IDX_SCOPE_POLICY_POLICY; ALTER INDEX IF EXISTS IDX_SCOPE_POLICY_POLICY_OLD RENAME TO IDX_SCOPE_POLICY_POLICY; DROP INDEX IF EXISTS IDX_TEMPL_SCOPE_MAPP_ROLE; ALTER INDEX IF EXISTS IDX_TEMPL_SCOPE_MAPP_ROLE_OLD RENAME TO IDX_TEMPL_SCOPE_MAPP_ROLE; DROP INDEX IF EXISTS IDX_USR_FED_MAP_FED_PRV; ALTER INDEX IF EXISTS IDX_USR_FED_MAP_FED_PRV_OLD RENAME TO IDX_USR_FED_MAP_FED_PRV; DROP INDEX IF EXISTS IDX_USR_FED_MAP_REALM; ALTER INDEX IF EXISTS IDX_USR_FED_MAP_REALM_OLD RENAME TO IDX_USR_FED_MAP_REALM; DROP INDEX IF EXISTS IDX_USR_FED_PRV_REALM; ALTER INDEX IF EXISTS IDX_USR_FED_PRV_REALM_OLD RENAME TO IDX_USR_FED_PRV_REALM; DROP INDEX IF EXISTS IDX_WEB_ORIG_CLIENT; ALTER INDEX IF EXISTS IDX_WEB_ORIG_CLIENT_OLD RENAME TO IDX_WEB_ORIG_CLIENT; DROP INDEX IF EXISTS IDX_CLIENT_INIT_ACC_REALM; ALTER INDEX IF EXISTS IDX_CLIENT_INIT_ACC_REALM_OLD RENAME TO IDX_CLIENT_INIT_ACC_REALM; RELEASE sp; SAVEPOINT sp; ROLLBACK TO SAVEPOINT sp; RELEASE sp; COMMIT;
ALTER TABLE "public"."publications" DROP COLUMN "source_name";
<reponame>deltaDNA/sql-cookbook with DATA AS ( SELECT min(event_date) as event_date, player_start_date, user_id, DATEDIFF(DAY,player_start_date,min(event_date)) AS N FROM fact_user_sessions_day where DATEDIFF(DAY,player_start_date,current_date)<36 group by player_start_date, user_id, session_Id ), retention AS ( SELECT player_start_date, COUNT (DISTINCT CASE WHEN n = 0 THEN user_id ELSE NULL END)AS installs, COUNT (DISTINCT CASE WHEN n = 1 THEN user_id ELSE NULL END)AS 'day 1 retention', COUNT (DISTINCT CASE WHEN n = 7 THEN user_id ELSE NULL END)AS 'day 7 retention', COUNT (DISTINCT CASE WHEN n = 14 THEN user_id ELSE NULL END)AS 'day 14 retention', COUNT (DISTINCT CASE WHEN n = 30 THEN user_id ELSE NULL END)AS 'day 30 retention' FROM DATA GROUP BY player_start_date) SELECT *, round("day 1 retention"/"installs"*100,2.0) as 'D1%', round("day 7 retention"/"installs"*100,2.0) as 'D7%', round("day 14 retention"/"installs"*100,2.0) as 'D14%', round("day 30 retention"/"installs"*100,2.0) as 'D30%' FROM retention ORDER BY player_start_date DESC
<reponame>go-things/things create database things_user; use things_user; CREATE TABLE if not exists `user_core` ( `uid` bigint unsigned NOT NULL COMMENT '用户id', `userName` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '登录用户名', `password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '登录密码', `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '邮箱', `phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '手机号', `wechat` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '微信union id', `lastIP` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '最后登录ip', `regIP` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '注册ip', `createdTime` datetime DEFAULT NULL, `updatedTime` datetime DEFAULT NULL, `deletedTime` datetime DEFAULT NULL, `status` int DEFAULT '0' COMMENT '用户状态:0为未注册状态', PRIMARY KEY (`uid`) USING BTREE, KEY `user_username` (`userName`) USING BTREE, KEY `user_phone` (`phone`) USING BTREE, KEY `user_email` (`email`) USING BTREE, KEY `user_wechat` (`wechat`) USING BTREE, KEY `user_deletedTime` (`deletedTime`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='用户登录核心信息表'; CREATE TABLE if not exists `user_info` ( `uid` bigint unsigned NOT NULL COMMENT '用户id', `userName` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '用户名', `nickName` varchar(100) NOT NULL DEFAULT '' COMMENT '用户的昵称', `inviterUid` bigint unsigned NOT NULL DEFAULT '0' COMMENT '邀请人用户id', `inviterId` varbinary(64) NOT NULL DEFAULT '' COMMENT '邀请码', `sex` int NOT NULL DEFAULT '0' COMMENT '用户的性别,值为1时是男性,值为2时是女性,值为0时是未知', `city` varchar(20) NOT NULL DEFAULT '' COMMENT '用户所在城市', `country` varchar(20) NOT NULL DEFAULT '' COMMENT '用户所在国家', `province` varchar(20) NOT NULL DEFAULT '' COMMENT '用户所在省份', `language` varchar(20) NOT NULL DEFAULT '' COMMENT '用户的语言,简体中文为zh_CN', `headImgUrl` varchar(256) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '用户头像', `createdTime` datetime DEFAULT NULL, `updatedTime` datetime DEFAULT NULL, `deletedTime` datetime DEFAULT NULL, PRIMARY KEY (`uid`) USING BTREE, KEY `user_inviterUid` (`inviterUid`) USING BTREE, KEY `user_deletedTime` (`deletedTime`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='用户详细信息表';
<gh_stars>1000+ DROP TABLE IF EXISTS derived_metrics_local; CREATE TABLE derived_metrics_local ( timestamp DateTime, bytes UInt64 ) ENGINE=SummingMergeTree() PARTITION BY toYYYYMMDD(timestamp) ORDER BY (toStartOfHour(timestamp), timestamp) TTL toStartOfHour(timestamp) + INTERVAL 1 HOUR GROUP BY toStartOfHour(timestamp) SET bytes=max(bytes); INSERT INTO derived_metrics_local values('2020-01-01 00:00:00', 1); INSERT INTO derived_metrics_local values('2020-01-01 00:01:00', 3); INSERT INTO derived_metrics_local values('2020-01-01 00:02:00', 2); OPTIMIZE TABLE derived_metrics_local FINAL; SELECT * FROM derived_metrics_local; DROP TABLE derived_metrics_local; CREATE TABLE derived_metrics_local ( timestamp DateTime, timestamp_h DateTime materialized toStartOfHour(timestamp), bytes UInt64 ) ENGINE=SummingMergeTree() PARTITION BY toYYYYMMDD(timestamp) ORDER BY (timestamp_h, timestamp) TTL toStartOfHour(timestamp) + INTERVAL 1 HOUR GROUP BY timestamp_h SET bytes=max(bytes), timestamp = toStartOfHour(any(timestamp)); INSERT INTO derived_metrics_local values('2020-01-01 00:01:00', 111); INSERT INTO derived_metrics_local values('2020-01-01 00:19:22', 22); INSERT INTO derived_metrics_local values('2020-01-01 00:59:02', 1); OPTIMIZE TABLE derived_metrics_local FINAL; SELECT timestamp, timestamp_h, bytes FROM derived_metrics_local; DROP TABLE IF EXISTS derived_metrics_local; CREATE TABLE derived_metrics_local ( timestamp DateTime, bytes UInt64 TTL toStartOfHour(timestamp) + INTERVAL 1 HOUR ) ENGINE=MergeTree() ORDER BY (toStartOfHour(timestamp), timestamp) SETTINGS min_bytes_for_wide_part = 0; INSERT INTO derived_metrics_local values('2020-01-01 00:01:00', 111) ('2020-01-01 00:19:22', 22) ('2100-01-01 00:19:22', 1); OPTIMIZE TABLE derived_metrics_local FINAL; SELECT sum(bytes) FROM derived_metrics_local; DROP TABLE IF EXISTS derived_metrics_local; CREATE TABLE derived_metrics_local ( timestamp DateTime, bytes UInt64 ) ENGINE=MergeTree() PARTITION BY toYYYYMMDD(timestamp) ORDER BY (toStartOfHour(timestamp), timestamp) TTL toStartOfHour(timestamp) + INTERVAL 1 HOUR SETTINGS min_bytes_for_wide_part = 0; INSERT INTO derived_metrics_local values('2020-01-01 00:01:00', 111); INSERT INTO derived_metrics_local values('2020-01-01 00:19:22', 22); INSERT INTO derived_metrics_local values('2020-01-01 00:59:02', 1); OPTIMIZE TABLE derived_metrics_local FINAL; SELECT count() FROM derived_metrics_local; DROP TABLE IF EXISTS derived_metrics_local;
update event set importance = '1'; alter table event alter column importance type integer using cast(importance as integer);
-- @testpoint: opengauss关键字pool非保留),作为索引名,部分测试点合理报错 --前置条件,创建一个表 drop table if exists pool_test; create table pool_test(id int,name varchar(10)); --关键字不带引号-成功 drop index if exists pool; create index pool on pool_test(id); drop index pool; --关键字带双引号-成功 drop index if exists "pool"; create index "pool" on pool_test(id); drop index "pool"; --关键字带单引号-合理报错 drop index if exists 'pool'; create index 'pool' on pool_test(id); --关键字带反引号-合理报错 drop index if exists `pool`; create index `pool` on pool_test(id); --清理环境 drop table if exists pool_test cascade;
INSERT INTO todo(`title`, `content`, `status`, `created`, `updated`) VALUES ('APIサービスを実装する','Go言語でAPIを実装し、コンテナとして実行できるようにする', 'TODO', NOW(), NOW());
CREATE TABLE Messages ( MessageId INTEGER NOT NULL UNIQUE IDENTITY(1,1), Message NVARCHAR(255) NULL, Type NVARCHAR(255) NULL, Form NVARCHAR(255) NULL );
<filename>data/migrations/1576878186554-query1.sql<gh_stars>0 CREATE TABLE BOOKSHELVES (id SERIAL PRIMARY KEY, name VARCHAR(255)); -- This query will create a second table in the lab14_normal database named bookshelves. Confirm the success of this command by typing \d bookshelves in your SQL shell. You should see the bookshelves table schema, as shown above.
<reponame>sunandagupta/hacker_rank /* Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA. The CITY table is described as follows: CITY Field Type ID NUMBER NAME VARCHAR2(17) COUNTRYCODE VARCHAR2(3) DISTRICT VARCHAR2(20) POPULATION NUMBER */ SELECT * FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 100000;
CREATE DATABASE PruebaCemaco; CREATE TABLE UserInfo ( id SERIAL PRIMARY KEY, nombre VARCHAR(75) NOT NULL, telefono VARCHAR(15) NOT NULL, correo VARCHAR(50) NOT NULL, password VARCHAR(50) NOT NULL, porque VARCHAR(1000) NOT NULL, fechahora TIMESTAMP DEFAULT CURRENT_TIMESTAMP );
<filename>catalogofsounds.sql -- phpMyAdmin SQL Dump -- version 5.1.0 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1:3306 -- Время создания: Дек 03 2021 г., 21:26 -- Версия сервера: 8.0.24 -- Версия PHP: 7.1.33 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 */; -- -- База данных: `catalogofsounds` -- -- -------------------------------------------------------- -- -- Структура таблицы `categories` -- CREATE TABLE `categories` ( `id` int UNSIGNED NOT NULL, `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Дамп данных таблицы `categories` -- INSERT INTO `categories` (`id`, `title`) VALUES (3, 'Вода'), (2, 'Город'), (13, 'Новое'), (1, 'Огонь'), (4, 'Природа'); -- -------------------------------------------------------- -- -- Структура таблицы `complaints` -- CREATE TABLE `complaints` ( `id` int UNSIGNED NOT NULL, `song_id` int UNSIGNED NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status_id` int UNSIGNED NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Дамп данных таблицы `complaints` -- INSERT INTO `complaints` (`id`, `song_id`, `description`, `status_id`, `created_at`, `updated_at`) VALUES (1, 1, 'Нарушение авторских прав', 2, '2021-11-26 15:08:31', '2021-12-02 16:12:57'), (2, 6, 'Не соответствует названию', 3, '2021-11-26 15:10:50', '2021-12-03 12:33:01'), (3, 4, 'ытокгьдетниме', 1, '2021-11-27 06:16:07', '2021-11-27 06:16:07'); -- -------------------------------------------------------- -- -- Структура таблицы `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Структура таблицы `migrations` -- CREATE TABLE `migrations` ( `id` int UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Дамп данных таблицы `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2019_12_14_000001_create_personal_access_tokens_table', 1), (5, '2014_10_12_200000_add_two_factor_columns_to_users_table', 2), (6, '2021_11_23_165546_create_sessions_table', 2), (13, '2014_10_12_000000_create_users_table', 3), (14, '2014_10_12_100000_create_password_resets_table', 3), (15, '2021_11_24_150000_create-table', 4), (16, '2021_11_25_181715_create-table', 5); -- -------------------------------------------------------- -- -- Структура таблицы `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Структура таблицы `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint UNSIGNED NOT NULL, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Структура таблицы `sessions` -- CREATE TABLE `sessions` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint UNSIGNED DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci, `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, `last_activity` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Дамп данных таблицы `sessions` -- INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('leLP8h9auy4Pp3PPZBMfh18LvhdMr4gybCgw2zHZ', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63', 'Y<KEY>', 1637687006); -- -------------------------------------------------------- -- -- Структура таблицы `songs` -- CREATE TABLE `songs` ( `id` int UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int UNSIGNED NOT NULL, `status_id` int UNSIGNED NOT NULL DEFAULT '1', `songPath` varchar(255) CHARACTER SET utf8mb4 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; -- -- Дамп данных таблицы `songs` -- INSERT INTO `songs` (`id`, `title`, `category_id`, `status_id`, `songPath`, `created_at`, `updated_at`) VALUES (1, '<NAME>', 2, 1, 'uploadedSongs/zvuki-goroda.mp3', '2021-11-25 18:15:29', '2021-11-29 16:24:47'), (2, '<NAME>', 2, 2, 'uploadedSongs/zvuki-metro.mp3', '2021-11-25 18:45:59', '2021-11-26 16:45:34'), (3, 'Шум стройки', 2, 2, 'uploadedSongs/shum-stroyki.mp3', '2021-11-25 18:46:35', '2021-11-26 16:37:14'), (4, 'Гроза', 4, 2, 'uploadedSongs/zvuki-groza.mp3', '2021-11-25 18:56:22', '2021-11-26 16:43:14'), (5, 'Ветер', 4, 2, 'uploadedSongs/zvuki-vetra.mp3', '2021-11-25 18:56:34', '2021-11-26 16:59:22'), (6, '<NAME>', 4, 2, 'uploadedSongs/zvuki-leto.mp3', '2021-11-25 18:56:52', '2021-11-26 17:00:29'), (7, 'Звук спокойного моря', 3, 2, 'uploadedSongs/spokoynoye more.mp3', '2021-11-25 18:57:18', '2021-11-26 17:01:21'), (8, 'Звук океана', 3, 2, 'uploadedSongs/water_ocean.mp3', '2021-11-25 18:57:29', '2021-11-27 06:16:51'), (9, 'Звуки костра и треск дров', 1, 1, 'uploadedSongs/sound-effects-library-camp-fire-burning.mp3', '2021-11-25 18:58:29', '2021-11-25 18:58:29'), (10, 'Звук постепенного возгорание огня', 1, 1, 'uploadedSongs/27cd739c2568ff6.mp3', '2021-11-25 18:59:54', '2021-11-25 18:59:54'), (11, 'ghj', 3, 2, 'uploadedSongs/water_ocean.mp3', '2021-11-27 06:20:05', '2021-11-30 11:14:49'), (12, 'NAME', 3, 2, 'uploadedSongs/zvuk-gusey-30739.wav', '2021-11-29 15:42:14', '2021-11-29 15:42:14'), (13, 'NAMEE', 3, 1, 'uploadedSongs/zvuki-goroda.mp3', '2021-11-29 15:46:37', '2021-11-29 15:46:37'), (14, 'Звук города', 3, 1, 'uploadedSongs/zvuki-goroda.mp3', '2021-11-29 15:48:14', '2021-11-29 15:48:14'); -- -------------------------------------------------------- -- -- Структура таблицы `statuses` -- CREATE TABLE `statuses` ( `id` int UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Дамп данных таблицы `statuses` -- INSERT INTO `statuses` (`id`, `title`) VALUES (1, 'Новый'), (3, 'Отклонено'), (2, 'Проверено'); -- -------------------------------------------------------- -- -- Структура таблицы `users` -- CREATE TABLE `users` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `blocked` tinyint(1) NOT NULL DEFAULT '0', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Дамп данных таблицы `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `blocked`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Admin', '<EMAIL>', NULL, '$2y$10$wZr2Vx.dw3kUPgztdEKjsO3V8t6Moeke4nUHf2q2BlMzlnSCSkje2', 0, NULL, '2021-11-26 20:54:19', '2021-12-02 17:37:04'), (2, 'Test', '<EMAIL>', NULL, '$2y$10$cSr5ok.3ik37ifxhlM0.Keu9Qvxal/E4JK9XjW5ETuLedYGU6Hn5a', 1, 'k33Fhwgaq8ZRua5vprnzjWGJ4W8dopp9946CJujQj8qMdnsHvTZPBIHnhSM8', '2021-11-26 21:47:33', '2021-12-02 17:43:09'); -- -- Индексы сохранённых таблиц -- -- -- Индексы таблицы `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `categories_title_unique` (`title`); -- -- Индексы таблицы `complaints` -- ALTER TABLE `complaints` ADD PRIMARY KEY (`id`), ADD KEY `complaints_song_id_foreign` (`song_id`), ADD KEY `complaints_status_id_foreign` (`status_id`); -- -- Индексы таблицы `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Индексы таблицы `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Индексы таблицы `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Индексы таблицы `sessions` -- ALTER TABLE `sessions` ADD PRIMARY KEY (`id`), ADD KEY `sessions_user_id_index` (`user_id`), ADD KEY `sessions_last_activity_index` (`last_activity`); -- -- Индексы таблицы `songs` -- ALTER TABLE `songs` ADD PRIMARY KEY (`id`), ADD KEY `songs_category_id_foreign` (`category_id`), ADD KEY `songs_status_id_foreign` (`status_id`); -- -- Индексы таблицы `statuses` -- ALTER TABLE `statuses` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `statuses_title_unique` (`title`); -- -- Индексы таблицы `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT для сохранённых таблиц -- -- -- AUTO_INCREMENT для таблицы `categories` -- ALTER TABLE `categories` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT для таблицы `complaints` -- ALTER TABLE `complaints` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT для таблицы `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `migrations` -- ALTER TABLE `migrations` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT для таблицы `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT для таблицы `songs` -- ALTER TABLE `songs` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT для таблицы `statuses` -- ALTER TABLE `statuses` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT для таблицы `users` -- ALTER TABLE `users` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Ограничения внешнего ключа сохраненных таблиц -- -- -- Ограничения внешнего ключа таблицы `complaints` -- ALTER TABLE `complaints` ADD CONSTRAINT `complaints_song_id_foreign` FOREIGN KEY (`song_id`) REFERENCES `songs` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `complaints_status_id_foreign` FOREIGN KEY (`status_id`) REFERENCES `statuses` (`id`); -- -- Ограничения внешнего ключа таблицы `songs` -- ALTER TABLE `songs` ADD CONSTRAINT `songs_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`), ADD CONSTRAINT `songs_status_id_foreign` FOREIGN KEY (`status_id`) REFERENCES `statuses` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE PROCEDURE usp_GetHoldersFullName AS BEGIN SELECT FirstName + ' ' + LastName AS [Full Name] FROM AccountHolders END
while(exists(select 1 from INFORMATION_SCHEMA.TABLE_CONSTRAINTS where CONSTRAINT_TYPE='FOREIGN KEY')) begin declare @sql nvarchar(2000) SELECT TOP 1 @sql=('ALTER TABLE ' + TABLE_SCHEMA + '.[' + TABLE_NAME + '] DROP CONSTRAINT [' + CONSTRAINT_NAME + ']') FROM information_schema.table_constraints WHERE CONSTRAINT_TYPE = 'FOREIGN KEY' exec (@sql) PRINT @sql end while(exists(select 1 from INFORMATION_SCHEMA.TABLES where TABLE_NAME != '__MigrationHistory' AND TABLE_TYPE = 'BASE TABLE')) begin declare @sql1 nvarchar(2000) SELECT TOP 1 @sql1=('DROP TABLE ' + TABLE_SCHEMA + '.[' + TABLE_NAME + ']') FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME != '__MigrationHistory' AND TABLE_TYPE = 'BASE TABLE' exec (@sql1) PRINT @sql1 end
<reponame>Bjornej/Bazooka<filename>Database/Database/Write/Applications.sql CREATE TABLE [dbo].[Applications] ( [Id] INT NOT NULL PRIMARY KEY IDENTITY, [Name] nvarchar(256) NOT NULL, [ApplicationGroupId] INT NULL, [Deleted] BIT NOT NULL DEFAULT 0, [Secret] UNIQUEIDENTIFIER NOT NULL DEFAULT NEWID(), CONSTRAINT [FK_Applications_ToApplicationGroups] FOREIGN KEY (ApplicationGroupId) REFERENCES [ApplicationGroups]([Id]) )
<reponame>pniewiadowski/DBTestCompare select addressid, addressline1, city, stateprovinceid, postalcode, modifieddate from public.personaddress order by addressid;
<gh_stars>100-1000 -- randexpr1.test -- -- db eval {SELECT t1.d+case when (t1.a)<=11 then ~t1.a else ~19 end-+~ -coalesce((select t1.d from t1 where ~t1.f in (select (cast(avg(t1.e+c) AS integer)) from t1 union select count(distinct (abs(coalesce((select max(19) from t1 where not ~11-t1.a=t1.c+case when t1.d between c and t1.d then 11 when t1.f>=17 then f else 19 end*t1.c),17)+f)/abs(f))) from t1)),11) FROM t1 WHERE e>c} SELECT t1.d+case when (t1.a)<=11 then ~t1.a else ~19 end-+~ -coalesce((select t1.d from t1 where ~t1.f in (select (cast(avg(t1.e+c) AS integer)) from t1 union select count(distinct (abs(coalesce((select max(19) from t1 where not ~11-t1.a=t1.c+case when t1.d between c and t1.d then 11 when t1.f>=17 then f else 19 end*t1.c),17)+f)/abs(f))) from t1)),11) FROM t1 WHERE e>c
<gh_stars>10-100 -- file:alter_table.sql ln:1467 expect:true alter table alterlock set without cluster
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jun 13, 2017 at 10:30 AM -- Server version: 10.1.9-MariaDB -- PHP Version: 5.6.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 utf8mb4 */; -- -- Database: `ocb` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `id` int(11) NOT NULL, `username` varchar(150) NOT NULL, `password` varchar(32) NOT NULL, `email` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`id`, `username`, `password`, `email`) VALUES (1, 'admin', '<PASSWORD>', '<EMAIL>'); -- -------------------------------------------------------- -- -- Table structure for table `booking` -- CREATE TABLE `booking` ( `id` int(11) NOT NULL, `movie_id` int(11) NOT NULL, `cinema_id` int(11) NOT NULL, `ticket_no` varchar(255) NOT NULL, `date` date NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `email` varchar(255) NOT NULL, `phone` varchar(20) NOT NULL, `age` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT '0', `id_number` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `booking` -- INSERT INTO `booking` (`id`, `movie_id`, `cinema_id`, `ticket_no`, `date`, `firstname`, `lastname`, `email`, `phone`, `age`, `status`, `id_number`) VALUES (1, 1, 4, '201612031000001', '2016-12-03', 'kevin', 'muchiri', '<EMAIL>', '0708087227', 24, 1, ''); -- -------------------------------------------------------- -- -- Table structure for table `cinemas` -- CREATE TABLE `cinemas` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `number_of_seats` int(11) NOT NULL, `address` text ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `cinemas` -- INSERT INTO `cinemas` (`id`, `name`, `number_of_seats`, `address`) VALUES (2, 'Cinemax Nakuru', 50, 'Agricuture House'), (3, 'Cinemax Machakos', 50, 'Mulleys Building'), (4, 'Cinemax Nairobi', 50, 'Imax Towers'); -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `id` int(11) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `email` varchar(255) NOT NULL, `subject` varchar(100) DEFAULT NULL, `message` text NOT NULL, `date` date NOT NULL, `is_seen` int(11) NOT NULL, `reply` text ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `comments` -- INSERT INTO `comments` (`id`, `firstname`, `lastname`, `email`, `subject`, `message`, `date`, `is_seen`, `reply`) VALUES (1, 'Kevin', 'Muchiri', '<EMAIL>', 'movies', 'Great selection', '2016-12-03', 0, 'Thank you for the comment'); -- -------------------------------------------------------- -- -- Table structure for table `movies` -- CREATE TABLE `movies` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `description` text, `preview` varchar(255) DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `genre` varchar(100) DEFAULT NULL, `price` float(15,2) NOT NULL, `rating` float(2,1) DEFAULT NULL, `year` int(11) DEFAULT NULL, `age` varchar(30) DEFAULT NULL, `country` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `movies` -- INSERT INTO `movies` (`id`, `name`, `description`, `preview`, `image`, `genre`, `price`, `rating`, `year`, `age`, `country`) VALUES (1, 'Zootopia', 'Based on an animation where animals live in real life human beings ', 'previews/Zootopia_Official_US_Trailer_2.mp4', 'images/703943.jpg', 'Animation', 350.00, 3.7, 2016, '1-10', 'United States'), (2, 'Central Intelligence', 'A comedy based on two friends who meet u at a reunion to catch a drug dealer', 'previews/Central_Intelligence_-_Official_Trailer_[HD_.mp4', 'images/4.jpg', 'Comedy', 350.00, 3.4, 2016, '14-18', 'United States'), (3, 'Chaos', 'Action packed film starring Jason stratham fighting the bad guys', 'previews/Chaos Trailer.mp4', 'images/Jason-in-Chaos-jason-statham-14341361.jpg', 'Action', 350.00, 2.4, 2005, '18-above', 'United States'); -- -------------------------------------------------------- -- -- Table structure for table `movie_periods` -- CREATE TABLE `movie_periods` ( `id` int(11) NOT NULL, `cinema_id` int(11) NOT NULL, `date` datetime NOT NULL, `movie_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `movie_periods` -- INSERT INTO `movie_periods` (`id`, `cinema_id`, `date`, `movie_id`) VALUES (1, 4, '2016-12-10 10:00:00', 1), (2, 3, '2016-12-10 14:00:00', 2); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`id`); -- -- Indexes for table `booking` -- ALTER TABLE `booking` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cinemas` -- ALTER TABLE `cinemas` ADD PRIMARY KEY (`id`); -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `movies` -- ALTER TABLE `movies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `movie_periods` -- ALTER TABLE `movie_periods` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin` -- ALTER TABLE `admin` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `booking` -- ALTER TABLE `booking` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `cinemas` -- ALTER TABLE `cinemas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `movies` -- ALTER TABLE `movies` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `movie_periods` -- ALTER TABLE `movie_periods` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; /*!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 */;
-- -- Table structure for table `bx_data_migration_transfers` -- CREATE TABLE `[db_prefix]transfers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `module` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `status` enum('not_started','started','finished','error') COLLATE utf8_unicode_ci NOT NULL, `status_text` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Table structure for table `bx_data_migration_config` -- CREATE TABLE `[db_prefix]config` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `value` varchar(150) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Admin menu ; -- INSERT INTO `sys_menu_admin` SET `name` = 'Data migration', `title` = '_bx_data_migration', `url` = '{siteUrl}modules/?r=data_migration/administration/', `description` = 'Migration all data from previous Dolphin version', `icon` = 'modules/boonex/data_migration/|data_migration.gif', `parent_id` = 2; -- -- Settings -- INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES ('bx_data_migration_permalinks', 'on', 26, 'Enable friendly permalinks in data migration module', 'checkbox', '', '', '0', ''); INSERT INTO `sys_permalinks` SET `standard` = 'modules/?r=data_migration/', `permalink` = 'm/data_migration/', `check` = 'bx_data_migration_permalinks'; -- -- Dumping data for table `sys_cron_jobs` -- INSERT INTO `sys_cron_jobs` (`name`, `time`, `class`, `file`) VALUES ('bx_data_migration', '*/5 * * * *', 'BxDataMigrationCron', 'modules/boonex/data_migration/classes/BxDataMigrationCron.php');
CREATE TABLE [dbo].[TOperatingDayDeviance] ( --From MergedXSDs XSD --From 'genericRailML' Namespace [TOperatingDayDevianceId] BIGINT NOT NULL, [OperatingCode] NVARCHAR(MAX) NOT NULL, [OnRequestValue] BIT NOT NULL, [OnRequestValueSpecified] BIT NOT NULL, [HolidayOffset] NVARCHAR(MAX) NOT NULL, [Ranking] NVARCHAR(MAX) NOT NULL, CONSTRAINT [PK_TOperatingDayDevianceId] PRIMARY KEY CLUSTERED ([TOperatingDayDevianceId] ASC) );
DROP TABLE IF EXISTS projects_developers; DROP TABLE IF EXISTS projects; DROP TABLE IF EXISTS developers; CREATE TABLE projects ( projectId INT NOT NULL AUTO_INCREMENT, description VARCHAR(255) NOT NULL , dateAdded DATETIME, PRIMARY KEY (projectId) ); CREATE TABLE developers ( developerId INT NOT NULL AUTO_INCREMENT, firstName VARCHAR(255) NOT NULL, lastName VARCHAR(255) NOT NULL, PRIMARY KEY (developerId) ); CREATE TABLE projects_developers ( projectId INT NOT NULL , developerId INT NOT NULL, PRIMARY KEY (projectId, developerId), CONSTRAINT FK_Projects FOREIGN KEY (projectId) REFERENCES projects (projectId) ON DELETE CASCADE, CONSTRAINT FK_Developers FOREIGN KEY (developerId) REFERENCES developers (developerId) ON DELETE CASCADE );
--2014.02.14 讨论结果 --数据源查询中不带窗口。不允许进行CQL的聚合运算以及having,sort等过滤条件 --全局参数定义 --允许定义全局参数,也可以在datasource内部定义私有参数,私有参数会覆盖全局参数 SET "datasource.rdb.driver" = "org.postgresql.Driver"; --定义数据源 --数据库用户名和密码暂时采用明文,后期统一对所有的用户名和密码进行加密处理 --必须是testmodel,因为数据库连接不上 set "streaming.common.istestmodel"="true"; CREATE INPUT STREAM Stream_voice_call ( CallingNumber STRING, CalledNumber STRING, ThirdNumber STRING, CallingIMSI STRING, CalledIMSI STRING, ThirdIMSI STRING, CallingIMEI STRING, CallingHome STRING, CalledHome STRING, CallingLac INT, CallingCellID INT, CalledLac INT, CalledCellID INT, MscCode INT, BscCode INT, CallTime LONG, ConnTime LONG, CallingNetType STRING, VipFlag STRING, CalledNetType STRING, InitTime LONG ) SERDE BinarySerDe PROPERTIES ("serde.binaryserde.attributeslength"="26,26,26,15,15,15,17,6,6,4,4,4,4,4,4,8,8,1,1,1,8") SOURCE 'com.huawei.streaming.cql.toolkits.operators.TCPServerInputOperator' PROPERTIES ("operator.tcpserver.port" = "7999","operator.tcpserver.fixedlength"="203"); CREATE DATASOURCE Rdb_viptable SOURCE 'com.huawei.streaming.datasource.RDBDataSource' PROPERTIES ( "datasource.rdb.url" = "jdbc:postgresql://192.168.0.2:5432/stream", "datasource.rdb.username"="postgres", "datasource.rdb.password"="<PASSWORD>" ); CREATE OUTPUT STREAM Hance_vip ( CallingNumber STRING, CalledNumber STRING, IsVip BOOLEAN ) SERDE SimpleSerDe PROPERTIES ("serde.simpleserde.separator" = ",") SINK 'com.huawei.streaming.operator.outputstream.ConsolePrintOp' PROPERTIES("operator.consoleprint.frequence"="1"); --INSERT INTO Hance_vip SELECT s.CallingNumber, s.CalledNumber, (CASE rdb.id WHEN null THEN FALSE ELSE TRUE END) AS IsVip FROM Stream_voice_call AS s, INSERT INTO Hance_vip SELECT s.CallingNumber, s.CalledNumber, (CASE rdb.id WHEN null THEN FALSE ELSE TRUE END) AS IsVip FROM Stream_voice_call AS s, DATASOURCE Rdb_viptable [ SCHEMA (id int,number String), QUERY("select * from viptable where number = '${s.CallingNumber}' ") ] rdb ; submit application case7_hance;
ALTER TABLE instances DROP COLUMN version;
<reponame>SkygearIO/skygear-server<gh_stars>100-1000 ALTER TABLE _core_user ADD COLUMN app_id TEXT; UPDATE _core_user SET app_id = ''; ALTER TABLE _core_user ALTER COLUMN app_id SET NOT NULL; CREATE INDEX _core_user_app_id_idx ON _core_user(app_id);
DROP TRIGGER `tri_after_newmember`;
CREATE TABLE `images` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', `basename` VARCHAR(255) NOT NULL COMMENT '带后缀的图片名', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='图片表';
--change DATETIMELTZ from without DEFAULT/constraints to with DEFAULT/constraints, strict yes set system parameters 'alter_table_change_type_strict=yes'; drop table if exists tz; create table tz( c_dtltz1 datetime with local time zone, c_dtltz2 datetime with local time zone, c_dtltz3 datetime with local time zone, c_dtltz4 datetime with local time zone, c_dtltz5 datetime with local time zone, c_dtltz6 datetime with local time zone ); insert into tz values('2014-07-01 18:00:00.789 -6:00', '2014-07-01 18:00:00.789 -6:00', '2014-07-01 18:00:00.789 -6:00','2014-07-01 18:00:00.789 -6:00', null, null); insert into tz values(null, '2014-07-01 18:00:00.789 -6:00', '2014-07-01 18:00:00.789 -6:00','2014-07-01 18:00:00.789 -5:00', '2014-07-01 18:00:00.789 -6:00', null); insert into tz values('2014-07-01 18:00:00.789 -6:00', null, '2014-07-01 18:00:00.789 -6:00','2014-07-01 19:00:00.789 -4:00', '2014-07-01 18:00:00.789 -6:00', null); insert into tz values('2014-07-01 18:00:00.789 -6:00', '2014-07-01 18:00:00.789 -6:00', '2014-07-01 20:00:00.789 -6:00', null, '2014-07-01 18:00:00.789 -6:00', null); --test: not null alter table tz change c_dtltz1 c_dtltz11 datetime with local time zone not null; desc tz; select * from tz order by 1, 2, 3, 4, 5; --test: default alter table tz change c_dtltz2 c_dtltz22 datetime with local time zone default now(); desc tz; select * from tz order by 1, 2, 3, 4, 5; --test: unique alter table tz change c_dtltz3 c_dtltz33 datetime with local time zone unique; show columns in tz; select * from tz order by 1, 2, 3, 4, 5; --test: pk alter table tz change c_dtltz4 c_dtltz44 datetime with local time zone primary key; show columns in tz; select * from tz order by 1, 2, 3, 4, 5; --test: not null + defualt alter table tz change c_dtltz5 c_dtltz55 datetime with local time zone not null default '2000-10-10 10:10:10.123 +00:00'; show full columns in tz; select * from tz order by 1, 2, 3, 4, 5; --test: unique + not null + default alter table tz change c_dtltz6 c_dtltz66 datetime with local time zone default '2000-10-10 10:10:10.123 +00:00' unique not null; show full columns in tz; select * from tz order by 1, 2, 3, 4, 5; drop table tz; set system parameters 'alter_table_change_type_strict=no';
-- test serial using 'start with', 'increment by' clause and many insert statements with 'next_value' attribute create class cnf_1( col1 int, col2 int, col3 int, col4 int, col5 int ); create serial cnf_col1 start with 1; create serial cnf_col2 start with 1 increment by 2; create serial cnf_col3 start with 10 increment by 3; create serial cnf_col4 start with 100000 increment by -1; create serial cnf_col5 start with 100000 increment by -3; insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); insert into cnf_1 values( cnf_col1.next_value, cnf_col2.next_value, cnf_col3.next_value, cnf_col4.next_value, cnf_col5.next_value ); select col1, col2, col3, col4, col5 from cnf_1 where col1 in ( select col1 from cnf_1 where not ( col2 > 10 and col1 < 40 ) ) order by 1,2,3,4,5; select col1, col2, col3, col4, col5 from cnf_1 where col1 in ( select col1 from cnf_1 where col1 <= 10 or col1 >= 40 ) order by 1,2,3,4,5; select col1, col2, col3, col4, col5 from cnf_1 order by 1,2,3,4,5; drop serial cnf_col1; drop serial cnf_col2; drop serial cnf_col3; drop serial cnf_col4; drop serial cnf_col5; drop class cnf_1;
-- @testpoint: opengauss关键字parameter_specific_schema非保留),作为索引名,部分测试点合理报错 --前置条件,创建一个表 drop table if exists explain_test; create table explain_test(id int,name varchar(10)); --关键字不带引号-成功 drop index if exists parameter_specific_schema; create index parameter_specific_schema on explain_test(id); drop index parameter_specific_schema; --关键字带双引号-成功 drop index if exists "parameter_specific_schema"; create index "parameter_specific_schema" on explain_test(id); drop index "parameter_specific_schema"; --关键字带单引号-合理报错 drop index if exists 'parameter_specific_schema'; create index 'parameter_specific_schema' on explain_test(id); --关键字带反引号-合理报错 drop index if exists `parameter_specific_schema`; create index `parameter_specific_schema` on explain_test(id); --清理环境 drop table if exists explain_test cascade;
-- @testpoint: opengauss关键字storage非保留),作为索引名,部分测试点合理报错 --前置条件,创建一个表 drop table if exists explain_test; create table explain_test(id int,name varchar(10)); --关键字不带引号-成功 drop index if exists storage; create index storage on explain_test(id); drop index storage; --关键字带双引号-成功 drop index if exists "storage"; create index "storage" on explain_test(id); drop index "storage"; --关键字带单引号-合理报错 drop index if exists 'storage'; create index 'storage' on explain_test(id); --关键字带反引号-合理报错 drop index if exists `storage`; create index `storage` on explain_test(id); drop table if exists explain_test;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.1.12 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jan 30, 2015 at 10:04 AM -- Server version: 5.6.16 -- PHP Version: 5.5.11 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: `kepoers` -- -- -------------------------------------------------------- -- -- Table structure for table `question` -- CREATE TABLE IF NOT EXISTS `question` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `question` text NOT NULL, `mark` tinyint(2) NOT NULL DEFAULT '1', `created_at` date NOT NULL, `updated_at` date NOT NULL, `asker_id` int(10) unsigned NOT NULL, `flag_id` tinyint(2) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `asker_id` (`asker_id`), KEY `flag_id` (`flag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Table question yang memuat data question secara keseluruhan' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `questionflag` -- CREATE TABLE IF NOT EXISTS `questionflag` ( `id` tinyint(2) unsigned NOT NULL, `option` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `questionflag` -- INSERT INTO `questionflag` (`id`, `option`) VALUES (1, 'User'), (2, 'Anonim'); -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE IF NOT EXISTS `roles` ( `id` int(10) unsigned NOT NULL, `role` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `role`) VALUES (1, 'admin'), (2, 'user'); -- -------------------------------------------------------- -- -- Table structure for table `subscriber` -- CREATE TABLE IF NOT EXISTS `subscriber` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `subscribing_id` int(10) unsigned NOT NULL, `subscriber_list_id` int(10) unsigned NOT NULL, `created_at` date NOT NULL, `updated_at` date NOT NULL, PRIMARY KEY (`id`), KEY `subscribing_id` (`subscribing_id`), KEY `subscriber_list_id` (`subscriber_list_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `subscriber_list` -- CREATE TABLE IF NOT EXISTS `subscriber_list` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `subscriber_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `subscriber_id` (`subscriber_id`), KEY `subscriber_id_2` (`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` char(255) NOT NULL, `fname` varchar(64) NOT NULL, `lname` varchar(64) NOT NULL, `email` varchar(225) NOT NULL, `country` varchar(100) NOT NULL, `address` varchar(100) NOT NULL, `gender` varchar(20) NOT NULL, `created_at` date NOT NULL, `updated_at` date NOT NULL, `remember_token` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `password`, `fname`, `lname`, `email`, `country`, `address`, `gender`, `created_at`, `updated_at`, `remember_token`) VALUES (2, 'amanda', '$2y$10$JMIu02JYG45mXZ27xKmLpeESQQfWqpq6bwFPGDFHdGgQsJEB0Ygh2', '', '', '<EMAIL>', '', '', '', '2015-01-27', '0000-00-00', '1Q88f913muhgQPx9d7kn63bsJHXWvu6FiqP3jh4W4hUPk4Z7JGUltfHCMrLb'), (3, 'amandaPutri', '$2y$10$SxVR0pV83mf6Dzgg/ZoW7u1pq3YOOdIlfTFdrpV7ySrQmwbeigZ82', '', '', '<EMAIL>', '', '', '', '2015-01-27', '0000-00-00', '1cKwex9ds6URyIAvJV4voGLm64DXfB7VoEL3yZyHHl4oYRRe7b6NIvBzqJDs'), (4, 'rachmat', '$2y$10$TgrWFmx/apAPL2eg5gXEeegJX0bMeZ9DPM1YgBs/X5ovxbMTewdUK', '', '', '<EMAIL>', '', '', '', '2015-01-28', '2015-01-28', ''), (10, 'tesuserdaaaa', '$2y$10$vw7lzakHNfc1V/vutAgDKOBygdQjBo2q9y/ZRpYJheX8Teb2pYTrK', '', '', '<EMAIL>', '', '', '', '2015-01-29', '2015-01-29', ''), (11, 'adminganteng', '$2y$10$z0XcwFWwHnDtcCWt4srfh.m.ZQb4NoTwvhNy6WLALA80sZHt5mWMu', '', '', '<EMAIL>', '', '', '', '2015-01-29', '2015-01-30', 'ZPhk2eJaLsEuEoI9N1nzgCCnLeIdk38dsetSqOHrJFxdBvSRPjO6QueJfXxI'), (12, 'tesuserdua', '$2y$10$VS1.XCD.x2txgpPRSubyWOOrB504Di0Llrl8l23io3Dk9FmDcrhMu', '', '', '<EMAIL>', '', '', '', '2015-01-29', '2015-01-29', ''); -- -------------------------------------------------------- -- -- Table structure for table `user_role` -- CREATE TABLE IF NOT EXISTS `user_role` ( `user_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, KEY `user_id` (`user_id`), KEY `role_id` (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_role` -- INSERT INTO `user_role` (`user_id`, `role_id`) VALUES (10, 1), (11, 1), (12, 2); -- -- Constraints for dumped tables -- -- -- Constraints for table `question` -- ALTER TABLE `question` ADD CONSTRAINT `question_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `question_ibfk_3` FOREIGN KEY (`flag_id`) REFERENCES `questionflag` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `question_ibfk_4` FOREIGN KEY (`asker_id`) REFERENCES `subscriber` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `subscriber` -- ALTER TABLE `subscriber` ADD CONSTRAINT `subscriber_ibfk_1` FOREIGN KEY (`subscribing_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `subscriber_list` -- ALTER TABLE `subscriber_list` ADD CONSTRAINT `subscriber_list_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `subscriber_list_ibfk_2` FOREIGN KEY (`subscriber_id`) REFERENCES `subscriber` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_role` -- ALTER TABLE `user_role` ADD CONSTRAINT `user_role_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_role_ibfk_2` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
--SELECT CAST(EXTRACT(YEAR FROM (cast("CommonGovernment_4"."signeddate" as DATE) + 3 * INTERVAL '1' MONTH)) AS BIGINT) AS "yr:signeddate:ok" FROM "CommonGovernment_4" GROUP BY 1;
use SQL2 go --select statements against SQL2 database gor SQL Tuning template --Create a user profiler template SELECT TOP 1000 [PeopleID] ,[Fname] ,[Lname] ,[Address1] ,[City] ,[State] ,[Zip] ,[Country] ,[Phone] FROM [SQL2].[dbo].[People] WHERE LNAME = 'Garcia' --<< note that SQL will recommend INCLUDED columns to index when included in the select clause SELECT TOP 10000 [Lname] FROM [SQL2].[dbo].[People] WHERE LNAME = 'Houston' --<< note that SQL will NOT recommend INCLUDED columns to index when not included in the select statement SELECT TOP 10000 * FROM [SQL2].[dbo].[People] WHERE Fname = 'gloria' --<<the query optimizer detects that the where clause refers to the fname SELECT TOP 1000000 * FROM [SQL2].[dbo].[People] WHERE state = 'Utah' --<<the query optimizer detects that the where clause refers to the state
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; CREATE SCHEMA IF NOT EXISTS `bicheame` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ; USE `bicheame` ; -- ----------------------------------------------------- -- Table `bicheame`.`domain` -- ----------------------------------------------------- DROP TABLE IF EXISTS `bicheame`.`domain` ; CREATE TABLE IF NOT EXISTS `bicheame`.`domain` ( `domain_id` INT NOT NULL AUTO_INCREMENT , `domain_name` VARCHAR(60) NOT NULL , `domain_blocked` TINYINT NOT NULL DEFAULT 0 , `domain_date` DATETIME NOT NULL , PRIMARY KEY (`domain_id`) ) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `bicheame`.`login` -- ----------------------------------------------------- DROP TABLE IF EXISTS `bicheame`.`login` ; CREATE TABLE IF NOT EXISTS `bicheame`.`login` ( `login_id` INT NOT NULL AUTO_INCREMENT , `domain_id` INT NOT NULL , `login_username` VARCHAR(45) NOT NULL , `login_password` VARCHAR(45) NOT NULL , `login_comment` VARCHAR(45) NULL , `login_date` DATETIME NOT NULL , `votes_positive` INT NOT NULL DEFAULT 0 , `votes_negative` INT NOT NULL DEFAULT 0 , PRIMARY KEY (`login_id`) ) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `bicheame`.`vote` -- ----------------------------------------------------- DROP TABLE IF EXISTS `bicheame`.`vote` ; CREATE TABLE IF NOT EXISTS `bicheame`.`vote` ( `vote_id` INT NOT NULL AUTO_INCREMENT , `login_id` INT NOT NULL , `vote_value` TINYINT NOT NULL , `vote_ip` VARCHAR(45) NULL , `vote_date` DATETIME NOT NULL , PRIMARY KEY (`vote_id`) , INDEX `fk_vote_1` (`login_id` ASC) ) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `bicheame`.`config` -- ----------------------------------------------------- DROP TABLE IF EXISTS `bicheame`.`config` ; CREATE TABLE IF NOT EXISTS `bicheame`.`config` ( `site_name` VARCHAR(45) NOT NULL , `site_enabled` TINYINT NOT NULL , `admin_user` VARCHAR(45) NOT NULL , `admin_password` VARCHAR(45) NOT NULL ) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
-- apply changes create table usuario ( id bigserial not null, full_name varchar(255), username varchar(255) not null, email varchar(255), password varchar(255) not null, role_admin boolean, role_impresor boolean, role_consulta boolean, constraint uq_usuario_username unique (username), constraint pk_usuario primary key (id) );
-- MySQL Script generated by MySQL Workbench -- Fri Jan 26 20:15:10 2018 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema mydb -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema mydb -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `mydb` DEFAULT CHARACTER SET utf8 ; USE `mydb` ; -- ----------------------------------------------------- -- Table `mydb`.`authors` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`authors` ( `id` INT(11) NOT NULL, `name` VARCHAR(45) NOT NULL, `bio` TINYTEXT NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`categories` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`categories` ( `id` INT(10) NOT NULL, `name` VARCHAR(45) NOT NULL, `description` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`publishers` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`publishers` ( `id` INT(11) NOT NULL, `name` VARCHAR(45) NOT NULL, `description` TEXT NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`users` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`users` ( `id` INT(11) NOT NULL, `username` VARCHAR(45) NOT NULL, `password` VARCHAR(60) NOT NULL, `is_admin` TINYINT(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`magnet_uri` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`magnet_uri` ( `id` INT(11) NOT NULL, `exact_topic` TEXT NOT NULL, `display_name` VARCHAR(250) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`torrents` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`torrents` ( `id` INT(11) NOT NULL, `magnet_id` INT(11) NOT NULL, `seeders` INT(11) NOT NULL, `leechers` INT(11) NOT NULL, `date_added` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `date_updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `archived` TINYINT(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), INDEX `magnet_id` (`magnet_id` ASC), CONSTRAINT `torrents_ibfk_2` FOREIGN KEY (`magnet_id`) REFERENCES `mydb`.`magnet_uri` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`books` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`books` ( `id` INT(11) NOT NULL, `author` INT(11) NOT NULL, `title` VARCHAR(45) NOT NULL, `isbn` VARCHAR(17) NOT NULL, `edition` TINYINT(4) NOT NULL, `volume` TINYINT(4) NOT NULL, `publisher` INT(11) NOT NULL, `category` INT(11) NOT NULL, `submitted_by` INT(11) NOT NULL, `torrent_id` INT(11) NOT NULL, PRIMARY KEY (`id`), INDEX `publishers` (`publisher` ASC), INDEX `author` (`author` ASC), INDEX `category` (`category` ASC), INDEX `submitted_by` (`submitted_by` ASC), INDEX `torrent_id` (`torrent_id` ASC), CONSTRAINT `authors` FOREIGN KEY (`author`) REFERENCES `mydb`.`authors` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `category` FOREIGN KEY (`category`) REFERENCES `mydb`.`categories` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `publishers` FOREIGN KEY (`publisher`) REFERENCES `mydb`.`publishers` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `submitted_by` FOREIGN KEY (`submitted_by`) REFERENCES `mydb`.`users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `torrent_id` FOREIGN KEY (`torrent_id`) REFERENCES `mydb`.`torrents` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`comments` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`comments` ( `id` INT(11) NOT NULL, `book_id` INT(11) NOT NULL, `user_id` INT(11) NOT NULL, `comment` TEXT NOT NULL, PRIMARY KEY (`id`), INDEX `book_id` (`book_id` ASC), INDEX `user_id` (`user_id` ASC), CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `mydb`.`users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `book_id` FOREIGN KEY (`book_id`) REFERENCES `mydb`.`books` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`trackers` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`trackers` ( `id` INT(11) NOT NULL, `uri` VARCHAR(250) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; -- ----------------------------------------------------- -- Table `mydb`.`magnet_trackers` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`magnet_trackers` ( `magnet_id` INT(11) NOT NULL, `tracker_id` INT(11) NOT NULL, INDEX `magnet_id` (`magnet_id` ASC), INDEX `tracker_id` (`tracker_id` ASC), CONSTRAINT `magnet_id` FOREIGN KEY (`magnet_id`) REFERENCES `mydb`.`magnet_uri` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `tracker_id` FOREIGN KEY (`tracker_id`) REFERENCES `mydb`.`trackers` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8; USE `mydb` ; -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`average_book_age` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`average_book_age` (`avg_book_age` INT); -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`book_count` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`book_count` (`book_count` INT); -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`category_books_report` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`category_books_report` (`name` INT, `book_count` INT); -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`comment_book_count` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`comment_book_count` (`comment_count` INT, `book_id` INT, `book_name` INT); -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`counts_report` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`counts_report` (`authors_count` INT, `publishers_count` INT, `categories_count` INT); -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`most_commented_book` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`most_commented_book` (`comment_count` INT, `book_id` INT, `book_title` INT); -- ----------------------------------------------------- -- Placeholder table for view `mydb`.`torrents_timestamp_diff` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`torrents_timestamp_diff` (`diff` INT); -- ----------------------------------------------------- -- procedure archive_torrents -- ----------------------------------------------------- DELIMITER $$ USE `mydb`$$ CREATE DEFINER=`claudi12`@`localhost` PROCEDURE `archive_torrents` (IN `start_updated` TIMESTAMP, IN `end_updated` TIMESTAMP, OUT `archivedcount` INT) BEGIN DECLARE done INT DEFAULT 0; DECLARE archived_count INT; DECLARE torrent_id INT; DECLARE torrent_updated TIMESTAMP; DECLARE c CURSOR FOR SELECT id,date_updated FROM torrents; DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1; set archived_count=0; OPEN c; torrentLoop: LOOP FETCH c INTO torrent_id,torrent_updated; IF done = 1 THEN LEAVE torrentLoop; END IF; IF (torrent_updated > start_updated AND torrent_updated < end_updated) THEN UPDATE torrents SET archived = 1 WHERE id=torrent_id; SET archived_count = archived_count+1; END IF; END LOOP; CLOSE c; select archived_count into `archivedcount`; END$$ DELIMITER ; -- ----------------------------------------------------- -- function age_function -- ----------------------------------------------------- DELIMITER $$ USE `mydb`$$ CREATE DEFINER=`claudi12`@`localhost` FUNCTION `age_function` (`book_id` INT) RETURNS VARCHAR(45) CHARSET utf8 BEGIN DECLARE age_var VARCHAR(45); SELECT TIME_FORMAT(SEC_TO_TIME(diff*-1),'%Hh %im') INTO age_var from (select TIMESTAMPDIFF(SECOND, NOW(), t.date_added) as diff FROM torrents t inner join books b on b.torrent_id=t.id where b.id=book_id) as time_diff; RETURN age_var; END$$ DELIMITER ; -- ----------------------------------------------------- -- View `mydb`.`average_book_age` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`average_book_age`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `average_book_age` AS select time_format(sec_to_time((avg(`torrents_timestamp_diff`.`diff`) * -(1))),'%Hh %im') AS `avg_book_age` from `torrents_timestamp_diff`; -- ----------------------------------------------------- -- View `mydb`.`book_count` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`book_count`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `book_count` AS select count(0) AS `book_count` from `books`; -- ----------------------------------------------------- -- View `mydb`.`category_books_report` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`category_books_report`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `category_books_report` AS select `c`.`name` AS `name`,count(`books`.`id`) AS `book_count` from (`books` join `categories` `c` on((`c`.`id` = `books`.`category`))) group by `books`.`category`; -- ----------------------------------------------------- -- View `mydb`.`comment_book_count` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`comment_book_count`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `comment_book_count` AS select count(0) AS comment_count,c.book_id AS book_id,b.title as book_name from comments c inner join books b on c.book_id=b.id group by c.book_id; -- ----------------------------------------------------- -- View `mydb`.`counts_report` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`counts_report`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `counts_report` AS select count(`authors`.`id`) AS `authors_count`,count(`publishers`.`id`) AS `publishers_count`,count(`categories`.`id`) AS `categories_count` from ((`authors` join `publishers`) join `categories`); -- ----------------------------------------------------- -- View `mydb`.`most_commented_book` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`most_commented_book`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `most_commented_book` AS select max(`comment_book_count`.`comment_count`) AS `comment_count`,`comment_book_count`.`book_id` AS `book_id`, b.title as book_title from `comment_book_count` inner join books b on comment_book_count.book_id=b.id; -- ----------------------------------------------------- -- View `mydb`.`torrents_timestamp_diff` -- ----------------------------------------------------- DROP TABLE IF EXISTS `mydb`.`torrents_timestamp_diff`; USE `mydb`; CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`claudi12`@`localhost` SQL SECURITY DEFINER VIEW `torrents_timestamp_diff` AS select timestampdiff(SECOND,now(),`torrents`.`date_added`) AS `diff` from `torrents`; USE `mydb`; DELIMITER $$ USE `mydb`$$ CREATE TRIGGER `archive_book_torrents` BEFORE DELETE ON `books` FOR EACH ROW UPDATE torrents SET archived=1 WHERE id=OLD.torrent_id$$ DELIMITER ; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
<reponame>giangnguyenhoangda/Shopping_Cart -- phpMyAdmin SQL Dump -- version 4.7.7 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 05, 2018 at 11:42 AM -- Server version: 10.1.30-MariaDB -- PHP Version: 7.2.2 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: `lab10` -- -- -------------------------------------------------------- -- -- Table structure for table `product` -- CREATE TABLE `product` ( `id` int(11) NOT NULL, `product_name` varchar(255) NOT NULL, `logo` text NOT NULL, `publisher` varchar(255) NOT NULL, `sku` varchar(255) NOT NULL, `platform` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `product` -- INSERT INTO `product` (`id`, `product_name`, `logo`, `publisher`, `sku`, `platform`) VALUES (1, 'Microsoft Azure for Students Starter', 'http://localhost/lab10/filelogo/32f2a6c4-4d3e-4d0f-ad98-900acc46fb66.png', 'Microsoft Corporation', '0000', 'Windows'), (2, 'Windows 10 Education', 'http://localhost/lab10/filelogo/bebfe197-a85a-498c-bdaa-7a03ae6366f9.png', 'Microsoft Corp.', '0001', 'Windows'), (3, 'Visual Studio Enterprise 2017', 'http://localhost/lab10/filelogo/5898e517-34d6-4fa5-844f-9a4be81c2b78.png', 'Microsoft Corp.', '0002', 'Windows'), (4, 'Windows Server 2016', 'http://localhost/lab10/filelogo/56e8b87b-e251-4a41-b626-296bcb260dd1.png', 'Microsoft Corp.', '0003', 'Windows'), (5, 'Access 2016', 'http://localhost/lab10/filelogo/84a6efa1-faa3-e511-9413-b8ca3a5db7a1.png', 'Microsoft Corp.', '0004', 'Windows'), (6, 'Project Professional 2016', 'http://localhost/lab10/filelogo/2e788ab7-3a0f-4119-a1f8-7dc943b217a7.png', 'Microsoft Corp.', '0005', 'Windows'), (7, 'Visio Professional 2016', 'http://localhost/lab10/filelogo/8c2be168-a74d-46ac-b5da-16ab93986484.png', 'Microsoft Corp', '0006', 'Windows'), (8, 'Visio Professional 2013', 'http://localhost/lab10/filelogo/630de8a7-faa3-e511-9413-b8ca3a5db7a1.png', 'Windows', '0007', 'Microsoft Corp'), (9, 'Windows 8.1 Professional', 'http://localhost/lab10/filelogo/c1d5e2ad-faa3-e511-9413-b8ca3a5db7a1.png', 'Microsoft Corp', '0009', 'Windows'); -- -- Indexes for dumped tables -- -- -- Indexes for table `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `product` -- ALTER TABLE `product` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.9.5 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Waktu pembuatan: 21 Bulan Mei 2021 pada 15.24 -- Versi server: 10.2.37-MariaDB-cll-lve -- Versi PHP: 7.3.27 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: `fatm1391_simpas` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_other` -- CREATE TABLE `tb_other` ( `id_other` int(11) NOT NULL, `warning` mediumtext NOT NULL, `info` mediumtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_other` -- INSERT INTO `tb_other` (`id_other`, `warning`, `info`) VALUES (1, 'Gasek Multimedia atau yang biasa disebut gasmul ini adalah badan otonom yang menangani bidang multimedia, komunikasi, informasi dan dokumentasi. Selain itu Gasmul juga melayani Peminjaman Barang, Penyediaan Jasa, serta Printing. Gasek multimedia ini beranggotakan dari santriwan santriwati Pondok Pesantren Sabilurrosyad. Gasek Multimedia mempunyai 6 divisi dengan beberapa jobdisk. Gasek Multimedia terdiri dari Divisi Web, Divisi Content Creator, Divisi Teknisi, Divisi Fotografi, Divisi Desain, Divisi Teknisi2.', 'masiyo ngglele kudu tetep ketok gagah! KOYO CAK IMIN KAE LHO! | melayani titip duwik buat cod, hub. +6281335336139'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_paket` -- CREATE TABLE `tb_paket` ( `id_paket` int(255) NOT NULL, `id_santri` int(225) NOT NULL, `nama_paket` varchar(50) NOT NULL, `penerima` varchar(50) NOT NULL, `jenis_kirim` varchar(8) NOT NULL DEFAULT 'Langsung', `tgl_terima` varchar(20) DEFAULT NULL, `tgl_ambil` varchar(20) DEFAULT NULL, `pengambil` varchar(50) NOT NULL, `status_ambil` varchar(20) DEFAULT NULL, `hp` varchar(13) NOT NULL, `creat_at` varchar(20) DEFAULT NULL, `modified_at` varchar(20) DEFAULT NULL, `tahun` varchar(4) NOT NULL, `jml_paket` int(2) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_paket` -- INSERT INTO `tb_paket` (`id_paket`, `id_santri`, `nama_paket`, `penerima`, `jenis_kirim`, `tgl_terima`, `tgl_ambil`, `pengambil`, `status_ambil`, `hp`, `creat_at`, `modified_at`, `tahun`, `jml_paket`) VALUES (1, 0, 'Ulil Albab', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '26-04-2021 00:59:41', '', '26-04-2021 00:59:41', '082223458083', '08-03-2021 08:18:58', '26-04-2021 00:59:41', '2021', 1), (4, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '082334841293', '08-03-2021 08:18:58', NULL, '2021', 1), (5, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '085215109163', '08-03-2021 08:18:58', NULL, '2021', 1), (7, 0, 'Zulfikri', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '082251716846', '08-03-2021 08:18:58', NULL, '2021', 1), (8, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '0820006568', '08-03-2021 08:18:58', NULL, '2021', 1), (9, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '085156164398', '08-03-2021 08:18:58', NULL, '2021', 1), (11, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '082334165064', '08-03-2021 08:18:58', NULL, '2021', 1), (13, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '085923867728', '08-03-2021 08:18:58', NULL, '2021', 1), (16, 0, '<NAME> (SMA)', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '26-04-2021 00:59:52', 'rou', '26-04-2021 00:59:52', '085230447867', '08-03-2021 08:18:58', '26-04-2021 00:59:52', '2021', 1), (17, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '081342259095', '08-03-2021 08:18:58', NULL, '2021', 1), (20, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '13-03-2021 06:22:27', 'WS', '13-03-2021 06:22:27', '085608165409', '08-03-2021 08:18:58', '13-03-2021 06:22:27', '2021', 1), (21, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '12-03-2021 14:06:02', 'ws', '12-03-2021 14:06:02', '085854404718', '08-03-2021 08:18:58', '12-03-2021 14:06:02', '2021', 1), (22, 0, '<NAME>\'', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '10-03-2021 06:23:34', 'ALFAUZU', '10-03-2021 06:23:34', '081232890623', '08-03-2021 08:18:58', '10-03-2021 06:23:34', '2021', 1), (23, 0, 'Izki', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '09-03-2021 20:53:25', 'izki', '09-03-2021 20:53:25', '085854313284', '08-03-2021 08:18:58', '09-03-2021 20:53:25', '2021', 1), (24, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '13-03-2021 06:26:43', '00', '13-03-2021 06:26:43', '081261264969', '08-03-2021 08:18:58', '13-03-2021 06:26:43', '2021', 1), (25, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '13-03-2021 06:25:01', 'aku', '13-03-2021 06:25:01', '082140898252', '08-03-2021 08:18:58', '13-03-2021 06:25:01', '2021', 1), (26, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '13-03-2021 06:25:45', '00', '13-03-2021 06:25:45', '085815626922', '08-03-2021 08:18:58', '13-03-2021 06:25:45', '2021', 1), (27, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '13-03-2021 06:27:02', '00', '13-03-2021 06:27:02', '082337799558', '08-03-2021 08:18:58', '13-03-2021 06:27:02', '2021', 1), (28, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', '10-03-2021 13:01:38', 'nazil', '10-03-2021 13:01:38', '081554905399', '08-03-2021 08:18:58', '10-03-2021 13:01:38', '2021', 1), (29, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '085961440936', '08-03-2021 08:18:58', NULL, '2021', 1), (32, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '085604408466', '08-03-2021 08:18:58', NULL, '2021', 1), (33, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 08:18:58', NULL, '', NULL, '085604554848', '08-03-2021 08:18:58', NULL, '2021', 1), (34, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:37:07', 'ilmi', '09-03-2021 18:37:07', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:37:07', '2021', 1), (35, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:37:29', 'ilmi', '09-03-2021 18:37:29', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:37:29', '2021', 1), (36, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:37:46', 'ilmi', '09-03-2021 18:37:46', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:37:46', '2021', 1), (37, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:38:00', 'ilmi', '09-03-2021 18:38:00', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:38:00', '2021', 1), (38, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:38:13', 'ilmi', '09-03-2021 18:38:13', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:38:13', '2021', 1), (39, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:38:29', 'ilmi', '09-03-2021 18:38:29', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:38:29', '2021', 1), (40, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:38:42', 'ilmi', '09-03-2021 18:38:42', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:38:42', '2021', 1), (41, 0, '<NAME> ', 'Gasmul', 'Langsung', '08-03-2021 09:17:35', '09-03-2021 18:36:21', 'ilmi', '09-03-2021 18:36:21', '085804054052', '08-03-2021 09:17:35', '09-03-2021 18:36:21', '2021', 1), (42, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 09:30:45', '13-03-2021 06:27:21', '00', '13-03-2021 06:27:21', '085815626922', '08-03-2021 09:30:45', '13-03-2021 06:27:21', '2021', 1), (43, 0, '<NAME>', 'Gasmul', 'Langsung', '08-03-2021 09:30:45', '13-03-2021 06:30:01', '00', '13-03-2021 06:30:01', '082229310320', '08-03-2021 09:30:45', '13-03-2021 06:30:01', '2021', 1), (45, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '13-03-2021 06:28:05', '00', '13-03-2021 06:28:05', '085931362683', '09-03-2021 01:01:27', '13-03-2021 06:28:05', '2021', 1), (46, 0, 'taufik', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', NULL, '', NULL, '081553540642', '09-03-2021 01:01:27', NULL, '2021', 1), (47, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '13-03-2021 06:42:58', '00', '13-03-2021 06:42:58', '081357802043', '09-03-2021 01:01:27', '13-03-2021 06:42:58', '2021', 1), (49, 0, 'anggi catur', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '20-03-2021 13:47:04', 'angi catoer', '20-03-2021 13:47:04', '085608650105', '09-03-2021 01:01:27', '20-03-2021 13:47:04', '2021', 1), (50, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '13-03-2021 06:29:00', '00', '13-03-2021 06:29:00', '085855139298', '09-03-2021 01:01:27', '13-03-2021 06:29:00', '2021', 1), (51, 0, 'vina rizqi h.k', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', NULL, '', NULL, '085770305040', '09-03-2021 01:01:27', NULL, '2021', 1), (52, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '09-03-2021 21:10:12', 'qon', '09-03-2021 21:10:12', '082153042803', '09-03-2021 01:01:27', '09-03-2021 21:10:12', '2021', 1), (53, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '10-03-2021 12:51:51', 'wonge', '10-03-2021 12:51:51', '081237134196', '09-03-2021 01:01:27', '10-03-2021 12:51:51', '2021', 1), (54, 0, '<NAME> ', 'Gasmul', 'Langsung', '09-03-2021 01:01:27', '09-03-2021 09:12:24', 'Fadh', '09-03-2021 18:34:11', '081342259095', '09-03-2021 01:01:27', '09-03-2021 09:12:24', '2021', 1), (55, 0, '<NAME> SMA', 'Gasmul', 'Langsung', '09-03-2021 06:34:11', NULL, '', NULL, '089654954646', '09-03-2021 06:34:11', NULL, '2021', 1), (56, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 06:40:29', '12-03-2021 14:00:20', 'WES', '12-03-2021 14:00:20', '082245222334', '09-03-2021 06:40:29', '12-03-2021 14:00:20', '2021', 1), (57, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 08:57:21', '10-03-2021 19:27:34', 'fida ulil istiqomah', '10-03-2021 19:27:34', '085604408466', '09-03-2021 08:57:21', '10-03-2021 19:27:34', '2021', 1), (58, 0, '<NAME>', 'Gasmul', 'Langsung', '09-03-2021 08:57:21', '09-03-2021 20:57:21', 'qon', '09-03-2021 20:57:21', '082140898252', '09-03-2021 08:57:21', '09-03-2021 20:57:21', '2021', 1), (59, 0, 'Alvira', 'Gasmul', 'Langsung', '10-03-2021 10:05:32', '13-03-2021 06:28:42', '00', '13-03-2021 06:28:42', '083134823299', '10-03-2021 10:05:32', '13-03-2021 06:28:42', '2021', 1), (60, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 10:05:32', '12-03-2021 12:56:35', 'mar`ah', '12-03-2021 12:56:35', '081377931517', '10-03-2021 10:05:32', '12-03-2021 12:56:35', '2021', 1), (61, 0, 'muhammad ggibran af', 'Gasmul', 'Langsung', '10-03-2021 10:37:02', '10-03-2021 17:10:23', 'afkara', '10-03-2021 17:10:23', '082237368591', '10-03-2021 10:37:02', '10-03-2021 17:10:23', '2021', 1), (62, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:44:45', NULL, '', NULL, '089539122267', '10-03-2021 12:44:45', NULL, '2021', 1), (63, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:44:45', '10-03-2021 18:38:26', 'ida rahayu', '10-03-2021 18:38:26', '082131032269', '10-03-2021 12:44:45', '10-03-2021 18:38:26', '2021', 1), (64, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:44:45', '13-03-2021 06:27:43', '00', '13-03-2021 06:27:43', '0812143437705', '10-03-2021 12:44:45', '13-03-2021 06:27:43', '2021', 1), (65, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:44:45', '13-03-2021 06:32:01', '00', '13-03-2021 06:32:01', '081214377059', '10-03-2021 12:44:45', '13-03-2021 06:32:01', '2021', 1), (66, 0, 'aida m noor', 'Gasmul', 'Langsung', '10-03-2021 12:44:45', '13-03-2021 06:37:34', '00', '13-03-2021 06:37:34', '081294373308', '10-03-2021 12:44:45', '13-03-2021 06:37:34', '2021', 1), (67, 0, 'af<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:44:45', NULL, '', NULL, '089637499547', '10-03-2021 12:44:45', NULL, '2021', 1), (68, 0, 'ag<NAME>im', 'Gasmul', 'Langsung', '10-03-2021 12:52:07', '13-03-2021 06:39:06', '000', '13-03-2021 06:39:06', '085746446620', '10-03-2021 12:52:07', '13-03-2021 06:39:06', '2021', 1), (69, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:52:07', '13-03-2021 06:38:14', 'xx', '13-03-2021 06:38:14', '085715303823', '10-03-2021 12:52:07', '13-03-2021 06:38:14', '2021', 1), (70, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:52:07', '13-03-2021 06:41:34', '00', '13-03-2021 06:41:34', '082233625400', '10-03-2021 12:52:07', '13-03-2021 06:41:34', '2021', 1), (71, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:52:07', '10-03-2021 13:58:27', 'MILA', '10-03-2021 13:58:27', '082330733048', '10-03-2021 12:52:07', '10-03-2021 13:58:27', '2021', 1), (72, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 12:56:30', NULL, '', NULL, '085806584420', '10-03-2021 12:56:30', NULL, '2021', 1), (73, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 10:37:02', '13-03-2021 06:41:11', '00', '13-03-2021 06:41:11', '081214377059', '10-03-2021 10:37:02', '13-03-2021 06:41:11', '2021', 1), (75, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 01:57:11', '13-03-2021 06:43:13', '00', '13-03-2021 06:43:13', '085227486365', '10-03-2021 01:57:11', '13-03-2021 06:43:13', '2021', 1), (76, 0, 'MUFI', 'Gasmul', 'Langsung', '10-03-2021 01:58:27', '13-03-2021 06:40:54', '00', '13-03-2021 06:40:54', '085607932877', '10-03-2021 01:58:27', '13-03-2021 06:40:54', '2021', 1), (77, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 02:00:48', '13-03-2021 06:40:26', '00', '13-03-2021 06:40:26', '081294373308', '10-03-2021 02:00:48', '13-03-2021 06:40:26', '2021', 1), (78, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 02:00:48', '13-03-2021 06:45:06', '00', '13-03-2021 06:45:06', '081392281521', '10-03-2021 02:00:48', '13-03-2021 06:45:06', '2021', 1), (79, 0, 'Alvira', 'Gasmul', 'Langsung', '10-03-2021 02:00:48', '13-03-2021 06:45:21', '00', '13-03-2021 06:45:21', '083134823299', '10-03-2021 02:00:48', '13-03-2021 06:45:21', '2021', 1), (80, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 02:00:48', '13-03-2021 23:03:43', 'david', '13-03-2021 23:03:43', '085854530695', '10-03-2021 02:00:48', '13-03-2021 23:03:43', '2021', 1), (81, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 02:00:48', '13-03-2021 06:43:42', '00', '13-03-2021 06:43:42', '081214377059', '10-03-2021 02:00:48', '13-03-2021 06:43:42', '2021', 1), (82, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 06:44:31', '13-03-2021 06:44:08', '00', '13-03-2021 06:44:08', '0895399744892', '10-03-2021 06:44:31', '13-03-2021 06:44:08', '2021', 1), (83, 0, '<NAME>', 'Gasmul', 'Langsung', '10-03-2021 06:49:28', '13-03-2021 23:03:57', 'david', '13-03-2021 23:03:57', '085854530695', '10-03-2021 06:49:28', '13-03-2021 23:03:57', '2021', 1), (84, 0, 'his<NAME>', 'Gasmul', 'Langsung', '11-03-2021 10:45:59', '11-03-2021 12:00:24', 'hisyam', '11-03-2021 12:00:24', '085604455745', '11-03-2021 10:45:59', '11-03-2021 12:00:24', '2021', 1), (85, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 10:45:59', '13-03-2021 06:26:07', 'ilmo', '13-03-2021 06:26:07', '085895240326', '11-03-2021 10:45:59', '13-03-2021 06:26:07', '2021', 1), (86, 0, 'an nisa uswatun khasa', 'Gasmul', 'Langsung', '11-03-2021 10:45:59', '11-03-2021 12:54:45', 'DEE', '11-03-2021 12:54:45', '08995428231', '11-03-2021 10:45:59', '11-03-2021 12:54:45', '2021', 1), (87, 0, '<NAME> ', 'Gasmul', 'Langsung', '11-03-2021 10:45:59', '16-03-2021 12:40:31', 'ok', '16-03-2021 12:40:31', '085923867728', '11-03-2021 10:45:59', '16-03-2021 12:40:31', '2021', 1), (88, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 10:45:59', '11-03-2021 15:30:10', 'dinda ', '11-03-2021 15:30:10', '089616795815', '11-03-2021 10:45:59', '11-03-2021 15:30:10', '2021', 1), (89, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 10:45:59', NULL, '', NULL, '081331988789', '11-03-2021 10:45:59', NULL, '2021', 1), (90, 0, 'Evita', 'Gasmul', 'Langsung', '11-03-2021 11:28:52', '13-03-2021 06:44:47', '00', '13-03-2021 06:44:47', '0895810693344', '11-03-2021 11:28:52', '13-03-2021 06:44:47', '2021', 1), (91, 0, 'balqis nur choir', 'Gasmul', 'Langsung', '11-03-2021 12:00:44', '13-03-2021 06:44:32', '00', '13-03-2021 06:44:32', '085736900640', '11-03-2021 12:00:44', '13-03-2021 06:44:32', '2021', 1), (92, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 12:54:45', '13-03-2021 06:38:43', 'dfgbdfgh', '13-03-2021 06:38:43', '082143677035', '11-03-2021 12:54:45', '13-03-2021 06:38:43', '2021', 1), (93, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 01:07:19', '16-03-2021 17:42:13', '', '16-03-2021 17:42:13', '085326688012', '11-03-2021 01:07:19', '16-03-2021 17:42:13', '2021', 1), (94, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 03:30:10', '11-03-2021 16:05:20', 'sofi', '11-03-2021 16:05:20', '0895344814793', '11-03-2021 03:30:10', '11-03-2021 16:05:20', '2021', 1), (95, 0, '<NAME>', 'Gasmul', 'Langsung', '11-03-2021 03:30:10', '14-03-2021 06:06:29', 'ws', '14-03-2021 06:06:29', '085731165025', '11-03-2021 03:30:10', '14-03-2021 06:06:29', '2021', 1), (96, 0, 'husna', 'Gasmul', 'Langsung', '11-03-2021 03:30:10', NULL, '', NULL, '085706959939', '11-03-2021 03:30:10', NULL, '2021', 1), (97, 0, 'DIMAS COD', 'Gasmul', 'COD', '11-03-2021 04:16:04', '12-03-2021 14:03:27', 'WES', '12-03-2021 14:03:27', '087889542160', '11-03-2021 04:16:04', '12-03-2021 14:03:27', '2021', 1), (99, 0, '<NAME>`ah al adawiyah', 'Gasmul', 'Langsung', '11-03-2021 04:34:16', '13-03-2021 06:32:53', '00', '13-03-2021 06:32:53', '088216824005', '11-03-2021 04:34:16', '13-03-2021 06:32:53', '2021', 1), (100, 0, 'syauqi', 'Gasmul', 'Langsung', '11-03-2021 04:34:16', NULL, '', NULL, '085856531576', '11-03-2021 04:34:16', NULL, '2021', 1), (101, 0, 'salwa nirwana', 'Gasmul', 'Langsung', '11-03-2021 07:02:56', '12-03-2021 06:42:10', 'salwa', '12-03-2021 06:42:10', '082233625400', '11-03-2021 07:02:56', '12-03-2021 06:42:10', '2021', 1), (102, 0, 'Evita', 'Gasmul', 'Langsung', '11-03-2021 07:02:56', '13-03-2021 06:21:33', 'DAH', '13-03-2021 06:21:33', '0895810693344', '11-03-2021 07:02:56', '13-03-2021 06:21:33', '2021', 1), (103, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:35:18', '13-03-2021 23:04:08', 'david', '13-03-2021 23:04:08', '085854530695', '12-03-2021 12:35:18', '13-03-2021 23:04:08', '2021', 1), (104, 0, 'fadiatus sal sabilah', 'Gasmul', 'Langsung', '12-03-2021 12:38:39', '13-03-2021 06:00:42', 'WS', '13-03-2021 06:00:42', '085607099842', '12-03-2021 12:38:39', '13-03-2021 06:00:42', '2021', 1), (105, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:38:39', '13-03-2021 06:01:08', 'WAS', '13-03-2021 06:01:08', '085855412457', '12-03-2021 12:38:39', '13-03-2021 06:01:08', '2021', 1), (106, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:38:39', '12-03-2021 13:18:57', 'munir', '12-03-2021 13:18:57', '085735580577', '12-03-2021 12:38:39', '12-03-2021 13:18:57', '2021', 1), (107, 0, 'finaahusnul', 'Gasmul', 'Langsung', '12-03-2021 12:38:39', '13-03-2021 06:02:26', 'WS', '13-03-2021 06:02:26', '0895359522504', '12-03-2021 12:38:39', '13-03-2021 06:02:26', '2021', 1), (108, 0, 'de<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:38:39', '16-03-2021 12:41:35', 'ok', '16-03-2021 12:41:35', '085749866098', '12-03-2021 12:38:39', '16-03-2021 12:41:35', '2021', 1), (109, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:47:18', '12-03-2021 17:48:49', 'mar`ah', '12-03-2021 17:48:49', '081377931517', '12-03-2021 12:47:18', '12-03-2021 17:48:49', '2021', 1), (110, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:47:18', '13-03-2021 06:37:58', '00', '13-03-2021 06:37:58', '085715303823', '12-03-2021 12:47:18', '13-03-2021 06:37:58', '2021', 1), (111, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 12:56:35', '25-03-2021 22:26:48', 'karim', '25-03-2021 22:26:48', '081907926332', '12-03-2021 12:56:35', '25-03-2021 22:26:48', '2021', 1), (112, 0, 'kar<NAME> azam', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', NULL, '', NULL, '085931362683', '12-03-2021 01:20:45', NULL, '2021', 1), (113, 0, '<NAME> ', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', '07-04-2021 20:33:44', 'muhibatul', '07-04-2021 20:33:44', '085804054052', '12-03-2021 01:20:45', '07-04-2021 20:33:44', '2021', 1), (114, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', '16-03-2021 12:43:12', 'ok', '16-03-2021 12:43:12', '082237368591', '12-03-2021 01:20:45', '16-03-2021 12:43:12', '2021', 1), (115, 0, 'Evita', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', '13-03-2021 06:44:56', '00', '13-03-2021 06:44:56', '0895810693344', '12-03-2021 01:20:45', '13-03-2021 06:44:56', '2021', 1), (116, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', '13-03-2021 23:05:43', 'david', '13-03-2021 23:05:43', '085854530695', '12-03-2021 01:20:45', '13-03-2021 23:05:43', '2021', 1), (117, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', '13-03-2021 06:29:18', '00', '13-03-2021 06:29:18', '085895524481', '12-03-2021 01:20:45', '13-03-2021 06:29:18', '2021', 1), (118, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', '13-03-2021 06:44:23', '00', '13-03-2021 06:44:23', '0895399744892', '12-03-2021 01:20:45', '13-03-2021 06:44:23', '2021', 1), (119, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 01:20:45', NULL, '', NULL, '082237368591', '12-03-2021 01:20:45', NULL, '2021', 1), (120, 0, 'Pras', 'Gasmul', 'Langsung', '12-03-2021 02:49:55', '13-03-2021 06:46:20', '00', '13-03-2021 06:46:20', '085755223374', '12-03-2021 02:49:55', '13-03-2021 06:46:20', '2021', 1), (121, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 02:49:55', NULL, '', NULL, '081310655935', '12-03-2021 02:49:55', NULL, '2021', 1), (122, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 02:49:55', '11-04-2021 13:55:01', 'munir', '11-04-2021 13:55:01', '085735580577', '12-03-2021 02:49:55', '11-04-2021 13:55:01', '2021', 1), (123, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 02:49:55', '13-03-2021 06:45:37', '00', '13-03-2021 06:45:37', '089514814938', '12-03-2021 02:49:55', '13-03-2021 06:45:37', '2021', 1), (124, 0, 'l<NAME>', 'Gasmul', 'COD', '12-03-2021 02:49:55', '29-03-2021 15:52:14', 'udah', '29-03-2021 15:52:14', '082140852182', '12-03-2021 02:49:55', '29-03-2021 15:52:14', '2021', 1), (125, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 05:49:12', NULL, '', NULL, '087778899399', '12-03-2021 05:49:12', NULL, '2021', 1), (126, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 06:08:07', '17-03-2021 16:20:15', 'Albila', '17-03-2021 16:20:15', '089697102421', '12-03-2021 06:08:07', '17-03-2021 16:20:15', '2021', 1), (127, 0, '<NAME>', 'Gasmul', 'Langsung', '12-03-2021 08:00:46', '14-03-2021 06:06:12', 'nit', '14-03-2021 06:06:12', '085850819229', '12-03-2021 08:00:46', '14-03-2021 06:06:12', '2021', 1), (128, 0, '<NAME>', 'Gasmul', 'COD', '13-03-2021 08:56:03', '22-03-2021 11:35:02', 'majda', '22-03-2021 11:35:02', '082334446183', '13-03-2021 08:56:03', '22-03-2021 11:35:02', '2021', 1), (129, 0, 'vika', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '19-03-2021 20:23:17', 'vika', '19-03-2021 20:23:17', '081328174955', '13-03-2021 08:56:03', '19-03-2021 20:23:17', '2021', 1), (130, 0, 'nur jihad', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', NULL, '', NULL, '088235628773', '13-03-2021 08:56:03', NULL, '2021', 1), (131, 0, 'ayu indriyani', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '13-03-2021 13:14:45', 'indri', '13-03-2021 13:14:45', '089677574385', '13-03-2021 08:56:03', '13-03-2021 13:14:45', '2021', 1), (132, 0, 'dewi kunti', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '17-03-2021 14:37:44', 'wesss', '17-03-2021 14:37:44', '085749866098', '13-03-2021 08:56:03', '17-03-2021 14:37:44', '2021', 1), (133, 0, 'Pras', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '15-03-2021 11:57:46', 'pras', '15-03-2021 11:57:46', '085755223374', '13-03-2021 08:56:03', '15-03-2021 11:57:46', '2021', 1), (134, 0, 'Pras', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '15-03-2021 14:31:18', 'pras', '15-03-2021 14:31:18', '085755223374', '13-03-2021 08:56:03', '15-03-2021 14:31:18', '2021', 1), (135, 0, 'Pras', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '15-03-2021 14:31:42', 'pras', '15-03-2021 14:31:42', '085755223374', '13-03-2021 08:56:03', '15-03-2021 14:31:42', '2021', 1), (136, 0, 'chalimatus sadiyah {dea}', 'Gasmul', 'Langsung', '13-03-2021 08:56:03', '14-03-2021 06:07:08', 'ok', '14-03-2021 06:07:08', '081310818462', '13-03-2021 08:56:03', '14-03-2021 06:07:08', '2021', 1), (137, 0, 'nur indah hidayanti', 'Gasmul', 'Langsung', '13-03-2021 01:14:45', '16-04-2021 19:53:24', 'indah', '16-04-2021 19:53:24', '085733858402', '13-03-2021 01:14:45', '16-04-2021 19:53:24', '2021', 1), (138, 0, 'ah khukmi ilmana', 'Gasmul', 'Langsung', '13-03-2021 01:14:45', '14-03-2021 13:15:09', 'ilman', '14-03-2021 13:15:09', '085819019190', '13-03-2021 01:14:45', '14-03-2021 13:15:09', '2021', 1), (139, 0, 'warsidi', 'Gasmul', 'Langsung', '13-03-2021 01:14:45', NULL, '', NULL, '081341294244', '13-03-2021 01:14:45', NULL, '2021', 1), (140, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:14:45', NULL, '', NULL, '081214377059', '13-03-2021 01:14:45', NULL, '2021', 1), (141, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:14:45', '17-03-2021 14:39:23', 'mbk e', '17-03-2021 14:39:23', '082231077470', '13-03-2021 01:14:45', '17-03-2021 14:39:23', '2021', 1), (142, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:14:45', NULL, '', NULL, '085804295050', '13-03-2021 01:14:45', NULL, '2021', 1), (144, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', '14-03-2021 06:06:42', 'ok', '14-03-2021 06:06:42', '085731165025', '13-03-2021 01:23:56', '14-03-2021 06:06:42', '2021', 1), (145, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', '14-03-2021 06:06:53', '9k', '14-03-2021 06:06:53', '085731165025', '13-03-2021 01:23:56', '14-03-2021 06:06:53', '2021', 1), (146, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', '14-03-2021 12:15:38', '<NAME>', '14-03-2021 12:15:38', '081553577636', '13-03-2021 01:23:56', '14-03-2021 12:15:38', '2021', 1), (147, 0, 'Pras', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', '15-03-2021 14:31:58', 'pras', '15-03-2021 14:31:58', '085755223374', '13-03-2021 01:23:56', '15-03-2021 14:31:58', '2021', 1), (148, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', NULL, '', NULL, '085732123412', '13-03-2021 01:23:56', NULL, '2021', 1), (149, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', '27-03-2021 21:05:02', 'edthsftgjnmrtfj', '27-03-2021 21:05:02', '089616795815', '13-03-2021 01:23:56', '27-03-2021 21:05:02', '2021', 1), (150, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', NULL, '', NULL, '082131032269', '13-03-2021 01:23:56', NULL, '2021', 1), (151, 0, '<NAME>', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', '25-03-2021 11:18:56', 'nanda', '25-03-2021 11:18:56', '089601340155', '13-03-2021 01:23:56', '25-03-2021 11:18:56', '2021', 1), (152, 0, 'falih a', 'Gasmul', 'Langsung', '13-03-2021 01:23:56', NULL, '', NULL, '085705562746', '13-03-2021 01:23:56', NULL, '2021', 1), (153, 0, 'ayu mega', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', NULL, '', NULL, '082234557957', '14-03-2021 09:08:09', NULL, '2021', 1), (154, 0, 'vika', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', '19-03-2021 20:23:35', 'vika', '19-03-2021 20:23:35', '081328174955', '14-03-2021 09:08:09', '19-03-2021 20:23:35', '2021', 1), (155, 0, 'dewi kunti', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', '17-03-2021 14:38:09', 'mb leli', '17-03-2021 14:38:09', '085749866098', '14-03-2021 09:08:09', '17-03-2021 14:38:09', '2021', 1), (156, 0, 'Pras', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', '15-03-2021 14:32:13', 'pras', '15-03-2021 14:32:13', '085755223374', '14-03-2021 09:08:09', '15-03-2021 14:32:13', '2021', 1), (158, 0, 'krismona', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', NULL, '', NULL, '085218855570', '14-03-2021 09:08:09', NULL, '2021', 1), (159, 0, 'Pras', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', '15-03-2021 14:32:27', 'pras', '15-03-2021 14:32:27', '085755223374', '14-03-2021 09:08:09', '15-03-2021 14:32:27', '2021', 1), (160, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', '14-03-2021 09:08:09', 'adek smp putra', '14-03-2021 09:08:09', '085854404718', '14-03-2021 09:08:09', '14-03-2021 09:08:09', '2021', 1), (161, 0, 'ismail pamungkas', 'Gasmul', 'Langsung', '14-03-2021 09:08:09', NULL, '', NULL, '085867781424', '14-03-2021 09:08:09', NULL, '2021', 1), (162, 0, 'y<NAME>', 'Gasmul', 'Langsung', '14-03-2021 11:23:13', '15-03-2021 11:56:30', 'yasmin', '15-03-2021 11:56:30', '082230104281', '14-03-2021 11:23:13', '15-03-2021 11:56:30', '2021', 1), (163, 0, 'mutohar', 'Gasmul', 'Langsung', '14-03-2021 12:15:38', NULL, '', NULL, '085736810387', '14-03-2021 12:15:38', NULL, '2021', 1), (164, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 12:59:58', '17-03-2021 14:38:31', 'lel', '17-03-2021 14:38:31', '082264386494', '14-03-2021 12:59:58', '17-03-2021 14:38:31', '2021', 1), (165, 0, 'DIM<NAME>D', 'Gasmul', 'Langsung', '14-03-2021 01:15:09', NULL, '', NULL, '085334757076', '14-03-2021 01:15:09', NULL, '2021', 1), (166, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 01:15:09', NULL, '', NULL, '085334757076', '14-03-2021 01:15:09', NULL, '2021', 1), (167, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', '13-04-2021 22:09:17', 'naila', '13-04-2021 22:09:17', '085854404718', '14-03-2021 05:39:23', '13-04-2021 22:09:17', '2021', 1), (168, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', NULL, '', NULL, '085854404718', '14-03-2021 05:39:23', NULL, '2021', 1), (169, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', '14-03-2021 19:19:12', 'siti', '14-03-2021 19:19:12', '082334964773', '14-03-2021 05:39:23', '14-03-2021 19:19:12', '2021', 1), (170, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', '14-03-2021 17:39:23', 'otus', '14-03-2021 17:39:23', '085259366559', '14-03-2021 05:39:23', '14-03-2021 17:39:23', '2021', 1), (171, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', NULL, '', NULL, '085733374000', '14-03-2021 05:39:23', NULL, '2021', 1), (172, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', '17-03-2021 14:38:50', 'lelll', '17-03-2021 14:38:50', '085749866098', '14-03-2021 05:39:23', '17-03-2021 14:38:50', '2021', 1), (173, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', NULL, '', NULL, '087858533393', '14-03-2021 05:39:23', NULL, '2021', 1), (174, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', '16-03-2021 22:13:33', 'zidni', '16-03-2021 22:13:33', '081554683549', '14-03-2021 05:39:23', '16-03-2021 22:13:33', '2021', 1), (175, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', NULL, '', NULL, '082234761989', '14-03-2021 05:39:23', NULL, '2021', 1), (176, 0, '<NAME>', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', '16-03-2021 16:57:32', 'fiqi ummay', '16-03-2021 16:57:32', '082143677035', '14-03-2021 05:39:23', '16-03-2021 16:57:32', '2021', 1), (177, 0, 'anggi catur', 'Gasmul', 'Langsung', '14-03-2021 05:39:23', NULL, '', NULL, '085608650105', '14-03-2021 05:39:23', NULL, '2021', 1), (178, 0, 'Alvira', 'Gasmul', 'Langsung', '15-03-2021 11:57:46', '15-03-2021 14:34:15', 'alvira', '15-03-2021 14:34:15', '083134823299', '15-03-2021 11:57:46', '15-03-2021 14:34:15', '2021', 1), (179, 0, '<NAME>', 'Gasmul', 'Langsung', '15-03-2021 11:57:46', NULL, '', NULL, '085854530695', '15-03-2021 11:57:46', NULL, '2021', 1), (180, 0, '<NAME>', 'Gasmul', 'Langsung', '15-03-2021 11:57:46', '16-03-2021 13:07:16', 'IZZA', '16-03-2021 13:07:16', '082131195545', '15-03-2021 11:57:46', '16-03-2021 13:07:16', '2021', 1), (181, 0, 'm tau<NAME> abdulloh', 'Gasmul', 'Langsung', '15-03-2021 11:57:46', NULL, '', NULL, '081553540642', '15-03-2021 11:57:46', NULL, '2021', 1), (182, 0, '<NAME>', 'Gasmul', 'Langsung', '15-03-2021 11:57:46', '15-03-2021 20:16:24', 'isti', '15-03-2021 20:16:24', '085236489966', '15-03-2021 11:57:46', '15-03-2021 20:16:24', '2021', 1), (183, 0, '<NAME>', 'Gasmul', 'Langsung', '15-03-2021 11:57:46', '05-04-2021 23:57:38', 'aida', '05-04-2021 23:57:38', '081294373308', '15-03-2021 11:57:46', '05-04-2021 23:57:38', '2021', 1), (184, 0, '<NAME>', 'Gasmul', 'Langsung', '15-03-2021 02:34:15', '17-03-2021 14:39:44', 'mbke', '17-03-2021 14:39:44', '082140378698', '15-03-2021 02:34:15', '17-03-2021 14:39:44', '2021', 1), (185, 0, '<NAME>', 'Gasmul', 'Langsung', '15-03-2021 02:34:15', '16-03-2021 16:47:29', 'fadil', '16-03-2021 16:47:29', '081392281521', '15-03-2021 02:34:15', '16-03-2021 16:47:29', '2021', 1), (186, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', NULL, '', NULL, '085715161560', '16-03-2021 04:47:29', NULL, '2021', 1), (187, 0, 'husna', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', NULL, '', NULL, '085706959939', '16-03-2021 04:47:29', NULL, '2021', 1), (188, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', '17-03-2021 12:14:57', 'nur', '17-03-2021 12:14:57', '089616827455', '16-03-2021 04:47:29', '17-03-2021 12:14:57', '2021', 1), (189, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', NULL, '', NULL, '0895375700880', '16-03-2021 04:47:29', NULL, '2021', 1), (190, 0, 'mutohar', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', NULL, '', NULL, '085736810387', '16-03-2021 04:47:29', NULL, '2021', 1), (191, 0, 'MUFI', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', NULL, '', NULL, '085607932877', '16-03-2021 04:47:29', NULL, '2021', 1), (192, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', '17-03-2021 19:22:49', 'lina', '17-03-2021 19:22:49', '085743979787', '16-03-2021 04:47:29', '17-03-2021 19:22:49', '2021', 1), (194, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:47:29', NULL, '', NULL, '085843980441', '16-03-2021 04:47:29', NULL, '2021', 1), (195, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:57:32', NULL, '', NULL, '085705562746', '16-03-2021 04:57:32', NULL, '2021', 1), (196, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:57:32', NULL, '', NULL, '089614312519', '16-03-2021 04:57:32', NULL, '2021', 1), (197, 0, 'Alvira', 'Gasmul', 'Langsung', '16-03-2021 04:57:32', '22-03-2021 20:30:13', 'mbak', '22-03-2021 20:30:13', '083134823299', '16-03-2021 04:57:32', '22-03-2021 20:30:13', '2021', 1), (198, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:57:32', '17-03-2021 16:51:49', 'alfa', '17-03-2021 16:51:49', '081929652746', '16-03-2021 04:57:32', '17-03-2021 16:51:49', '2021', 1), (199, 0, '<NAME>', 'Gasmul', 'Langsung', '16-03-2021 04:57:32', '16-03-2021 17:41:52', 'firly', '16-03-2021 17:41:52', '08983443675', '16-03-2021 04:57:32', '16-03-2021 17:41:52', '2021', 1), (200, 0, 'dea putri', 'Gasmul', 'Langsung', '16-03-2021 04:57:32', NULL, '', NULL, '082143677035', '16-03-2021 04:57:32', NULL, '2021', 1), (201, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 12:07:41', '18-03-2021 19:01:46', 'ws', '18-03-2021 19:01:46', '082140991922', '17-03-2021 12:07:41', '18-03-2021 19:01:46', '2021', 1), (202, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', NULL, '', NULL, '081217721508', '17-03-2021 11:54:55', NULL, '2021', 1), (203, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', NULL, '', NULL, '085862639146', '17-03-2021 11:54:55', NULL, '2021', 1), (204, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', '17-03-2021 14:40:03', 'oke', '17-03-2021 14:40:03', '082140378698', '17-03-2021 11:54:55', '17-03-2021 14:40:03', '2021', 1), (205, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', NULL, '', NULL, '081363046529', '17-03-2021 11:54:55', NULL, '2021', 1), (206, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', '17-03-2021 17:17:19', 'alfa', '17-03-2021 17:17:19', '081929652746', '17-03-2021 11:54:55', '17-03-2021 17:17:19', '2021', 1), (207, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', '17-03-2021 20:57:59', 'lailatul', '17-03-2021 20:57:59', '082211509630', '17-03-2021 11:54:55', '17-03-2021 20:57:59', '2021', 1), (208, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', '22-03-2021 20:28:19', 'dia', '22-03-2021 20:28:19', '082117217101', '17-03-2021 11:54:55', '22-03-2021 20:28:19', '2021', 1), (209, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 11:54:55', NULL, '', NULL, '081363046529', '17-03-2021 11:54:55', NULL, '2021', 1), (211, 0, 'qomariyah', 'Gasmul', 'Langsung', '17-03-2021 12:14:57', '17-03-2021 20:57:31', 'qom', '17-03-2021 20:57:31', '082148919087', '17-03-2021 12:14:57', '17-03-2021 20:57:31', '2021', 1), (212, 0, 'dewi kunti', 'Gasmul', 'Langsung', '17-03-2021 12:14:57', '17-03-2021 14:39:04', 'mbaklele', '17-03-2021 14:39:04', '085749866098', '17-03-2021 12:14:57', '17-03-2021 14:39:04', '2021', 1), (213, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 12:14:57', '17-03-2021 17:17:28', 'alfa', '17-03-2021 17:17:28', '081929652746', '17-03-2021 12:14:57', '17-03-2021 17:17:28', '2021', 1), (214, 0, 'sept<NAME>', 'Gasmul', 'Langsung', '17-03-2021 02:22:34', '20-03-2021 11:40:25', 'septia', '20-03-2021 11:40:25', '085812335686', '17-03-2021 02:22:34', '20-03-2021 11:40:25', '2021', 1), (215, 0, '<NAME>', 'Gasmul', 'Langsung', '17-03-2021 02:22:34', '20-03-2021 11:42:29', 'zia', '20-03-2021 11:42:29', '082234028068', '17-03-2021 02:22:34', '20-03-2021 11:42:29', '2021', 1), (216, 0, 'Pras', 'Gasmul', 'Langsung', '17-03-2021 02:22:34', NULL, '', NULL, '085755223374', '17-03-2021 02:22:34', NULL, '2021', 1), (217, 0, 'sulton', 'Gasmul', 'Langsung', '17-03-2021 02:22:34', '17-03-2021 20:58:28', 'iuyhviyiy', '17-03-2021 20:58:28', '085967212262', '17-03-2021 02:22:34', '17-03-2021 20:58:28', '2021', 1), (218, 0, '<NAME>', 'Gasmul', 'COD', '17-03-2021 02:22:34', NULL, '', NULL, '085334757076', '17-03-2021 02:22:34', NULL, '2021', 1), (219, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', NULL, '', NULL, '085746669102', '18-03-2021 11:21:23', NULL, '2021', 1), (220, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', NULL, '', NULL, '082140378698', '18-03-2021 11:21:23', NULL, '2021', 1), (221, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', '23-03-2021 05:52:58', 'zahro', '23-03-2021 05:52:58', '085854650581', '18-03-2021 11:21:23', '23-03-2021 05:52:58', '2021', 1), (222, 0, 'Alvira', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', '22-03-2021 20:29:55', 'mbak', '22-03-2021 20:29:55', '083134823299', '18-03-2021 11:21:23', '22-03-2021 20:29:55', '2021', 1), (223, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', NULL, '', NULL, '085227486365', '18-03-2021 11:21:23', NULL, '2021', 1), (224, 0, 'SITI SUWAIBATUL ISLAMIYYAH! allah~', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', NULL, '', NULL, '083830063568', '18-03-2021 11:21:23', NULL, '2021', 1), (225, 0, 'ah <NAME>', 'Gasmul', 'Langsung', '18-03-2021 11:21:23', NULL, '', NULL, '085819019190', '18-03-2021 11:21:23', NULL, '2021', 1), (226, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 06:45:15', NULL, '', NULL, '081363046529', '18-03-2021 06:45:15', NULL, '2021', 1), (227, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 06:45:15', NULL, '', NULL, '081363046529', '18-03-2021 06:45:15', NULL, '2021', 1), (228, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 06:45:15', '25-03-2021 11:19:04', 'alvani', '25-03-2021 11:19:04', '085711945559', '18-03-2021 06:45:15', '25-03-2021 11:19:04', '2021', 1), (229, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 06:45:15', NULL, '', NULL, '081227143883', '18-03-2021 06:45:15', NULL, '2021', 1), (230, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 06:45:15', NULL, '', NULL, '085645303710', '18-03-2021 06:45:15', NULL, '2021', 1), (231, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', '29-03-2021 17:27:23', 'luluk', '29-03-2021 17:27:23', '082140852182', '18-03-2021 07:01:46', '29-03-2021 17:27:23', '2021', 1), (232, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '085812335686', '18-03-2021 07:01:46', NULL, '2021', 1), (233, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '081363046529', '18-03-2021 07:01:46', NULL, '2021', 1), (234, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '081556755956', '18-03-2021 07:01:46', NULL, '2021', 1), (235, 0, 'anisaturrohmah', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', '14-04-2021 10:40:05', 'anisa', '14-04-2021 10:40:05', '082331758155', '18-03-2021 07:01:46', '14-04-2021 10:40:05', '2021', 1), (236, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '087755799173', '18-03-2021 07:01:46', NULL, '2021', 1), (237, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '081358686526', '18-03-2021 07:01:46', NULL, '2021', 1), (238, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '085746446620', '18-03-2021 07:01:46', NULL, '2021', 1), (239, 0, 'mis<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', '19-03-2021 12:44:21', 'misbahul', '19-03-2021 12:44:21', '085379339277', '18-03-2021 07:01:46', '19-03-2021 12:44:21', '2021', 1), (240, 0, 'alfa laila', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', '19-03-2021 20:19:47', 'alfa', '19-03-2021 20:19:47', '081929652746', '18-03-2021 07:01:46', '19-03-2021 20:19:47', '2021', 1), (241, 0, 'zulfa hidayatul laila', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', NULL, '', NULL, '085748345606', '18-03-2021 07:01:46', NULL, '2021', 1), (242, 0, 'lukmanul hakim', 'Gasmul', 'Langsung', '18-03-2021 07:01:46', '20-03-2021 17:23:46', 'lukman', '20-03-2021 17:23:46', '085706986494', '18-03-2021 07:01:46', '20-03-2021 17:23:46', '2021', 1), (243, 0, 'dinda anggi arisa putri', 'Gasmul', 'Langsung', '18-03-2021 07:34:42', NULL, '', NULL, '081216501220', '18-03-2021 07:34:42', NULL, '2021', 1), (244, 0, 'umu lailatul fitria', 'Gasmul', 'Langsung', '18-03-2021 07:34:42', '18-03-2021 08:37:41', '', NULL, '085746584314', '18-03-2021 07:34:42', '18-03-2021 08:37:41', '2021', 1), (245, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:34:42', '19-03-2021 12:42:09', 'gibran', '19-03-2021 12:42:09', '082237368591', '18-03-2021 07:34:42', '19-03-2021 12:42:09', '2021', 1), (246, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 07:34:42', NULL, '', NULL, '082337799558', '18-03-2021 07:34:42', NULL, '2021', 1), (247, 0, 'umu lailatul fitria', 'Gasmul', 'Langsung', '18-03-2021 08:38:05', NULL, '', NULL, '085746584314', '18-03-2021 08:38:05', NULL, '2021', 1), (248, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 08:38:05', NULL, '', NULL, '085878239124', '18-03-2021 08:38:05', NULL, '2021', 1), (249, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 08:38:05', NULL, '', NULL, '081363046529', '18-03-2021 08:38:05', NULL, '2021', 1), (250, 0, '<NAME>', 'Gasmul', 'Langsung', '18-03-2021 08:38:05', '02-04-2021 14:10:56', 'salma', '02-04-2021 14:10:56', '081333557866', '18-03-2021 08:38:05', '02-04-2021 14:10:56', '2021', 1), (251, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', NULL, '', NULL, '085855412457', '19-03-2021 01:11:09', NULL, '2021', 1), (252, 0, 'Alvira', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', '22-03-2021 20:29:27', 'mbak', '22-03-2021 20:29:27', '083134823299', '19-03-2021 01:11:09', '22-03-2021 20:29:27', '2021', 1), (253, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', NULL, '', NULL, '082140378698', '19-03-2021 01:11:09', NULL, '2021', 1), (254, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', '19-03-2021 20:19:02', 'rahma', '19-03-2021 20:19:02', '085725901566', '19-03-2021 01:11:09', '19-03-2021 20:19:02', '2021', 1), (255, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', NULL, '', NULL, '085749338149', '19-03-2021 01:11:09', NULL, '2021', 1), (256, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', NULL, '', NULL, '089697102421', '19-03-2021 01:11:09', NULL, '2021', 1), (257, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', '19-03-2021 13:11:09', 'gibran', '19-03-2021 13:11:09', '082237368591', '19-03-2021 01:11:09', '19-03-2021 13:11:09', '2021', 1), (258, 0, 'anggi catur', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', NULL, '', NULL, '085608650105', '19-03-2021 01:11:09', NULL, '2021', 1), (259, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:11:09', '19-03-2021 20:20:05', 'puput', '19-03-2021 20:20:05', '082359401694', '19-03-2021 01:11:09', '19-03-2021 20:20:05', '2021', 1), (260, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '08500008519', '19-03-2021 01:42:39', NULL, '2021', 1), (261, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '085607932877', '19-03-2021 01:42:39', NULL, '2021', 1), (262, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', '08-04-2021 18:18:01', 'd', '08-04-2021 18:18:01', '085749866098', '19-03-2021 01:42:39', '08-04-2021 18:18:01', '2021', 1), (263, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', '31-03-2021 19:04:53', 'asma', '31-03-2021 19:04:53', '085259366559', '19-03-2021 01:42:39', '31-03-2021 19:04:53', '2021', 1), (264, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '082334964773', '19-03-2021 01:42:39', NULL, '2021', 1), (265, 0, 'vika', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '081328174955', '19-03-2021 01:42:39', NULL, '2021', 1), (266, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '082334964773', '19-03-2021 01:42:39', NULL, '2021', 1), (267, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '087850175275', '19-03-2021 01:42:39', NULL, '2021', 1), (268, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '0895366442227', '19-03-2021 01:42:39', NULL, '2021', 1), (269, 0, '<NAME>', 'Gasmul', 'Langsung', '19-03-2021 01:42:39', NULL, '', NULL, '085732558942', '19-03-2021 01:42:39', NULL, '2021', 1), (270, 0, '<NAME>', 'Gasmul', 'Langsung', '20-03-2021 12:51:35', NULL, '', NULL, '085236489966', '20-03-2021 12:51:35', NULL, '2021', 1), (271, 0, '<NAME>', 'Gasmul', 'Langsung', '20-03-2021 12:51:35', '21-03-2021 13:53:08', 'aisyah', '21-03-2021 13:53:08', '082132418167', '20-03-2021 12:51:35', '21-03-2021 13:53:08', '2021', 1), (273, 0, 'ita awal', 'Gasmul', 'Langsung', '20-03-2021 12:52:44', NULL, '', NULL, '085746584314', '20-03-2021 12:52:44', NULL, '2021', 1), (274, 0, '<NAME>', 'Gasmul', 'Langsung', '20-03-2021 12:52:44', NULL, '', NULL, '081217721508', '20-03-2021 12:52:44', NULL, '2021', 1), (275, 0, 'ay<NAME>', 'Gasmul', 'Langsung', '20-03-2021 12:52:44', NULL, '', NULL, '082234557957', '20-03-2021 12:52:44', NULL, '2021', 1), (276, 0, '<NAME>', 'Gasmul', 'Langsung', '20-03-2021 12:52:44', '23-03-2021 20:37:11', 'alfa', '23-03-2021 20:37:11', '081929652746', '20-03-2021 12:52:44', '23-03-2021 20:37:11', '2021', 1), (277, 0, 'fat<NAME>', 'Gasmul', 'Langsung', '20-03-2021 01:47:04', NULL, '', NULL, '085105408689', '20-03-2021 01:47:04', NULL, '2021', 1), (278, 0, 'm <NAME>', 'Gasmul', 'Langsung', '20-03-2021 01:47:04', '20-03-2021 17:22:50', 'lukman', '20-03-2021 17:22:50', '0851553363032', '20-03-2021 01:47:04', '20-03-2021 17:22:50', '2021', 1), (279, 0, '<NAME>', 'Gasmul', 'Langsung', '20-03-2021 02:32:24', NULL, '', NULL, '082334446183', '20-03-2021 02:32:24', NULL, '2021', 1), (280, 0, '<NAME>', 'Gasmul', 'Langsung', '20-03-2021 02:32:24', NULL, '', NULL, '085794250562', '20-03-2021 02:32:24', NULL, '2021', 1), (281, 0, '<NAME>', 'Gasmul', 'Langsung', '21-03-2021 12:04:11', NULL, '', NULL, '088235628773', '21-03-2021 12:04:11', NULL, '2021', 1), (282, 0, 'iqbal fatkhul akbar', 'Gasmul', 'Langsung', '21-03-2021 12:04:11', '21-03-2021 13:48:37', 'iqbal', '21-03-2021 13:48:37', '085231610532', '21-03-2021 12:04:11', '21-03-2021 13:48:37', '2021', 1), (283, 0, '<NAME>', 'Gasmul', 'Langsung', '21-03-2021 12:04:11', NULL, '', NULL, '081359129868', '21-03-2021 12:04:11', NULL, '2021', 1), (284, 0, 'vika', 'Gasmul', 'Langsung', '21-03-2021 12:04:11', NULL, '', NULL, '081328174955', '21-03-2021 12:04:11', NULL, '2021', 1), (285, 0, '<NAME>', 'Gasmul', 'Langsung', '21-03-2021 12:04:11', '21-03-2021 12:04:11', 'atik', '21-03-2021 12:04:11', '085600001369', '21-03-2021 12:04:11', '21-03-2021 12:04:11', '2021', 1), (286, 0, '<NAME>', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', '23-03-2021 09:52:19', 'malik', '23-03-2021 09:52:19', '088805109593', '22-03-2021 09:17:43', '23-03-2021 09:52:19', '2021', 1), (287, 0, 'aida m noor', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', NULL, '', NULL, '081294373308', '22-03-2021 09:17:43', NULL, '2021', 1), (288, 0, 'dini sri wahyuni', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', '06-04-2021 06:05:12', 'dini', '06-04-2021 06:05:12', '082231077470', '22-03-2021 09:17:43', '06-04-2021 06:05:12', '2021', 1), (289, 0, 'anggi catur', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', NULL, '', NULL, '085608650105', '22-03-2021 09:17:43', NULL, '2021', 1), (290, 0, '<NAME>', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', '22-03-2021 20:28:01', 'aku', '22-03-2021 20:28:01', '085808208438', '22-03-2021 09:17:43', '22-03-2021 20:28:01', '2021', 1), (291, 0, '<NAME>', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', NULL, '', NULL, '085156495497', '22-03-2021 09:17:43', NULL, '2021', 1), (292, 0, 'tari', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', NULL, '', NULL, '082143677035', '22-03-2021 09:17:43', NULL, '2021', 1), (293, 0, '<NAME>', 'Gasmul', 'Langsung', '22-03-2021 09:17:43', '22-03-2021 09:17:43', 'HASYIM', '22-03-2021 09:17:43', '089616827455', '22-03-2021 09:17:43', '22-03-2021 09:17:43', '2021', 1), (294, 0, 'Alvira', 'Gasmul', 'Langsung', '22-03-2021 11:35:02', '22-03-2021 20:28:30', 'mbak', '22-03-2021 20:28:30', '083134823299', '22-03-2021 11:35:02', '22-03-2021 20:28:30', '2021', 1), (295, 0, '<NAME>', 'Gasmul', 'Langsung', '22-03-2021 11:35:02', '28-03-2021 13:41:19', 'dfvggtbv hnj', '28-03-2021 13:41:19', '081369998548', '22-03-2021 11:35:02', '28-03-2021 13:41:19', '2021', 1), (296, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 09:53:03', NULL, '', NULL, '085648060011', '23-03-2021 09:53:03', NULL, '2021', 1), (297, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', NULL, '', NULL, '085732707910', '23-03-2021 11:27:55', NULL, '2021', 1), (298, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', NULL, '', NULL, '082244968370', '23-03-2021 11:27:55', NULL, '2021', 1), (299, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', NULL, '', NULL, '081336313926', '23-03-2021 11:27:55', NULL, '2021', 1), (300, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', '28-03-2021 14:00:27', '3', '28-03-2021 14:00:27', '081929652746', '23-03-2021 11:27:55', '28-03-2021 14:00:27', '2021', 1), (301, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', NULL, '', NULL, '082140378698', '23-03-2021 11:27:55', NULL, '2021', 1), (302, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', '31-03-2021 19:05:13', 'asma`', '31-03-2021 19:05:13', '085259366559', '23-03-2021 11:27:55', '31-03-2021 19:05:13', '2021', 1), (303, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', NULL, '', NULL, '085878239124', '23-03-2021 11:27:55', NULL, '2021', 1); INSERT INTO `tb_paket` (`id_paket`, `id_santri`, `nama_paket`, `penerima`, `jenis_kirim`, `tgl_terima`, `tgl_ambil`, `pengambil`, `status_ambil`, `hp`, `creat_at`, `modified_at`, `tahun`, `jml_paket`) VALUES (304, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', '23-03-2021 12:30:20', 'awallu', '23-03-2021 12:30:20', '085607289036', '23-03-2021 11:27:55', '23-03-2021 12:30:20', '2021', 1), (305, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', NULL, '', NULL, '085816345908', '23-03-2021 11:27:55', NULL, '2021', 1), (306, 0, 'dewi kunti', 'Gasmul', 'Langsung', '23-03-2021 11:27:55', '08-04-2021 18:18:38', 'd', '08-04-2021 18:18:38', '085749866098', '23-03-2021 11:27:55', '08-04-2021 18:18:38', '2021', 1), (307, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 12:30:20', NULL, '', NULL, '085648060011', '23-03-2021 12:30:20', NULL, '2021', 1), (308, 0, '<NAME>', 'Gasmul', 'Langsung', '23-03-2021 12:30:20', NULL, '', NULL, '082334165064', '23-03-2021 12:30:20', NULL, '2021', 1), (309, 0, 'afiana', 'Gasmul', 'Langsung', '24-03-2021 11:35:31', NULL, '', NULL, '085645155933', '24-03-2021 11:35:31', NULL, '2021', 1), (310, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 11:35:31', '25-03-2021 11:18:44', 'nand', '25-03-2021 11:18:44', '089601340155', '24-03-2021 11:35:31', '25-03-2021 11:18:44', '2021', 1), (311, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '087750089661', '24-03-2021 12:46:01', NULL, '2021', 1), (312, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '087750089661', '24-03-2021 12:46:01', NULL, '2021', 1), (313, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', '24-03-2021 12:46:01', 'zidni', '24-03-2021 12:46:01', '081554683549', '24-03-2021 12:46:01', '24-03-2021 12:46:01', '2021', 1), (314, 0, 'Alvira', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '083134823299', '24-03-2021 12:46:01', NULL, '2021', 1), (315, 0, 'm irsyad muzakki', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '082244968370', '24-03-2021 12:46:01', NULL, '2021', 1), (316, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', '24-03-2021 15:30:59', 'pak agus', '24-03-2021 15:30:59', '085732558942', '24-03-2021 12:46:01', '24-03-2021 15:30:59', '2021', 1), (317, 0, 'hikma', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', '25-03-2021 12:05:56', 'fina', '25-03-2021 12:05:56', '0895333342953', '24-03-2021 12:46:01', '25-03-2021 12:05:56', '2021', 1), (318, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '087850175275', '24-03-2021 12:46:01', NULL, '2021', 1), (319, 0, 'tari', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '082143677035', '24-03-2021 12:46:01', NULL, '2021', 1), (320, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '085236489966', '24-03-2021 12:46:01', NULL, '2021', 1), (321, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 12:46:01', NULL, '', NULL, '081336313926', '24-03-2021 12:46:01', NULL, '2021', 1), (322, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 02:11:43', '25-03-2021 12:32:17', '', '25-03-2021 12:32:17', '085745440420', '24-03-2021 02:11:43', '25-03-2021 12:32:17', '2021', 1), (323, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 02:11:43', '24-03-2021 14:11:43', 'pak agus', '24-03-2021 14:11:43', '085792558942', '24-03-2021 02:11:43', '24-03-2021 14:11:43', '2021', 1), (324, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 03:31:51', NULL, '', NULL, '085755223374', '24-03-2021 03:31:51', NULL, '2021', 1), (325, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 03:31:51', NULL, '', NULL, '082140898252', '24-03-2021 03:31:51', NULL, '2021', 1), (326, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 03:31:51', '25-03-2021 11:18:31', 'nanda', '25-03-2021 11:18:31', '089601340155', '24-03-2021 03:31:51', '25-03-2021 11:18:31', '2021', 1), (327, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 03:31:51', '25-03-2021 11:17:16', 'nanda', '25-03-2021 11:17:16', '089601340155', '24-03-2021 03:31:51', '25-03-2021 11:17:16', '2021', 1), (328, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 03:31:51', NULL, '', NULL, '081263875370', '24-03-2021 03:31:51', NULL, '2021', 1), (329, 0, '<NAME>', 'Gasmul', 'Langsung', '24-03-2021 03:31:51', NULL, '', NULL, '085878239124', '24-03-2021 03:31:51', NULL, '2021', 1), (330, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 11:06:33', NULL, '', NULL, '085798105265', '25-03-2021 11:06:33', NULL, '2021', 1), (331, 0, '<NAME>=Muntazhor', 'Gasmul', 'Langsung', '25-03-2021 11:06:33', NULL, '', NULL, '085859965811', '25-03-2021 11:06:33', NULL, '2021', 1), (332, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 11:06:33', NULL, '', NULL, '085215109163', '25-03-2021 11:06:33', NULL, '2021', 1), (333, 0, 'dini sri wahyuni', 'Gasmul', 'Langsung', '25-03-2021 11:06:33', '06-04-2021 06:04:49', 'dini', '06-04-2021 06:04:49', '082231077470', '25-03-2021 11:06:33', '06-04-2021 06:04:49', '2021', 1), (334, 0, 'qomariyah', 'Gasmul', 'Langsung', '25-03-2021 11:06:33', '27-03-2021 21:04:47', 'dfjhxftgjrtf', '27-03-2021 21:04:47', '082148919087', '25-03-2021 11:06:33', '27-03-2021 21:04:47', '2021', 1), (335, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 11:06:33', '25-03-2021 11:15:44', 'nanda', '25-03-2021 11:15:44', '089601340155', '25-03-2021 11:06:33', '25-03-2021 11:15:44', '2021', 1), (336, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:05:56', NULL, '', NULL, '085735731646', '25-03-2021 12:05:56', NULL, '2021', 1), (337, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:05:56', NULL, '', NULL, '082139646773', '25-03-2021 12:05:56', NULL, '2021', 1), (338, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:05:56', NULL, '', NULL, '082334165064', '25-03-2021 12:05:56', NULL, '2021', 1), (339, 0, 'j<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:05:56', NULL, '', NULL, '085776426735', '25-03-2021 12:05:56', NULL, '2021', 1), (340, 0, 'khansa', 'Gasmul', 'Langsung', '25-03-2021 12:05:56', NULL, '', NULL, '0895810693344', '25-03-2021 12:05:56', NULL, '2021', 1), (341, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:05:56', NULL, '', NULL, '085798105265', '25-03-2021 12:05:56', NULL, '2021', 1), (342, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:28:05', NULL, '', NULL, '085645868625', '25-03-2021 12:28:05', NULL, '2021', 1), (343, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 12:32:17', NULL, '', NULL, '081929652746', '25-03-2021 12:32:17', NULL, '2021', 1), (344, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '05732558942', '25-03-2021 03:00:44', NULL, '2021', 1), (345, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', '25-03-2021 19:26:19', 'syifa', '25-03-2021 19:26:19', '085156164398', '25-03-2021 03:00:44', '25-03-2021 19:26:19', '2021', 1), (346, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', '25-03-2021 15:29:33', '', '25-03-2021 15:29:33', '085745440420', '25-03-2021 03:00:44', '25-03-2021 15:29:33', '2021', 1), (347, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '081333731232', '25-03-2021 03:00:44', NULL, '2021', 1), (348, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', '07-04-2021 20:34:16', 'putri', '07-04-2021 20:34:16', '082123468640', '25-03-2021 03:00:44', '07-04-2021 20:34:16', '2021', 1), (349, 0, '<NAME> kmr 4', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '081586353656', '25-03-2021 03:00:44', NULL, '2021', 1), (350, 0, 'Alvira', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '083134823299', '25-03-2021 03:00:44', NULL, '2021', 1), (351, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '081575637990', '25-03-2021 03:00:44', NULL, '2021', 1), (352, 0, 'ay<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '082234557957', '25-03-2021 03:00:44', NULL, '2021', 1), (353, 0, 'j<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:00:44', NULL, '', NULL, '085776426735', '25-03-2021 03:00:44', NULL, '2021', 1), (354, 0, '<NAME>', 'Gasmul', 'Langsung', '25-03-2021 03:29:54', NULL, '', NULL, '0895399744892', '25-03-2021 03:29:54', NULL, '2021', 1), (355, 0, 'dini sri wahyuni', 'Gasmul', 'Langsung', '25-03-2021 10:27:48', '06-04-2021 06:05:01', 'dini', '06-04-2021 06:05:01', '082231077470', '25-03-2021 10:27:48', '06-04-2021 06:05:01', '2021', 1), (357, 0, 'puput mayasari', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '06-04-2021 06:05:35', 'puput', '06-04-2021 06:05:35', '082359401694', '26-03-2021 09:05:12', '06-04-2021 06:05:35', '2021', 1), (358, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '081929652746', '26-03-2021 09:05:12', NULL, '2021', 1), (359, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '08-04-2021 18:18:52', 'd', '08-04-2021 18:18:52', '081931570768', '26-03-2021 09:05:12', '08-04-2021 18:18:52', '2021', 1), (360, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '02-04-2021 10:48:43', 'rou', '02-04-2021 10:48:43', '085785028823', '26-03-2021 09:05:12', '02-04-2021 10:48:43', '2021', 1), (361, 0, 'dini sri wahyuni', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '082231077470', '26-03-2021 09:05:12', NULL, '2021', 1), (362, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '0895395122267', '26-03-2021 09:05:12', NULL, '2021', 1), (363, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '26-03-2021 13:47:11', 'takhul', '26-03-2021 13:47:11', '085815437360', '26-03-2021 09:05:12', '26-03-2021 13:47:11', '2021', 1), (364, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '082234557957', '26-03-2021 09:05:12', NULL, '2021', 1), (365, 0, 'Ulfa', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '0895810693344', '26-03-2021 09:05:12', NULL, '2021', 1), (366, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '07-04-2021 20:34:03', 'qonita', '07-04-2021 20:34:03', '085850819229', '26-03-2021 09:05:12', '07-04-2021 20:34:03', '2021', 1), (367, 0, 'luluk yullianty', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '29-03-2021 17:27:35', 'luluk', '29-03-2021 17:27:35', '082140852182', '26-03-2021 09:05:12', '29-03-2021 17:27:35', '2021', 1), (368, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '085649969905', '26-03-2021 09:05:12', NULL, '2021', 1), (369, 0, '<NAME>', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '26-03-2021 13:47:40', 'takhul', '26-03-2021 13:47:40', '085815437360', '26-03-2021 09:05:12', '26-03-2021 13:47:40', '2021', 1), (370, 0, 'Alvira', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '083134823299', '26-03-2021 09:05:12', NULL, '2021', 1), (371, 0, 'qomariyah', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', '27-03-2021 12:08:30', 'sdghjhn', '27-03-2021 12:08:30', '082148919087', '26-03-2021 09:05:12', '27-03-2021 12:08:30', '2021', 1), (372, 0, 'fitria amini', 'Gasmul', 'Langsung', '26-03-2021 09:05:12', NULL, '', NULL, '081363046529', '26-03-2021 09:05:12', NULL, '2021', 1), (373, 0, 'dewi kunti', 'Gasmul', 'Langsung', '27-03-2021 09:21:45', '08-04-2021 18:19:04', 'd', '08-04-2021 18:19:04', '085749866098', '27-03-2021 09:21:45', '08-04-2021 18:19:04', '2021', 1), (374, 0, '<NAME>', 'Gasmul', 'Langsung', '27-03-2021 09:21:45', NULL, '', NULL, '082140378698', '27-03-2021 09:21:45', NULL, '2021', 1), (375, 0, 'alifia zulfi salsabila', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '081214786578', '27-03-2021 09:24:40', NULL, '2021', 1), (376, 0, '<NAME>', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '085228361782', '27-03-2021 09:24:40', NULL, '2021', 1), (377, 0, '<NAME>', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '089698619885', '27-03-2021 09:24:40', NULL, '2021', 1), (378, 0, 'Dewi robi`ah al adawiyah', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '088216824005', '27-03-2021 09:24:40', NULL, '2021', 1), (379, 0, '<NAME>', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '085745623470', '27-03-2021 09:24:40', NULL, '2021', 1), (380, 0, '<NAME>', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '085854404718', '27-03-2021 09:24:40', NULL, '2021', 1), (381, 0, '<NAME>', 'Gasmul', 'Langsung', '27-03-2021 09:24:40', NULL, '', NULL, '085895240326', '27-03-2021 09:24:40', NULL, '2021', 1), (382, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 09:21:06', NULL, '', NULL, '081540510006', '28-03-2021 09:21:06', NULL, '2021', 1), (383, 0, '<NAME> ', 'Gasmul', 'Langsung', '28-03-2021 09:21:06', NULL, '', NULL, '085804054052', '28-03-2021 09:21:06', NULL, '2021', 1), (384, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 09:21:06', NULL, '', NULL, '081210994929', '28-03-2021 09:21:06', NULL, '2021', 1), (385, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 09:21:06', NULL, '', NULL, '08983443675', '28-03-2021 09:21:06', NULL, '2021', 1), (386, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 09:21:06', NULL, '', NULL, '082131032269', '28-03-2021 09:21:06', NULL, '2021', 1), (387, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 01:41:19', NULL, '', NULL, '081369998548', '28-03-2021 01:41:19', NULL, '2021', 1), (388, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 01:49:25', NULL, '', NULL, '0895395122267', '28-03-2021 01:49:25', NULL, '2021', 1), (389, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 01:49:25', '29-03-2021 15:47:34', 'izza', '29-03-2021 15:47:34', '082131195545', '28-03-2021 01:49:25', '29-03-2021 15:47:34', '2021', 1), (390, 0, 'lia', 'Gasmul', 'Langsung', '28-03-2021 01:49:25', NULL, '', NULL, '0895810693344', '28-03-2021 01:49:25', NULL, '2021', 1), (391, 0, '<NAME>', 'Gasmul', 'Langsung', '28-03-2021 01:49:25', NULL, '', NULL, '082140378698', '28-03-2021 01:49:25', NULL, '2021', 1), (392, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:10:43', NULL, '', NULL, '085713229794', '29-03-2021 09:10:43', NULL, '2021', 1), (393, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:10:43', NULL, '', NULL, '082210229421', '29-03-2021 09:10:43', NULL, '2021', 1), (394, 0, 'awallu diqri', 'Gasmul', 'Langsung', '29-03-2021 09:10:43', '30-03-2021 14:37:36', 'awalu', '30-03-2021 14:37:36', '085607289036', '29-03-2021 09:10:43', '30-03-2021 14:37:36', '2021', 1), (395, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:10:43', NULL, '', NULL, '082337799558', '29-03-2021 09:10:43', NULL, '2021', 1), (396, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:10:43', NULL, '', NULL, '082131173020', '29-03-2021 09:10:43', NULL, '2021', 1), (397, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:10:43', NULL, '', NULL, '085536492785', '29-03-2021 09:10:43', NULL, '2021', 1), (398, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:19:16', NULL, '', NULL, '085895240326', '29-03-2021 09:19:16', NULL, '2021', 1), (399, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 09:57:33', NULL, '', NULL, '089539122267', '29-03-2021 09:57:33', NULL, '2021', 1), (400, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 10:34:17', NULL, '', NULL, '082245222334', '29-03-2021 10:34:17', NULL, '2021', 1), (401, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 10:36:12', NULL, '', NULL, '0895395122267', '29-03-2021 10:36:12', NULL, '2021', 1), (402, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 10:36:12', NULL, '', NULL, '082264286172', '29-03-2021 10:36:12', NULL, '2021', 1), (403, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 10:36:12', NULL, '', NULL, '085604408466', '29-03-2021 10:36:12', NULL, '2021', 1), (404, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 10:36:12', '05-04-2021 23:55:49', 'alda', '05-04-2021 23:55:49', '081553577636', '29-03-2021 10:36:12', '05-04-2021 23:55:49', '2021', 1), (405, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 12:37:28', NULL, '', NULL, '085732707910', '29-03-2021 12:37:28', NULL, '2021', 1), (406, 0, 'anisaturrohmah', 'Gasmul', 'Langsung', '29-03-2021 12:37:28', '14-04-2021 10:40:34', 'anisa', '14-04-2021 10:40:34', '082331758155', '29-03-2021 12:37:28', '14-04-2021 10:40:34', '2021', 1), (407, 0, 'anisaturrohmah', 'Gasmul', 'Langsung', '29-03-2021 12:37:28', '14-04-2021 10:40:44', 'anisa', '14-04-2021 10:40:44', '082331758155', '29-03-2021 12:37:28', '14-04-2021 10:40:44', '2021', 1), (408, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 12:37:28', NULL, '', NULL, '0858544044718', '29-03-2021 12:37:28', NULL, '2021', 1), (409, 0, 'khuluqli asyrof', 'Gasmul', 'Langsung', '29-03-2021 12:37:28', NULL, '', NULL, '085733784226', '29-03-2021 12:37:28', NULL, '2021', 1), (410, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 12:37:28', NULL, '', NULL, '082337799558', '29-03-2021 12:37:28', NULL, '2021', 1), (411, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 03:47:34', NULL, '', NULL, '085707185339', '29-03-2021 03:47:34', NULL, '2021', 1), (412, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', '31-03-2021 15:56:12', 'takhul', '31-03-2021 15:56:12', '085815437360', '29-03-2021 03:52:14', '31-03-2021 15:56:12', '2021', 1), (413, 0, 'syauqi', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '081567988505', '29-03-2021 03:52:14', NULL, '2021', 1), (414, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '085732707910', '29-03-2021 03:52:14', NULL, '2021', 1), (415, 0, '<NAME>', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '082337799558', '29-03-2021 03:52:14', NULL, '2021', 1), (416, 0, 'zulfa hidayatul laila', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '085748345606', '29-03-2021 03:52:14', NULL, '2021', 1), (417, 0, 'siti nurkhoiriyah', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '082301303891', '29-03-2021 03:52:14', NULL, '2021', 1), (418, 0, 'siti nurkhoiriyah', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '082301303891', '29-03-2021 03:52:14', NULL, '2021', 1), (419, 0, 'apriliananta', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', '07-04-2021 15:39:25', 'april', '07-04-2021 15:39:25', '085706018820', '29-03-2021 03:52:14', '07-04-2021 15:39:25', '2021', 1), (420, 0, 'Alvira', 'Gasmul', 'Langsung', '29-03-2021 03:52:14', NULL, '', NULL, '083134823299', '29-03-2021 03:52:14', NULL, '2021', 1), (421, 0, 'ella 12', 'Gasmul', 'Langsung', '31-03-2021 09:42:16', NULL, '', NULL, '081929652746', '31-03-2021 09:42:16', NULL, '2021', 1), (422, 0, 'barotus salakah', 'Gasmul', 'Langsung', '31-03-2021 09:42:16', '31-03-2021 19:05:24', 'asma`', '31-03-2021 19:05:24', '085259366559', '31-03-2021 09:42:16', '31-03-2021 19:05:24', '2021', 1), (423, 0, 'tata permata', 'Gasmul', 'Langsung', '31-03-2021 09:42:16', '05-04-2021 09:59:37', 'tata', '05-04-2021 09:59:37', '085769942250', '31-03-2021 09:42:16', '05-04-2021 09:59:37', '2021', 1), (424, 0, 'ida rahayu', 'Gasmul', 'Langsung', '31-03-2021 09:42:16', NULL, '', NULL, '082131032269', '31-03-2021 09:42:16', NULL, '2021', 1), (425, 0, 'fazat arifatul ulfah', 'Gasmul', 'Langsung', '31-03-2021 11:12:23', NULL, '', NULL, '082257315720', '31-03-2021 11:12:23', NULL, '2021', 1), (426, 0, 'dewi kunti', 'Gasmul', 'Langsung', '31-03-2021 11:12:23', '08-04-2021 18:19:30', 'd', '08-04-2021 18:19:30', '085749866098', '31-03-2021 11:12:23', '08-04-2021 18:19:30', '2021', 1), (427, 0, '<NAME>', 'Gasmul', 'Langsung', '31-03-2021 11:12:23', NULL, '', NULL, '085806584420', '31-03-2021 11:12:23', NULL, '2021', 1), (428, 0, 'asma\'', 'Gasmul', 'Langsung', '31-03-2021 06:20:16', '31-03-2021 18:30:01', 'asma', '31-03-2021 18:30:01', '0895810693344', '31-03-2021 06:20:16', '31-03-2021 18:30:01', '2021', 1), (429, 0, '<NAME>', 'Gasmul', 'Langsung', '31-03-2021 06:20:16', '31-03-2021 18:20:16', 'uydflufi;', '31-03-2021 18:20:16', '087761512252', '31-03-2021 06:20:16', '31-03-2021 18:20:16', '2021', 1), (430, 0, '<NAME>', 'Gasmul', 'Langsung', '31-03-2021 06:30:01', NULL, '', NULL, '082140378698', '31-03-2021 06:30:01', NULL, '2021', 1), (431, 0, '<NAME>', 'Gasmul', 'Langsung', '31-03-2021 06:30:01', NULL, '', NULL, '081238749300', '31-03-2021 06:30:01', NULL, '2021', 1), (432, 0, 'nur <NAME>', 'Gasmul', 'Langsung', '31-03-2021 06:30:01', NULL, '', NULL, '087755799173', '31-03-2021 06:30:01', NULL, '2021', 1), (433, 0, 'rani nur azizah', 'Gasmul', 'Langsung', '31-03-2021 06:30:01', NULL, '', NULL, '082154508719', '31-03-2021 06:30:01', NULL, '2021', 1), (434, 0, '<NAME>', 'Gasmul', 'Langsung', '31-03-2021 06:30:01', NULL, '', NULL, '081234421526', '31-03-2021 06:30:01', NULL, '2021', 1), (435, 0, '<NAME>', 'Gasmul', 'Langsung', '31-03-2021 06:30:01', NULL, '', NULL, '081359365977', '31-03-2021 06:30:01', NULL, '2021', 1), (436, 0, '<NAME>', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '081238749300', '01-04-2021 03:50:51', NULL, '2021', 1), (437, 0, 'mala', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '085798105265', '01-04-2021 03:50:51', NULL, '2021', 1), (438, 0, 'nana', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '0895810693344', '01-04-2021 03:50:51', NULL, '2021', 1), (439, 0, 'z<NAME>ul laila', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '085748345606', '01-04-2021 03:50:51', NULL, '2021', 1), (440, 0, 'ifa', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '085658277876', '01-04-2021 03:50:51', NULL, '2021', 1), (441, 0, 'nurhasanah', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '081721903449', '01-04-2021 03:50:51', NULL, '2021', 1), (442, 0, 'tata permata', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', '05-04-2021 11:35:39', 'tata', '05-04-2021 11:35:39', '085769942250', '01-04-2021 03:50:51', '05-04-2021 11:35:39', '2021', 1), (443, 0, 'nana', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '0895810693344', '01-04-2021 03:50:51', NULL, '2021', 1), (444, 0, 'nana', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '0895810693344', '01-04-2021 03:50:51', NULL, '2021', 1), (445, 0, '<NAME>', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', '04-04-2021 20:47:03', 'mas faiz', '04-04-2021 20:47:03', '087759827426', '01-04-2021 03:50:51', '04-04-2021 20:47:03', '2021', 1), (446, 0, 'nurhasanah', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '087721903449', '01-04-2021 03:50:51', NULL, '2021', 1), (447, 0, '<NAME>akiyah dwi lestari', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '085607932877', '01-04-2021 03:50:51', NULL, '2021', 1), (448, 0, '<NAME>', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '082334964773', '01-04-2021 03:50:51', NULL, '2021', 1), (449, 0, 'nur al<NAME>', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '087755799173', '01-04-2021 03:50:51', NULL, '2021', 1), (450, 0, 'vtae', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '085732707910', '01-04-2021 03:50:51', NULL, '2021', 1), (451, 0, 'at<NAME>', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '081330247353', '01-04-2021 03:50:51', NULL, '2021', 1), (452, 0, 'ella', 'Gasmul', 'Langsung', '01-04-2021 03:50:51', NULL, '', NULL, '081929652746', '01-04-2021 03:50:51', NULL, '2021', 1), (454, 0, 'septia nurul', 'Gasmul', 'Langsung', '02-04-2021 08:24:11', NULL, '', NULL, '085812335686', '02-04-2021 08:24:11', NULL, '2021', 1), (456, 0, 'nana', 'Gasmul', 'Langsung', '02-04-2021 08:24:11', NULL, '', NULL, '0895810693344', '02-04-2021 08:24:11', NULL, '2021', 1), (457, 0, 'mala', 'Gasmul', 'Langsung', '02-04-2021 08:24:11', NULL, '', NULL, '085798105265', '02-04-2021 08:24:11', NULL, '2021', 1), (458, 0, 'dewi kunti', 'Gasmul', 'Langsung', '02-04-2021 08:24:11', '11-04-2021 16:43:25', 'dewi kunti', '11-04-2021 16:43:25', '085749866098', '02-04-2021 08:24:11', '11-04-2021 16:43:25', '2021', 1), (459, 0, 'dewi kunti', 'Gasmul', 'Langsung', '02-04-2021 08:24:11', '11-04-2021 16:43:43', 'dewi kunti', '11-04-2021 16:43:43', '085749866098', '02-04-2021 08:24:11', '11-04-2021 16:43:43', '2021', 1), (460, 0, 'anggi catur', 'Gasmul', 'Langsung', '02-04-2021 08:24:11', NULL, '', NULL, '085608650105', '02-04-2021 08:24:11', NULL, '2021', 1), (461, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 10:48:43', NULL, '', NULL, '081929652746', '02-04-2021 10:48:43', NULL, '2021', 1), (462, 0, 'nurhasanah', 'Gasmul', 'Langsung', '02-04-2021 10:48:43', NULL, '', NULL, '087721903449', '02-04-2021 10:48:43', NULL, '2021', 1), (463, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 12:49:50', '02-04-2021 14:00:35', 'anis', '02-04-2021 14:00:35', '085895524481', '02-04-2021 12:49:50', '02-04-2021 14:00:35', '2021', 1), (464, 0, 'obik', 'Gasmul', 'Langsung', '02-04-2021 12:49:50', NULL, '', NULL, '081515279705', '02-04-2021 12:49:50', NULL, '2021', 1), (465, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 12:49:50', '27-04-2021 17:58:22', 'dinda', '27-04-2021 17:58:22', '089616795815', '02-04-2021 12:49:50', '27-04-2021 17:58:22', '2021', 1), (466, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 12:49:50', NULL, '', NULL, '081333557866', '02-04-2021 12:49:50', NULL, '2021', 1), (467, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '082140378698', '02-04-2021 02:24:53', NULL, '2021', 1), (468, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', '11-04-2021 16:43:56', 'dewi kunti', '11-04-2021 16:43:56', '085749866098', '02-04-2021 02:24:53', '11-04-2021 16:43:56', '2021', 1), (469, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '085736709957', '02-04-2021 02:24:53', NULL, '2021', 1), (470, 0, 'nurhasanah', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '087721903449', '02-04-2021 02:24:53', NULL, '2021', 1), (471, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', '04-04-2021 20:47:37', 'mas faiz', '04-04-2021 20:47:37', '087759827426', '02-04-2021 02:24:53', '04-04-2021 20:47:37', '2021', 1), (472, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', '04-04-2021 20:45:29', 'mas faiz', '04-04-2021 20:45:29', '087759827426', '02-04-2021 02:24:53', '04-04-2021 20:45:29', '2021', 1), (473, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '082334293248', '02-04-2021 02:24:53', NULL, '2021', 1), (474, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '081335162969', '02-04-2021 02:24:53', NULL, '2021', 1), (475, 0, 'qomariyah', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '082148919087', '02-04-2021 02:24:53', NULL, '2021', 1), (476, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', '05-04-2021 11:35:46', 'balqis', '05-04-2021 11:35:46', '085736900640', '02-04-2021 02:24:53', '05-04-2021 11:35:46', '2021', 1), (477, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '085105408689', '02-04-2021 02:24:53', NULL, '2021', 1), (478, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '0895630920629', '02-04-2021 02:24:53', NULL, '2021', 1), (479, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '089616795815', '02-04-2021 02:24:53', NULL, '2021', 1), (480, 0, '<NAME>', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '089601340155', '02-04-2021 02:24:53', NULL, '2021', 1), (481, 0, 'hikma', 'Gasmul', 'Langsung', '02-04-2021 02:24:53', NULL, '', NULL, '0895333342953', '02-04-2021 02:24:53', NULL, '2021', 1), (482, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '087850175275', '04-04-2021 12:18:37', NULL, '2021', 1), (483, 0, 'Pras', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085755223374', '04-04-2021 12:18:37', NULL, '2021', 1), (484, 0, 'dewi kunti', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', '11-04-2021 16:44:06', 'dewi kunti', '11-04-2021 16:44:06', '085749866098', '04-04-2021 12:18:37', '11-04-2021 16:44:06', '2021', 1), (485, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085733858402', '04-04-2021 12:18:37', NULL, '2021', 1), (486, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '082140898252', '04-04-2021 12:18:37', NULL, '2021', 1), (487, 0, 'nur alfy syahriana', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '087755799173', '04-04-2021 12:18:37', NULL, '2021', 1), (488, 0, 'm <NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '082140319090', '04-04-2021 12:18:37', NULL, '2021', 1), (489, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085850819229', '04-04-2021 12:18:37', NULL, '2021', 1), (490, 0, 'ding dong', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', '07-04-2021 20:38:25', 'ding dong', '07-04-2021 20:38:25', '085732707910', '04-04-2021 12:18:37', '07-04-2021 20:38:25', '2021', 1), (491, 0, 'fitria n', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '088217088327', '04-04-2021 12:18:37', NULL, '2021', 1), (492, 0, 'finaahusnul', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '0895359522504', '04-04-2021 12:18:37', NULL, '2021', 1), (493, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '089616795815', '04-04-2021 12:18:37', NULL, '2021', 1), (494, 0, 'ayu mega', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '082234557957', '04-04-2021 12:18:37', NULL, '2021', 1), (495, 0, 'nur indah hidayanti', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085733858402', '04-04-2021 12:18:37', NULL, '2021', 1), (496, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '082140378698', '04-04-2021 12:18:37', NULL, '2021', 1), (497, 0, '<NAME>uni', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', '06-04-2021 06:04:29', 'dini', '06-04-2021 06:04:29', '082231077470', '04-04-2021 12:18:37', '06-04-2021 06:04:29', '2021', 1), (498, 0, '<NAME> ', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085804054052', '04-04-2021 12:18:37', NULL, '2021', 1), (499, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', '05-04-2021 23:56:21', 'alda', '05-04-2021 23:56:21', '081553577636', '04-04-2021 12:18:37', '05-04-2021 23:56:21', '2021', 1), (500, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085755770112', '04-04-2021 12:18:37', NULL, '2021', 1), (501, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '082334964773', '04-04-2021 12:18:37', NULL, '2021', 1), (502, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '087759827426', '04-04-2021 12:18:37', NULL, '2021', 1), (503, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '087759827426', '04-04-2021 12:18:37', NULL, '2021', 1), (504, 0, '<NAME> ', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085804054052', '04-04-2021 12:18:37', NULL, '2021', 1), (505, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', '04-04-2021 12:18:37', 'oyi', '04-04-2021 12:18:37', '085607099842', '04-04-2021 12:18:37', '04-04-2021 12:18:37', '2021', 1), (506, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '085785470712', '04-04-2021 12:18:37', NULL, '2021', 1), (507, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '087759827426', '04-04-2021 12:18:37', NULL, '2021', 1), (508, 0, '<NAME>', 'Gasmul', 'Langsung', '04-04-2021 12:18:37', NULL, '', NULL, '081358069207', '04-04-2021 12:18:37', NULL, '2021', 1), (509, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085732707910', '05-04-2021 11:35:46', NULL, '2021', 1), (510, 0, 'afiana', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085645155933', '05-04-2021 11:35:46', NULL, '2021', 1), (511, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '088217088327', '05-04-2021 11:35:46', NULL, '2021', 1), (512, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085773254961', '05-04-2021 11:35:46', NULL, '2021', 1), (513, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082140378698', '05-04-2021 11:35:46', NULL, '2021', 1), (514, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082210229421', '05-04-2021 11:35:46', NULL, '2021', 1), (515, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082210229421', '05-04-2021 11:35:46', NULL, '2021', 1), (516, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082210229421', '05-04-2021 11:35:46', NULL, '2021', 1), (517, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085854404718', '05-04-2021 11:35:46', NULL, '2021', 1), (518, 0, 'z<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '089614312519', '05-04-2021 11:35:46', NULL, '2021', 1), (519, 0, 'fazat arifatul ulfah', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082257315720', '05-04-2021 11:35:46', NULL, '2021', 1), (520, 0, 'puput mayasari', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', '06-04-2021 06:06:02', 'puput', '06-04-2021 06:06:02', '082359401694', '05-04-2021 11:35:46', '06-04-2021 06:06:02', '2021', 1), (521, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085732707910', '05-04-2021 11:35:46', NULL, '2021', 1), (522, 0, 'dewi kunti', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', '08-04-2021 18:19:45', 'd', '08-04-2021 18:19:45', '085749866098', '05-04-2021 11:35:46', '08-04-2021 18:19:45', '2021', 1), (523, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '081392281521', '05-04-2021 11:35:46', NULL, '2021', 1), (524, 0, 'Ainurrofiq', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085648489687', '05-04-2021 11:35:46', NULL, '2021', 1), (525, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', '08-04-2021 18:19:57', 'e', '08-04-2021 18:19:57', '085749866098', '05-04-2021 11:35:46', '08-04-2021 18:19:57', '2021', 1), (526, 0, 'qomariyah', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082148919087', '05-04-2021 11:35:46', NULL, '2021', 1), (527, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '085604408466', '05-04-2021 11:35:46', NULL, '2021', 1), (528, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '082140378698', '05-04-2021 11:35:46', NULL, '2021', 1), (529, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '081929652746', '05-04-2021 11:35:46', NULL, '2021', 1), (530, 0, 'hikma', 'Gasmul', 'Langsung', '05-04-2021 11:35:46', NULL, '', NULL, '0895333342953', '05-04-2021 11:35:46', NULL, '2021', 1), (531, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 03:05:52', '06-04-2021 06:05:21', 'khalimah', '06-04-2021 06:05:21', '085608165409', '05-04-2021 03:05:52', '06-04-2021 06:05:21', '2021', 1), (532, 0, '<NAME>', 'Gasmul', 'Langsung', '05-04-2021 03:05:52', NULL, '', NULL, '0895395122267', '05-04-2021 03:05:52', NULL, '2021', 1), (533, 0, 'syauqi', 'Gasmul', 'Langsung', '05-04-2021 03:05:52', NULL, '', NULL, '081567988505', '05-04-2021 03:05:52', NULL, '2021', 1), (534, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085791230997', '06-04-2021 10:40:23', NULL, '2021', 1), (535, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085259366559', '06-04-2021 10:40:23', NULL, '2021', 1), (536, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085608165409', '06-04-2021 10:40:23', NULL, '2021', 1), (537, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085732707910', '06-04-2021 10:40:23', NULL, '2021', 1), (538, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', '07-04-2021 20:32:55', 'meilia', '07-04-2021 20:32:55', '081252187346', '06-04-2021 10:40:23', '07-04-2021 20:32:55', '2021', 1), (539, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', '07-04-2021 20:38:47', 'zuana', '07-04-2021 20:38:47', '082245084932', '06-04-2021 10:40:23', '07-04-2021 20:38:47', '2021', 1), (540, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085727058140', '06-04-2021 10:40:23', NULL, '2021', 1), (541, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '088217088327', '06-04-2021 10:40:23', NULL, '2021', 1), (542, 0, 'apriliananta', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', '07-04-2021 16:29:02', 'april', '07-04-2021 16:29:02', '085706018820', '06-04-2021 10:40:23', '07-04-2021 16:29:02', '2021', 1), (543, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '082245084932', '06-04-2021 10:40:23', NULL, '2021', 1), (544, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085604455745', '06-04-2021 10:40:23', NULL, '2021', 1), (545, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085854404718', '06-04-2021 10:40:23', NULL, '2021', 1), (546, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 10:40:23', NULL, '', NULL, '085725901566', '06-04-2021 10:40:23', NULL, '2021', 1), (547, 0, 'pras', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085736929995', '06-04-2021 09:06:55', NULL, '2021', 1), (548, 0, 'pras', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085736929995', '06-04-2021 09:06:55', NULL, '2021', 1), (549, 0, 'layyin', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '082131404914', '06-04-2021 09:06:55', NULL, '2021', 1), (550, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085105408689', '06-04-2021 09:06:55', NULL, '2021', 1), (551, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085732707910', '06-04-2021 09:06:55', NULL, '2021', 1), (552, 0, '<NAME> ', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085804054052', '06-04-2021 09:06:55', NULL, '2021', 1), (553, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085705562746', '06-04-2021 09:06:55', NULL, '2021', 1), (554, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '081392281521', '06-04-2021 09:06:55', NULL, '2021', 1), (555, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085895524481', '06-04-2021 09:06:55', NULL, '2021', 1), (556, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', '07-04-2021 20:34:38', 'putri', '07-04-2021 20:34:38', '082123468640', '06-04-2021 09:06:55', '07-04-2021 20:34:38', '2021', 1), (557, 0, '<NAME> kmr 4', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', '11-04-2021 16:00:19', 'sulton', '11-04-2021 16:00:19', '081586353656', '06-04-2021 09:06:55', '11-04-2021 16:00:19', '2021', 1), (558, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '081515410943', '06-04-2021 09:06:55', NULL, '2021', 1), (559, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '082140378698', '06-04-2021 09:06:55', NULL, '2021', 1), (560, 0, 'lailatul istianah', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '082211509630', '06-04-2021 09:06:55', NULL, '2021', 1), (562, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085725901566', '06-04-2021 09:06:55', NULL, '2021', 1), (563, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', NULL, '', NULL, '085854650581', '06-04-2021 09:06:55', NULL, '2021', 1), (564, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', '07-04-2021 20:34:54', 'alfina', '07-04-2021 20:34:54', '085808427424', '06-04-2021 09:06:55', '07-04-2021 20:34:54', '2021', 1), (565, 0, '<NAME>', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', '08-04-2021 18:20:26', 'w', '08-04-2021 18:20:26', '085749866098', '06-04-2021 09:06:55', '08-04-2021 18:20:26', '2021', 1), (566, 0, 'dewi kunti', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', '11-04-2021 16:42:41', 'dewi kunti', '11-04-2021 16:42:41', '085749866098', '06-04-2021 09:06:55', '11-04-2021 16:42:41', '2021', 1), (567, 0, 'dewi kunti', 'Gasmul', 'Langsung', '06-04-2021 09:06:55', '11-04-2021 16:43:02', 'dewi kunti', '11-04-2021 16:43:02', '085749866098', '06-04-2021 09:06:55', '11-04-2021 16:43:02', '2021', 1), (568, 0, 'dewi kunti', 'Gasmul', 'Langsung', '07-04-2021 11:29:28', '11-04-2021 16:43:13', 'dewi kunti', '11-04-2021 16:43:13', '085749866098', '07-04-2021 11:29:28', '11-04-2021 16:43:13', '2021', 1), (569, 0, 'firda nur', 'Gasmul', 'Langsung', '07-04-2021 11:29:28', '11-04-2021 16:38:17', 'firda', '11-04-2021 16:38:17', '081528969074', '07-04-2021 11:29:28', '11-04-2021 16:38:17', '2021', 1), (570, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 11:29:28', '26-04-2021 21:08:05', 'solikin', '26-04-2021 21:08:05', '085785470712', '07-04-2021 11:29:28', '26-04-2021 21:08:05', '2021', 1), (571, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085745932194', '07-04-2021 01:55:27', NULL, '2021', 1), (572, 0, 'septia nurul', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085812335686', '07-04-2021 01:55:27', NULL, '2021', 1), (573, 0, 'septia nurul', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085812335686', '07-04-2021 01:55:27', NULL, '2021', 1), (574, 0, 'zuana habibaturrohmah', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085959869818', '07-04-2021 01:55:27', NULL, '2021', 1), (575, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', '07-04-2021 15:37:41', 'rifki', '07-04-2021 15:37:41', '085820165204', '07-04-2021 01:55:27', '07-04-2021 15:37:41', '2021', 1), (576, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085736709957', '07-04-2021 01:55:27', NULL, '2021', 1), (577, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085736709957', '07-04-2021 01:55:27', NULL, '2021', 1), (578, 0, 'SMP Islam Sabilurrosyad', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '081555694090', '07-04-2021 01:55:27', NULL, '2021', 1), (579, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085854404718', '07-04-2021 01:55:27', NULL, '2021', 1), (580, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085798105265', '07-04-2021 01:55:27', NULL, '2021', 1), (581, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '082140378698', '07-04-2021 01:55:27', NULL, '2021', 1), (582, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '082237368591', '07-04-2021 01:55:27', NULL, '2021', 1), (583, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '081235104728', '07-04-2021 01:55:27', NULL, '2021', 1), (584, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '082330733048', '07-04-2021 01:55:27', NULL, '2021', 1), (585, 0, 'dewi kunti', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', '11-04-2021 16:44:16', 'dewi kunti', '11-04-2021 16:44:16', '085749866098', '07-04-2021 01:55:27', '11-04-2021 16:44:16', '2021', 1), (586, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', '07-04-2021 20:35:11', 'zulfa', '07-04-2021 20:35:11', '082140937240', '07-04-2021 01:55:27', '07-04-2021 20:35:11', '2021', 1), (587, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085850819229', '07-04-2021 01:55:27', NULL, '2021', 1), (588, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '0895395122267', '07-04-2021 01:55:27', NULL, '2021', 1), (589, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '081234421526', '07-04-2021 01:55:27', NULL, '2021', 1), (590, 0, 'afiana', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', NULL, '', NULL, '085645155933', '07-04-2021 01:55:27', NULL, '2021', 1), (591, 0, 'CEO Gasmul', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', '07-04-2021 16:29:19', 'rou', '07-04-2021 16:29:19', '089529566999', '07-04-2021 01:55:27', '07-04-2021 16:29:19', '2021', 1), (592, 0, 'faiqotus sholihah', 'Gasmul', 'Langsung', '07-04-2021 01:55:27', '07-04-2021 13:55:27', 'faiq', '07-04-2021 13:55:27', '085816345908', '07-04-2021 01:55:27', '07-04-2021 13:55:27', '2021', 1), (593, 0, 'faiqotus sholihah', 'Gasmul', 'Langsung', '07-04-2021 03:35:52', '07-04-2021 15:35:52', 'faiq', '07-04-2021 15:35:52', '085816345908', '07-04-2021 03:35:52', '07-04-2021 15:35:52', '2021', 1), (594, 0, 'dewi kunti', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', '11-04-2021 16:44:31', 'dewi kunti', '11-04-2021 16:44:31', '085749866098', '07-04-2021 04:29:39', '11-04-2021 16:44:31', '2021', 1), (595, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '081252187346', '07-04-2021 04:29:39', NULL, '2021', 1), (596, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '085895524481', '07-04-2021 05:43:32', NULL, '2021', 1), (597, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '085105408689', '07-04-2021 05:43:32', NULL, '2021', 1), (598, 0, 'ella 12', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '081929652746', '07-04-2021 05:43:32', NULL, '2021', 1), (599, 0, 'ella 12', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '081929652746', '07-04-2021 05:43:32', NULL, '2021', 1), (600, 0, 'barotus salakah', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '085259366559', '07-04-2021 05:43:32', NULL, '2021', 1), (601, 0, 'dini sri wahyuni', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '082231077470', '07-04-2021 05:43:32', NULL, '2021', 1), (602, 0, 'zu<NAME>ibaturrohmah', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '082245084932', '07-04-2021 05:43:32', NULL, '2021', 1), (603, 0, 'm dimas farrih r', 'Gasmul', 'Langsung', '07-04-2021 05:43:32', NULL, '', NULL, '085807481113', '07-04-2021 05:43:32', NULL, '2021', 1), (604, 0, 'zuana habibaturrohmah', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '082245084932', '07-04-2021 04:29:39', NULL, '2021', 1), (605, 0, 'obik', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '081515279705', '07-04-2021 04:29:39', NULL, '2021', 1), (606, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085536977155', '07-04-2021 04:29:39', NULL, '2021', 1), (607, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085850819229', '07-04-2021 04:29:39', NULL, '2021', 1), (608, 0, 'Alhasanibnifuad', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085224018565', '07-04-2021 04:29:39', NULL, '2021', 1), (609, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085608165409', '07-04-2021 04:29:39', NULL, '2021', 1), (610, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085259366559', '07-04-2021 04:29:39', NULL, '2021', 1), (611, 0, 'Wahib', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085895151139', '07-04-2021 04:29:39', NULL, '2021', 1), (612, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '082211509630', '07-04-2021 04:29:39', NULL, '2021', 1), (613, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '081335162969', '07-04-2021 04:29:39', NULL, '2021', 1), (615, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '081336313926', '07-04-2021 04:29:39', NULL, '2021', 1), (616, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085755925863', '07-04-2021 04:29:39', NULL, '2021', 1), (617, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '081575637990', '07-04-2021 04:29:39', NULL, '2021', 1), (618, 0, '<NAME>ul fitria', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085746584314', '07-04-2021 04:29:39', NULL, '2021', 1), (619, 0, '<NAME> ', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085804054052', '07-04-2021 04:29:39', NULL, '2021', 1), (620, 0, 'apriliananta', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085706018820', '07-04-2021 04:29:39', NULL, '2021', 1), (621, 0, '<NAME>', 'Gasmul', 'Langsung', '07-04-2021 04:29:39', NULL, '', NULL, '085791715339', '07-04-2021 04:29:39', NULL, '2021', 1), (622, 0, 'Yunji', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', NULL, '', NULL, '085732707910', '08-04-2021 12:56:00', NULL, '2021', 1), (623, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', NULL, '', NULL, '081231723649', '08-04-2021 12:56:00', NULL, '2021', 1), (624, 0, 'dewi kunti', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', '11-04-2021 16:44:40', 'dewi kunti', '11-04-2021 16:44:40', '085749866098', '08-04-2021 12:56:00', '11-04-2021 16:44:40', '2021', 1), (625, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', '08-04-2021 13:05:59', 'hasan', '08-04-2021 13:05:59', '085745058551', '08-04-2021 12:56:00', '08-04-2021 13:05:59', '2021', 1); INSERT INTO `tb_paket` (`id_paket`, `id_santri`, `nama_paket`, `penerima`, `jenis_kirim`, `tgl_terima`, `tgl_ambil`, `pengambil`, `status_ambil`, `hp`, `creat_at`, `modified_at`, `tahun`, `jml_paket`) VALUES (626, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', NULL, '', NULL, '085735731646', '08-04-2021 12:56:00', NULL, '2021', 1), (627, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', NULL, '', NULL, '085851685879', '08-04-2021 12:56:00', NULL, '2021', 1), (628, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', '08-04-2021 15:00:18', 'fadil', '08-04-2021 15:00:18', '081392281521', '08-04-2021 12:56:00', '08-04-2021 15:00:18', '2021', 1), (629, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', NULL, '', NULL, '081330614317', '08-04-2021 12:56:00', NULL, '2021', 1), (630, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 12:56:00', NULL, '', NULL, '082140852182', '08-04-2021 12:56:00', NULL, '2021', 1), (631, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 01:06:15', NULL, '', NULL, '085812335686', '08-04-2021 01:06:15', NULL, '2021', 1), (632, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 01:06:15', NULL, '', NULL, '089614312519', '08-04-2021 01:06:15', NULL, '2021', 1), (633, 0, 'ismail pamungkas', 'Gasmul', 'Langsung', '08-04-2021 03:00:18', NULL, '', NULL, '085867781424', '08-04-2021 03:00:18', NULL, '2021', 1), (634, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 03:00:18', NULL, '', NULL, '085732160803', '08-04-2021 03:00:18', NULL, '2021', 1), (635, 0, 'Hamzah', 'Gasmul', 'Langsung', '08-04-2021 03:00:18', NULL, '', NULL, '0895621099771', '08-04-2021 03:00:18', NULL, '2021', 1), (636, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 03:00:18', NULL, '', NULL, '085769220753', '08-04-2021 03:00:18', NULL, '2021', 1), (637, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 03:00:18', NULL, '', NULL, '087894802643', '08-04-2021 03:00:18', NULL, '2021', 1), (638, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 01:06:15', NULL, '', NULL, '085732558942', '08-04-2021 01:06:15', NULL, '2021', 1), (639, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 01:06:15', NULL, '', NULL, '081555694090', '08-04-2021 01:06:15', NULL, '2021', 1), (640, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 01:06:15', NULL, '', NULL, '081238749300', '08-04-2021 01:06:15', NULL, '2021', 1), (641, 0, '<NAME>', 'Gasmul', 'Langsung', '08-04-2021 01:06:15', NULL, '', NULL, '085700537220', '08-04-2021 01:06:15', NULL, '2021', 1), (642, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '085708070730', '09-04-2021 01:43:15', NULL, '2021', 1), (643, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '085604408466', '09-04-2021 01:43:15', NULL, '2021', 1), (644, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '082142930647', '09-04-2021 01:43:15', NULL, '2021', 1), (645, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '081333557866', '09-04-2021 01:43:15', NULL, '2021', 1), (646, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '085783778124', '09-04-2021 01:43:15', NULL, '2021', 1), (647, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '085745440420', '09-04-2021 01:43:15', NULL, '2021', 1), (648, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '085850819229', '09-04-2021 01:43:15', NULL, '2021', 1), (649, 0, 'hikma (<NAME>)', 'Gasmul', 'Langsung', '09-04-2021 01:43:15', NULL, '', NULL, '0895333342953', '09-04-2021 01:43:15', NULL, '2021', 1), (650, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082301303891', '09-04-2021 01:55:41', NULL, '2021', 1), (651, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082233625400', '09-04-2021 01:55:41', NULL, '2021', 1), (652, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', '11-04-2021 16:42:02', 'firda', '11-04-2021 16:42:02', '081528969074', '09-04-2021 01:55:41', '11-04-2021 16:42:02', '2021', 1), (653, 0, 'ay<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082234557957', '09-04-2021 01:55:41', NULL, '2021', 1), (654, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082140898252', '09-04-2021 01:55:41', NULL, '2021', 1), (655, 0, '<NAME>u qomariyah', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', '27-04-2021 17:59:59', 'dinda', '27-04-2021 17:59:59', '089616795815', '09-04-2021 01:55:41', '27-04-2021 17:59:59', '2021', 1), (656, 0, 'qomariyah', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082148919087', '09-04-2021 01:55:41', NULL, '2021', 1), (657, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '089601340155', '09-04-2021 01:55:41', NULL, '2021', 1), (658, 0, 'M alif ridho ku', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '081231152841', '09-04-2021 01:55:41', NULL, '2021', 1), (659, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '081231152841', '09-04-2021 01:55:41', NULL, '2021', 1), (660, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', '13-04-2021 22:06:23', 'ASYHAR', '13-04-2021 22:06:23', '081216645167', '09-04-2021 01:55:41', '13-04-2021 22:06:23', '2021', 1), (661, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085642229798', '09-04-2021 01:55:41', NULL, '2021', 1), (662, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085732558942', '09-04-2021 01:55:41', NULL, '2021', 1), (663, 0, 'puput mayasari', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082359401694', '09-04-2021 01:55:41', NULL, '2021', 1), (664, 0, 'puput mayasari', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '082359401694', '09-04-2021 01:55:41', NULL, '2021', 1), (665, 0, 'azizatur rosyidah', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085755770112', '09-04-2021 01:55:41', NULL, '2021', 1), (666, 0, 'wahyuni wulan', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '0895375700880', '09-04-2021 01:55:41', NULL, '2021', 1), (667, 0, '<NAME> (yunji)', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085732707910', '09-04-2021 01:55:41', NULL, '2021', 1), (668, 0, 'yusril ihza maulana', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085228361782', '09-04-2021 01:55:41', NULL, '2021', 1), (669, 0, 'Bu pipit', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085755644003', '09-04-2021 01:55:41', NULL, '2021', 1), (670, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 01:55:41', NULL, '', NULL, '085769220753', '09-04-2021 01:55:41', NULL, '2021', 1), (671, 0, 'mufidatu zakiyah dwi lestari', 'Gasmul', 'Langsung', '09-04-2021 06:32:44', NULL, '', NULL, '085607932877', '09-04-2021 06:32:44', NULL, '2021', 1), (672, 0, 'fadeli mk', 'Gasmul', 'Langsung', '09-04-2021 06:32:44', NULL, '', NULL, '089515940900', '09-04-2021 06:32:44', NULL, '2021', 1), (673, 0, '<NAME>', 'Gasmul', 'Langsung', '09-04-2021 06:32:44', '13-04-2021 22:07:16', 'ASYHAR', '13-04-2021 22:07:16', '081216645167', '09-04-2021 06:32:44', '13-04-2021 22:07:16', '2021', 1), (674, 0, 'Wahib', 'Gasmul', 'Langsung', '09-04-2021 06:32:44', NULL, '', NULL, '085895151139', '09-04-2021 06:32:44', NULL, '2021', 1), (675, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 01:34:03', NULL, '', NULL, '0895810693344', '10-04-2021 01:34:03', NULL, '2021', 1), (676, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085785470712', '10-04-2021 02:47:10', NULL, '2021', 1), (677, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '082334964773', '10-04-2021 02:47:10', NULL, '2021', 1), (678, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '082245084932', '10-04-2021 02:47:10', NULL, '2021', 1), (679, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '083847825504', '10-04-2021 02:47:10', NULL, '2021', 1), (680, 0, 'Wahib', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085895151139', '10-04-2021 02:47:10', NULL, '2021', 1), (681, 0, 'nova niswatin', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085732671682', '10-04-2021 02:47:10', NULL, '2021', 1), (682, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085854404718', '10-04-2021 02:47:10', NULL, '2021', 1), (683, 0, 'nur al<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '087755799173', '10-04-2021 02:47:10', NULL, '2021', 1), (684, 0, 'nova niswatin', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085732671', '10-04-2021 02:47:10', NULL, '2021', 1), (685, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '082334964773', '10-04-2021 02:47:10', NULL, '2021', 1), (686, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '089601340155', '10-04-2021 02:47:10', NULL, '2021', 1), (687, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '082245222334', '10-04-2021 02:47:10', NULL, '2021', 1), (688, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', '11-04-2021 13:55:16', 'ulil', '11-04-2021 13:55:16', '085772', '10-04-2021 02:47:10', '11-04-2021 13:55:16', '2021', 1), (689, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', '11-04-2021 16:42:17', 'firda', '11-04-2021 16:42:17', '081528969074', '10-04-2021 02:47:10', '11-04-2021 16:42:17', '2021', 1), (690, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085798', '10-04-2021 02:47:10', NULL, '2021', 1), (691, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '0885748', '10-04-2021 02:47:10', NULL, '2021', 1), (692, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', NULL, '', NULL, '085736709957', '10-04-2021 02:47:10', NULL, '2021', 1), (693, 0, 'dewi kunti', 'Gasmul', 'Langsung', '10-04-2021 02:47:10', '11-04-2021 16:44:51', 'dewi kunti', '11-04-2021 16:44:51', '085749866098', '10-04-2021 02:47:10', '11-04-2021 16:44:51', '2021', 1), (694, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '083847825504', '10-04-2021 08:37:47', NULL, '2021', 1), (695, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085798105265', '10-04-2021 08:37:47', NULL, '2021', 1), (696, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '082334964773', '10-04-2021 08:37:47', NULL, '2021', 1), (697, 0, 'dewi kunti', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', '11-04-2021 16:45:01', 'dewi kunti', '11-04-2021 16:45:01', '085749866098', '10-04-2021 08:37:47', '11-04-2021 16:45:01', '2021', 1), (698, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', '11-04-2021 16:42:28', 'firda', '11-04-2021 16:42:28', '081528969074', '10-04-2021 08:37:47', '11-04-2021 16:42:28', '2021', 1), (699, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '082245084932', '10-04-2021 08:37:47', NULL, '2021', 1), (700, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085785470712', '10-04-2021 08:37:47', NULL, '2021', 1), (701, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085748764956', '10-04-2021 08:37:47', NULL, '2021', 1), (702, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', '11-04-2021 15:40:29', 'ulil', '11-04-2021 15:40:29', '085772267366', '10-04-2021 08:37:47', '11-04-2021 15:40:29', '2021', 1), (703, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '089601340155', '10-04-2021 08:37:47', NULL, '2021', 1), (704, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '082334964773', '10-04-2021 08:37:47', NULL, '2021', 1), (705, 0, 'nur <NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '087755799173', '10-04-2021 08:37:47', NULL, '2021', 1), (706, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085736709957', '10-04-2021 08:37:47', NULL, '2021', 1), (707, 0, 'azalia', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085717342144', '10-04-2021 08:37:47', NULL, '2021', 1), (708, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '081553577636', '10-04-2021 08:37:47', NULL, '2021', 1), (709, 0, 'nur alfy syahriana', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '087755799173', '10-04-2021 08:37:47', NULL, '2021', 1), (710, 0, 'moch ali wafa', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '0816501405', '10-04-2021 08:37:47', NULL, '2021', 1), (712, 0, '<NAME> (yunji)', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085732707910', '10-04-2021 08:37:47', NULL, '2021', 1), (713, 0, '<NAME>', 'Gasmul', 'Langsung', '10-04-2021 08:37:47', NULL, '', NULL, '085732707910', '10-04-2021 08:37:47', NULL, '2021', 1), (714, 0, 'Pras', 'Gasmul', 'Langsung', '11-04-2021 01:55:16', NULL, '', NULL, '085755223374', '11-04-2021 01:55:16', NULL, '2021', 1), (715, 0, 'Pras', 'Gasmul', 'Langsung', '11-04-2021 01:55:16', NULL, '', NULL, '085755223374', '11-04-2021 01:55:16', NULL, '2021', 1), (716, 0, 'bella fadhilatus sanah', 'Gasmul', 'Langsung', '11-04-2021 01:55:16', NULL, '', NULL, '085804048048', '11-04-2021 01:55:16', NULL, '2021', 1), (717, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 03:40:40', NULL, '', NULL, '085235764810', '11-04-2021 03:40:40', NULL, '2021', 1), (718, 0, 'z<NAME>', 'Gasmul', 'Langsung', '11-04-2021 03:40:40', NULL, '', NULL, '082330733048', '11-04-2021 03:40:40', NULL, '2021', 1), (719, 0, 'aidha', 'Gasmul', 'Langsung', '11-04-2021 03:40:40', '11-04-2021 15:40:40', 'aidha', '11-04-2021 15:40:40', '081390344527', '11-04-2021 03:40:40', '11-04-2021 15:40:40', '2021', 1), (720, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 03:40:40', NULL, '', NULL, '087759827426', '11-04-2021 03:40:40', NULL, '2021', 1), (722, 0, 'sa<NAME>imah', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '082245210228', '11-04-2021 04:45:12', NULL, '2021', 1), (723, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085708727553', '11-04-2021 04:45:12', NULL, '2021', 1), (724, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '082245394489', '11-04-2021 04:45:12', NULL, '2021', 1), (725, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '0895810693344', '11-04-2021 04:45:12', NULL, '2021', 1), (726, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:01', NULL, '', NULL, '085855002008', '12-04-2021 10:35:01', NULL, '2021', 1), (728, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '085895240326', '12-04-2021 10:35:43', NULL, '2021', 1), (729, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '081369998548', '12-04-2021 10:35:43', NULL, '2021', 1), (730, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '081210994929', '12-04-2021 10:35:43', NULL, '2021', 1), (731, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '085755925863', '12-04-2021 10:35:43', NULL, '2021', 1), (732, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '081414199703', '12-04-2021 10:35:43', NULL, '2021', 1), (733, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '083114313819', '12-04-2021 10:35:43', NULL, '2021', 1), (734, 0, '<NAME>', 'Gasmul', 'Langsung', '12-04-2021 10:35:43', NULL, '', NULL, '083847825504', '12-04-2021 10:35:43', NULL, '2021', 1), (735, 0, 'mutohar', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085736810387', '11-04-2021 04:45:12', NULL, '2021', 1), (736, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085773254961', '11-04-2021 04:45:12', NULL, '2021', 1), (737, 0, 'qomariyah', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', '11-04-2021 16:45:12', 'qomariyah', '11-04-2021 16:45:12', '082148919087', '11-04-2021 04:45:12', '11-04-2021 16:45:12', '2021', 1), (738, 0, 'dini sri wahyuni', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '082231077470', '11-04-2021 04:45:12', NULL, '2021', 1), (739, 0, 'mutohar', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085736810387', '11-04-2021 04:45:12', NULL, '2021', 1), (740, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '081214377059', '11-04-2021 04:45:12', NULL, '2021', 1), (741, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '082123468640', '11-04-2021 04:45:12', NULL, '2021', 1), (742, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085798105265', '11-04-2021 04:45:12', NULL, '2021', 1), (743, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '081554230051', '11-04-2021 04:45:12', NULL, '2021', 1), (744, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085645698271', '11-04-2021 04:45:12', NULL, '2021', 1), (745, 0, 'Zulfatizzahro\' Pujianawan', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '082140937240', '11-04-2021 04:45:12', NULL, '2021', 1), (746, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085604455745', '11-04-2021 04:45:12', NULL, '2021', 1), (747, 0, 'apriliananta', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085706018820', '11-04-2021 04:45:12', NULL, '2021', 1), (748, 0, 'apriliananta', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085706018820', '11-04-2021 04:45:12', NULL, '2021', 1), (749, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085773254961', '11-04-2021 04:45:12', NULL, '2021', 1), (750, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085715161560', '11-04-2021 04:45:12', NULL, '2021', 1), (751, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085755770112', '11-04-2021 04:45:12', NULL, '2021', 1), (752, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '081214377059', '11-04-2021 04:45:12', NULL, '2021', 1), (753, 0, '<NAME>', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '082123468640', '11-04-2021 04:45:12', NULL, '2021', 1), (754, 0, 'ismail pamungkas', 'Gasmul', 'Langsung', '11-04-2021 04:45:12', NULL, '', NULL, '085867781424', '11-04-2021 04:45:12', NULL, '2021', 1), (755, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '082337799558', '13-04-2021 10:55:22', NULL, '2021', 1), (756, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085236489966', '13-04-2021 10:55:22', NULL, '2021', 1), (757, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '08881840295', '13-04-2021 10:55:22', NULL, '2021', 1), (758, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085732707910', '13-04-2021 10:55:22', NULL, '2021', 1), (759, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085708014187', '13-04-2021 10:55:22', NULL, '2021', 1), (760, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085895240326', '13-04-2021 10:55:22', NULL, '2021', 1), (761, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '0857322671682', '13-04-2021 10:55:22', NULL, '2021', 1), (762, 0, 'M <NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', '13-04-2021 22:07:56', 'ASYHAR', '13-04-2021 22:07:56', '081216645167', '13-04-2021 10:55:22', '13-04-2021 22:07:56', '2021', 1), (763, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '082337799558', '13-04-2021 10:55:22', NULL, '2021', 1), (764, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '082143677035', '13-04-2021 10:55:22', NULL, '2021', 1), (765, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085895240326', '13-04-2021 10:55:22', NULL, '2021', 1), (766, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085745058551', '13-04-2021 10:55:22', NULL, '2021', 1), (767, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085852404645', '13-04-2021 10:55:22', NULL, '2021', 1), (768, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '089614312519', '13-04-2021 10:55:22', NULL, '2021', 1), (769, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085854404718', '13-04-2021 10:55:22', NULL, '2021', 1), (770, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '081515410943', '13-04-2021 10:55:22', NULL, '2021', 1), (771, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '082334964773', '13-04-2021 10:55:22', NULL, '2021', 1), (772, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '089614312519', '13-04-2021 10:55:22', NULL, '2021', 1), (773, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:55:22', NULL, '', NULL, '085783778124', '13-04-2021 10:55:22', NULL, '2021', 1), (774, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '085886400604', '13-04-2021 10:09:17', NULL, '2021', 1), (775, 0, 'fatimatuz', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '085105408689', '13-04-2021 10:09:17', NULL, '2021', 1), (776, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '082257315720', '13-04-2021 10:09:17', NULL, '2021', 1), (777, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '087741613332', '13-04-2021 10:09:17', NULL, '2021', 1), (778, 0, 'avivatunnisa', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '082139619251', '13-04-2021 10:09:17', NULL, '2021', 1), (779, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '085708070730', '13-04-2021 10:09:17', NULL, '2021', 1), (780, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '085895240326', '13-04-2021 10:09:17', NULL, '2021', 1), (781, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '082234028068', '13-04-2021 10:09:17', NULL, '2021', 1), (782, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '082231077470', '13-04-2021 10:09:17', NULL, '2021', 1), (783, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '082233625400', '13-04-2021 10:09:17', NULL, '2021', 1), (784, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '085655211404', '13-04-2021 10:09:17', NULL, '2021', 1), (785, 0, '<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '08560755584', '13-04-2021 10:09:17', NULL, '2021', 1), (786, 0, 'b<NAME>', 'Gasmul', 'Langsung', '13-04-2021 10:09:17', NULL, '', NULL, '085804048048', '13-04-2021 10:09:17', NULL, '2021', 1), (787, 0, 'm ilyasin', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '081358069207', '14-04-2021 10:40:55', NULL, '2021', 1), (788, 0, 'm ilyasin', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '081358069207', '14-04-2021 10:40:55', NULL, '2021', 1), (789, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '082234028068', '14-04-2021 10:40:55', NULL, '2021', 1), (790, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '085259366559', '14-04-2021 10:40:55', NULL, '2021', 1), (791, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '081216645167', '14-04-2021 10:40:55', NULL, '2021', 1), (792, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '085850819229', '14-04-2021 10:40:55', NULL, '2021', 1), (793, 0, 'hymnastiar shaerasy said', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', '24-04-2021 10:14:29', 'tiar', '24-04-2021 10:14:29', '088217211850', '14-04-2021 10:40:55', '24-04-2021 10:14:29', '2021', 1), (794, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '089601324582', '14-04-2021 10:40:55', NULL, '2021', 1), (795, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '087825197077', '14-04-2021 10:40:55', NULL, '2021', 1), (796, 0, 'iqbal siddiq ', 'Gasmul', 'Langsung', '14-04-2021 10:40:55', NULL, '', NULL, '082223702360', '14-04-2021 10:40:55', NULL, '2021', 1), (797, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', NULL, '', NULL, '085642229798', '14-04-2021 03:30:23', NULL, '2021', 1), (798, 0, 'MUFI', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', NULL, '', NULL, '085607932877', '14-04-2021 03:30:23', NULL, '2021', 1), (799, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', NULL, '', NULL, '085655518519', '14-04-2021 03:30:23', NULL, '2021', 1), (800, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', NULL, '', NULL, '085735580577', '14-04-2021 03:30:23', NULL, '2021', 1), (801, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', NULL, '', NULL, '085854650581', '14-04-2021 03:30:23', NULL, '2021', 1), (802, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', NULL, '', NULL, '082245084932', '14-04-2021 03:30:23', NULL, '2021', 1), (803, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 03:30:23', '14-04-2021 15:30:23', 'faiz', '14-04-2021 15:30:23', '081555694090', '14-04-2021 03:30:23', '14-04-2021 15:30:23', '2021', 1), (805, 0, '<NAME>', 'Gasmul', 'COD', '14-04-2021 06:21:09', NULL, '', NULL, '085886400604', '14-04-2021 06:21:09', NULL, '2021', 1), (806, 0, '<NAME>', 'Gasmul', 'COD', '14-04-2021 06:21:09', NULL, '', NULL, '085886400604', '14-04-2021 06:21:09', NULL, '2021', 1), (807, 0, '<NAME> ', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '085804054052', '14-04-2021 06:21:09', NULL, '2021', 1), (808, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '081377931517', '14-04-2021 06:21:09', NULL, '2021', 1), (809, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '081216645167', '14-04-2021 06:21:09', NULL, '2021', 1), (810, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '082211509630', '14-04-2021 06:21:09', NULL, '2021', 1), (811, 0, 'obik', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '081515279705', '14-04-2021 06:21:09', NULL, '2021', 1), (812, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '082231077470', '14-04-2021 06:21:09', NULL, '2021', 1), (813, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '082334165064', '14-04-2021 06:21:09', NULL, '2021', 1), (814, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '085931362683', '14-04-2021 06:21:09', NULL, '2021', 1), (815, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '081359882745', '14-04-2021 06:21:09', NULL, '2021', 1), (816, 0, 'muis', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '089505193388', '14-04-2021 06:21:09', NULL, '2021', 1), (817, 0, '<NAME>`', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '085736709957', '14-04-2021 06:21:09', NULL, '2021', 1), (818, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '085855002008', '14-04-2021 06:21:09', NULL, '2021', 1), (819, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '081357907820', '14-04-2021 06:21:09', NULL, '2021', 1), (820, 0, '<NAME>', 'Gasmul', 'Langsung', '14-04-2021 06:21:09', NULL, '', NULL, '085812457356', '14-04-2021 06:21:09', NULL, '2021', 1), (821, 0, '<NAME>', 'Gasmul', 'Langsung', '15-04-2021 03:07:18', NULL, '', NULL, '081615632221', '15-04-2021 03:07:18', NULL, '2021', 1), (822, 0, '<NAME>', 'Gasmul', 'Langsung', '15-04-2021 03:07:18', NULL, '', NULL, '081359129868', '15-04-2021 03:07:18', NULL, '2021', 1), (823, 0, '<NAME>', 'Gasmul', 'Langsung', '15-04-2021 03:07:18', '15-04-2021 15:07:18', 'efweht', '15-04-2021 15:07:18', '087741613332', '15-04-2021 03:07:18', '15-04-2021 15:07:18', '2021', 1), (824, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 11:56:00', NULL, '', NULL, '085695593787', '16-04-2021 11:56:00', NULL, '2021', 1), (825, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 11:56:00', NULL, '', NULL, '085886400604', '16-04-2021 11:56:00', NULL, '2021', 1), (826, 0, 'ASMAUS', 'Gasmul', 'Langsung', '16-04-2021 11:56:00', NULL, '', NULL, '085732707910', '16-04-2021 11:56:00', NULL, '2021', 1), (827, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 12:18:49', '26-04-2021 12:36:58', 'amal', '26-04-2021 12:36:58', '085784302932', '16-04-2021 12:18:49', '26-04-2021 12:36:58', '2021', 1), (828, 0, 'afiana', 'Gasmul', 'Langsung', '16-04-2021 12:18:49', NULL, '', NULL, '085645155933', '16-04-2021 12:18:49', NULL, '2021', 1), (829, 0, '<NAME> (NING)', 'Gasmul', 'Langsung', '16-04-2021 12:38:47', NULL, '', NULL, '082140720608', '16-04-2021 12:38:47', NULL, '2021', 1), (830, 0, '<NAME> (NINGZ)', 'Gasmul', 'Langsung', '16-04-2021 12:18:49', NULL, '', NULL, '082140720608', '16-04-2021 12:18:49', NULL, '2021', 1), (831, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', '26-04-2021 13:10:28', 'amal', '26-04-2021 13:10:28', '085784302932', '16-04-2021 04:54:05', '26-04-2021 13:10:28', '2021', 1), (832, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085743979787', '16-04-2021 04:54:05', NULL, '2021', 1), (833, 0, '<NAME> (guru smp)', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '082139646773', '16-04-2021 04:54:05', NULL, '2021', 1), (834, 0, '<NAME> ', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085804054052', '16-04-2021 04:54:05', NULL, '2021', 1), (835, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085806811392', '16-04-2021 04:54:05', NULL, '2021', 1), (836, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085886400604', '16-04-2021 04:54:05', NULL, '2021', 1), (837, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085607932877', '16-04-2021 04:54:05', NULL, '2021', 1), (838, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085886400604', '16-04-2021 04:54:05', NULL, '2021', 1), (839, 0, 'ZIDHAN', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '081334872006', '16-04-2021 04:54:05', NULL, '2021', 1), (840, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085215109163', '16-04-2021 04:54:05', NULL, '2021', 1), (841, 0, 'nur<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '082142930647', '16-04-2021 04:54:05', NULL, '2021', 1), (842, 0, 'nur indah hidayanti', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085733858402', '16-04-2021 04:54:05', NULL, '2021', 1), (843, 0, 'Qonita amaliaaaaaa', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085850819229', '16-04-2021 04:54:05', NULL, '2021', 1), (844, 0, 'Pras', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085755223374', '16-04-2021 04:54:05', NULL, '2021', 1), (845, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '085105408689', '16-04-2021 04:54:05', NULL, '2021', 1), (846, 0, 'ITHNA', 'Gasmul', 'Langsung', '16-04-2021 04:54:05', NULL, '', NULL, '089515948799', '16-04-2021 04:54:05', NULL, '2021', 1), (847, 0, 'YASIN', 'Gasmul', 'Langsung', '16-04-2021 07:54:09', NULL, '', NULL, '085708111298', '16-04-2021 07:54:09', NULL, '2021', 1), (848, 0, '<NAME>', 'Gasmul', 'Langsung', '16-04-2021 07:54:09', NULL, '', NULL, '08916566019', '16-04-2021 07:54:09', NULL, '2021', 1), (849, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', '18-04-2021 15:43:30', 'MARIFA', '18-04-2021 15:43:30', '085746122363', '18-04-2021 07:29:16', '18-04-2021 15:43:30', '2021', 1), (850, 0, 'vika', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', NULL, '', NULL, '081328174955', '18-04-2021 07:29:16', NULL, '2021', 1), (851, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', NULL, '', NULL, '082257315720', '18-04-2021 07:29:16', NULL, '2021', 1), (852, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', NULL, '', NULL, '081333731232', '18-04-2021 07:29:16', NULL, '2021', 1), (853, 0, 'vika', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', NULL, '', NULL, '081328174955', '18-04-2021 07:29:16', NULL, '2021', 1), (854, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', NULL, '', NULL, '085546077622', '18-04-2021 07:29:16', NULL, '2021', 1), (855, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', '26-04-2021 10:35:08', 'dinda', '26-04-2021 10:35:08', '089616795815', '18-04-2021 07:29:16', '26-04-2021 10:35:08', '2021', 1), (856, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 07:29:16', NULL, '', NULL, '081240290660', '18-04-2021 07:29:16', NULL, '2021', 1), (857, 0, 'syauqi', 'Gasmul', 'Langsung', '18-04-2021 02:50:07', '18-04-2021 14:50:07', 'syuqi', '18-04-2021 14:50:07', '081567988505', '18-04-2021 02:50:07', '18-04-2021 14:50:07', '2021', 1), (858, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 02:50:07', NULL, '', NULL, '087850175275', '18-04-2021 02:50:07', NULL, '2021', 1), (859, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '0895395122267', '18-04-2021 03:43:30', NULL, '2021', 1), (860, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '085708727553', '18-04-2021 03:43:30', NULL, '2021', 1), (861, 0, 'ITHNA', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '089515948799', '18-04-2021 03:43:30', NULL, '2021', 1), (862, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '081328425208', '18-04-2021 03:43:30', NULL, '2021', 1), (863, 0, 'finaahusnul', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '0895359522504', '18-04-2021 03:43:30', NULL, '2021', 1), (864, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '085806811392', '18-04-2021 03:43:30', NULL, '2021', 1), (865, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '085707573870', '18-04-2021 03:43:30', NULL, '2021', 1), (866, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '085707573870', '18-04-2021 03:43:30', NULL, '2021', 1), (867, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '081240290660', '18-04-2021 03:43:30', NULL, '2021', 1), (868, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '085227486365', '18-04-2021 03:43:30', NULL, '2021', 1), (869, 0, '<NAME>', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '081266897551', '18-04-2021 03:43:30', NULL, '2021', 1), (870, 0, 'syauqi', 'Gasmul', 'Langsung', '18-04-2021 03:43:30', NULL, '', NULL, '081567988505', '18-04-2021 03:43:30', NULL, '2021', 1), (871, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '082131032269', '21-04-2021 10:05:49', NULL, '2021', 1), (872, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '085748345606', '21-04-2021 10:05:49', NULL, '2021', 1), (873, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '081377931517', '21-04-2021 10:05:49', NULL, '2021', 1), (874, 0, 'zulfa hidayatul laila', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '085748345606', '21-04-2021 10:05:49', NULL, '2021', 1), (875, 0, 'azalia', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '085717342144', '21-04-2021 10:05:49', NULL, '2021', 1), (876, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '0856554999886', '21-04-2021 10:05:49', NULL, '2021', 1), (877, 0, 'jalan candi', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '085776426735', '21-04-2021 10:05:49', NULL, '2021', 1), (878, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '085736709957', '21-04-2021 10:05:49', NULL, '2021', 1), (879, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '081231426345', '21-04-2021 10:05:49', NULL, '2021', 1), (880, 0, 'Alvira', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '083134823299', '21-04-2021 10:05:49', NULL, '2021', 1), (881, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '081249818159', '21-04-2021 10:05:49', NULL, '2021', 1), (882, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '081249818159', '21-04-2021 10:05:49', NULL, '2021', 1), (883, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '0895395122267', '21-04-2021 10:05:49', NULL, '2021', 1), (884, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 10:05:49', NULL, '', NULL, '081358069207', '21-04-2021 10:05:49', NULL, '2021', 1), (885, 0, '<NAME>', 'Gasmul', 'Langsung', '21-04-2021 04:55:45', NULL, '', NULL, '081333422499', '21-04-2021 04:55:45', NULL, '2021', 1), (886, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '085895524481', '23-04-2021 12:23:54', NULL, '2021', 1), (887, 0, 'anggi catur (NANONANO)', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '085608650105', '23-04-2021 12:23:54', NULL, '2021', 1), (888, 0, '<NAME> (yunji)', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '085732707910', '23-04-2021 12:23:54', NULL, '2021', 1), (889, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '081333557866', '23-04-2021 12:23:54', NULL, '2021', 1), (890, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '081336313926', '23-04-2021 12:23:54', NULL, '2021', 1), (891, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '085746122363', '23-04-2021 12:23:54', NULL, '2021', 1), (892, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '081369998548', '23-04-2021 12:23:54', NULL, '2021', 1), (893, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '085731165025', '23-04-2021 12:23:54', NULL, '2021', 1), (894, 0, 'Hamzah', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '0895621099771', '23-04-2021 12:23:54', NULL, '2021', 1), (895, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 12:23:54', NULL, '', NULL, '081553577636', '23-04-2021 12:23:54', NULL, '2021', 1), (896, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:55:06', NULL, '', NULL, '081247153812', '23-04-2021 01:55:06', NULL, '2021', 1), (897, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:55:06', NULL, '', NULL, '082244544321', '23-04-2021 01:55:06', NULL, '2021', 1), (898, 0, 'nur al<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '087755799173', '23-04-2021 01:21:02', NULL, '2021', 1), (899, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '085730993404', '23-04-2021 01:21:02', NULL, '2021', 1), (900, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '081247153812', '23-04-2021 01:21:02', NULL, '2021', 1), (901, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '08983443675', '23-04-2021 01:21:02', NULL, '2021', 1), (902, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '081333300420', '23-04-2021 01:21:02', NULL, '2021', 1), (903, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '082324725224', '23-04-2021 01:21:02', NULL, '2021', 1), (904, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '081369998548', '23-04-2021 01:21:02', NULL, '2021', 1), (905, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '089677741560', '23-04-2021 01:21:02', NULL, '2021', 1), (906, 0, '<NAME> ', 'Gasmul', 'Langsung', '23-04-2021 01:21:02', NULL, '', NULL, '085804054052', '23-04-2021 01:21:02', NULL, '2021', 1), (907, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:55:06', NULL, '', NULL, '085770305040', '23-04-2021 01:55:06', NULL, '2021', 1), (908, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:55:06', NULL, '', NULL, '081231426345', '23-04-2021 01:55:06', NULL, '2021', 1), (909, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 01:55:06', NULL, '', NULL, '081328425208', '23-04-2021 01:55:06', NULL, '2021', 1), (910, 0, '<NAME> ', 'Gasmul', 'Langsung', '23-04-2021 01:55:06', NULL, '', NULL, '085804054052', '23-04-2021 01:55:06', NULL, '2021', 1), (911, 0, 'aulul', 'Gasmul', 'Langsung', '23-04-2021 02:35:00', NULL, '', NULL, '082244115879', '23-04-2021 02:35:00', NULL, '2021', 1), (912, 0, '<NAME>', 'Gasmul', 'Langsung', '23-04-2021 02:35:00', NULL, '', NULL, '085731165025', '23-04-2021 02:35:00', NULL, '2021', 1), (913, 0, '<NAME>', 'Gasmul', 'Langsung', '24-04-2021 10:15:01', NULL, '', NULL, '081358069207', '24-04-2021 10:15:01', NULL, '2021', 1), (914, 0, 'avivatunnisa', 'Gasmul', 'Langsung', '24-04-2021 10:15:01', NULL, '', NULL, '082139619251', '24-04-2021 10:15:01', NULL, '2021', 1), (915, 0, '<NAME>', 'Gasmul', 'Langsung', '24-04-2021 10:15:01', NULL, '', NULL, '081358069207', '24-04-2021 10:15:01', NULL, '2021', 1), (916, 0, 'avivatunnisa', 'Gasmul', 'Langsung', '25-04-2021 05:09:20', NULL, '', NULL, '02139619251', '25-04-2021 05:09:20', NULL, '2021', 1), (917, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 05:09:20', NULL, '', NULL, '085546077622', '25-04-2021 05:09:20', NULL, '2021', 1), (918, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 05:09:20', NULL, '', NULL, '082210229421', '25-04-2021 05:09:20', NULL, '2021', 1), (919, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 05:09:20', NULL, '', NULL, '082210229421', '25-04-2021 05:09:20', NULL, '2021', 1), (920, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 05:09:20', NULL, '', NULL, '089677741560', '25-04-2021 05:09:20', NULL, '2021', 1), (921, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 05:09:20', NULL, '', NULL, '085798105265', '25-04-2021 05:09:20', NULL, '2021', 1), (922, 0, '<NAME>MA', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '089654954646', '25-04-2021 01:15:26', NULL, '2021', 1), (923, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '085850819229', '25-04-2021 01:15:26', NULL, '2021', 1), (924, 0, 'Kamalia Puspitasari', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '085604408466', '25-04-2021 01:15:26', NULL, '2021', 1), (925, 0, 's<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '081238749300', '25-04-2021 01:15:26', NULL, '2021', 1), (926, 0, 'MISYKAT', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '085736501282', '25-04-2021 01:15:26', NULL, '2021', 1), (927, 0, '<NAME> ', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '081342259095', '25-04-2021 01:15:26', NULL, '2021', 1), (928, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082210229421', '25-04-2021 01:15:26', NULL, '2021', 1), (929, 0, 'Kamalia Puspitasari', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '085604408466', '25-04-2021 01:15:26', NULL, '2021', 1), (930, 0, 'ELLA 12', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '081929652746', '25-04-2021 01:15:26', NULL, '2021', 1), (931, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082334964773', '25-04-2021 01:15:26', NULL, '2021', 1), (932, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082211509630', '25-04-2021 01:15:26', NULL, '2021', 1), (933, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '085746122363', '25-04-2021 01:15:26', NULL, '2021', 1), (934, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '085546077622', '25-04-2021 01:15:26', NULL, '2021', 1), (935, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082330733048', '25-04-2021 01:15:26', NULL, '2021', 1), (936, 0, 'avivatunnisa', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082139619251', '25-04-2021 01:15:26', NULL, '2021', 1), (937, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082143677035', '25-04-2021 01:15:26', NULL, '2021', 1), (938, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '082334964773', '25-04-2021 01:15:26', NULL, '2021', 1), (939, 0, '<NAME> Alam Syah SMA', 'Gasmul', 'Langsung', '25-04-2021 01:15:26', NULL, '', NULL, '0896654954646', '25-04-2021 01:15:26', NULL, '2021', 1), (940, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 07:46:48', NULL, '', NULL, '085785470712', '25-04-2021 07:46:48', NULL, '2021', 1), (941, 0, '<NAME>', 'Gasmul', 'Langsung', '25-04-2021 07:46:48', NULL, '', NULL, '085105408689', '25-04-2021 07:46:48', NULL, '2021', 1), (943, 0, 'nana', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '0895810693344', '26-04-2021 10:35:08', NULL, '2021', 1), (944, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '082211509630', '26-04-2021 10:35:08', NULL, '2021', 1), (945, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085708727553', '26-04-2021 10:35:08', NULL, '2021', 1), (946, 0, 'qomariyah', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '082148919087', '26-04-2021 10:35:08', NULL, '2021', 1), (947, 0, 'apriliananta', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085706018820', '26-04-2021 10:35:08', NULL, '2021', 1), (948, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '089677741560', '26-04-2021 10:35:08', NULL, '2021', 1), (949, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '089698619885', '26-04-2021 10:35:08', NULL, '2021', 1), (950, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085604408466', '26-04-2021 10:35:08', NULL, '2021', 1), (951, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085895240326', '26-04-2021 10:35:08', NULL, '2021', 1), (952, 0, 'dewi kunti', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085749866098', '26-04-2021 10:35:08', NULL, '2021', 1), (953, 0, 'anisaturrohmah', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '082331758155', '26-04-2021 10:35:08', NULL, '2021', 1), (954, 0, 'defi permata', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '087872889110', '26-04-2021 10:35:08', NULL, '2021', 1), (955, 0, 'Yunji', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085732707910', '26-04-2021 10:35:08', NULL, '2021', 1), (956, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '085736709957', '26-04-2021 10:35:08', NULL, '2021', 1), (957, 0, 'khofifatus suaidah', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '082138005122', '26-04-2021 10:35:08', NULL, '2021', 1), (958, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', '26-04-2021 12:36:44', 'dinda', '26-04-2021 12:36:44', '089616795815', '26-04-2021 10:35:08', '26-04-2021 12:36:44', '2021', 1), (959, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '081359396344', '26-04-2021 10:35:08', NULL, '2021', 1), (960, 0, 'siti mutmainah', 'Gasmul', 'Langsung', '26-04-2021 10:35:08', NULL, '', NULL, '089628035141', '26-04-2021 10:35:08', NULL, '2021', 1), (961, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', '26-04-2021 13:10:38', 'amal', '26-04-2021 13:10:38', '085784302932', '26-04-2021 12:36:58', '26-04-2021 13:10:38', '2021', 1), (962, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', '26-04-2021 13:11:00', 'ijmal', '26-04-2021 13:11:00', '089677741560', '26-04-2021 12:36:58', '26-04-2021 13:11:00', '2021', 1), (963, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', '26-04-2021 13:10:48', 'amal', '26-04-2021 13:10:48', '085784302932', '26-04-2021 12:36:58', '26-04-2021 13:10:48', '2021', 1), (964, 0, 'Yunji', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', NULL, '', NULL, '085732707910', '26-04-2021 12:36:58', NULL, '2021', 1), (965, 0, 'nana', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', NULL, '', NULL, '0895810693344', '26-04-2021 12:36:58', NULL, '2021', 1), (966, 0, 'nazilatur rohmah', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', NULL, '', NULL, '081358686526', '26-04-2021 12:36:58', NULL, '2021', 1), (967, 0, 'choirun nisa`', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', NULL, '', NULL, '085736709957', '26-04-2021 12:36:58', NULL, '2021', 1); INSERT INTO `tb_paket` (`id_paket`, `id_santri`, `nama_paket`, `penerima`, `jenis_kirim`, `tgl_terima`, `tgl_ambil`, `pengambil`, `status_ambil`, `hp`, `creat_at`, `modified_at`, `tahun`, `jml_paket`) VALUES (968, 0, 'A<NAME>', 'Gasmul', 'Langsung', '26-04-2021 12:36:58', NULL, '', NULL, '082210229421', '26-04-2021 12:36:58', NULL, '2021', 1), (969, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 01:11:00', NULL, '', NULL, '085886400604', '26-04-2021 01:11:00', NULL, '2021', 1), (970, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 01:11:00', NULL, '', NULL, '085749866098', '26-04-2021 01:11:00', NULL, '2021', 1), (971, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 01:11:00', NULL, '', NULL, '088235879137', '26-04-2021 01:11:00', NULL, '2021', 1), (972, 0, '<NAME>', 'Gasmul', 'Langsung', '26-04-2021 01:33:44', NULL, '', NULL, '081249818159', '26-04-2021 01:33:44', NULL, '2021', 1), (973, 0, '<NAME>`', 'Gasmul', 'Langsung', '26-04-2021 01:33:44', NULL, '', NULL, '085736709957', '26-04-2021 01:33:44', NULL, '2021', 1), (974, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '081231426345', '27-04-2021 03:54:02', NULL, '2021', 1), (975, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '081325599103', '27-04-2021 03:54:02', NULL, '2021', 1), (976, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '085646072660', '27-04-2021 03:54:02', NULL, '2021', 1), (977, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '085648136701', '27-04-2021 03:54:02', NULL, '2021', 1), (978, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '082210229421', '27-04-2021 03:54:02', NULL, '2021', 1), (979, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '082233625400', '27-04-2021 03:54:02', NULL, '2021', 1), (980, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '082210229421', '27-04-2021 03:54:02', NULL, '2021', 1), (981, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '085105408689', '27-04-2021 03:54:02', NULL, '2021', 1), (982, 0, 'umu lailatul fitria', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '085746584314', '27-04-2021 03:54:02', NULL, '2021', 1), (983, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '0857499455687', '27-04-2021 03:54:02', NULL, '2021', 1), (984, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '082143677035', '27-04-2021 03:54:02', NULL, '2021', 1), (985, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '08983443675', '27-04-2021 03:54:02', NULL, '2021', 1), (986, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '087762515287', '27-04-2021 03:54:02', NULL, '2021', 1), (987, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', '27-04-2021 18:00:20', 'vindy', '27-04-2021 18:00:20', '083112268099', '27-04-2021 03:54:02', '27-04-2021 18:00:20', '2021', 1), (988, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '087850175275', '27-04-2021 03:54:02', NULL, '2021', 1), (989, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '0881036371566', '27-04-2021 03:54:02', NULL, '2021', 1), (990, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '089616795815', '27-04-2021 03:54:02', NULL, '2021', 1), (991, 0, '<NAME>`', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '085736709957', '27-04-2021 03:54:02', NULL, '2021', 1), (992, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', NULL, '', NULL, '085854404718', '27-04-2021 03:54:02', NULL, '2021', 1), (993, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 03:54:02', '27-04-2021 15:54:02', 'NAILA', '27-04-2021 15:54:02', '085854404718', '27-04-2021 03:54:02', '27-04-2021 15:54:02', '2021', 1), (994, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 04:17:03', NULL, '', NULL, '085812335686', '27-04-2021 04:17:03', NULL, '2021', 1), (995, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 04:17:03', NULL, '', NULL, '085700007553', '27-04-2021 04:17:03', NULL, '2021', 1), (996, 0, '<NAME>', 'Gasmul', 'Langsung', '27-04-2021 05:58:22', NULL, '', NULL, '081358069207', '27-04-2021 05:58:22', NULL, '2021', 1), (997, 0, '<NAME>', 'Gasmul', 'Langsung', '28-04-2021 09:12:30', NULL, '', NULL, '082231325523', '28-04-2021 09:12:30', NULL, '2021', 1), (998, 0, '<NAME>', 'Gasmul', 'Langsung', '28-04-2021 09:12:30', NULL, '', NULL, '085854404718', '28-04-2021 09:12:30', NULL, '2021', 1), (999, 0, '<NAME>', 'Gasmul', 'Langsung', '28-04-2021 09:12:30', NULL, '', NULL, '0895412361823', '28-04-2021 09:12:30', NULL, '2021', 1), (1000, 0, '<NAME>', 'Gasmul', 'Langsung', '28-04-2021 09:12:30', NULL, '', NULL, '085748345606', '28-04-2021 09:12:30', NULL, '2021', 1), (1001, 0, '<NAME>', 'Gasmul', 'Langsung', '28-04-2021 09:12:30', NULL, '', NULL, '089601324582', '28-04-2021 09:12:30', NULL, '2021', 1), (1002, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '082142930647', '29-04-2021 06:20:07', NULL, '2021', 1), (1003, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '089614312519', '29-04-2021 06:20:07', NULL, '2021', 1), (1004, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '085604692729', '29-04-2021 06:20:07', NULL, '2021', 1), (1005, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '085769220753', '29-04-2021 06:20:07', NULL, '2021', 1), (1006, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '089514814938', '29-04-2021 06:20:07', NULL, '2021', 1), (1007, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '089514814938', '29-04-2021 06:20:07', NULL, '2021', 1), (1008, 0, 'DYASS', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '089520281188', '29-04-2021 06:20:07', NULL, '2021', 1), (1009, 0, 'DYASS', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '089520281188', '29-04-2021 06:20:07', NULL, '2021', 1), (1010, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:20:07', NULL, '', NULL, '089654954646', '29-04-2021 06:20:07', NULL, '2021', 1), (1012, 0, 'KUKI', 'Gasmul', 'Langsung', '29-04-2021 06:27:16', NULL, '', NULL, '085732707910', '29-04-2021 06:27:16', NULL, '2021', 1), (1013, 0, 'kumil laila', 'Gasmul', 'Langsung', '29-04-2021 06:27:16', NULL, '', NULL, '085735731646', '29-04-2021 06:27:16', NULL, '2021', 1), (1014, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:27:16', NULL, '', NULL, '081358069207', '29-04-2021 06:27:16', NULL, '2021', 1), (1015, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:27:16', NULL, '', NULL, '0800000000', '29-04-2021 06:27:16', NULL, '2021', 1), (1016, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:27:16', NULL, '', NULL, '082234557957', '29-04-2021 06:27:16', NULL, '2021', 1), (1017, 0, '<NAME>', 'Gasmul', 'Langsung', '29-04-2021 06:27:16', NULL, '', NULL, '085749866098', '29-04-2021 06:27:16', NULL, '2021', 1), (1018, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '085736810387', '01-05-2021 04:48:05', NULL, '2021', 1), (1019, 0, 'aida m noor', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '081294373308', '01-05-2021 04:48:05', NULL, '2021', 1), (1020, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '085646072660', '01-05-2021 04:48:05', NULL, '2021', 1), (1021, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '081515410943', '01-05-2021 04:48:05', NULL, '2021', 1), (1022, 0, 'ITHNA', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '089515948799', '01-05-2021 04:48:05', NULL, '2021', 1), (1023, 0, 'bar<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '085259366559', '01-05-2021 04:48:05', NULL, '2021', 1), (1024, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:48:05', NULL, '', NULL, '082210229421', '01-05-2021 04:48:05', NULL, '2021', 1), (1025, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:52:30', NULL, '', NULL, '085655518519', '01-05-2021 04:52:30', NULL, '2021', 1), (1026, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:52:30', NULL, '', NULL, '081358069207', '01-05-2021 04:52:30', NULL, '2021', 1), (1027, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:52:30', NULL, '', NULL, '085259366559', '01-05-2021 04:52:30', NULL, '2021', 1), (1028, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 04:52:30', NULL, '', NULL, '085731165025', '01-05-2021 04:52:30', NULL, '2021', 1), (1029, 0, '<NAME>', 'Gasmul', 'Langsung', '01-05-2021 08:16:45', NULL, '', NULL, '081336257730', '01-05-2021 08:16:45', NULL, '2021', 1), (1030, 0, 'balqis nur choir', 'Gasmul', 'Langsung', '01-05-2021 08:16:45', NULL, '', NULL, '085736900640', '01-05-2021 08:16:45', NULL, '2021', 1), (1031, 0, 'zulfa hidayatul laila', 'Gasmul', 'Langsung', '01-05-2021 08:16:45', NULL, '', NULL, '085748345606', '01-05-2021 08:16:45', NULL, '2021', 1), (1032, 0, '<NAME>', 'Gasmul', 'Langsung', '15-05-2021 09:14:07', NULL, '', '0', '085812693361', '15-05-2021 09:14:07', NULL, '2021', 1), (1033, 0, '<NAME>', 'Gasmul', 'Langsung', '15-05-2021 09:14:07', NULL, '', '0', '082131173020', '15-05-2021 09:14:07', NULL, '2021', 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_santri` -- CREATE TABLE `tb_santri` ( `id_santri` int(255) NOT NULL, `nama_lengkap` varchar(50) NOT NULL, `hp` varchar(13) NOT NULL, `creat_at` timestamp NULL DEFAULT NULL, `last_modified` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_santri` -- INSERT INTO `tb_santri` (`id_santri`, `nama_lengkap`, `hp`, `creat_at`, `last_modified`) VALUES (1, 'Pasha', '085876545671', '2021-01-01 01:08:11', '2021-01-02 01:08:11'), (2, 'Wahib', '085876545671', '2021-01-01 01:08:11', '2021-01-02 01:08:11'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `tb_other` -- ALTER TABLE `tb_other` ADD PRIMARY KEY (`id_other`); -- -- Indeks untuk tabel `tb_paket` -- ALTER TABLE `tb_paket` ADD PRIMARY KEY (`id_paket`); -- -- Indeks untuk tabel `tb_santri` -- ALTER TABLE `tb_santri` ADD PRIMARY KEY (`id_santri`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `tb_other` -- ALTER TABLE `tb_other` MODIFY `id_other` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `tb_paket` -- ALTER TABLE `tb_paket` MODIFY `id_paket` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1034; -- -- AUTO_INCREMENT untuk tabel `tb_santri` -- ALTER TABLE `tb_santri` MODIFY `id_santri` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; 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 */;
SELECT CONCAT(p.FirstName, ' ', p.LastName) AS [Full Name], pl.[Name] AS [Plane Name], CONCAT(fl.Origin, ' - ', fl.Destination) AS Trip, lt.Type AS [Luggage Type] FROM Passengers AS p INNER JOIN Tickets AS t ON p.Id = t.PassengerId INNER JOIN Flights AS fl ON t.FlightId = fl.Id INNER JOIN Planes AS pl ON fL.PlaneId = pl.Id INNER JOIN Luggages AS l ON t.LuggageId = l.Id INNER JOIN LuggageTypes AS lt ON l.LuggageTypeId =lt.Id ORDER BY [Full Name], pl.[Name], Trip, [Luggage Type]
-- MySQL dump 10.13 Distrib 8.0.28, for Linux (x86_64) -- -- Host: localhost Database: api-crm -- ------------------------------------------------------ -- Server version 8.0.28-0ubuntu0.20.04.3 /*!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 `companies` -- DROP TABLE IF EXISTS `companies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `companies` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` 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, `street_address` text COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `zip` int NOT 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `companies` -- LOCK TABLES `companies` WRITE; /*!40000 ALTER TABLE `companies` DISABLE KEYS */; INSERT INTO `companies` VALUES ('05791416-055f-334f-8543-d0bc5abbde2e','<NAME>','<EMAIL>','+1.458.941.8086','56129 Juliana Court','East Branson','Montana',52182,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('17da6605-539e-3521-92e5-f50aee6bb53b','<NAME>','<EMAIL>','303.271.9367','750 Lisa Avenue Suite 518','South Lucienne','Rhode Island',15575,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('2b93199d-ffdd-3ee9-8755-d974a26aacb9','Fay-Brakus','<EMAIL>','1-781-336-8147','2954 Clemens Crossing Apt. 667','Schowalterland','New Hampshire',70535,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('443d8dda-112d-3be9-83ef-74a89fd3d6d2','<NAME> Ernser','<EMAIL>','458.776.4530','4522 Erwin Locks Apt. 617','Marvinview','Texas',65652,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('466b82e9-4c02-3ab3-b113-e186eb0523c1','Spencer Inc','<EMAIL>','+1.769.250.3064','7948 Osinski Burg Suite 321','Janeborough','South Dakota',36870,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('46f86659-bf12-3e34-9232-940e78ec3c85','<NAME>','<EMAIL>','+16609545791','910 Hand Coves Apt. 541','Kavonland','New York',42890,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('56a54db2-28e9-3c46-8a29-008921f06199','Murray-Balistreri','<EMAIL>','808.524.4953','7782 Mina Drive Apt. 748','Hickleside','Montana',11852,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('5a2355b7-515a-39e2-9e2b-b757eeac7ca0','Reichert-Tremblay','<EMAIL>','+1 (912) 888-2414','5404 Cordie Drive Suite 500','Ferrybury','Maine',25488,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('5aefabb8-b0f4-3d4b-9795-e04be9665bbc','Block and Sons','<EMAIL>','443.572.8912','88124 Hintz Lake Suite 149','Feilbury','Maine',92305,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('5d8b7d47-e554-3051-8b66-24855360ac13','O\'Keefe, Johnson and Block','<EMAIL>','820-421-2684','3092 Elvera Parkways Suite 067','Welchfort','Montana',11033,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('666cb7a7-33b9-3535-b5a0-da91724d3bfd','Waters LLC','<EMAIL>','(508) 980-4598','51551 Annette Trail','Mantehaven','Mississippi',52150,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('705042b0-92b3-3935-b0cd-fe0a07461845','Botsford-Lemke','<EMAIL>','+1 (541) 767-0246','54076 Vandervort Lock','Reymouth','Maryland',96545,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('72e5dd30-ad05-3e85-a28b-5f6e8d815311','<NAME> Quitzon','<EMAIL>','1-920-457-5926','977 Christiansen Forges Apt. 005','Lake Jeremy','Indiana',77528,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('73723e9d-579a-37eb-b656-a8a2594c08a3','Wuckert PLC','<EMAIL>','+1-313-532-0331','9853 Adams Lodge','Athenamouth','Nevada',81205,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('744f5dd9-3269-30a9-8738-9231333cb882','Hayes-Nolan','<EMAIL>','+1-708-561-7675','54267 Lebsack Lake Apt. 463','Lindgrenport','Wyoming',74041,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('7832c7aa-db80-3b77-8092-4534e9b85b13','<NAME> and Krajcik','<EMAIL>','1-260-494-0981','358 Schultz Road Suite 255','Spinkaport','Pennsylvania',48319,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('881a087a-2a29-3e1d-8190-d119fbc7a35c','<NAME> and Waelchi','<EMAIL>','+1-717-984-6778','9361 Darian Islands','Port Salma','Maine',18812,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('8a78fb7d-070b-3e6b-b833-e9186055e887','Daniel Ltd','<EMAIL>','207-938-7923','613 Clyde Mount','Lake Aylinview','Montana',80338,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('9e84b01c-51a3-36cf-95b9-da941064af8f','Spencer-Torp','<EMAIL>','918.809.8159','561 Sierra Parks','Schuppetown','North Dakota',93729,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('b8232b17-bbb4-34c1-be15-032ad3456149','Zemlak and Sons','<EMAIL>','845.344.8586','84274 Arnoldo Stravenue','Emmettmouth','Oklahoma',53220,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('baea7eeb-50d0-35dd-8a17-7d933fbf681a','<NAME> and Rempel','<EMAIL>','(949) 341-0025','1599 Kuhlman Passage','East Granville','Pennsylvania',33471,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('cf3dea39-10a3-3d64-a4eb-65ea6f785ad0','<NAME>','<EMAIL>','352.470.9127','4158 Kariane Extensions','North Citlalli','Wisconsin',90719,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('db8fc632-06fe-3504-9572-3c518e13bc7d','<NAME>','<EMAIL>','+1 (667) 738-7604','8383 Frederik Inlet Apt. 348','Lake Turnertown','Montana',23317,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('dc076b2b-bf4d-30f9-bea9-876a898b0bb8','Wisoky-Wyman','<EMAIL>','+1.831.895.8423','58239 Tiara Port','Lesliemouth','Oklahoma',14241,'2022-03-01 23:11:16','2022-03-01 23:11:16'),('e3580c68-8a84-3ba4-bc63-20132e68fd2b','Wuckert-Huel','<EMAIL>','828-762-8774','97762 Afton Mall','Grantchester','Tennessee',52411,'2022-03-01 23:11:16','2022-03-01 23:11:16'); /*!40000 ALTER TABLE `companies` 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 2022-03-02 12:11:24
ALTER TABLE messages DROP COLUMN needstraining;
-- phpMyAdmin SQL Dump -- version 4.8.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 25, 2019 at 12:55 PM -- Server version: 10.1.32-MariaDB -- PHP Version: 5.6.36 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: `jnt` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `id_admin` int(15) NOT NULL, `nama_admin` varchar(50) DEFAULT NULL, `alamat` varchar(100) DEFAULT NULL, `no_telepon` varchar(12) DEFAULT NULL, `gaji` int(11) DEFAULT NULL, `id_pengirim` int(11) DEFAULT NULL, `id_barang` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`id_admin`, `nama_admin`, `alamat`, `no_telepon`, `gaji`, `id_pengirim`, `id_barang`) VALUES (1450, 'Ben', 'Jl. Mawar, No.09, RT 03, RW 01, Desa Lengkong, Bojongsoang, Kab. Bandung', '082112347856', 2500000, 1, 1), (1451, '<NAME>', 'Jl. Anggrek, No.01, RT 07, RW 04, Kec. Dayeuhkolot, <NAME>', '081156743409', 2500000, 2, 2); -- -------------------------------------------------------- -- -- Table structure for table `barang` -- CREATE TABLE `barang` ( `id_barang` int(11) NOT NULL, `jenis_barang` varchar(30) DEFAULT NULL, `berat_barang` int(30) DEFAULT NULL, `keterangan` varchar(100) DEFAULT NULL, `id_admin` int(11) DEFAULT NULL, `total_harga` int(30) DEFAULT NULL, `id_penerima` int(11) DEFAULT NULL, `number` int(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `barang` -- INSERT INTO `barang` (`id_barang`, `jenis_barang`, `berat_barang`, `keterangan`, `id_admin`, `total_harga`, `id_penerima`, `number`) VALUES (1, 'pakaian', 2, 'warna hitam', 1450, 26000, 1, NULL), (2, 'sepatu', 1, 'Ukuran 40, Warna Hitam, Merk Adidas', 1451, 11000, 2, NULL), (3, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (4, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (5, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (6, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (7, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (8, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (9, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (10, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (11, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (12, 'Handphone', 1, NULL, NULL, 10000, NULL, NULL), (13, 'peralatan dapur', 5, NULL, NULL, 50000, NULL, NULL), (14, 'peralatan dapur', 5, NULL, NULL, 50000, NULL, NULL), (15, 'peralatan dapur', 2, NULL, NULL, 20000, NULL, NULL), (16, 'peralatan dapur', 2, NULL, NULL, 20000, NULL, NULL), (17, 'peralatan dapur', 2, NULL, NULL, 20000, NULL, NULL), (18, 'sepatu', 1, NULL, NULL, 10000, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `karir` -- CREATE TABLE `karir` ( `position` varchar(50) NOT NULL, `city` varchar(10) NOT NULL, `id` int(11) NOT NULL, `post_date` date DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `karir` -- INSERT INTO `karir` (`position`, `city`, `id`, `post_date`) VALUES ('GRAPHIC DESIGNER (STAFF)', 'JAKARTA', 2, '2019-04-01'), ('PERSONAL ASSISTANT FOR CEO (MANDARIN SPEAKER)', 'JAKARTA', 3, '2019-04-02'), ('PERSONAL ASSISTANT FOR GM (MANDARIN SPEAKER)', 'JAKARTA', 4, '2019-04-12'), ('Finance(SPV)', 'BANDUNG', 5, '2019-04-22'), ('HRD RECRUITMENT(STAFF&SPV)', 'JAKARTA', 6, '2019-03-21'), ('BRANDING DEPARTMENT(STAFF&SPV)', 'JAKARTA', 7, '2019-03-13'); -- -------------------------------------------------------- -- -- Table structure for table `kurir` -- CREATE TABLE `kurir` ( `id_kurir` varchar(15) NOT NULL, `nama_kurir` varchar(40) DEFAULT NULL, `alamat` varchar(100) DEFAULT NULL, `no_telepon` varchar(12) DEFAULT NULL, `gaji` int(30) DEFAULT NULL, `id_pengiriman` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `kurir` -- INSERT INTO `kurir` (`id_kurir`, `nama_kurir`, `alamat`, `no_telepon`, `gaji`, `id_pengiriman`) VALUES ('1501', '<NAME>', 'Jl. Melati, No. 110, RT 04, RW 05, Kec. Bojongsoang, Kab. Bandung.', '081256742348', 2500000, 1), ('1502', 'Ardiyansah', 'Jl. <NAME>, No. 02, RT 07, RW 07, Kec. Baleendah, Kab. Bandung', '081178906543', 2500000, NULL), ('1503', '<NAME>.', 'Jl. <NAME>, No.09, RT 06, RW 03, Kec. Baleendah, Kab. Bandung', '087789099009', 2500000, 2), ('1504', '<NAME>', 'Jl. <NAME>, No. 23, RW 02, RT 02, Sukapura Buah Batu, Kab. Bandung ', '087745543001', 2500000, NULL), ('1505', '<NAME>', 'Jl. Dayeuhkolot Raya, No.10, RT 05, RW 05, Citereup, Dayeuhkolot, Kab. Bandung', '089970071290', 2500000, NULL), ('1506', '<NAME>.', 'Jl. Dayeuhkolot Raya, No. 20, RT 04, RW 05, Citeureup, Dayeuhkolot, Kab. Bandung', '087890065467', 2500000, NULL); -- -------------------------------------------------------- -- -- Table structure for table `penerima` -- CREATE TABLE `penerima` ( `id_penerima` int(11) NOT NULL, `nama_penerima` varchar(50) DEFAULT NULL, `no_telepon` varchar(12) DEFAULT NULL, `kota` varchar(30) DEFAULT NULL, `alamat` varchar(100) DEFAULT NULL, `id_barang` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `penerima` -- INSERT INTO `penerima` (`id_penerima`, `nama_penerima`, `no_telepon`, `kota`, `alamat`, `id_barang`) VALUES (1, 'Budi', '082256473421', 'Bandung', 'Jl. PGA, No. 21, RW 02, RT 02, Kec. Bojongsoang, Kab. Bandung, 40287', 1), (2, 'raisa', '082234569009', 'Bandung', 'Jl. Raya, No. 04, RW 03, RT 03, Cisurupan, Kec. Cibiru, Kab. Bandung, 40614', 2), (3, 'Ichal', '+62857221931', 'Jakarta Timur', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 3), (4, 'Ichal', '+62857221931', 'Cimahi', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 4), (5, 'Ichal', '+62857221931', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 5), (6, 'Ichal', '+62857221931', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 6), (7, 'Yudit', '1234', 'Jakarta Timur', 'Jl. Telekomunikasi No. 1, Terusan Buah Batu, Universitas Telkom, Jawa Barat-Kab. Bandung-Dayeuhkolot', 7), (8, 'Yudit', '+62857221931', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 8), (9, 'Ichal', '+62857221931', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 9), (10, 'Abimank', '+62857221931', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 10), (11, 'Yudit', '+62857221931', 'Cimahi', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 11), (12, 'Abimank', '+62857221931', 'Jakarta Timur', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 12), (13, 'kendall', '82256743245', 'Jakarta Timur', '<NAME>', 13), (14, 'kendall', '82256743245', 'Jakarta Timur', '<NAME>', 14), (15, 'dudu', '7865908756', 'Cimahi', '<NAME>', 15), (16, 'dudu', '7865908756', 'Cimahi', '<NAME>', 16), (17, 'dudu', '7865908756', 'Cimahi', '<NAME>', 17), (18, 'dudu', '7865908756', 'Jakarta Timur', '<NAME>', 18); -- -------------------------------------------------------- -- -- Table structure for table `pengirim` -- CREATE TABLE `pengirim` ( `id_pengirim` int(11) NOT NULL, `nama_pengirim` varchar(50) DEFAULT NULL, `no_telepon` varchar(12) DEFAULT NULL, `kota` varchar(50) DEFAULT NULL, `alamat` varchar(100) DEFAULT NULL, `id_barang` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `pengirim` -- INSERT INTO `pengirim` (`id_pengirim`, `nama_pengirim`, `no_telepon`, `kota`, `alamat`, `id_barang`) VALUES (1, 'sarah', '081356437806', 'Cimahi', 'Jl. Anaya, no. 06, RT 05, RW 03, Kec. Cimahi Selatan, Kab. Cimahi.', 1), (2, '<NAME>', '082167765409', 'Jakarta Timur', 'Jl. Teratai, No. 30, RT 03, RW. 03, Kebayoran Lama, Jakarta Selatan, DKI Jakarta, 12240', 2), (3, 'Bima', '85722193104', 'Select City', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 3), (4, 'Bima', '85722193104', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 4), (5, 'Bima', '85722193104', 'Jakarta Timur', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 5), (6, 'Bima', '85722193104', 'Jakarta Timur', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 6), (7, 'Bima', '1234', 'Bandung', 'Jl. Telekomunikasi No. 1, Terusan Buah Batu, Universitas Telkom, Jawa Barat-Kab. Bandung-Dayeuhkolot', 7), (8, 'Bima', '85722193104', 'Jakarta Timur', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 8), (9, 'Bima', '85722193104', 'Jakarta Timur', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 9), (10, 'Bima', '85722193104', 'Cimahi', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 10), (11, 'Bima', '85722193104', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 11), (12, 'Bima', '85722193104', 'Bandung', 'Masnida Estate No. A03, Jl. Abdul Hakim/Pasar 1 Setia Budi, Medan', 12), (13, 'kyle', '82345678657', 'Cimahi', 'pga', 13), (14, 'kyle', '82345678657', 'Cimahi', 'pga', 14), (15, 'sulaiman', '9298719273', 'Bandung', 'pga', 15), (16, 'sulaiman', '9298719273', 'Bandung', 'pga', 16), (17, 'sulaiman', '9298719273', 'Bandung', 'pga', 17), (18, 'dinda', '9298719273', 'Bandung', 'pga', 18); -- -------------------------------------------------------- -- -- Table structure for table `pengiriman` -- CREATE TABLE `pengiriman` ( `id_pengiriman` int(11) NOT NULL, `tgl_pengiriman` date DEFAULT NULL, `tgl_sampai` date DEFAULT NULL, `id_barang` int(11) DEFAULT NULL, `id_kurir` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `pengiriman` -- INSERT INTO `pengiriman` (`id_pengiriman`, `tgl_pengiriman`, `tgl_sampai`, `id_barang`, `id_kurir`) VALUES (1, '2019-04-11', '2019-04-14', 1, '1502'), (2, '2019-04-11', '2019-04-14', 2, '1503'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`id_admin`), ADD KEY `id_pengirim` (`id_pengirim`), ADD KEY `id_barang` (`id_barang`); -- -- Indexes for table `barang` -- ALTER TABLE `barang` ADD PRIMARY KEY (`id_barang`), ADD KEY `id_admin` (`id_admin`), ADD KEY `id_penerima` (`id_penerima`); -- -- Indexes for table `karir` -- ALTER TABLE `karir` ADD PRIMARY KEY (`id`); -- -- Indexes for table `kurir` -- ALTER TABLE `kurir` ADD PRIMARY KEY (`id_kurir`), ADD KEY `id_pengiriman` (`id_pengiriman`); -- -- Indexes for table `penerima` -- ALTER TABLE `penerima` ADD PRIMARY KEY (`id_penerima`), ADD KEY `id_barang` (`id_barang`); -- -- Indexes for table `pengirim` -- ALTER TABLE `pengirim` ADD PRIMARY KEY (`id_pengirim`), ADD KEY `id_barang` (`id_barang`); -- -- Indexes for table `pengiriman` -- ALTER TABLE `pengiriman` ADD PRIMARY KEY (`id_pengiriman`), ADD KEY `id_barang` (`id_barang`), ADD KEY `id_kurir` (`id_kurir`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `barang` -- ALTER TABLE `barang` MODIFY `id_barang` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `karir` -- ALTER TABLE `karir` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `penerima` -- ALTER TABLE `penerima` MODIFY `id_penerima` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `pengirim` -- ALTER TABLE `pengirim` MODIFY `id_pengirim` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `pengiriman` -- ALTER TABLE `pengiriman` MODIFY `id_pengiriman` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Constraints for dumped tables -- -- -- Constraints for table `admin` -- ALTER TABLE `admin` ADD CONSTRAINT `admin_ibfk_1` FOREIGN KEY (`id_pengirim`) REFERENCES `pengirim` (`id_pengirim`), ADD CONSTRAINT `admin_ibfk_2` FOREIGN KEY (`id_barang`) REFERENCES `barang` (`id_barang`); -- -- Constraints for table `barang` -- ALTER TABLE `barang` ADD CONSTRAINT `barang_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`), ADD CONSTRAINT `barang_ibfk_3` FOREIGN KEY (`id_penerima`) REFERENCES `penerima` (`id_penerima`); -- -- Constraints for table `kurir` -- ALTER TABLE `kurir` ADD CONSTRAINT `kurir_ibfk_1` FOREIGN KEY (`id_pengiriman`) REFERENCES `pengiriman` (`id_pengiriman`); -- -- Constraints for table `penerima` -- ALTER TABLE `penerima` ADD CONSTRAINT `penerima_ibfk_1` FOREIGN KEY (`id_barang`) REFERENCES `barang` (`id_barang`); -- -- Constraints for table `pengirim` -- ALTER TABLE `pengirim` ADD CONSTRAINT `pengirim_ibfk_2` FOREIGN KEY (`id_barang`) REFERENCES `barang` (`id_barang`); -- -- Constraints for table `pengiriman` -- ALTER TABLE `pengiriman` ADD CONSTRAINT `pengiriman_ibfk_1` FOREIGN KEY (`id_barang`) REFERENCES `barang` (`id_barang`), ADD CONSTRAINT `pengiriman_ibfk_2` FOREIGN KEY (`id_kurir`) REFERENCES `kurir` (`id_kurir`); 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>tables.sql CREATE TABLE customer ( doli_id int(11) NOT NULL, kimai_id int(11) NOT NULL, token varchar(32) NOT NULL, PRIMARY KEY(doli_id, kimai_id) ); CREATE TABLE user ( doli_id int(11) NOT NULL, kimai_id int(11) NOT NULL, token varchar(32) NOT NULL, username varchar(50) NOT NULL, PRIMARY KEY(doli_id, kimai_id) ); CREATE TABLE project ( doli_id int(11) NOT NULL, kimai_id int(11) NOT NULL, token varchar(32) NOT NULL, PRIMARY KEY(doli_id, kimai_id) ); CREATE TABLE task ( doli_id int(11) NOT NULL, kimai_id int(11) NOT NULL, token varchar(32) NOT NULL, PRIMARY KEY(doli_id, kimai_id) ); CREATE TABLE merged_timesheet ( kimai_id int(11) NOT NULL, task_id int(11) NOT NULL, activity_id int(11) NOT NULL, project_id int(11) NOT NULL, duration int(11) NOT NULL, user_id int(11) NOT NULL, start DATETIME NOT NULL, token VARCHAR(32) NOT NULL, PRIMARY KEY (kimai_id) );
REPLACE INTO ?:statuses (status, type, is_default) VALUES ('P', 'G', 'Y'); REPLACE INTO ?:statuses (status, type, is_default) VALUES ('A', 'G', 'Y'); REPLACE INTO ?:statuses (status, type, is_default) VALUES ('C', 'G', 'Y'); REPLACE INTO ?:statuses (status, type, is_default) VALUES ('U', 'G', 'Y'); REPLACE INTO ?:status_data (status_id, param, value) SELECT status_id, 'notify' as param, 'N' as value FROM ?:statuses WHERE status = 'P' AND type = 'G'; REPLACE INTO ?:status_data (status_id, param, value) SELECT status_id, 'notify' as param, 'Y' as value FROM ?:statuses WHERE status = 'A' AND type = 'G'; REPLACE INTO ?:status_data (status_id, param, value) SELECT status_id, 'notify' as param, 'Y' as value FROM ?:statuses WHERE status = 'C' AND type = 'G'; REPLACE INTO ?:status_data (status_id, param, value) SELECT status_id, 'notify' as param, 'N' as value FROM ?:statuses WHERE status = 'U' AND type = 'G';
<filename>postgre.sql /* CRIAR O BANCO DE DADOS */ CREATE DATABASE coordinates; /* CRIAR A TABELA */ CREATE TABLE coords ( id SERIAL PRIMARY KEY, coord_name VARCHAR(50) NOT NULL, coord_description TEXT, coord_world varchar(10) NOT NULL, x INT NOT NULL, y INT, z INT NOT NULL );
DROP DATABASE IF EXISTS lightCville_db; CREATE DATABASE lightCville_db;
CREATE LOGIN [cltp] WITH PASSWORD = '<PASSWORD>', CHECK_POLICY = OFF, CHECK_EXPIRATION = OFF, DEFAULT_DATABASE = [cltp-prod] CREATE USER [cltp] FOR LOGIN [cltp] GO GRANT INSERT, SELECT ON SCHEMA::[cltp] TO [cltp]
DELIMITER $$ CREATE PROCEDURE `Cost_Insert` ( in_id VARCHAR(36), in_vehicle VARCHAR(36), in_date DATETIME, in_costType VARCHAR(20), in_totalCost DECIMAL(6,2), in_invoice VARCHAR(100), in_notes TEXT ) BEGIN INSERT INTO `Costs` ( `id`, `vehicle`, `date`, `costType`, `totalCost`, `invoice`, `notes` ) VALUES ( in_id, in_vehicle, in_date, in_costType, in_totalCost, in_invoice, in_notes ); END$$
CREATE TABLE split_test_winner ( ad_object_level Nullable(String), winner_ad_object_id Nullable(String) ) ENGINE = Log
-- file:jsonb.sql ln:565 expect:true SELECT ia1d FROM jsonb_populate_record(NULL::jsbrec, '{"ia1d": 123}') q
-- ----------------------------- -- 导出时间 `2016-12-13 22:26:46` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_advert` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_advert`; CREATE TABLE `ien_cms_advert` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `typeid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分类id', `tagname` varchar(30) NOT NULL DEFAULT '' COMMENT '广告位标识', `ad_type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '广告类型', `timeset` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '时间限制:0-永不过期,1-在设内时间内有效', `start_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '开始时间', `end_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '结束时间', `name` varchar(60) NOT NULL DEFAULT '' COMMENT '广告位名称', `content` text NOT NULL COMMENT '广告内容', `expcontent` text NOT NULL COMMENT '过期显示内容', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='广告表'; -- ----------------------------- -- 表数据 `ien_cms_advert` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_advert_type` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_advert_type`; CREATE TABLE `ien_cms_advert_type` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '' COMMENT '分类名称', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='广告分类表'; -- ----------------------------- -- 表数据 `ien_cms_advert_type` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_column` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_column`; CREATE TABLE `ien_cms_column` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级id', `name` varchar(32) NOT NULL DEFAULT '' COMMENT '栏目名称', `model` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '文档模型id', `url` varchar(255) NOT NULL DEFAULT '' COMMENT '链接', `target` varchar(16) NOT NULL DEFAULT '_self' COMMENT '链接打开方式', `content` text NOT NULL COMMENT '内容', `icon` varchar(64) NOT NULL DEFAULT '' COMMENT '字体图标', `index_template` varchar(32) NOT NULL DEFAULT '' COMMENT '封面模板', `list_template` varchar(32) NOT NULL DEFAULT '' COMMENT '列表页模板', `detail_template` varchar(32) NOT NULL DEFAULT '' COMMENT '详情页模板', `post_auth` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '投稿权限', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `sort` int(11) NOT NULL DEFAULT '100' COMMENT '排序', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', `hide` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否隐藏', `rank_auth` int(11) NOT NULL DEFAULT '0' COMMENT '浏览权限,-1待审核,0为开放浏览,大于0则为对应的用户角色id', `type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '栏目属性:0-最终列表栏目,1-外部链接,2-频道封面', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='栏目表'; -- ----------------------------- -- 表数据 `ien_cms_column` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_document` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_document`; CREATE TABLE `ien_cms_document` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `cid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '栏目id', `model` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '文档模型ID', `title` varchar(256) NOT NULL DEFAULT '' COMMENT '标题', `shorttitle` varchar(32) NOT NULL DEFAULT '' COMMENT '简略标题', `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户ID', `flag` set('j','p','b','s','a','f','c','h') DEFAULT NULL COMMENT '自定义属性', `view` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '阅读量', `comment` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '评论数', `good` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '点赞数', `bad` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '踩数', `mark` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '收藏数量', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `sort` int(11) NOT NULL DEFAULT '100' COMMENT '排序', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', `trash` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '回收站', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='文档基础表'; -- ----------------------------- -- 表数据 `ien_cms_document` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_field` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_field`; CREATE TABLE `ien_cms_field` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '字段名称', `name` varchar(32) NOT NULL, `title` varchar(32) NOT NULL DEFAULT '' COMMENT '字段标题', `type` varchar(32) NOT NULL DEFAULT '' COMMENT '字段类型', `define` varchar(128) NOT NULL DEFAULT '' COMMENT '字段定义', `value` text NULL COMMENT '默认值', `options` text NULL COMMENT '额外选项', `tips` varchar(256) NOT NULL DEFAULT '' COMMENT '提示说明', `fixed` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否为固定字段', `show` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否显示', `model` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '所属文档模型id', `ajax_url` varchar(256) NOT NULL DEFAULT '' COMMENT '联动下拉框ajax地址', `next_items` varchar(256) NOT NULL DEFAULT '' COMMENT '联动下拉框的下级下拉框名,多个以逗号隔开', `param` varchar(32) NOT NULL DEFAULT '' COMMENT '联动下拉框请求参数名', `format` varchar(32) NOT NULL DEFAULT '' COMMENT '格式,用于格式文本', `table` varchar(32) NOT NULL DEFAULT '' COMMENT '表名,只用于快速联动类型', `level` tinyint(2) unsigned NOT NULL DEFAULT '2' COMMENT '联动级别,只用于快速联动类型', `key` varchar(32) NOT NULL DEFAULT '' COMMENT '键字段,只用于快速联动类型', `option` varchar(32) NOT NULL DEFAULT '' COMMENT '值字段,只用于快速联动类型', `pid` varchar(32) NOT NULL DEFAULT '' COMMENT '父级id字段,只用于快速联动类型', `ak` varchar(32) NOT NULL DEFAULT '' COMMENT '百度地图appkey', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `sort` int(11) NOT NULL DEFAULT '100' COMMENT '排序', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='文档字段表'; -- ----------------------------- -- 表数据 `ien_cms_field` -- ----------------------------- INSERT INTO `ien_cms_field` VALUES ('1', 'id', 'ID', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', 'ID', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480562978', '1480562978', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('2', 'cid', '栏目', 'select', 'int(11) UNSIGNED NOT NULL', '0', '', '请选择所属栏目', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480562978', '1480562978', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('3', 'uid', '用户ID', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563110', '1480563110', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('4', 'model', '模型ID', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563110', '1480563110', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('5', 'title', '标题', 'text', 'varchar(128) NOT NULL', '', '', '文档标题', '0', '1', '0', '', '', '', '', '', '0', '', '', '', '', '1480575844', '1480576134', '1', '1'); INSERT INTO `ien_cms_field` VALUES ('6', 'shorttitle', '简略标题', 'text', 'varchar(32) NOT NULL', '', '', '简略标题', '0', '1', '0', '', '', '', '', '', '0', '', '', '', '', '1480575844', '1480576134', '1', '1'); INSERT INTO `ien_cms_field` VALUES ('7', 'flag', '自定义属性', 'checkbox', 'set(\'j\',\'p\',\'b\',\'s\',\'a\',\'f\',\'h\',\'c\') NULL DEFAULT NULL', '', 'j:跳转\r\np:图片\r\nb:加粗\r\ns:滚动\r\na:特荐\r\nf:幻灯\r\nh:头条\r\nc:推荐', '自定义属性', '0', '1', '0', '', '', '', '', '', '0', '', '', '', '', '1480671258', '1480671258', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('8', 'view', '阅读量', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '1', '0', '', '', '', '', '', '0', '', '', '', '', '1480563149', '1480563149', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('9', 'comment', '评论数', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563189', '1480563189', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('10', 'good', '点赞数', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563279', '1480563279', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('11', 'bad', '踩数', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563330', '1480563330', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('12', 'mark', '收藏数量', 'text', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563372', '1480563372', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('13', 'create_time', '创建时间', 'datetime', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563406', '1480563406', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('14', 'update_time', '更新时间', 'datetime', 'int(11) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563432', '1480563432', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('15', 'sort', '排序', 'text', 'int(11) NOT NULL', '100', '', '', '0', '1', '0', '', '', '', '', '', '0', '', '', '', '', '1480563510', '1480563510', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('16', 'status', '状态', 'radio', 'tinyint(2) UNSIGNED NOT NULL', '1', '0:禁用\r\n1:启用', '', '0', '1', '0', '', '', '', '', '', '0', '', '', '', '', '1480563576', '1480563576', '100', '1'); INSERT INTO `ien_cms_field` VALUES ('17', 'trash', '回收站', 'text', 'tinyint(2) UNSIGNED NOT NULL', '0', '', '', '0', '0', '0', '', '', '', '', '', '0', '', '', '', '', '1480563576', '1480563576', '100', '1'); -- ----------------------------- -- 表结构 `ien_cms_link` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_link`; CREATE TABLE `ien_cms_link` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '类型:1-文字链接,2-图片链接', `title` varchar(128) NOT NULL DEFAULT '' COMMENT '链接标题', `url` varchar(255) NOT NULL DEFAULT '' COMMENT '链接地址', `logo` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '链接LOGO', `contact` varchar(255) NOT NULL DEFAULT '' COMMENT '联系方式', `sort` int(11) NOT NULL DEFAULT '100', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='有钱链接表'; -- ----------------------------- -- 表数据 `ien_cms_link` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_menu` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_menu`; CREATE TABLE `ien_cms_menu` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `nid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '导航id', `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级id', `column` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '栏目id', `page` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '单页id', `type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '类型:0-栏目链接,1-单页链接,2-自定义链接', `title` varchar(128) NOT NULL DEFAULT '' COMMENT '菜单标题', `url` varchar(255) NOT NULL DEFAULT '' COMMENT '链接', `css` varchar(64) NOT NULL DEFAULT '' COMMENT 'css类', `rel` varchar(64) NOT NULL DEFAULT '' COMMENT '链接关系网', `target` varchar(16) NOT NULL DEFAULT '' COMMENT '打开方式', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `sort` int(11) NOT NULL DEFAULT '100' COMMENT '排序', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='菜单表'; -- ----------------------------- -- 表数据 `ien_cms_menu` -- ----------------------------- INSERT INTO `ien_cms_menu` VALUES ('1', '1', '0', '0', '0', '2', '首页', 'cms/index/index', '', '', '_self', '1492345605', '1492345605', '100', '1'); INSERT INTO `ien_cms_menu` VALUES ('2', '2', '0', '0', '0', '2', '关于我们', 'http://www.ieasynet.com', '', '', '_self', '1492346763', '1492346763', '100', '1'); INSERT INTO `ien_cms_menu` VALUES ('3', '3', '0', '0', '0', '2', '开发文档', 'http://www.ieasynet.com', '', '', '_self', '1492346812', '1492346812', '100', '1'); INSERT INTO `ien_cms_menu` VALUES ('4', '3', '0', '0', '0', '2', '开发者社区', 'http://jianzhan.ieasynet.com/', '', '', '_self', '1492346832', '1492346832', '100', '1'); INSERT INTO `ien_cms_menu` VALUES ('5', '1', '0', '0', '0', '2', '二级菜单', 'http://www.ieasynet.com', '', '', '_self', '1492347372', '1492347510', '100', '1'); INSERT INTO `ien_cms_menu` VALUES ('6', '1', '5', '0', '0', '2', '子菜单', 'http://www.ieasynet.com', '', '', '_self', '1492347388', '1492347520', '100', '1'); -- ----------------------------- -- 表结构 `ien_cms_model` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_model`; CREATE TABLE `ien_cms_model` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '' COMMENT '模型名称', `title` varchar(32) NOT NULL DEFAULT '' COMMENT '模型标题', `table` varchar(64) NOT NULL DEFAULT '' COMMENT '附加表名称', `type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '模型类别:0-系统模型,1-普通模型,2-独立模型', `icon` varchar(64) NOT NULL, `sort` int(11) NOT NULL DEFAULT '100' COMMENT '排序', `system` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否系统模型', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='内容模型表'; -- ----------------------------- -- 表结构 `ien_cms_nav` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_nav`; CREATE TABLE `ien_cms_nav` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `tag` varchar(32) NOT NULL DEFAULT '' COMMENT '导航标识', `title` varchar(32) NOT NULL DEFAULT '' COMMENT '菜单标题', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='导航表'; -- ----------------------------- -- 表数据 `ien_cms_nav` -- ----------------------------- INSERT INTO `ien_cms_nav` VALUES ('1', 'main_nav', '顶部导航', '1492345083', '1492345083', '1'); INSERT INTO `ien_cms_nav` VALUES ('2', 'about_nav', '底部关于', '1492346685', '1492346685', '1'); INSERT INTO `ien_cms_nav` VALUES ('3', 'support_nav', '服务与支持', '1492346715', '1492346715', '1'); -- ----------------------------- -- 表结构 `ien_cms_page` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_page`; CREATE TABLE `ien_cms_page` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(64) NOT NULL DEFAULT '' COMMENT '单页标题', `content` mediumtext NOT NULL COMMENT '单页内容', `keywords` varchar(32) NOT NULL DEFAULT '' COMMENT '关键词', `description` varchar(250) NOT NULL DEFAULT '' COMMENT '页面描述', `template` varchar(32) NOT NULL DEFAULT '' COMMENT '模板文件', `cover` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '单页封面', `view` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '阅读量', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='单页表'; -- ----------------------------- -- 表数据 `ien_cms_page` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_slider` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_slider`; CREATE TABLE `ien_cms_slider` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(32) NOT NULL DEFAULT '' COMMENT '标题', `cover` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '封面id', `url` varchar(255) NOT NULL DEFAULT '' COMMENT '链接地址', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', `sort` int(11) unsigned NOT NULL DEFAULT '100' COMMENT '排序', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='滚动图片表'; -- ----------------------------- -- 表数据 `ien_cms_slider` -- ----------------------------- -- ----------------------------- -- 表结构 `ien_cms_support` -- ----------------------------- DROP TABLE IF EXISTS `ien_cms_support`; CREATE TABLE `ien_cms_support` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '' COMMENT '客服名称', `qq` varchar(16) NOT NULL DEFAULT '' COMMENT 'QQ', `msn` varchar(100) NOT NULL DEFAULT '' COMMENT 'msn', `taobao` varchar(100) NOT NULL DEFAULT '' COMMENT 'taobao', `alibaba` varchar(100) NOT NULL DEFAULT '' COMMENT 'alibaba', `skype` varchar(100) NOT NULL DEFAULT '' COMMENT 'skype', `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '状态', `sort` int(11) unsigned NOT NULL DEFAULT '100' COMMENT '排序', `create_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='客服表'; -- ----------------------------- -- 表数据 `ien_cms_support` -- -----------------------------
<gh_stars>0 ALTER TABLE m_loan ADD COLUMN `downpayment_amount` DECIMAL(19,6) DEFAULT NULL ;
/* Navicat MySQL Data Transfer Source Server : 127.0.0.1 Source Server Version : 50709 Source Host : 127.0.0.1:3306 Source Database : yupc_base_dev Target Server Type : MYSQL Target Server Version : 50709 File Encoding : 65001 Date: 2018-01-17 09:25:05 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for base_department -- ---------------------------- DROP TABLE IF EXISTS `base_department`; CREATE TABLE `base_department` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `code` varchar(255) NOT NULL COMMENT '部门编码', `name` varchar(255) DEFAULT '' COMMENT '部门名称', `parent_id` bigint(11) NOT NULL COMMENT '父id', `path` varchar(255) DEFAULT NULL COMMENT '层级路径 顶级默认:, [父path]父code, ', `is_enable` bit(1) DEFAULT b'1' COMMENT '是否启用\r\n 1:启用\r\n 0:禁用', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `type` varchar(64) DEFAULT 'DEPA' COMMENT '类型 默认为DEPA 为以后扩展准备', `description` varchar(255) DEFAULT '', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_depa_appid_code_del` (`app_id`,`code`,`is_delete`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='部门'; -- ---------------------------- -- Records of base_department -- ---------------------------- INSERT INTO `base_department` VALUES ('1', 'zkhyiGC1g4eZ', 'yfb', 'zzzz', '-1', ',', '\0', '\0', 'DEPART', 'zzz', '', '2017-12-27 21:06:21', '', '2017-12-28 10:04:09'); INSERT INTO `base_department` VALUES ('2', 'zkhyiGC1g4eZ', 'yfb2', '研发2', '1', ',yfb,', '', '\0', 'DEPART', '研发2', '', '2017-12-27 21:06:37', '', '2017-12-27 21:28:41'); INSERT INTO `base_department` VALUES ('3', 'zkhyiGC1g4eZ', 'yfb3', '研发3', '2', ',yfb,yfb2,', '', '\0', 'DEPART', '研发3', '', '2017-12-27 21:12:23', '', '2017-12-27 21:28:41'); INSERT INTO `base_department` VALUES ('4', 'zkhyiGC1g4eZ', 'yfb4', '研发4', '-1', ',', '', '\0', 'DEPART', '研发4', '', '2017-12-27 21:18:47', '', '2017-12-27 21:18:47'); -- ---------------------------- -- Table structure for base_dictionary -- ---------------------------- DROP TABLE IF EXISTS `base_dictionary`; CREATE TABLE `base_dictionary` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `dictionary_type_id` bigint(11) NOT NULL COMMENT '类型id', `dictionary_type_code` varchar(100) NOT NULL COMMENT '类型编码', `dictionary_type_name` varchar(255) DEFAULT NULL COMMENT '字典类型名称', `code` varchar(100) NOT NULL COMMENT '字典编码', `name` varchar(255) DEFAULT '' COMMENT '字典条目名称', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `is_enable` bit(1) DEFAULT b'1' COMMENT '启用状态\r\n 1:启用\r\n 0:禁用', `order_num` int(11) DEFAULT '0' COMMENT '排序号', `description` varchar(255) DEFAULT '' COMMENT '描述', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `create_user` varchar(64) DEFAULT '' COMMENT '创建人', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `update_user` varchar(64) DEFAULT '' COMMENT '更新人', PRIMARY KEY (`id`), UNIQUE KEY `uk_dictionary_appid_tid_code_del` (`app_id`,`dictionary_type_id`,`code`,`is_delete`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='数据字典表'; -- ---------------------------- -- Records of base_dictionary -- ---------------------------- INSERT INTO `base_dictionary` VALUES ('1', 'zkhyiGC1g4eZ', '1', 'd1', 'd1', 'code4', '中文额22222', '\0', '', '1', '1', '2017-12-26 14:12:01', null, '2017-12-26 14:12:01', null); INSERT INTO `base_dictionary` VALUES ('2', 'zkhyiGC1g4eZ', '2', 'd', 'd', 'code2', '中文额111', '\0', '', '1', null, '2017-12-26 14:12:01', null, '2017-12-26 14:12:01', null); INSERT INTO `base_dictionary` VALUES ('4', 'zkhyiGC1g4eZ', '3', 'user.area', '用户地区', 'code1', '111', '\0', '', '1', '3', '2017-12-26 14:09:29', null, '2017-12-29 10:28:28', null); -- ---------------------------- -- Table structure for base_dictionary_type -- ---------------------------- DROP TABLE IF EXISTS `base_dictionary_type`; CREATE TABLE `base_dictionary_type` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `code` varchar(100) NOT NULL COMMENT '编码', `name` varchar(255) DEFAULT '' COMMENT '名称', `description` varchar(255) DEFAULT '' COMMENT '描述', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `create_user` varchar(64) DEFAULT '' COMMENT '创建人', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `update_user` varchar(64) DEFAULT '' COMMENT '更新人', PRIMARY KEY (`id`), UNIQUE KEY `uk_dt_appid_code_del` (`app_id`,`code`,`is_delete`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='数据字典类型表'; -- ---------------------------- -- Records of base_dictionary_type -- ---------------------------- INSERT INTO `base_dictionary_type` VALUES ('2', 'zkhyiGC1g4eZ', 'd', '修改1', '修改1', '\0', '2017-12-28 10:05:55', '', '2017-12-28 10:16:37', ''); INSERT INTO `base_dictionary_type` VALUES ('3', 'zkhyiGC1g4eZ', 'user.area', '用户地区', '用户所属地区', '\0', '2017-12-28 10:06:55', '', '2017-12-28 10:06:55', ''); INSERT INTO `base_dictionary_type` VALUES ('4', 'zkhyiGC1g4eZ', 'user.type', '用户类型', '', '\0', '2017-12-28 10:09:47', '', '2017-12-28 10:09:47', ''); INSERT INTO `base_dictionary_type` VALUES ('5', 'zkhyiGC1g4eZ', 'user.type2', '用户类型', '', '\0', '2017-12-28 10:15:10', '', '2017-12-28 10:15:10', ''); INSERT INTO `base_dictionary_type` VALUES ('6', 'zkhyiGC1g4eZ', '111', '111', '111', '\0', '2017-12-29 10:25:51', '', '2017-12-29 10:25:51', ''); -- ---------------------------- -- Table structure for base_menu_group -- ---------------------------- DROP TABLE IF EXISTS `base_menu_group`; CREATE TABLE `base_menu_group` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `code` varchar(255) NOT NULL COMMENT '菜单类型编码', `name` varchar(255) DEFAULT '' COMMENT '菜单类型名称', `description` varchar(255) DEFAULT '' COMMENT '菜单类型描述', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_menu_group_appid_code_del` (`app_id`,`code`,`is_delete`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='菜单组 一个应用系统,不同的位置、不同的子系统可能会存在多组菜单'; -- ---------------------------- -- Records of base_menu_group -- ---------------------------- INSERT INTO `base_menu_group` VALUES ('1', 'zkhyiGC1g4eZ', 'LEFT', '后台管理左侧菜单', '', '\0', '', '2017-12-19 09:16:37', '', '2017-12-19 09:16:39'); INSERT INTO `base_menu_group` VALUES ('2', 'zkhyiGC1g4eZ', '111', '444', '444', '\0', null, '2017-12-19 17:56:55', null, '2017-12-19 17:58:12'); INSERT INTO `base_menu_group` VALUES ('3', 'zkhyiGC1g4eZ', 'top', 'top', 'top', '\0', null, '2017-12-29 13:58:13', null, '2017-12-29 13:58:13'); -- ---------------------------- -- Table structure for base_resources -- ---------------------------- DROP TABLE IF EXISTS `base_resources`; CREATE TABLE `base_resources` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `code` varchar(255) NOT NULL COMMENT '资源编码', `name` varchar(255) DEFAULT '' COMMENT '资源名称', `menu_group_code` varchar(255) DEFAULT 'DEF' COMMENT '资源类型为菜单时,对应菜单的组(base_menu_group), 当系统只存在一组菜单时,该字段可以为空', `parent_id` bigint(11) NOT NULL COMMENT '父菜单', `type` varchar(255) NOT NULL COMMENT '资源类型 menu:菜单 button:按钮 \r\n page_uri:页面上的url \r\n api:api', `href` varchar(255) DEFAULT '' COMMENT '菜单url', `path` varchar(255) DEFAULT ',' COMMENT '层级路径 顶级默认:, [父path]父code, ', `is_enable` bit(1) DEFAULT b'1' COMMENT '是否启用\r\n 1:启用\r\n 0:禁用', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `method` varchar(10) DEFAULT 'GET' COMMENT '资源请求方式 POST/GET/PUT/DELETE', `targets` varchar(255) DEFAULT '_self' COMMENT '菜单打开方式 \r\n _self:相同框架 \r\n _top:整页 \r\n _blank:新建一个窗口\r\n _paren:t父窗口 ', `icon` varchar(255) DEFAULT '' COMMENT '菜单图标', `order_num` int(11) DEFAULT '0' COMMENT '排序', `description` varchar(255) DEFAULT '' COMMENT '描述', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_resource_appid_code_del` (`app_id`,`code`,`is_delete`) USING BTREE, KEY `idx_resource_appid_id` (`app_id`,`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8 COMMENT='资源 需要控制权限的资源,包括菜单,页面上的uri,对外api'; -- ---------------------------- -- Records of base_resources -- ---------------------------- INSERT INTO `base_resources` VALUES ('100', 'zkhyiGC1g4eZ', 'openSys', '统一平台', 'LEFT', '-1', 'DIR', 'javascript:void(0);', ',', '', '\0', 'GET', '_self', '', '0', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('101', 'zkhyiGC1g4eZ', 'openBase', '基础配置', 'LEFT', '100', 'DIR', 'javascript:void(0);', ',openSys,', '', '\0', 'GET', '_self', '', '1', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('102', 'zkhyiGC1g4eZ', 'openUser', '用户管理', 'LEFT', '101', 'MENU', '', ',openSys,openBase,', '', '\0', 'GET', '_self', '', '0', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('103', 'zkhyiGC1g4eZ', 'openMenuGroup', '菜单组管理', 'LEFT', '101', 'MENU', '', ',openSys,openBase,', '', '\0', 'GET', '_self', '', '1', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('104', 'zkhyiGC1g4eZ', 'openResource', '菜单管理', 'LEFT', '101', 'MENU', '', ',openSys,openBase,', '', '\0', 'GET', '_self', '', '2', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('105', 'zkhyiGC1g4eZ', 'openRole', '角色管理', 'LEFT', '101', 'MENU', '', ',openSys,openBase,', '', '\0', 'GET', '_self', '', '3', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('106', 'zkhyiGC1g4eZ', 'openDepart', '部门管理', 'LEFT', '101', 'MENU', '', ',openSys,openBase,', '', '\0', 'GET', '_self', '', '4', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('107', 'zkhyiGC1g4eZ', 'openDIctionary', '数据字典', 'LEFT', '101', 'MENU', '', ',openSys,openBase,', '', '\0', 'GET', '_self', '', '5', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('108', 'zkhyiGC1g4eZ', 'zzz', '测试', 'LEFT', '100', 'DIR', 'javascript:void(0);', ',openSys,', '', '\0', 'GET', '_self', '', '2', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('109', 'zkhyiGC1g4eZ', 'aaa', 'aaa', 'LEFT', '108', 'DIR', '', ',openSys,zzz,', '', '\0', 'GET', '_self', '', '0', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('110', 'zkhyiGC1g4eZ', 'bbb', 'bbb', 'LEFT', '108', 'MENU', 'www', ',openSys,zzz,', '', '\0', 'GET', '_self', '', '0', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('111', 'zkhyiGC1g4eZ', 'ccc', 'ccc', 'LEFT', '109', 'DIR', 'www', ',openSys,zzz,aaa,', '', '\0', 'GET', '_self', '', '0', '', '', null, '', null); INSERT INTO `base_resources` VALUES ('112', 'zkhyiGC1g4eZ', 'ddd', 'ddd', 'LEFT', '111', 'BUTTON', 'www', ',openSys,zzz,aaa,ccc,', '', '\0', 'GET', '_self', '', '0', '', '', null, '', null); -- ---------------------------- -- Table structure for base_resource_authority -- ---------------------------- DROP TABLE IF EXISTS `base_resource_authority`; CREATE TABLE `base_resource_authority` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `authority_id` bigint(11) NOT NULL COMMENT '权限Id 角色id(base_role) 或 部门id(base_department)', `authority_type` varchar(255) DEFAULT '' COMMENT '权限类型 ROLE/DEPARTMENT', `resource_id` bigint(11) NOT NULL COMMENT '资源id base_resources表', `menu_group_code` varchar(255) DEFAULT 'DEF' COMMENT '菜单组', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_auth_resource_appid_aid_rid` (`app_id`,`authority_id`,`resource_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='资源(base_resources)对应的权限(base_role/base_department)'; -- ---------------------------- -- Records of base_resource_authority -- ---------------------------- INSERT INTO `base_resource_authority` VALUES ('3', 'zkhyiGC1g4eZ', '1', 'ROLE', '112', 'LEFT', null, '2017-12-29 11:18:45', null, '2017-12-29 11:18:45'); INSERT INTO `base_resource_authority` VALUES ('4', 'zkhyiGC1g4eZ', '1', 'ROLE', '100', 'LEFT', null, '2017-12-29 11:18:45', null, '2017-12-29 11:18:45'); INSERT INTO `base_resource_authority` VALUES ('5', 'zkhyiGC1g4eZ', '1', 'ROLE', '108', 'LEFT', null, '2017-12-29 11:18:45', null, '2017-12-29 11:18:45'); INSERT INTO `base_resource_authority` VALUES ('6', 'zkhyiGC1g4eZ', '1', 'ROLE', '109', 'LEFT', null, '2017-12-29 11:18:45', null, '2017-12-29 11:18:45'); INSERT INTO `base_resource_authority` VALUES ('7', 'zkhyiGC1g4eZ', '1', 'ROLE', '111', 'LEFT', null, '2017-12-29 11:18:45', null, '2017-12-29 11:18:45'); -- ---------------------------- -- Table structure for base_role -- ---------------------------- DROP TABLE IF EXISTS `base_role`; CREATE TABLE `base_role` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `code` varchar(255) NOT NULL COMMENT '角色编码', `name` varchar(255) DEFAULT '' COMMENT '角色名称', `is_enable` bit(1) DEFAULT b'1' COMMENT '是否启用\r\n 1:启用\r\n 0:禁用', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `type` varchar(64) DEFAULT 'ROLE' COMMENT '类型 默认为ROLE 为以后扩展准备', `description` varchar(255) DEFAULT '', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_role_appid_code_del` (`app_id`,`code`,`is_delete`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='角色'; -- ---------------------------- -- Records of base_role -- ---------------------------- INSERT INTO `base_role` VALUES ('1', 'zkhyiGC1g4eZ', 'test1', '修改1', '', '\0', 'ROLE', '修改', null, '2017-12-21 10:45:32', null, '2017-12-21 10:50:00'); INSERT INTO `base_role` VALUES ('2', 'zkhyiGC1g4eZ', 'test2', '角色1', '', '\0', 'ROLE', 'test1', null, '2017-12-21 10:46:55', null, '2017-12-21 10:46:55'); INSERT INTO `base_role` VALUES ('3', 'zkhyiGC1g4eZ', 'test3', '角色1', '', '\0', 'ROLE', 'test1', null, '2017-12-21 10:47:31', null, '2017-12-21 10:47:31'); INSERT INTO `base_role` VALUES ('4', 'zkhyiGC1g4eZ', 'test4', '角色4', '', '\0', 'ROLE', 'test4', null, '2017-12-21 13:47:30', null, '2017-12-21 13:47:30'); INSERT INTO `base_role` VALUES ('5', 'zkhyiGC1g4eZ', '1', '2', '', '\0', 'ROLE', '2', null, '2017-12-29 10:36:04', null, '2017-12-29 10:36:26'); -- ---------------------------- -- Table structure for base_role_user -- ---------------------------- DROP TABLE IF EXISTS `base_role_user`; CREATE TABLE `base_role_user` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `role_id` bigint(11) NOT NULL COMMENT '角色Id (base_role) ', `user_id` bigint(11) NOT NULL COMMENT '用户id base_user表', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_ru_aip_rid_uid` (`app_id`,`role_id`,`user_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='用户角色表'; -- ---------------------------- -- Records of base_role_user -- ---------------------------- INSERT INTO `base_role_user` VALUES ('2', 'zkhyiGC1g4eZ', '1', '1', null, '2017-12-29 10:40:24', null, '2017-12-29 10:40:24'); INSERT INTO `base_role_user` VALUES ('3', 'zkhyiGC1g4eZ', '2', '1', null, '2017-12-29 10:40:24', null, '2017-12-29 10:40:24'); INSERT INTO `base_role_user` VALUES ('4', 'zkhyiGC1g4eZ', '1', '2', null, '2017-12-29 10:40:24', null, '2017-12-29 10:40:24'); -- ---------------------------- -- Table structure for base_user -- ---------------------------- DROP TABLE IF EXISTS `base_user`; CREATE TABLE `base_user` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(64) NOT NULL COMMENT '开发者ID,提供给各个应用的设别码', `username` varchar(64) NOT NULL COMMENT '帐号', `password` varchar(64) NOT NULL COMMENT '登录密码', `name` varchar(64) NOT NULL COMMENT '姓名', `email` varchar(64) DEFAULT '' COMMENT '邮箱', `mobile` varchar(20) DEFAULT '' COMMENT '手机', `logo_url` varchar(255) DEFAULT '' COMMENT '头像', `is_enable` bit(1) DEFAULT b'1' COMMENT '是否禁用 \r\n 1:启用\r\n 0:禁用', `is_delete` bit(1) DEFAULT b'0' COMMENT '是否删除 \r\n 1:已删除\r\n 0:未删除', `description` varchar(255) DEFAULT '' COMMENT '描述', `create_user` varchar(64) DEFAULT '', `create_time` datetime DEFAULT NULL, `update_user` varchar(64) DEFAULT '', `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uk_user_appid_name_del` (`app_id`,`username`,`is_delete`) USING BTREE, KEY `idx_user_appid_name_pwd` (`app_id`,`username`,`password`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='用户管理'; -- ---------------------------- -- Records of base_user -- ---------------------------- INSERT INTO `base_user` VALUES ('1', 'zkhyiGC1g4eZ', 'test', <PASSWORD>BQDoQWQIH57kQsaturh9pQBZILmvDijPy76lu3pY5YDIjLH.', 'string', 'string', 'string', 'string', '\0', '\0', 'string', '', '2017-12-29 10:31:28', '', '2017-12-29 10:34:27'); INSERT INTO `base_user` VALUES ('2', 'zkhyiGC1g4eZ', 'test1', '$2a$12$lsuSUKcXtK1G.2nCO5155.CQaO.xAv8raufShwx2r1CI2hp2Sutia', 'string', 'string', 'string', 'string', '\0', '\0', 'string', '', '2017-12-29 10:33:15', '', '2017-12-29 10:34:46');
<reponame>sjones-hep-ph-liv-ac-uk/apel<gh_stars>0 -- ------------------------------------------------------------------------------ -- JobRecords DROP TABLE IF EXISTS JobRecords; CREATE TABLE JobRecords ( UpdateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, SiteID INT NOT NULL, -- Foreign key SubmitHostID INT NOT NULL, -- Foreign key MachineNameID INT NOT NULL, -- Foreign key QueueID INT NOT NULL, -- Foreign key LocalJobId VARCHAR(255) NOT NULL, LocalUserId VARCHAR(255), GlobalUserNameID INT NOT NULL, -- Foreign key FQAN VARCHAR(255) DEFAULT NULL, VOID INT NOT NULL, -- Foreign key VOGroupID INT NOT NULL, -- Foreign key VORoleID INT NOT NULL, -- Foreign key WallDuration BIGINT UNSIGNED, CpuDuration BIGINT UNSIGNED, NodeCount INT UNSIGNED NOT NULL DEFAULT 0, Processors INT UNSIGNED NOT NULL DEFAULT 0, MemoryReal BIGINT UNSIGNED, MemoryVirtual BIGINT UNSIGNED, StartTime DATETIME NOT NULL, EndTime DATETIME NOT NULL, EndYear INT, EndMonth INT, InfrastructureDescription VARCHAR(100), InfrastructureType VARCHAR(20), ServiceLevelType VARCHAR(50) NOT NULL, ServiceLevel DECIMAL(10,3) NOT NULL, PublisherDNID INT NOT NULL, -- Foreign key PRIMARY KEY (SiteID, LocalJobId, EndTime), -- index for SummariseJobs() procedure. -- Try to reuse this index as much as you can INDEX SummaryIdx (SiteID, VOID, GlobalUserNameID, VOGroupID, VORoleID, EndYear, EndMonth, InfrastructureType, SubmitHostID, ServiceLevelType, ServiceLevel, NodeCount, Processors, EndTime, WallDuration, CpuDuration), -- special index for retrieving data for UAS system INDEX UASIdx (VOID, UpdateTime) ); DROP PROCEDURE IF EXISTS ReplaceJobRecord; DELIMITER // CREATE PROCEDURE ReplaceJobRecord( site VARCHAR(255), submitHost VARCHAR(255), machineName VARCHAR(255), queue VARCHAR(100), localJobId VARCHAR(255), localUserId VARCHAR(255), globalUserName VARCHAR(255), fullyQualifiedAttributeName VARCHAR(255), vo VARCHAR(255), voGroup VARCHAR(255), voRole VARCHAR(255), wallDuration INT, cpuDuration INT, processors INT, nodeCount INT, startTime DATETIME, endTime DATETIME, infrastructureDescription VARCHAR(100), infrastructureType VARCHAR(20), memoryReal INT, memoryVirtual INT, serviceLevelType VARCHAR(50), serviceLevel DECIMAL(10,3), publisherDN VARCHAR(255)) BEGIN REPLACE INTO JobRecords(SiteID, SubmitHostID, MachineNameID, QueueID, LocalJobId, LocalUserId, GlobalUserNameID, FQAN, VOID, VOGroupID, VORoleID, WallDuration, CpuDuration, Processors, NodeCount, StartTime, EndTime, EndYear, EndMonth, InfrastructureDescription, InfrastructureType, MemoryReal, MemoryVirtual, ServiceLevelType, ServiceLevel, PublisherDNID) VALUES ( SiteLookup(site), SubmitHostLookup(submitHost), MachineNameLookup(machineName), QueueLookup(queue), localJobId, localUserId, DNLookup(globalUserName), fullyQualifiedAttributeName, VOLookup(vo), VOGroupLookup(voGroup), VORoleLookup(voRole), wallDuration, cpuDuration, IFNULL(processors, 0), IFNULL(nodeCount, 0), startTime, endTime, YEAR(endTime), MONTH(endTime), infrastructureDescription, infrastructureType, memoryReal, memoryVirtual, serviceLevelType, serviceLevel, DNLookup(publisherDN) ); END // DELIMITER ; -- ----------------------------------------------------------------------------- -- Summaries DROP TABLE IF EXISTS Summaries; CREATE TABLE Summaries ( UpdateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, SiteID INT NOT NULL, -- Foreign key Month INT NOT NULL, Year INT NOT NULL, GlobalUserNameID INT NOT NULL, -- Foreign key VOID INT NOT NULL, -- Foreign key VOGroupID INT NOT NULL, -- Foreign key VORoleID INT NOT NULL, -- Foreign key SubmitHostId INT NOT NULL, InfrastructureType VARCHAR(20), ServiceLevelType VARCHAR(50) NOT NULL, ServiceLevel DECIMAL(10,3) NOT NULL, NodeCount INT NOT NULL, Processors INT NOT NULL, EarliestEndTime DATETIME, LatestEndTime DATETIME, WallDuration BIGINT UNSIGNED NOT NULL, CpuDuration BIGINT UNSIGNED NOT NULL, NumberOfJobs BIGINT UNSIGNED NOT NULL, PublisherDNID INT NOT NULL, PRIMARY KEY (SiteID, Month, Year, GlobalUserNameID, VOID, VORoleID, VOGroupID, SubmitHostId, ServiceLevelType, ServiceLevel, NodeCount, Processors) ); DROP PROCEDURE IF EXISTS ReplaceSummary; DELIMITER // CREATE PROCEDURE ReplaceSummary( site VARCHAR(255), month INT, year INT, globalUserName VARCHAR(255), vo VARCHAR(255), voGroup VARCHAR(255), voRole VARCHAR(255), submitHost VARCHAR(255), infrastructureType VARCHAR(50), serviceLevelType VARCHAR(50), serviceLevel DECIMAL(10,3), nodeCount INT, processors INT, earliestEndTime DATETIME, latestEndTime DATETIME, wallDuration BIGINT, cpuDuration BIGINT, numberOfJobs INT, publisherDN VARCHAR(255)) BEGIN REPLACE INTO Summaries(SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostId, InfrastructureType, ServiceLevelType, ServiceLevel, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NumberOfJobs, PublisherDNID) VALUES ( SiteLookup(site), month, year, DNLookup(globalUserName), VOLookup(vo), VOGroupLookup(voGroup), VORoleLookup(voRole), SubmitHostLookup(submitHost), infrastructureType, serviceLevelType, serviceLevel, nodeCount, processors, earliestEndTime, latestEndTime, wallDuration, cpuDuration, numberOfJobs, DNLookup(publisherDN)); END // DELIMITER ; -- ----------------------------------------------------------------------------- -- NormalisedSummaries DROP TABLE IF EXISTS NormalisedSummaries; CREATE TABLE NormalisedSummaries ( UpdateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, SiteID INT NOT NULL, -- Foreign key Month INT NOT NULL, Year INT NOT NULL, GlobalUserNameID INT NOT NULL, -- Foreign key VOID INT NOT NULL, -- Foreign key VOGroupID INT NOT NULL, -- Foreign key VORoleID INT NOT NULL, -- Foreign key SubmitHostId INT NOT NULL, Infrastructure VARCHAR(20), NodeCount INT NOT NULL, Processors INT NOT NULL, EarliestEndTime DATETIME, LatestEndTime DATETIME, WallDuration BIGINT UNSIGNED NOT NULL, CpuDuration BIGINT UNSIGNED NOT NULL, NormalisedWallDuration BIGINT UNSIGNED NOT NULL, NormalisedCpuDuration BIGINT UNSIGNED NOT NULL, NumberOfJobs BIGINT UNSIGNED NOT NULL, PublisherDNID INT NOT NULL, PRIMARY KEY (SiteID, Month, Year, GlobalUserNameID, VOID, VORoleID, VOGroupID, SubmitHostId, NodeCount, Processors) ); DROP PROCEDURE IF EXISTS ReplaceNormalisedSummary; DELIMITER // CREATE PROCEDURE ReplaceNormalisedSummary( site VARCHAR(255), month INT, year INT, globalUserName VARCHAR(255), vo VARCHAR(255), voGroup VARCHAR(255), voRole VARCHAR(255), submitHost VARCHAR(255), infrastructure VARCHAR(50), nodeCount INT, processors INT, earliestEndTime DATETIME, latestEndTime DATETIME, wallDuration BIGINT, cpuDuration BIGINT, normalisedWallDuration BIGINT, normalisedCpuDuration BIGINT, numberOfJobs INT, publisherDN VARCHAR(255)) BEGIN REPLACE INTO NormalisedSummaries(SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostId, Infrastructure, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NormalisedWallDuration, NormalisedCpuDuration, NumberOfJobs, PublisherDNID) VALUES ( SiteLookup(site), month, year, DNLookup(globalUserName), VOLookup(vo), VOGroupLookup(voGroup), VORoleLookup(voRole), SubmitHostLookup(submitHost), infrastructure, nodeCount, processors, earliestEndTime, latestEndTime, wallDuration, cpuDuration, normalisedWallDuration, normalisedCpuDuration, numberOfJobs, DNLookup(publisherDN)); END // DELIMITER ; -- ----------------------------------------------------------------------------- -- SuperSummaries -- Deprecated in 1.3.0 DROP TABLE IF EXISTS SuperSummaries; CREATE TABLE SuperSummaries ( UpdateTime TIMESTAMP, SiteID INT NOT NULL, -- Foreign key Month INT NOT NULL, Year INT NOT NULL, GlobalUserNameID INT NOT NULL, -- Foreign key VOID INT NOT NULL, -- Foreign key VOGroupID INT NOT NULL, -- Foreign key VORoleID INT NOT NULL, -- Foreign key SubmitHostId INT NOT NULL, InfrastructureType VARCHAR(20), ServiceLevelType VARCHAR(50) NOT NULL, ServiceLevel DECIMAL(10,3) NOT NULL, NodeCount INT NOT NULL, Processors INT NOT NULL, EarliestEndTime DATETIME, LatestEndTime DATETIME, WallDuration BIGINT UNSIGNED NOT NULL, CpuDuration BIGINT UNSIGNED NOT NULL, NumberOfJobs BIGINT UNSIGNED NOT NULL, PRIMARY KEY (SiteID, Month, Year, GlobalUserNameID, VOID, VORoleID, VOGroupID, SubmitHostId, InfrastructureType, ServiceLevelType, ServiceLevel, NodeCount, Processors) ); -- ----------------------------------------------------------------------------- -- HybridSuperSummaries -- These contain normalised durations as well as the original service levels DROP TABLE IF EXISTS HybridSuperSummaries; CREATE TABLE HybridSuperSummaries ( UpdateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, SiteID INT NOT NULL, -- ID for lookup table Month INT NOT NULL, Year INT NOT NULL, GlobalUserNameID INT NOT NULL, -- ID for lookup table VOID INT NOT NULL, -- ID for lookup table VOGroupID INT NOT NULL, -- ID for lookup table VORoleID INT NOT NULL, -- ID for lookup table SubmitHostId INT NOT NULL, -- ID for lookup table Infrastructure VARCHAR(20) NOT NULL, /* Defaults for service level fields set so that warnings are not raised when normalised summaries (which lack service level fields) are copied in.*/ ServiceLevelType VARCHAR(50) NOT NULL DEFAULT '', ServiceLevel DECIMAL(10,3) NOT NULL DEFAULT 0, NodeCount INT NOT NULL, Processors INT NOT NULL, EarliestEndTime DATETIME, LatestEndTime DATETIME, WallDuration BIGINT UNSIGNED NOT NULL, CpuDuration BIGINT UNSIGNED NOT NULL, NormalisedWallDuration BIGINT UNSIGNED NOT NULL, NormalisedCpuDuration BIGINT UNSIGNED NOT NULL, NumberOfJobs BIGINT UNSIGNED NOT NULL, PRIMARY KEY (SiteID, Month, Year, GlobalUserNameID, VOID, VORoleID, VOGroupID, SubmitHostId, Infrastructure, ServiceLevelType, ServiceLevel, NodeCount, Processors) ); DROP PROCEDURE IF EXISTS SummariseJobs; DELIMITER // CREATE PROCEDURE SummariseJobs() BEGIN REPLACE INTO HybridSuperSummaries(SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostID, Infrastructure, ServiceLevelType, ServiceLevel, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NormalisedWallDuration, NormalisedCpuDuration, NumberOfJobs) SELECT SiteID, EndMonth AS Month, EndYear AS Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostID, InfrastructureType, ServiceLevelType, ServiceLevel, NodeCount, Processors, MIN(EndTime) AS EarliestEndTime, MAX(EndTime) AS LatestEndTime, SUM(WallDuration) AS SumWCT, SUM(CpuDuration) AS SumCPU, ROUND(SUM(IF(WallDuration > 0, WallDuration, 0) * IF(ServiceLevelType = "HEPSPEC", ServiceLevel, ServiceLevel / 250))) AS NormSumWCT, ROUND(SUM(IF(CpuDuration > 0, CpuDuration, 0) * IF(ServiceLevelType = "HEPSPEC", ServiceLevel, ServiceLevel / 250))) AS NormSumCPU, COUNT(*) AS Njobs FROM JobRecords GROUP BY SiteID, VOID, GlobalUserNameID, VOGroupID, VORoleID, EndYear, EndMonth, InfrastructureType, SubmitHostID, ServiceLevelType, ServiceLevel, NodeCount, Processors; END // DELIMITER ; DROP PROCEDURE IF EXISTS NormaliseSummaries; DELIMITER // CREATE PROCEDURE NormaliseSummaries() BEGIN REPLACE INTO HybridSuperSummaries(SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostID, Infrastructure, ServiceLevelType, ServiceLevel, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NormalisedWallDuration, NormalisedCpuDuration, NumberOfJobs) SELECT SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostID, InfrastructureType, ServiceLevelType, ServiceLevel, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, ROUND(IF(WallDuration > 0, WallDuration, 0) * IF(ServiceLevelType = "HEPSPEC", ServiceLevel, ServiceLevel / 250)) AS NormSumWCT, ROUND(IF(CpuDuration > 0, CpuDuration, 0) * IF(ServiceLevelType = "HEPSPEC", ServiceLevel, ServiceLevel / 250)) AS NormSumCPU, NumberOfJobs FROM Summaries; END // DELIMITER ; DROP PROCEDURE IF EXISTS CopyNormalisedSummaries; DELIMITER // CREATE PROCEDURE CopyNormalisedSummaries() BEGIN REPLACE INTO HybridSuperSummaries(SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostID, Infrastructure, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NormalisedWallDuration, NormalisedCpuDuration, NumberOfJobs) SELECT SiteID, Month, Year, GlobalUserNameID, VOID, VOGroupID, VORoleID, SubmitHostID, Infrastructure, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NormalisedWallDuration, NormalisedCpuDuration, NumberOfJobs FROM NormalisedSummaries; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- SyncRecords DROP TABLE IF EXISTS SyncRecords; CREATE TABLE SyncRecords ( UpdateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, SiteID INT NOT NULL, -- Foreign key SubmitHostID INT NOT NULL, -- Foreign key NumberOfJobs INT NOT NULL, Month INT NOT NULL, Year INT NOT NULL, PublisherDNID INT NOT NULL, -- Foreign key PRIMARY KEY (SiteID, SubmitHostID, Month, Year), INDEX(UpdateTime), INDEX(SiteID), INDEX(Month), INDEX(Year) ); DROP PROCEDURE IF EXISTS ReplaceSyncRecord; DELIMITER // CREATE PROCEDURE ReplaceSyncRecord( site VARCHAR(255), submitHost VARCHAR(255), njobs INT, month INT, year INT, publisherDN VARCHAR(255)) BEGIN REPLACE INTO SyncRecords(SiteID, SubmitHostID, NumberOfJobs, Month, Year, PublisherDNID) VALUES ( SiteLookup(site), SubmitHostLookup(submitHost), njobs, month, year, DNLookup(publisherDN) ); END // DELIMITER ; -- ------------------------------------------------------------------------------ -- LastUpdated DROP TABLE IF EXISTS LastUpdated; CREATE TABLE LastUpdated ( UpdateTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, Type VARCHAR(255) PRIMARY KEY ); DROP PROCEDURE IF EXISTS UpdateTimestamp; DELIMITER // CREATE PROCEDURE UpdateTimestamp(type VARCHAR(255)) BEGIN REPLACE INTO LastUpdated (Type) VALUES (type); END // DELIMITER ; -- ----------------------------------------------------------------------------- -- Sites DROP TABLE IF EXISTS Sites; CREATE TABLE Sites ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS SiteLookup; DELIMITER // CREATE FUNCTION SiteLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM Sites WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO Sites(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- DNs DROP TABLE IF EXISTS DNs; CREATE TABLE DNs ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS DNLookup; DELIMITER // CREATE FUNCTION DNLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM DNs WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO DNs(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- SubmitHosts DROP TABLE IF EXISTS SubmitHosts; CREATE TABLE SubmitHosts ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS SubmitHostLookup; DELIMITER // CREATE FUNCTION SubmitHostLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM SubmitHosts WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO SubmitHosts(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- MachineNames DROP TABLE IF EXISTS MachineNames; CREATE TABLE MachineNames ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS MachineNameLookup; DELIMITER // CREATE FUNCTION MachineNameLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM MachineNames WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO MachineNames(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- Queues DROP TABLE IF EXISTS Queues; CREATE TABLE Queues ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS QueueLookup; DELIMITER // CREATE FUNCTION QueueLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM Queues WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO Queues(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- VOs DROP TABLE IF EXISTS VOs; CREATE TABLE VOs ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS VOLookup; DELIMITER // CREATE FUNCTION VOLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM VOs WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO VOs(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- VORoles DROP TABLE IF EXISTS VORoles; CREATE TABLE VORoles ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS VORoleLookup; DELIMITER // CREATE FUNCTION VORoleLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM VORoles WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO VORoles(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- VOGroups DROP TABLE IF EXISTS VOGroups; CREATE TABLE VOGroups ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, INDEX(name) ) ; DROP FUNCTION IF EXISTS VOGroupLookup; DELIMITER // CREATE FUNCTION VOGroupLookup(lookup VARCHAR(255)) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE result INTEGER; SELECT id FROM VOGroups WHERE name=lookup INTO result; IF result IS NULL THEN INSERT INTO VOGroups(name) VALUES (lookup); SET result=LAST_INSERT_ID(); END IF; RETURN result; END // DELIMITER ; -- ----------------------------------------------------------------------------- -- View on Summaries DROP VIEW IF EXISTS VSummaries; CREATE VIEW VSummaries AS SELECT UpdateTime, site.name Site, Month, Year, userdn.name GlobalUserName, vos.name VO, vogroup.name VOGroup, vorole.name VORole, submithost.name SubmitHost, InfrastructureType, ServiceLevelType, ServiceLevel, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NumberOfJobs FROM Summaries, Sites site, DNs userdn, VORoles vorole, VOs vos, VOGroups vogroup, SubmitHosts submithost WHERE SiteID = site.id AND GlobalUserNameID = userdn.id AND VORoleID = vorole.id AND VOID = vos.id AND VOGroupID = vogroup.id AND SubmitHostID = submithost.id; -- ----------------------------------------------------------------------------- -- View on NormalisedSummaries DROP VIEW IF EXISTS VNormalisedSummaries; CREATE VIEW VNormalisedSummaries AS SELECT UpdateTime, site.name Site, Month, Year, userdn.name GlobalUserName, vos.name VO, vogroup.name VOGroup, vorole.name VORole, submithost.name SubmitHost, Infrastructure, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NormalisedWallDuration, NormalisedCpuDuration, NumberOfJobs FROM NormalisedSummaries, Sites site, DNs userdn, VORoles vorole, VOs vos, VOGroups vogroup, SubmitHosts submithost WHERE SiteID = site.id AND GlobalUserNameID = userdn.id AND VORoleID = vorole.id AND VOID = vos.id AND VOGroupID = vogroup.id AND SubmitHostID = submithost.id; -- ----------------------------------------------------------------------------- -- View on HybridSuperSummaries -- This view excludes the normalised duration fields. DROP VIEW IF EXISTS VSuperSummaries; CREATE VIEW VSuperSummaries AS SELECT UpdateTime, site.name Site, Month, Year, userdn.name GlobalUserName, vos.name VO, vogroup.name VOGroup, vorole.name VORole, submithost.name SubmitHost, Infrastructure AS InfrastructureType, ServiceLevelType, ServiceLevel, NodeCount, Processors, EarliestEndTime, LatestEndTime, WallDuration, CpuDuration, NumberOfJobs FROM HybridSuperSummaries, Sites site, DNs userdn, VORoles vorole, VOs vos, VOGroups vogroup, SubmitHosts submithost WHERE SiteID = site.id AND GlobalUserNameID = userdn.id AND VORoleID = vorole.id AND VOID = vos.id AND VOGroupID = vogroup.id AND SubmitHostID = submithost.id; -- ----------------------------------------------------------------------------- -- View on HybridSuperSummaries -- This view excludes the ServiceLevelType and ServiceLevel fields. DROP VIEW IF EXISTS VNormalisedSuperSummaries; CREATE VIEW VNormalisedSuperSummaries AS SELECT UpdateTime, site.name Site, Month, Year, userdn.name GlobalUserName, vos.name VO, vogroup.name VOGroup, vorole.name VORole, submithost.name SubmitHost, Infrastructure, NodeCount, Processors, MIN(EarliestEndTime) AS EarliestEndTime, MAX(LatestEndTime) AS LatestEndTime, SUM(WallDuration) AS WallDuration, SUM(CpuDuration) AS CpuDuration, SUM(NormalisedWallDuration) AS NormalisedWallDuration, SUM(NormalisedCpuDuration) AS NormalisedCpuDuration, SUM(NumberOfJobs) AS NumberOfJobs FROM HybridSuperSummaries, Sites AS site, DNs AS userdn, VORoles AS vorole, VOs AS vos, VOGroups AS vogroup, SubmitHosts AS submithost WHERE SiteID = site.id AND GlobalUserNameID = userdn.id AND VORoleID = vorole.id AND VOID = vos.id AND VOGroupID = vogroup.id AND SubmitHostID = submithost.id GROUP BY SiteID, Month, Year, GlobalUserNameID, VOID, VORoleID, VOGroupID, SubmitHostId, Infrastructure, NodeCount, Processors; -- ----------------------------------------------------------------------------- -- View on HybridSuperSummaries -- useful form of data from HybridSuperSummaries -- TODO Check relevance of this view and possibly move to server-extra.sql DROP VIEW IF EXISTS VUserSummaries; CREATE VIEW VUserSummaries AS SELECT Year, Month, site.name Site, vo.name VO, dn.name GlobalUserName, vogroup.name VOGroup, vorole.name VORole, SUM(WallDuration) AS TotalWallDuration, SUM(CpuDuration) AS TotalCpuDuration, ROUND(SUM(NormalisedWallDuration) / 3600, 2) AS NormalisedWallDuration, ROUND(SUM(NormalisedCpuDuration) / 3600, 2) AS NormalisedCpuDuration, SUM(NumberOfJobs) AS TotalNumberOfJobs, MIN(EarliestEndTime) as EarliestEndTime, MAX(LatestEndTime) as LatestEndTime FROM HybridSuperSummaries summary INNER JOIN Sites site ON site.id=summary.SiteID INNER JOIN VOs vo ON summary.VOID = vo.id INNER JOIN DNs dn ON summary.GlobalUserNameID = dn.id INNER JOIN VOGroups vogroup ON summary.VOGroupID = vogroup.id INNER JOIN VORoles vorole ON summary.VORoleID = vorole.id GROUP BY summary.SiteID, summary.VOID, summary.GlobalUserNameID, summary.VOGroupID, summary.VORoleID, summary.Year, summary.Month ORDER BY NULL; -- ----------------------------------------------------------------------------- -- View on JobRecords DROP VIEW IF EXISTS VJobRecords; CREATE VIEW VJobRecords AS SELECT UpdateTime, site.name Site, subhost.name SubmitHost, machine.name MachineName, queue.name Queue, LocalJobId, LocalUserId, userdn.name GlobalUserName, FQAN, vos.name VO, vogroup.name VOGroup, vorole.name VORole, WallDuration, CpuDuration, Processors, NodeCount, StartTime, EndTime, InfrastructureDescription, InfrastructureType, MemoryReal, MemoryVirtual, ServiceLevelType, ServiceLevel FROM JobRecords, Sites site, SubmitHosts subhost, MachineNames machine, Queues queue, DNs userdn, VORoles vorole, VOs vos, VOGroups vogroup WHERE SiteID = site.id AND SubmitHostID = subhost.id AND MachineNameID = machine.id AND QueueID = queue.id AND GlobalUserNameID = userdn.id AND VORoleID = vorole.id AND VOID = vos.id AND VOGroupID = vogroup.id; -- ----------------------------------------------------------------------------- -- View on SyncRecords DROP VIEW IF EXISTS VSyncRecords; CREATE VIEW VSyncRecords AS SELECT UpdateTime, site.name Site, subhost.name SubmitHost, NumberOfJobs, Month, Year FROM SyncRecords, Sites site, SubmitHosts subhost WHERE SiteID = site.id AND SubmitHostID = subhost.id;
INSERT INTO projected_credits ( map_unit_id, map_unit_area, proj_breed_ss, proj_breed_ls, proj_breed_score, proj_breed_facres, proj_summer_ss, proj_summer_ls, proj_summer_score, proj_summer_facres, proj_winter_ss, proj_winter_ls, proj_winter_score, proj_winter_facres, proj_breed_delta, proj_summer_delta, proj_winter_delta, proj_mgmt_mult, proj_meadow_mult, proj_breed_credits, proj_summer_credits, proj_winter_credits, proj_credited_habitat, proj_credits, proj_reserve_pct, proj_reserve, proj_sale_credits) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
ALTER TABLE A_TABLE ADD PRIMARY KEY PK_A_TABLE ( A_ID ); ALTER TABLE A_TABLE CHANGE A_ID A_ID BIGINT NOT NULL COMMENT 'A_ID' AUTO_INCREMENT;
<filename>11/debian-10/postgresql-repmgr-11.11.0-15-linux-amd64-debian-10/files/postgresql/share/extension/repmgr--5.0--5.1.sql -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION repmgr" to load this file. \quit DROP FUNCTION am_bdr_failover_handler(INT); DROP FUNCTION unset_bdr_failover_handler();
<reponame>gopalramadugu/obevo<gh_stars>100-1000 CREATE SEQUENCE MYSEQ2 MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE NOKEEP NOSCALE GLOBAL GO
\pset format unaligned \pset footer off \set VERBOSITY terse create schema arctest; set datestyle = 'ISO'; create extension pgparts with schema arctest; create table at ( id serial primary key, day date not null, data text); -- Create some partitions and data select arctest.setup('at', 'day', 'monthly'); select arctest.create_for('at', '2017-01-10'); select arctest.create_for('at', '2017-02-10'); select arctest.create_for('at', '2017-03-10'); insert into at (day) values ('2017-01-10'); insert into at (day) values ('2017-02-10'); -- Must create the archive before select arctest.archive_before('at', '2017-02-15'); select arctest.archive_partition('at_201701'); select arctest.create_archive('at'); select * from at order by id; select * from at_all order by id; select * from at_archived order by id; -- Idempotent select arctest.create_archive('at'); select * from at order by id; select * from at_all order by id; select * from at_archived order by id; -- Archiving partitions select arctest.archive_before('at', '2017-02-01'); select * from arctest.info('at', '2017-01-15'); select * from arctest.info('at', '2017-02-15'); select * from at order by id; select * from at_all order by id; select * from at_archived order by id; -- Archived partition can't receive data insert into at (day) values ('2017-01-10'); insert into at (day) values ('2017-02-10'); select * from at order by id; select * from at_all order by id; select * from at_archived order by id; -- Can't re-create an archived partition select arctest.create_for('at', '2017-01-10'); -- Archived partition can be unarchived select arctest.unarchive_partition('at_201701'); select arctest.unarchive_partition('at'); select arctest.unarchive_partition('at_201702'); select * from arctest.info('at', '2017-01-15'); select * from arctest.info('at', '2017-02-15'); -- Unarchived partition can receive data insert into at (day) values ('2017-01-10'); insert into at (day) values ('2017-02-10'); select * from at order by id; select * from at_all order by id; select * from at_archived order by id; -- Can archive a specific partition select arctest.archive_partition('at_201701'); insert into at (day) values ('2017-01-11'); insert into at (day) values ('2017-02-11'); select tableoid::regclass, * from at order by id; select arctest.archive_partition('at'); select arctest.archive_partition('at_201701'); -- Archived partitions don't mess with the dropold option create table arcdroptbl ( id serial primary key, day date not null, data text); select arctest.setup('arcdroptbl', 'day', 'monthly', '{{drop_old,true}}'); select arctest.create_for('arcdroptbl', '2017-01-10'); select arctest.create_for('arcdroptbl', '2017-02-10'); insert into arcdroptbl (day) values ('2017-01-10'); insert into arcdroptbl (day) values ('2017-02-10'); select arctest.create_archive('arcdroptbl'); select arctest.archive_before('arcdroptbl', '2017-02-01'); insert into arcdroptbl (day) values ('2017-01-11'); -- discarded insert into arcdroptbl (day) values ('2017-02-11'); select tableoid::regclass, * from arcdroptbl_all order by id; drop extension pgparts;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 11, 2022 at 02:42 PM -- Server version: 10.4.21-MariaDB -- PHP Version: 8.0.10 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: `letusstore` -- -- -------------------------------------------------------- -- -- Table structure for table `about_ceo` -- CREATE TABLE `about_ceo` ( `ac_id` int(11) NOT NULL, `ac_title` varchar(255) NOT NULL, `ac_image` varchar(255) NOT NULL, `ac_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `about_ceo` -- INSERT INTO `about_ceo` (`ac_id`, `ac_title`, `ac_image`, `ac_desc`) VALUES (56, 'About The CEO', 'uploads/about_ceo/file_610939ad2b1af1627994541.jpg', '<NAME> is the CEO of Let Us Store, a Let Us Store facility with two state-of-the-art facilities in Noida, Gurugram and plans to expand into PAN India.\r\n\r\nJames has a Ph.D. in Analytical Chemistry from the University of California, Davis, and has worked in the pharmaceutical sector in Canada. After living in multiple countries in North America, the Middle and the Far East, he moved to New Delhi in 2012; however, settling in and growing roots seemed like a challenging task.'), (57, 'The new direction:', 'uploads/about_ceo/file_610939dae152c1627994586.jpg', 'He decided to take matters into her own hands and start a Let Us Store facility. He had her storage issues to resolve and was sure that other expatriates and non-resident Indians who were coming back to India had them too.\r\n\r\nThus started another new phase - getting a business off the ground as a woman in India. The initial days were challenging. The men he dealt with didn\'t take her seriously and insisted on doing things their set way. He soon realized that he would have to practice putting her foot down; or else her vision wouldn\'t come to life.\r\n\r\nHe also realized the nature of the market he was currently dealing with: a population made up of hoarders who preferred to store things at their own homes or with family members until they reached a breaking point. Changing the majority population\'s mindset was going to be difficult. In a metropolis like Delhi, <NAME> had anticipated that Let Us Store facilities would soon be required.'), (58, 'The 6 Demand Drivers are:', 'uploads/about_ceo/file_61093a07418971627994631.jpg', 'Density - leading to an increase in rent\r\n\r\nDownsizing - moving into a smaller home due to retirement, an empty nest, or an ability to pay current rent or mortgage\r\n\r\nDislocation - due to marriage, for a new job, taking a gap year or renovating\r\n\r\nDivorce- moving stuff into one place until problems have been sorted out\r\n\r\nDisaster- building back a life while storing the remaining belongings at a temporary facility\r\n\r\nDeath- because family members need time to sort through their loved one\'s belongings while grieving\r\n\r\nAware of the presence of these six demand drivers in the capital city of Delhi, he forged ahead and brought her idea to life. The design has now manifested into two locations in the Delhi-NCR region and is all set to grow in other Indian cities as well.\r\n\r\nWith a keen eye for the needs of the people combined with her international exposure and business acumen, <NAME> is confident that Let Us Store will grow onto become the answer that no one was seeking but everyone needed in India.'); -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `admin_id` int(11) NOT NULL, `admin_name` varchar(255) NOT NULL, `admin_password` varchar(255) NOT NULL, `admin_session_key` varchar(255) NOT NULL, `admin_remember_me_token` varchar(255) DEFAULT NULL, `admin_public_ip` varchar(255) DEFAULT NULL, `admin_lockscreen` tinyint(1) DEFAULT 0 COMMENT '0 - false, 1- true', `admin_img` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`admin_id`, `admin_name`, `admin_password`, `admin_session_key`, `admin_remember_me_token`, `admin_public_ip`, `admin_lockscreen`, `admin_img`) VALUES (1, 'admin', '$2y$10$zZiRls6uP9NbdJsrFcasyOjmy7.bM/d1KcCmBRvg.Dvb0tiRSWC3G', 'iAmAuthAdmin', '15e068459ce7961efe0480fbaaadcf32debe1e3e', '::1', 0, 'http://localhost/portfolio/uploads/admin_image/profileImage07092019023233716.jpg'); -- -------------------------------------------------------- -- -- Table structure for table `banner_image` -- CREATE TABLE `banner_image` ( `bi_id` int(11) NOT NULL, `bi_image` varchar(255) DEFAULT NULL, `bi_image_page` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `banner_image` -- INSERT INTO `banner_image` (`bi_id`, `bi_image`, `bi_image_page`) VALUES (38, 'uploads/banner_image/file_61dc04cbe492a1641809099.jpg', 'warehouse'), (39, 'uploads/banner_image/file_61dc0df2c90d61641811442.jpg', 'shed'), (40, 'uploads/banner_image/file_61dc1120e99d41641812256.jpg', 'rcc'), (41, 'uploads/banner_image/file_61dc12c2a52481641812674.jpg', 'bts'), (46, 'uploads/banner_image/file_61dc1eb23408b1641815730.jpg', 'land'), (47, 'uploads/banner_image/file_61dc1f1ce564c1641815836.jpg', 'three_pl'), (48, 'uploads/banner_image/file_61dc1f30dd0701641815856.jpg', 'waste_management'), (49, 'uploads/banner_image/file_61dc2ba499b2f1641819044.jpg', 'manpower'), (50, 'uploads/banner_image/file_61dc2bbc9002f1641819068.jpg', 'loaders'), (51, 'uploads/banner_image/file_61dc2be78621f1641819111.jpg', 'pickers_and_packers'), (52, 'uploads/banner_image/file_61dc2c109ff091641819152.jpg', 'security'), (62, 'uploads/banner_image/file_61dc2d193a0831641819417.jpg', 'deo'), (63, 'uploads/banner_image/file_61dc2d498bc901641819465.jpg', 'supervisor'), (64, 'uploads/banner_image/file_61dc2d7c68e301641819516.jpg', 'material_handling'), (66, 'uploads/banner_image/file_61dc2e078c2d51641819655.jpg', 'forklift'), (67, 'uploads/banner_image/file_61dc2e2f5ee7a1641819695.jpg', 'clamper'), (68, 'uploads/banner_image/file_61dc2e48260ef1641819720.jpg', 'hpt'), (69, 'uploads/banner_image/file_61dc2e5f61b9a1641819743.jpg', 'stackers'), (70, 'uploads/banner_image/file_61dc2e5f9bb251641819743.jpg', 'stackers'), (71, 'uploads/banner_image/file_61dc2e77426c31641819767.png', 'technology'), (72, 'uploads/banner_image/file_61dc2e9add7071641819802.jpg', 'hardware'), (73, 'uploads/banner_image/file_61dc2eb87f1251641819832.png', 'software'), (74, 'uploads/banner_image/file_61dc2ed8d3a871641819864.jpg', 'distribution_services'), (75, 'uploads/banner_image/file_61dc2ef5e18b01641819893.jpg', 'primary_service'), (76, 'uploads/banner_image/file_61dc2f0bf13591641819915.jpg', 'secondary_service'), (77, 'uploads/banner_image/file_61dc2f355acaa1641819957.jpg', 'd2c_services'), (78, 'uploads/banner_image/file_61dd642d0c0111641899053.png', 'terms-and-conditions'), (79, 'uploads/banner_image/file_61dd64c71c9be1641899207.jpg', 'privacy-policy'), (80, 'uploads/banner_image/file_61dd836e02bce1641907054.jpg', 'investor'); -- -------------------------------------------------------- -- -- Table structure for table `benefits` -- CREATE TABLE `benefits` ( `benefit_id` int(11) NOT NULL, `benefit_title` varchar(255) NOT NULL, `benefit_image` varchar(255) NOT NULL, `benefit_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `benefits` -- INSERT INTO `benefits` (`benefit_id`, `benefit_title`, `benefit_image`, `benefit_desc`) VALUES (56, 'About The CEO', 'uploads/about_ceo/file_610939ad2b1af1627994541.jpg', '<NAME> is the CEO of Let Us Store, a Let Us Store facility with two state-of-the-art facilities in Noida, Gurugram and plans to expand into PAN India.\r\n\r\nJames has a Ph.D. in Analytical Chemistry from the University of California, Davis, and has worked in the pharmaceutical sector in Canada. After living in multiple countries in North America, the Middle and the Far East, he moved to New Delhi in 2012; however, settling in and growing roots seemed like a challenging task.'), (57, 'The new direction:', 'uploads/about_ceo/file_610939dae152c1627994586.jpg', 'He decided to take matters into her own hands and start a Let Us Store facility. He had her storage issues to resolve and was sure that other expatriates and non-resident Indians who were coming back to India had them too.\r\n\r\nThus started another new phase - getting a business off the ground as a woman in India. The initial days were challenging. The men he dealt with didn\'t take her seriously and insisted on doing things their set way. He soon realized that he would have to practice putting her foot down; or else her vision wouldn\'t come to life.\r\n\r\nHe also realized the nature of the market he was currently dealing with: a population made up of hoarders who preferred to store things at their own homes or with family members until they reached a breaking point. Changing the majority population\'s mindset was going to be difficult. In a metropolis like Delhi, <NAME> had anticipated that Let Us Store facilities would soon be required.'), (58, 'The 6 Demand Drivers are:', 'uploads/about_ceo/file_61093a07418971627994631.jpg', 'Density - leading to an increase in rent\r\n\r\nDownsizing - moving into a smaller home due to retirement, an empty nest, or an ability to pay current rent or mortgage\r\n\r\nDislocation - due to marriage, for a new job, taking a gap year or renovating\r\n\r\nDivorce- moving stuff into one place until problems have been sorted out\r\n\r\nDisaster- building back a life while storing the remaining belongings at a temporary facility\r\n\r\nDeath- because family members need time to sort through their loved one\'s belongings while grieving\r\n\r\nAware of the presence of these six demand drivers in the capital city of Delhi, he forged ahead and brought her idea to life. The design has now manifested into two locations in the Delhi-NCR region and is all set to grow in other Indian cities as well.\r\n\r\nWith a keen eye for the needs of the people combined with her international exposure and business acumen, <NAME> is confident that Let Us Store will grow onto become the answer that no one was seeking but everyone needed in India.'); -- -------------------------------------------------------- -- -- Table structure for table `bike_storage` -- CREATE TABLE `bike_storage` ( `bks_id` int(11) NOT NULL, `bks_title` varchar(255) NOT NULL, `bks_image` varchar(255) NOT NULL, `bks_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `bike_storage` -- INSERT INTO `bike_storage` (`bks_id`, `bks_title`, `bks_image`, `bks_desc`) VALUES (54, 'Bike Storage', 'uploads/bike_storage/file_610a8b133d45d1628080915.jpg', 'The street isn’t the best place to store your bike. Someone could steal your precious possession, or overexposure to outside weather can damage it profusely. Rather than leave your motorcycle unattended on the street, a wiser decision would be to keep it safely at a Let Us Storewarehouse.'), (55, 'Why Bike Storage with us', '', 'Let Us Store’s Bike Storage facility is ideal not just to keep your motorcycle but also accessories like helmets, jackets, and much more. An ideal storage area for one bike is 50 Sq ft, but if you want to keep more belongings, our larger sized units can accommodate your needs.\r\n\r\nFor safety, we do not permit the storage of inflammable items. Before moving in, we require you to empty your fuel tank. As a precautionary measure, we also request you to pull out your battery to prevent it from discharging and depleting, overinflate the tires or prop it on the center stand, put a tarp or sheet over it to avoid dust and settlements, and cover the exhaust pipe.\r\n\r\nOur storage rooms are also convenient for cycle enthusiasts. Instead of exposing your bike to harsh weather as well as unwanted attention from birds, lock it up safely in our Let Us Store unit. Our advice is to inflate your tire to prevent dead spots and lubricate the cables before you leave. Additionally, bike hooks can be another great option to prop it on the wall. Not only do they prevent the dead spot but also clear out space for other items.'); -- -------------------------------------------------------- -- -- Table structure for table `blogs` -- CREATE TABLE `blogs` ( `blog_id` int(11) NOT NULL, `blog_title` varchar(255) NOT NULL, `blog_image` varchar(255) NOT NULL, `blog_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `blogs` -- INSERT INTO `blogs` (`blog_id`, `blog_title`, `blog_image`, `blog_desc`) VALUES (61, 'Benefits of storing your bike in Let Us Store’s Bike Storage Facility', 'uploads/blogs/file_610a4687770281628063367.jpg', ''), (62, 'How box storage can make more space for your needs', 'uploads/blogs/file_610a46c2615381628063426.jpg', ''), (63, 'Preserving Your Comic Collection With Let Us Store', 'uploads/blogs/file_610a470d354551628063501.jpg', ''), (64, 'How Let Us Store can Help You in the New Covid-19 Reality', 'uploads/blogs/file_610a4728972f91628063528.png', ''), (67, 'Company Profile 1sdfsdafas', 'uploads/blogs/file_611656c3db3051628853955.png', ''); -- -------------------------------------------------------- -- -- Table structure for table `box_storage` -- CREATE TABLE `box_storage` ( `bs_id` int(11) NOT NULL, `bs_title` varchar(255) NOT NULL, `bs_image` varchar(255) NOT NULL, `bs_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `box_storage` -- INSERT INTO `box_storage` (`bs_id`, `bs_title`, `bs_image`, `bs_desc`) VALUES (58, 'Box Storage', 'uploads/box_storage/file_610a76ac5c6951628075692.jpg', 'Unused items in our homes or offices tend to make their way into boxes that then take up valuable living space. Instead of stacking boxes in the corners of your rooms or against the walls, why not get yourself a dedicated box storage unit? It is convenient and handy when it comes to figuring out a way to store them till the time you need them back.\r\n\r\nOur homes tend to see a lot of movement over time. As more things come into our possession, the easiest way to make way is by collecting all the older items in boxes and keeping them away. Not only do these start accumulating over time, but they also create a hindrance to normal life. They also take away the beauty of your home aesthetic. This is where Let Us Store can ease things for you.\r\n\r\nYou might wonder what exactly is box storage, and why should it matter to me? Imagine this. What if your home could be clear of all those filled up boxes that have been piling up? Wouldn’t it be more spacious and clean? What if you could find a way to safely store your boxes safely and access them when you like?\r\n\r\nNow that we’ve got your interest, let’s introduce you to Let Us Store. As India’s oldest and leading provider of Let Us Store service, we are the name you can bank upon when it comes to storage. If you need a unit to place your parcels, we have enough space in our Noida and Gurugram warehouses.\r\n\r\nOur box storage units are ideal if you wish to keep boxes. Customers generally bring boxes of old antiques, festive or decorate items, old and unused toys, precious gifts, extra appliances or equipment, old files and folders, extra office stationery, etc. However, it’s upon you to decide what you want to keep. All we request is that you do not store any perishable or inflammable items.'), (59, 'Let Us Store’s Box Storage', '', 'When you rent a unit with us, you get access to 3 feet x 3 feet of storage area. This space is enough to store anywhere between five to 15 boxes of varying sizes. You can check out the room and accordingly decide what kind of boxes you would like to keep.\r\n\r\nWith the right stacking techniques, you will be able to make the most of the unit. Most people tend to store things horizontally, but you can expand your storage size to include more boxes by using vertical stacking methods.'), (60, '', 'uploads/box_storage/file_610a7e5f81da51628077663.jpg', '1. Place heavy boxes at the bottom\r\nWeigh all the boxes you have and ensure that the heaviest ones stay at the bottom. Then arrange the rest in descending order of weight with the lightest on the top. If you keep heavier boxes above the lighter ones, the ones below will get crushed by the weight. If you’ve got expensive or delicate items in the lower compartments, you are risking damage too.\r\n\r\n2.The correct height\r\nNow that the heavy boxes at the bottom and the light ones on top, you may be tempted to keep going as high as possible. Know that you could damage the heavy boxes at the bottom if you stack more than eight feet tall. If you stack any higher than that, the tower of boxes could come crashing down.'), (61, '', 'uploads/box_storage/file_610a7ea5cc2111628077733.jpg', '3.Keep the corners empty\r\nWe know it can be tempting to use up every inch of your storage space. But for your benefit, it’s better to keep the corners clear of anything. This will ensure that you have room to walk around and shift the boxes if you need to readjust.\r\n\r\n4.Use boxes of only two sizes\r\nWhile you can keep boxes of any size, to make the most of stacking, using just two sizes is ideal. Not only will your corners be aligned, but they will also bear the weight equally. You can use towels and newspapers inside boxes to secure the items.'); -- -------------------------------------------------------- -- -- Table structure for table `bts` -- CREATE TABLE `bts` ( `b_id` int(11) NOT NULL, `b_title` varchar(255) NOT NULL, `b_image` varchar(255) NOT NULL, `b_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `bts` -- INSERT INTO `bts` (`b_id`, `b_title`, `b_image`, `b_desc`) VALUES (117, 'BTS', 'uploads/bts/file_61dc3946b78cb1641822534.jpg', 'We understand that every client is different and has different needs. So, we offer our BTS service where we construct the warehouse that is exactly suitable for your business needs. Based on the clients\' requirements, we develop a warehouse that perfectly accommodates a client’s business.'); -- -------------------------------------------------------- -- -- Table structure for table `chennai` -- CREATE TABLE `chennai` ( `c_id` int(11) NOT NULL, `c_title` varchar(255) NOT NULL, `c_image` varchar(255) NOT NULL, `c_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `chennai` -- INSERT INTO `chennai` (`c_id`, `c_title`, `c_image`, `c_desc`) VALUES (60, 'Chennai', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Pune.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Pune. The first Let Us Store in Chennaiwas set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Pune. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Pune can find a solution within our range of over 400 Let Us Store rooms.'), (61, 'Locations of Let Us Store in Chennai', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Pune region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Pune will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Pune is your perfect choice.'); -- -------------------------------------------------------- -- -- Table structure for table `clamper` -- CREATE TABLE `clamper` ( `c_id` int(11) NOT NULL, `c_title` varchar(255) NOT NULL, `c_image` varchar(255) NOT NULL, `c_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `clamper` -- INSERT INTO `clamper` (`c_id`, `c_title`, `c_image`, `c_desc`) VALUES (117, 'Clamper', 'uploads/clamper/file_61dd13e0c9b3b1641878496.jpg', 'It is a forklift attachment device that attaches to a forklift It may be used to carry and pick up box-shaped loads. Clamp handling saves time by reducing human effort and allowing for faster loading and unloading of trucks. These cargoes, which are usually floor loaded and consolidated, are either manually emptied by hand, which is a time-consuming procedure or mechanically unloaded by a clamp truck. We also provide good quality clampers in terms of hardware for warehouse management.'); -- -------------------------------------------------------- -- -- Table structure for table `contact_us` -- CREATE TABLE `contact_us` ( `cu_id` int(11) NOT NULL, `cu_address` varchar(255) NOT NULL, `cu_phone` varchar(255) NOT NULL, `cu_email` varchar(255) NOT NULL, `cu_working_hours` varchar(100) NOT NULL, `cu_brochure` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `contact_us` -- INSERT INTO `contact_us` (`cu_id`, `cu_address`, `cu_phone`, `cu_email`, `cu_working_hours`, `cu_brochure`) VALUES (86, '<ul>\r\n <li>Mundka </li>\r\n <li>Delhi-110081</li>\r\n</ul>\r\n', '9810298454|9888863160', '<EMAIL>', 'Monday-Friday\r\n09:00Am- 06:00Pm', ''); -- -------------------------------------------------------- -- -- Table structure for table `corpoate_responsibility_initiative` -- CREATE TABLE `corpoate_responsibility_initiative` ( `cri_id` int(11) NOT NULL, `cri_title` varchar(255) NOT NULL, `cri_image` varchar(255) NOT NULL, `cri_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `corpoate_responsibility_initiative` -- INSERT INTO `corpoate_responsibility_initiative` (`cri_id`, `cri_title`, `cri_image`, `cri_desc`) VALUES (64, 'Corporate Responsibility Initiative', 'uploads/corpoate_responsibility_initiative/file_61094530f123e1627997488.png', 'The environment needs the attention of humans today. As a responsible company, Let Us Store is committed to creating a better environment and a better world for the future. Corporate Responsibility Initiative is one of our key areas to ensure that we are contributing positively to the world we live in. Our company takes pride in being cautious about the impact we have on the environment. Our company leaders actively work to ensure that we leave a positive footprint behind us.'), (65, 'Corporate Responsibility Initiative Philosophy', 'uploads/corpoate_responsibility_initiative/file_6109454b8652e1627997515.png', 'At Let Us Store, we believe that it is each individual and company’s duty to make positive contributions to society. Our philosophy is to create more space in your homes and offices by offering a convenient storage alternative at our warehouses. Similarly, our environmental CRI initiatives are geared towards creating a healthier atmosphere.\r\n\r\nAdditionally, we also work with partners who have dedicated themselves to the cause of creating a better environment. Over the course of our company’s progress, we aim to:\r\n\r\nContribute to activities that can benefit the society and community\r\n\r\nPlan and execute more efficient CRI initiatives\r\n\r\nAlign our CRI activities with local laws\r\n\r\nCreate a positive change in the mindset of our employees as well as surroundings'), (66, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (67, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (68, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (69, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (70, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (71, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (72, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (73, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (74, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (75, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (76, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (77, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (78, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', '', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (79, 'Environmental Corporate Responsibility Initiative (CRI) Initiatives', 'uploads/corpoate_responsibility_initiative/file_6109463b7aebf1627997755.jpg', 'One Plant for Every Room Rented\r\nBoth our warehouses are currently located around New Delhi. The city ranks as one of the most polluted cities in the world and needs urgent care. Hence, as our way to make the city better, we decided that for every room taken on rent, Let Us Store will contribute one plant in our surroundings. This will be undertaken by the company and the client will not be charged anything for it.'), (80, 'Creatives for Air Pollution', '', 'Care for Air is a not-for-profit organization that aims to create awareness about air pollution. Let Us Store partnered with Care for Air in its endeavor to spread the message about rising air pollution and ways to tackle it. Care for Air undertakes creative, awareness-building strategies. Let Us Store provided the NGO with creatives that can help its progress. These were targeted to New Delhi in order to address the city’s need to be free of pollution.'), (81, 'Creatives for Air Pollution', 'uploads/corpoate_responsibility_initiative/file_610946a6ca24d1627997862.jpg', 'Care for Air is a not-for-profit organization that aims to create awareness about air pollution. Let Us Store partnered with Care for Air in its endeavor to spread the message about rising air pollution and ways to tackle it. Care for Air undertakes creative, awareness-building strategies. Let Us Store provided the NGO with creatives that can help its progress. These were targeted to New Delhi in order to address the city’s need to be free of pollution.'), (83, 'CRI', 'uploads/corpoate_responsibility_initiative/file_611b5e39b5ae01629183545.jpg', ''); -- -------------------------------------------------------- -- -- Table structure for table `covid_precautions` -- CREATE TABLE `covid_precautions` ( `cp_id` int(11) NOT NULL, `cp_title` varchar(255) NOT NULL, `cp_image` varchar(255) NOT NULL, `cp_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `covid_precautions` -- INSERT INTO `covid_precautions` (`cp_id`, `cp_title`, `cp_image`, `cp_desc`) VALUES (78, 'Covid-19 Precautionary Measures', '', 'The Covid-19 pandemic has thrown life out of gear for everyone in this world. Now, more than ever, the health and wellness of everyone are of utmost priority. As a responsible company committed to the welfare of the country, and to serve our customers, Let Us Store has been carefully monitoring and tracking the Covid-19 situation. We have taken the utmost care at our facilities and have been active in providing preventive measures right from the beginning of lockdown.\r\n\r\nSocial distancing, sanitation, hygiene, and no-contact methods are now essential aspects of everyone’s lives. Now is the time when not just individuals but also companies step up their act to ensure that guidelines from the World Health Organization (WHO) as well as government and public health authorities are followed.\r\n\r\nWe realize the seriousness of the situation and understand that many of our customers and those in the supply chain may be impacted because of the outcome of Covid-19. However, we would like to reassure you that Let Us Store has been at the front of ensuring that every guideline and precautionary measure is being actively taken and provided. As and when the guidelines change, we ensure that we comply with all necessary requirements.'), (85, 'Message from the CEO - <NAME>', 'uploads/covid_precautions/file_610a6329dface1628070697.jpg', '“These are definitely unprecedented times. As much as you are anxious about the pandemic, we are also deeply troubled by it. But, we want you to know that we are with you through this. No matter what worry you may have, we are here to help you. Difficult times come and go, but human relations are what last. For us, our relation with our customers and employees is of utmost importance. We shall get through this, too, together and emerge successful on the other side.\r\n\r\n“We would like to ease your worries by providing our customers and partners with an update on what we have been doing.”'), (86, 'Steps taken to Support Employees', '', 'Our employees are the core of what makes Let Us Store run effortlessly. All employees are our family. There is no compromise in their physical and psychological health. Therefore, our first step was to ensure that their health and safety is given top priority. Everyone has been asked to work from home and minimize their outdoor activities.\r\n\r\nWe regularly get updates from our employees regarding their health, safety, and whether they have enough food in stock. Additionally, there are frequent sessions where we talk to them individually to understand the state of their mind and allay any fears they may have about the ongoing crisis or the company.\r\n\r\nThose stationed at the warehouses have to undergo frequently use hand sanitizer or washing their hands with soap for at least 20 seconds, wear a mask at all times as well as maintaining distance from other employees. We’ve also taken special care to ensure that not too many people are present at once. A shift system has been put in place to maintain an adequate time gap between people. The warehouses are also sanitized regularly to ensure hygiene levels are maintained.\r\n\r\nThis is an unprecedented situation, and everyone is in it together. This is the time to show love and support.'), (87, 'Extra Care for Customers', '', 'It is natural that you would hesitate to undertake a visit. But, we would like to assure you that your safety and requirements are at the forefront right now. All our resources have been re-aligned to ensure that proper hygiene and cleanliness are undertaken at all places in the warehouse.\r\n\r\nOur clients are an integral part of the Let Us Store family too. As per government instructions, our warehouse will open for clients. Whenever a customer would like to visit his or her storage room or locker, there will be a thorough process followed.\r\n\r\nWhenever a customer shows his interest in visiting his unit, a sanitization process is undertaken before the visit. Once he has concluded his visit, a secondary sanitation process takes place. This process is religiously followed for every customer, with no exceptions. We have put in place dedicated staff to take care of the hygiene of the whole area.\r\n\r\nWe would also request you to adhere to our protocols and come prepared when you pay a visit. This includes wearing a mask at all times when you are on the premises and sanitizing your hands. When you encounter another member on the premises, we advise you to keep a distance of two meters from them. If you feel unwell or have cough or difficulty breathing, we advise you to stay home rather than coming to the warehouse.\r\n\r\nWe are as committed to keeping you safe, healthy, and content as you are. That is why, during these difficult times, the company is taking extra steps so that no customer is inconvenienced or finds any fault in our sanitization process. We assure you that there isn’t any need to fear.\r\n\r\nAs far as the warehouse premises are concerned, the hygiene process that we follow ensures that every corner of the place is well cleaned with a disinfectant. This especially includes places that may be frequently visited or touched, such as doorknobs, handles, lifts, staircases, etc.'), (88, 'Contactless Move-In Facility Available', 'uploads/covid_precautions/file_610a63b26478a1628070834.jpg', 'There is, of course, certain anxiety in stepping out of the home, and we understand that. That is why there is no need to pay a visit unless it is absolutely urgent. Our contactless move-in facility can be availed if you’re looking to shift something to our storage room. In this way, you can stay safe inside your home and still look for options.\r\n\r\nYou can email us or call us for reservations, book and make payments online, and even speak to the manager over call in case you have any queries. If you’re looking to shift something into a Let Us Store facility, you have to merely opt for one of these options and book your place. You can simply skip the hassle of visiting the counter at our office or at the warehouse.\r\n\r\nOur pick-up and drop-off facility may also be available. We request our customers to check in with the company representatives to clarify working hours, availability of staff, as well as other service requirements before they pay a visit. Online payments are highly encouraged since it minimizes the need to visit the ATM and withdraw money as well as come into contact with someone else by travelling to make the payment.\r\n\r\nThis will ensure that all your demands are met without having to leave your home and without interacting with any other person. It is important that each one of us takes as much effort as we can to maintain social distancing and keep away from public places.\r\n\r\nWe do request that our customers bear with us. Working with a reduced staff may lead to a slight delay in our responses, but we will ensure we connect with you as soon as possible.\r\n\r\nIf you have any other questions, you can even reach out to us via one of our social media handles. We will continue to monitor the progress of the pandemic. Our safety and hygiene requirements will also be updated as and when we get instructions from health authorities.\r\n\r\nWe request everyone who visits our warehouse to please cooperate with the Let Us Store staff for all necessary checks and follow our protocols. This is for the benefit of everyone involved. It may feel like a hassle but it is crucial that these important steps are not ignored. All our staff and employees have been trained to understand the situation, and accordingly act and behave with customers.\r\n\r\nMost importantly, we urge you to stay calm, stay safe, practice good hygiene habits, maintain social distancing and lockdown rules, keep away from outdoor activities as much as possible, and play your best role in ensuring this pandemic is brought into control. A little precaution can go a long way in staying healthy and safe.'), (90, 'Covid Precautions', '', '<p>saldjflsdjslfjsdlfsdafsdafasdf</p>'), (91, 'Covid Precautions 2', 'uploads/covid_precautions/file_611b5e29787101629183529.jpg', '<p>safasdfas</p>\r\n'); -- -------------------------------------------------------- -- -- Table structure for table `d2c_services` -- CREATE TABLE `d2c_services` ( `d_id` int(11) NOT NULL, `d_title` varchar(255) NOT NULL, `d_image` varchar(255) NOT NULL, `d_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `d2c_services` -- INSERT INTO `d2c_services` (`d_id`, `d_title`, `d_image`, `d_desc`) VALUES (117, 'D2C Services', 'uploads/d2c_services/file_61dd1dad888cc1641881005.jpg', 'D2C Services (DIRECT-TO-CUSTOMER) helps our customers with\r\n• Increased control over brand messaging and consumer engagement.\r\n• Direct access to customers and their data.\r\n• Gain higher margins.\r\n• Stronger brand loyalty.\r\n• Expands market opportunities.'); -- -------------------------------------------------------- -- -- Table structure for table `delhi_mundka` -- CREATE TABLE `delhi_mundka` ( `dm_id` int(11) NOT NULL, `dm_title` varchar(255) NOT NULL, `dm_image` varchar(255) NOT NULL, `dm_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `delhi_mundka` -- INSERT INTO `delhi_mundka` (`dm_id`, `dm_title`, `dm_image`, `dm_desc`) VALUES (60, 'Delhi-Mundka', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Delhi.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Delhi. The first Let Us Store in Delhi-Mundka was set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Delhi. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Delhi can find a solution within our range of over 400 Let Us Store rooms.'), (61, 'Locations of Let Us Store in Delhi-Mundka', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Delhi region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Delhi will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Delhi is your perfect choice.'), (62, 'sdfsdf', 'uploads/delhi_mundka/file_610cc7e3e072f1628227555.png', 'sadff'), (64, 'Delhi Mundka', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `deo` -- CREATE TABLE `deo` ( `d_id` int(11) NOT NULL, `d_title` varchar(255) NOT NULL, `d_image` varchar(255) NOT NULL, `d_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `deo` -- INSERT INTO `deo` (`d_id`, `d_title`, `d_image`, `d_desc`) VALUES (117, 'Data Entry Operators(DEO)', 'uploads/deo/file_61dd33a5a27a41641886629.jpg', 'DEO’s have a vital role in the organization since they prepare the day\'s schedule, assign work to workers, and monitor their progress. We provide professional staff especially for DEO so that inaccuracies should not create any problem in the smooth functioning of a warehouse.'); -- -------------------------------------------------------- -- -- Table structure for table `distribution_services` -- CREATE TABLE `distribution_services` ( `d_id` int(11) NOT NULL, `d_title` varchar(255) NOT NULL, `d_image` varchar(255) NOT NULL, `d_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `distribution_services` -- INSERT INTO `distribution_services` (`d_id`, `d_title`, `d_image`, `d_desc`) VALUES (117, 'Distribution Services', 'uploads/distribution_services/file_61dd1979f17b81641879929.jpg', 'Our Distribution Services encompass almost all the destinations’ network distribution for the ease of our clients. Our clients will benefit from a wide range of value-added services which include but are not limited to: stock management, bar-coding, co-packing, customization services, pricing/labelling, procurement process, trans-loading & transportation, perpetual inventory management, physical flow/goods flow analysis, post-production services, and domestic transport networks.\r\n\r\nComplete supply change management\r\nPick and Pack\r\nRepacking and other services\r\nReal time inventory visibility\r\nIn time delivery\r\nOrder fulfilment\r\nWell maintained distribution logistics\r\nQuality check and control , etc.'), (118, 'Primary Service', '', 'Our primary services consists of\r\n\r\nInterstate transportation\r\nPort to plant movement\r\nPort & terminal to interstate warehouses\r\nAbility to deploy any size of vehicle as per the consignment'), (119, 'Secondary Services', '', 'Our secondary services have\r\n\r\nPlant to distributor point.\r\nDistributor to further stockiest & retailers.\r\nWarehouse to various remote location & on site delivery.\r\nIntra circle & state transportation.\r\n'), (120, 'D2C Services', '', '(DIRECT-TO-CUSTOMER) helps our customers with\r\n\r\nIncreased control over brand messaging and consumer engagement.\r\nDirect access to customers and their data.\r\nGain higher margins.\r\nStronger brand loyalty.\r\nExpands market opportunities.'); -- -------------------------------------------------------- -- -- Table structure for table `faqs` -- CREATE TABLE `faqs` ( `f_id` int(11) NOT NULL, `f_title` varchar(255) NOT NULL, `f_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `faqs` -- INSERT INTO `faqs` (`f_id`, `f_title`, `f_desc`) VALUES (60, 'Where can I find a Let Us Store Warehouse in Delhi NCR?', 'We are conveniently located in the heart of Gurugram and Noida’s busy Business hubs'), (61, 'What is the process of renting space ?', 'We are conveniently located in the heart of Gurugram and Noida’s busy Business hubs'); -- -------------------------------------------------------- -- -- Table structure for table `forklift` -- CREATE TABLE `forklift` ( `f_id` int(11) NOT NULL, `f_title` varchar(255) NOT NULL, `f_image` varchar(255) NOT NULL, `f_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `forklift` -- INSERT INTO `forklift` (`f_id`, `f_title`, `f_image`, `f_desc`) VALUES (117, 'Forklifts ', 'uploads/forklift/file_61dd12d742b7e1641878231.jpg', 'Forklifts are used to transfer and transport large cargoes, from delivery trucks to dockside storage areas to ships. We offer forklift services for efficient warehouse management.'); -- -------------------------------------------------------- -- -- Table structure for table `gallery` -- CREATE TABLE `gallery` ( `gallery_id` int(11) NOT NULL, `gallery_image` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `gallery` -- INSERT INTO `gallery` (`gallery_id`, `gallery_image`) VALUES (60, 'uploads/gallery/file_610d31d001faa1628254672.jpg'), (61, 'uploads/gallery/file_610d31ddd099b1628254685.jpg'), (62, 'uploads/gallery/file_610d3202c146e1628254722.jpg'); -- -------------------------------------------------------- -- -- Table structure for table `goa` -- CREATE TABLE `goa` ( `g_id` int(11) NOT NULL, `g_title` varchar(255) NOT NULL, `g_image` varchar(255) NOT NULL, `g_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `goa` -- INSERT INTO `goa` (`g_id`, `g_title`, `g_image`, `g_desc`) VALUES (60, 'Goa', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Pune.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Pune. The first Let Us Store in Goa was set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Pune. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Pune can find a solution within our range of over 400 Let Us Store rooms.'), (61, 'Locations of Let Us Store in Goa', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Pune region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Pune will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Pune is your perfect choice.'); -- -------------------------------------------------------- -- -- Table structure for table `gurgaon_hondachowk` -- CREATE TABLE `gurgaon_hondachowk` ( `ghc_id` int(11) NOT NULL, `ghc_title` varchar(255) NOT NULL, `ghc_image` varchar(255) NOT NULL, `ghc_desc` text NOT NULL, `ghc_section` int(11) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `gurgaon_hondachowk` -- INSERT INTO `gurgaon_hondachowk` (`ghc_id`, `ghc_title`, `ghc_image`, `ghc_desc`, `ghc_section`) VALUES (60, 'Gurgaon- Honda chowk', '', 'Finding a spacious house around Delhi NCR is a luxury. For most, homes turn out to be small and possessions too big. But with a trustworthy Let Us Store in Gurgaon- Honda chowk, you will not have to worry at all.\r\n\r\nLet Us Stores can help you in many ways, from increasing your room area to giving you a secured location to store your items. You can store away things you do not need or even those you find too valuable to keep at home.\r\n\r\nIt is beneficial to even commercial centers or businesses that need extra storage space. An additional area can always come in handy when a business plan calls for it, whether that is a sudden demand for more items or a safe area to keep your furniture when shifting out.\r\n\r\nIf you have been looking for reliable Let Us Store in Gurgaon- Honda chowk, then look no further. Let Us Store Warehouse India can help provide you with the right solution for your problem. As India’s oldest and leading Let Us Store company, we cover the entire Delhi NCR region.', 1), (61, 'Where Can I Find a Let Us Store in Gurgaon- Honda chowk', '', 'Let Us Store Warehouse India’s Gurgaon- Honda chowk warehouse is one out of three gigantic facilities that we operate for the residents of Delhi NCR. Our immaculately clean Let Us Store in Gurgaon- Honda chowk is conveniently located close to the Wave City metro station and sits amidst Gurgaon- Honda chowk’s new abode for most businesses.', 1), (62, 'Who Can Rent a Let Us Store in Gurgaon- Honda chowk', '', 'Let Us Store are perfect for anyone looking for more storage space. You could be someone shifting homes or relocating, or renovating your office, or maybe you are just tired of things taking up excessive space in your rooms. Maybe you are now working from home and are finding it difficult to focus with clutter at home. Whatever be the case, our Let Us Store in Gurgaon- Honda chowk can help you out.\r\n\r\nIf you are a Gurgaon- Honda chowk based business or you operate in another city but need to store inventory here, our Let Us Store warehouse is ideal for your requirement. Businesses around Delhi NCR can benefit from this unit’s location and storage facilities.\r\n\r\nEven residents living in the vicinity of Delhi NCR, Faridabad, Ghaziabad, and Greater Gurgaon- Honda chowk, who are looking for extra storage space, can head to our Let Us Store unit.', 1), (63, 'Benefits of Renting a Let Us Store in Gurgaon- Honda chowk', '', 'Renting your Let Us Store unit is unlike a regular warehouse storage experience. This is your personalized space with added benefits. When you pick our Let Us Store in Gurgaon- Honda chowk, you get ample features so that you can relax peacefully.', 1), (66, 'Insurance', '', '<p>As a complimentary add-on, Let Us Store provides a complimentary insurance cover on your goods. We have tied up with National Insurance to safeguard all your goods against risks of fire, earthquake, RSMD, and burglary. This insurance cover is completely free and applies to any and every storage unit you lease.</p>', 2), (67, 'Security', '', '<p>We take the security of our customers&rsquo; units very seriously. CCTV cameras are monitoring the premises 24X7. We also have guards patrolling the area at all times.</p>', 1), (68, 'Restricted Access', '', '', 1), (69, 'Clean Premises', '', '', 2), (70, 'Other Features', '', '', 1), (71, 'Plastic Pallets', '', '', 1); -- -------------------------------------------------------- -- -- Table structure for table `hardware` -- CREATE TABLE `hardware` ( `h_id` int(11) NOT NULL, `h_title` varchar(255) NOT NULL, `h_image` varchar(255) NOT NULL, `h_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `hardware` -- INSERT INTO `hardware` (`h_id`, `h_title`, `h_image`, `h_desc`) VALUES (117, 'Coming Soon...', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `home` -- CREATE TABLE `home` ( `home_id` int(11) NOT NULL, `home_title_heading` varchar(255) NOT NULL, `home_title` varchar(255) NOT NULL, `home_image` varchar(255) NOT NULL, `home_link_name` varchar(255) NOT NULL, `home_link` varchar(255) NOT NULL, `home_desc` varchar(255) NOT NULL, `home_image_page` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `home` -- INSERT INTO `home` (`home_id`, `home_title_heading`, `home_title`, `home_image`, `home_link_name`, `home_link`, `home_desc`, `home_image_page`) VALUES (2, 'INTRODUCING WORKFLOW', 'India Best Letsusstore Facility', 'uploads/home/file_61cbf80262a8c1640757250.png', 'Benefits', 'https://theacademiz.com/letusstore/home/benefits', 'Welcome to the Letsusstore, we are the best company that offers a broad range of warehousing solutions. Right from storage to logistics and transportation, we have got you covered with our premium warehousing services especially in the metro cities which ', 'main-section'), (3, ' ', 'Thought behind Letsusstore', 'uploads/home/file_61cbf8dec54881640757470.jpg', 'Contact', 'https://theacademiz.com/letusstore/home/contact-us', 'The idea behind Letsusstore is to strengthen the business management in the country by strengthening the supply chain management by providing premium warehousing and logistics services at a genuine price. \r\n', 'main-section'), (4, ' ', 'Why Letsusstore?', 'uploads/home/file_61cbf9274d64d1640757543.jpg', 'Benefits', 'https://theacademiz.com/letusstore/home/benefits', 'By choosing us, you get freedom from the stress concerning the storage, movement and safety, and security of goods in transit. You remain stress-free with regard to the warehousing and logistics services.\r\n', 'main-section'), (5, ' ', 'Let Us Store', 'uploads/home/file_61cbf96ac97be1640757610.jpg', ' ', ' ', 'Let Us Stores', 'our-works'), (6, ' ', 'High Security', 'uploads/home/file_61cbf9b8af3041640757688.jpg', ' ', ' ', 'Let Us Store', 'our-works'), (8, ' ', 'CCTV CAMERA SETUP', 'uploads/home/file_61cbfaf3855041640758003.jpg', ' ', ' ', 'Let Us Store', 'our-works'), (9, ' ', '<NAME>', 'uploads/home/file_61cbfb5e02a321640758110.jpg', ' ', ' ', 'Founder, CEO', 'meet-the-team'), (10, ' ', '<NAME>', 'uploads/home/file_61cbfb97bed771640758167.jpg', ' ', ' ', 'HR, Specialist', 'meet-the-team'), (11, ' ', '<NAME>', 'uploads/home/file_61cbfc18cdfde1640758296.jpg', ' ', ' ', 'Some Important Rules To Start a New Business', 'news-and-articles'), (12, ' ', '<NAME>', 'uploads/home/file_61cbfc2f3555c1640758319.png', ' ', ' ', 'Why Would You Need Some New Business', 'news-and-articles'), (13, ' ', '<NAME>', 'uploads/home/file_61cbfc4429b231640758340.jpg', ' ', ' ', 'Know Top Ten Rules For Corporate Business', 'news-and-articles'), (19, ' ', 'News and Articlles', 'uploads/home/file_61cbfc830c9831640758403.jpg', ' ', ' ', '', 'news-and-articles'); -- -------------------------------------------------------- -- -- Table structure for table `hpt` -- CREATE TABLE `hpt` ( `h_id` int(11) NOT NULL, `h_title` varchar(255) NOT NULL, `h_image` varchar(255) NOT NULL, `h_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `hpt` -- INSERT INTO `hpt` (`h_id`, `h_title`, `h_image`, `h_desc`) VALUES (117, 'Hand Pallet Trucks(HPT)', 'uploads/hpt/file_61dd1424ba2941641878564.jpg', 'A hand pallet truck is a device that is used to lift and move pallets. It aids in the movement of items inside the warehouse\'s limits. Pallet trucks are often referred to as pallet pumps, pump trucks, and pallet jacks. This is a warehouse tool that is used to lift and move pallets. We use high-quality machines for the smooth functioning of the warehouse.'); -- -------------------------------------------------------- -- -- Table structure for table `hyderabad` -- CREATE TABLE `hyderabad` ( `h_id` int(11) NOT NULL, `h_title` varchar(255) NOT NULL, `h_image` varchar(255) NOT NULL, `h_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `hyderabad` -- INSERT INTO `hyderabad` (`h_id`, `h_title`, `h_image`, `h_desc`) VALUES (62, 'Hyderabad', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Pune.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Pune. The first Let Us Store in Hyderabad was set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Pune. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Pune can find a solution within our range of over 400 Let Us Store rooms.'), (63, 'Locations of Let Us Store in Hyderabad', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Pune region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Pune will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Pune is your perfect choice.'); -- -------------------------------------------------------- -- -- Table structure for table `investor` -- CREATE TABLE `investor` ( `i_id` int(11) NOT NULL, `i_title` varchar(255) NOT NULL, `i_image` varchar(255) NOT NULL, `i_desc` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `investor` -- INSERT INTO `investor` (`i_id`, `i_title`, `i_image`, `i_desc`) VALUES (118, 'Land', 'uploads/investor/file_61dd4f3e8940b1641893694.jpg', 'We offer our warehouse development service. We bridge the gap by bringing reputed builders closer to the land owners for the purpose of the construction of warehouse. The landowners get assured rental income from the developed warehouse. We welcome interested property developers and land owners to grab this exciting deal.\r\n\r\nOur dedicated team of professional is ready to assist you in the complete process under our land services.'); -- -------------------------------------------------------- -- -- Table structure for table `kolkatta` -- CREATE TABLE `kolkatta` ( `k_id` int(11) NOT NULL, `k_title` varchar(255) NOT NULL, `k_image` varchar(255) NOT NULL, `k_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `kolkatta` -- INSERT INTO `kolkatta` (`k_id`, `k_title`, `k_image`, `k_desc`) VALUES (60, 'Kolkatta', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Pune.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Pune. The first Let Us Store in Kolkatta was set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Pune. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Pune can find a solution within our range of over 400 Let Us Store rooms.'), (61, 'Locations of Let Us Store in Kolkatta', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Pune region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Pune will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Pune is your perfect choice.'); -- -------------------------------------------------------- -- -- Table structure for table `land` -- CREATE TABLE `land` ( `l_id` int(11) NOT NULL, `l_title` varchar(255) NOT NULL, `l_image` varchar(255) NOT NULL, `l_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `land` -- INSERT INTO `land` (`l_id`, `l_title`, `l_image`, `l_desc`) VALUES (118, 'Land', 'uploads/land/file_61dc39f0c2aa21641822704.jpeg', 'We offer our warehouse development service. We bridge the gap by bringing reputed builders closer to the land owners for the purpose of the construction of warehouse. The landowners get assured rental income from the developed warehouse. We welcome interested property developers and land owners to grab this exciting deal.\r\n\r\nOur dedicated team of professional is ready to assist you in the complete process under our land services.'); -- -------------------------------------------------------- -- -- Table structure for table `letusstore.about_ceo` -- CREATE TABLE `letusstore.about_ceo` ( `cp_id` int(11) NOT NULL, `cp_title` varchar(255) NOT NULL, `cp_image` varchar(255) NOT NULL, `cp_desc` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `letusstore.about_ceo` -- INSERT INTO `letusstore.about_ceo` (`cp_id`, `cp_title`, `cp_image`, `cp_desc`) VALUES (1, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (2, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (3, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (4, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (5, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (6, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (7, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (8, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (9, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (10, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (11, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (12, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (13, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (14, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (15, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (16, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (17, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (18, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (19, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (20, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (21, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (22, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (23, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (24, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (25, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (26, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (27, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (28, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (29, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (30, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (31, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (32, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (33, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (34, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (35, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (36, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (37, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (38, 'File Examddsdfsdfd', '', 'asfsadfsdddsfsdfsdd'), (39, 'dFile Examddsdfsdfdddddd', '', 'asfsadfsdddsfsdfsddfddfdddd'); -- -------------------------------------------------------- -- -- Table structure for table `loaders` -- CREATE TABLE `loaders` ( `l_id` int(11) NOT NULL, `l_title` varchar(255) NOT NULL, `l_image` varchar(255) NOT NULL, `l_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `loaders` -- INSERT INTO `loaders` (`l_id`, `l_title`, `l_image`, `l_desc`) VALUES (117, 'Loaders', 'uploads/loaders/file_61dd0f41ee59d1641877313.jpg', 'Loaders are important to load and unload trucks, trailers, and shipping containers to prepare outbound cargo and receive incoming commodities. They have to be very professional to handle all the goods with utmost care. We provide expert professional loaders who are smartly handle all the cargo movements.'); -- -------------------------------------------------------- -- -- Table structure for table `manpower` -- CREATE TABLE `manpower` ( `m_id` int(11) NOT NULL, `m_title` varchar(255) NOT NULL, `m_image` varchar(255) NOT NULL, `m_desc` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `manpower` -- INSERT INTO `manpower` (`m_id`, `m_title`, `m_image`, `m_desc`) VALUES (117, 'Manpower', 'uploads/manpower/file_61dc3cb1315c01641823409.png', 'We can meet all of your workforce requirements, whether it\'s manpower supply or manpower consultancy. Our manpower services are second to none. Our team of specialists is dedicated to providing our clients with the finest possible experience.\r\n\r\nOnly those agents who have completed all of the training and skill development examinations are hired by our employed agency, which is a manpower agency. We\'re concentrating on talent acquisition because it allows us to focus on long-term human resource planning and finding suitable applicants for the roles that demand a very particular set of abilities. We place a high value on our employees\' performance to serve our clients in the best possible manner.\r\n\r\nPeople, procedures, and technology are all important to us. We assist our clients in releasing the hidden value of information and resources currently in place, allowing processes to perform at peak efficiency. These key process indicators become far more than operational goals in the competitive marketplace; they become a customer-focused competitive advantage.\r\n\r\nTo guarantee that our clients enjoy a smooth and \'hassle-free\' business experience, we do rigorous background checks and keep up-to-date records on all of the people we hire. We also conduct personality development and grooming training to guarantee that our staff is \'employment-ready.\' The staff we employ are known for their high commitment standards, pleasant manner, and consistent performance.'), (118, 'Loaders', '', 'Loaders are important to load and unload trucks, trailers, and shipping containers to prepare outbound cargo and receive incoming commodities. They have to be very professional to handle all the goods with utmost care. We provide expert professional loaders who are smartly handle all the cargo movements.'), (119, 'Pickers and Packers', '', 'Pickers and Packers are crucial personnel in managing a warehouse as they are generally in charge of completing delivery orders. They perform various tasks such as collecting the clients\' purchase forms, verifying that the products are in stock, getting the items from their storage facilities, constructing the order, checking for accuracy and completeness, and wrapping the box securely before releasing it to the delivery employees. So, we provide professional pickers and packers to manage a warehouse facility.'), (120, 'Security', '', 'Security is an essential thing for warehouse management to ensure the safety of goods stored in warehouse. We offer a wide range of security solutions in terms of technical and Human Resource perspectives. Our security services include CCTV Cameras, Protected Softwares, and Security Personnel.'), (121, 'Supervisors', '', 'Supervisors are also available who are important to achieve high levels of customer satisfaction by receiving, identifying, dispatching, and guaranteeing the quality of items.'), (122, 'DEO’s ( Data entry operators)', '', 'DEO’s have a vital role in the organization since they prepare the day\'s schedule, assign work to workers, and monitor their progress. We provide professional staff especially for DEO so that inaccuracies should not create any problem in the smooth functioning of a warehouse.'); -- -------------------------------------------------------- -- -- Table structure for table `material_handling` -- CREATE TABLE `material_handling` ( `m_id` int(11) NOT NULL, `m_title` varchar(255) NOT NULL, `m_image` varchar(255) NOT NULL, `m_desc` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `material_handling` -- INSERT INTO `material_handling` (`m_id`, `m_title`, `m_image`, `m_desc`) VALUES (117, 'Material Handling', 'uploads/material_handling/file_61dd12792ee381641878137.jpg', 'At our company, we employ a variety of material handling technologies. Forklifts, carts, pallets, conveyors, conveyance robots, sorters, picking systems, and automated warehouses are examples of material handling equipments. At our warehouse and logistics organization, there is a lot of heavy work involved, such as loading, unloading, and transporting freight. The phrase \"material handling device\" refers to the machines that are used to make logistics more efficient. Moving raw materials, operating in the process, and producing goods are all jobs that these machines accomplish.\r\n\r\nLet\'s take a closer look at the most important material handling equipment:'), (118, 'Forklifts ', '', 'Forklifts are used to transfer and transport large cargoes, from delivery trucks to dockside storage areas to ships. We offer forklift services for efficient warehouse management.'), (119, 'Clamper', '', 'It is a forklift attachment device that attaches to a forklift It may be used to carry and pick up box-shaped loads. Clamp handling saves time by reducing human effort and allowing for faster loading and unloading of trucks. These cargoes, which are usually floor loaded and consolidated, are either manually emptied by hand, which is a time-consuming procedure or mechanically unloaded by a clamp truck. We also provide good quality clampers in terms of hardware for warehouse management.'), (120, 'HPT (Hand pallet trucks)', '', 'A hand pallet truck is a device that is used to lift and move pallets. It aids in the movement of items inside the warehouse\'s limits. Pallet trucks are often referred to as pallet pumps, pump trucks, and pallet jacks. This is a warehouse tool that is used to lift and move pallets. We use high-quality machines for the smooth functioning of the warehouse.'), (121, 'Stackers', '', 'A warehouse stacker, which is a specialized gadget for lifting and moving pallets around a warehouse, is also available. They\'re perfect for small warehouses where workers need to load things onto racks for storage or into cars for transport. We also provide premium quality stackers contributing to the efficient management of a warehouse.'); -- -------------------------------------------------------- -- -- Table structure for table `mumbai` -- CREATE TABLE `mumbai` ( `m_id` int(11) NOT NULL, `m_title` varchar(255) NOT NULL, `m_image` varchar(255) NOT NULL, `m_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `mumbai` -- INSERT INTO `mumbai` (`m_id`, `m_title`, `m_image`, `m_desc`) VALUES (60, 'Mumbai', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Pune.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Pune. The first Let Us Store in Mumbai was set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Pune. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Pune can find a solution within our range of over 400 Let Us Store rooms.'), (61, 'Locations of Let Us Store in Mumbai', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Pune region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Pune will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Pune is your perfect choice.'); -- -------------------------------------------------------- -- -- Table structure for table `news` -- CREATE TABLE `news` ( `news_id` int(11) NOT NULL, `news_title` varchar(255) NOT NULL, `news_image` varchar(255) NOT NULL, `news_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `news` -- INSERT INTO `news` (`news_id`, `news_title`, `news_image`, `news_desc`) VALUES (74, 'Let Us Store in India: Expanding to Meet Local Demand and Changing Consumer Needs', 'uploads/news/file_6113cb36a67b41628687158.jpg', 'Inside Let Us Store :\r\n https://www.insideselfstorage.com/asia/self-storage-india-expanding-meet-local-demand-and-changing-consumer-needs'), (75, 'Let Us Store to launch first of four new NCR facilities on 1st February 2021', 'uploads/news/file_6113cb55a8fc51628687189.jpg', 'CISION (PR Newswire) :\r\n https://www.prnewswire.com/in/news-releases/self-storage-india-to-launch-first-of-four-new-ncr-facilities-on-1st-february-2021-851839113.php?sd'); -- -------------------------------------------------------- -- -- Table structure for table `pickers_and_packers` -- CREATE TABLE `pickers_and_packers` ( `p_id` int(11) NOT NULL, `p_title` varchar(255) NOT NULL, `p_image` varchar(255) NOT NULL, `p_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `pickers_and_packers` -- INSERT INTO `pickers_and_packers` (`p_id`, `p_title`, `p_image`, `p_desc`) VALUES (118, 'Pickers and Packers', 'uploads/pickers_and_packers/file_61dd0ffb18a731641877499.png', 'Pickers and Packers are crucial personnel in managing a warehouse as they are generally in charge of completing delivery orders. They perform various tasks such as collecting the clients\' purchase forms, verifying that the products are in stock, getting the items from their storage facilities, constructing the order, checking for accuracy and completeness, and wrapping the box securely before releasing it to the delivery employees. So, we provide professional pickers and packers to manage a warehouse facility.'); -- -------------------------------------------------------- -- -- Table structure for table `primary_service` -- CREATE TABLE `primary_service` ( `p_id` int(11) NOT NULL, `p_title` varchar(255) NOT NULL, `p_image` varchar(255) NOT NULL, `p_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `primary_service` -- INSERT INTO `primary_service` (`p_id`, `p_title`, `p_image`, `p_desc`) VALUES (117, 'Primary Service', 'uploads/primary_service/file_61dd1a99337741641880217.jpg', 'Primary Service : Our primary services consists of\r\n• Interstate transportation\r\n• Port to plant movement\r\n• Port & terminal to interstate warehouses\r\n• Ability to deploy any size of vehicle as per the consignment'); -- -------------------------------------------------------- -- -- Table structure for table `privacy_policy` -- CREATE TABLE `privacy_policy` ( `pp_id` int(11) NOT NULL, `pp_title` varchar(255) NOT NULL, `pp_image` varchar(255) NOT NULL, `pp_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `privacy_policy` -- INSERT INTO `privacy_policy` (`pp_id`, `pp_title`, `pp_image`, `pp_desc`) VALUES (60, 'Types of Data we Collect and Use', '', 'We may collect personal identification information from Users in a variety of ways, including, but not limited to, when Users visit our site, subscribe to the newsletter, fill out a form, and in connection with other activities, services, features or resources we make available on our Site. Users may be asked for, as appropriate, name, email address, mailing address, phone number, company name. We will collect personal identification information from Users only if they voluntarily consent such information to us. Users can always refuse to supply personally identification information, except that it may prevent them from engaging in certain Site related activities.'), (61, 'Collection of Information', '', 'This site is provided by Noke. Noke collects information in several ways from different parts of this site.\r\n\r\n1. Complimentary ground shipping within 1 to 7 business days\r\n2. In-store collection available within 1 to 7 business days\r\n3. Next-day and Express delivery options also available\r\n4. Purchases are delivered in an orange box tied with a Bolduc ribbon, with the exception of certain items\r\n5. See the delivery FAQs for details on shipping methods, costs and delivery times'), (62, 'Payment Methods', '', 'Noke accepts the following payment methods:\r\n\r\nCredit Card: Visa, MasterCard, Discover, American Express, JCB, Visa Electron. The total will be charged to your card when the order is shipped.\r\nNoke features a Fast Checkout option, allowing you to securely save your credit card details so that you don\'t have to re-enter them for future purchases.\r\nPayPal: Shop easily online without having to enter your credit card details on the website.Your account will be charged once the order is completed. To register for a PayPal account, visit the website paypal.com.'), (63, 'Exchanges, Returns and Refunds', '', 'Items returned within 14 days of their original shipment date in same as new condition will be eligible for a full refund or store credit. Refunds will be charged back form of payment used for purchase. Customer is responsible for shipping charges when making returns and shipping/handling fees of original purchase is non-refundable.'); -- -------------------------------------------------------- -- -- Table structure for table `private_rooms` -- CREATE TABLE `private_rooms` ( `pr_id` int(11) NOT NULL, `pr_title` varchar(255) NOT NULL, `pr_image` varchar(255) NOT NULL, `pr_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `private_rooms` -- INSERT INTO `private_rooms` (`pr_id`, `pr_title`, `pr_image`, `pr_desc`) VALUES (58, 'Dedicated Private Rooms', '', 'Many events in our lives call for reorganization, such as moving into a new home, renovations, making room for a new member in the house. These are all stressful activities. You need to change the whole structure and move around things. Sometimes, you may not have enough space to adjust. Instead of cramming the existing area with more items, Let Us Store’s private rooms are what you need.\r\n\r\nWhether you’re an individual looking for home solutions or an organization with corporate-level requirements, getting your own Let Us Store private rooms can free up not only your living area but also your mind.\r\n\r\nExtra space is something we all crave for. We offer the ideal way for you to safely store your items and live your life. While your goods are under our care and watch, you can experience life to the fullest.'), (59, 'What Can You Store in Private Rooms', 'uploads/private_rooms/file_610a74bb1cf721628075195.jpg', 'Whether you need to store furniture, precious items, valuables, documents, delicate items, machines, equipment, etc., you can enjoy a hassle-free experience when you rent private rooms with us. These rooms are spacious and secured so that you can forget all your stress once you drop your items and leave.\r\n\r\nDepending on your needs, you can decide how you want to use it. If your home is undergoing a temporary renovation, you can lease a room. If you wish to keep a room to yourself as a secondary storage room, we have long-term plans.'), (60, 'Benefits of Renting Private Rooms', '', 'Renting with us comes with a host of benefits. Let Us Store’s attempts are at providing the best Let Us Store experience for you. We offer several services that will convince you of how seriously we take our job.'), (61, '24/7 Security', '', 'The security of the premises is one of our main goals. We never compromise on security. Guards, at all times, vigilantly patrol the warehouse. We also have CCTV cameras to monitor the area.'), (62, 'Restricted Access', '', 'Access to our warehouse is tightly controlled. When you sign your agreement, you will be requested to nominate another person who can enter the room. Only you and your nominee will be provided entry.'), (63, 'Insurance', '', 'Let Us Store also provides complimentary insurance when you rent private rooms. Your stock is insured against fire risk, RSMD risk, earthquakes, and burglary.'); -- -------------------------------------------------------- -- -- Table structure for table `pune_ranjangaon` -- CREATE TABLE `pune_ranjangaon` ( `prg_id` int(11) NOT NULL, `prg_title` varchar(255) NOT NULL, `prg_image` varchar(255) NOT NULL, `prg_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `pune_ranjangaon` -- INSERT INTO `pune_ranjangaon` (`prg_id`, `prg_title`, `prg_image`, `prg_desc`) VALUES (60, 'Pune-Ranjangaon', '', 'The concept of Let Us Store is not new in western countries. But in India, not many people were aware of the idea. Finding this niche, Let Us Store launched in the country a few years ago. Making the capital our center, we made it possible for people to easily find reliable and economical Let Us Store in Pune.\r\n\r\nLet Us Store’s journey started with the vibrant and bustling city of Pune. The first Let Us Store in Pune-Ranjangaon was set up in Gurugram. Since then, we have grown into a huge family of three big warehouses and thousands of happy customers.\r\n\r\nTwo warehouses are located in Gurugram and one is in Noida. The latest addition was the second Gurugram Let Us Store in Pune. As we witnessed a burgeoning demand for Let Us Store during the Covid-19 lockdown, we were able to fulfill people’s needs for extra storage.\r\n\r\nAny home or business that’s looking for Let Us Store in Pune can find a solution within our range of over 400 Let Us Store rooms.'), (61, 'Locations of Let Us Store in Pune-Ranjangaon', '', 'All of Let Us Store’s warehouses are located in convenient spots that are easily accessible across the greater Pune region. They are located in prime localities and alongside major roadways so that you can find and visit them effortlessly.\r\n\r\nOur warehouses in Gurugram are located in prime locations, one in Udyog Vihar and the other adjacent to the National Highway at Honda Chowk. They both boast over 100 dedicated rooms in varying sizes in each location. Residents in and around Gurugram and nearby New Pune will have no trouble locating and accessing these two facilities. Our units are created with the needs of both individuals and businesses in mind.\r\n\r\nThe third warehouse in Noida is close to Wave City Metro. If you are considering visiting our Noida warehouse, you can choose from over 150 Let Us Store units. Located inside a bustling complex, this Let Us Store in Pune is your perfect choice.'); -- -------------------------------------------------------- -- -- Table structure for table `rcc` -- CREATE TABLE `rcc` ( `r_id` int(11) NOT NULL, `r_title` varchar(255) NOT NULL, `r_image` varchar(255) NOT NULL, `r_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `rcc` -- INSERT INTO `rcc` (`r_id`, `r_title`, `r_image`, `r_desc`) VALUES (118, 'RCC', 'uploads/rcc/file_61dc38d85030c1641822424.jpg', 'Our RCC services are best-in-class when it comes to premium quality construction for buildings, especially the warehouse. Our service adds more strength to the concrete that contributes towards the strong construction of the warehouse. You can bank upon us for complete assurance about the safety of the constructed building.\r\n\r\n'); -- -------------------------------------------------------- -- -- Table structure for table `requests` -- CREATE TABLE `requests` ( `r_id` int(255) NOT NULL, `r_user_id` int(11) DEFAULT NULL, `r_info` varchar(255) DEFAULT NULL, `r_description` text DEFAULT NULL, `r_user_name` varchar(255) DEFAULT NULL, `r_user_address` text DEFAULT NULL, `r_user_city` varchar(255) DEFAULT NULL, `r_user_state` varchar(255) DEFAULT NULL, `r_user_zip` varchar(50) DEFAULT NULL, `r_user_email` varchar(255) NOT NULL, `r_mobile` varchar(255) NOT NULL, `r_status` enum('accepted','pending','rejected') NOT NULL DEFAULT 'pending', `created_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `requests` -- INSERT INTO `requests` (`r_id`, `r_user_id`, `r_info`, `r_description`, `r_user_name`, `r_user_address`, `r_user_city`, `r_user_state`, `r_user_zip`, `r_user_email`, `r_mobile`, `r_status`, `created_date`) VALUES (24, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'rejected', '2021-12-28 17:22:20'), (25, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'rejected', '2021-12-28 17:22:20'), (26, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (27, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (28, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (29, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (30, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (31, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (32, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (33, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (34, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (35, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (36, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (37, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (38, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (39, 25, 'Distribution Service', '', 'Puhupwas', 'Address', 'City', 'State', '242342', '<EMAIL>', '2434234234', 'pending', '2021-12-28 17:22:20'), (40, 42, 'Manpower', 'Req Description', 'Puhupwas', 'Address', 'city', 'state', '242422', '<EMAIL>', '2349237423', 'pending', '2021-12-29 12:49:54'); -- -------------------------------------------------------- -- -- Table structure for table `request_invoice` -- CREATE TABLE `request_invoice` ( `ri_id` int(11) NOT NULL, `ri_user_id` int(11) DEFAULT NULL, `ri_no` int(11) DEFAULT NULL, `ri_name` varchar(255) DEFAULT NULL, `ri_quantity` int(11) DEFAULT NULL, `ri_price` varchar(255) DEFAULT NULL, `ri_total` varchar(255) DEFAULT NULL, `created_date` datetime DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `request_invoice` -- INSERT INTO `request_invoice` (`ri_id`, `ri_user_id`, `ri_no`, `ri_name`, `ri_quantity`, `ri_price`, `ri_total`, `created_date`) VALUES (60, 25, 26, 'Distribution Service', 12, '1', '12', '2022-01-04 17:42:07'); -- -------------------------------------------------------- -- -- Table structure for table `secondary_service` -- CREATE TABLE `secondary_service` ( `s_id` int(11) NOT NULL, `s_title` varchar(255) NOT NULL, `s_image` varchar(255) NOT NULL, `s_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `secondary_service` -- INSERT INTO `secondary_service` (`s_id`, `s_title`, `s_image`, `s_desc`) VALUES (117, 'Secondary Services', 'uploads/secondary_service/file_61dd1c017a8fa1641880577.jpg', 'Secondary Services: Our secondary services have\r\n\r\nPlant to distributor point.\r\nDistributor to further stockiest & retailers.\r\nWarehouse to various remote location & on site delivery.\r\nIntra circle & state transportation.'); -- -------------------------------------------------------- -- -- Table structure for table `security` -- CREATE TABLE `security` ( `s_id` int(11) NOT NULL, `s_title` varchar(255) NOT NULL, `s_image` varchar(255) NOT NULL, `s_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `security` -- INSERT INTO `security` (`s_id`, `s_title`, `s_image`, `s_desc`) VALUES (117, 'Security', 'uploads/security/file_61dd1049367321641877577.jpg', 'Security is an essential thing for warehouse management to ensure the safety of goods stored in warehouse. We offer a wide range of security solutions in terms of technical and Human Resource perspectives. Our security services include CCTV Cameras, Protected Softwares, and Security Personnel.'); -- -------------------------------------------------------- -- -- Table structure for table `service` -- CREATE TABLE `service` ( `s_id` int(11) NOT NULL, `service_name` varchar(255) DEFAULT NULL, `created_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `service` -- INSERT INTO `service` (`s_id`, `service_name`, `created_date`) VALUES (1, 'Warehouse', '2021-12-21 13:28:39'), (2, 'Land', '2021-12-21 13:28:39'), (3, 'Manpower', '2021-12-28 15:28:16'), (4, 'Material Handling', '2021-12-28 15:28:16'), (5, 'Technology', '2021-12-28 15:28:59'), (6, 'Distribution Service', '2021-12-28 15:28:59'), (7, 'Storage', '2021-12-28 15:29:07'), (8, '3PL', '2021-12-29 12:49:11'), (9, 'Waste Management', '2021-12-30 23:53:29'); -- -------------------------------------------------------- -- -- Table structure for table `shed` -- CREATE TABLE `shed` ( `s_id` int(11) NOT NULL, `s_title` varchar(255) NOT NULL, `s_image` varchar(255) NOT NULL, `s_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `shed` -- INSERT INTO `shed` (`s_id`, `s_title`, `s_image`, `s_desc`) VALUES (118, 'Shed', 'uploads/shed/file_61dc38283960a1641822248.jpg', 'The roof is equivalently important for the building like a foundation to provide security. We provide good quality stainless steel shed for roofing purposes for the warehouse. Our shed is strong and rustproof and lasts for a long time. We offer premium quality sheds at a genuine price. '); -- -------------------------------------------------------- -- -- Table structure for table `size_guide` -- CREATE TABLE `size_guide` ( `sg_id` int(11) NOT NULL, `sg_total_size` varchar(255) NOT NULL, `sg_cat_id` int(11) NOT NULL, `sg_name_key` varchar(255) NOT NULL, `sg_item` varchar(255) NOT NULL, `sg_flat_size` varchar(255) NOT NULL, `sg_date_created` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `size_guide` -- INSERT INTO `size_guide` (`sg_id`, `sg_total_size`, `sg_cat_id`, `sg_name_key`, `sg_item`, `sg_flat_size`, `sg_date_created`) VALUES (62, '51 to 68', 2, '', 'Mattress, sofa, kitchen table, bicycles, small boxes and other similar items.', 'Suitable for small one-bedroom flat', '2021-08-11 13:29:02'), (63, '51 to 70', 18, '', 'Mattress, sofa, kitchen table, bicycles, small boxes and other similar items.', 'Suitable', '2021-08-11 13:29:17'), (64, '51 to 75', 2, '', 'Mattress, sofa, kitchen table, bicycles, small boxes and other similar items.', 'Suitable for small one-bedroom flat', '2021-08-11 14:56:28'), (65, '51 to 80', 1, '', 'Mattress, sofa, kitchen table, bicycles, small boxes and other similar items.', 'Suitable for small one-bedroom flat', '2021-08-11 15:17:41'), (66, '51 to 88', 2, '', 'Mattress, sofa, kitchen table, bicycles, small boxes and other similar items.', 'Suitable for small one-bedroom flat', '2021-08-11 15:18:40'); -- -------------------------------------------------------- -- -- Table structure for table `size_guide_location` -- CREATE TABLE `size_guide_location` ( `sgl_id` int(11) NOT NULL, `sgl_name` varchar(255) NOT NULL, `sgl_name_key` varchar(255) NOT NULL, `sgl_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `size_guide_location` -- INSERT INTO `size_guide_location` (`sgl_id`, `sgl_name`, `sgl_name_key`, `sgl_date`) VALUES (1, 'Noida', 'noida', '2021-07-28 17:56:33'), (2, 'Gurugram', 'gurugram', '2021-07-28 17:56:33'), (18, 'DELHI', 'delhi', '2021-08-11 12:13:43'), (19, 'MUMBAI', 'mumbai', '2021-08-11 15:17:47'), (20, 'GAO', 'gao', '2021-08-13 17:13:09'); -- -------------------------------------------------------- -- -- Table structure for table `software` -- CREATE TABLE `software` ( `s_id` int(11) NOT NULL, `s_title` varchar(255) NOT NULL, `s_image` varchar(255) NOT NULL, `s_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `software` -- INSERT INTO `software` (`s_id`, `s_title`, `s_image`, `s_desc`) VALUES (117, 'Software', 'uploads/software/file_61dd1714d679b1641879316.jpg', 'Warehousing management system (WMS) : WMS is the software solution through which we check the visibility into a business’s entire inventory and manage supply chain fulfillment operations from the distribution centre to the store shelf. By WMS we additionally enable companies to maximize their labour and space utilization and equipment investments by coordinating and optimizing resource usage and material flows. We use WMS to support the needs of an entire supply chain, including distribution, manufacturing, asset-intensive, and service businesses.\r\n\r\nInventory management system : we use the inventory management system for the process by which we track your goods throughout your entire supply chain, from purchasing to production to end sales. It is what helps us governs how you approach inventory management for your business.\r\n\r\nInventory management software: The software system we use for tracking inventory levels, orders, sales and deliveries'); -- -------------------------------------------------------- -- -- Table structure for table `stackers` -- CREATE TABLE `stackers` ( `s_id` int(11) NOT NULL, `s_title` varchar(255) NOT NULL, `s_image` varchar(255) NOT NULL, `s_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `stackers` -- INSERT INTO `stackers` (`s_id`, `s_title`, `s_image`, `s_desc`) VALUES (117, 'Stackers', 'uploads/stackers/file_61dd147a1d9e31641878650.png', 'A warehouse stacker, which is a specialized gadget for lifting and moving pallets around a warehouse, is also available. They\'re perfect for small warehouses where workers need to load things onto racks for storage or into cars for transport. We also provide premium quality stackers contributing to the efficient management of a warehouse.'); -- -------------------------------------------------------- -- -- Table structure for table `storage_calculator` -- CREATE TABLE `storage_calculator` ( `sc_id` int(11) NOT NULL, `sc_name` varchar(255) NOT NULL, `sc_cat_id` int(11) NOT NULL, `sc_name_key` varchar(255) NOT NULL, `sc_name_price` varchar(255) NOT NULL, `sc_image` varchar(255) NOT NULL, `sc_date_created` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `storage_calculator` -- INSERT INTO `storage_calculator` (`sc_id`, `sc_name`, `sc_cat_id`, `sc_name_key`, `sc_name_price`, `sc_image`, `sc_date_created`) VALUES (4, 'Side Table', 1, 'side_table', '0.5', '', '2021-07-29 12:23:01'), (5, 'Single bed', 1, 'single_bed', '7.5', '', '2021-07-29 16:12:09'), (6, 'Queen size bed', 1, 'queen_size_bed', '12.5', '', '2021-07-29 16:12:09'), (7, 'King Size Bed', 1, 'king_size_bed', '15', '', '2021-07-29 16:12:09'), (9, 'Chest of drawers (3)', 1, 'chest_of_drawers_3', '2.5', '', '2021-07-29 16:12:09'), (10, 'Almirah', 1, 'almirah', '5', '', '2021-07-29 16:12:09'), (11, '<NAME>', 1, 'almirah_big', '4.5', '', '2021-07-29 16:12:09'), (12, 'Dressing Table', 1, 'dressing_table', '3.75', '', '2021-07-29 16:12:09'), (13, 'Plastic Chairs', 2, 'plastic_chairs', '0.50', '', '2021-07-29 16:26:09'), (14, 'Plastic Stools', 2, 'plastic_stools', '0.50', '', '2021-07-29 16:26:09'), (15, 'Center Table', 2, 'center_table', '2.5', '', '2021-07-29 16:26:09'), (16, 'TV', 2, 'tv', '1.875', '', '2021-07-29 16:26:09'), (17, 'Tv unit Wooden', 2, 'tv_unit_wooden', '2.5', '', '2021-07-29 16:26:09'), (18, 'Gas Stove', 3, 'gas_stove', '0.75', '', '2021-07-29 17:25:36'), (19, 'Water Purifier/Dispenser', 3, 'water_purifier_dispenser', '1.125', '', '2021-07-29 17:25:36'), (20, 'Mixture', 3, 'mixture', '0.25', '', '2021-07-29 17:25:36'), (21, 'OTG small size', 3, 'otg_small_size', '0.625', '', '2021-07-29 17:25:36'), (22, 'OTG big size', 3, 'otg_big_size', '1.25', '', '2021-07-29 17:25:36'), (23, 'Microwave', 3, 'microwave', '0.375', '', '2021-07-29 17:25:36'), (24, 'Double Door Fridge', 3, 'double_door_fridge', '3.5', '', '2021-07-29 17:25:36'), (25, 'Small Box (1x1x1ft)', 4, 'small_box_1x1x1ft', '0.125', '', '2021-07-29 17:43:09'), (26, 'Medium Box (1×1.5x1ft)', 4, 'medium_box_1151ft', '0.1875', '', '2021-07-29 17:43:09'), (27, 'Large Box (1.5x2x1.5ft)', 4, 'large_box_15215ft', '0.5625', '', '2021-07-29 17:43:09'), (28, 'Extra Large Box (2x3x2ft)', 4, 'extra_large_box_232ft', '1.5', '', '2021-07-29 17:45:21'), (29, 'Filing Cabinet', 5, 'filing_cabinet', '4', '', '2021-07-29 17:51:57'), (30, 'Office chair', 5, 'office_chair', '3.5', '', '2021-07-29 17:51:57'), (31, 'Study Lamp', 5, 'study_lamp', '0.25', '', '2021-07-29 17:54:28'), (32, 'Study Table', 5, 'study_table', '3.75', '', '2021-07-29 17:54:28'), (33, 'Camp/Tent', 6, 'camp_tent', '2.5', '', '2021-07-29 18:00:15'), (34, 'Porch Swing', 6, 'porch_swing', '50', '', '2021-07-29 18:00:15'), (35, '2 Wheeler', 7, '2_wheeler', '50', '', '2021-07-29 18:06:18'), (36, 'Bicycle', 7, 'bicycle', '3.75', '', '2021-07-29 18:06:18'), (37, 'Air purifier', 8, 'air_purifier', '0.625', '', '2021-07-29 18:16:31'), (38, 'Room heater', 8, 'room_heater', '0.625', '', '2021-07-29 18:16:31'), (39, 'Vacuum Cleaner', 8, 'vacuum_cleaner', '1.25', '', '2021-07-29 18:16:31'), (45, 'Storage calculator 4', 15, 'storage_calculator_4', '50', '', '2021-08-02 12:14:00'), (46, 'Storage calculator 13', 17, 'storage_calculator_13', '20', '', '2021-08-02 12:16:13'), (47, 'Storage Calculator 11', 15, 'storage_calculator_11', '15', '', '2021-08-02 17:15:40'), (49, 'Company Profile 1', 15, 'company_profile_1', '15', '', '2021-08-02 17:20:52'), (50, 'Storage calculator 1', 15, 'storage_calculator_1', '15', '', '2021-08-02 17:23:33'), (55, 'Mattress (Single Bed)', 1, 'mattress__single_bed_', '1.25', 'uploads/storage_calculator/file_6108c5ff7f63e1627964927.png', '2021-08-03 09:58:47'), (56, 'Mattress (Queen Bed)', 1, 'mattress__queen_bed_', '1', 'uploads/storage_calculator/file_6108c6bb254331627965115.png', '2021-08-03 10:01:54'), (57, 'Mattress (King Bed)', 1, 'mattress__king_bed_', '15', 'uploads/storage_calculator/file_6108c6df6fcee1627965151.png', '2021-08-03 10:02:31'), (58, 'Almirah chest', 1, 'almirah_chest', '5', 'uploads/storage_calculator/file_6108c74cba83c1627965260.png', '2021-08-03 10:04:20'); -- -------------------------------------------------------- -- -- Table structure for table `storage_calculator_categories` -- CREATE TABLE `storage_calculator_categories` ( `scc_id` int(11) NOT NULL, `scc_name` varchar(255) NOT NULL, `scc_name_key` varchar(255) NOT NULL, `scc_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `storage_calculator_categories` -- INSERT INTO `storage_calculator_categories` (`scc_id`, `scc_name`, `scc_name_key`, `scc_date`) VALUES (1, 'BEDROOM', 'bedroom', '2021-07-28 17:56:33'), (2, 'LIVING ROOM', 'living-room', '2021-07-28 17:56:33'), (3, 'KITCHEN/DINING', 'kitchen-dining', '2021-07-28 17:56:33'), (4, 'BOXES', 'boxes', '2021-07-28 17:56:33'), (5, 'OFFICE', 'office', '2021-07-28 17:56:33'), (6, 'OUTDOOR', 'outdoor', '2021-07-28 17:56:33'), (7, 'VEHICLE', 'vehicle', '2021-07-28 17:56:33'), (8, 'MISCELLANEOUS', 'miscellaneous', '2021-07-28 17:56:33'), (15, 'STORAGE CATEGORY 1', 'storage-category-1', '2021-08-02 10:34:51'), (16, 'STORAGE CATEGORY 2', 'storage-category-2', '2021-08-02 10:35:01'), (17, 'STORAGE CATEGORY 3', 'storage-category-3', '2021-08-02 12:12:12'); -- -------------------------------------------------------- -- -- Table structure for table `supervisor` -- CREATE TABLE `supervisor` ( `s_id` int(11) NOT NULL, `s_title` varchar(255) NOT NULL, `s_image` varchar(255) NOT NULL, `s_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `supervisor` -- INSERT INTO `supervisor` (`s_id`, `s_title`, `s_image`, `s_desc`) VALUES (117, 'Supervisors ', 'uploads/supervisor/file_61dd10c245faa1641877698.jpg', 'Supervisors are also available who are important to achieve high levels of customer satisfaction by receiving, identifying, dispatching, and guaranteeing the quality of items.'); -- -------------------------------------------------------- -- -- Table structure for table `supplier_products` -- CREATE TABLE `supplier_products` ( `sp_id` int(11) NOT NULL, `sp_user_id` int(11) DEFAULT NULL, `sp_name` varchar(255) DEFAULT NULL, `sp_type` varchar(255) DEFAULT NULL, `sp_price` varchar(255) DEFAULT NULL, `sp_image` varchar(255) DEFAULT NULL, `sp_desc` text DEFAULT NULL, `created_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `supplier_products` -- INSERT INTO `supplier_products` (`sp_id`, `sp_user_id`, `sp_name`, `sp_type`, `sp_price`, `sp_image`, `sp_desc`, `created_date`) VALUES (3, 20, 'Almirah 2', 'sale', '343', 'uploads/supplier_products/file_61c5966edd8891640339054.jpg', '<p>sds</p>\r\n', '2021-12-24 15:14:14'), (4, 20, 'Almirah 2', 'sale', '343', 'uploads/supplier_products/file_61c98eade51401640599213.jpg', '<p>sds</p>\r\n', '2021-12-24 15:14:39'), (5, 20, 'Almirah', 'rent', '34', 'uploads/supplier_products/file_61c59866846841640339558.jpg', '<p>s</p>\r\n', '2021-12-24 15:14:55'), (6, 20, 'Almirah', 'rent', '34', 'uploads/supplier_products/file_61c59873cdb431640339571.jpg', '<p>s</p>\r\n', '2021-12-24 15:15:03'), (8, 20, 'Single Bed', 'warehouse', '2324', 'uploads/supplier_products/file_61c98a4d92b261640598093.jpg', '<p>This is the single bed description</p>\r\n', '2021-12-27 15:11:33'), (9, 20, 'Single Bed', 'warehouse', '2324', 'uploads/supplier_products/file_61c98a71e58781640598129.jpg', '<p>This is the single bed description</p>\r\n', '2021-12-27 15:12:09'); -- -------------------------------------------------------- -- -- Table structure for table `technology` -- CREATE TABLE `technology` ( `t_id` int(11) NOT NULL, `t_title` varchar(255) NOT NULL, `t_image` varchar(255) NOT NULL, `t_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `technology` -- INSERT INTO `technology` (`t_id`, `t_title`, `t_image`, `t_desc`) VALUES (117, 'Technology', 'uploads/technology/file_61dd166fa606c1641879151.jpg', 'At Letusstore we use the following software and hardware technologies to assure smooth functioning and organise warehouses more efficiently'), (118, 'Software', '', 'Warehousing management system (WMS): WMS is the software solution through which we check the visibility into a business’s entire inventory and manage supply chain fulfillment operations from the distribution centre to the store shelf. By WMS we additionally enable companies to maximize their labour and space utilization and equipment investments by coordinating and optimizing resource usage and material flows. We use WMS to support the needs of an entire supply chain, including distribution, manufacturing, asset-intensive, and service businesses.\r\n\r\nInventory management system : we use the inventory management system for the process by which we track your goods throughout your entire supply chain, from purchasing to production to end sales. It is what helps us governs how you approach inventory management for your business.\r\n\r\nInventory management software: The software system we use for tracking inventory levels, orders, sales and deliveries'), (119, 'Hardware', '', 'Last mile delivery : We track a product\'s journey from a warehouse to the doorstep of the endcustomer, and this last step of the delivery process is most critical and well managed for the speedy shipping.\r\n\r\nThese technologies are easy to run live websites with varying stock levels and help plan for stock replenishment. Through these technologies, we can help you accurately forecast the demand.'); -- -------------------------------------------------------- -- -- Table structure for table `terms_and_conditions` -- CREATE TABLE `terms_and_conditions` ( `tac_id` int(11) NOT NULL, `tac_title` varchar(255) NOT NULL, `tac_image` varchar(255) NOT NULL, `tac_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `terms_and_conditions` -- INSERT INTO `terms_and_conditions` (`tac_id`, `tac_title`, `tac_image`, `tac_desc`) VALUES (68, 'Preface', '', '<p>Letsusstore company deals in logistics. While accessing this website, users must understand and accept the terms and the conditions of company which gets revised with time and website itself reserves all the rights to change terms and conditions without any prior information and it is up to the users to look for the changes.<br />\r\n&nbsp;</p>\r\n'), (69, 'T&Cs', '', '<p><strong>Rights of Company Holders</strong><br />\r\nThe company will not allow any outsider to do any kind of alteration and manipulation. Letsusstore has been copyrighted by law in order to comply with all its rules properly. Whatever be the rules or copyright in this website, everything is licensed by the company. Whatever changes or promotions happen in this website are done by the company itself. The company has also kept its rights with itself. Letsusstore reserves all rights in its own right which cannot be tampered with or changed by any outsider.<br />\r\n&nbsp;</p>\r\n'), (70, 'Clause', '', '<p>On Letsusstore website you will find information related to warehouse and logistics services. This company is very clear about all its clauses from day one. All types of information is available on website. Only after being satisfied according to your need, you can take further action.<br />\r\nThe most important thing about this company is that whatever information is given here by the consumer. This type of work done is a positive step for a better future of any company. But on the basis of information, no legal decisions can be done. The right of any kind of action will come under the jurisdiction of the company only. This company is a registered trademark company. Company holders has all type of decisions like&hellip; trademarks, company names or logos, product name or any other type of decisions or changes.<br />\r\nThe company will not be responsible for damage of any kind.<br />\r\nIf the company feels that some changes should be made in the company, then the company can do it without any permission.<br />\r\nEven if any law comes into force, it will be decided by the Delhi Jurisdiction, which will be the final decision and the same will be valid, the decision of any other jurisdiction will not be valid.<br />\r\n&nbsp;</p>\r\n'), (71, 'Approach', '', '<p>If you approach the company through our website, we will contact you via mail. When you are satisfied with everything about the company in every way, then further action is taken in writing.<br />\r\n&nbsp;</p>\r\n'), (72, 'Website Recommendation, User Reviews and User Generated Content', '', '<p>Since this company has taken the copyright of every method. Company has the right that it can make any user&rsquo;s review for the promotion of the company. It comes under the jurisdiction of the company, for which the company does not need to give any clarification to anyone. But along with this, one more right has been kept by the company &nbsp;that if anyone has written anything on its website which is not beneficial for the company, then the company has the right to punish it. The company has not given this right to anyone.&nbsp;<br />\r\n&nbsp;</p>\r\n'), (73, 'Privacy Policy', '', '<p>Customer information will be used to provide information such as delivery status of the product and to update the customer through e- mails, sms . And service provider will get the feedback from the customer about their satisfaction and experience regarding to service provider. If you are interested and want to get more information then please visit our website&hellip;.<br />\r\n&nbsp;</p>\r\n'), (74, 'Cookie Policy', '', '<p>We use cookies on our website for analytics and advertising purpose, it helps us improve the functionality and user experience. By accepting this message, you consent to our cookie policy on this device unless you decline it.<br />\r\n&nbsp;</p>\r\n'); -- -------------------------------------------------------- -- -- Table structure for table `testimonial` -- CREATE TABLE `testimonial` ( `t_id` int(11) NOT NULL, `t_title` varchar(255) NOT NULL, `t_image` varchar(255) NOT NULL, `t_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `testimonial` -- INSERT INTO `testimonial` (`t_id`, `t_title`, `t_image`, `t_desc`) VALUES (70, 'sadf', 'uploads/testimonial/file_610d2bef1a9fb1628253167.mp4', 'sadfsad'), (71, 'Company Profile 1sdfdsfs', 'uploads/testimonial/file_6116563f0935c1628853823.mp4', 'asdfsdfsdfsdafsf'), (72, 'Company Profile 1', 'uploads/testimonial/file_6116569c2feff1628853916.mp4', 'sdafdsafsd'); -- -------------------------------------------------------- -- -- Table structure for table `three_pl` -- CREATE TABLE `three_pl` ( `t_id` int(11) NOT NULL, `t_title` varchar(255) NOT NULL, `t_image` varchar(255) NOT NULL, `t_desc` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `three_pl` -- INSERT INTO `three_pl` (`t_id`, `t_title`, `t_image`, `t_desc`) VALUES (117, 'Land', 'uploads/three_pl/file_61dc3a7cbf0a51641822844.jpg', 'We are a well-developed Third-party logistics business with a specialization in many industries, operations (such as groupage transport, warehousing, and parcel distribution), and geographic locations. Furthermore, our knowledgeable team advises both big and small businesses on how to reduce the expenses of managing supply chains in the Indian market.\r\n\r\nOur logistics company has a large member base, years of expertise, and an in-depth understanding of Indian logistics, we are here to help and assist you in all your logistics needs. Letsusstore provides the greatest logistical supply chain solutions for your company, regardless of what industry you operate in or what product or service you provide.\r\n\r\nWe are a reputable Indian logistics company that offers the finest 3pl logistics services, such as Live Tracking & Notifications (customers can monitor their products at any time), First, Middle, and Last-Mile Delivery (customers can track their packages at any time), and Multi-modal segments that are seamlessly connected, LTL and Truckload transportation designed for maximum asset utilization, and many other services that benefit you.\r\n\r\nOur transportation network provides a variety of products transportation services, such as general and priority package delivery, courier, and full-truckload services.\r\n\r\nWe commit to adapt to new developments throughout time in order to meet changing client demands and to do everything we can to give them an amazing service experience. We make sure that our logistics are supported by advanced analytics, smart technology, and lean operations, and that every shipment is carefully tracked and delivered.'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `user_id` int(11) NOT NULL, `user_company_name` varchar(255) DEFAULT NULL, `user_name` varchar(255) DEFAULT NULL, `user_password` varchar(255) NOT NULL, `user_vendor_type` varchar(255) DEFAULT NULL, `user_email` varchar(255) DEFAULT NULL, `user_country` varchar(255) DEFAULT NULL, `user_mobile` varchar(255) DEFAULT NULL, `user_session_key` varchar(255) DEFAULT NULL, `user_remember_me_token` varchar(255) DEFAULT NULL, `user_public_ip` varchar(255) DEFAULT NULL, `user_lockscreen` tinyint(1) DEFAULT 0 COMMENT '0 - false, 1- true', `user_img` varchar(255) DEFAULT NULL, `created_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`user_id`, `user_company_name`, `user_name`, `user_password`, `user_vendor_type`, `user_email`, `user_country`, `user_mobile`, `user_session_key`, `user_remember_me_token`, `user_public_ip`, `user_lockscreen`, `user_img`, `created_date`) VALUES (20, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Supplier', '<EMAIL>', 'United States of America', '2809824', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (24, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Agent', '<EMAIL>', 'United States of America', '3423423', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (25, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Customer', '<EMAIL>', 'United Kingdom', '98423', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (26, 'Xcrino Pvt Ltd', 'Neeraj', '<PASSWORD>', 'Customer', '<EMAIL>', NULL, '234234234', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (27, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '49237494', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (28, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '2342443', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (29, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '2342', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (30, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '234', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (31, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '34', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (32, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '234', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (33, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '7657', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (34, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '7657', NULL, NULL, NULL, 0, NULL, '2021-12-27 13:33:01'), (43, 'Infosys Pvt Limited', 'admin', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '2342342', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:38:00'), (44, 'Infosys Pvt Limited', 'PUhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '2342342', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:50:30'), (45, 'Infosys Pvt Limited', 'PUhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '2342342', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:51:00'), (46, 'Google ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '345454353', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:53:20'), (47, 'Google ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '345454353', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:56:00'), (48, 'Infosys Pvt Limited', 'Neeraj', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '234324', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:57:36'), (49, 'Infosys Pvt Limited', 'Neeraj', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Customer', '<EMAIL>', NULL, '234324', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:58:08'), (50, 'Infosys Pvt Limited', 'Neeraj', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Supplier', '<EMAIL>', NULL, '234324', NULL, NULL, NULL, 0, NULL, '2021-12-29 16:58:51'), (51, 'LPO', 'PUhupwas', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Customer', '<EMAIL>', NULL, '7979', NULL, NULL, NULL, 0, NULL, '2021-12-29 17:28:26'), (52, 'LPO', 'asdf', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Customer', '<EMAIL>', NULL, '72749224', NULL, NULL, NULL, 0, NULL, '2021-12-29 17:29:40'), (53, 'xcrind', 'Puhupwas', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Customer', '<EMAIL>', NULL, '24792847', NULL, NULL, NULL, 0, NULL, '2021-12-29 17:33:12'), (54, 'xljdl', 'dlfj', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Investor', 'sd@gad', NULL, '2423423', NULL, NULL, NULL, 0, NULL, '2021-12-29 17:35:06'), (55, 'XYZ', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '2423432', NULL, NULL, NULL, 0, NULL, '2022-01-01 15:03:54'), (56, 'Xcrino Pvt Ltd', 'Puhupwas', '<PASSWORD>', 'Investor', '<EMAIL>', NULL, '757657', NULL, NULL, NULL, 0, NULL, '2022-01-08 10:38:09'), (57, 'Xcrino Pvt Ltd', 'Puhupwas', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 'Investor', '<EMAIL>', NULL, '757657', NULL, NULL, NULL, 0, NULL, '2022-01-08 10:39:03'); -- -------------------------------------------------------- -- -- Table structure for table `user_contact_details` -- CREATE TABLE `user_contact_details` ( `ucd_id` int(11) NOT NULL, `ucd_name` varchar(255) DEFAULT NULL, `ucd_storage` varchar(255) DEFAULT NULL, `ucd_number` varchar(255) DEFAULT NULL, `ucd_email` varchar(255) NOT NULL, `ucd_storage_list` varchar(255) NOT NULL, `ucd_created_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `user_contact_details` -- INSERT INTO `user_contact_details` (`ucd_id`, `ucd_name`, `ucd_storage`, `ucd_number`, `ucd_email`, `ucd_storage_list`, `ucd_created_date`) VALUES (2, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'asdf', '2021-08-10 16:56:43'), (3, 'puhupwas', 'option2', '8510062896', 'pu<EMAIL>', 'lsjdflsflsdafsfs', '2021-08-10 18:08:18'), (4, 'puhupwas', 'option2', '8510062896', 'pu<EMAIL>', 'lsjdflsflsdafsfs', '2021-08-10 18:10:20'), (5, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'sadffsadfasdf sfsdfsdf', '2021-08-10 18:11:01'), (6, 'asdfjlsfjsl', 'option2', '8516166446', '<EMAIL>', 'aslfsdlfjsdflsdafsdfs', '2021-08-10 18:22:13'), (7, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'asdfsdafsa', '2021-08-10 18:27:38'), (8, 'phupwasffljl', 'option2', '9465164646', '<EMAIL>', 'slfjsadlf lsjdflsdaslj lsdf', '2021-08-10 18:29:18'), (9, 'phupwasffljl', 'option2', '9465164646', '<EMAIL>', 'slfjsadlf lsjdflsdaslj lsdf', '2021-08-10 18:37:06'), (10, 'phupwasffljl', 'option2', '9465164646', '<EMAIL>', 'slfjsadlf lsjdflsdaslj lsdf', '2021-08-10 18:37:48'), (11, 'phupwasffljl', 'option2', '9465164646', '<EMAIL>', 'slfjsadlf lsjdflsdaslj lsdf', '2021-08-10 18:39:04'), (12, 'phupwasffljl', 'option2', '9465164646', '<EMAIL>', 'slfjsadlf lsjdflsdaslj lsdf', '2021-08-10 18:50:10'), (13, 'phupwasffljl', 'option2', '9465164646', '<EMAIL>', 'asdfsd sfsdds sadfdfsdfas', '2021-08-10 18:50:19'), (14, 'puhupwas', 'option2', '9465164646', '<EMAIL>', 'asdfsd sfsdds sadfdfsdfas', '2021-08-10 18:51:16'), (15, 'puhupwas', 'option2', '9465164646', '<EMAIL>', 'asdfsd sfsdds sadfdfsdfas', '2021-08-10 18:53:41'), (16, 'Puhupwas', 'option2', '9213791237912', '<EMAIL>', 'let us store list', '2021-08-10 18:54:42'), (17, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'asdfsda sfsdfsdfsd', '2021-08-10 18:56:13'), (18, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'asdfsda sfsdfsdfsd', '2021-08-10 18:59:19'), (19, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'asdfsda sfsdfsdfsd', '2021-08-10 19:04:50'), (20, 'Puhupwas', 'option2', '496465465', '<EMAIL>', 'lsdjdfls lsadfljsdlfjsdfsdfsd ', '2021-08-10 19:05:10'), (21, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'sladfj saldfjlsdsa sadlfjls jsafsd dfs', '2021-08-10 19:05:53'), (22, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'sladfj saldfjlsdsa sadlfjls jsafsd dfs', '2021-08-10 19:09:53'), (23, 'let us store', 'option2', '196149894', '<EMAIL>', 'sladfj saldfjlsdsa sadlfjls jsafsd dfs', '2021-08-10 19:10:25'), (24, 'Puhupwas', 'option1', '196149894', '<EMAIL>', 'Storage 1 , Storage 2, Storage 3', '2021-08-10 19:11:52'), (25, 'Puhupwas', 'option1', '85131321466', '<EMAIL>', 'sdljf asldfjl slfjsdlf ', '2021-08-10 19:32:04'), (26, 'Puhupwas', 'option1', '98789165464', '<EMAIL>', 'fljsad assfljlf safldjflsad sdflsdlfsda', '2021-08-11 11:23:39'), (27, 'Puhupwas', 'option1', '196149894', '<EMAIL>', 'sdlfj assddflj ssdlafj sadlfj ssf', '2021-08-11 11:30:44'), (28, 'Puhupwas', 'option2', '196149894', '<EMAIL>', 'aslfjsl lsajfl asddlfj lasdf jsdlfsf', '2021-08-11 11:36:09'), (29, 'Puhupwas', 'option2', '656546546', '<EMAIL>', 'ldffjs lsdjfl sdldfjl ddff', '2021-08-11 15:29:24'), (30, 'Puhupwas', 'option1', '4985161', '<EMAIL>', 'sfsdf sdfsd sdfdfsdfsa sfdf', '2021-08-11 15:30:44'), (31, 'Puhupwas', 'option1', '4985161', '<EMAIL>', 'sdfs ssfdsfsd sfsdf dff', '2021-08-11 15:31:10'), (32, 'Puhupwas', 'option1', '984614616', '<EMAIL>', 'sdlf sadflj asdflsadj', '2021-08-11 15:44:24'), (33, 'Puhupwas', 'option1', '6765654', '<EMAIL>', 'aslddfj slddfj dfas', '2021-08-11 15:49:13'), (34, 'Test', 'option1', '+918009610334', '<EMAIL>', 'asf slfjds sddfsd sdf', '2021-08-11 15:51:38'), (35, 'Test', 'option1', '+918009610334', '<EMAIL>', 'asf slfjds sddfsd sdf', '2021-08-11 15:53:19'), (36, 'Test', 'option1', '+918009610334', '<EMAIL>', 'asdlfjsf asdlfjfs sfsldaj sadfsd', '2021-08-11 15:53:39'), (37, 'Test', 'option1', '+918009610334', '<EMAIL>', 'asdlfjsf asdlfjfs sfsldaj sadfsd', '2021-08-11 15:55:48'), (38, 'Puhupwas', 'option1', '196149894', '<EMAIL>', 'asaslfjsa sldfjsl asdfljdfsad saddf', '2021-08-11 15:56:14'), (39, 'Puhupwas', 'option1', '196149894', '<EMAIL>', 'asaslfjsa sldfjsl asdfljdfsad saddf', '2021-08-11 15:57:23'), (40, 'Test', 'option2', '+918009610334', '<EMAIL>', 'afljsd sljf sddfl sdf ljsdf sldjf dflsdd ddls', '2021-08-11 15:58:05'), (41, 'PUhupwas', 'option2', '1232132131', '<EMAIL>', 'sflj slfjl slddfjsd fsdf', '2021-08-11 16:10:51'), (42, 'Puhupwas', 'option2', '12321321321', '<EMAIL>', 'dsddflfj sdfljf sadfsd sdfd', '2021-08-11 16:12:14'), (43, 'Puhupwas', 'option2', '12321321321', '<EMAIL>', 'dsddflfj sdfljf sadfsd sdfd', '2021-08-11 16:13:07'), (44, 'Puhupwas', 'option2', '12321321321', '<EMAIL>', 'dsddflfj sdfljf sadfsd sdfd', '2021-08-11 16:13:29'), (45, 'Puhupwas ', 'option2', '8465465465', '<EMAIL>', 'asdf saflsaj sadfsd', '2021-08-11 16:13:57'), (46, 'Puhupwas', NULL, '464646546', '<EMAIL>', 'ljsadl sadfljsld sadf', '2021-08-11 16:15:22'), (47, 'Test', 'option2', '+918009610334', '<EMAIL>', 'sfsdd sasdfsdaf sadsfsdafsda ', '2021-08-11 16:26:54'), (48, 'Test', 'option1', '+918009610334', '<EMAIL>', 'sfsdasa safsda sadfsdf asfsa', '2021-08-11 16:31:03'), (49, 'Puhupwas', 'option1', '196149894', '<EMAIL>', 'aslfsd saddfljsda asdfsd sadfsd sadf', '2021-08-11 16:31:51'), (50, 'Test', NULL, '+918009610334', '<EMAIL>', 'slfd sdflj dsfds sfds sdf', '2021-08-11 16:32:44'), (51, 'Test', 'option1', '+918009610334', '<EMAIL>', 'safsdfasdf', '2021-08-11 16:36:22'), (52, 'Test', 'option1', '+918009610334', '<EMAIL>', ' 846 464 6464 ', '2021-08-11 19:03:08'), (53, 'Test', 'option1', '+918009610334', '<EMAIL>', 'salfjsldafsadf', '2021-08-11 19:09:56'), (54, 'Test', 'option2', '+918009610334', '<EMAIL>', 'sf', '2021-08-11 19:12:36'), (55, 'Test', 'option1', '+918009610334', '<EMAIL>', 'asdfsd sfsdds sadfdfsdfas', '2021-08-11 19:13:34'), (56, 'Puhupwas', 'option2', '455454664', '<EMAIL>', 'sdfdsfsdsd sdffsd', '2021-08-11 22:53:49'), (57, 'Puhupwas', 'option2', '455454664', '<EMAIL>', 'sdfdsfsdsd sdffsd', '2021-08-11 22:56:03'), (58, 'Puhupwas', 'option1', '23424232342', '<EMAIL>', 'sdfdsf', '2021-08-11 23:01:14'), (59, 'Puhupwas', 'option1', '23424232342', '<EMAIL>', 'sdfdsf', '2021-08-11 23:04:28'), (60, 'guh', 'option1', '23424232342', '<EMAIL>', 'ftygy7', '2021-08-11 23:06:04'), (61, 'warping machine 2 gas cylinder', 'option1', '23424232342', '<EMAIL>', 'dsfsdf fd', '2021-08-11 23:07:13'), (62, 'PuhupwasNeeraj', 'option1', '23424232342', '<EMAIL>', 'sdf asddfsf sfs dsfdsf ', '2021-08-11 23:54:55'), (63, 'Puhupwas', 'option1', 'ads', 'sdf', 'sdf', '2021-08-11 23:58:34'), (64, 'Puhupwas', 'option1', '23424232342', '<EMAIL>', 'sdf', '2021-08-11 23:59:44'), (65, 'Puhupwas', 'option1', '23424232342', '<EMAIL>', 'dsgdf dfg dsfgd dfg', '2021-08-12 00:04:07'), (66, 'Puhupwas', 'option1', '23424232342', '<EMAIL>', 'sdffgh gfghf ', '2021-08-12 00:11:57'), (67, 'Puhupwas', 'option1', '23424232342', '<EMAIL>', 'sdffgh gfghf ', '2021-08-12 00:13:48'), (68, 'puhup', 'option2', '23424232342', '<EMAIL>', 'df', '2021-08-12 00:14:15'), (69, 'sdf', NULL, '', 'sdf', 'sdf', '2021-08-12 00:16:27'), (70, 'warping machine 2 gas cylinder', 'option1', '23424232342', 'dsf', 'sdf', '2021-08-12 00:34:39'), (71, '<NAME>', 'option1', '3223432 ', '<EMAIL>', 'sdfsdfdsf', '2021-08-12 00:49:35'), (72, 'puhup', 'option2', '23432', '<EMAIL>', 'dsfds sdf sdfsdf', '2021-08-12 00:55:49'), (73, 'Sonu', 'option2', '123123213', '<EMAIL>', 'fsdjl sdfds dsf', '2021-08-12 01:01:40'), (74, 'Patanjay', 'option1', '34232342', '<EMAIL>', 'sdfdsf', '2021-08-12 01:04:33'), (75, 'Sonu', 'option2', '2321321321', '<EMAIL>', 'sdlfj sdfdsfs', '2021-08-12 01:11:23'), (76, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:14:32'), (77, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:15:54'), (78, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:17:56'), (79, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:18:05'), (80, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:22:20'), (81, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:26:54'), (82, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:27:26'), (83, 'Puhupwas', 'option2', '4564654646', '<EMAIL>', 'sddfsdf sdfds sdf', '2021-08-13 00:29:45'), (84, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 00:39:24'), (85, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 00:53:24'), (86, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 00:53:43'), (87, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 00:56:39'), (88, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:00:47'), (89, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:02:23'), (90, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:03:41'), (91, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:05:37'), (92, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:07:10'), (93, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:09:55'), (94, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:13:35'), (95, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:15:05'), (96, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:17:16'), (97, 'Puhupwas', 'option2', '64564564', '<EMAIL>', 'sdfd dfdsf dsf', '2021-08-13 01:19:22'), (98, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:19:10'), (99, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:19:45'), (100, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:26:44'), (101, 'Puhupwas', 'option2', '98981496', 'sdfsdaf@dafsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:27:19'), (102, 'Puhupwas', 'option2', '4651614', 'fsdfjlsdf@safsd', '65sfsdf df', '2021-08-13 12:35:28'), (103, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (104, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (105, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (106, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (107, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (108, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (109, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (110, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (111, 'Puhupwas', 'option2', '98981496', 'Puhupwas@adfsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:35:48'), (112, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:36:08'), (113, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:39:27'), (114, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:40:21'), (115, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:41:00'), (116, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:43:03'), (117, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:43:47'), (118, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:45:22'), (119, 'Puhupwas', 'option2', '98981496', 'sdfsdaf@dafsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:46:49'), (120, 'Puhupwas', 'option2', '98981496', 'sdfsdaf@dafsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:52:19'), (121, 'Puhupwas', 'option1', '98981496', 'pusoadlfjlsdf@asf', 'sdafsdfs', '2021-08-13 12:52:24'), (122, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 12:54:03'), (123, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:03:25'), (124, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:07:20'), (125, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:08:27'), (126, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:13:07'), (127, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:20:36'), (128, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:21:57'), (129, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:22:54'), (130, 'Puhupwas', 'option1', '98981496', 'puhupwas@sdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:25:23'), (131, 'Puhupwas', 'option1', '98981496', 'sdfsdaf@dafsdf', 'sdff sfldj lsadff lsdfjlsd sdf', '2021-08-13 13:26:28'); -- -------------------------------------------------------- -- -- Table structure for table `user_square_feet_detail` -- CREATE TABLE `user_square_feet_detail` ( `usfc_id` int(11) NOT NULL, `usfc_username` varchar(255) DEFAULT NULL, `usfc_email` varchar(255) DEFAULT NULL, `usfc_mobile_number` varchar(255) DEFAULT NULL, `usfc_square_feet` varchar(255) DEFAULT NULL, `usfc_user_cal_detail` varchar(255) NOT NULL, `usfc_created_date` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_square_feet_detail` -- INSERT INTO `user_square_feet_detail` (`usfc_id`, `usfc_username`, `usfc_email`, `usfc_mobile_number`, `usfc_square_feet`, `usfc_user_cal_detail`, `usfc_created_date`) VALUES (4, 'Puhupwas', 'Puhupwas@adfsdf', '1232', '64-84', '[{\"calName\":\"Mattress (Queen Bed)\",\"sqFeet\":\"8\"},{\"calName\":\"Mattress (King Bed)\",\"sqFeet\":\"5\"},{\"calName\":\"Almirah chest\",\"sqFeet\":\"6\"}]', '2021-08-13 11:11:17'), (5, 'Puhupwas', 'Puhupwas@adfsdf', '1232', '122.5-142.5', '[{\"calName\":\"Almirah Big\",\"sqFeet\":\"5\"},{\"calName\":\"Mattress (Queen Bed)\",\"sqFeet\":\"8\"},{\"calName\":\"Mattress (King Bed)\",\"sqFeet\":\"11\"},{\"calName\":\"Almirah chest\",\"sqFeet\":\"6\"}]', '2021-08-13 11:12:46'), (6, 'Puhupwas', '<EMAIL>', '798496464', '15.75-35.75', '[{\"calName\":\"Mattress (Single Bed)\",\"sqFeet\":\"3\"},{\"calName\":\"Mattress (Queen Bed)\",\"sqFeet\":\"2\"},{\"calName\":\"Office chair\",\"sqFeet\":\"3\"},{\"calName\":\"Study Lamp\",\"sqFeet\":\"2\"}]', '2021-08-16 11:33:20'), (7, 'Sonu', '<EMAIL>', '46546546564', '83-103', '[{\"calName\":\"Mattress (Queen Bed)\",\"sqFeet\":\"3\"},{\"calName\":\"Storage calculator 13\",\"sqFeet\":\"5\"}]', '2021-08-17 11:47:30'); -- -------------------------------------------------------- -- -- Table structure for table `utility_locker` -- CREATE TABLE `utility_locker` ( `ul_id` int(11) NOT NULL, `ul_title` varchar(255) NOT NULL, `ul_image` varchar(255) NOT NULL, `ul_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `utility_locker` -- INSERT INTO `utility_locker` (`ul_id`, `ul_title`, `ul_image`, `ul_desc`) VALUES (63, 'Secure Utility Lockers', 'uploads/utility_locker/file_610a876068b0e1628079968.jpg', 'For the ultimate safety and protection of your personal belongings, trust our Utility lockers. The sturdy cabinets are built with steel and have ideal space (16” X 18” X 24”), and can store up to 30 business files or the equivalent of a business briefcase. Our safe and secure short / long term storage solutions also have the facility to receive mail & packages on behalf of our clients.\r\n\r\nStore your confidential and important documents conveniently in a safe, reasonably sized, and secure location without the need to roll or fold as in a bank locker. Whether you are a Managing Director or Business Owner, rest assured your documents are safe from prying eyes. We keep a vigilant eye on our utility lockers and do not allow any solicitation on our premises. We safeguard your valuable documents as we would our own. Our utility lockers have a built-in mail drop, allowing you to receive confidential mail in your very own individual Let Us Store mail-box. Moreover, we value your privacy and our corporate policy is not to disclose our clients’ personal information without prior written permission.'); -- -------------------------------------------------------- -- -- Table structure for table `vendors` -- CREATE TABLE `vendors` ( `vendor_id` int(11) NOT NULL, `vendor_comp_name` varchar(255) DEFAULT NULL, `vendor_comp_phone` varchar(255) DEFAULT NULL, `vendor_comp_email` varchar(255) DEFAULT NULL, `vendor_comp_addr` varchar(255) DEFAULT NULL, `vendor_comp_country` varchar(255) DEFAULT NULL, `vendor_comp_state` varchar(255) DEFAULT NULL, `vendor_comp_city` varchar(255) DEFAULT NULL, `vendor_comp_pincode` varchar(255) DEFAULT NULL, `vendor_name` varchar(255) DEFAULT NULL, `vendor_phone` varchar(255) DEFAULT NULL, `vendor_addr` varchar(255) DEFAULT NULL, `vendor_bank_name` varchar(255) DEFAULT NULL, `vendor_branch_name` varchar(255) DEFAULT NULL, `vendor_account_no` varchar(255) DEFAULT NULL, `vendor_ifsc_code` varchar(255) DEFAULT NULL, `vendor_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `vend_purchase_order` -- CREATE TABLE `vend_purchase_order` ( `vpo_id` int(11) NOT NULL, `vpo_vendor_id` int(11) NOT NULL, `vpo_category` varchar(255) DEFAULT NULL, `vpo_date` date DEFAULT NULL, `vpo_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `warehouse` -- CREATE TABLE `warehouse` ( `w_id` int(11) NOT NULL, `w_title` varchar(255) NOT NULL, `w_image` varchar(255) NOT NULL, `w_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `warehouse` -- INSERT INTO `warehouse` (`w_id`, `w_title`, `w_image`, `w_desc`) VALUES (117, 'Warehouse', 'uploads/warehouse/file_61dc08a1456251641810081.jpg', 'Are you seeking for the ideal location to store your merchandise? With superior warehouse and logistics services and effective inventory management? If that\'s the case, you\'ve come to the correct spot. Letsusstore is the best place to go for Custom Warehouse Solutions that will meet your shipping needs. We have trained manpower to help and manage warehouses .\r\n\r\nWe provide warehouses on rent ,you can also rent a godownwith us.\r\nWe provide PanIndia warehousing services that are of the highest quality and take the utmost care of your assets.Our services are strengthened by a team of highly experienced experts. Our extensive industry knowledge, in-depth market research, and continuous dedication to quality have resulted in timely and efficient shipping across the country. We\'re also dedicated to providing you with safe and secure services, including 24-hour security, fire extinguisher, and hydrant, CCTV monitoring, a convenient location, and customer service.\r\n\r\nWe pledge that we will not make any inaccuracies! With precise and effective inventory management, essential activities and correct handling of goods, optimum selection of items with the best space usage, we will take care of your treasures. We will do all possible to protect and care for your belongings. We have warehouses in a variety of cities, and warehouses near me will show you the closest one to your home.'), (120, 'Shed', '', 'The roof is equivalently important for the building like a foundation to provide security. We provide good quality stainless steel shed for roofing purposes for the warehouse. Our shed is strong and rustproof and lasts for a long time. We offer premium quality sheds at a genuine price.'), (122, 'RCC', '', 'Our RCC services are best-in-class when it comes to premium quality construction for buildings, especially the warehouse. Our service adds more strength to the concrete that contributes towards the strong construction of the warehouse. You can bank upon us for complete assurance about the safety of the constructed building.'), (123, 'BTS', '', 'We understand that every client is different and has different needs. So, we offer our BTS service where we construct the warehouse that is exactly suitable for your business needs. Based on the clients\' requirements, we develop a warehouse that perfectly accommodates a client’s business.'); -- -------------------------------------------------------- -- -- Table structure for table `warehouse1` -- CREATE TABLE `warehouse1` ( `w_id` int(11) NOT NULL, `w_title` varchar(255) DEFAULT NULL, `w_image` varchar(255) DEFAULT NULL, `w_desc` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `waste_management` -- CREATE TABLE `waste_management` ( `w_id` int(11) NOT NULL, `w_title` varchar(255) NOT NULL, `w_image` varchar(255) NOT NULL, `w_desc` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `waste_management` -- INSERT INTO `waste_management` (`w_id`, `w_title`, `w_image`, `w_desc`) VALUES (117, 'Waste Management', 'uploads/waste_management/file_61dc3b08231e01641822984.jpg', 'We are an environmental responsible company and also offers waste management services. We pick up e-waste and packed food waste from various business units such as factory, offices and warehouse. After waste collection we recycle the e-waste for its further usage. We do the waste management in the best possible manner so that the generated waste does not cause any harm to the environment.'); -- -- Indexes for dumped tables -- -- -- Indexes for table `about_ceo` -- ALTER TABLE `about_ceo` ADD PRIMARY KEY (`ac_id`); -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`admin_id`), ADD UNIQUE KEY `admin_session_key` (`admin_session_key`), ADD UNIQUE KEY `admin_name` (`admin_name`); -- -- Indexes for table `banner_image` -- ALTER TABLE `banner_image` ADD PRIMARY KEY (`bi_id`); -- -- Indexes for table `benefits` -- ALTER TABLE `benefits` ADD PRIMARY KEY (`benefit_id`); -- -- Indexes for table `bike_storage` -- ALTER TABLE `bike_storage` ADD PRIMARY KEY (`bks_id`); -- -- Indexes for table `blogs` -- ALTER TABLE `blogs` ADD PRIMARY KEY (`blog_id`); -- -- Indexes for table `box_storage` -- ALTER TABLE `box_storage` ADD PRIMARY KEY (`bs_id`); -- -- Indexes for table `bts` -- ALTER TABLE `bts` ADD PRIMARY KEY (`b_id`); -- -- Indexes for table `chennai` -- ALTER TABLE `chennai` ADD PRIMARY KEY (`c_id`); -- -- Indexes for table `clamper` -- ALTER TABLE `clamper` ADD PRIMARY KEY (`c_id`); -- -- Indexes for table `contact_us` -- ALTER TABLE `contact_us` ADD PRIMARY KEY (`cu_id`); -- -- Indexes for table `corpoate_responsibility_initiative` -- ALTER TABLE `corpoate_responsibility_initiative` ADD PRIMARY KEY (`cri_id`); -- -- Indexes for table `covid_precautions` -- ALTER TABLE `covid_precautions` ADD PRIMARY KEY (`cp_id`); -- -- Indexes for table `d2c_services` -- ALTER TABLE `d2c_services` ADD PRIMARY KEY (`d_id`); -- -- Indexes for table `delhi_mundka` -- ALTER TABLE `delhi_mundka` ADD PRIMARY KEY (`dm_id`); -- -- Indexes for table `deo` -- ALTER TABLE `deo` ADD PRIMARY KEY (`d_id`); -- -- Indexes for table `distribution_services` -- ALTER TABLE `distribution_services` ADD PRIMARY KEY (`d_id`); -- -- Indexes for table `faqs` -- ALTER TABLE `faqs` ADD PRIMARY KEY (`f_id`); -- -- Indexes for table `forklift` -- ALTER TABLE `forklift` ADD PRIMARY KEY (`f_id`); -- -- Indexes for table `gallery` -- ALTER TABLE `gallery` ADD PRIMARY KEY (`gallery_id`); -- -- Indexes for table `goa` -- ALTER TABLE `goa` ADD PRIMARY KEY (`g_id`); -- -- Indexes for table `gurgaon_hondachowk` -- ALTER TABLE `gurgaon_hondachowk` ADD PRIMARY KEY (`ghc_id`); -- -- Indexes for table `hardware` -- ALTER TABLE `hardware` ADD PRIMARY KEY (`h_id`); -- -- Indexes for table `home` -- ALTER TABLE `home` ADD PRIMARY KEY (`home_id`); -- -- Indexes for table `hpt` -- ALTER TABLE `hpt` ADD PRIMARY KEY (`h_id`); -- -- Indexes for table `hyderabad` -- ALTER TABLE `hyderabad` ADD PRIMARY KEY (`h_id`); -- -- Indexes for table `investor` -- ALTER TABLE `investor` ADD PRIMARY KEY (`i_id`); -- -- Indexes for table `kolkatta` -- ALTER TABLE `kolkatta` ADD PRIMARY KEY (`k_id`); -- -- Indexes for table `land` -- ALTER TABLE `land` ADD PRIMARY KEY (`l_id`); -- -- Indexes for table `letusstore.about_ceo` -- ALTER TABLE `letusstore.about_ceo` ADD PRIMARY KEY (`cp_id`); -- -- Indexes for table `loaders` -- ALTER TABLE `loaders` ADD PRIMARY KEY (`l_id`); -- -- Indexes for table `manpower` -- ALTER TABLE `manpower` ADD PRIMARY KEY (`m_id`); -- -- Indexes for table `material_handling` -- ALTER TABLE `material_handling` ADD PRIMARY KEY (`m_id`); -- -- Indexes for table `mumbai` -- ALTER TABLE `mumbai` ADD PRIMARY KEY (`m_id`); -- -- Indexes for table `news` -- ALTER TABLE `news` ADD PRIMARY KEY (`news_id`); -- -- Indexes for table `pickers_and_packers` -- ALTER TABLE `pickers_and_packers` ADD PRIMARY KEY (`p_id`); -- -- Indexes for table `primary_service` -- ALTER TABLE `primary_service` ADD PRIMARY KEY (`p_id`); -- -- Indexes for table `privacy_policy` -- ALTER TABLE `privacy_policy` ADD PRIMARY KEY (`pp_id`); -- -- Indexes for table `private_rooms` -- ALTER TABLE `private_rooms` ADD PRIMARY KEY (`pr_id`); -- -- Indexes for table `pune_ranjangaon` -- ALTER TABLE `pune_ranjangaon` ADD PRIMARY KEY (`prg_id`); -- -- Indexes for table `rcc` -- ALTER TABLE `rcc` ADD PRIMARY KEY (`r_id`); -- -- Indexes for table `requests` -- ALTER TABLE `requests` ADD PRIMARY KEY (`r_id`); -- -- Indexes for table `request_invoice` -- ALTER TABLE `request_invoice` ADD PRIMARY KEY (`ri_id`); -- -- Indexes for table `secondary_service` -- ALTER TABLE `secondary_service` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `security` -- ALTER TABLE `security` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `service` -- ALTER TABLE `service` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `shed` -- ALTER TABLE `shed` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `size_guide` -- ALTER TABLE `size_guide` ADD PRIMARY KEY (`sg_id`); -- -- Indexes for table `size_guide_location` -- ALTER TABLE `size_guide_location` ADD PRIMARY KEY (`sgl_id`); -- -- Indexes for table `software` -- ALTER TABLE `software` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `stackers` -- ALTER TABLE `stackers` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `storage_calculator` -- ALTER TABLE `storage_calculator` ADD PRIMARY KEY (`sc_id`); -- -- Indexes for table `storage_calculator_categories` -- ALTER TABLE `storage_calculator_categories` ADD PRIMARY KEY (`scc_id`); -- -- Indexes for table `supervisor` -- ALTER TABLE `supervisor` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `supplier_products` -- ALTER TABLE `supplier_products` ADD PRIMARY KEY (`sp_id`); -- -- Indexes for table `technology` -- ALTER TABLE `technology` ADD PRIMARY KEY (`t_id`); -- -- Indexes for table `terms_and_conditions` -- ALTER TABLE `terms_and_conditions` ADD PRIMARY KEY (`tac_id`); -- -- Indexes for table `testimonial` -- ALTER TABLE `testimonial` ADD PRIMARY KEY (`t_id`); -- -- Indexes for table `three_pl` -- ALTER TABLE `three_pl` ADD PRIMARY KEY (`t_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`user_id`), ADD UNIQUE KEY `admin_session_key` (`user_session_key`); -- -- Indexes for table `user_contact_details` -- ALTER TABLE `user_contact_details` ADD PRIMARY KEY (`ucd_id`); -- -- Indexes for table `user_square_feet_detail` -- ALTER TABLE `user_square_feet_detail` ADD PRIMARY KEY (`usfc_id`); -- -- Indexes for table `utility_locker` -- ALTER TABLE `utility_locker` ADD PRIMARY KEY (`ul_id`); -- -- Indexes for table `vendors` -- ALTER TABLE `vendors` ADD PRIMARY KEY (`vendor_id`); -- -- Indexes for table `vend_purchase_order` -- ALTER TABLE `vend_purchase_order` ADD PRIMARY KEY (`vpo_id`), ADD KEY `vpo_vendor_id` (`vpo_vendor_id`); -- -- Indexes for table `warehouse` -- ALTER TABLE `warehouse` ADD PRIMARY KEY (`w_id`); -- -- Indexes for table `warehouse1` -- ALTER TABLE `warehouse1` ADD PRIMARY KEY (`w_id`); -- -- Indexes for table `waste_management` -- ALTER TABLE `waste_management` ADD PRIMARY KEY (`w_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `about_ceo` -- ALTER TABLE `about_ceo` MODIFY `ac_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=59; -- -- AUTO_INCREMENT for table `admin` -- ALTER TABLE `admin` MODIFY `admin_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `banner_image` -- ALTER TABLE `banner_image` MODIFY `bi_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81; -- -- AUTO_INCREMENT for table `benefits` -- ALTER TABLE `benefits` MODIFY `benefit_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=59; -- -- AUTO_INCREMENT for table `bike_storage` -- ALTER TABLE `bike_storage` MODIFY `bks_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56; -- -- AUTO_INCREMENT for table `blogs` -- ALTER TABLE `blogs` MODIFY `blog_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=68; -- -- AUTO_INCREMENT for table `box_storage` -- ALTER TABLE `box_storage` MODIFY `bs_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `bts` -- ALTER TABLE `bts` MODIFY `b_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=120; -- -- AUTO_INCREMENT for table `chennai` -- ALTER TABLE `chennai` MODIFY `c_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `clamper` -- ALTER TABLE `clamper` MODIFY `c_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `contact_us` -- ALTER TABLE `contact_us` MODIFY `cu_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87; -- -- AUTO_INCREMENT for table `corpoate_responsibility_initiative` -- ALTER TABLE `corpoate_responsibility_initiative` MODIFY `cri_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84; -- -- AUTO_INCREMENT for table `covid_precautions` -- ALTER TABLE `covid_precautions` MODIFY `cp_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=92; -- -- AUTO_INCREMENT for table `d2c_services` -- ALTER TABLE `d2c_services` MODIFY `d_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `delhi_mundka` -- ALTER TABLE `delhi_mundka` MODIFY `dm_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65; -- -- AUTO_INCREMENT for table `deo` -- ALTER TABLE `deo` MODIFY `d_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=119; -- -- AUTO_INCREMENT for table `distribution_services` -- ALTER TABLE `distribution_services` MODIFY `d_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=121; -- -- AUTO_INCREMENT for table `faqs` -- ALTER TABLE `faqs` MODIFY `f_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `forklift` -- ALTER TABLE `forklift` MODIFY `f_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `gallery` -- ALTER TABLE `gallery` MODIFY `gallery_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=63; -- -- AUTO_INCREMENT for table `goa` -- ALTER TABLE `goa` MODIFY `g_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `gurgaon_hondachowk` -- ALTER TABLE `gurgaon_hondachowk` MODIFY `ghc_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72; -- -- AUTO_INCREMENT for table `hardware` -- ALTER TABLE `hardware` MODIFY `h_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `home` -- ALTER TABLE `home` MODIFY `home_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `hpt` -- ALTER TABLE `hpt` MODIFY `h_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `hyderabad` -- ALTER TABLE `hyderabad` MODIFY `h_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `investor` -- ALTER TABLE `investor` MODIFY `i_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=119; -- -- AUTO_INCREMENT for table `kolkatta` -- ALTER TABLE `kolkatta` MODIFY `k_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `land` -- ALTER TABLE `land` MODIFY `l_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=119; -- -- AUTO_INCREMENT for table `letusstore.about_ceo` -- ALTER TABLE `letusstore.about_ceo` MODIFY `cp_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `loaders` -- ALTER TABLE `loaders` MODIFY `l_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `manpower` -- ALTER TABLE `manpower` MODIFY `m_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=123; -- -- AUTO_INCREMENT for table `material_handling` -- ALTER TABLE `material_handling` MODIFY `m_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=122; -- -- AUTO_INCREMENT for table `mumbai` -- ALTER TABLE `mumbai` MODIFY `m_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `news` -- ALTER TABLE `news` MODIFY `news_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76; -- -- AUTO_INCREMENT for table `pickers_and_packers` -- ALTER TABLE `pickers_and_packers` MODIFY `p_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=119; -- -- AUTO_INCREMENT for table `primary_service` -- ALTER TABLE `primary_service` MODIFY `p_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `privacy_policy` -- ALTER TABLE `privacy_policy` MODIFY `pp_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `private_rooms` -- ALTER TABLE `private_rooms` MODIFY `pr_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `pune_ranjangaon` -- ALTER TABLE `pune_ranjangaon` MODIFY `prg_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `rcc` -- ALTER TABLE `rcc` MODIFY `r_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=129; -- -- AUTO_INCREMENT for table `requests` -- ALTER TABLE `requests` MODIFY `r_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `request_invoice` -- ALTER TABLE `request_invoice` MODIFY `ri_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61; -- -- AUTO_INCREMENT for table `secondary_service` -- ALTER TABLE `secondary_service` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `security` -- ALTER TABLE `security` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `service` -- ALTER TABLE `service` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `shed` -- ALTER TABLE `shed` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=127; -- -- AUTO_INCREMENT for table `size_guide` -- ALTER TABLE `size_guide` MODIFY `sg_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67; -- -- AUTO_INCREMENT for table `size_guide_location` -- ALTER TABLE `size_guide_location` MODIFY `sgl_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `software` -- ALTER TABLE `software` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `stackers` -- ALTER TABLE `stackers` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `storage_calculator` -- ALTER TABLE `storage_calculator` MODIFY `sc_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=59; -- -- AUTO_INCREMENT for table `storage_calculator_categories` -- ALTER TABLE `storage_calculator_categories` MODIFY `scc_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `supervisor` -- ALTER TABLE `supervisor` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `supplier_products` -- ALTER TABLE `supplier_products` MODIFY `sp_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `technology` -- ALTER TABLE `technology` MODIFY `t_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=120; -- -- AUTO_INCREMENT for table `terms_and_conditions` -- ALTER TABLE `terms_and_conditions` MODIFY `tac_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75; -- -- AUTO_INCREMENT for table `testimonial` -- ALTER TABLE `testimonial` MODIFY `t_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73; -- -- AUTO_INCREMENT for table `three_pl` -- ALTER TABLE `three_pl` MODIFY `t_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58; -- -- AUTO_INCREMENT for table `user_contact_details` -- ALTER TABLE `user_contact_details` MODIFY `ucd_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=132; -- -- AUTO_INCREMENT for table `user_square_feet_detail` -- ALTER TABLE `user_square_feet_detail` MODIFY `usfc_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `utility_locker` -- ALTER TABLE `utility_locker` MODIFY `ul_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `vendors` -- ALTER TABLE `vendors` MODIFY `vendor_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vend_purchase_order` -- ALTER TABLE `vend_purchase_order` MODIFY `vpo_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `warehouse` -- ALTER TABLE `warehouse` MODIFY `w_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=125; -- -- AUTO_INCREMENT for table `warehouse1` -- ALTER TABLE `warehouse1` MODIFY `w_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=124; -- -- AUTO_INCREMENT for table `waste_management` -- ALTER TABLE `waste_management` MODIFY `w_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; 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 */;
/* Navicat Premium Data Transfer Source Server : local-mysql Source Server Type : MySQL Source Server Version : 100413 Source Host : localhost:3306 Source Schema : talentcourse Target Server Type : MySQL Target Server Version : 100413 File Encoding : 65001 Date: 03/11/2020 08:27:29 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for m_diskon -- ---------------------------- DROP TABLE IF EXISTS `m_diskon`; CREATE TABLE `m_diskon` ( `id` int(64) NOT NULL AUTO_INCREMENT, `nama` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `besaran` int(20) NULL DEFAULT NULL COMMENT 'dalam persen', `kode_ref_diskon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of m_diskon -- ---------------------------- INSERT INTO `m_diskon` VALUES (1, 'Diskon Akhir Tahun', 25, 'NewYear2020', '2020-10-17 21:58:14', NULL, NULL); -- ---------------------------- -- Table structure for m_menu -- ---------------------------- DROP TABLE IF EXISTS `m_menu`; CREATE TABLE `m_menu` ( `id` int(11) NOT NULL, `id_parent` int(11) NOT NULL, `nama` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `judul` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `link` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `icon` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `aktif` int(1) NULL DEFAULT NULL, `tingkat` int(11) NULL DEFAULT NULL, `urutan` int(11) NULL DEFAULT NULL, `add_button` int(1) NULL DEFAULT NULL, `edit_button` int(1) NULL DEFAULT NULL, `delete_button` int(1) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = COMPACT; -- ---------------------------- -- Records of m_menu -- ---------------------------- INSERT INTO `m_menu` VALUES (1, 0, 'Dashboard', 'Dashboard', 'home', 'flaticon2-architecture-and-city', 1, 1, 1, 0, 0, 0); INSERT INTO `m_menu` VALUES (2, 0, 'Setting (Administrator)', 'Setting', NULL, 'flaticon2-gear', 1, 1, 5, 0, 0, 0); INSERT INTO `m_menu` VALUES (3, 2, 'Setting Menu', 'Setting Menu', 'set_menu', 'flaticon-grid-menu', 1, 2, 2, 1, 1, 1); INSERT INTO `m_menu` VALUES (4, 2, 'Setting Role', 'Setting Role', 'set_role', 'flaticon-network', 1, 2, 1, 1, 1, 1); INSERT INTO `m_menu` VALUES (6, 0, 'Master', 'Master', '', 'flaticon-folder-1', 1, 1, 2, 0, 0, 0); INSERT INTO `m_menu` VALUES (7, 6, 'Data User', 'Data User', 'master_user', 'flaticon-users', 1, 2, 1, 1, 1, 1); INSERT INTO `m_menu` VALUES (8, 6, 'Data Diskon', 'Master Data Diskon', 'master_diskon', 'flaticon-price-tag', 1, 2, 2, 1, 1, 1); INSERT INTO `m_menu` VALUES (9, 0, 'Manajemen Konten', 'Manajemen Konten', '', 'flaticon-profile', 1, 1, 3, 0, 0, 0); INSERT INTO `m_menu` VALUES (10, 9, 'Setting Harga', 'Setting Harga', 'set_harga', 'flaticon2-shopping-cart', 1, 2, 1, 1, 1, 1); INSERT INTO `m_menu` VALUES (11, 6, 'Data Talent', 'Master Data Talent', 'master_talent', 'flaticon-customer', 1, 2, 3, 1, 1, 1); INSERT INTO `m_menu` VALUES (12, 9, 'Setting Aktif Talent', 'Setting Aktif Talent', 'set_aktif_talent', 'flaticon-user', 1, 2, 2, 1, 1, 1); INSERT INTO `m_menu` VALUES (13, 9, 'Set Galeri Konten', 'Set Galeri Konten', 'set_galeri_konten', 'flaticon-user-settings', 1, 2, 3, 1, 1, 1); INSERT INTO `m_menu` VALUES (14, 0, 'Laporan', 'Laporan', '', 'flaticon-graph', 1, 1, 5, 0, 0, 0); INSERT INTO `m_menu` VALUES (15, 9, 'Setting Video Konten', 'Setting Video Konten', 'set_video_konten', 'flaticon-technology-2', 1, 2, 4, 1, 1, 1); INSERT INTO `m_menu` VALUES (16, 14, 'Laporan Penjualan', 'Laporan Penjualan', 'lap_penjualan', 'flaticon-statistics', 1, 2, 1, 1, 1, 1); INSERT INTO `m_menu` VALUES (17, 0, 'Transaksi', 'Transaksi', '', 'flaticon-list', 1, 1, 4, 0, 0, 0); INSERT INTO `m_menu` VALUES (18, 17, 'Konfirmasi Penjualan', 'Konfirmasi Penjualan', 'confirm_jual', 'flaticon-interface-10', 1, 2, 1, 1, 1, 1); INSERT INTO `m_menu` VALUES (19, 17, 'Input Transaksi Manual', 'Input Transaksi Manual', 'trans_manual', 'flaticon-notes', 1, 2, 2, 1, 1, 1); -- ---------------------------- -- Table structure for m_role -- ---------------------------- DROP TABLE IF EXISTS `m_role`; CREATE TABLE `m_role` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nama` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `keterangan` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT '', `aktif` int(1) NULL DEFAULT 1, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = COMPACT; -- ---------------------------- -- Records of m_role -- ---------------------------- INSERT INTO `m_role` VALUES (1, 'Administrator', 'Level Administrator Role', 1); INSERT INTO `m_role` VALUES (2, 'Staff Admin', 'Role Untuk Staff Admin', 1); -- ---------------------------- -- Table structure for m_talent -- ---------------------------- DROP TABLE IF EXISTS `m_talent`; CREATE TABLE `m_talent` ( `id` int(11) NOT NULL, `nama` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `deskripsi` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `created_at` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `akun_ig` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `akun_fb` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `akun_tw` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `foto` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `foto_thumb` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of m_talent -- ---------------------------- INSERT INTO `m_talent` VALUES (1, '<NAME>', '<p>asasa</p>', '2020-10-19 22:08:44', '2020-10-27 23:15:12', NULL, '', '', '', 'files/img/talent_img/1/via-vallen-1603120124.jpg', 'files/img/talent_img/1/thumbs/via-vallen-1603120124_thumb.jpg'); INSERT INTO `m_talent` VALUES (2, 'anton', '<p>askjdkasjdkasjd kasdjkas jdkasjd kasjdkajs kajsd</p>\n\n<p>anmsmansm</p>', '2020-10-19 22:14:23', '2020-10-19 22:22:19', '2020-10-27 23:14:51', 'asa', 'asasaaaaa', 'as', 'files/img/talent_img/2/anton-1603120939.jpg', 'files/img/talent_img/2/thumbs/anton-1603120939_thumb.jpg'); -- ---------------------------- -- Table structure for m_user -- ---------------------------- DROP TABLE IF EXISTS `m_user`; CREATE TABLE `m_user` ( `id` int(64) NOT NULL AUTO_INCREMENT, `id_role` int(64) NULL DEFAULT NULL, `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `status` int(1) NULL DEFAULT NULL, `last_login` datetime(0) NULL DEFAULT NULL, `kode_user` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `foto` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of m_user -- ---------------------------- INSERT INTO `m_user` VALUES (1, 1, 'admin', 'Sn<PASSWORD>Wh<PASSWORD>', 1, '2020-11-03 07:58:41', 'USR-00001', NULL, NULL, NULL, NULL); INSERT INTO `m_user` VALUES (2, 1, 'coba', 'Tzg1eTllUlU2a2xNQk5yYktIM1pwUT09', NULL, NULL, 'USR-00002', 'coba-1602775328.jpg', '2020-10-15 22:22:08', '2020-10-15 22:43:54', '2020-10-15 22:58:50'); -- ---------------------------- -- Table structure for t_aktif_talent -- ---------------------------- DROP TABLE IF EXISTS `t_aktif_talent`; CREATE TABLE `t_aktif_talent` ( `id` int(11) NOT NULL, `id_talent` int(11) NULL DEFAULT NULL, `created_at` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `deleted_at` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_aktif_talent -- ---------------------------- INSERT INTO `t_aktif_talent` VALUES (1, 1, '2020-10-22 21:51:45', NULL, NULL); -- ---------------------------- -- Table structure for t_checkout -- ---------------------------- DROP TABLE IF EXISTS `t_checkout`; CREATE TABLE `t_checkout` ( `id` int(64) NOT NULL AUTO_INCREMENT, `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `nama` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `telp` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `keterangan` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'reguler/eksklusif', `harga` double(20, 2) NULL DEFAULT NULL, `harga_bruto` float(20, 2) NULL DEFAULT NULL COMMENT 'harga+ongkir', `order_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `alamat` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, `is_confirm` int(1) NULL DEFAULT NULL, `status_confirm` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'diterima, pending, dibatalkan', `path_file` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `path_thumb` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `is_manual` int(1) NULL DEFAULT NULL COMMENT '1 : manual, null : payment gateway', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_checkout -- ---------------------------- INSERT INTO `t_checkout` VALUES (1, '<EMAIL>', '<NAME>', '121212', 'reguler', 600000.00, 604000.00, '749680872', 'asjaksjkasjaksjaksja', '2020-10-31 19:41:24', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `t_checkout` VALUES (2, '<EMAIL>', 'yoyok', '172817281728', 'eksklusif', 1100000.00, 1100000.00, 'MT-mnmJ15WP', 'jasauiausi', '2020-11-03 08:25:57', NULL, NULL, NULL, NULL, 'files/img/bukti_bayar/yoyok-1604366757.jpg', 'files/img/bukti_bayar/thumbs/yoyok-1604366757_thumb.jpg', 1); -- ---------------------------- -- Table structure for t_email -- ---------------------------- DROP TABLE IF EXISTS `t_email`; CREATE TABLE `t_email` ( `id` int(64) NOT NULL AUTO_INCREMENT, `id_checkout` int(64) NULL DEFAULT NULL, `isi_email` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_email -- ---------------------------- -- ---------------------------- -- Table structure for t_file_talent -- ---------------------------- DROP TABLE IF EXISTS `t_file_talent`; CREATE TABLE `t_file_talent` ( `id` int(64) NOT NULL, `id_talent` int(64) NULL DEFAULT NULL, `path_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `path_file_thumb` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_file_talent -- ---------------------------- INSERT INTO `t_file_talent` VALUES (1, 1, 'files/img/talent_img/1/1-via-vallen-1603125855.jpg', 'files/img/talent_img/1/thumbs/1-via-vallen-1603125855_thumb.jpg', '2020-10-19 23:44:15', NULL, '2020-10-24 22:54:05'); INSERT INTO `t_file_talent` VALUES (2, 1, 'files/img/talent_img/2/2-via-vallen-1603126013.jpg', 'files/img/talent_img/1/thumbs/2-via-vallen-1603126013_thumb.jpg', '2020-10-19 23:46:53', NULL, '2020-10-24 22:54:09'); INSERT INTO `t_file_talent` VALUES (3, 1, 'files/img/talent_img/3/3-via-vallen-1603209362.jpg', 'files/img/talent_img/1/thumbs/3-via-vallen-1603209362_thumb.jpg', '2020-10-20 22:56:02', NULL, '2020-10-24 22:54:14'); INSERT INTO `t_file_talent` VALUES (4, 1, 'files/img/talent_img/1/4-via-vallen-1603210084.jpeg', 'files/img/talent_img/1/thumbs/4-via-vallen-1603210084_thumb.jpeg', '2020-10-20 23:08:04', NULL, '2020-10-24 22:54:17'); INSERT INTO `t_file_talent` VALUES (5, 2, 'files/img/talent_img/2/5-anton-1603244548.jpg', 'files/img/talent_img/2/thumbs/5-anton-1603244548_thumb.jpg', '2020-10-21 08:42:28', NULL, NULL); INSERT INTO `t_file_talent` VALUES (6, 2, 'files/img/talent_img/2/6-anton-1603244580.jpg', 'files/img/talent_img/2/thumbs/6-anton-1603244580_thumb.jpg', '2020-10-21 08:43:00', NULL, NULL); INSERT INTO `t_file_talent` VALUES (7, 1, 'files/img/talent_img/1/7-via-vallen-1603383129.jpg', 'files/img/talent_img/1/thumbs/7-via-vallen-1603383129_thumb.jpg', '2020-10-22 23:12:09', NULL, '2020-10-24 22:54:21'); INSERT INTO `t_file_talent` VALUES (8, 1, 'files/img/talent_img/1/8-via-vallen-1603383332.jpg', 'files/img/talent_img/1/thumbs/8-via-vallen-1603383332_thumb.jpg', '2020-10-22 23:15:32', NULL, '2020-10-24 22:54:26'); INSERT INTO `t_file_talent` VALUES (9, 1, 'files/img/talent_img/1/9-via-vallen-1603383428.jpg', 'files/img/talent_img/1/thumbs/9-via-vallen-1603383428_thumb.jpg', '2020-10-22 23:17:08', NULL, '2020-10-24 22:54:31'); INSERT INTO `t_file_talent` VALUES (10, 1, 'files/img/talent_img/1/10-via-vallen-1603383925.jpg', 'files/img/talent_img/1/thumbs/10-via-vallen-1603383925_thumb.jpg', '2020-10-22 23:25:25', NULL, '2020-10-24 22:54:35'); INSERT INTO `t_file_talent` VALUES (11, 1, 'files/img/talent_img/1/11-via-vallen-1603384021.jpg', 'files/img/talent_img/1/thumbs/11-via-vallen-1603384021_thumb.jpg', '2020-10-22 23:27:01', NULL, '2020-10-24 22:54:40'); INSERT INTO `t_file_talent` VALUES (12, 1, 'files/img/talent_img/1/12-via-vallen-1603384282.jpg', 'files/img/talent_img/1/thumbs/12-via-vallen-1603384282_thumb.jpg', '2020-10-22 23:31:22', NULL, '2020-10-24 22:54:42'); INSERT INTO `t_file_talent` VALUES (13, 1, 'files/img/talent_img/1/13-via-vallen-1603384840.jpg', 'files/img/talent_img/1/thumbs/13-via-vallen-1603384840_thumb.jpg', '2020-10-22 23:40:40', NULL, '2020-10-24 22:54:47'); INSERT INTO `t_file_talent` VALUES (14, 1, 'files/img/talent_img/1/14-via-vallen-1603554901.jpg', 'files/img/talent_img/1/thumbs/14-via-vallen-1603554901_thumb.jpg', '2020-10-24 22:55:01', NULL, NULL); INSERT INTO `t_file_talent` VALUES (15, 1, 'files/img/talent_img/1/15-via-vallen-1603554912.jpg', 'files/img/talent_img/1/thumbs/15-via-vallen-1603554912_thumb.jpg', '2020-10-24 22:55:12', NULL, NULL); INSERT INTO `t_file_talent` VALUES (16, 1, 'files/img/talent_img/1/16-via-vallen-1603554924.jpg', 'files/img/talent_img/1/thumbs/16-via-vallen-1603554924_thumb.jpg', '2020-10-24 22:55:24', NULL, NULL); INSERT INTO `t_file_talent` VALUES (17, 1, 'files/img/talent_img/1/17-via-vallen-1603554941.jpg', 'files/img/talent_img/1/thumbs/17-via-vallen-1603554941_thumb.jpg', '2020-10-24 22:55:41', NULL, NULL); INSERT INTO `t_file_talent` VALUES (18, 1, 'files/img/talent_img/1/18-via-vallen-1603554970.jpg', 'files/img/talent_img/1/thumbs/18-via-vallen-1603554970_thumb.jpg', '2020-10-24 22:56:10', NULL, NULL); INSERT INTO `t_file_talent` VALUES (19, 1, 'files/img/talent_img/1/19-via-vallen-1603554981.jpg', 'files/img/talent_img/1/thumbs/19-via-vallen-1603554981_thumb.jpg', '2020-10-24 22:56:21', NULL, NULL); INSERT INTO `t_file_talent` VALUES (20, 1, 'files/img/talent_img/1/20-via-vallen-1603554993.jpg', 'files/img/talent_img/1/thumbs/20-via-vallen-1603554993_thumb.jpg', '2020-10-24 22:56:33', NULL, NULL); INSERT INTO `t_file_talent` VALUES (21, 1, 'files/img/talent_img/1/21-via-vallen-1603555013.jpg', 'files/img/talent_img/1/thumbs/21-via-vallen-1603555013_thumb.jpg', '2020-10-24 22:56:53', NULL, NULL); -- ---------------------------- -- Table structure for t_galeri_konten -- ---------------------------- DROP TABLE IF EXISTS `t_galeri_konten`; CREATE TABLE `t_galeri_konten` ( `id` int(11) NOT NULL, `id_talent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `id_t_file_talent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `urutan` int(5) NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_galeri_konten -- ---------------------------- INSERT INTO `t_galeri_konten` VALUES (1, '1', '3', 1, '2020-10-23 23:29:34', NULL, '2020-10-27 00:38:56'); INSERT INTO `t_galeri_konten` VALUES (2, '1', '1', 2, '2020-10-23 23:30:01', NULL, '2020-10-24 22:57:10'); INSERT INTO `t_galeri_konten` VALUES (3, '1', '4', 3, '2020-10-23 23:30:53', NULL, '2020-10-24 22:57:14'); INSERT INTO `t_galeri_konten` VALUES (4, '1', '8', 4, '2020-10-23 23:45:39', NULL, '2020-10-23 23:59:27'); INSERT INTO `t_galeri_konten` VALUES (5, '1', '10', 5, '2020-10-23 23:45:53', NULL, '2020-10-23 23:59:23'); INSERT INTO `t_galeri_konten` VALUES (6, '1', '8', 4, '2020-10-23 23:59:36', NULL, '2020-10-24 22:57:17'); INSERT INTO `t_galeri_konten` VALUES (7, '1', '14', 1, '2020-10-24 22:57:26', NULL, NULL); INSERT INTO `t_galeri_konten` VALUES (8, '1', '15', 2, '2020-10-24 22:57:33', NULL, NULL); INSERT INTO `t_galeri_konten` VALUES (9, '1', '16', 3, '2020-10-24 22:57:40', NULL, NULL); INSERT INTO `t_galeri_konten` VALUES (10, '1', '17', 4, '2020-10-24 22:57:49', NULL, NULL); INSERT INTO `t_galeri_konten` VALUES (11, '1', '18', 5, '2020-10-24 22:57:59', NULL, NULL); INSERT INTO `t_galeri_konten` VALUES (12, '1', '19', 6, '2020-10-24 22:59:38', NULL, '2020-10-31 20:48:09'); INSERT INTO `t_galeri_konten` VALUES (13, '1', '20', 7, '2020-10-24 23:00:30', NULL, '2020-10-31 20:48:19'); INSERT INTO `t_galeri_konten` VALUES (14, '1', '21', 8, '2020-10-24 23:00:40', NULL, NULL); -- ---------------------------- -- Table structure for t_harga -- ---------------------------- DROP TABLE IF EXISTS `t_harga`; CREATE TABLE `t_harga` ( `id` int(64) NOT NULL, `jenis_harga` int(1) NULL DEFAULT NULL COMMENT '1: reguler / 2: ekslusif', `is_diskon` int(1) NULL DEFAULT NULL, `id_m_diskon` int(64) NULL DEFAULT NULL, `id_talent` int(64) NULL DEFAULT NULL, `nilai_harga` float(20, 2) NULL DEFAULT NULL, `tgl_mulai_diskon` date NULL DEFAULT NULL, `tgl_akhir_diskon` date NULL DEFAULT NULL, `masa_berlaku_diskon` int(6) NULL DEFAULT NULL COMMENT 'satuan hari', `created_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_harga -- ---------------------------- INSERT INTO `t_harga` VALUES (1, 1, 1, 1, 1, 400000.00, '2020-10-21', '2020-11-02', 12, '2020-10-21 22:53:19', '2020-10-22 21:33:22', NULL); INSERT INTO `t_harga` VALUES (2, 2, 1, 1, 1, 1000000.00, '2020-10-22', '2020-10-25', 3, '2020-10-22 21:32:07', '2020-10-22 21:33:27', NULL); INSERT INTO `t_harga` VALUES (3, 1, NULL, NULL, 1, 400000.00, NULL, NULL, NULL, '2020-10-22 21:33:22', '2020-10-23 21:47:53', NULL); INSERT INTO `t_harga` VALUES (4, 2, NULL, NULL, 1, 1000000.00, NULL, NULL, NULL, '2020-10-22 21:33:27', '2020-10-23 21:48:26', NULL); INSERT INTO `t_harga` VALUES (5, 1, 1, 1, 1, 400000.00, '2020-10-23', '2020-11-12', 20, '2020-10-23 21:47:53', '2020-10-23 21:48:32', NULL); INSERT INTO `t_harga` VALUES (6, 2, 1, 1, 1, 1000000.00, '2020-10-23', '2020-11-17', 25, '2020-10-23 21:48:26', '2020-10-23 21:48:38', NULL); INSERT INTO `t_harga` VALUES (7, 1, NULL, NULL, 1, 400000.00, NULL, NULL, NULL, '2020-10-23 21:48:32', '2020-10-24 00:06:38', NULL); INSERT INTO `t_harga` VALUES (8, 2, NULL, NULL, 1, 1000000.00, NULL, NULL, NULL, '2020-10-23 21:48:38', '2020-10-24 00:07:20', NULL); INSERT INTO `t_harga` VALUES (9, 1, 1, 1, 1, 400000.00, '2020-10-24', '2020-10-27', 3, '2020-10-24 00:06:38', '2020-10-25 23:28:54', NULL); INSERT INTO `t_harga` VALUES (10, 2, 1, 1, 1, 1100000.00, '2020-10-24', '2020-10-27', 3, '2020-10-24 00:07:20', '2020-10-25 23:28:59', NULL); INSERT INTO `t_harga` VALUES (11, 1, NULL, NULL, 1, 400000.00, NULL, NULL, NULL, '2020-10-25 23:28:54', '2020-10-25 23:31:02', NULL); INSERT INTO `t_harga` VALUES (12, 2, NULL, NULL, 1, 1100000.00, NULL, NULL, NULL, '2020-10-25 23:28:59', '2020-10-25 23:31:31', NULL); INSERT INTO `t_harga` VALUES (13, 1, 1, 1, 1, 400000.00, '2020-10-25', '2020-10-28', 3, '2020-10-25 23:31:02', '2020-10-27 23:14:26', NULL); INSERT INTO `t_harga` VALUES (14, 2, 1, 1, 1, 1100000.00, '2020-10-25', '2020-10-28', 3, '2020-10-25 23:31:31', '2020-10-27 23:14:32', NULL); INSERT INTO `t_harga` VALUES (15, 1, NULL, NULL, 1, 400000.00, NULL, NULL, NULL, '2020-10-27 23:14:26', '2020-10-27 23:16:00', NULL); INSERT INTO `t_harga` VALUES (16, 2, NULL, NULL, 1, 1100000.00, NULL, NULL, NULL, '2020-10-27 23:14:31', '2020-10-27 23:16:21', NULL); INSERT INTO `t_harga` VALUES (17, 1, 1, 1, 1, 600000.00, '2020-10-27', '2020-11-02', 6, '2020-10-27 23:16:00', '2020-10-27 23:51:47', NULL); INSERT INTO `t_harga` VALUES (18, 2, NULL, NULL, 1, 1100000.00, NULL, NULL, NULL, '2020-10-27 23:16:21', '2020-10-27 23:58:03', NULL); INSERT INTO `t_harga` VALUES (19, 1, NULL, NULL, 1, 600000.00, NULL, NULL, NULL, '2020-10-27 23:51:47', '2020-10-27 23:52:28', NULL); INSERT INTO `t_harga` VALUES (20, 1, 1, 1, 1, 600000.00, '2020-10-27', '2020-10-30', 3, '2020-10-27 23:52:28', '2020-10-27 23:57:26', NULL); INSERT INTO `t_harga` VALUES (21, 1, NULL, NULL, 1, 600000.00, NULL, NULL, NULL, '2020-10-27 23:57:26', NULL, NULL); INSERT INTO `t_harga` VALUES (22, 2, 1, 1, 1, 1100000.00, '2020-10-27', '2020-10-30', 3, '2020-10-27 23:58:03', NULL, NULL); -- ---------------------------- -- Table structure for t_role_menu -- ---------------------------- DROP TABLE IF EXISTS `t_role_menu`; CREATE TABLE `t_role_menu` ( `id_menu` int(11) NOT NULL, `id_role` int(11) NOT NULL, `add_button` int(1) NULL DEFAULT 0, `edit_button` int(1) NULL DEFAULT 0, `delete_button` int(1) NULL DEFAULT 0, INDEX `f_level_user`(`id_role`) USING BTREE, INDEX `id_menu`(`id_menu`) USING BTREE, CONSTRAINT `t_role_menu_ibfk_1` FOREIGN KEY (`id_role`) REFERENCES `m_role` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `t_role_menu_ibfk_2` FOREIGN KEY (`id_menu`) REFERENCES `m_menu` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = COMPACT; -- ---------------------------- -- Records of t_role_menu -- ---------------------------- INSERT INTO `t_role_menu` VALUES (1, 1, 0, 0, 0); INSERT INTO `t_role_menu` VALUES (6, 1, 0, 0, 0); INSERT INTO `t_role_menu` VALUES (7, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (8, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (11, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (9, 1, 0, 0, 0); INSERT INTO `t_role_menu` VALUES (10, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (12, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (13, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (15, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (17, 1, 0, 0, 0); INSERT INTO `t_role_menu` VALUES (18, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (19, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (2, 1, 0, 0, 0); INSERT INTO `t_role_menu` VALUES (4, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (3, 1, 1, 1, 1); INSERT INTO `t_role_menu` VALUES (14, 1, 0, 0, 0); INSERT INTO `t_role_menu` VALUES (16, 1, 1, 1, 1); -- ---------------------------- -- Table structure for t_video_konten -- ---------------------------- DROP TABLE IF EXISTS `t_video_konten`; CREATE TABLE `t_video_konten` ( `id` int(64) NOT NULL, `id_talent` int(64) NULL DEFAULT NULL, `id_t_video_talent` int(64) NULL DEFAULT NULL, `urutan` int(5) NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_video_konten -- ---------------------------- INSERT INTO `t_video_konten` VALUES (1, 1, 1, 1, '2020-10-25 20:43:56', NULL, '2020-10-27 00:42:06'); INSERT INTO `t_video_konten` VALUES (2, 1, 3, 1, '2020-10-27 00:44:55', NULL, '2020-10-27 00:47:50'); INSERT INTO `t_video_konten` VALUES (3, 1, 1, 1, '2020-10-27 00:47:57', NULL, NULL); -- ---------------------------- -- Table structure for t_video_talent -- ---------------------------- DROP TABLE IF EXISTS `t_video_talent`; CREATE TABLE `t_video_talent` ( `id` int(64) NOT NULL, `id_talent` int(64) NULL DEFAULT NULL, `path_video` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `created_at` datetime(0) NULL DEFAULT NULL, `updated_at` datetime(0) NULL DEFAULT NULL, `deleted_at` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_video_talent -- ---------------------------- INSERT INTO `t_video_talent` VALUES (1, 1, 'files/img/talent_img/1/1-video-via-vallen-1603612269.mp4', '2020-10-25 14:51:09', NULL, NULL); INSERT INTO `t_video_talent` VALUES (2, 1, 'files/img/talent_img/1/2-video-via-vallen-1603612532.mp4', '2020-10-25 14:55:32', NULL, '2020-10-25 14:58:27'); INSERT INTO `t_video_talent` VALUES (3, 1, 'files/img/talent_img/1/3-video-via-vallen-1603734283.mp4', '2020-10-27 00:44:43', NULL, NULL); -- ---------------------------- -- Table structure for tbl_requesttransaksi -- ---------------------------- DROP TABLE IF EXISTS `tbl_requesttransaksi`; CREATE TABLE `tbl_requesttransaksi` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status_code` varchar(3) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `status_message` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `transaction_id` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `order_id` varchar(10) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `gross_amount` decimal(20, 2) NULL DEFAULT NULL, `payment_type` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `transaction_time` datetime(0) NULL DEFAULT NULL, `transaction_status` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `bank` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `va_number` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `fraud_status` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `bca_va_number` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `permata_va_number` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `pdf_url` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `finish_redirect_url` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `bill_key` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `biller_code` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `opened` tinyint(4) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_requesttransaksi -- ---------------------------- INSERT INTO `tbl_requesttransaksi` VALUES (1, '201', 'Transaksi sedang diproses', '7ca417b3-e336-4469-804c-ab5b0aed7c74', '1046922258', 1004000.00, 'bank_transfer', '2020-10-25 10:57:14', 'pending', '-', '-', 'accept', '02497307799', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/27fbcd87-ef50-44e2-ae82-424c80cb79fb/pdf', 'http://example.com?order_id=1046922258&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (2, '201', 'Transaksi sedang diproses', '1bae300b-ab85-4e99-9333-46418c3f064f', '1809334', 404000.00, 'cstore', '2020-10-25 22:04:38', 'pending', '-', '-', NULL, '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/b4ef0617-ab9b-44c4-9c5d-9e7ecd11dafb/pdf', 'http://example.com?order_id=1809334&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (4, '201', 'Transaksi sedang diproses', '3a364975-3a55-42d9-813a-534e6a7da421', '1245134508', 604000.00, 'bank_transfer', '2020-10-28 23:51:21', 'pending', '-', '-', 'accept', '02497207027', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/9e4d92dc-f936-4c09-8045-906b20c18ead/pdf', 'http://example.com?order_id=1245134508&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (5, '201', 'Transaksi sedang diproses', 'f266305d-5561-49e9-b904-60b878c06d00', '139773554', 604000.00, 'cstore', '2020-10-28 23:54:42', 'pending', '-', '-', NULL, '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/f64ebb15-c4c6-4b04-a36b-310b814521b6/pdf', 'http://example.com?order_id=139773554&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (6, '201', 'Transaksi sedang diproses', 'aa6a3d4a-3435-441c-ab34-5b4f0fac5299', '1913473620', 604000.00, 'cstore', '2020-10-29 22:47:52', 'pending', '-', '-', NULL, '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/3921524b-03e6-4a21-baaa-d352e716bf6e/pdf', 'http://example.com?order_id=1913473620&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (8, '201', 'Transaksi sedang diproses', '9b054612-c0d5-450e-92f4-e0c72bef1801', '1781535064', 604000.00, 'echannel', '2020-10-29 23:06:08', 'pending', '-', '-', 'accept', '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/7ef8f64d-324b-44b5-ab85-c9b6e9e45dc0/pdf', 'http://example.com?order_id=1781535064&status_code=201&transaction_status=pending', '225007030224', '70012', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (9, '201', 'Transaksi sedang diproses', '4b2f58a0-906f-4878-ab39-dc4f1afa503b', '515326662', 604000.00, 'cstore', '2020-10-29 23:13:03', 'pending', '-', '-', NULL, '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/86502c03-a40c-458d-9231-049927b35290/pdf', 'http://example.com?order_id=515326662&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (10, '201', 'Transaksi sedang diproses', 'a3451b95-ffcf-4424-97c2-735ab8fedcc8', '1916672375', 604000.00, 'bank_transfer', '2020-10-31 09:51:54', 'pending', '-', '-', 'accept', '02497088101', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/7b4d7faf-6681-440f-8c85-17cb7b10dacf/pdf', 'http://example.com?order_id=1916672375&status_code=201&transaction_status=pending', '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (11, '201', 'Transaksi sedang diproses', '28c20139-490c-4ceb-9fca-0b6951a98805', '2065083646', 604000.00, 'echannel', '2020-10-31 12:59:27', 'pending', '-', '-', 'accept', '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/6606f4d8-a078-4ed8-a524-a7c4dc78d648/pdf', 'http://example.com?order_id=2065083646&status_code=201&transaction_status=pending', '227956431160', '70012', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '-', '-', NULL, '-', '-', NULL, NULL, '-', '-', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (14, '201', 'Transaksi sedang diproses', '69fce2d7-abac-4d7d-b528-9556d5170380', '825838364', 604000.00, 'echannel', '2020-10-31 13:58:03', 'pending', '-', '-', 'accept', '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/be8fd814-414b-45cc-9325-008ecdf34df3/pdf', 'http://example.com?order_id=825838364&status_code=201&transaction_status=pending', '663768008177', '70012', NULL); INSERT INTO `tbl_requesttransaksi` VALUES (15, '201', 'Transaksi sedang diproses', '5812915d-1c8c-4381-a1e7-5e747bf47df0', '749680872', 604000.00, 'echannel', '2020-10-31 19:42:15', 'capture', '-', '-', 'accept', '-', '-', 'https://app.sandbox.midtrans.com/snap/v1/transactions/fbe61708-c940-4a94-abbf-127dda6b92ef/pdf', 'http://example.com?order_id=749680872&status_code=201&transaction_status=pending', '267750708151', '70012', NULL); SET FOREIGN_KEY_CHECKS = 1;
/* Navicat PGSQL Data Transfer Source Server : testing Source Server Version : 90602 Source Host : localhost:5432 Source Database : testing Source Schema : public Target Server Type : PGSQL Target Server Version : 90602 File Encoding : 65001 Date: 2017-05-11 11:31:02 */ -- ---------------------------- -- Sequence structure for answer_ans_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "answer_ans_id_seq"; CREATE SEQUENCE "answer_ans_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 12 CACHE 1; SELECT setval('"public"."answer_ans_id_seq"', 12, true); -- ---------------------------- -- Sequence structure for question_q_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "question_q_id_seq"; CREATE SEQUENCE "question_q_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 5 CACHE 1; SELECT setval('"public"."question_q_id_seq"', 5, true); -- ---------------------------- -- Sequence structure for question_type_qtype_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "question_type_qtype_id_seq"; CREATE SEQUENCE "question_type_qtype_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 3 CACHE 1; SELECT setval('"public"."question_type_qtype_id_seq"', 3, true); -- ---------------------------- -- Sequence structure for student_student_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "student_student_id_seq"; CREATE SEQUENCE "student_student_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 4 CACHE 1; SELECT setval('"public"."student_student_id_seq"', 4, true); -- ---------------------------- -- Sequence structure for subject_sub_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "subject_sub_id_seq"; CREATE SEQUENCE "subject_sub_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 2 CACHE 1; SELECT setval('"public"."subject_sub_id_seq"', 2, true); -- ---------------------------- -- Sequence structure for test_test_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "test_test_id_seq"; CREATE SEQUENCE "test_test_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 3 CACHE 1; SELECT setval('"public"."test_test_id_seq"', 3, true); -- ---------------------------- -- Sequence structure for theme_thm_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "theme_thm_id_seq"; CREATE SEQUENCE "theme_thm_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 8 CACHE 1; SELECT setval('"public"."theme_thm_id_seq"', 8, true); -- ---------------------------- -- Sequence structure for ticket_tic_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "ticket_tic_id_seq"; CREATE SEQUENCE "ticket_tic_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 1 CACHE 1; -- ---------------------------- -- Sequence structure for ticket_type_ttype_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "ticket_type_ttype_id_seq"; CREATE SEQUENCE "ticket_type_ttype_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 2 CACHE 1; SELECT setval('"public"."ticket_type_ttype_id_seq"', 2, true); -- ---------------------------- -- Sequence structure for user_id_seq -- ---------------------------- DROP SEQUENCE IF EXISTS "user_id_seq"; CREATE SEQUENCE "user_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 3 CACHE 1; SELECT setval('"public"."user_id_seq"', 3, true); -- ---------------------------- -- Table structure for answer -- ---------------------------- DROP TABLE IF EXISTS "answer"; CREATE TABLE "answer" ( "ans_id" int4 DEFAULT nextval('answer_ans_id_seq'::regclass) NOT NULL, "ans_content" varchar(511) COLLATE "default" NOT NULL, "ans_question" int4 NOT NULL, "ans_is_correct" bool NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of answer -- ---------------------------- BEGIN; INSERT INTO "answer" VALUES ('1', 'Ответ на вопрос 1', '1', 'f'); INSERT INTO "answer" VALUES ('2', 'ответ на вопрос 10', '3', 'f'); INSERT INTO "answer" VALUES ('3', 'Ответ на вопрос 1_', '1', 'f'); INSERT INTO "answer" VALUES ('7', 'Ответ на вопрос 1_', '1', 't'); INSERT INTO "answer" VALUES ('9', 'Ответ на вопрос 2', '2', 'f'); INSERT INTO "answer" VALUES ('11', 'ответ 1', '4', 't'); INSERT INTO "answer" VALUES ('12', 'ответ 2', '4', 'f'); COMMIT; -- ---------------------------- -- Table structure for question -- ---------------------------- DROP TABLE IF EXISTS "question"; CREATE TABLE "question" ( "q_id" int4 DEFAULT nextval('question_q_id_seq'::regclass) NOT NULL, "q_content" varchar(511) COLLATE "default" NOT NULL, "q_theme" int4 NOT NULL, "q_type" int4 NOT NULL, "q_no_variants" bool NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of question -- ---------------------------- BEGIN; INSERT INTO "question" VALUES ('1', 'Вопрос 1', '1', '1', 'f'); INSERT INTO "question" VALUES ('2', 'Вопрос 2', '1', '2', 'f'); INSERT INTO "question" VALUES ('3', 'Вопрос 10', '7', '2', 'f'); INSERT INTO "question" VALUES ('4', 'Текст вопроса', '1', '3', 'f'); INSERT INTO "question" VALUES ('5', 'Текст вопроса', '1', '2', 'f'); COMMIT; -- ---------------------------- -- Table structure for question_type -- ---------------------------- DROP TABLE IF EXISTS "question_type"; CREATE TABLE "question_type" ( "qtype_id" int4 DEFAULT nextval('question_type_qtype_id_seq'::regclass) NOT NULL, "qtype_name" varchar(15) COLLATE "default" NOT NULL, "qtype_ticket_type" int4 NOT NULL, "qtype_cost" int4 NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of question_type -- ---------------------------- BEGIN; INSERT INTO "question_type" VALUES ('1', 'Простой', '1', '1'); INSERT INTO "question_type" VALUES ('2', 'Средний', '1', '3'); INSERT INTO "question_type" VALUES ('3', 'Сложный', '1', '5'); COMMIT; -- ---------------------------- -- Table structure for student -- ---------------------------- DROP TABLE IF EXISTS "student"; CREATE TABLE "student" ( "student_id" int4 DEFAULT nextval('student_student_id_seq'::regclass) NOT NULL, "student_fname" varchar(500) COLLATE "default" NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of student -- ---------------------------- BEGIN; INSERT INTO "student" VALUES ('1', 'Magomed'); INSERT INTO "student" VALUES ('2', 'Murad'); INSERT INTO "student" VALUES ('3', 'Islam'); INSERT INTO "student" VALUES ('4', 'Gadjimurad'); COMMIT; -- ---------------------------- -- Table structure for subject -- ---------------------------- DROP TABLE IF EXISTS "subject"; CREATE TABLE "subject" ( "sub_id" int4 DEFAULT nextval('subject_sub_id_seq'::regclass) NOT NULL, "sub_name" varchar(63) COLLATE "default" NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of subject -- ---------------------------- BEGIN; INSERT INTO "subject" VALUES ('1', 'Химия'); INSERT INTO "subject" VALUES ('2', 'Биология'); COMMIT; -- ---------------------------- -- Table structure for test -- ---------------------------- DROP TABLE IF EXISTS "test"; CREATE TABLE "test" ( "test_id" int4 DEFAULT nextval('test_test_id_seq'::regclass) NOT NULL, "test_ticket_type" int4 NOT NULL, "test_date" date NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of test -- ---------------------------- BEGIN; INSERT INTO "test" VALUES ('1', '1', '2017-05-04'); INSERT INTO "test" VALUES ('2', '1', '2017-05-02'); INSERT INTO "test" VALUES ('3', '2', '2017-05-06'); COMMIT; -- ---------------------------- -- Table structure for theme -- ---------------------------- DROP TABLE IF EXISTS "theme"; CREATE TABLE "theme" ( "thm_id" int4 DEFAULT nextval('theme_thm_id_seq'::regclass) NOT NULL, "thm_name" varchar(63) COLLATE "default" NOT NULL, "thm_ttype" int4 NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of theme -- ---------------------------- BEGIN; INSERT INTO "theme" VALUES ('1', 'Тема 1', '1'); INSERT INTO "theme" VALUES ('4', 'Тема 2', '2'); INSERT INTO "theme" VALUES ('5', 'Тема 3 биология', '2'); INSERT INTO "theme" VALUES ('6', 'Тема 4 биология', '2'); INSERT INTO "theme" VALUES ('7', 'Тема 2 Химия', '1'); INSERT INTO "theme" VALUES ('8', 'Вопрос 2', '1'); COMMIT; -- ---------------------------- -- Table structure for ticket -- ---------------------------- DROP TABLE IF EXISTS "ticket"; CREATE TABLE "ticket" ( "tic_id" int4 DEFAULT nextval('ticket_tic_id_seq'::regclass) NOT NULL, "tic_ttype" int4 NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of ticket -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for ticket_type -- ---------------------------- DROP TABLE IF EXISTS "ticket_type"; CREATE TABLE "ticket_type" ( "ttype_id" int4 DEFAULT nextval('ticket_type_ttype_id_seq'::regclass) NOT NULL, "ttype_name" varchar(31) COLLATE "default" NOT NULL, "ttype_subject" int4 NOT NULL ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of ticket_type -- ---------------------------- BEGIN; INSERT INTO "ticket_type" VALUES ('1', 'Тест по химии', '1'); INSERT INTO "ticket_type" VALUES ('2', 'Тест по биологии', '2'); COMMIT; -- ---------------------------- -- Table structure for users -- ---------------------------- DROP TABLE IF EXISTS "users"; CREATE TABLE "users" ( "id" int4 DEFAULT nextval('user_id_seq'::regclass) NOT NULL, "fname" varchar(255) COLLATE "default" ) WITH (OIDS=FALSE) ; -- ---------------------------- -- Records of users -- ---------------------------- BEGIN; INSERT INTO "users" VALUES ('1', 'Nizam'); INSERT INTO "users" VALUES ('2', 'Tima'); INSERT INTO "users" VALUES ('3', 'Mevlud'); COMMIT; -- ---------------------------- -- Alter Sequences Owned By -- ---------------------------- ALTER SEQUENCE "answer_ans_id_seq" OWNED BY "answer"."ans_id"; ALTER SEQUENCE "question_q_id_seq" OWNED BY "question"."q_id"; ALTER SEQUENCE "question_type_qtype_id_seq" OWNED BY "question_type"."qtype_id"; ALTER SEQUENCE "student_student_id_seq" OWNED BY "student"."student_id"; ALTER SEQUENCE "subject_sub_id_seq" OWNED BY "subject"."sub_id"; ALTER SEQUENCE "test_test_id_seq" OWNED BY "test"."test_id"; ALTER SEQUENCE "theme_thm_id_seq" OWNED BY "theme"."thm_id"; ALTER SEQUENCE "ticket_tic_id_seq" OWNED BY "ticket"."tic_id"; ALTER SEQUENCE "ticket_type_ttype_id_seq" OWNED BY "ticket_type"."ttype_id"; ALTER SEQUENCE "user_id_seq" OWNED BY "users"."id"; -- ---------------------------- -- Primary Key structure for table answer -- ---------------------------- ALTER TABLE "answer" ADD PRIMARY KEY ("ans_id"); -- ---------------------------- -- Primary Key structure for table question -- ---------------------------- ALTER TABLE "question" ADD PRIMARY KEY ("q_id"); -- ---------------------------- -- Primary Key structure for table question_type -- ---------------------------- ALTER TABLE "question_type" ADD PRIMARY KEY ("qtype_id"); -- ---------------------------- -- Primary Key structure for table student -- ---------------------------- ALTER TABLE "student" ADD PRIMARY KEY ("student_id"); -- ---------------------------- -- Primary Key structure for table subject -- ---------------------------- ALTER TABLE "subject" ADD PRIMARY KEY ("sub_id"); -- ---------------------------- -- Primary Key structure for table test -- ---------------------------- ALTER TABLE "test" ADD PRIMARY KEY ("test_id"); -- ---------------------------- -- Primary Key structure for table theme -- ---------------------------- ALTER TABLE "theme" ADD PRIMARY KEY ("thm_id"); -- ---------------------------- -- Primary Key structure for table ticket -- ---------------------------- ALTER TABLE "ticket" ADD PRIMARY KEY ("tic_id"); -- ---------------------------- -- Primary Key structure for table ticket_type -- ---------------------------- ALTER TABLE "ticket_type" ADD PRIMARY KEY ("ttype_id");
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Tempo de geração: 15-Dez-2021 às 23:21 -- Versão do servidor: 10.4.21-MariaDB -- versão do PHP: 7.3.31 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 */; -- -- Banco de dados: `lc` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `carros` -- CREATE TABLE `carros` ( `id` bigint(20) UNSIGNED NOT NULL, `modelo_id` bigint(20) UNSIGNED NOT NULL, `placa` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `disponivel` tinyint(1) NOT NULL, `km` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `clientes` -- CREATE TABLE `clientes` ( `id` bigint(20) UNSIGNED NOT NULL, `nome` varchar(30) 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; -- -------------------------------------------------------- -- -- Estrutura da tabela `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `locacoes` -- CREATE TABLE `locacoes` ( `id` bigint(20) UNSIGNED NOT NULL, `cliente_id` bigint(20) UNSIGNED NOT NULL, `carro_id` bigint(20) UNSIGNED NOT NULL, `data_inicio_periodo` datetime NOT NULL, `data_final_previsto_periodo` datetime NOT NULL, `data_final_realizado_periodo` datetime NOT NULL, `valor_diaria` double(8,2) NOT NULL, `km_inicial` int(11) NOT NULL, `km_final` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `marcas` -- CREATE TABLE `marcas` ( `id` bigint(20) UNSIGNED NOT NULL, `nome` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `imagem` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Logo da marca', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `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; -- -- Extraindo dados da tabela `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2021_02_16_130815_create_marcas_table', 1), (5, '2021_02_16_131109_create_modelos_table', 1), (6, '2021_02_16_131252_create_carros_table', 1), (7, '2021_02_16_131427_create_clientes_table', 1), (8, '2021_02_16_131504_create_locacoes_table', 1); -- -------------------------------------------------------- -- -- Estrutura da tabela `modelos` -- CREATE TABLE `modelos` ( `id` bigint(20) UNSIGNED NOT NULL, `marca_id` bigint(20) UNSIGNED NOT NULL, `nome` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `imagem` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `numero_portas` int(11) NOT NULL, `lugares` int(11) NOT NULL, `air_bag` tinyint(1) NOT NULL, `abs` 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; -- -------------------------------------------------------- -- -- Estrutura da tabela `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Extraindo dados da tabela `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '<EMAIL>', NULL, '$2y$10$L3bwbMujAop3tf0z26Wy5us0ixoP986NknjpaH1410tvzQpWyjJVS', NULL, '2021-11-30 00:13:54', '2021-11-30 00:13:54'), (2, 'Cassiano', '<EMAIL>', NULL, '$2y$10$i8ria1bVzWi1H4Ga/4zaLu/i.CGvSq/Tv9CwhUZ74eygsEJ4e6tFi', NULL, '2021-12-15 02:09:25', '2021-12-15 02:09:25'); -- -- Índices para tabelas despejadas -- -- -- Índices para tabela `carros` -- ALTER TABLE `carros` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `carros_placa_unique` (`placa`), ADD KEY `carros_modelo_id_foreign` (`modelo_id`); -- -- Índices para tabela `clientes` -- ALTER TABLE `clientes` ADD PRIMARY KEY (`id`); -- -- Índices para tabela `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Índices para tabela `locacoes` -- ALTER TABLE `locacoes` ADD PRIMARY KEY (`id`), ADD KEY `locacoes_cliente_id_foreign` (`cliente_id`), ADD KEY `locacoes_carro_id_foreign` (`carro_id`); -- -- Índices para tabela `marcas` -- ALTER TABLE `marcas` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `marcas_nome_unique` (`nome`); -- -- Índices para tabela `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Índices para tabela `modelos` -- ALTER TABLE `modelos` ADD PRIMARY KEY (`id`), ADD KEY `modelos_marca_id_foreign` (`marca_id`); -- -- Índices para tabela `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Índices para tabela `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT de tabelas despejadas -- -- -- AUTO_INCREMENT de tabela `carros` -- ALTER TABLE `carros` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `clientes` -- ALTER TABLE `clientes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `locacoes` -- ALTER TABLE `locacoes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `marcas` -- ALTER TABLE `marcas` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT de tabela `modelos` -- ALTER TABLE `modelos` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Restrições para despejos de tabelas -- -- -- Limitadores para a tabela `carros` -- ALTER TABLE `carros` ADD CONSTRAINT `carros_modelo_id_foreign` FOREIGN KEY (`modelo_id`) REFERENCES `modelos` (`id`); -- -- Limitadores para a tabela `locacoes` -- ALTER TABLE `locacoes` ADD CONSTRAINT `locacoes_carro_id_foreign` FOREIGN KEY (`carro_id`) REFERENCES `carros` (`id`), ADD CONSTRAINT `locacoes_cliente_id_foreign` FOREIGN KEY (`cliente_id`) REFERENCES `clientes` (`id`); -- -- Limitadores para a tabela `modelos` -- ALTER TABLE `modelos` ADD CONSTRAINT `modelos_marca_id_foreign` FOREIGN KEY (`marca_id`) REFERENCES `marcas` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>soundarya1998/laravel_project -- phpMyAdmin SQL Dump -- version 5.0.3 -- https://www.phpmyadmin.net/ -- -- Host: 1172.16.58.3 -- Generation Time: Nov 05, 2020 at 04:30 PM -- Server version: 10.4.14-MariaDB -- PHP Version: 7.4.11 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: `db_laravelproject` -- -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `category_name` 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 `categories` -- INSERT INTO `categories` (`id`, `category_name`, `created_at`, `updated_at`) VALUES (1, 'Samsung', '2020-11-05 09:49:27', '2020-11-05 09:49:27'), (2, 'Redmi', '2020-11-05 09:49:41', '2020-11-05 09:49:41'), (3, 'OPPO', '2020-11-05 09:49:50', '2020-11-05 09:49:50'), (4, 'Vivo', '2020-11-05 09:49:56', '2020-11-05 09:49:56'), (5, 'Realme', '2020-11-05 09:50:08', '2020-11-05 09:50:08'); -- -------------------------------------------------------- -- -- Table structure for table `logins` -- CREATE TABLE `logins` ( `id` bigint(20) UNSIGNED NOT NULL, `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `logins` -- INSERT INTO `logins` (`id`, `username`, `password`, `created_at`, `updated_at`) VALUES (1, 'admin', '<PASSWORD>', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2020_11_03_184807_create_categories_table', 1), (2, '2020_11_03_184819_create_subcategories_table', 1), (3, '2020_11_04_191743_create_logins_table', 2); -- -------------------------------------------------------- -- -- Table structure for table `subcategories` -- CREATE TABLE `subcategories` ( `id` bigint(20) UNSIGNED NOT NULL, `subcategory_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int(11) 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 `subcategories` -- INSERT INTO `subcategories` (`id`, `subcategory_name`, `image`, `category_id`, `created_at`, `updated_at`) VALUES (1, 'Samsung A1', 'SamsungNote20.png', 1, '2020-11-05 09:51:22', '2020-11-05 09:51:22'), (2, 'Samung Prime', 'SamsungA20.png', 1, '2020-11-05 09:51:47', '2020-11-05 09:51:47'), (3, 'Mi Note 6', 'SamsungNote20.png', 2, '2020-11-05 09:52:17', '2020-11-05 09:52:17'), (4, 'Redmi 9 Prime', 'SamsungA20.png', 2, '2020-11-05 09:52:41', '2020-11-05 09:52:41'); -- -- Indexes for dumped tables -- -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `logins` -- ALTER TABLE `logins` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subcategories` -- ALTER TABLE `subcategories` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `logins` -- ALTER TABLE `logins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `subcategories` -- ALTER TABLE `subcategories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>two-app/user-service<filename>src/main/resources/migration/V1__Create_Couples_Table.sql CREATE TABLE `users`.`couple` ( `cid` INT NOT NULL AUTO_INCREMENT, `uid` INT NOT NULL, `pid` INT NOT NULL, `connected_at` BIGINT UNSIGNED NOT NULL, PRIMARY KEY (`cid`), UNIQUE INDEX `cid_UNIQUE` (`cid` ASC) VISIBLE );
<filename>Sql/sqledi2_Sample/Sample/Ch03/3_2/List3_16.sql SELECT shohin_mei, shiire_tanka, COUNT(*) FROM Shohin GROUP BY shiire_tanka;
<reponame>fatdba/oracle-script-lib set echo off feed on verify off pause off clear col set linesize 200 trimspool on set pagesize 100 column stat new_value statname noprint column value format a50 column name format a50 column isses_modifiable head 'SESS|MOD?' format a4 column issys_modifiable head 'SYS|MOD?' format a4 column isdefault head 'DEF|VAL?' format a4 column inst_id head 'INST' format 9999 set feed off term off select '&&1' stat from dual; set feed on term on @@ttitle 'V$PARAMETER for &&statname' ttitle on select name , inst_id , value , decode(isdefault, 'TRUE','Y','FALSE','N','?') isdefault , decode( isses_modifiable ,'TRUE','Y' ,'FALSE','N' ,'?') isses_modifiable , decode( issys_modifiable ,'FALSE','N' ,'DEFERRED','D' ,'IMMEDIATE','I' ,'?') issys_modifiable from gv$parameter2 where name like '%&&statname%' order by name, inst_id / set head on prompt prompt prompt ttitle off undef 1
<filename>queries/stackoverflow/q11/2fb9b4cc90fd7d6827366044309b0111e2aa8b7a.sql SELECT COUNT(*) FROM tag as t, site as s, question as q, tag_question as tq WHERE t.site_id = s.site_id AND q.site_id = s.site_id AND tq.site_id = s.site_id AND tq.question_id = q.id AND tq.tag_id = t.id AND (s.site_name in ('stackoverflow')) AND (t.name in ('angularjs','character-encoding','cocoapods','decimal','entity-framework-6','httpclient','liferay','listener','metaprogramming','rdf','rxjs','scanf','static','uitextfield','wcf')) AND (q.score >= 1) AND (q.score <= 10)
<reponame>adimurdayani/Absensi-Guru-Admin-Panel<filename>database/absensiguru.sql -- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 26 Des 2021 pada 11.45 -- Versi server: 10.4.21-MariaDB -- Versi PHP: 7.3.31 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: `absensiguru` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_absen` -- CREATE TABLE `tb_absen` ( `id` int(11) NOT NULL, `tanggal` varchar(128) DEFAULT NULL, `id_guru` int(11) DEFAULT NULL, `jam_masuk` varchar(100) DEFAULT NULL, `jam_pulang` varchar(100) DEFAULT NULL, `absen_masuk` varchar(100) DEFAULT NULL, `absen_pulang` varchar(100) DEFAULT NULL, `terlambat` varchar(100) DEFAULT NULL, `pulang_cepat` varchar(100) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_absen` -- INSERT INTO `tb_absen` (`id`, `tanggal`, `id_guru`, `jam_masuk`, `jam_pulang`, `absen_masuk`, `absen_pulang`, `terlambat`, `pulang_cepat`) VALUES (1, '20 Dec 2021', 10, '07:30', '15:30', '20:25', '05:57', '12:55:0', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_akses_menu` -- CREATE TABLE `tb_akses_menu` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `menu_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_akses_menu` -- INSERT INTO `tb_akses_menu` (`id`, `user_id`, `menu_id`) VALUES (1, 1, 1), (2, 1, 2), (3, 1, 3), (4, 1, 4), (5, 1, 5), (6, 2, 2), (7, 2, 3); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_grup` -- CREATE TABLE `tb_grup` ( `user_id` int(11) NOT NULL, `nama_grup` varchar(128) NOT NULL, `created_at` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_grup` -- INSERT INTO `tb_grup` (`user_id`, `nama_grup`, `created_at`) VALUES (1, 'Administrator', '31 Oct 2021'), (2, 'User', '31 Oct 2021'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_guru` -- CREATE TABLE `tb_guru` ( `id` int(11) NOT NULL, `nip` int(30) DEFAULT NULL, `nama` varchar(128) NOT NULL, `email` varchar(128) NOT NULL, `password` varchar(255) NOT NULL, `kelamin` varchar(123) DEFAULT NULL, `t_lahir` varchar(100) DEFAULT NULL, `tgl_lahir` varchar(100) DEFAULT NULL, `agama` varchar(100) DEFAULT NULL, `alamat` text DEFAULT NULL, `pendidikan` varchar(123) DEFAULT NULL, `jabatan` varchar(123) DEFAULT NULL, `status_kepegawaian` varchar(123) DEFAULT NULL, `mapel` varchar(128) DEFAULT NULL, `sertifikasi` varchar(123) DEFAULT NULL, `created_at` varchar(128) DEFAULT NULL, `image` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_guru` -- INSERT INTO `tb_guru` (`id`, `nip`, `nama`, `email`, `password`, `<PASSWORD>`, `t_lahir`, `tgl_lahir`, `agama`, `alamat`, `pendidikan`, `jabatan`, `status_kepegawaian`, `mapel`, `sertifikasi`, `created_at`, `image`) VALUES (7, NULL, '<NAME>', '<EMAIL>', '<PASSWORD>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (8, 12412312, 'Agus', '<EMAIL>', '<PASSWORD>', 'Perempuan', 'Asdfsd', '19/12/2021', 'Budha', 'Asdfasd', 'S1', 'Sdfasd', 'Asdfasd', 'Asdf', 'Sudah', '19 Dec 2021', 'fc5b10931a5d03534241151f8955ca69.jpg'), (9, NULL, 'Ali', '<EMAIL>', '792faa46d69a0d0fc1afcdd037694d67a92590bd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '19 Dec 2021', NULL), (10, 2147483647, 'Dani', '<EMAIL>', '<PASSWORD>', 'Perempuan', 'Ajksdhfk', '19/12/2021', 'Budha', 'Asdfsd', 'S1', 'Asdfsdf', 'Asdfasd', 'Fasdfasd', 'Belum', '19 Dec 2021', NULL), (11, NULL, 'Irfan', '<EMAIL>', '<PASSWORD>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '19 Dec 2021', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_jadwal` -- CREATE TABLE `tb_jadwal` ( `id` int(11) NOT NULL, `jam_masuk` varchar(100) NOT NULL, `jam_pulang` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_jadwal` -- INSERT INTO `tb_jadwal` (`id`, `jam_masuk`, `jam_pulang`) VALUES (1, '07:30', '15:30'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_menu` -- CREATE TABLE `tb_menu` ( `id_menu` int(11) NOT NULL, `menu` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_menu` -- INSERT INTO `tb_menu` (`id_menu`, `menu`) VALUES (1, 'Admin'), (2, 'Modul'), (3, 'User'), (4, 'Menu'), (5, 'Setting'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_sub_menu` -- CREATE TABLE `tb_sub_menu` ( `sub_id` int(11) NOT NULL, `menu_id` int(11) NOT NULL, `judul` varchar(128) NOT NULL, `url` varchar(128) NOT NULL, `icon` varchar(128) NOT NULL, `is_active` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_sub_menu` -- INSERT INTO `tb_sub_menu` (`sub_id`, `menu_id`, `judul`, `url`, `icon`, `is_active`) VALUES (1, 1, 'Dashboard', 'backend/admin', 'feather icon-home', 1), (2, 4, 'Menu Manajemen', 'backend/menu', 'feather icon-folder', 1), (3, 4, 'Submenu Manajemen', 'backend/menu/submenu', 'feather icon-folder', 1), (4, 5, 'User Grup', 'backend/setting/grup', 'feather icon-users', 1), (5, 5, 'User Setting', 'backend/setting', 'feather icon-user', 1), (6, 3, 'Profile', 'backend/user', 'feather icon-user', 1), (7, 2, 'Data Guru', 'backend/modul', 'feather icon-list', 1), (8, 2, 'Absen', 'backend/modul/absen', 'feather icon-book', 1), (10, 2, 'Jadwal', 'backend/modul/jadwal', 'feather icon-calendar', 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `tb_user` -- CREATE TABLE `tb_user` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_active` int(1) NOT NULL, `nama` varchar(128) NOT NULL, `email` varchar(128) NOT NULL, `username` varchar(128) NOT NULL, `phone` varchar(13) NOT NULL, `alamat` text NOT NULL, `password` varchar(255) NOT NULL, `created_at` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tb_user` -- INSERT INTO `tb_user` (`id`, `user_id`, `user_active`, `nama`, `email`, `username`, `phone`, `alamat`, `password`, `created_at`) VALUES (1, 1, 1, 'Administrator', '<EMAIL>', 'admin', '01826381728', 'Palopo', '<PASSWORD>', '15 Dec 2021'), (2, 2, 1, 'Admin', '<EMAIL>', 'admin2', '0812736172', 'Palopo', '<PASSWORD>', '15 Dec 2021'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `tb_absen` -- ALTER TABLE `tb_absen` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `tb_akses_menu` -- ALTER TABLE `tb_akses_menu` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `tb_grup` -- ALTER TABLE `tb_grup` ADD PRIMARY KEY (`user_id`); -- -- Indeks untuk tabel `tb_guru` -- ALTER TABLE `tb_guru` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `tb_jadwal` -- ALTER TABLE `tb_jadwal` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `tb_menu` -- ALTER TABLE `tb_menu` ADD PRIMARY KEY (`id_menu`); -- -- Indeks untuk tabel `tb_sub_menu` -- ALTER TABLE `tb_sub_menu` ADD PRIMARY KEY (`sub_id`); -- -- Indeks untuk tabel `tb_user` -- ALTER TABLE `tb_user` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `tb_absen` -- ALTER TABLE `tb_absen` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `tb_akses_menu` -- ALTER TABLE `tb_akses_menu` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT untuk tabel `tb_grup` -- ALTER TABLE `tb_grup` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tb_guru` -- ALTER TABLE `tb_guru` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT untuk tabel `tb_jadwal` -- ALTER TABLE `tb_jadwal` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tb_menu` -- ALTER TABLE `tb_menu` MODIFY `id_menu` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT untuk tabel `tb_sub_menu` -- ALTER TABLE `tb_sub_menu` MODIFY `sub_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT untuk tabel `tb_user` -- ALTER TABLE `tb_user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; 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 ;WITH Calendar AS ( SELECT Convert(datetime, :dateFrom) AS CalendarDate UNION ALL SELECT CalendarDate + 1 FROM Calendar WHERE CalendarDate + 1 <= :dateTo ) select top 1 min(productMovementByDay.date) as date, productMovementByDay.value from ( select productMovement.calendarDate as date, :previousValue + sum(productMovement.value * productMovement.multiplier) as value from ( select calendarDate, case when sam.type = 'receive' then 1 else -1 end as multiplier, COALESCE(nullif(p.price, 0), pt.price, 0) as value from products p join [dbo].[stockAccountMovements] sam on p.stockAccountMovementId = sam.id join [dbo].[productTypes] pt on p.typeId = pt.id join Calendar cal on cal.CalendarDate >= DATEADD(Day, DATEDIFF(Day, 0, COALESCE(sam.date, sam.createdAt)), 0) and DATEADD(Day, DATEDIFF(Day, 0, COALESCE(sam.date, sam.createdAt)), 0) >= :dateFrom ) productMovement group by productMovement.calendarDate ) productMovementByDay group by productMovementByDay.value order by productMovementByDay.value desc OPTION (MAXRECURSION 1000)
<reponame>giojavi04/championship-inscriptions -- phpMyAdmin SQL Dump -- version 4.6.6 -- https://www.phpmyadmin.net/ -- -- Servidor: localhost:3306 -- Tiempo de generación: 11-04-2017 a las 00:44:50 -- Versión del servidor: 5.6.35 -- Versión de PHP: 7.1.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Base de datos: `championship_bj` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `leads` -- CREATE TABLE `leads` ( `id` int(11) NOT NULL, `name` varchar(90) NOT NULL, `last_name` varchar(90) NOT NULL, `name_team` varchar(100) DEFAULT NULL, `email` varchar(60) NOT NULL, `phone` varchar(50) DEFAULT NULL, `img_inscription` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `leads` -- ALTER TABLE `leads` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `leads` -- ALTER TABLE `leads` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
<gh_stars>1-10 SET FOREIGN_KEY_CHECKS = 0; DELETE FROM `action` WHERE id = 1; SET FOREIGN_KEY_CHECKS = 1;
create table t_user( id int primary key auto_increment, username varchar(6) not null ); create table t_bill( id int primary key auto_increment, user_id int not null );
<filename>9 - SQL/2744.sql -- URI Online Judge 2746 SELECT id, password, MD5(password) FROM accounts
<gh_stars>1-10 select * from weather, cities where city = name;
<reponame>CMDRLucienn/Azure-Data-Factory-Cookbook<filename>Chapter03/Chapter3-Create user.sql<gh_stars>10-100 -- Creating user for loading data CREATE LOGIN adfuser WITH PASSWORD = '<PASSWORD>'; CREATE USER adfuser FOR LOGIN adfuser; GRANT CONTROL ON DATABASE::[adfcookbookch1devsqldb] to adfuser; EXEC sp_addrolemember 'staticrc10', 'adfuser';
-- wal.test -- -- execsql { BEGIN } BEGIN
ALTER TABLE db_version CHANGE COLUMN required_11117_01_mangos_world_template required_11169_01_mangos_mangos_string bit; DELETE FROM mangos_string WHERE entry IN (376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,1500,1501,1502); INSERT INTO mangos_string VALUES (376,'%u - |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (377,"No pools found for map '%s' (Id:%u)",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (378,"You can't use this command at non-instanceable map '%s' (Id:%u). Use .lookup pool command instead.",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (379,"You can't use this command without args at non-instanceable map '%s' (Id:%u).",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (380,'%d%s - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (381,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (382,'%d%s - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (383,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (384,'%d%s - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (385,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (386,'%d%s - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (387,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (388,'Creatures with explicitly chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (389,'Creatures with equal chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (390,'Gameobjects with explicitly chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (391,'Gameobjects with equal chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (392,'Pool %u - Mother pool: %u |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (393,'Pool %u - Mother pool: %u [%s] AutoSpawn: %u MaxLimit: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (394,'Pool %u - Mother pool: none AutoSpawn: %u MaxLimit: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (395,'No pools found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (396,'%u - [%s] AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (397,'Pools with explicitly chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (398,'Pools with equal chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (399,'%u - |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u Chance: %f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (1500,'%u - [%s] AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u Chance: %f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (1501,'%u - |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (1502,'%u - [%s] AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
select *, name, fcode, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2) as distance, latitude, longitude from "geoname", (select ST_SetSRID(ST_POINT(${lon}, ${lat}), 4326)) as t(x) order by the_geom <-> t.x limit 20; /*select *, round(ST_Distance(t.x::geography,osm.way)::numeric/1609.34, 2) from ((select op.name, op.waterway, op.place, op.natural, op.admin_level, op.amenity, op.leisure, op.landuse, op.man_made, op.power_source, op.historic, op.way --, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2)name, fcode, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2) as distance, latitude, longitude from "planet_osm_point" as op) UNION ALL (select ol.name, ol.waterway, ol.place, ol.natural, ol.admin_level, ol.amenity, ol.leisure, ol.landuse, ol.man_made, ol.power_source, ol.historic, ol.way --, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2)name, fcode, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2) as distance, latitude, longitude from "planet_osm_line" as ol) UNION ALL (select og.name, og.waterway, og.place, og.natural, og.admin_level, og.amenity, og.leisure, og.landuse, og.man_made, og.power_source, og.historic, og.way --, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2)name, fcode, round(ST_Distance(t.x::geography,the_geom)::numeric/1609.34, 2) as distance, latitude, longitude from "planet_osm_polygon" as og)) as osm, (select ST_SetSRID(ST_POINT( ${lon}, ${lat} ), 4326)) as t(x) where osm.admin_level is null and osm.name is not null order by osm.way <-> t.x limit 1;*/
<filename>registry-backend-express/JavaScript/db/sql/service_details_protocol/addOidc.sql INSERT INTO service_${type:raw}details_oidc (id,reuse_refresh_tokens,allow_introspection,client_id,client_secret,access_token_validity_seconds,refresh_token_validity_seconds,clear_access_tokens_on_refresh,code_challenge_method,device_code_validity_seconds,id_token_timeout_seconds) VALUES (${id},${reuse_refresh_tokens},${allow_introspection},${client_id},${client_secret},${access_token_validity_seconds},${refresh_token_validity_seconds},${clear_access_tokens_on_refresh},${code_challenge_method},${device_code_validity_seconds},${id_token_timeout_seconds}) RETURNING *
<reponame>cjsrkd3321/steampipe-plugin-aws select name, partition, title from aws_wafregional_rule where rule_id = '{{ output.rule_id.value }}';
<gh_stars>1000+ -- Tags: no-backward-compatibility-check:22.5.1 DROP TABLE IF EXISTS partslost_0; DROP TABLE IF EXISTS partslost_1; DROP TABLE IF EXISTS partslost_2; CREATE TABLE partslost_0 (x String) ENGINE=ReplicatedMergeTree('/clickhouse/table/{database}_02067_lost/partslost', '0') ORDER BY tuple() SETTINGS min_rows_for_wide_part = 0, min_bytes_for_wide_part = 0, old_parts_lifetime = 1, cleanup_delay_period = 1, cleanup_delay_period_random_add = 1; CREATE TABLE partslost_1 (x String) ENGINE=ReplicatedMergeTree('/clickhouse/table/{database}_02067_lost/partslost', '1') ORDER BY tuple() SETTINGS min_rows_for_wide_part = 0, min_bytes_for_wide_part = 0, old_parts_lifetime = 1, cleanup_delay_period = 1, cleanup_delay_period_random_add = 1; CREATE TABLE partslost_2 (x String) ENGINE=ReplicatedMergeTree('/clickhouse/table/{database}_02067_lost/partslost', '2') ORDER BY tuple() SETTINGS min_rows_for_wide_part = 0, min_bytes_for_wide_part = 0, old_parts_lifetime = 1, cleanup_delay_period = 1, cleanup_delay_period_random_add = 1; INSERT INTO partslost_0 SELECT toString(number) AS x from system.numbers LIMIT 10000; ALTER TABLE partslost_0 ADD INDEX idx x TYPE tokenbf_v1(285000, 3, 12345) GRANULARITY 3; ALTER TABLE partslost_0 MATERIALIZE INDEX idx; -- In worst case doesn't check anything, but it's not flaky select sleep(3) FORMAT Null; select sleep(3) FORMAT Null; select sleep(3) FORMAT Null; select sleep(3) FORMAT Null; ALTER TABLE partslost_0 DROP INDEX idx; select count() from partslost_0; select count() from partslost_1; select count() from partslost_2; DROP TABLE IF EXISTS partslost_0; DROP TABLE IF EXISTS partslost_1; DROP TABLE IF EXISTS partslost_2;
<gh_stars>1-10 PRAGMA foreign_keys = ON; drop table if exists warehouse; create table warehouse ( w_id smallint not null, w_name varchar(10), w_street_1 varchar(20), w_street_2 varchar(20), w_city varchar(20), w_state char(2), w_zip char(9), w_tax decimal(4,2), w_ytd decimal(12,2), PRIMARY KEY(w_id) ); drop table if exists district; create table district ( d_id tinyint not null, d_w_id smallint not null, d_name varchar(10), d_street_1 varchar(20), d_street_2 varchar(20), d_city varchar(20), d_state char(2), d_zip char(9), d_tax decimal(4,2), d_ytd decimal(12,2), d_next_o_id int, PRIMARY KEY(d_id, d_w_id), FOREIGN KEY(d_w_id) REFERENCES warehouse(w_id)); drop table if exists customer; create table customer ( c_id int not null, c_d_id tinyint not null, c_w_id smallint not null, c_first varchar(16), c_middle char(2), c_last varchar(16), c_street_1 varchar(20), c_street_2 varchar(20), c_city varchar(20), c_state char(2), c_zip char(9), c_phone char(16), c_since datetime, c_credit char(2), c_credit_lim bigint, c_discount decimal(4,2), c_balance decimal(12,2), c_ytd_payment decimal(12,2), c_payment_cnt smallint, c_delivery_cnt smallint, c_data text, PRIMARY KEY(c_id, c_d_id, c_w_id), FOREIGN KEY(c_d_id, c_w_id) REFERENCES district(d_id, d_w_id)); drop table if exists history; create table history ( h_c_id int, h_c_d_id tinyint, h_c_w_id smallint, h_d_id tinyint, h_w_id smallint, h_date datetime, h_amount decimal(6,2), h_data varchar(24), FOREIGN KEY(h_c_id, h_c_d_id, h_c_w_id) REFERENCES customer(c_id, c_d_id, c_w_id), FOREIGN KEY(h_d_id, h_w_id) REFERENCES district(d_id, d_w_id)); drop table if exists orders; create table orders ( o_id int not null, o_d_id tinyint not null, o_w_id smallint not null, o_c_id int, o_entry_d datetime, o_carrier_id tinyint, o_ol_cnt tinyint, o_all_local tinyint, PRIMARY KEY(o_id, o_d_id, o_w_id), FOREIGN KEY(o_c_id, o_d_id, o_w_id) REFERENCES customer(c_id, c_d_id, c_w_id)); drop table if exists new_orders; create table new_orders ( no_o_id int not null, no_d_id tinyint not null, no_w_id smallint not null, PRIMARY KEY(no_o_id, no_d_id, no_w_id), FOREIGN KEY(no_o_id, no_d_id, no_w_id) REFERENCES orders(o_id, o_d_id, o_w_id)); drop table if exists order_line; create table order_line ( ol_o_id int not null, ol_d_id tinyint not null, ol_w_id smallint not null, ol_number tinyint not null, ol_i_id int, ol_supply_w_id smallint, ol_delivery_d datetime, ol_quantity tinyint, ol_amount decimal(6,2), ol_dist_info char(24), PRIMARY KEY(ol_o_id, ol_d_id, ol_w_id, ol_number), FOREIGN KEY(ol_o_id, ol_d_id, ol_w_id) REFERENCES orders(o_id, o_d_id, o_w_id), FOREIGN KEY(ol_i_id, ol_supply_w_id) REFERENCES stock(s_i_id, s_w_id)); drop table if exists item; create table item ( i_id int not null, i_im_id int, i_name varchar(24), i_price decimal(5,2), i_data varchar(50), PRIMARY KEY(i_id)); drop table if exists stock; create table stock ( s_i_id int not null, s_w_id smallint not null, s_quantity smallint, s_dist_01 char(24), s_dist_02 char(24), s_dist_03 char(24), s_dist_04 char(24), s_dist_05 char(24), s_dist_06 char(24), s_dist_07 char(24), s_dist_08 char(24), s_dist_09 char(24), s_dist_10 char(24), s_ytd decimal(8,0), s_order_cnt smallint, s_remote_cnt smallint, s_data varchar(50), PRIMARY KEY(s_i_id,s_w_id), FOREIGN KEY(s_w_id) REFERENCES warehouse(w_id), FOREIGN KEY(s_i_id) REFERENCES item(i_id)); CREATE INDEX idx_customer ON customer (c_w_id, c_d_id, c_last, c_first); CREATE INDEX idx_orders ON orders (o_w_id, o_d_id, o_c_id, o_id); PRAGMA foreign_keys = ON;
UPDATE libraries SET name = ?, description = ?, data = ?, updated_at = CURRENT_TIMESTAMP WHERE libraries.id = ? AND libraries.api_id IN (SELECT id FROM apis WHERE id = ? AND account_id = ?);
CREATE SCHEMA IF NOT EXISTS cta; CREATE TABLE IF NOT EXISTS cta.positions ( "timestamp" timestamp with time zone NOT NULL, "vehicle_id" text NOT NULL, "latitude" numeric(9,6), "longitude" numeric(9,6), "bearing" numeric(5,2), "pattern_id" int, "route_id" text, "destination" text, "dist_along_route" numeric, "delayed" boolean, "trip_id" text, "tablockid" text, "zone" text, CONSTRAINT cta_position_pk PRIMARY KEY ("timestamp", "vehicle_id") ); CREATE TABLE IF NOT EXISTS cta.pattern_stops ( "pid" int, "stop_sequence" int, "stop_id" int default 0, "stop_name" text, "pdist" numeric, "latitude" numeric(9,6), "longitude" numeric(9,6), "type" text, CONSTRAINT cta_pattern_stops_pk PRIMARY KEY ("pid", "stop_sequence") ); CREATE TABLE IF NOT EXISTS cta.patterns ( "pid" int PRIMARY KEY, "length" numeric, "route_direction" text, "timestamp" timestamp default current_timestamp );
<filename>mysql/verify/node_latest_statuses.sql -- Verify node_latest_statuses BEGIN; SELECT id, name, chef_environment, run_list, automatic_attr, normal_attr, default_attr, override_attr, is_down, status, updated_at FROM node_latest_statuses WHERE 0; ROLLBACK;
\set dbuser :dbuser SELECT CASE WHEN :'dbuser' = ':dbuser' THEN 'zulip' ELSE :'dbuser' END AS dbuser \gset \set dbname :dbname SELECT CASE WHEN :'dbname' = ':dbname' THEN 'zulip' ELSE :'dbname' END AS dbname \gset \connect postgres DROP DATABASE IF EXISTS :"dbname"; SELECT format($$BEGIN CREATE USER %I; EXCEPTION WHEN duplicate_object THEN RAISE NOTICE 'user already exists'; END$$, :'dbuser') AS code \gset DO :'code'; ALTER ROLE :"dbuser" SET search_path TO :"dbname",public; CREATE DATABASE :"dbname" OWNER=:dbuser ENCODING=UTF8 LC_COLLATE='C.UTF-8' LC_CTYPE='C.UTF-8' TEMPLATE=template0; \connect :"dbname" CREATE SCHEMA zulip AUTHORIZATION :"dbuser";
<reponame>directsp/SchoolSample<gh_stars>0  CREATE PROCEDURE [dbo].[UpdatePerson] @PersonID int, @LastName nvarchar(50), @FirstName nvarchar(50), @HireDate datetime, @EnrollmentDate datetime AS UPDATE Person SET LastName=@LastName, FirstName=@FirstName, HireDate=@HireDate, EnrollmentDate=@EnrollmentDate WHERE PersonID=@PersonID;
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Dec 17, 2018 at 05:21 PM -- Server version: 10.1.10-MariaDB -- PHP Version: 7.0.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `srways` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `id` int(11) NOT NULL, `uname` varchar(100) NOT NULL, `pass` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`id`, `uname`, `pass`) VALUES (1, 'admin', '<PASSWORD>'); -- -------------------------------------------------------- -- -- Table structure for table `challanentry` -- CREATE TABLE `challanentry` ( `challan_id` int(10) UNSIGNED ZEROFILL NOT NULL, `lr_number` varchar(50) NOT NULL, `challannumber` varchar(100) NOT NULL, `vnumber` varchar(100) NOT NULL, `vehicletype` varchar(100) NOT NULL, `cfrom` varchar(100) NOT NULL, `cto` varchar(100) NOT NULL, `totalfare` varchar(100) NOT NULL, `amountpaid` varchar(100) NOT NULL, `balanceamt` varchar(100) NOT NULL, `noofpackages` varchar(100) NOT NULL, `cvalues` varchar(100) NOT NULL, `drivername` varchar(100) NOT NULL, `docno` varchar(100) NOT NULL, `mobileno` varchar(100) NOT NULL, `vdocument` varchar(100) NOT NULL, `agentname` varchar(100) NOT NULL, `hire` varchar(100) NOT NULL, `advance` varchar(100) NOT NULL, `balance` varchar(100) NOT NULL, `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `challanentry` -- INSERT INTO `challanentry` (`challan_id`, `lr_number`, `challannumber`, `vnumber`, `vehicletype`, `cfrom`, `cto`, `totalfare`, `amountpaid`, `balanceamt`, `noofpackages`, `cvalues`, `drivername`, `docno`, `mobileno`, `vdocument`, `agentname`, `hire`, `advance`, `balance`, `created_date`, `updated_date`) VALUES (0000000001, 'LR20190001', '9874', '2000', '24 feet close', 'Mumbai', 'Pune', '800', '700', '100', '2', '1000', 'Jai', 'Karnatak', '9738720991', 'ggggg', 'Shankar M', '9874', '6512', '3214', '2018-12-15 08:38:11', '2018-12-15 08:38:11'), (0000000002, 'LR20190001', '1111', '2222', '32 feet XL', 'Bangaloredd', 'Punedd', '1000', '900', '100', '2', '1000', 'Jai', 'KArr3455555', '9738720991', 'jhhhk', 'Shankar', '5000', '1000', '4000', '2018-12-15 08:39:35', '2018-12-15 08:39:35'), (0000000004, 'LR20190001', '6754', 'KA39L6413', '32 feet XXL', 'Peenya', 'Electronic City', '10000', '5000', '5000', '9', '5000', 'Jacks', 'KAR23658FFF', '9738720991', 'Adhar', 'Jagdish', '1200', '600', '600', '2018-12-15 15:33:49', '2018-12-15 15:33:49'); -- -------------------------------------------------------- -- -- Table structure for table `indentbooking` -- CREATE TABLE `indentbooking` ( `ib_number` int(10) UNSIGNED ZEROFILL NOT NULL, `ibvnumber` varchar(50) NOT NULL, `ibcname` varchar(100) NOT NULL, `ibfrom` varchar(200) NOT NULL, `ibto` varchar(100) NOT NULL, `ibvehicletype` varchar(100) NOT NULL, `ibtotalfare` varchar(200) NOT NULL, `ibamountpaid` varchar(100) NOT NULL, `ibbalance` varchar(100) NOT NULL, `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `indentbooking` -- INSERT INTO `indentbooking` (`ib_number`, `ibvnumber`, `ibcname`, `ibfrom`, `ibto`, `ibvehicletype`, `ibtotalfare`, `ibamountpaid`, `ibbalance`, `created_date`, `updated_date`) VALUES (0000000004, '6413', 'Shankar', 'Pune', 'Bangalore ', '19 feet close', '100', '50', '50', '2018-12-08 06:47:27', '2018-12-08 06:47:27'), (0000000005, '1111', 'Shankar', 'Bangalore', 'Bidar', '17 feet open', '100', '10', '90', '2018-12-11 20:25:03', '2018-12-11 20:25:03'), (0000000006, '5555', 'Besleri', 'Mumbai', 'Bangalore ', '19 feet close', '5000', '2000', '3000', '2018-12-13 16:32:09', '2018-12-13 16:32:09'), (0000000007, '1000', 'Cocacola', 'HYD', 'BLR', '32 feet XXL', '10000', '5000', '5000', '2018-12-13 16:35:56', '2018-12-13 16:35:56'), (0000000009, '5689', 'Limca', 'Pune', 'Bidar', '17 feet open', '100', '8', '92', '2018-12-13 16:46:21', '2018-12-13 16:46:21'), (0000000010, '9874', 'jimm', 'Pune', 'BLR', '22 feet close', '10', '10', '00', '2018-12-13 16:47:26', '2018-12-13 16:47:26'), (0000000011, '9875', 'Shankar', 'Mumbai', 'Bangalore ', '22 feet close', '100', '50', '50', '2018-12-13 16:49:55', '2018-12-13 16:49:55'), (0000000012, '6541', 'Sandy', 'Bidar', 'bhalk', '22 feet close', '100', '50', '50', '2018-12-13 16:53:02', '2018-12-13 16:53:02'), (0000000013, '8888', 'Jai rao', 'HYD', 'Bidar', '17 feet open', '10', '2000', '90', '2018-12-15 08:29:45', '2018-12-15 08:29:45'); -- -------------------------------------------------------- -- -- Table structure for table `lrentrydetails` -- CREATE TABLE `lrentrydetails` ( `lr_number` int(10) UNSIGNED ZEROFILL NOT NULL, `ib_number` varchar(22) NOT NULL, `lrvnumber` varchar(50) NOT NULL, `lrcname` varchar(100) NOT NULL, `lrfrom` varchar(200) NOT NULL, `lrto` varchar(100) NOT NULL, `lrvehicletype` varchar(100) NOT NULL, `lrtotalfare` varchar(200) NOT NULL, `lramountpaid` varchar(100) NOT NULL, `lrbalance` varchar(100) NOT NULL, `lrnoofpackages` varchar(100) NOT NULL, `lrvalue` varchar(100) NOT NULL, `lrbilling` varchar(100) NOT NULL, `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `lrentrydetails` -- INSERT INTO `lrentrydetails` (`lr_number`, `ib_number`, `lrvnumber`, `lrcname`, `lrfrom`, `lrto`, `lrvehicletype`, `lrtotalfare`, `lramountpaid`, `lrbalance`, `lrnoofpackages`, `lrvalue`, `lrbilling`, `created_date`, `updated_date`) VALUES (0000000002, 'IB20190003', '1234', 'Bislery', 'Bangalore', 'Pune', '19 feet close', '4000', '2000', '2000', '7', '700', 'Peenya', '2018-12-15 04:58:24', '2018-12-15 04:58:24'), (0000000003, 'IB20190003', '1234', 'Bislery', 'Bangalore', 'Pune', '24 feet close', '4000', '2000', '2000', '7', '700', 'Peenya', '2018-12-15 05:12:49', '2018-12-15 05:12:49'), (0000000004, 'IB20190001', '1478', 'Testing', 'Bangalore', 'Pune', '32 feet XL', '4000', '2000', '2000', '7', '700', 'Peenya', '2018-12-15 05:23:36', '2018-12-15 05:23:36'); -- -------------------------------------------------------- -- -- Table structure for table `podentry` -- CREATE TABLE `podentry` ( `pod_id` int(10) UNSIGNED ZEROFILL NOT NULL, `lr_number` varchar(50) NOT NULL, `ibdate` varchar(100) NOT NULL, `unloading` varchar(100) NOT NULL, `unloadingcharges` varchar(100) NOT NULL, `damages` varchar(100) NOT NULL, `shortage` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `podentry` -- INSERT INTO `podentry` (`pod_id`, `lr_number`, `ibdate`, `unloading`, `unloadingcharges`, `damages`, `shortage`, `remarks`, `created_date`, `updated_date`) VALUES (0000000001, 'IB20190002', '2018-12-16', '2018-12-18', '12002', '602', '2222', 'Testing check', '2018-12-15 16:19:47', '2018-12-15 16:19:47'), (0000000002, 'IB20190003', '2018-12-15', '2018-12-16', '123', '1', '1', 'testing data', '2018-12-15 17:05:52', '2018-12-15 17:05:52'); -- -------------------------------------------------------- -- -- Table structure for table `userdetails` -- CREATE TABLE `userdetails` ( `uid` int(10) NOT NULL, `firstname` varchar(100) NOT NULL, `phone` varchar(50) NOT NULL, `email` varchar(100) NOT NULL, `address` varchar(200) NOT NULL, `city` varchar(100) NOT NULL, `postcode` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `vehiclemaster` -- CREATE TABLE `vehiclemaster` ( `v_id` int(10) NOT NULL, `vregnumber` varchar(50) NOT NULL, `vregdate` varchar(100) NOT NULL, `permitno` varchar(100) NOT NULL, `permitupto` varchar(100) NOT NULL, `insurance` varchar(100) NOT NULL, `insuranceupto` varchar(100) NOT NULL, `fc` varchar(100) NOT NULL, `fcupto` varchar(100) NOT NULL, `tax` varchar(100) NOT NULL, `taxupto` varchar(100) NOT NULL, `pucno` varchar(100) NOT NULL, `pucupto` varchar(100) NOT NULL, `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `vehiclemaster` -- INSERT INTO `vehiclemaster` (`v_id`, `vregnumber`, `vregdate`, `permitno`, `permitupto`, `insurance`, `insuranceupto`, `fc`, `fcupto`, `tax`, `taxupto`, `pucno`, `pucupto`, `created_date`, `updated_date`) VALUES (1, '123', '2018-12-16', 'KA123', '2019', '2019', '2019', 'pu233', '2019', '2020', '', '555', '2020', '2018-12-15 18:02:18', '2018-12-15 18:02:18'); -- -- Indexes for dumped tables -- -- -- Indexes for table `challanentry` -- ALTER TABLE `challanentry` ADD PRIMARY KEY (`challan_id`); -- -- Indexes for table `indentbooking` -- ALTER TABLE `indentbooking` ADD PRIMARY KEY (`ib_number`); -- -- Indexes for table `lrentrydetails` -- ALTER TABLE `lrentrydetails` ADD PRIMARY KEY (`lr_number`); -- -- Indexes for table `podentry` -- ALTER TABLE `podentry` ADD PRIMARY KEY (`pod_id`); -- -- Indexes for table `vehiclemaster` -- ALTER TABLE `vehiclemaster` ADD PRIMARY KEY (`v_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `challanentry` -- ALTER TABLE `challanentry` MODIFY `challan_id` int(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `indentbooking` -- ALTER TABLE `indentbooking` MODIFY `ib_number` int(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `lrentrydetails` -- ALTER TABLE `lrentrydetails` MODIFY `lr_number` int(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `podentry` -- ALTER TABLE `podentry` MODIFY `pod_id` int(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `vehiclemaster` -- ALTER TABLE `vehiclemaster` MODIFY `v_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;