sql
stringlengths
6
1.05M
SELECT * FROM Employees; -- なにもない
ALTER TABLE ticket_pricing DROP previous_ticket_pricing_id;
<filename>fixtures/doctests/ecpg/070/input.sql EXEC SQL include sqlda.h; sqlda_t *mysqlda; EXEC SQL FETCH 3 FROM mycursor INTO DESCRIPTOR mysqlda;
<reponame>wardoyo/widara2<filename>web_profile.sql -- phpMyAdmin SQL Dump -- version 4.1.12 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jan 23, 2018 at 04:49 PM -- 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: `web_profile` -- -- -------------------------------------------------------- -- -- Table structure for table `tb_blog` -- CREATE TABLE IF NOT EXISTS `tb_blog` ( `id_blog` int(3) NOT NULL AUTO_INCREMENT, `judul` varchar(100) NOT NULL, `isi` text NOT NULL, `gambar_blog` varchar(500) NOT NULL, PRIMARY KEY (`id_blog`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_jadwal` -- CREATE TABLE IF NOT EXISTS `tb_jadwal` ( `id_jadwal` int(5) NOT NULL AUTO_INCREMENT, `tanggal` date NOT NULL, `judul` varchar(100) NOT NULL, `detail` text NOT NULL, `id_kategori` int(3) NOT NULL, PRIMARY KEY (`id_jadwal`), UNIQUE KEY `id_kategori` (`id_kategori`), KEY `id_kategori_2` (`id_kategori`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_kategori` -- CREATE TABLE IF NOT EXISTS `tb_kategori` ( `id_kategori` int(3) NOT NULL AUTO_INCREMENT, `kategori` varchar(100) NOT NULL, PRIMARY KEY (`id_kategori`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_pesan` -- CREATE TABLE IF NOT EXISTS `tb_pesan` ( `id_pesan` int(11) NOT NULL AUTO_INCREMENT, `form` varchar(100) NOT NULL, `to` varchar(100) NOT NULL, `isi` text NOT NULL, PRIMARY KEY (`id_pesan`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_profile` -- CREATE TABLE IF NOT EXISTS `tb_profile` ( `id` int(3) NOT NULL AUTO_INCREMENT, `nama` varchar(100) NOT NULL, `no_telp` varchar(20) NOT NULL, `tentang` text NOT NULL, `email` varchar(100) NOT NULL, `logo` varchar(500) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_program` -- CREATE TABLE IF NOT EXISTS `tb_program` ( `id_program` int(3) NOT NULL AUTO_INCREMENT, `nama_program` varchar(100) NOT NULL, `detail` text NOT NULL, `gambar_program` varchar(500) NOT NULL, PRIMARY KEY (`id_program`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_slide` -- CREATE TABLE IF NOT EXISTS `tb_slide` ( `id_slide` int(11) NOT NULL AUTO_INCREMENT, `gambar_slide` varchar(500) NOT NULL, `prioritas` int(3) NOT NULL, PRIMARY KEY (`id_slide`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `tb_user` -- CREATE TABLE IF NOT EXISTS `tb_user` ( `id_user` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(100) NOT NULL, `level` varchar(25) NOT NULL, `auth_key` varchar(50) NOT NULL, `password_hash` varchar(256) NOT NULL, `password_reset_token` varchar(256) NOT NULL, `email` varchar(256) NOT NULL, `status` smallint(6) NOT NULL, `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, PRIMARY KEY (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Constraints for dumped tables -- -- -- Constraints for table `tb_jadwal` -- ALTER TABLE `tb_jadwal` ADD CONSTRAINT `tb_jadwal_ibfk_1` FOREIGN KEY (`id_kategori`) REFERENCES `tb_kategori` (`id_kategori`) 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 */;
<filename>create_db.sql<gh_stars>0 DROP DATABASE IF EXISTS forensics; CREATE DATABASE forensics DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
<filename>masjid.sql<gh_stars>0 /* SQLyog Ultimate v12.4.3 (32 bit) MySQL - 5.5.24-log : Database - masjid1600005 ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!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 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`masjid1600005` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `masjid1600005`; /*Table structure for table `donatur` */ DROP TABLE IF EXISTS `donatur`; CREATE TABLE `donatur` ( `kd_donatur` char(7) NOT NULL, `nama_donatur` varchar(30) DEFAULT NULL, `jeniskelamin` varchar(30) DEFAULT NULL, `alamat` varchar(50) DEFAULT NULL, `nohp` char(20) DEFAULT NULL, PRIMARY KEY (`kd_donatur`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `donatur` */ insert into `donatur`(`kd_donatur`,`nama_donatur`,`jeniskelamin`,`alamat`,`nohp`) values ('-','-','-','-','-'), ('D-001','Mega','Perempuan','Padang','087896767677'), ('D-002','Gita','Perempuan','Batusangkar','082345434534'), ('D-003','Rahmi','Perempuan','Padang','087767564545'), ('D-004','Lukman','Laki-Laki','Jakarta','082567789889'); /*Table structure for table `jadwalceramah` */ DROP TABLE IF EXISTS `jadwalceramah`; CREATE TABLE `jadwalceramah` ( `kd_jadwal` varchar(7) NOT NULL, `tanggal` date DEFAULT NULL, `hari` varchar(40) DEFAULT NULL, `judul` varchar(40) DEFAULT NULL, `penceramah` varchar(40) DEFAULT NULL, `ket` varchar(50) DEFAULT NULL, PRIMARY KEY (`kd_jadwal`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `jadwalceramah` */ insert into `jadwalceramah`(`kd_jadwal`,`tanggal`,`hari`,`judul`,`penceramah`,`ket`) values ('JC-001','2019-05-30','Selasa','Indahnya Islam','K-003','Bada Maghrib'), ('JC-002','2019-06-01','Selasa','DDDuuu','K-001','Setelah Ashar'); /*Table structure for table `jeniskas` */ DROP TABLE IF EXISTS `jeniskas`; CREATE TABLE `jeniskas` ( `kd_jeniskas` varchar(7) NOT NULL, `jeniskas` varchar(30) DEFAULT NULL, `jumlah` int(11) DEFAULT NULL, PRIMARY KEY (`kd_jeniskas`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `jeniskas` */ insert into `jeniskas`(`kd_jeniskas`,`jeniskas`,`jumlah`) values ('K-001','Masjid',1000000), ('K-002','Anak Yatim',1000100), ('K-003','TPA',1000000), ('K-004','Pesantren',2000000); /*Table structure for table `kegiatan` */ DROP TABLE IF EXISTS `kegiatan`; CREATE TABLE `kegiatan` ( `kd_kegiatan` char(7) NOT NULL, `nama` varchar(50) DEFAULT NULL, `ketua` varchar(30) DEFAULT NULL, `tanggal` date DEFAULT NULL, `keterangan` longtext, PRIMARY KEY (`kd_kegiatan`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `kegiatan` */ insert into `kegiatan`(`kd_kegiatan`,`nama`,`ketua`,`tanggal`,`keterangan`) values ('K-001','<NAME>','HAKIM','2019-05-20','PROSES'), ('K-002','<NAME>','IMAM','2019-05-20','PROSES'); /*Table structure for table `keuangan` */ DROP TABLE IF EXISTS `keuangan`; CREATE TABLE `keuangan` ( `kode` int(11) NOT NULL AUTO_INCREMENT, `tanggal` date DEFAULT NULL, `idkas` varchar(7) DEFAULT NULL, `uraian` varchar(50) DEFAULT NULL, `uangmasuk` double DEFAULT NULL, `uangkeluar` double DEFAULT NULL, `jumlahh` double DEFAULT NULL, PRIMARY KEY (`kode`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*Data for the table `keuangan` */ insert into `keuangan`(`kode`,`tanggal`,`idkas`,`uraian`,`uangmasuk`,`uangkeluar`,`jumlahh`) values (1,'2019-06-27','K-001','100000',0,0,1000000), (2,'2019-06-27','K-002','500',0,0,1000000), (3,'2019-06-27','K-001','500',0,0,1000000), (4,'2019-06-27','K-001','500',0,0,1000000), (5,'1970-01-01','K-001','100000',0,0,1000000), (6,'1970-01-01','K-002','eeee',100,0,1000100); /*Table structure for table `penceramah` */ DROP TABLE IF EXISTS `penceramah`; CREATE TABLE `penceramah` ( `kd_penceramah` char(7) NOT NULL, `nama_penceramah` varchar(30) DEFAULT NULL, `alamat` varchar(50) DEFAULT NULL, `nohp` char(20) DEFAULT NULL, PRIMARY KEY (`kd_penceramah`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `penceramah` */ insert into `penceramah`(`kd_penceramah`,`nama_penceramah`,`alamat`,`nohp`) values ('K-001','Ust. Abdul Somad Lc.Mc','Pekanbaru','2147483647'), ('K-002','Ust. Doddy','Lubuk Basung','08975434444'), ('K-003','Irwanto','Padang','19010839811'); /*Table structure for table `pengurus` */ DROP TABLE IF EXISTS `pengurus`; CREATE TABLE `pengurus` ( `kd_pengurus` char(7) NOT NULL, `nama` varchar(30) DEFAULT NULL, `jabatan` varchar(30) DEFAULT NULL, `alamat` varchar(50) DEFAULT NULL, `nohp` char(20) DEFAULT NULL, PRIMARY KEY (`kd_pengurus`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `pengurus` */ insert into `pengurus`(`kd_pengurus`,`nama`,`jabatan`,`alamat`,`nohp`) values ('K-001','<NAME>','KETUA','LUBUK BASUNG','082567878999'), ('K-002','MAIZIR','SEKRETARIS','LUBUK BASUNG','081328292919'), ('K-003','LUKMAN','BENDAHARA','LUBUK BASUNG','082391818121'), ('K-004','LINDA','WAKIL KETUA','LUBUK BASUNG','081328292919'), ('K-005','DODI','KETUA SEKSI DAKWAH','LUBUK BASUNG','082391818121'); /*Table structure for table `tempkeluar` */ DROP TABLE IF EXISTS `tempkeluar`; CREATE TABLE `tempkeluar` ( `idkaskeluar` varchar(7) DEFAULT NULL, `uraian` varchar(60) DEFAULT NULL, `jumlahkeluar` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `tempkeluar` */ /*Table structure for table `tempmasuk` */ DROP TABLE IF EXISTS `tempmasuk`; CREATE TABLE `tempmasuk` ( `idkasmasuk` varchar(7) NOT NULL, `uraian` varchar(30) DEFAULT NULL, `jumlahmasuk` int(11) DEFAULT NULL, KEY `idkasmasuk` (`idkasmasuk`), CONSTRAINT `tempmasuk_ibfk_1` FOREIGN KEY (`idkasmasuk`) REFERENCES `jeniskas` (`kd_jeniskas`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `tempmasuk` */ /*Table structure for table `uangkeluar` */ DROP TABLE IF EXISTS `uangkeluar`; CREATE TABLE `uangkeluar` ( `kd_ukeluar` int(11) NOT NULL AUTO_INCREMENT, `kaskeluar` varchar(7) DEFAULT NULL, `tanggal` date DEFAULT NULL, `jumlah` int(11) DEFAULT NULL, `uraian` varchar(40) DEFAULT NULL, PRIMARY KEY (`kd_ukeluar`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*Data for the table `uangkeluar` */ /*Table structure for table `uangmasuk` */ DROP TABLE IF EXISTS `uangmasuk`; CREATE TABLE `uangmasuk` ( `kd_masuk` int(11) NOT NULL AUTO_INCREMENT, `kasmasuk` varchar(7) DEFAULT NULL, `tgl_uangmasuk` date DEFAULT NULL, `donatur` varchar(7) DEFAULT NULL, `jumlahmasuk` int(11) NOT NULL, `uraian` varchar(7) DEFAULT NULL, PRIMARY KEY (`kd_masuk`), KEY `donatur` (`donatur`), CONSTRAINT `uangmasuk_ibfk_1` FOREIGN KEY (`donatur`) REFERENCES `donatur` (`kd_donatur`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*Data for the table `uangmasuk` */ /*Table structure for table `user` */ DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `iduser` char(7) NOT NULL, `nama` varchar(30) DEFAULT NULL, `pass` varchar(45) DEFAULT NULL, `hakakses` varchar(20) DEFAULT NULL, PRIMARY KEY (`iduser`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `user` */ insert into `user`(`iduser`,`nama`,`pass`,`hakakses`) values ('1','mega','<PASSWORD>','superadmin'), ('2','ami','<PASSWORD>','<PASSWORD>'), ('3','Gita','<PASSWORD>','Sekretaris'), ('4','Via','<PASSWORD>19d8a121ce581499d7b701668','Ketua'); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Feb 18, 2021 at 11:56 AM -- Server version: 5.7.24 -- PHP Version: 7.2.19 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: `apiusers` -- -- -------------------------------------------------------- -- -- Table structure for table `passwordtokens` -- CREATE TABLE `passwordtokens` ( `id` int(11) UNSIGNED NOT NULL, `token` varchar(200) NOT NULL, `user_id` int(11) NOT NULL, `used` tinyint(3) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `name` varchar(50) DEFAULT NULL, `email` varchar(150) NOT NULL, `password` varchar(200) NOT NULL, `role` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `password`, `role`) VALUES (1, 'william', '<EMAIL>', '<PASSWORD>', 0), (3, 'william', '<EMAIL>', '<PASSWORD>', 0), (5, 'william', '<EMAIL>', '123456', 0), (6, 'william', '<EMAIL>', <PASSWORD>$O<PASSWORD>', 0), (8, 'william', '<EMAIL>', <PASSWORD>', 0), (9, 'william2', '<EMAIL>', <PASSWORD>', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `passwordtokens` -- ALTER TABLE `passwordtokens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `email` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `passwordtokens` -- ALTER TABLE `passwordtokens` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` 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 */;
<gh_stars>0 INSERT INTO `author` (`id_author`, `name`, `username`, `password`, `is_admin`) VALUES (1, 'Administrator', 'admin', '<PASSWORD>', 1);
<filename>fdb-sql-layer-core/src/test/resources/com/foundationdb/sql/optimizer/operator/coi-index/union-3.sql select cid, name from customers UNION select cat, sku from categories UNION select iid, sku from items
@@install_specification @@install_implementation
USE [ANTERO] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF EXISTS ( SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='sa' AND TABLE_NAME='sa_ehoks_perustiedot_laajempi' ) BEGIN DROP TABLE sa.sa_ehoks_perustiedot_laajempi END IF NOT EXISTS ( SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='sa' AND TABLE_NAME='sa_ehoks_perustiedot_laajempi' ) BEGIN CREATE TABLE [sa].[sa_ehoks_perustiedot_laajempi]( [id] [bigint] IDENTITY(1,1) NOT NULL, [ehoks_id] [int] NULL, [oppija_oid] [varchar](100) NULL, [opiskeluoikeus_oid] [varchar](100) NULL, [ensikertainen_hyvaksyminen] [datetime] NULL, [hyvaksytty] [datetime] NULL, [urasuunnitelma_koodi] [varchar](100) NULL, [osaamisen_hankkimisen_tarve] [bit] NULL, [opiskeluvalmiuksia_tukevat_opinnot] [bit] NULL, [paivitetty] [datetime] NULL, [imp_created_date] [datetime] NULL, [imp_load_file] [varchar](100) NULL, [hankittavat_ammat_tutkinnon_osat] [varchar](max) NULL, [hankittavat_yhteiset_tutkinnon_osat] [varchar](max) NULL, [aiemmin_hankitut_ammat_tutkinnon_osat] [varchar](max) NULL, [aiemmin_hankitut_paikalliset_tutkinnon_osat] [varchar](max) NULL, [aiemmin_hankitut_yhteiset_tutkinnon_osat] [varchar](max) NULL, [hankittavat_paikalliset_tutkinnon_osat] [varchar](max) NULL, [opiskeluvalmiuksia_tukevat_opinnot_json] [varchar](max) NULL, [loadtime] [datetime] NOT NULL, [source] [nvarchar](255) NULL, [username] [nvarchar](255) NOT NULL, CONSTRAINT PK_ehoks_perustiedot PRIMARY KEY CLUSTERED (id ASC) ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] ALTER TABLE sa.sa_ehoks_perustiedot_laajempi ADD CONSTRAINT DF__sa_ehoks_perustiedot_laajempi__loadtime DEFAULT (getdate()) FOR loadtime ; ALTER TABLE sa.sa_ehoks_perustiedot_laajempi ADD CONSTRAINT DF__sa_ehoks_perustiedot_laajempi__username DEFAULT (suser_name()) FOR username ; END GO
<gh_stars>1-10 ALTER TABLE `occideas`.`Interview_Answer` CHANGE COLUMN `answerFreetext` `answerFreetext` MEDIUMBLOB NULL DEFAULT NULL ;
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1:54133 -- Generation Time: Feb 15, 2017 at 02:10 PM -- Server version: 5.7.9 -- PHP Version: 5.5.38 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: `localdb` -- -- -------------------------------------------------------- -- -- Table structure for table `editors` -- -- -- Truncate table before insert `editors` -- TRUNCATE TABLE `editors`; -- -- Dumping data for table `editors` -- INSERT INTO `editors` (`name`, `passwordHash`) VALUES ('DEV', 'AQAAAAEAACcQAAAAEObagOrjXY6h0oymHQWd9na59TRLBdb9etP31ZWMN5OfbCopKZazN4HH59t1SELvPA=='), ('GIETMANN', 'AQAAAAEAACcQAAAAEM75qbd85ybQJzWImNGHOoJ7gEu59ANQ2aFf1E86+uCA9M4deXUDixFOTHMfFjUSQQ=='); -- -- Table structure for table `recordings` -- -- -- Truncate table before insert `recordings` -- DELETE FROM `recordings`; -- -- Dumping data for table `recordings` -- INSERT INTO `recordings` (`id`, `creationTime`, `duration`, `localPath`) VALUES (5, '2017-02-15 18:27:10', 94590, 'uploaded_e1391f3e-f243-48de-943a-4695a753d423'), (6, '2017-02-15 18:30:26', 127295, 'uploaded_15f845b0-617c-4c51-8878-35ace0d2978e'), (7, '2017-02-15 18:31:07', 118727, 'uploaded_5281cbf6-21e3-4804-8340-8a9c990f2d70'), (8, '2017-02-15 18:31:51', 115592, 'uploaded_705e4f6f-8f98-4310-95b9-df08ae334d8d'), (9, '2017-02-15 18:32:54', 103889, 'uploaded_b9117615-732f-45c7-bb3d-24e0c0f68f22'), (10, '2017-02-15 18:33:39', 67475, 'uploaded_8de801f1-d8aa-4f04-a2f2-6df9952c26a0'), (11, '2017-02-15 18:34:21', 199733, 'uploaded_26c66ad7-b03d-4b7e-b246-15d02ab59db0'), (12, '2017-02-15 18:34:57', 300957, 'uploaded_af7f90e0-88a7-4ac1-b81a-b4d3c21e6291'), (13, '2017-02-15 18:36:33', 85499, 'uploaded_ff8600c9-b60d-48bb-9818-cc65a8206486'), (14, '2017-02-15 18:37:07', 110368, 'uploaded_ad05cf07-15bb-4513-abf2-61e869632beb'), (15, '2017-02-15 18:38:29', 139729, 'uploaded_c584b011-b79b-4064-8fe0-1e31c4404c77'), (16, '2017-02-15 18:39:07', 131553, 'uploaded_cd4668f8-28a0-4778-9993-c888843421d3'), (17, '2017-02-15 18:39:57', 119667, 'uploaded_17d6267a-17d5-4b38-a34b-c8b3aef8673a'), (18, '2017-02-15 18:40:48', 115958, 'uploaded_80b0116c-df38-41d2-8aa4-e54a3227bafd'), (19, '2017-02-15 18:42:24', 61885, 'uploaded_c0d345eb-3303-404d-badf-be06cca1aad1'), (20, '2017-02-15 18:43:02', 121705, 'uploaded_133fef22-7f27-47c1-93b8-6cb475cd8ad4'), (21, '2017-02-15 18:43:51', 137117, 'uploaded_944c9e44-e2bf-4418-a985-80c3987f7f0e'), (22, '2017-02-15 18:44:28', 101277, 'uploaded_9c31ece2-1caf-45fe-8cb4-7f19bec3cffc'), (23, '2017-02-15 18:44:59', 110002, 'uploaded_6caef693-7e0d-485a-94e7-2fa27758772e'), (24, '2017-02-15 18:46:22', 117813, 'uploaded_2b00b952-286a-4a09-b701-24b32fb2fc5b'), (25, '2017-02-15 18:47:10', 85290, 'uploaded_d0689a45-6c8b-4710-a383-970a18e28a08'), (26, '2017-02-15 18:51:47', 104804, 'uploaded_d9dfdc45-8bca-4b46-a0ee-2004ba5b1e10'), (27, '2017-02-15 18:53:07', 159792, 'uploaded_fe5ccc6a-90c1-49bc-9e31-2b0bac4951a7'), (28, '2017-02-15 19:37:01', 96262, 'uploaded_55342dc6-dd89-4687-8b1a-3071dd866aa5'), (29, '2017-02-15 19:37:47', 154045, 'uploaded_50c60c26-4a17-40cf-bf91-f7b5df91bae3'), (30, '2017-02-15 19:38:20', 126903, 'uploaded_faeec2fc-8dd2-4abe-b9c8-d46e38f23644'), (31, '2017-02-15 19:39:07', 162769, 'uploaded_99908a9b-54e8-4c83-8d78-86ac9b78cb36'), (32, '2017-02-15 19:39:43', 170554, 'uploaded_89322fd4-3284-43c5-9dbd-2c937d5041ec'), (33, '2017-02-15 19:40:31', 116324, 'uploaded_8afa0c95-ed7e-476f-88ed-e3cd4ab8ca96'), (34, '2017-02-15 19:41:06', 129881, 'uploaded_a28d0d49-c1e3-4419-9df5-9301613d1d98'), (35, '2017-02-15 19:41:37', 75076, 'uploaded_58468cd0-4d70-49ab-8d52-37845fd15f24'), (36, '2017-02-15 19:42:10', 92369, 'uploaded_a0e24efc-18c0-4235-a9f7-bffedbea2570'), (37, '2017-02-15 19:43:10', 72490, 'uploaded_05d8b525-f394-479a-a7e3-ec12885292bd'), (38, '2017-02-15 19:43:52', 52977, 'uploaded_4612b9a1-34fc-4d69-92ed-d384667a58f2'), (39, '2017-02-15 19:44:45', 126720, 'uploaded_c924e6fd-1dcc-4702-90f9-526e5e512af2'), (40, '2017-02-15 19:45:28', 47778, 'uploaded_ce585a8b-04f8-485a-84e2-49c0ad62d32e'), (41, '2017-02-15 19:46:12', 74345, 'uploaded_f77ed84f-f2f6-4f13-8b09-0fdd1cd7cdae'), (42, '2017-02-15 19:46:53', 120033, 'uploaded_ce66136e-8dcf-4a50-9de0-23f44d07dc46'), (43, '2017-02-15 19:50:57', 126538, 'uploaded_0810d5a8-cde2-4a08-a27b-f2ffd4a1d379'), (44, '2017-02-15 19:51:42', 461845, 'uploaded_6006ebf3-fc44-4074-9d63-bf11535dc6d3'), (45, '2017-02-15 19:54:59', 126903, 'uploaded_962fef52-0bb2-4174-90d9-325785dee391'), (46, '2017-02-15 20:02:43', 368040, 'uploaded_eb07564f-0300-4c8a-a7f4-5f71c49d62ac'), (47, '2017-02-15 20:03:25', 489692, 'uploaded_dd3dea46-f5eb-42a1-ab68-36f6c6a2d6ab'), (48, '2017-02-15 20:04:01', 316944, 'uploaded_22f7a674-f45f-4b2e-a163-733d937d7d3b'), (49, '2017-02-15 20:04:33', 310074, 'uploaded_b944370c-9173-4ce5-bd5e-b488f5dde0bd'), (50, '2017-02-15 20:09:56', 449202, 'uploaded_5beb7f39-5047-430e-8379-1580a79eb0aa'), (51, '2017-02-15 20:10:46', 569392, 'uploaded_d5d50537-ba12-4d71-9c28-770628d1879d'), (52, '2017-02-15 21:25:37', 258978, 'uploaded_5e4f8697-70b2-45b0-8fb6-d5730eb66c7d'), (53, '2017-02-15 21:26:22', 111125, 'uploaded_19a38c07-6d25-42d7-a487-fabddeaa9047'), (54, '2017-02-15 21:26:51', 110002, 'uploaded_f527db59-fa7c-456a-a0d2-9eb7ded29bd8'), (55, '2017-02-15 21:27:34', 81398, 'uploaded_08e7dafc-cfc7-43f7-9559-d7abe80813d2'), (56, '2017-02-15 21:28:09', 263811, 'uploaded_837d667b-992f-4830-a9c1-29baebc3c817'), (57, '2017-02-15 21:30:37', 176876, 'uploaded_11930aac-1a2f-4f09-bc8c-41aa07e68bfc'), (58, '2017-02-15 21:31:36', 192105, 'uploaded_c9f9830f-aa45-4dde-b3bc-f5c7d9875373'), (59, '2017-02-15 21:32:52', 102400, 'uploaded_a2c1f3e8-8b37-40f6-8bff-ecf61155d296'), (60, '2017-02-15 21:33:38', 96627, 'uploaded_dd4cd3c5-b2ae-42f0-b3b7-519bc2e34789'), (61, '2017-02-15 21:45:02', 167027, 'uploaded_5ea09b77-6e94-4196-8700-254177284b92'), (62, '2017-02-15 21:46:02', 102400, 'uploaded_7db80284-c332-4f72-942c-c6cf9d6cb0d5'), (63, '2017-02-15 21:46:39', 189519, 'uploaded_56dc0a67-dd0f-45dc-bcb1-40c238eb45a7'), (64, '2017-02-15 21:48:12', 141767, 'uploaded_d71387b6-e308-47f7-9e93-7616d61d7483'), (65, '2017-02-15 21:48:47', 171129, 'uploaded_23137f7f-6c2f-4090-959d-7e4e7bc7d846'), (66, '2017-02-15 21:49:14', 83253, 'uploaded_a039b52b-5363-4703-bb71-26b5ab1e3589'), (67, '2017-02-15 21:49:50', 86779, 'uploaded_6a500f99-33b0-4bb3-a122-e5b190b99843'), (68, '2017-02-15 21:50:24', 96262, 'uploaded_b9bb0b1f-4f9d-4b35-b5b0-fdc185670d81'), (69, '2017-02-15 21:51:25', 77506, 'uploaded_55486239-6e96-4db8-b6cf-c0e8dc01ec4d'), (70, '2017-02-15 21:51:55', 81398, 'uploaded_e81bdfa3-b5bf-4681-80b5-eec0677b77fe'), (71, '2017-02-15 21:52:36', 113712, 'uploaded_ec2a0a8f-9985-406f-8cd0-c711c921ca68'), (72, '2017-02-15 21:53:08', 51462, 'uploaded_bf3485bf-8cea-42a7-8ad8-39777d093b38'), (73, '2017-02-15 21:53:41', 61153, 'uploaded_792611d7-8cf6-4e2a-963e-e2b0fab29fce'), (74, '2017-02-15 21:57:14', 48327, 'uploaded_1b0da310-3a7e-4db8-af00-df466d5a726b'), (75, '2017-02-15 21:57:47', 149212, 'uploaded_d8406ac8-7228-469b-96ce-e7cb8e321526'), (76, '2017-02-15 22:00:03', 93858, 'uploaded_22b58180-94e5-4690-8bd3-9012c4449d47'), (77, '2017-02-15 22:01:19', 78603, 'uploaded_b6cf12c0-9955-4017-aca2-d9eef74041a5'), (78, '2017-02-15 22:01:52', 217574, 'uploaded_69d8233f-e35c-48be-805e-25d827fd1fdf'); -- -------------------------------------------------------- -- -- Table structure for table `workbooks` -- -- -- Truncate table before insert `workbooks` -- DELETE FROM `workbooks`; -- -- Dumping data for table `workbooks` -- INSERT INTO `workbooks` (`id`, `title`, `subtitle`, `totalPages`, `lastModified`, `isPublished`) VALUES (3, 'Thannhauser Modell', 'Deutschkurs für Anfänger', 0, '2017-02-15 19:46:53', 1), (5, 'Diktate und mehr', 'Tauschring Gelderland', 0, '2017-02-15 20:28:53', 1), (7, 'Flüchtlingshilfe München', NULL, 0, '2017-02-15 22:02:15', 1); -- -------------------------------------------------------- -- -- Table structure for table `pages` -- -- -- Truncate table before insert `pages` -- DELETE FROM `pages`; -- -- Dumping data for table `pages` -- INSERT INTO `pages` (`id`, `workbookID`, `number`, `description`, `teacherTrackId`, `studentTrackId`) VALUES (5, 3, 3, 'Begrüßung, Vorstellung und Familie', 5, NULL), (6, 3, 4, 'Wie geht es Ihnen?', 6, NULL), (7, 3, 5, 'Ich mache etwas', 7, NULL), (8, 3, 6, 'Tagesablauf und Tageszeit', 8, NULL), (9, 3, 7, 'Was machen Sie heute?', 9, NULL), (10, 3, 8, 'Was machst du heute?', 10, NULL), (11, 3, 9, 'Wochentage, Zahlen, Farben und Uhrzeit', 11, NULL), (12, 3, 10, 'Zahlen', 12, NULL), (13, 3, 11, 'Wie spät ist es?', 13, NULL), (14, 3, 12, '<NAME>', 14, NULL), (15, 3, 13, 'Wo ist...?', 15, NULL), (16, 3, 14, 'Wie ist es?', 16, NULL), (17, 3, 15, 'Ich gehe einkaufen', 17, NULL), (18, 3, 16, 'Einkaufszettel', 18, NULL), (19, 3, 17, 'Einkaufsprospekt', 19, NULL), (20, 3, 18, '<NAME>', 20, NULL), (21, 3, 19, '<NAME>', 21, NULL), (22, 3, 20, '<NAME> krank', 22, NULL), (23, 3, 21, '<NAME>', 23, NULL), (24, 3, 22, 'Kleidung', 24, NULL), (25, 3, 23, 'Im Bekleidungsgeschäft', 25, NULL), (26, 3, 24, 'Fahduma kauft ein', 26, NULL), (27, 3, 25, 'Die Jahreszeiten', 27, NULL), (28, 3, 26, 'Das Wetter in Deutschland', 28, NULL), (29, 3, 27, 'Berufe', 29, NULL), (30, 3, 28, 'Wer arbeitet wo?', 30, NULL), (31, 3, 29, 'Ein Kind geht', 31, NULL), (32, 3, 30, 'Was hast du gemacht?', 32, NULL), (33, 3, 31, 'Kommunikation', 33, NULL), (34, 3, 32, 'Kein Leben ohne Smartphone?', 34, NULL), (35, 3, 33, 'Verkehr und Orientierung', 35, NULL), (36, 3, 34, 'Der Zugfahrplan', 36, NULL), (37, 3, 35, 'Suche im Stadtplan', 37, NULL), (38, 3, 36, 'Behörden für Asylbewerber', 38, NULL), (39, 3, 37, 'Religion', 39, NULL), (40, 3, 38, 'Feste in Deutschland', 40, NULL), (41, 3, 39, '<NAME>', 41, NULL), (42, 3, 40, 'Das kann ich gut', 42, NULL), (43, 5, 1, '<NAME>', 43, NULL), (44, 5, 2, 'Alles beginnt zu blühen', 44, NULL), (45, 5, 3, 'Die Fahrt zum Bauernhof', 45, NULL), (46, 5, 4, '<NAME> tun', 46, NULL), (47, 5, 5, 'Der Igel', 47, NULL), (48, 5, 6, 'Der Ausflug', 48, NULL), (49, 5, 7, 'Wir und Europa', 49, NULL), (50, 5, 8, 'Ich werde Anstreicherhelfer', 50, NULL), (51, 5, 9, 'Flüchtlinge', 51, NULL), (52, 7, 4, 'Willkommen', 52, NULL), (53, 7, 6, '<NAME>', 53, NULL), (54, 7, 7, '<NAME>', 54, NULL), (55, 7, 8, 'Begrüßung und Verabschiedung', 55, NULL), (56, 7, 9, '<NAME>', 56, NULL), (57, 7, 10, 'Die Uhr', 57, NULL), (58, 7, 11, 'Wie spät ist es?', 58, NULL), (59, 7, 12, 'Bus und U-Bahn', 59, NULL), (60, 7, 13, '<NAME>', 60, NULL), (61, 7, 14, '<NAME>', 61, NULL), (62, 7, 15, '<NAME>', 62, NULL), (63, 7, 16, 'Einkaufen', 63, NULL), (64, 7, 17, '<NAME>', 64, NULL), (65, 7, 18, 'Kleidung', 65, NULL), (66, 7, 19, 'Kleidung', 66, NULL), (67, 7, 20, '<NAME>', 67, NULL), (68, 7, 21, '<NAME>', 68, NULL), (69, 7, 22, '<NAME>', 69, NULL), (70, 7, 23, '<NAME>', 70, NULL), (71, 7, 24, 'Gesundheit und Krankheit', 71, NULL), (72, 7, 25, 'Wichtig', 72, NULL), (73, 7, 26, 'Die Possesivpronomen', 73, NULL), (74, 7, 27, 'Spreche und schreibe', 74, NULL), (75, 7, 28, 'Von Tag zu Tag', 75, NULL), (76, 7, 29, 'Was ist in meinem Zimmer?', 76, NULL), (77, 7, 30, 'Was tue ich in meinem Zimmer', 77, NULL), (78, 7, 31, 'Ich sitze', 78, NULL); -- -------------------------------------------------------- -- -- Indexes for dumped tables -- -- -- AUTO_INCREMENT for table `pages` -- ALTER TABLE `pages` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79; -- -- AUTO_INCREMENT for table `recordings` -- ALTER TABLE `recordings` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79; -- -- AUTO_INCREMENT for table `workbooks` -- ALTER TABLE `workbooks` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- Constraints for dumped tables --
-- file:arrays.sql ln:453 expect:true INSERT INTO arraggtest (f1, f2, f3) VALUES ('{1,2,3}','{{grey,red},{grey,blue}}','{1.6}')
<gh_stars>1-10 DROP SCHEMA IF EXISTS `cedesk_prod`; CREATE SCHEMA `cedesk_prod` DEFAULT CHARACTER SET utf8; CREATE USER 'cedesk'@'%' IDENTIFIED BY 'cedesk'; GRANT ALL PRIVILEGES ON cedesk_prod.* TO 'cedesk'@'%';
<filename>fbwiki/mediawiki/maintenance/archives/patch-revision-actor-comment-MCR.sql -- T161671, T184615, T215466: Drop old revision user, comment, and content fields, and -- add the replacement actor and comment_id fields. ALTER TABLE /*_*/revision DROP INDEX /*i*/user_timestamp, DROP INDEX /*i*/page_user_timestamp, DROP INDEX /*i*/usertext_timestamp, DROP COLUMN rev_text_id, DROP COLUMN rev_comment, DROP COLUMN rev_user, DROP COLUMN rev_user_text, DROP COLUMN rev_content_model, DROP COLUMN rev_content_format, ADD COLUMN rev_comment_id bigint unsigned NOT NULL default 0 AFTER rev_page, ADD COLUMN rev_actor bigint unsigned NOT NULL default 0 AFTER rev_comment_id, ADD INDEX /*i*/rev_actor_timestamp (rev_actor,rev_timestamp,rev_id), ADD INDEX /*i*/rev_page_actor_timestamp (rev_page,rev_actor,rev_timestamp);
# --- !Ups CREATE TABLE charts ( id bigint NOT NULL, name varchar(255) NOT NULL, period int DEFAULT 60000, CONSTRAINT pk_charts PRIMARY KEY (id) ); # --- !Downs DROP TABLE charts;
# --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table client ( id bigint not null, name varchar(255), address varchar(255), email varchar(255), phone_number varchar(255), tax_number varchar(255), constraint pk_client primary key (id)) ; create table driver ( id bigint not null, name varchar(255), address varchar(255), phone_number varchar(255), licence varchar(6), countries varchar(255), total_kilometers decimal(15,4), since timestamp, constraint ck_driver_licence check (licence in ('B_TYPE','C_TYPE','E_TYPE')), constraint pk_driver primary key (id)) ; create table item ( id bigint not null, product_name varchar(255), weight decimal(15,4), from_address varchar(255), product_type varchar(8), constraint ck_item_product_type check (product_type in ('FRAGILE','FLEXIBLE')), constraint pk_item primary key (id)) ; create table orders ( id bigint not null, created timestamp, address varchar(255), client_id bigint, order_item_id bigint, order_state varchar(8), selected_date timestamp, amount decimal(15,4), description varchar(255), feedback_msg varchar(255), delivered boolean, constraint ck_orders_order_state check (order_state in ('NEW','VERIFIED','DONE')), constraint pk_orders primary key (id)) ; create table transport ( id bigint not null, date timestamp, driver_id bigint, client_id bigint, truck_id bigint, distance decimal(15,4), transport_state varchar(20), constraint ck_transport_transport_state check (transport_state in ('WAITING_FOR_SHIPPING','SHIPPED')), constraint pk_transport primary key (id)) ; create table truck ( id bigint not null, lp_number varchar(255), truck_type varchar(6), kg_limit bigint, mo_ttest_date timestamp, available boolean, constraint ck_truck_truck_type check (truck_type in ('SMALL','MEDIUM','BIG')), constraint pk_truck primary key (id)) ; create table users ( id bigint not null, name varchar(255), email varchar, password varchar(255), role varchar(6), client_id bigint, constraint ck_users_role check (role in ('ADMIN','CLIENT')), constraint uq_users_email unique (email), constraint pk_users primary key (id)) ; create table transport_item ( transport_id bigint not null, item_id bigint not null, constraint pk_transport_item primary key (transport_id, item_id)) ; create sequence client_seq; create sequence driver_seq; create sequence item_seq; create sequence orders_seq; create sequence transport_seq; create sequence truck_seq; create sequence users_seq; alter table orders add constraint fk_orders_client_1 foreign key (client_id) references client (id); create index ix_orders_client_1 on orders (client_id); alter table orders add constraint fk_orders_orderItem_2 foreign key (order_item_id) references item (id); create index ix_orders_orderItem_2 on orders (order_item_id); alter table transport add constraint fk_transport_driver_3 foreign key (driver_id) references driver (id); create index ix_transport_driver_3 on transport (driver_id); alter table transport add constraint fk_transport_client_4 foreign key (client_id) references client (id); create index ix_transport_client_4 on transport (client_id); alter table transport add constraint fk_transport_truck_5 foreign key (truck_id) references truck (id); create index ix_transport_truck_5 on transport (truck_id); alter table users add constraint fk_users_client_6 foreign key (client_id) references client (id); create index ix_users_client_6 on users (client_id); alter table transport_item add constraint fk_transport_item_transport_01 foreign key (transport_id) references transport (id); alter table transport_item add constraint fk_transport_item_item_02 foreign key (item_id) references item (id); # --- !Downs drop table if exists client cascade; drop table if exists driver cascade; drop table if exists item cascade; drop table if exists orders cascade; drop table if exists transport cascade; drop table if exists transport_item cascade; drop table if exists truck cascade; drop table if exists users cascade; drop sequence if exists client_seq; drop sequence if exists driver_seq; drop sequence if exists item_seq; drop sequence if exists orders_seq; drop sequence if exists transport_seq; drop sequence if exists truck_seq; drop sequence if exists users_seq;
drop function app_private.tg__add_job();
/****** Object: UserDefinedFunction [dbo].[JobBacklogOnDateByResultType] ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION dbo.JobBacklogOnDateByResultType /**************************************************** ** ** Desc: ** returns count of number of jobs in backlog on given date ** ** Auth: grk ** Date: 1/21/2005 ** 1/22/2005 mem - Added two additional parameters ** 1/25/2005 grk - modified to use result type ** *****************************************************/ ( @targDate datetime, @resultType varchar(64) = 'Peptide_Hit', --'HMMA_Peak', 'Peptide_Hit', 'SIC', 'TIC' @ProcessorNameFilter varchar(64) = '%' ) RETURNS integer AS BEGIN declare @backlog integer set @backlog = 0 SELECT @backlog = count(*) FROM T_Analysis_Job WHERE (DATEDIFF(Hour, @targDate, AJ_finish) >= 0) AND (DATEDIFF(Hour, @targDate, AJ_created) <= 0) AND (AJ_StateID = 4) AND (AJ_assignedProcessorName LIKE @ProcessorNameFilter) AND AJ_AnalysisToolID IN ( SELECT AJT_toolID FROM T_Analysis_Tool WHERE (AJT_resultType = @resultType) ) RETURN @backlog END GO GRANT VIEW DEFINITION ON [dbo].[JobBacklogOnDateByResultType] TO [DDL_Viewer] AS [dbo] GO
CREATE TABLE public.sys_stores ( id int8 NOT NULL, "name" varchar(500) NOT NULL, date_updated timestamp NOT NULL, active int4 NOT NULL DEFAULT 1, store_type varchar(1) NOT NULL, CONSTRAINT sys_stores_pkey PRIMARY KEY (id) ); INSERT INTO public.sys_stores (id,"name",date_updated,active,store_type) VALUES (95,'0.837200548499823','2020-07-16 06:21:39.539',1,'1') ,(94,'0.89638842176646','2020-07-16 06:21:39.539',1,'1') ,(93,'0.522015844006091','2020-07-16 06:21:39.539',1,'1') ,(92,'0.981999666895717','2020-07-16 06:21:39.539',1,'1') ,(91,'0.860317185055465','2020-07-16 06:21:39.539',1,'1') ,(90,'0.0940366457216442','2020-07-16 06:21:39.539',1,'1') ; CREATE TABLE public.sys_users ( id varchar(40) NOT NULL, user_created varchar(40) NOT NULL, "name" varchar(100) NOT NULL, "password" varchar(500) NULL, photo bytea NULL, change_password int4 NOT NULL DEFAULT 1, email varchar(200) NULL, isadmin int4 NOT NULL DEFAULT 1, date_updated timestamp NOT NULL, active int4 NOT NULL DEFAULT 1, store_id int8 NOT NULL, CONSTRAINT sys_users_pkey PRIMARY KEY (id), CONSTRAINT sys_users_unique_email UNIQUE (email), CONSTRAINT sys_stores_sys_users FOREIGN KEY (store_id) REFERENCES sys_stores(id) ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX fk_sys_stores_sys_users ON public.sys_users USING btree (store_id); INSERT INTO public.sys_users (id,user_created,"name","password",photo,change_password,email,isadmin,date_updated,active,store_id) VALUES ('434204','1','0.290598300751299','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,95) ,('491015','1','0.00717520108446479','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,93) ,('492818','1','0.432072543539107','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,93) ,('453664','1','0.853666870389134','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,93) ,('94143','1','0.232730551622808','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,91) ,('494466','1','0.954361299984157','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,92) ,('96784','1','0.734563007485121','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,93) ,('438287','1','0.551174749620259','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,95) ,('7086','1','0.989703394472599','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,91) ,('76523','1','0.086285313591361','$2b$11$K/kxWOmL0ukJrFZvMbBHlO0YT2jv/2Tss6O7nNY9TgqCPyXYKsZIO',NULL,1,'<EMAIL>',1,'2020-07-16 07:22:38.568',1,93) ;
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Oct 18, 2020 at 01:37 AM -- Server version: 10.3.9-MariaDB -- PHP Version: 7.2.10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `series` -- -- -------------------------------------------------------- -- -- Table structure for table `auser` -- DROP TABLE IF EXISTS `auser`; CREATE TABLE IF NOT EXISTS `auser` ( `username` varchar(16) NOT NULL, `email` varchar(16) NOT NULL, `pass` varchar(16) NOT NULL, `flag` varchar(1) NOT NULL, PRIMARY KEY (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `auser` -- INSERT INTO `auser` (`username`, `email`, `pass`, `flag`) VALUES ('', '<EMAIL>', '<PASSWORD>', 'A'), ('aaa', '<EMAIL>', '<PASSWORD>', 'U'), ('abc', '<EMAIL>', '<PASSWORD>', 'U'), ('admin', '<EMAIL>', '<PASSWORD>', 'A'), ('libra', '<EMAIL>', '<PASSWORD>', 'U'), ('pratik', '<EMAIL>', '<PASSWORD>', 'U'), ('sayali', '<EMAIL>', 'Sayali@<PASSWORD>', 'U'); -- -------------------------------------------------------- -- -- Table structure for table `episode` -- DROP TABLE IF EXISTS `episode`; CREATE TABLE IF NOT EXISTS `episode` ( `eid` int(11) NOT NULL AUTO_INCREMENT, `season_id` int(15) NOT NULL, `episode_no` int(11) NOT NULL, `episode_name` varchar(50) NOT NULL, `file` varchar(30) NOT NULL, PRIMARY KEY (`eid`) ) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=latin1; -- -- Dumping data for table `episode` -- INSERT INTO `episode` (`eid`, `season_id`, `episode_no`, `episode_name`, `file`) VALUES (49, 8, 1, 'episode 1', '1.mp4'), (51, 8, 2, 'episode 2', '2.mp4'), (52, 10, 1, 'episode 1', '3.mp4'), (53, 10, 2, 'episode 2', 'Kimetsu-no-Yaiba-Episode-4.mp4'), (54, 11, 1, 'episode 1', 'w.mp4'), (56, 8, 3, 'a', 'Kimetsu-Yaiba-Episode-4.mp4'); -- -------------------------------------------------------- -- -- Table structure for table `season` -- DROP TABLE IF EXISTS `season`; CREATE TABLE IF NOT EXISTS `season` ( `season_id` int(11) NOT NULL AUTO_INCREMENT, `series_id` int(20) NOT NULL, `season_no` int(11) NOT NULL, `season_name` varchar(50) NOT NULL, PRIMARY KEY (`season_id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; -- -- Dumping data for table `season` -- INSERT INTO `season` (`season_id`, `series_id`, `season_no`, `season_name`) VALUES (8, 9, 1, 'season 1'), (10, 9, 2, 'season 2'), (11, 15, 1, 'season 1'), (12, 9, 4, 'season 4'); -- -------------------------------------------------------- -- -- Table structure for table `series` -- DROP TABLE IF EXISTS `series`; CREATE TABLE IF NOT EXISTS `series` ( `series_id` int(11) NOT NULL AUTO_INCREMENT, `series_title` varchar(50) NOT NULL, `thumbnail` text NOT NULL, `series_desc` text NOT NULL, `language` varchar(30) NOT NULL, `keyword` text NOT NULL, PRIMARY KEY (`series_id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; -- -- Dumping data for table `series` -- INSERT INTO `series` (`series_id`, `series_title`, `thumbnail`, `series_desc`, `language`, `keyword`) VALUES (9, 'Naruto', 'konoha-naruto-anime-hd-wallpaper-1920x1080-30887.jpg', 'Naruto (ナルト) is a Japanese manga series written and illustrated by Masashi Kishimoto. It tells the story of Naruto Uzumaki, a young ninja who seeks to gain recognition from his peers and also dreams of becoming the Hokage, the leader of his village.', 'japanise', 'naruto,ninja, n,na,naru,narut'), (15, 'witcher', '1.jpg', 'The witcher Geralt, a mutated monster hunter, struggles to find his place in a world in which people often prove more wicked than beasts.', 'english', 'witcher,w,witch,'); -- -------------------------------------------------------- -- -- Table structure for table `watchlist` -- DROP TABLE IF EXISTS `watchlist`; CREATE TABLE IF NOT EXISTS `watchlist` ( `watch_id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(15) NOT NULL, `series_id` int(11) DEFAULT 0, PRIMARY KEY (`watch_id`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; -- -- Dumping data for table `watchlist` -- INSERT INTO `watchlist` (`watch_id`, `username`, `series_id`) VALUES (1, 'abc', 9), (2, 'pratik', 9), (3, 'rushikesh', 0), (4, 'anishmarathe', 0), (5, 'maratheanish', 0), (6, 'aaa', 0), (7, 'sayali', 15), (8, 'sayali', 15), (9, 'sayali', 15), (10, 'sayali', 15), (11, 'libra', 9), (12, 'abc', 9), (13, 'aaa', 0); 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>test/spec-tests/cql/CqlDateTimeOperatorsTest.cql library CqlDateTimeOperatorsTest version '1.4.0' using QUICK version '3.3.0' context Patient define "Add": Tuple{ "DateTimeAdd5Years": Tuple{ expression: DateTime(2005, 10, 10) + 5 years, output: @2010-10-10T }, "DateTimeAddInvalidYears": Tuple{ expression: DateTime(2005, 10, 10) + 8000 years, invalid: true }, "DateTimeAdd5Months": Tuple{ expression: DateTime(2005, 5, 10) + 5 months, output: @2005-10-10T }, "DateTimeAddMonthsOverflow": Tuple{ expression: DateTime(2005, 5, 10) + 10 months, output: @2006-03-10T }, "DateTimeAdd5Days": Tuple{ expression: DateTime(2005, 5, 10) + 5 days, output: @2005-05-15T }, "DateTimeAddDaysOverflow": Tuple{ expression: DateTime(2016, 6, 10) + 21 days, output: @2016-07-01T }, "DateTimeAdd5Hours": Tuple{ expression: DateTime(2005, 5, 10, 5) + 5 hours, output: @2005-05-10T10 }, "DateTimeAddHoursOverflow": Tuple{ expression: DateTime(2016, 6, 10, 5) + 19 hours, output: @2016-06-11T00 }, "DateTimeAdd5Minutes": Tuple{ expression: DateTime(2005, 5, 10, 5, 5) + 5 minutes, output: @2005-05-10T05:10 }, "DateTimeAddMinutesOverflow": Tuple{ expression: DateTime(2016, 6, 10, 5, 5) + 55 minutes, output: @2016-06-10T06:00 }, "DateTimeAdd5Seconds": Tuple{ expression: DateTime(2005, 5, 10, 5, 5, 5) + 5 seconds, output: @2005-05-10T05:05:10 }, "DateTimeAddSecondsOverflow": Tuple{ expression: DateTime(2016, 6, 10, 5, 5, 5) + 55 seconds, output: @2016-06-10T05:06:00 }, "DateTimeAdd5Milliseconds": Tuple{ expression: DateTime(2005, 5, 10, 5, 5, 5, 5) + 5 milliseconds, output: @2005-05-10T05:05:05.010 }, "DateTimeAddMillisecondsOverflow": Tuple{ expression: DateTime(2016, 6, 10, 5, 5, 5, 5) + 995 milliseconds, output: @2016-06-10T05:05:06.000 }, "DateTimeAddLeapYear": Tuple{ expression: DateTime(2012, 2, 29) + 1 year, output: @2013-02-28T }, "DateTimeAdd2YearsByMonths": Tuple{ expression: DateTime(2014) + 24 months, output: @2016T }, "DateTimeAdd2YearsByDays": Tuple{ expression: DateTime(2014) + 730 days, output: @2016T }, "DateTimeAdd2YearsByDaysRem5Days": Tuple{ expression: DateTime(2014) + 735 days, output: @2016T }, "TimeAdd5Hours": Tuple{ expression: @T15:59:59.999 + 5 hours, output: @T20:59:59.999 }, "TimeAdd1Minute": Tuple{ expression: @T15:59:59.999 + 1 minute, output: @T16:00:59.999 }, "TimeAdd1Second": Tuple{ expression: @T15:59:59.999 + 1 seconds, output: @T16:00:00.999 }, "TimeAdd1Millisecond": Tuple{ expression: @T15:59:59.999 + 1 milliseconds, output: @T16:00:00.000 }, "TimeAdd5Hours1Minute": Tuple{ expression: @T15:59:59.999 + 5 hours + 1 minutes, output: @T21:00:59.999 }, "TimeAdd5hoursByMinute": Tuple{ expression: @T15:59:59.999 + 300 minutes, output: @T20:59:59.999 } } define "After": Tuple{ "DateTimeAfterYearTrue": Tuple{ expression: DateTime(2005, 10, 10) after year of DateTime(2004, 10, 10), output: true }, "DateTimeAfterYearFalse": Tuple{ expression: DateTime(2004, 11, 10) after year of DateTime(2004, 10, 10), output: false }, "DateTimeAfterMonthTrue": Tuple{ expression: DateTime(2004, 12, 10) after month of DateTime(2004, 11, 10), output: true }, "DateTimeAfterMonthFalse": Tuple{ expression: DateTime(2004, 9, 10) after month of DateTime(2004, 10, 10), output: false }, "DateTimeAfterDayTrue": Tuple{ expression: DateTime(2004, 12, 11) after day of DateTime(2004, 10, 10), output: true }, "DateTimeAfterDayTrue2": Tuple{ expression: DateTime(2004, 12, 09) after day of DateTime(2003, 10, 10), output: true }, "DateTimeAfterDayFalse": Tuple{ expression: DateTime(2004, 10, 9) after day of DateTime(2004, 10, 10), output: false }, "DateTimeAfterHourTrue": Tuple{ expression: DateTime(2004, 10, 10, 10) after hour of DateTime(2004, 10, 10, 5), output: true }, "DateTimeAfterHourFalse": Tuple{ expression: DateTime(2004, 10, 10, 20) after hour of DateTime(2004, 10, 10, 21), output: false }, "DateTimeAfterMinuteTrue": Tuple{ expression: DateTime(2004, 10, 10, 20, 30) after minute of DateTime(2004, 10, 10, 20, 29), output: true }, "DateTimeAfterMinuteFalse": Tuple{ expression: DateTime(2004, 10, 10, 20, 30) after minute of DateTime(2004, 10, 10, 20, 31), output: false }, "DateTimeAfterSecondTrue": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 15) after second of DateTime(2004, 10, 10, 20, 30, 14), output: true }, "DateTimeAfterSecondFalse": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 15) after second of DateTime(2004, 10, 10, 20, 30, 16), output: false }, "DateTimeAfterMillisecondTrue": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 15, 512) after millisecond of DateTime(2004, 10, 10, 20, 30, 15, 510), output: true }, "DateTimeAfterMillisecondFalse": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 15, 512) after millisecond of DateTime(2004, 10, 10, 20, 30, 15, 513), output: false }, "DateTimeAfterUncertain": Tuple{ expression: DateTime(2005, 10, 10) after day of DateTime(2005, 9), output: true }, "AfterTimezoneTrue": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 after hour of @2012-03-10T08:20:00.999+06:00, output: true }, "AfterTimezoneFalse": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 after hour of @2012-03-10T10:20:00.999+06:00, output: false }, "TimeAfterHourTrue": Tuple{ expression: @T15:59:59.999 after hour of @T14:59:59.999, output: true }, "TimeAfterHourFalse": Tuple{ expression: @T15:59:59.999 after hour of @T16:59:59.999, output: false }, "TimeAfterMinuteTrue": Tuple{ expression: @T15:59:59.999 after minute of @T15:58:59.999, output: true }, "TimeAfterMinuteFalse": Tuple{ expression: @T15:58:59.999 after minute of @T15:59:59.999, output: false }, "TimeAfterSecondTrue": Tuple{ expression: @T15:59:59.999 after second of @T15:59:58.999, output: true }, "TimeAfterSecondFalse": Tuple{ expression: @T15:59:58.999 after second of @T15:59:59.999, output: false }, "TimeAfterMillisecondTrue": Tuple{ expression: @T15:59:59.999 after millisecond of @T15:59:59.998, output: true }, "TimeAfterMillisecondFalse": Tuple{ expression: @T15:59:59.998 after millisecond of @T15:59:59.999, output: false }, "TimeAfterTimeCstor": Tuple{ expression: Time(12, 30) after hour of Time(11, 55), output: true } } define "Before": Tuple{ "DateTimeBeforeYearTrue": Tuple{ expression: DateTime(2003) before year of DateTime(2004, 10, 10), output: true }, "DateTimeBeforeYearFalse": Tuple{ expression: DateTime(2004, 11, 10) before year of DateTime(2003, 10, 10), output: false }, "DateTimeBeforeMonthTrue": Tuple{ expression: DateTime(2004, 10, 10) before month of DateTime(2004, 11, 10), output: true }, "DateTimeBeforeMonthFalse": Tuple{ expression: DateTime(2004, 11, 10) before month of DateTime(2004, 10, 10), output: false }, "DateTimeBeforeDayTrue": Tuple{ expression: DateTime(2004, 10, 1) before day of DateTime(2004, 10, 10), output: true }, "DateTimeBeforeDayTrue2": Tuple{ expression: DateTime(2003, 10, 11) before day of DateTime(2004, 10, 10), output: true }, "DateTimeBeforeDayFalse": Tuple{ expression: DateTime(2004, 10, 11) before day of DateTime(2004, 10, 10), output: false }, "DateTimeBeforeHourTrue": Tuple{ expression: DateTime(2004, 10, 10, 1) before hour of DateTime(2004, 10, 10, 5), output: true }, "DateTimeBeforeHourFalse": Tuple{ expression: DateTime(2004, 10, 10, 23) before hour of DateTime(2004, 10, 10, 21), output: false }, "DateTimeBeforeMinuteTrue": Tuple{ expression: DateTime(2004, 10, 10, 20, 28) before minute of DateTime(2004, 10, 10, 20, 29), output: true }, "DateTimeBeforeMinuteFalse": Tuple{ expression: DateTime(2004, 10, 10, 20, 35) before minute of DateTime(2004, 10, 10, 20, 31), output: false }, "DateTimeBeforeSecondTrue": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 12) before second of DateTime(2004, 10, 10, 20, 30, 14), output: true }, "DateTimeBeforeSecondFalse": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 55) before second of DateTime(2004, 10, 10, 20, 30, 16), output: false }, "DateTimeBeforeMillisecondTrue": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 15, 508) before millisecond of DateTime(2004, 10, 10, 20, 30, 15, 510), output: true }, "DateTimeBeforeMillisecondFalse": Tuple{ expression: DateTime(2004, 10, 10, 20, 30, 15, 599) before millisecond of DateTime(2004, 10, 10, 20, 30, 15, 513), output: false }, "BeforeTimezoneTrue": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 before hour of @2012-03-10T10:20:00.999+06:00, output: true }, "BeforeTimezoneFalse": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 before hour of @2012-03-10T09:20:00.999+06:00, output: false }, "TimeBeforeHourTrue": Tuple{ expression: @T13:59:59.999 before hour of @T14:59:59.999, output: true }, "TimeBeforeHourFalse": Tuple{ expression: @T16:59:59.999 before hour of @T15:59:59.999, output: false }, "TimeBeforeMinuteTrue": Tuple{ expression: @T15:57:59.999 before minute of @T15:58:59.999, output: true }, "TimeBeforeMinuteFalse": Tuple{ expression: @T15:59:59.999 before minute of @T15:59:59.999, output: false }, "TimeBeforeSecondTrue": Tuple{ expression: @T15:59:57.999 before second of @T15:59:58.999, output: true }, "TimeBeforeSecondFalse": Tuple{ expression: @T15:59:56.999 before second of @T15:59:55.999, output: false }, "TimeBeforeMillisecondTrue": Tuple{ expression: @T15:59:59.997 before millisecond of @T15:59:59.998, output: true }, "TimeBeforeMillisecondFalse": Tuple{ expression: @T15:59:59.998 before millisecond of @T15:59:59.997, output: false } } define "DateTime": Tuple{ "DateTimeYear": Tuple{ expression: DateTime(2003), output: @2003T }, "DateTimeMonth": Tuple{ expression: DateTime(2003, 10), output: @2003-10T }, "DateTimeDay": Tuple{ expression: DateTime(2003, 10, 29), output: @2003-10-29T }, "DateTimeHour": Tuple{ expression: DateTime(2003, 10, 29, 20), output: @2003-10-29T20 }, "DateTimeMinute": Tuple{ expression: DateTime(2003, 10, 29, 20, 50), output: @2003-10-29T20:50 }, "DateTimeSecond": Tuple{ expression: DateTime(2003, 10, 29, 20, 50, 33), output: @2003-10-29T20:50:33 }, "DateTimeMillisecond": Tuple{ expression: DateTime(2003, 10, 29, 20, 50, 33, 955), output: @2003-10-29T20:50:33.955 } } define "DateTimeComponentFrom": Tuple{ "DateTimeComponentFromYear": Tuple{ expression: year from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 2003 }, "DateTimeComponentFromMonth": Tuple{ expression: month from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 10 }, "DateTimeComponentFromMonthMinBoundary": Tuple{ expression: month from DateTime(2003, 01, 29, 20, 50, 33, 955), output: 1 }, "DateTimeComponentFromDay": Tuple{ expression: day from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 29 }, "DateTimeComponentFromHour": Tuple{ expression: hour from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 20 }, "DateTimeComponentFromMinute": Tuple{ expression: minute from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 50 }, "DateTimeComponentFromSecond": Tuple{ expression: second from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 33 }, "DateTimeComponentFromMillisecond": Tuple{ expression: millisecond from DateTime(2003, 10, 29, 20, 50, 33, 955), output: 955 }, "DateTimeComponentFromTimezone": Tuple{ skipped: 'Translation Error: Timezone keyword is only valid in 1.3 or lower' /* expression: timezone from DateTime(2003, 10, 29, 20, 50, 33, 955, 1), output: 1.00 */ }, "DateTimeComponentFromDate": Tuple{ expression: date from DateTime(2003, 10, 29, 20, 50, 33, 955, 1), output: @2003-10-29 }, "TimeComponentFromHour": Tuple{ expression: hour from @T23:20:15.555, output: 23 }, "TimeComponentFromMinute": Tuple{ expression: minute from @T23:20:15.555, output: 20 }, "TimeComponentFromSecond": Tuple{ expression: second from @T23:20:15.555, output: 15 }, "TimeComponentFromMilli": Tuple{ expression: millisecond from @T23:20:15.555, output: 555 } } define "Difference": Tuple{ "DateTimeDifferenceYear": Tuple{ expression: difference in years between DateTime(2000) and DateTime(2005, 12), output: 5 }, "DateTimeDifferenceMonth": Tuple{ expression: difference in months between DateTime(2000, 2) and DateTime(2000, 10), output: 8 }, "DateTimeDifferenceDay": Tuple{ expression: difference in days between DateTime(2000, 10, 15, 10, 30) and DateTime(2000, 10, 25, 10, 0), output: 10 }, "DateTimeDifferenceHour": Tuple{ expression: difference in hours between DateTime(2000, 4, 1, 12) and DateTime(2000, 4, 1, 20), output: 8 }, "DateTimeDifferenceMinute": Tuple{ expression: difference in minutes between DateTime(2005, 12, 10, 5, 16) and DateTime(2005, 12, 10, 5, 25), output: 9 }, "DateTimeDifferenceSecond": Tuple{ expression: difference in seconds between DateTime(2000, 10, 10, 10, 5, 45) and DateTime(2000, 10, 10, 10, 5, 50), output: 5 }, "DateTimeDifferenceMillisecond": Tuple{ expression: difference in milliseconds between DateTime(2000, 10, 10, 10, 5, 45, 500, -6.0) and DateTime(2000, 10, 10, 10, 5, 45, 900, -7.0), output: 3600400 }, "DateTimeDifferenceWeeks": Tuple{ expression: difference in weeks between DateTime(2000, 10, 15) and DateTime(2000, 10, 28), output: 1 }, "DateTimeDifferenceWeeks2": Tuple{ expression: difference in weeks between DateTime(2000, 10, 15) and DateTime(2000, 10, 29), output: 2 }, "DateTimeDifferenceWeeks3": Tuple{ expression: difference in weeks between @2012-03-10T22:05:09 and @2012-03-24T07:19:33, output: 2 }, "DateTimeDifferenceNegative": Tuple{ expression: difference in years between DateTime(2016) and DateTime(1998), output: -18 }, "DateTimeDifferenceUncertain": Tuple{ expression: difference in months between DateTime(2005) and DateTime(2006, 7) > 5, output: true }, "TimeDifferenceHour": Tuple{ expression: difference in hours between @T20 and @T23:25:15.555, output: 3 }, "TimeDifferenceMinute": Tuple{ expression: difference in minutes between @T20:20:15.555 and @T20:25:15.555, output: 5 }, "TimeDifferenceSecond": Tuple{ expression: difference in seconds between @T20:20:15.555 and @T20:20:20.555, output: 5 }, "TimeDifferenceMillis": Tuple{ expression: difference in milliseconds between @T20:20:15.555 and @T20:20:15.550, output: -5 } } define "From Github issue #29": Tuple{ "DateTimeA": Tuple{ expression: @2017-03-12T01:00:00-07:00, output: @2017-03-12T01:00:00-07:00 }, "DateTimeAA": Tuple{ expression: DateTime(2017, 3, 12, 1, 0, 0, 0, -7.0), output: @2017-03-12T01:00:00.000-07:00 }, "DateTimeB": Tuple{ expression: @2017-03-12T03:00:00-06:00, output: @2017-03-12T03:00:00-06:00 }, "DateTimeBB": Tuple{ expression: DateTime(2017, 3, 12, 3, 0, 0, 0, -6.0), output: @2017-03-12T03:00:00.000-06:00 }, "DateTimeC": Tuple{ expression: @2017-11-05T01:30:00-06:00, output: @2017-11-05T01:30:00-06:00 }, "DateTimeCC": Tuple{ expression: DateTime(2017, 11, 5, 1, 30, 0, 0, -6.0), output: @2017-11-05T01:30:00.000-06:00 }, "DateTimeD": Tuple{ expression: @2017-11-05T01:15:00-07:00, output: @2017-11-05T01:15:00-07:00 }, "DateTimeDD": Tuple{ expression: DateTime(2017, 11, 5, 1, 15, 0, 0, -7.0), output: @2017-11-05T01:15:00.000-07:00 }, "DateTimeE": Tuple{ expression: @2017-03-12T00:00:00-07:00, output: @2017-03-12T00:00:00-07:00 }, "DateTimeEE": Tuple{ expression: DateTime(2017, 3, 12, 0, 0, 0, 0, -7.0), output: @2017-03-12T00:00:00.000-07:00 }, "DateTimeF": Tuple{ expression: @2017-03-13T00:00:00-06:00, output: @2017-03-13T00:00:00-06:00 }, "DateTimeFF": Tuple{ expression: DateTime(2017, 3, 13, 0, 0, 0, 0, -6.0), output: @2017-03-13T00:00:00.000-06:00 }, "DifferenceInHoursA": Tuple{ expression: difference in hours between @2017-03-12T01:00:00-07:00 and @2017-03-12T03:00:00-06:00, output: 1 }, "DifferenceInMinutesA": Tuple{ expression: difference in minutes between @2017-11-05T01:30:00-06:00 and @2017-11-05T01:15:00-07:00, output: 45 }, "DifferenceInDaysA": Tuple{ expression: difference in days between @2017-03-12T00:00:00-07:00 and @2017-03-13T00:00:00-06:00, output: 1 }, "DifferenceInHoursAA": Tuple{ expression: difference in hours between DateTime(2017, 3, 12, 1, 0, 0, 0, -7.0) and DateTime(2017, 3, 12, 3, 0, 0, 0, -6.0), output: 1 }, "DifferenceInMinutesAA": Tuple{ expression: difference in minutes between DateTime(2017, 11, 5, 1, 30, 0, 0, -6.0) and DateTime(2017, 11, 5, 1, 15, 0, 0, -7.0), output: 45 }, "DifferenceInDaysAA": Tuple{ expression: difference in days between DateTime(2017, 3, 12, 0, 0, 0, 0, -7.0) and DateTime(2017, 3, 13, 0, 0, 0, 0, -6.0), output: 1 } } define "Duration": Tuple{ "DateTimeDurationBetweenYear": Tuple{ expression: years between DateTime(2005) and DateTime(2010), output: Interval[ 4, 5 ] }, "DateTimeDurationBetweenYearOffset": Tuple{ expression: years between DateTime(2005, 5) and DateTime(2010, 4), output: 4 }, "DateTimeDurationBetweenMonth": Tuple{ expression: months between @2014-01-31 and @2014-02-01, output: 0 }, "DateTimeDurationBetweenDaysDiffYears": Tuple{ expression: days between DateTime(2010, 10, 12, 12, 5) and DateTime(2008, 8, 15, 8, 8), output: -788 } } define "Uncertainty tests": Tuple{ "DateTimeDurationBetweenUncertainInterval": Tuple{ expression: days between DateTime(2014, 1, 15) and DateTime(2014, 2), output: Interval[ 16, 44 ] }, "DateTimeDurationBetweenUncertainInterval2": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 5), output: Interval[ 4, 16 ] }, "DateTimeDurationBetweenUncertainAdd": Tuple{ expression: (days between DateTime(2014, 1, 15) and DateTime(2014, 2)) + (days between DateTime(2014, 1, 15) and DateTime(2014, 2)), output: Interval[ 32, 88 ] }, "DateTimeDurationBetweenUncertainSubtract": Tuple{ expression: (days between DateTime(2014, 1, 15) and DateTime(2014, 2)) - (months between DateTime(2005) and DateTime(2006, 5)), output: Interval[ 0, 40 ] }, "DateTimeDurationBetweenUncertainMultiply": Tuple{ expression: (days between DateTime(2014, 1, 15) and DateTime(2014, 2)) * (days between DateTime(2014, 1, 15) and DateTime(2014, 2)), output: Interval[ 256, 1936 ] }, "DateTimeDurationBetweenUncertainDiv": Tuple{ expression: (days between DateTime(2014, 1, 15) and DateTime(2014, 2)) div (months between DateTime(2005) and DateTime(2006, 5)), invalid: true }, "DateTimeDurationBetweenMonthUncertain": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 7) > 5, output: true }, "DateTimeDurationBetweenMonthUncertain2": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 2) > 5, output: null }, "DateTimeDurationBetweenMonthUncertain3": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 7) > 25, output: false }, "DateTimeDurationBetweenMonthUncertain4": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 7) < 24, output: true }, "DateTimeDurationBetweenMonthUncertain5": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 7) = 24, output: false }, "DateTimeDurationBetweenMonthUncertain6": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 7) >= 5, output: true }, "DateTimeDurationBetweenMonthUncertain7": Tuple{ expression: months between DateTime(2005) and DateTime(2006, 7) <= 24, output: true }, "DateTime1": Tuple{ expression: @2012-03-10T10:20:00, output: @2012-03-10T10:20:00 }, "DateTime2": Tuple{ expression: @2013-03-10T09:20:00, output: @2013-03-10T09:20:00 }, "DurationInYears": Tuple{ expression: years between (date from @2012-03-10T10:20:00) and (date from @2013-03-10T09:20:00), output: 1 }, "DurationInWeeks": Tuple{ expression: weeks between @2012-03-10T22:05:09 and @2012-03-20T07:19:33, output: 1 }, "DurationInWeeks2": Tuple{ expression: weeks between @2012-03-10T22:05:09 and @2012-03-24T07:19:33, output: 1 }, "DurationInWeeks3": Tuple{ expression: weeks between @2012-03-10T06:05:09 and @2012-03-24T07:19:33, output: 2 }, "TimeDurationBetweenHour": Tuple{ expression: hours between @T20:26:15.555 and @T23:25:15.555, output: 2 }, "TimeDurationBetweenHourDiffPrecision": Tuple{ skipped: 'Translation Error: Syntax error at Z' /* expression: hours between @T06Z and @T07:00:00Z, output: 1 */ }, "TimeDurationBetweenMinute": Tuple{ expression: minutes between @T23:20:16.555 and @T23:25:15.555, output: 4 }, "TimeDurationBetweenSecond": Tuple{ expression: seconds between @T23:25:10.556 and @T23:25:15.555, output: 4 }, "TimeDurationBetweenMillis": Tuple{ expression: milliseconds between @T23:25:25.555 and @T23:25:25.560, output: 5 }, "DurationInHoursA": Tuple{ skipped: 'Is @2017-03-12T01:00:00-07:00 uncertain?' /* expression: hours between @2017-03-12T01:00:00-07:00 and @2017-03-12T03:00:00-06:00, output: 1 */ }, "DurationInMinutesA": Tuple{ skipped: 'Is @2017-03-12T01:00:00-07:00 uncertain?' /* expression: minutes between @2017-11-05T01:30:00-06:00 and @2017-11-05T01:15:00-07:00, output: 45 */ }, "DurationInDaysA": Tuple{ expression: days between @2017-03-12T00:00:00-07:00 and @2017-03-13T00:00:00-06:00, output: 0 }, "DurationInHoursAA": Tuple{ expression: hours between DateTime(2017, 3, 12, 1, 0, 0, 0, -7.0) and DateTime(2017, 3, 12, 3, 0, 0, 0, -6.0), output: 1 }, "DurationInMinutesAA": Tuple{ expression: minutes between DateTime(2017, 11, 5, 1, 30, 0, 0, -6.0) and DateTime(2017, 11, 5, 1, 15, 0, 0, -7.0), output: 45 }, "DurationInDaysAA": Tuple{ expression: days between DateTime(2017, 3, 12, 0, 0, 0, 0, -7.0) and DateTime(2017, 3, 13, 0, 0, 0, 0, -6.0), output: 0 } } define "Now": Tuple{ "DateTimeNow": Tuple{ expression: Now() = Now(), output: true } } define "SameAs": Tuple{ "DateTimeSameAsYearTrue": Tuple{ expression: DateTime(2014) same year as DateTime(2014), output: true }, "DateTimeSameAsYearFalse": Tuple{ expression: DateTime(2013) same year as DateTime(2014), output: false }, "DateTimeSameAsMonthTrue": Tuple{ expression: DateTime(2014, 12) same month as DateTime(2014, 12), output: true }, "DateTimeSameAsMonthFalse": Tuple{ expression: DateTime(2014, 12) same month as DateTime(2014, 10), output: false }, "DateTimeSameAsDayTrue": Tuple{ expression: DateTime(2014, 12, 10) same day as DateTime(2014, 12, 10), output: true }, "DateTimeSameAsDayFalse": Tuple{ expression: DateTime(2014, 10, 10) same day as DateTime(2014, 10, 11), output: false }, "DateTimeSameAsHourTrue": Tuple{ expression: DateTime(2014, 12, 10, 20) same hour as DateTime(2014, 12, 10, 20), output: true }, "DateTimeSameAsHourFalse": Tuple{ expression: DateTime(2014, 10, 10, 20) same hour as DateTime(2014, 10, 10, 21), output: false }, "DateTimeSameAsMinuteTrue": Tuple{ expression: DateTime(2014, 12, 10, 20, 55) same minute as DateTime(2014, 12, 10, 20, 55), output: true }, "DateTimeSameAsMinuteFalse": Tuple{ expression: DateTime(2014, 10, 10, 20, 55) same minute as DateTime(2014, 10, 10, 21, 56), output: false }, "DateTimeSameAsSecondTrue": Tuple{ expression: DateTime(2014, 12, 10, 20, 55, 45) same second as DateTime(2014, 12, 10, 20, 55, 45), output: true }, "DateTimeSameAsSecondFalse": Tuple{ expression: DateTime(2014, 10, 10, 20, 55, 45) same second as DateTime(2014, 10, 10, 21, 55, 44), output: false }, "DateTimeSameAsMillisecondTrue": Tuple{ expression: DateTime(2014, 12, 10, 20, 55, 45, 500) same millisecond as DateTime(2014, 12, 10, 20, 55, 45, 500), output: true }, "DateTimeSameAsMillisecondFalse": Tuple{ expression: DateTime(2014, 10, 10, 20, 55, 45, 500) same millisecond as DateTime(2014, 10, 10, 21, 55, 45, 501), output: false }, "DateTimeSameAsNull": Tuple{ expression: DateTime(2014, 10) same day as DateTime(2014, 10, 12), output: null }, "SameAsTimezoneTrue": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 same hour as @2012-03-10T09:20:00.999+06:00, output: true }, "SameAsTimezoneFalse": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 same hour as @2012-03-10T10:20:00.999+06:00, output: false }, "TimeSameAsHourTrue": Tuple{ expression: @T23:25:25.555 same hour as @T23:55:25.900, output: true }, "TimeSameAsHourFalse": Tuple{ expression: @T22:25:25.555 same hour as @T23:25:25.555, output: false }, "TimeSameAsMinuteTrue": Tuple{ expression: @T23:55:22.555 same minute as @T23:55:25.900, output: true }, "TimeSameAsMinuteFalse": Tuple{ expression: @T23:26:25.555 same minute as @T23:25:25.555, output: false }, "TimeSameAsSecondTrue": Tuple{ expression: @T23:55:25.555 same second as @T23:55:25.900, output: true }, "TimeSameAsSecondFalse": Tuple{ expression: @T23:25:35.555 same second as @T23:25:25.555, output: false }, "TimeSameAsMillisTrue": Tuple{ expression: @T23:55:25.555 same millisecond as @T23:55:25.555, output: true }, "TimeSameAsMillisFalse": Tuple{ expression: @T23:25:25.555 same millisecond as @T23:25:25.554, output: false } } define "SameOrAfter": Tuple{ "DateTimeSameOrAfterYearTrue1": Tuple{ expression: DateTime(2014) same year or after DateTime(2014), output: true }, "DateTimeSameOrAfterYearTrue2": Tuple{ expression: DateTime(2016) same year or after DateTime(2014), output: true }, "DateTimeSameOrAfterYearFalse": Tuple{ expression: DateTime(2013) same year or after DateTime(2014), output: false }, "DateTimeSameOrAfterMonthTrue1": Tuple{ expression: DateTime(2014, 12) same month or after DateTime(2014, 12), output: true }, "DateTimeSameOrAfterMonthTrue2": Tuple{ expression: DateTime(2014, 10) same month or after DateTime(2014, 9), output: true }, "DateTimeSameOrAfterMonthFalse": Tuple{ expression: DateTime(2014, 10) same month or after DateTime(2014, 11), output: false }, "DateTimeSameOrAfterDayTrue1": Tuple{ expression: DateTime(2014, 12, 20) same day or after DateTime(2014, 12, 20), output: true }, "DateTimeSameOrAfterDayTrue2": Tuple{ expression: DateTime(2014, 10, 25) same day or after DateTime(2014, 10, 20), output: true }, "DateTimeSameOrAfterDayFalse": Tuple{ expression: DateTime(2014, 10, 20) same day or after DateTime(2014, 10, 25), output: false }, "DateTimeSameOrAfterHourTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12) same hour or after DateTime(2014, 12, 20, 12), output: true }, "DateTimeSameOrAfterHourTrue2": Tuple{ expression: DateTime(2014, 10, 25, 12) same hour or after DateTime(2014, 10, 25, 10), output: true }, "DateTimeSameOrAfterHourFalse": Tuple{ expression: DateTime(2014, 10, 25, 12) same hour or after DateTime(2014, 10, 25, 15), output: false }, "DateTimeSameOrAfterMinuteTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12, 30) same minute or after DateTime(2014, 12, 20, 12, 30), output: true }, "DateTimeSameOrAfterMinuteTrue2": Tuple{ expression: DateTime(2014, 10, 25, 10, 30) same minute or after DateTime(2014, 10, 25, 10, 25), output: true }, "DateTimeSameOrAfterMinuteFalse": Tuple{ expression: DateTime(2014, 10, 25, 15, 30) same minute or after DateTime(2014, 10, 25, 15, 45), output: false }, "DateTimeSameOrAfterSecondTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12, 30, 15) same second or after DateTime(2014, 12, 20, 12, 30, 15), output: true }, "DateTimeSameOrAfterSecondTrue2": Tuple{ expression: DateTime(2014, 10, 25, 10, 25, 25) same second or after DateTime(2014, 10, 25, 10, 25, 20), output: true }, "DateTimeSameOrAfterSecondFalse": Tuple{ expression: DateTime(2014, 10, 25, 15, 45, 20) same second or after DateTime(2014, 10, 25, 15, 45, 21), output: false }, "DateTimeSameOrAfterMillisecondTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12, 30, 15, 250) same millisecond or after DateTime(2014, 12, 20, 12, 30, 15, 250), output: true }, "DateTimeSameOrAfterMillisecondTrue2": Tuple{ expression: DateTime(2014, 10, 25, 10, 25, 20, 500) same millisecond or after DateTime(2014, 10, 25, 10, 25, 20, 499), output: true }, "DateTimeSameOrAfterMillisecondFalse": Tuple{ expression: DateTime(2014, 10, 25, 15, 45, 20, 500) same millisecond or after DateTime(2014, 10, 25, 15, 45, 20, 501), output: false }, "DateTimeSameOrAfterNull1": Tuple{ expression: DateTime(2014, 12, 20) same day or after DateTime(2014, 12), output: null }, "SameOrAfterTimezoneTrue": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 same hour or after @2012-03-10T09:20:00.999+06:00, output: true }, "SameOrAfterTimezoneFalse": Tuple{ expression: @2012-03-10T10:20:00.999+07:00 same hour or after @2012-03-10T10:20:00.999+06:00, output: false }, "TimeSameOrAfterHourTrue1": Tuple{ expression: @T23:25:25.555 same hour or after @T23:55:25.900, output: true }, "TimeSameOrAfterHourTrue2": Tuple{ expression: @T23:25:25.555 same hour or after @T22:55:25.900, output: true }, "TimeSameOrAfterHourFalse": Tuple{ expression: @T22:25:25.555 same hour or after @T23:55:25.900, output: false }, "TimeSameOrAfterMinuteTrue1": Tuple{ expression: @T23:25:25.555 same minute or after @T23:25:25.900, output: true }, "TimeSameOrAfterMinuteTrue2": Tuple{ expression: @T23:25:25.555 same minute or after @T22:15:25.900, output: true }, "TimeSameOrAfterMinuteFalse": Tuple{ expression: @T23:25:25.555 same minute or after @T23:55:25.900, output: false }, "TimeSameOrAfterSecondTrue1": Tuple{ expression: @T23:25:25.555 same second or after @T23:25:25.900, output: true }, "TimeSameOrAfterSecondTrue2": Tuple{ expression: @T23:25:35.555 same second or after @T22:25:25.900, output: true }, "TimeSameOrAfterSecondFalse": Tuple{ expression: @T23:55:25.555 same second or after @T23:55:35.900, output: false }, "TimeSameOrAfterMillisTrue1": Tuple{ expression: @T23:25:25.555 same millisecond or after @T23:25:25.555, output: true }, "TimeSameOrAfterMillisTrue2": Tuple{ expression: @T23:25:25.555 same millisecond or after @T22:25:25.550, output: true }, "TimeSameOrAfterMillisFalse": Tuple{ expression: @T23:55:25.555 same millisecond or after @T23:55:25.900, output: false }, "OnOrAfterTrue": Tuple{ expression: @2017-12-20T11:00:00.000 on or after @2017-12-20T11:00:00.000, output: true }, "Issue32DateTime": Tuple{ expression: @2017-12-21T02:00:00.0 same or after @2017-12-20T11:00:00.0, output: true } } define "SameOrBefore": Tuple{ "DateTimeSameOrBeforeYearTrue1": Tuple{ expression: DateTime(2014) same year or before DateTime(2014), output: true }, "DateTimeSameOrBeforeYearTrue2": Tuple{ expression: DateTime(2013) same year or before DateTime(2014), output: true }, "DateTimeSameOrBeforeYearFalse": Tuple{ expression: DateTime(2015) same year or before DateTime(2014), output: false }, "DateTimeSameOrBeforeMonthTrue1": Tuple{ expression: DateTime(2014, 12) same month or before DateTime(2014, 12), output: true }, "DateTimeSameOrBeforeMonthTrue2": Tuple{ expression: DateTime(2014, 8) same month or before DateTime(2014, 9), output: true }, "DateTimeSameOrBeforeMonthFalse": Tuple{ expression: DateTime(2014, 12) same month or before DateTime(2014, 11), output: false }, "DateTimeSameOrBeforeDayTrue1": Tuple{ expression: DateTime(2014, 12, 20) same day or before DateTime(2014, 12, 20), output: true }, "DateTimeSameOrBeforeDayTrue2": Tuple{ expression: DateTime(2014, 10, 15) same day or before DateTime(2014, 10, 20), output: true }, "DateTimeSameOrBeforeDayFalse": Tuple{ expression: DateTime(2014, 10, 30) same day or before DateTime(2014, 10, 25), output: false }, "DateTimeSameOrBeforeHourTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12) same hour or before DateTime(2014, 12, 20, 12), output: true }, "DateTimeSameOrBeforeHourTrue2": Tuple{ expression: DateTime(2014, 10, 25, 5) same hour or before DateTime(2014, 10, 25, 10), output: true }, "DateTimeSameOrBeforeHourFalse": Tuple{ expression: DateTime(2014, 10, 25, 20) same hour or before DateTime(2014, 10, 25, 15), output: false }, "DateTimeSameOrBeforeMinuteTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12, 30) same minute or before DateTime(2014, 12, 20, 12, 30), output: true }, "DateTimeSameOrBeforeMinuteTrue2": Tuple{ expression: DateTime(2014, 10, 25, 10, 20) same minute or before DateTime(2014, 10, 25, 10, 25), output: true }, "DateTimeSameOrBeforeMinuteFalse": Tuple{ expression: DateTime(2014, 10, 25, 15, 55) same minute or before DateTime(2014, 10, 25, 15, 45), output: false }, "DateTimeSameOrBeforeSecondTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12, 30, 15) same second or before DateTime(2014, 12, 20, 12, 30, 15), output: true }, "DateTimeSameOrBeforeSecondTrue2": Tuple{ expression: DateTime(2014, 10, 25, 10, 25, 15) same second or before DateTime(2014, 10, 25, 10, 25, 20), output: true }, "DateTimeSameOrBeforeSecondFalse": Tuple{ expression: DateTime(2014, 10, 25, 15, 45, 25) same second or before DateTime(2014, 10, 25, 15, 45, 21), output: false }, "DateTimeSameOrBeforeMillisecondTrue1": Tuple{ expression: DateTime(2014, 12, 20, 12, 30, 15, 250) same millisecond or before DateTime(2014, 12, 20, 12, 30, 15, 250), output: true }, "DateTimeSameOrBeforeMillisecondTrue2": Tuple{ expression: DateTime(2014, 10, 25, 10, 25, 20, 450) same millisecond or before DateTime(2014, 10, 25, 10, 25, 20, 499), output: true }, "DateTimeSameOrBeforeMillisecondFalse": Tuple{ expression: DateTime(2014, 10, 25, 15, 45, 20, 505) same millisecond or before DateTime(2014, 10, 25, 15, 45, 20, 501), output: false }, "DateTimeSameOrBeforeNull1": Tuple{ expression: DateTime(2014, 12, 20) same minute or before DateTime(2014, 12, 20, 15), output: null }, "SameOrBeforeTimezoneTrue": Tuple{ expression: @2012-03-10T09:20:00.999+07:00 same hour or before @2012-03-10T10:20:00.999+06:00, output: true }, "SameOrBeforeTimezoneFalse": Tuple{ expression: @2012-03-10T10:20:00.999+06:00 same hour or before @2012-03-10T10:20:00.999+07:00, output: false }, "TimeSameOrBeforeHourTrue1": Tuple{ expression: @T23:25:25.555 same hour or before @T23:55:25.900, output: true }, "TimeSameOrBeforeHourTrue2": Tuple{ expression: @T21:25:25.555 same hour or before @T22:55:25.900, output: true }, "TimeSameOrBeforeHourFalse": Tuple{ expression: @T22:25:25.555 same hour or before @T21:55:25.900, output: false }, "TimeSameOrBeforeMinuteTrue1": Tuple{ expression: @T23:25:25.555 same minute or before @T23:25:25.900, output: true }, "TimeSameOrBeforeMinuteFalse0": Tuple{ expression: @T23:10:25.555 same minute or before @T22:15:25.900, output: false }, "TimeSameOrBeforeMinuteFalse": Tuple{ expression: @T23:56:25.555 same minute or before @T23:55:25.900, output: false }, "TimeSameOrBeforeSecondTrue1": Tuple{ expression: @T23:25:25.555 same second or before @T23:25:25.900, output: true }, "TimeSameOrBeforeSecondFalse0": Tuple{ expression: @T23:25:35.555 same second or before @T22:25:45.900, output: false }, "TimeSameOrBeforeSecondFalse": Tuple{ expression: @T23:55:45.555 same second or before @T23:55:35.900, output: false }, "TimeSameOrBeforeMillisTrue1": Tuple{ expression: @T23:25:25.555 same millisecond or before @T23:25:25.555, output: true }, "TimeSameOrBeforeMillisFalse0": Tuple{ expression: @T23:25:25.200 same millisecond or before @T22:25:25.550, output: false }, "TimeSameOrBeforeMillisFalse": Tuple{ expression: @T23:55:25.966 same millisecond or before @T23:55:25.900, output: false } } define "Subtract": Tuple{ "DateTimeSubtract5Years": Tuple{ expression: DateTime(2005, 10, 10) - 5 years, output: @2000-10-10T }, "DateTimeSubtractInvalidYears": Tuple{ expression: DateTime(2005, 10, 10) - 2005 years, invalid: true }, "DateTimeSubtract5Months": Tuple{ expression: DateTime(2005, 6, 10) - 5 months, output: @2005-01-10T }, "DateTimeSubtractMonthsUnderflow": Tuple{ expression: DateTime(2005, 5, 10) - 6 months, output: @2004-11-10T }, "DateTimeSubtract5Days": Tuple{ expression: DateTime(2005, 5, 10) - 5 days, output: @2005-05-05T }, "DateTimeSubtractDaysUnderflow": Tuple{ expression: DateTime(2016, 6, 10) - 11 days, output: @2016-05-30T }, "DateTimeSubtract5Hours": Tuple{ expression: DateTime(2005, 5, 10, 10) - 5 hours, output: @2005-05-10T05 }, "DateTimeSubtractHoursUnderflow": Tuple{ expression: DateTime(2016, 6, 10, 5) - 6 hours, output: @2016-06-09T23 }, "DateTimeSubtract5Minutes": Tuple{ expression: DateTime(2005, 5, 10, 5, 10) - 5 minutes, output: @2005-05-10T05:05 }, "DateTimeSubtractMinutesUnderflow": Tuple{ expression: DateTime(2016, 6, 10, 5, 5) - 6 minutes, output: @2016-06-10T04:59 }, "DateTimeSubtract5Seconds": Tuple{ expression: DateTime(2005, 5, 10, 5, 5, 10) - 5 seconds, output: @2005-05-10T05:05:05 }, "DateTimeSubtractSecondsUnderflow": Tuple{ expression: DateTime(2016, 6, 10, 5, 5, 5) - 6 seconds, output: @2016-06-10T05:04:59 }, "DateTimeSubtract5Milliseconds": Tuple{ expression: DateTime(2005, 5, 10, 5, 5, 5, 10) - 5 milliseconds, output: @2005-05-10T05:05:05.005 }, "DateTimeSubtractMillisecondsUnderflow": Tuple{ expression: DateTime(2016, 6, 10, 5, 5, 5, 5) - 6 milliseconds, output: @2016-06-10T05:05:04.999 }, "DateTimeSubtract2YearsAsMonths": Tuple{ expression: DateTime(2014) - 24 months, output: @2012T }, "DateTimeSubtract2YearsAsMonthsRem1": Tuple{ expression: DateTime(2014) - 25 months, output: @2012T }, "TimeSubtract5Hours": Tuple{ expression: @T15:59:59.999 - 5 hours, output: @T10:59:59.999 }, "TimeSubtract1Minute": Tuple{ expression: @T15:59:59.999 - 1 minutes, output: @T15:58:59.999 }, "TimeSubtract1Second": Tuple{ expression: @T15:59:59.999 - 1 seconds, output: @T15:59:58.999 }, "TimeSubtract1Millisecond": Tuple{ expression: @T15:59:59.0 - 1 milliseconds, output: @T15:59:58.999 }, "TimeSubtract5Hours1Minute": Tuple{ expression: @T15:59:59.999 - 5 hours - 1 minutes, output: @T10:58:59.999 }, "TimeSubtract5hoursByMinute": Tuple{ expression: @T15:59:59.999 - 300 minutes, output: @T10:59:59.999 } } define "Time": Tuple{ "TimeTest2": Tuple{ expression: @T23:59:59.999, output: @T23:59:59.999 } } define "TimeOfDay": Tuple{ "TimeOfDayTest": Tuple{ expression: TimeOfDay(), output: TimeOfDay() } } define "Today": Tuple{ "DateTimeSameOrBeforeTodayTrue1": Tuple{ expression: Today() same day or before Today(), output: true }, "DateTimeSameOrBeforeTodayTrue2": Tuple{ expression: Today() same day or before Today() + 1 days, output: true }, "DateTimeSameOrBeforeTodayFalse": Tuple{ expression: Today() + 1 years same day or before Today(), output: false }, "DateTimeAddTodayTrue": Tuple{ expression: Today() + 1 days > Today(), output: true }, "Issue34B": Tuple{ expression: Today(), output: Today() } }
-- Note that this may require the pg_crypto extension: --CREATE EXTENSION pgcrypto; -- The anonymous database produced may not yet be fully anonymous due to issues with gameboards! CREATE OR REPLACE FUNCTION anonymise(id TEXT, salt TEXT) RETURNS TEXT AS $$ BEGIN RETURN encode(hmac(id, salt, 'sha256'), 'hex'); END; $$ LANGUAGE plpgsql; CREATE OR REPLACE FUNCTION anonymise(id BIGINT, salt TEXT) RETURNS TEXT AS $$ BEGIN RETURN anonymise(id::TEXT, salt); END; $$ LANGUAGE plpgsql; CREATE OR REPLACE FUNCTION create_anonymous_database(hash_salt TEXT) RETURNS boolean AS $$ BEGIN DROP SCHEMA IF EXISTS anonymous CASCADE; CREATE SCHEMA anonymous; -- User related tables: CREATE TABLE anonymous.users AS SELECT id AS old_id, anonymise(id, hash_salt) AS id, role, CASE WHEN date_part('month', date_of_birth) < 9 THEN make_date((date_part('year', date_of_birth)-1)::int, 9, 1) WHEN date_part('month', date_of_birth) >= 9 THEN make_date(date_part('year', date_of_birth)::int, 9, 1) ELSE NULL END AS date_of_birth, school_id, registration_date, last_seen FROM public.users; CREATE TABLE anonymous.linked_accounts AS SELECT anonymise(user_id, hash_salt) AS user_id, provider FROM public.linked_accounts; CREATE TABLE anonymous.user_preferences AS SELECT anonymise(user_id, hash_salt) AS user_id, preference_type, preference_name, preference_value FROM public.user_preferences; -- Group related tables: CREATE TABLE anonymous.user_associations AS SELECT anonymise(user_id_granting_permission, hash_salt) AS user_id_granting_permission , anonymise(user_id_receiving_permission, hash_salt) AS user_id_receiving_permission, created FROM public.user_associations; CREATE TABLE anonymous.groups AS SELECT anonymise(id, hash_salt) AS id, anonymise(owner_id, hash_salt) AS owner_id, created, archived FROM public.groups; CREATE TABLE anonymous.group_memberships AS SELECT anonymise(group_id, hash_salt) AS group_id, anonymise(user_id, hash_salt) AS user_id, created FROM public.group_memberships; CREATE TABLE anonymous.group_additional_managers AS SELECT anonymise(group_id, hash_salt) AS group_id, anonymise(user_id, hash_salt) AS user_id, created FROM public.group_additional_managers; -- Assignment related tables: CREATE TABLE anonymous.gameboards AS SELECT id, questions, wildcard, wildcard_position, game_filter, anonymise(owner_user_id, hash_salt) AS owner_user_id, creation_method, creation_date, tags FROM public.gameboards; CREATE TABLE anonymous.user_gameboards AS SELECT anonymise(user_id, hash_salt) AS user_id, gameboard_id, created, last_visited FROM public.user_gameboards; CREATE TABLE anonymous.assignments AS SELECT anonymise(id, hash_salt) AS id, gameboard_id, anonymise(group_id, hash_salt) AS group_id, anonymise(owner_user_id, hash_salt) AS owner_user_id, creation_date, due_date FROM public.assignments; -- Event bookings: CREATE TABLE anonymous.event_bookings AS SELECT id, event_id, created, anonymise(user_id, hash_salt) AS user_id, status, updated FROM public.event_bookings; -- Question attempt related tables: CREATE TABLE anonymous.question_attempts AS SELECT id, anonymise(user_id, hash_salt) AS user_id, question_id, question_attempt, correct, timestamp FROM public.question_attempts; CREATE TABLE anonymous.user_streak_freezes AS SELECT anonymise(user_id, hash_salt) AS user_id, start_date, end_date FROM public.user_streak_freezes; CREATE TABLE anonymous.user_streak_targets AS SELECT anonymise(user_id, hash_salt) AS user_id, target_count, start_date, end_date FROM public.user_streak_targets; -- Logged events: CREATE TABLE anonymous.logged_events AS SELECT id, anonymise(user_id, hash_salt) AS user_id, anonymous_user, event_type, event_details_type, event_details, timestamp FROM public.logged_events WHERE event_type IN ( -- Question usage: 'VIEW_QUESTION', 'ANSWER_QUESTION', 'QUESTION_ATTEMPT_RATE_LIMITED', 'QUICK_QUESTION_SHOW_ANSWER', 'QUESTION_PART_OPEN', 'VIEW_HINT', 'VIEW_RELATED_CONCEPT', 'VIEW_RELATED_QUESTION', 'VIDEO_ENDED', 'VIDEO_PAUSE', 'VIDEO_PLAY', 'VIEW_SUPERSEDED_BY_QUESTION', -- Concept usage: 'VIEW_CONCEPT', 'CONCEPT_SECTION_OPEN', 'QUICK_QUESTION_TAB_VIEW', -- Page usage: 'VIEW_PAGE', 'VIEW_PAGE_FRAGMENT', -- Assignment usage: 'VIEW_MY_ASSIGNMENTS', 'VIEW_MY_BOARDS_PAGE', 'VIEW_GAMEBOARD_BY_ID', -- Group and assignment related usage: 'CREATE_USER_ASSOCIATION', 'RELEASE_USER_ASSOCIATION', 'REVOKE_USER_ASSOCIATION', 'CREATE_USER_GROUP', 'DELETE_USER_GROUP', 'ADD_ADDITIONAL_GROUP_MANAGER', 'DELETE_ADDITIONAL_GROUP_MANAGER', 'SET_NEW_ASSIGNMENT', 'DELETE_ASSIGNMENT', 'VIEW_BOARD_BUILDER', 'CLONE_GAMEBOARD', 'VIEW_ASSIGNMENT_PROGRESS', 'DOWNLOAD_ASSIGNMENT_PROGRESS_CSV', 'DOWNLOAD_GROUP_PROGRESS_CSV', 'VIEW_USER_PROGRESS', -- Event related usage: 'ADMIN_EVENT_ATTENDANCE_RECORDED', 'ADMIN_EVENT_BOOKING_CANCELLED', 'ADMIN_EVENT_BOOKING_CONFIRMED', 'ADMIN_EVENT_BOOKING_CREATED', 'ADMIN_EVENT_BOOKING_DELETED', 'ADMIN_EVENT_WAITING_LIST_PROMOTION', 'EVENT_BOOKING', 'EVENT_BOOKING_CANCELLED', 'EVENT_WAITING_LIST_BOOKING', -- Other useful events: 'EQN_EDITOR_LOG', 'USER_REGISTRATION', 'LOG_OUT', 'CHANGE_CONTENT_VERSION', 'DELETE_USER_ACCOUNT', 'USER_SCHOOL_CHANGE' ); -- Anonymise specific details: -- userIds WITH expanded_details AS (SELECT id, jsonb_array_elements_text(event_details->'userIds') AS elements FROM anonymous.logged_events WHERE event_details->'userIds' IS NOT NULL), new_details AS (SELECT id, jsonb_strip_nulls(jsonb_agg( anonymise(elements, hash_salt) )) AS new_event_detail FROM expanded_details GROUP BY id) UPDATE anonymous.logged_events SET event_details=jsonb_set(event_details, '{userIds}', new_event_detail) FROM new_details WHERE anonymous.logged_events.id=new_details.id; -- userId UPDATE anonymous.logged_events SET event_details=jsonb_set(event_details, '{userId}', to_jsonb(anonymise(event_details->>'userId', hash_salt))) WHERE event_details->>'userId' IS NOT NULL; -- groupId UPDATE anonymous.logged_events SET event_details=jsonb_set(event_details, '{groupId}', to_jsonb(anonymise(event_details->>'groupId', hash_salt))) WHERE event_details->>'groupId' IS NOT NULL; -- assignmentId UPDATE anonymous.logged_events SET event_details=jsonb_set(event_details, '{assignmentId}', to_jsonb(anonymise(event_details->>'assignmentId', hash_salt))) WHERE event_details->>'assignmentId' IS NOT NULL; -- token UPDATE anonymous.logged_events SET event_details=event_details - 'token' WHERE event_details->>'token' IS NOT NULL; RETURN true; END; $$ LANGUAGE plpgsql;
CREATE TABLE principals ( id INTEGER PRIMARY KEY ASC, uri TEXT, email TEXT, displayname TEXT, UNIQUE(uri) ); CREATE TABLE groupmembers ( id INTEGER PRIMARY KEY ASC, principal_id INTEGER, member_id INTEGER, UNIQUE(principal_id, member_id) ); INSERT INTO principals (uri,email,displayname) VALUES ('principals/admin', '<EMAIL>','Adminstrator'); INSERT INTO principals (uri,email,displayname) VALUES ('principals/admin/calendar-proxy-read', null, null); INSERT INTO principals (uri,email,displayname) VALUES ('principals/admin/calendar-proxy-write', null, null);
-- @testpoint: opengauss关键字lower(非保留),作为存储过程名,部分测试点合理报错 --关键字不带引号-成功 create or replace procedure lower( section number(6), salary_sum out number(8,2), staffs_count out integer) is begin select sum(salary), count(*) into salary_sum, staffs_count from staffs where section_id = section; end; / drop procedure lower(section number(6),salary_sum out number(8,2), staffs_count out integer); --关键字带双引号-成功 create or replace procedure "lower"( section number(6), salary_sum out number(8,2), staffs_count out integer) is begin select sum(salary), count(*) into salary_sum, staffs_count from staffs where section_id = section; end; / drop procedure "lower"(section number(6),salary_sum out number(8,2), staffs_count out integer); --关键字带单引号-合理报错 create or replace procedure 'lower'( section number(6), salary_sum out number(8,2), staffs_count out integer) is begin select sum(salary), count(*) into salary_sum, staffs_count from staffs where section_id = section; end; / --关键字带反引号-合理报错 create or replace procedure `lower`( section number(6), salary_sum out number(8,2), staffs_count out integer) is begin select sum(salary), count(*) into salary_sum, staffs_count from staffs where section_id = section; end; /--清理环境 drop procedure if exists lower(section numeric, out salary_sum numeric, out staffs_count integer);
SELECT * FROM Bank_Account where Account_Type like CONCAT('%', :thing, '%')
CREATE TABLE `gift` ( `gift_id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `have` integer NOT NULL, `description` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, CONSTRAINT pk_sample PRIMARY KEY (`gift_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- -- PostgreSQL database dump -- -- Dumped from database version 10.5 -- Dumped by pg_dump version 11.0 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; -- -- Name: getfile(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.getfile(iid integer) RETURNS TABLE(keyy character varying) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT "key" from "File" where id=iid; END; $$; ALTER FUNCTION public.getfile(iid integer) OWNER TO postgres; -- -- Name: getrole(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.getrole(useridd integer) RETURNS TABLE(userid integer, roleid integer, projectid integer) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY select "public"."UserRole"."userId","public"."UserRole"."roleId","public"."UserRole"."projectId" from "public"."UserRole" where "public"."UserRole"."userId"=useridd; END; $$; ALTER FUNCTION public.getrole(useridd integer) OWNER TO postgres; -- -- Name: postrole(integer, integer, integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.postrole(id integer, useridd integer, roleid integer, projectid integer) RETURNS boolean LANGUAGE plpgsql AS $$ BEGIN INSERT INTO "UserRole" VALUES (id,useridd, roleid, projectid); return true; END; $$; ALTER FUNCTION public.postrole(id integer, useridd integer, roleid integer, projectid integer) OWNER TO postgres; -- -- Name: returnscore(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.returnscore(userid integer) RETURNS TABLE(score integer, username character varying, projectname character varying) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT "public"."ScoreInProject"."score", "public"."User"."name", "public"."Project"."name" FROM "public"."ScoreInProject" INNER JOIN "public"."User" ON "public"."ScoreInProject"."userId" = "public"."User"."id" INNER JOIN "public"."Project" ON "public"."ScoreInProject"."projectId" = "public"."Project"."id" where "public"."User"."id"=userid; END; $$; ALTER FUNCTION public.returnscore(userid integer) OWNER TO postgres; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: Comment; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Comment" ( id integer NOT NULL, "issueId" integer, "userId" integer, content character varying ); ALTER TABLE public."Comment" OWNER TO postgres; -- -- Name: Comment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Comment_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Comment_id_seq" OWNER TO postgres; -- -- Name: Comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Comment_id_seq" OWNED BY public."Comment".id; -- -- Name: File; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."File" ( id integer NOT NULL, key character varying ); ALTER TABLE public."File" OWNER TO postgres; -- -- Name: FileIssue; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."FileIssue" ( id integer NOT NULL, "fileId" integer, "issueId" integer ); ALTER TABLE public."FileIssue" OWNER TO postgres; -- -- Name: FileIssue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."FileIssue_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."FileIssue_id_seq" OWNER TO postgres; -- -- Name: FileIssue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."FileIssue_id_seq" OWNED BY public."FileIssue".id; -- -- Name: File_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."File_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."File_id_seq" OWNER TO postgres; -- -- Name: File_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."File_id_seq" OWNED BY public."File".id; -- -- Name: Issue; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Issue" ( id integer NOT NULL, title character varying, description character varying, "userId" integer, "priorityId" integer, "statuId" integer, deadline date, "listId" integer, "projectId" integer ); ALTER TABLE public."Issue" OWNER TO postgres; -- -- Name: IssueState; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."IssueState" ( id integer NOT NULL, title character varying(40) NOT NULL ); ALTER TABLE public."IssueState" OWNER TO postgres; -- -- Name: IssueState_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."IssueState_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."IssueState_id_seq" OWNER TO postgres; -- -- Name: IssueState_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."IssueState_id_seq" OWNED BY public."IssueState".id; -- -- Name: Issue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Issue_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Issue_id_seq" OWNER TO postgres; -- -- Name: Issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Issue_id_seq" OWNED BY public."Issue".id; -- -- Name: List; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."List" ( id integer NOT NULL, name character varying, "userId" integer ); ALTER TABLE public."List" OWNER TO postgres; -- -- Name: List_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."List_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."List_id_seq" OWNER TO postgres; -- -- Name: List_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."List_id_seq" OWNED BY public."List".id; -- -- Name: Priority; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Priority" ( id integer NOT NULL ); ALTER TABLE public."Priority" OWNER TO postgres; -- -- Name: Priority_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Priority_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Priority_id_seq" OWNER TO postgres; -- -- Name: Priority_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Priority_id_seq" OWNED BY public."Priority".id; -- -- Name: Project; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Project" ( id integer NOT NULL, name character varying, description character varying ); ALTER TABLE public."Project" OWNER TO postgres; -- -- Name: Project_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Project_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Project_id_seq" OWNER TO postgres; -- -- Name: Project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Project_id_seq" OWNED BY public."Project".id; -- -- Name: Role; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Role" ( id integer NOT NULL, name character varying ); ALTER TABLE public."Role" OWNER TO postgres; -- -- Name: Role_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Role_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Role_id_seq" OWNER TO postgres; -- -- Name: Role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Role_id_seq" OWNED BY public."Role".id; -- -- Name: ScoreInProject; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."ScoreInProject" ( id integer NOT NULL, "userId" integer, "projectId" integer, score integer NOT NULL ); ALTER TABLE public."ScoreInProject" OWNER TO postgres; -- -- Name: ScoreInProject_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."ScoreInProject_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."ScoreInProject_id_seq" OWNER TO postgres; -- -- Name: ScoreInProject_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."ScoreInProject_id_seq" OWNED BY public."ScoreInProject".id; -- -- Name: Statu; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Statu" ( id integer NOT NULL ); ALTER TABLE public."Statu" OWNER TO postgres; -- -- Name: Statu_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Statu_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Statu_id_seq" OWNER TO postgres; -- -- Name: Statu_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Statu_id_seq" OWNED BY public."Statu".id; -- -- Name: Team; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."Team" ( id integer NOT NULL, name character varying ); ALTER TABLE public."Team" OWNER TO postgres; -- -- Name: TeamProject; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."TeamProject" ( id integer NOT NULL, "teamId" integer, "projectId" integer ); ALTER TABLE public."TeamProject" OWNER TO postgres; -- -- Name: TeamProject_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."TeamProject_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."TeamProject_id_seq" OWNER TO postgres; -- -- Name: TeamProject_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."TeamProject_id_seq" OWNED BY public."TeamProject".id; -- -- Name: Team_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."Team_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."Team_id_seq" OWNER TO postgres; -- -- Name: Team_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."Team_id_seq" OWNED BY public."Team".id; -- -- Name: User; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."User" ( id integer NOT NULL, name character varying NOT NULL, password character varying, "teamId" integer, "userPhotoId" integer ); ALTER TABLE public."User" OWNER TO postgres; -- -- Name: UserRole; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public."UserRole" ( id integer NOT NULL, "userId" integer, "roleId" integer, "projectId" integer ); ALTER TABLE public."UserRole" OWNER TO postgres; -- -- Name: UserRole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."UserRole_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."UserRole_id_seq" OWNER TO postgres; -- -- Name: UserRole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."UserRole_id_seq" OWNED BY public."UserRole".id; -- -- Name: User_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public."User_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."User_id_seq" OWNER TO postgres; -- -- Name: User_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public."User_id_seq" OWNED BY public."User".id; -- -- Name: Comment id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Comment" ALTER COLUMN id SET DEFAULT nextval('public."Comment_id_seq"'::regclass); -- -- Name: File id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."File" ALTER COLUMN id SET DEFAULT nextval('public."File_id_seq"'::regclass); -- -- Name: FileIssue id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."FileIssue" ALTER COLUMN id SET DEFAULT nextval('public."FileIssue_id_seq"'::regclass); -- -- Name: Issue id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Issue" ALTER COLUMN id SET DEFAULT nextval('public."Issue_id_seq"'::regclass); -- -- Name: IssueState id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."IssueState" ALTER COLUMN id SET DEFAULT nextval('public."IssueState_id_seq"'::regclass); -- -- Name: List id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."List" ALTER COLUMN id SET DEFAULT nextval('public."List_id_seq"'::regclass); -- -- Name: Priority id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Priority" ALTER COLUMN id SET DEFAULT nextval('public."Priority_id_seq"'::regclass); -- -- Name: Project id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Project" ALTER COLUMN id SET DEFAULT nextval('public."Project_id_seq"'::regclass); -- -- Name: Role id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Role" ALTER COLUMN id SET DEFAULT nextval('public."Role_id_seq"'::regclass); -- -- Name: ScoreInProject id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."ScoreInProject" ALTER COLUMN id SET DEFAULT nextval('public."ScoreInProject_id_seq"'::regclass); -- -- Name: Statu id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Statu" ALTER COLUMN id SET DEFAULT nextval('public."Statu_id_seq"'::regclass); -- -- Name: Team id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Team" ALTER COLUMN id SET DEFAULT nextval('public."Team_id_seq"'::regclass); -- -- Name: TeamProject id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."TeamProject" ALTER COLUMN id SET DEFAULT nextval('public."TeamProject_id_seq"'::regclass); -- -- Name: User id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."User" ALTER COLUMN id SET DEFAULT nextval('public."User_id_seq"'::regclass); -- -- Name: UserRole id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."UserRole" ALTER COLUMN id SET DEFAULT nextval('public."UserRole_id_seq"'::regclass); -- -- Data for Name: Comment; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Comment" VALUES (5, 3, 1, 'yorum'); -- -- Data for Name: File; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."File" VALUES (1, 'www.wasd'); -- -- Data for Name: FileIssue; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- Data for Name: Issue; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Issue" VALUES (3, 'asd', 'asd', 1, 1, 1, '2010-10-10', NULL, NULL); INSERT INTO public."Issue" VALUES (4, 'title', 'description', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO public."Issue" VALUES (5, 'title', 'description', NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO public."Issue" VALUES (6, 'title', 'description', 1, 1, 1, NULL, 1, NULL); INSERT INTO public."Issue" VALUES (8, 'issuebaslik', 'description', 17, 1, 1, '2018-12-15', 1, NULL); INSERT INTO public."Issue" VALUES (9, 'issuebaslik', 'description', 17, 1, 1, '2018-12-15', 1, NULL); INSERT INTO public."Issue" VALUES (10, 'issuebaslik', 'description', 17, 1, 1, '2018-12-24', 1, NULL); INSERT INTO public."Issue" VALUES (11, 'issuebaslik', 'description', 17, 1, 1, '2018-12-15', 1, NULL); INSERT INTO public."Issue" VALUES (12, 'issuebaslik', 'description', 17, 1, 1, '2018-12-15', 1, NULL); INSERT INTO public."Issue" VALUES (13, 'issuebaslik', 'description', 17, 1, 1, '2018-12-15', 1, NULL); INSERT INTO public."Issue" VALUES (14, 'issuebaslik', 'description', 17, 1, 1, '2018-12-15', 1, NULL); INSERT INTO public."Issue" VALUES (17, 'issuebaslik', 'description', 17, 1, 1, '2018-12-22', 1, NULL); INSERT INTO public."Issue" VALUES (18, 'title', 'description', 1, 1, 1, '2018-12-23', 1, NULL); INSERT INTO public."Issue" VALUES (15, 'issuebaslik', 'description', 17, 2, 1, '2018-12-17', 1, NULL); INSERT INTO public."Issue" VALUES (16, 'issuebaslik', 'description', 17, 2, 1, '2018-12-16', 1, NULL); -- -- Data for Name: IssueState; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."IssueState" VALUES (1, 'çok önemli'); INSERT INTO public."IssueState" VALUES (2, 'önemli'); INSERT INTO public."IssueState" VALUES (3, 'az önemli'); INSERT INTO public."IssueState" VALUES (4, 'önemli değil'); INSERT INTO public."IssueState" VALUES (5, 'todo'); INSERT INTO public."IssueState" VALUES (6, 'progress'); INSERT INTO public."IssueState" VALUES (7, 'done'); -- -- Data for Name: List; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."List" VALUES (1, 'progress', 1); -- -- Data for Name: Priority; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Priority" VALUES (1); INSERT INTO public."Priority" VALUES (2); INSERT INTO public."Priority" VALUES (3); -- -- Data for Name: Project; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Project" VALUES (1, 'project1', 'guzel proje he'); INSERT INTO public."Project" VALUES (4, NULL, NULL); INSERT INTO public."Project" VALUES (6, NULL, NULL); INSERT INTO public."Project" VALUES (7, 'project1', 'guzel proje he'); INSERT INTO public."Project" VALUES (5, 'project1', 'guzel proje he'); -- -- Data for Name: Role; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Role" VALUES (1, 'admin'); -- -- Data for Name: ScoreInProject; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."ScoreInProject" VALUES (1, 17, 5, 5); -- -- Data for Name: Statu; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Statu" VALUES (5); INSERT INTO public."Statu" VALUES (6); INSERT INTO public."Statu" VALUES (7); -- -- Data for Name: Team; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."Team" VALUES (2, 'teamb'); INSERT INTO public."Team" VALUES (3, 'abc'); INSERT INTO public."Team" VALUES (4, 'new team'); -- -- Data for Name: TeamProject; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."TeamProject" VALUES (1, 2, 5); -- -- Data for Name: User; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."User" VALUES (17, 'keremb', '1234567', 2, NULL); INSERT INTO public."User" VALUES (19, 'kerem.bilim-68cb4b', '123456', 2, NULL); INSERT INTO public."User" VALUES (20, 'kerem.bilim-68cb4', '123456', 2, NULL); INSERT INTO public."User" VALUES (22, 'keremmm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (25, 'keremm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (27, 'keremmmmmmmm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (29, 'keremmmmmmmmmm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (30, 'keremmmmmmmmmmmm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (32, 'keremmmmmmmmmmmmm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (33, 'keremmmmmmmmmmmmmm', '213123123', 2, NULL); INSERT INTO public."User" VALUES (34, 'keremmmmmmmmmmmmmmm', '213123123', 2, 1); INSERT INTO public."User" VALUES (1, 'kerembilim', '123456', 3, NULL); -- -- Data for Name: UserRole; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public."UserRole" VALUES (1, 34, 1, 1); INSERT INTO public."UserRole" VALUES (2, 1, 1, NULL); INSERT INTO public."UserRole" VALUES (3, 17, 1, 1); INSERT INTO public."UserRole" VALUES (4, 34, 1, 1); INSERT INTO public."UserRole" VALUES (5, 34, 1, 1); INSERT INTO public."UserRole" VALUES (6, 34, 1, 1); -- -- Name: Comment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Comment_id_seq"', 5, true); -- -- Name: FileIssue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."FileIssue_id_seq"', 1, false); -- -- Name: File_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."File_id_seq"', 1, true); -- -- Name: IssueState_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."IssueState_id_seq"', 1, true); -- -- Name: Issue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Issue_id_seq"', 18, true); -- -- Name: List_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."List_id_seq"', 1, true); -- -- Name: Priority_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Priority_id_seq"', 1, false); -- -- Name: Project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Project_id_seq"', 7, true); -- -- Name: Role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Role_id_seq"', 1, true); -- -- Name: ScoreInProject_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."ScoreInProject_id_seq"', 1, true); -- -- Name: Statu_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Statu_id_seq"', 1, false); -- -- Name: TeamProject_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."TeamProject_id_seq"', 1, true); -- -- Name: Team_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."Team_id_seq"', 4, true); -- -- Name: UserRole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."UserRole_id_seq"', 1, true); -- -- Name: User_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public."User_id_seq"', 34, true); -- -- Name: FileIssue FileIssuePK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."FileIssue" ADD CONSTRAINT "FileIssuePK" PRIMARY KEY (id); -- -- Name: File FilePK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."File" ADD CONSTRAINT "FilePK" PRIMARY KEY (id); -- -- Name: Issue IssuePK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Issue" ADD CONSTRAINT "IssuePK" PRIMARY KEY (id); -- -- Name: IssueState IssueState1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."IssueState" ADD CONSTRAINT "IssueState1" PRIMARY KEY (id); -- -- Name: List ListPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."List" ADD CONSTRAINT "ListPK" PRIMARY KEY (id); -- -- Name: Comment ListPK1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Comment" ADD CONSTRAINT "ListPK1" PRIMARY KEY (id); -- -- Name: Priority PriorityPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Priority" ADD CONSTRAINT "PriorityPK" PRIMARY KEY (id); -- -- Name: Project ProjectPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Project" ADD CONSTRAINT "ProjectPK" PRIMARY KEY (id); -- -- Name: Role ROLEPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Role" ADD CONSTRAINT "ROLEPK" PRIMARY KEY (id); -- -- Name: ScoreInProject ScoreInProjectPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."ScoreInProject" ADD CONSTRAINT "ScoreInProjectPK" PRIMARY KEY (id); -- -- Name: Statu StatuPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Statu" ADD CONSTRAINT "StatuPK" PRIMARY KEY (id); -- -- Name: Team TeamPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Team" ADD CONSTRAINT "TeamPK" PRIMARY KEY (id); -- -- Name: TeamProject TeamProjectPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."TeamProject" ADD CONSTRAINT "TeamProjectPK" PRIMARY KEY (id); -- -- Name: User UserPK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."User" ADD CONSTRAINT "UserPK" PRIMARY KEY (id); -- -- Name: UserRole UserRolePK; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."UserRole" ADD CONSTRAINT "UserRolePK" PRIMARY KEY (id); -- -- Name: User unique_User_name; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."User" ADD CONSTRAINT "unique_User_name" UNIQUE (name); -- -- Name: FileIssue FileIssueFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."FileIssue" ADD CONSTRAINT "FileIssueFK" FOREIGN KEY ("fileId") REFERENCES public."File"(id); -- -- Name: FileIssue FileIssueFK1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."FileIssue" ADD CONSTRAINT "FileIssueFK1" FOREIGN KEY ("issueId") REFERENCES public."Issue"(id); -- -- Name: Issue IssueFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Issue" ADD CONSTRAINT "IssueFK" FOREIGN KEY ("userId") REFERENCES public."User"(id); -- -- Name: Issue IssueFK3; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Issue" ADD CONSTRAINT "IssueFK3" FOREIGN KEY ("listId") REFERENCES public."List"(id); -- -- Name: List ListFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."List" ADD CONSTRAINT "ListFK" FOREIGN KEY ("userId") REFERENCES public."User"(id); -- -- Name: Comment ListFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Comment" ADD CONSTRAINT "ListFK" FOREIGN KEY ("userId") REFERENCES public."User"(id); -- -- Name: Comment ListFK2; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Comment" ADD CONSTRAINT "ListFK2" FOREIGN KEY ("issueId") REFERENCES public."Issue"(id); -- -- Name: ScoreInProject ScoreInProjectFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."ScoreInProject" ADD CONSTRAINT "ScoreInProjectFK" FOREIGN KEY ("userId") REFERENCES public."User"(id); -- -- Name: ScoreInProject ScoreInProjectFK1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."ScoreInProject" ADD CONSTRAINT "ScoreInProjectFK1" FOREIGN KEY ("projectId") REFERENCES public."Project"(id); -- -- Name: Priority StatuIssue; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Priority" ADD CONSTRAINT "StatuIssue" FOREIGN KEY (id) REFERENCES public."IssueState"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Statu StatuIssue; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Statu" ADD CONSTRAINT "StatuIssue" FOREIGN KEY (id) REFERENCES public."IssueState"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: TeamProject TeamProjectFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."TeamProject" ADD CONSTRAINT "TeamProjectFK" FOREIGN KEY ("teamId") REFERENCES public."Team"(id); -- -- Name: TeamProject TeamProjectFK1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."TeamProject" ADD CONSTRAINT "TeamProjectFK1" FOREIGN KEY ("projectId") REFERENCES public."Project"(id); -- -- Name: User UserFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."User" ADD CONSTRAINT "UserFK" FOREIGN KEY ("teamId") REFERENCES public."Team"(id); -- -- Name: User UserFK1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."User" ADD CONSTRAINT "UserFK1" FOREIGN KEY ("userPhotoId") REFERENCES public."File"(id); -- -- Name: UserRole UserRoleFK; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."UserRole" ADD CONSTRAINT "UserRoleFK" FOREIGN KEY ("userId") REFERENCES public."User"(id); -- -- Name: UserRole UserRoleFK1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."UserRole" ADD CONSTRAINT "UserRoleFK1" FOREIGN KEY ("roleId") REFERENCES public."Role"(id); -- -- Name: UserRole UserRoleFK2; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."UserRole" ADD CONSTRAINT "UserRoleFK2" FOREIGN KEY ("projectId") REFERENCES public."Project"(id); -- -- Name: Issue issueFK2; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public."Issue" ADD CONSTRAINT "issueFK2" FOREIGN KEY ("projectId") REFERENCES public."Project"(id); -- -- PostgreSQL database dump complete --
<reponame>sambhav228/Database-Management-Essentials DROP TABLE ResourceTbl; CREATE TABLE ResourceTbl ( resNo CHAR(8) NOT NULL, resName VARCHAR(30) NOT NULL, rate DECIMAL(8, 2) NOT NULL, CONSTRAINT PK_ResourceTbl PRIMARY KEY (resNo) );
<filename>innlevering1/droptables.sql SET FOREIGN_KEY_CHECKS = 0; DROP TABLE IF EXISTS Økt; DROP TABLE IF EXISTS Øvelse; DROP TABLE IF EXISTS ØktHarØvelse; DROP TABLE IF EXISTS Øvelsesgruppe; DROP TABLE IF EXISTS Apparat; DROP TABLE IF EXISTS ØvelseMedApparat; DROP TABLE IF EXISTS ØvelseUtenApparat; DROP TABLE IF EXISTS ØvelseIGruppe;
SELECT department_id, CASE WHEN department_id = 1 THEN AVG(salary) + 5000 ELSE AVG(salary) END AS 'avg_salary' FROM employees WHERE salary > 30000 AND manager_id != 42 GROUP BY department_id ORDER BY department_id;
<filename>www/php/update_v1.2.sql -- update bookmarks table -- update groups table ALTER TABLE `groups` ADD `remarks` TEXT NOT NULL AFTER `name`; -- update global table INSERT INTO `global` (`key`, `value`) VALUES ('hideU1', '0'), ('hideU2', '0'), ('hideU3', '0'), ('hideU4', '0'), ('hideU5', '0'), ('hideU6', '0'), ('hideU7', '0'), ('hideU8', '0'); INSERT INTO `global` (`key`, `value`) VALUES ('background', 'grey'); -- update version in global; UPDATE `global` SET `value` = '1.2.3' WHERE `global`.`key` = 'version';
alter table email_verifications drop column expiry; drop trigger email_verifications_delete_old_rows_trigger on email_verifications; drop function email_verifications_delete_old_rows;
<gh_stars>1-10 /* Mysql dokumentaatio tietokannan taulun muokkaamisesta. * * https://dev.mysql.com/doc/refman/5.7/en/alter-table.html * https://www.w3schools.com/sql/sql_foreignkey.asp * * ALTER TABLE <taulun_nimi> * ADD CONSTRAINT <viiteavaimen_nimi> * FOREIGN KEY (<viittaava_kentta>) REFERENCES <taulun_nimi>(<viitattu_kentta>); * * ALTER TABLE <taulun_nimi> DROP FOREIGN KEY <viiteavaimen_nimi>; * * Sakila esimerkkitietokannan kuvaus: https://dev.mysql.com/doc/sakila/en/ */ -- Lisätään viiteavaimen viittaus vastuualueisiin. -- Foreign key ALTER TABLE staff ADD CONSTRAINT FK_responsibility_id FOREIGN KEY (responsibility_id) REFERENCES responsibility(responsibility_id); -- ALTER TABLE staff DROP FOREIGN KEY FK_responsibility_id; -- select * from responsibility; select staff_id, first_name, last_name, responsibility_id from staff; -- update staff set responsibility_id = NULL;
# 删除重复的电子邮箱 # 编写一个 SQL 查询,来删除 Person 表中所有重复的电子邮箱,重复的邮箱里只保留 Id 最小 的那个。 # 因垂丝汀,mysql删除的where条件里面的表名不能直接保留到where条件里,需要外包一层 delete FROM Person WHERE id not in( SELECT id FROM ( SELECT MIN(id)as id FROM person GROUP BY email )t)
<reponame>PetroslavGochev/CSharpDatabaseModule SELECT E.[FirstName] + ' ' + E.[LastName] AS FullName, COUNT(U.Name) AS UsersCount FROM Employees AS E LEFT JOIN Reports AS R ON R.EmployeeId = E.Id LEFT JOIN Users AS U ON U.Id = R.UserId GROUP BY E.FirstName,E.LastName ORDER BY UsersCount DESC, FullName ASC
-- file:numeric.sql ln:264 expect:true INSERT INTO num_exp_add VALUES (6,0,'93901.57763026')
-- file:horology.sql ln:152 expect:true SELECT CAST(time with time zone '01:02-08' AS interval) AS "+00:01"
-- phpMyAdmin SQL Dump -- version 4.8.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 13 Jan 2020 pada 11.57 -- Versi server: 10.1.32-MariaDB -- Versi PHP: 7.2.5 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: `db_api_login` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `password` varchar(2046) NOT NULL, `exp` int(11) NOT NULL, `level` int(11) NOT NULL, `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `firstname`, `lastname`, `email`, `password`, `exp`, `level`, `modified`) VALUES (11, 'Raisa', 'Tri Budianti', '<EMAIL>', <PASSWORD>', 350, 3, '2020-01-13 10:57:15'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000001', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000002', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000003', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000004', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000005', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000006', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000007', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000008', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000009', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000010', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000011', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000012', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000013', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000014', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); INSERT INTO `orders`.`order` (`orderId`, `orderAmount`, `orderStatus`, `orderDateTime`, `shipToName`, `shipToAddress`, `shipToCity`, `shipToState`, `shipToZip`) VALUES ('10000015', '300', 'New', '2020-05-01T17:11:49.973Z', 'Shaina Rippin Jr.', '9578 Shanahan Extensions', 'North Vladimirside', 'Rhode Island', '97050-6756'); -- INSERT RECORDS ITEMS TABLE INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000001', '999900001', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000001', '999900002', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000002', '999900003', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000002', '999900004', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000003', '999900005', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000003', '999900006', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000004', '999900007', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000004', '999900008', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000005', '999900009', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000005', '999900010', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000006', '999900011', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000006', '999900012', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000007', '999900013', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000007', '999900014', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000008', '999900015', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000008', '999900016', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000009', '999900017', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000009', '999900018', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000010', '999900019', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000010', '999900020', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000011', '999900021', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000011', '999900022', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000012', '999900023', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000012', '999900024', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000013', '999900025', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000013', '999900026', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000014', '999900027', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000014', '999900028', '20', '200', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000015', '999900029', '10', '100', 'Picked'); INSERT INTO `orders`.`order_item` (`orderId`, `itemId`, `itemQuanity`, `itemAmount`, `itemStatus`) VALUES ('10000015', '999900030', '20', '200', 'Picked'); -- run updates SET SQL_SAFE_UPDATES = 0; UPDATE orders.order SET orderStatus = 'New'; UPDATE orders.order_item SET itemStatus = 'New';
<filename>tests/test_data/009_Enrollment.sql<gh_stars>0 SET IDENTITY_INSERT Enrollment ON INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21226, 883, N'782D2A7C-CB2E-4404-4B75-08D7E6C0D989', 1072, 0, N'2019-09-02', null, null, N'2020-04-22 13:27:05.4148101'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21227, 883, N'FEF5C86E-68B0-49F7-4B76-08D7E6C0D989', 1072, 1, N'2019-09-02', null, null, N'2020-04-22 13:27:05.4831202'); --INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21228, 883, N'E2C6119F-04AB-4219-4B77-08D7E6C0D989', 1072, 1, N'2019-09-02', null, null, N'2020-04-22 13:27:05.5259535'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21229, 883, N'8602E764-4AB2-497C-4B78-08D7E6C0D989', 1073, 1, N'2018-09-03', null, null, N'2020-04-22 13:27:05.5824629'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21230, null, N'8602E764-4AB2-497C-4B78-08D7E6C0D989', 1073, 0, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:05.5994057'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21231, 883, N'8B8ED2ED-C262-446D-4B7D-08D7E6C0D989', 1072, 0, N'2018-09-03', N'2018-09-03', null, N'2020-04-22 13:27:05.6423540'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21232, null, N'CD74072B-1892-411A-4B79-08D7E6C0D989', 1072, 0, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:05.6602321'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21233, 883, N'93554837-68D7-4834-4B7A-08D7E6C0D989', 1072, 1, N'2019-09-02', null, null, N'2020-04-22 13:27:05.7071592'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21234, 883, N'5E157AD4-A6F6-48F1-4B7B-08D7E6C0D989', 1072, 1, N'2018-09-03', null, null, N'2020-04-22 13:27:05.7553464'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21235, null, N'5E157AD4-A6F6-48F1-4B7B-08D7E6C0D989', 1072, 2, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:05.7745298'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21236, 883, N'3050BFED-B620-41AD-4B7C-08D7E6C0D989', 1072, 0, N'2019-09-02', null, null, N'2020-04-22 13:27:05.8238463'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21240, null, N'6BC71B17-06D6-49BC-4B7F-08D7E6C0D989', 1072, 1, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:06.0171273'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21251, null, N'E305D7FB-EF87-4A85-4B88-08D7E6C0D989', 1072, 0, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:06.5318599'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21259, null, N'03E92AE3-B439-4A2E-4B8E-08D7E6C0D989', 1072, 0, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:06.9092440'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21270, null, N'FD767A09-95E8-4BA6-4B97-08D7E6C0D989', 1072, 0, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:07.5564065'); INSERT INTO dbo.Enrollment (Id, AuthorId, ChildId, SiteId, AgeGroup, Entry, [Exit], ExitReason, UpdatedAt) VALUES (21273, null, N'336BFA22-20CA-40FB-4B99-08D7E6C0D989', 1072, 0, N'2017-09-04', N'2018-09-03', N'Other', N'2020-04-22 13:27:07.7239882');
<reponame>hsingpu5/telex<filename>o2pg/pg.sql create table table_name ( id int4(12), text text (255 CHAR) not null, --char类型,一个汉字占一个长度 PID text (32 BYTE) NOT NULL, --byte类型,UTF8一个汉字占大约两个长度 status int4(1) DEFAULT 0 null, --添加默认值 如果为空默认值就为0 phoneNumber int4(11), cash float4(6), info timestamp (12) ) --添加主键 ALTER TABLE "test"."table_name" ADD PRIMARY KEY ("ID"); --添加注释 comment on column table_name.id is '主键'; comment on column table_name.text is '说明'; comment on column table_name.status is '状态';
SELECT employees.name AS employee_name, employees.role AS employee_role, departments.name AS department_name FROM employee_data.employees INNER JOIN employee_data.departments ON employees.department_id = departments.department_id
<filename>db_utils/output/tbike_ike_doc_user.sql -- MySQL dump 10.13 Distrib 8.0.11, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: tbike -- ------------------------------------------------------ -- Server version 8.0.11 -- -- Table structure for table `ike_doc_user` -- DROP TABLE IF EXISTS `ike_doc_user`; CREATE TABLE `ike_doc_user` ( `use_id_c` VARCHAR(36) NOT NULL, `use_idrole_c` VARCHAR(36) DEFAULT NULL, `use_username_c` VARCHAR(50) NOT NULL, `use_password_c` VARCHAR(60) DEFAULT NULL, `use_email_c` VARCHAR(100) DEFAULT NULL, `use_createdate_d` DATETIME NOT NULL, `use_deletedate_d` DATETIME DEFAULT NULL, `use_privatekey_c` VARCHAR(100) DEFAULT NULL, `use_storagequota_n` BIGINT(20) DEFAULT NULL, `use_storagecurrent_n` BIGINT(20) DEFAULT NULL, `use_totpkey_c` VARCHAR(100) DEFAULT NULL, `use_disabledate_d` DATETIME DEFAULT NULL, PRIMARY KEY (`use_id_c`) ) ENGINE =InnoDB DEFAULT CHARSET = utf8 ROW_FORMAT = DYNAMIC; -- Dump completed on 2019-05-28 13:58:55
-- labels DELETE FROM `labels` WHERE `module` = 'BankAccounts' AND `field` = 'remarks'; DELETE FROM `labels` WHERE `module` = 'InstitutionBankAccounts' AND `field` = 'remarks'; -- db_patches DELETE FROM `db_patches` WHERE `issue` = 'PHPOE-1787';
select post_id,count(distinct sub_id) number_of_comments from ( select sub_id post_id from Submissions where parent_id is null) a left join Submissions b on a.post_id=b.parent_id group by post_id --SQL架构 --表 Submissions 结构如下: -- --+---------------+----------+ --| 列名 | 类型 | --+---------------+----------+ --| sub_id | int | --| parent_id | int | --+---------------+----------+ --上表没有主键, 所以可能会出现重复的行。 --每行可以是一个帖子或对该帖子的评论。 --如果是帖子的话,parent_id 就是 null。 --对于评论来说,parent_id 就是表中对应帖子的 sub_id。 -- -- --编写 SQL 语句以查找每个帖子的评论数。 -- --结果表应包含帖子的 post_id 和对应的评论数 number_of_comments 并且按 post_id 升序排列。 -- --Submissions 可能包含重复的评论。您应该计算每个帖子的唯一评论数。 -- --Submissions 可能包含重复的帖子。您应该将它们视为一个帖子。 -- --查询结果格式如下例所示: -- --Submissions table: --+---------+------------+ --| sub_id | parent_id | --+---------+------------+ --| 1 | Null | --| 2 | Null | --| 1 | Null | --| 12 | Null | --| 3 | 1 | --| 5 | 2 | --| 3 | 1 | --| 4 | 1 | --| 9 | 1 | --| 10 | 2 | --| 6 | 7 | --+---------+------------+ -- --结果表: --+---------+--------------------+ --| post_id | number_of_comments | --+---------+--------------------+ --| 1 | 3 | --| 2 | 2 | --| 12 | 0 | --+---------+--------------------+ -- --表中 ID 为 1 的帖子有 ID 为 3、4 和 9 的三个评论。表中 ID 为 3 的评论重复出现了,所以我们只对它进行了一次计数。 --表中 ID 为 2 的帖子有 ID 为 5 和 10 的两个评论。 --ID 为 12 的帖子在表中没有评论。 --表中 ID 为 6 的评论是对 ID 为 7 的已删除帖子的评论,因此我们将其忽略。
<reponame>wiltonlazary/snappydata<gh_stars>1000+ update default.Student set marks = marks + 100; update default.Student set subject = 'Multithreading and Concurrency' where subject='Maths-2'; select id,subject,marks from default.Student; update default.Student set marks = marks - 200; update default.Student set subject = 'Maths-2' where subject='Multithreading and Concurrency'; select * from default.Student; delete from default.Student where subject = 'Graphics';
<filename>fixtures/doctests/contrib/000/input.sql CREATE EXTENSION module_name;
<reponame>SKalt/pg_sql_parser_tests expression from RESTRICTIVE SELECT/ALL policy 1 AND expression from RESTRICTIVE SELECT/ALL policy 2 AND ... AND ( expression from PERMISSIVE SELECT/ALL policy 1 OR expression from PERMISSIVE SELECT/ALL policy 2 OR ... ) AND expression from RESTRICTIVE UPDATE/ALL policy 1 AND expression from RESTRICTIVE UPDATE/ALL policy 2 AND ... AND ( expression from PERMISSIVE UPDATE/ALL policy 1 OR expression from PERMISSIVE UPDATE/ALL policy 2 OR ... )
-- Modify saved sla reports tables to case sensitive ALTER TABLE sla_config COLLATE latin1_general_cs; ALTER TABLE sla_config_objects COLLATE latin1_general_cs; ALTER TABLE sla_config ADD cluster_mode INT NOT NULL DEFAULT 0;
-- @testpoint: 自定义函数同义词在触发器中调用 -- @modify at: 2020-11-25 --建表 drop table if exists SYN_TAB_009 cascade; drop table if exists SYN_TAB_002 cascade; create table SYN_TAB_009 ( id int, name varchar2(10), sal number ); create table SYN_TAB_002 ( id int, name varchar2(10), sal number ); --创建函数和同义词 drop function if exists SYN_FUN_001(c bigint); create or replace function SYN_FUN_001(c bigint) return int as b int := c; begin for i in 1..c loop b := b + 1; end loop; return b; end; / drop synonym if exists SYN_FUN_SYN_001; create or replace synonym SYN_FUN_SYN_001 for SYN_FUN_001; --创建触发器函数 CREATE OR REPLACE FUNCTION synonym_func() RETURNS TRIGGER AS $$ DECLARE BEGIN insert into SYN_TAB_002 values(SYN_FUN_SYN_001(SYN_FUN_SYN_001(3)),new.name,new.sal); RETURN NEW; END $$ LANGUAGE PLPGSQL; / --创建触发器 CREATE TRIGGER synonym_trigger BEFORE INSERT ON SYN_TAB_009 FOR EACH ROW EXECUTE PROCEDURE synonym_func(); / --插入数据 insert into SYN_TAB_009 values(1,'aaa',2600); insert into SYN_TAB_009 values(2,'bbb',2600); insert into SYN_TAB_009 values(3,'ccc',2800); --调用触发器 select name,sal from SYN_TAB_009; select name,sal from SYN_TAB_002; --清理环境 drop table if exists SYN_TAB_009 cascade; drop table if exists SYN_TAB_002 cascade; drop function if exists SYN_FUN_001(c bigint) cascade; drop FUNCTION synonym_func(); drop synonym if exists SYN_FUN_SYN_001;
<reponame>HesterLim/Database-Systems-INFO20003- -- INFO20003 transactions lab script -- Uncomment for BYOD installs: -- USE labs2019; DROP TABLE IF EXISTS soundtrack; DROP TABLE IF EXISTS movie; CREATE TABLE movie ( movie_id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(100) NOT NULL, genre VARCHAR(45) NOT NULL, release_date INT(10) unsigned NOT NULL, worldwide_gross DECIMAL(10, 2) NULL, director_name VARCHAR(100) NULL, studio VARCHAR(45) NOT NULL, PRIMARY KEY (movie_id) ) ENGINE=INNODB ; CREATE TABLE soundtrack ( track_title VARCHAR(80) NOT NULL, track_length FLOAT DEFAULT 0, movie_id INTEGER UNSIGNED NOT NULL, track_index INTEGER UNSIGNED NOT NULL, PRIMARY KEY(movie_id, track_index), CONSTRAINT FK_soundtrack_1 FOREIGN KEY FK_soundtrack_1 (movie_id) REFERENCES movie (movie_id) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=INNODB ; INSERT INTO movie(name, studio, genre, director_name, release_date, worldwide_gross) VALUES ('Titanic', 'Paramount Pictures', 'Romance', '<NAME>', 1999, 18353000), ('The Lord of the Rings: The Return of the King', 'New Line Cinema', 'Action', '<NAME>', 2004, 11292192.52), ('Pirates of the Caribbean: Dead Man\'s Chest', 'Buena Vista Pictures', 'Action', '<NAME>', 2006, 10603326.28), ('<NAME> and the Sorcerer\'s Stone', '<NAME>.', 'Fantasy', '<NAME>', 2002, 9686578.91), ('Pirates of the Caribbean: At World\'s End', 'Buena Vista Pictures', 'Action', 'Gore Verbinski', 2007, 9584041.52), ('<NAME> and the Order of the Phoenix', '<NAME>.', 'Adventure', '<NAME>', 2007, 9370008.66), ('Star Wars: Episode I - The Phantom Menace', '20th Century Fox', 'Sci-fi', '<NAME>', 2001, 9223790), ('The Lord of the Rings: The Two Towers', 'New Line Cinema', 'Fantasy', '<NAME>', 2003, 9216000), ('<NAME>', 'Universal Pictures', 'Suspense/Thriller', '<NAME>', 2001, 9197000), ('<NAME> and the Goblet of Fire', '<NAME>.', 'Adventure', '<NAME>', 2006, 8921943.97), ('Spider-Man 3', 'Columbia Pictures', 'Action', '<NAME>', 2007, 8854303.03), ('Shrek 2', 'DreamWorks Distribution', 'Action', '<NAME>', 2004, 8808710.36), ('<NAME> and the Chamber of Secrets', '<NAME>.', 'Fantasy', '<NAME>', 2003, 8663000), ('Finding Nemo', 'Walt Disney Pictures', 'Family/Kids', '<NAME>', 2003, 8650000), ('The Lord of the Rings: The Fellowship of the Ring', 'New Line Cinema', 'Fantasy', '<NAME>', 2002, 8607000), ('Star Wars: Episode III - Revenge of the Sith', '20th Century Fox', 'Action', 'Ge<NAME>', 2005, 8484625.55), ('Independence Day', '20th Century Fox', 'Action', '<NAME>', 2004, 8112000), ('Spider-Man', '<NAME>', 'Suspense/Thriller', '<NAME>', 2002, 8067000), ('Star Wars', '20th Century Fox', 'Action', '<NAME>', 2004, 7979000), ('Shrek the Third', 'DreamWorks Distribution', 'Animation', '<NAME>', 2007, 7911066.65); INSERT INTO soundtrack(movie_id, track_index, track_title, track_length ) VALUES (1, 1, 'Never an Absolution', 3.03), (1, 2, 'Distant Memories', 2.23), (1, 3, 'Southampton', 4.01), (1, 4, 'Rose', 2.52), (1, 5, 'Leaving Port', 3.26), (1, 6, 'Take Her to Sea, Mr. Murdoch', 4.31), (1, 7, 'Hard to Starboard', 6.52), (1, 8, 'Unable to Stay, Unwilling to Leave', 3.56), (1, 9, 'The Sinking', 5.05), (1, 10, 'Death of Titanic', 8.26), (1, 11, 'A Promise Kept', 6.02), (1, 12, 'A Life So Changed', 2.13), (1, 13, 'An Ocean of Memories', 7.57), (1, 14, 'My Heart Will Go On', 5.10), (1, 15, 'Hymn to the Sea', 6.25), (2, 1, 'A Storm Is Coming', 2.52), (2, 2, 'Hope and Memory', 1.45), (2, 3, '<NAME>', 3.37), (2, 4, 'The White Tree', 3.25), (2, 5, 'The Steward of Gondor', 3.53), (2, 6, '<NAME>', 1.58), (2, 7, 'The Ride of the Rohirrim', 2.08), (2, 8, 'Twilight and Shadow', 3.30), (2, 9, '<NAME>', 1.44), (2, 10, 'Andril', 2.35), (2, 11, 'Shelob''s Lair', 4.07), (2, 12, 'Ash and Smoke', 3.25), (2, 13, 'The Fields of the Pelennor', 3.26), (2, 14, 'Hope Fails', 2.20), (2, 15, 'The Black Gate Opens', 4.01), (2, 16, 'The End of All Things', 5.12), (2, 17, 'The Return of the King', 10.14), (2, 18, 'The Grey Havens', 5.59), (2, 19, 'Into the West', 5.49), (2, 20, 'Use Well the Days', 3.10), (3, 1, '<NAME>', 6.06), (3, 2, 'The Kraken', 6.55), (3, 3, '<NAME>', 3.15), (3, 4, 'I''ve Got My Eye On You', 2.25), (3, 5, 'Dinner Is Served', 1.30), (3, 6, '<NAME>', 3.57), (3, 7, 'Two Hornpipes (Tortuga)', 1.14), (3, 8, 'A Family Affair', 3.34), (3, 9, 'Wheel of Fortune', 6.45), (3, 10, 'You Look Good Jack', 5.34), (3, 11, 'Hello Beastie', 10.15), (3, 12, 'He''s a Pirate', 7.02), (4, 1, 'Prologue', 2.12), (4, 2, 'Harry''s Wondrous World', 5.21), (4, 3, 'The Arrival of <NAME>', 4.25), (4, 4, 'Visit to the Zoo and Letters from Hogwarts', 3.22), (4, 5, 'Diagon Alley and The Gringotts Vault', 4.06), (4, 6, 'Platform Nine-and-Three-Quarters and the Journey to Hogwarts', 3.14), (4, 7, 'Entry into the Great Hall and The Banquet', 3.42), (4, 8, 'Mr. <NAME>', 3.35), (4, 9, 'Hogwarts Forever! and The Moving Stairs', 3.46), (4, 10, 'The Norwegian Ridgeback and A Change of Season', 2.47), (4, 11, 'The Quidditch Match', 8.28), (4, 12, 'Christmas at Hogwarts', 2.56), (4, 13, 'The Invisibility Cloak and The Library Scene', 3.15), (4, 14, 'Fluffy''s Harp', 2.38), (4, 15, 'In the Devil''s Snare and The Flying Keys', 2.20), (4, 16, 'The Chess Game', 3.48), (4, 17, 'The Face of Voldemort', 6.10), (4, 18, 'Leaving Hogwarts', 2.13), (4, 19, 'Hedwig''s Theme', 5.09), (5, 1, 'Hoist the Colours', 1.31), (5, 2, 'Singapore', 3.40), (5, 3, 'At Wit''s End', 8.05), (5, 4, 'Multiple Jacks', 3.51), (5, 5, 'Up is Down', 2.42), (5, 6, 'I See Dead People in Boats', 7.09), (5, 7, 'The Brethren Court', 2.21), (5, 8, 'Parlay', 2.10), (5, 9, 'Calypso', 3.02), (5, 10, 'What Shall We Die For', 2.02), (5, 11, 'I Don''t Think Now is the Best Time', 10.45), (5, 12, 'One Day', 4.01), (5, 13, 'Drink Up Me Hearties', 4.31), (6, 1, 'Fireworks', 1.49), (6, 2, '<NAME>', 2.35), (6, 3, 'Another Story', 2.41), (6, 4, 'Dementors in the Underpass', 1.45), (6, 5, 'Dumbledore''s Army', 2.42), (6, 6, 'The Hall of Prophecies', 4.27), (6, 7, 'Possession', 3.20), (6, 8, 'The Room of Requirement', 6.09), (6, 9, 'The Kiss', 1.56), (6, 10, 'A Journey to Hogwarts', 2.54), (6, 11, 'The Sirius Deception', 2.36), (6, 12, 'Death of Sirius', 3.58), (6, 13, 'Umbridge Spoils a Beautiful Morning', 2.39), (6, 14, 'Darkness Takes Over', 2.58), (6, 15, 'The Ministry of Magic', 2.48), (6, 16, 'The Sacking of Trelawney', 2.15), (6, 17, 'Flight of the Order of the Phoenix', 1.34), (6, 18, 'Loved Ones and Leaving', 3.15), (6, 19, 'Divine Crusade', 2.43), (7, 1, 'Star Wars Main Title and The Arrival at Naboo', 2.55), (7, 2, 'Duel of the Fates', 4.14), (7, 3, 'Anakin''s Theme', 3.05), (7, 4, 'Jar Jar''s Introduction and The Swim to Otoh Gunga', 5.07), (7, 5, 'The Sith Spacecraft and The Droid Battle', 2.37), (7, 6, 'The Trip to the Naboo Temple and The Audience with Boss Nass', 4.07), (7, 7, 'The Arrival at Tatooine and The Flag Parade', 4.04), (7, 8, 'He Is the Chosen One', 3.53), (7, 9, 'Anakin Defeats Sebulba', 4.24), (7, 10, 'Passage Through the Planet Core', 4.40), (7, 11, 'Watto''s Deal and Kids at Play', 4.57), (7, 12, 'Panaka and the Queen''s Protectors', 3.24), (7, 13, '<NAME> and The Naboo Palace', 4.51), (7, 14, 'The Droid Invasion and The Appearance of <NAME>', 5.14), (7, 15, 'Qui-Gon''s Noble End', 3.48), (7, 16, 'The High Council Meeting and Qui-Gon''s Funeral', 3.09), (7, 17, 'Augie''s Great Municipal Band and End Credits', 9.37), (8, 1, 'Foundations of Stone', 3.51), (8, 2, 'The Taming of Smagol', 2.48), (8, 3, 'The Riders of Rohan', 4.05), (8, 4, 'The Passage of the Marshes', 2.46), (8, 5, 'The Uruk-hai', 2.58), (8, 6, 'The King of the Golden Hall', 3.49), (8, 7, 'The Black Gate Is Closed', 3.17), (8, 8, 'Evenstar', 3.15), (8, 9, 'The White Rider', 2.28), (8, 10, 'Treebeard', 2.43), (8, 11, 'The Leave Taking', 3.41), (8, 12, 'Helm''s Deep', 3.53), (8, 13, 'The Forbidden Pool', 5.27), (8, 14, 'Breath of Life', 5.07), (8, 15, 'The Hornburg', 4.36), (8, 16, '<NAME>', 3.15), (8, 17, '<NAME>leashed', 5.01), (8, 18, '<NAME> Brave', 3.46), (8, 19, '<NAME>', 5.51), (8, 20, '<NAME>', 4.37), (9, 1, 'Opening Titles', 0.33), (9, 2, 'Theme from Jurassic Park', 3.27), (9, 3, 'Incident at Isla Nublar', 5.20), (9, 4, 'Journey to the Island', 8.52), (9, 5, 'The Raptor Attack', 2.49), (9, 6, 'Hatching Baby Raptor', 3.20), (9, 7, 'Welcome to Jurassic Park', 7.54), (9, 8, 'My Friend, the Brachiosaurus', 4.16), (9, 9, '<NAME>', 4.55), (9, 10, 'A Tree for My Bed', 2.12), (9, 11, 'High-Wire Stunts', 4.08), (9, 12, 'Remembering Petticoat Lane', 2.48), (9, 13, 'Jurassic Park Gate', 2.03), (9, 14, 'Eye to Eye', 6.32), (9, 15, 'T-Rex Rescue & Finale', 7.39), (9, 16, 'End Credits', 3.26), (10, 1, 'The Story Continues', 1.31), (10, 2, '<NAME>', 2.12), (10, 3, 'The Quidditch World Cup', 1.52), (10, 4, 'The Dark Mark', 3.27), (10, 5, 'Foreign Visitors Arrive', 1.30), (10, 6, 'The Goblet of Fire', 3.23), (10, 7, '<NAME>', 1.43), (10, 8, 'Sirius Fire', 2.00), (10, 9, '<NAME>', 1.54), (10, 10, 'Golden Egg', 6.11), (10, 11, '<NAME>', 2.11), (10, 12, '<NAME>', 2.56), (10, 13, '<NAME>', 2.19), (10, 14, 'Underwater Secrets', 2.28), (10, 15, 'The Black Lake', 4.38), (10, 16, 'Hogwarts'' March', 2.47), (10, 17, 'The Maze', 4.44), (10, 18, 'Voldemort', 9.39), (10, 19, 'Death of Cedric', 1.59), (10, 20, 'Another Year Ends', 2.21), (10, 21, 'Hogwarts'' Hymn', 2.59), (10, 22, 'Do the Hippogriff', 3.39), (10, 23, 'This Is the Night', 3.24), (10, 24, 'Magic Works', 4.02);
<filename>conf/evolutions/database/1.sql # Users schema # --- !Ups CREATE TABLE "user" ( "id" SERIAL PRIMARY KEY, "first_name" TEXT NOT NULL, "last_name" TEXT NOT NULL, "email" VARCHAR(50) UNIQUE NOT NULL, "isVerified" BOOLEAN NOT NULL, "isDisabled" BOOLEAN NOT NULL, "password" TEXT NOT NULL ); CREATE TABLE "role" ( "id" SERIAL PRIMARY KEY, "name" TEXT NOT NULL ); CREATE TABLE "user_role" ( "userId" SERIAL REFERENCES "user"(id), "roleId" SERIAL REFERENCES "role"(id) ); CREATE TABLE "user_detail" ( "id" SERIAL PRIMARY KEY, "description" TEXT NOT NULL, "religion" VARCHAR(40) NOT NULL, "country" VARCHAR(50) NOT NULL, "height" DECIMAL, "weight" DECIMAL, "skin" VARCHAR(20), "hair" VARCHAR(20), "gender" VARCHAR(20) NOT NULL, "age" SMALLINT, "userId" SERIAL REFERENCES "user"(id) ); CREATE TABLE "user_interesting_info" ( "id" SERIAL PRIMARY KEY, "description" TEXT NOT NULL, "name" VARCHAR(100) NOT NULL, "url" VARCHAR(200) NULL, "userId" SERIAL REFERENCES "user"(id) ); CREATE TABLE "skill" ( "id" SERIAL PRIMARY KEY, "description" TEXT NOT NULL, "name" VARCHAR(100) NOT NULL ); CREATE TABLE "user_skill" ( "userId" SERIAL REFERENCES "user"(id), "skillId" SERIAL REFERENCES "skill"(id), "level" TEXT NULL, "yearsExperience" SMALLINT NOT NULL ); CREATE TABLE "project" ( "id" SERIAL PRIMARY KEY, "description" TEXT NOT NULL, "name" VARCHAR(100) NOT NULL, "url" TEXT NOT NULL, "startDate" TIMESTAMP NOT NULL, "endDate" TIMESTAMP NULL ); CREATE TABLE "project_skill" ( "projectId" SERIAL REFERENCES "project"(id), "skillId" SERIAL REFERENCES "skill"(id) ); CREATE TABLE "user_project" ( "userId" SERIAL REFERENCES "user"(id), "projectId" SERIAL REFERENCES "project"(id) ); CREATE TABLE "leave_category" ( "id" SERIAL PRIMARY KEY, "name" TEXT UNIQUE NOT NULL ); CREATE TABLE "leave" ( "id" SERIAL PRIMARY KEY, "reason" TEXT NOT NULL, "status" VARCHAR(40) NOT NULL, "startDate" TIMESTAMP NOT NULL, "endDate" TIMESTAMP NULL, "comment" TEXT NULL, "categoryId" SERIAL REFERENCES "leave_category"(id), "userId" SERIAL REFERENCES "user"(id) ); # --- !Downs DROP TABLE "user"; DROP TABLE "role"; DROP TABLE "user_role"; DROP TABLE "user_detail"; DROP TABLE "user_report"; DROP TABLE "user_interesting_info"; DROP TABLE "skill"; DROP TABLE "user_skill"; DROP TABLE "project"; DROP TABLE "project_skill"; DROP TABLE "user_project"; DROP TABLE "leave_category"; DROP TABLE "leave"; DROP TABLE "user_leave";
/****** Object: StoredProcedure [dbo].[usp_emailMorningDBStatus] Script Date: 2/13/2021 12:14:59 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROC [dbo].[usp_emailMorningDBStatus] AS /******************************************************************* -- --Create 3/29/2020 JMcBratnie -- Email the results of checks on the database nightly -- ********************************************************************/ BEGIN declare @output NVARCHAR(MAX); declare @Prior tinyint; declare @O_Priority tinyint; declare @body NVARCHAR(MAX); declare @subject NVARCHAR(MAX); -- initialize vars select @output = N''; select @body = N''; select @subject = N''; -- Temp table to store the data. CREATE TABLE #MorningRPT ( myid int identity(1,1), msg nvarchar(max), output_priority tinyint ); -- Get any databases that are not in a good state exec [IT.Macomb_DBA].[dbo].[usp_GetDBHealth] @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- Get nightly failed login attempts exec [IT.Macomb_DBA].dbo.usp_GetFailedLogins @TXTOUT = @output output, @O_Priority = @Prior output; --store it for email if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- What services are running and not exec [IT.Macomb_DBA].dbo.usp_GetServices @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END --Who is an admin of the server exec [IT.Macomb_DBA].dbo.usp_Getadmins @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- Did sql puke on me exec [IT.Macomb_DBA].dbo.usp_Getdumps @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- What servers are linked to this server exec [IT.Macomb_DBA].dbo.usp_GetLinked @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END --Are the backups old? exec [IT.Macomb_DBA].dbo.usp_Getstalebackups @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- what precedures are running on start (might haveduplicates here) -- Also, might want to check jobs for start up exec [IT.Macomb_DBA].dbo.usp_GetStartups @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- Might want to list jobs that failed in the past 24 hours -- Who needs a fill tactor adjustment exec [IT.Macomb_DBA].dbo.usp_GetFILLFactor @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- What jobs failed exec [IT.Macomb_DBA].dbo.usp_GetJobsFailed @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END select @output = cast('' AS NVARCHAR(MAX)); --What jobs are not enabled exec [IT.Macomb_DBA].dbo.usp_GetJobsNotEnabled @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- Enabled but scheduled not enabled exec [IT.Macomb_DBA].dbo.usp_GetJobsscheduleNotEnabled @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END -- Enabled jobs with not schedule exec [IT.Macomb_DBA].dbo.usp_GetJobsnotscheduled @TXTOUT = @output output, @O_Priority = @Prior output; if @output IS NOT NULL BEGIN select @body = @body + @output; select @output =N''; INSERT INTO #MorningRPT (msg, output_priority) SELECT @output, @Prior ; END /*--What does the body look like? Comment this out on production select @body; --*/ SELECT @body = @body + msg from #MorningRPT order by output_priority; Select @subject = cast('Morning issue report - ' AS NVARCHAR(Max)) + @@SERVERNAME; -- Finally, Send Email EXEC msdb.dbo.sp_send_dbmail @profile_name = 'SMTP', @recipients = 'Macomb DBA <<EMAIL>>', @subject = @subject, @body = @body, @body_format = 'HTML', @from_address='<<EMAIL>>'; --*/ end GO
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Aug 13, 2021 at 02:08 AM -- Server version: 10.4.14-MariaDB -- PHP Version: 7.4.9 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: `ladder` -- -- -------------------------------------------------------- -- -- Table structure for table `words` -- CREATE TABLE `words` ( `Word_ID` int(11) NOT NULL, `word` varchar(50) NOT NULL, `characters` varchar(50) NOT NULL, `clue` varchar(50) NOT NULL, `length` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `words` -- INSERT INTO `words` (`Word_ID`, `word`, `characters`, `clue`, `length`) VALUES (1, 'Ace', 'A,c,e', 'Best or worst card in card games', 3), (2, 'Add', 'A,d,d', 'One of the 4 arithmetic operations', 3), (3, 'Age', 'A,g,e', 'It increases by 1 each year', 3), (4, 'Air', 'A,i,r', 'What we breath', 3), (5, 'Art', 'A,r,t', 'Painting is considered', 3), (6, 'Axe', 'A,x,e', 'Used by Lumberjacks', 3), (7, 'Bag', 'B,a,g', 'Grocery carrier', 3), (8, 'Ban', 'B,a,n', 'When something is prohibited', 3), (9, 'Bane', 'B,a,n,e', 'A poison', 4), (10, 'Bat', 'B,a,t', 'Flying vampire', 3), (11, 'Bate', 'B,a,t,e', 'To restrain', 4), (12, 'Bed', 'B,e,d', 'Sleep on it', 3), (13, 'Bet', 'B,e,t', 'Monetary compromise', 3), (14, 'Beta', 'B,e,t,a', 'Second greek letter', 4), (15, 'Big', 'B,i,g', 'Very large', 3), (16, 'Bin', 'B,i,n', 'A container', 3), (17, 'Bine', 'B,i,n,e', 'Stem of plants', 4), (18, 'Bio', 'B,i,o', 'Story of someone', 3), (19, 'Bite', 'B,i,t,e', 'Cut with teeth', 4), (20, 'Bone', 'B,o,n,e', 'Under your skin', 4), (21, 'Bony', 'B,o,n,y', 'Without much fat', 4), (22, 'Bot', 'B,o,t', 'Programming to minimize tasks', 3), (23, 'Box', 'B,o,x', 'Used to store things', 3), (24, 'But', 'B,u,t', 'Synonym for however', 3), (25, 'Buy', 'B,u,y', 'Another word for purchase', 3), (26, 'Byte', 'B,y,t,e', 'PC storage unit', 4), (27, 'Can', 'C,a,n', 'They store food', 3), (28, 'Cap', 'C,a,p', 'Bottle top', 3), (29, 'Car', 'C,a,r', 'Main method of transportation', 3), (30, 'Cat', 'C,a,t', 'Domestic Feline', 3), (31, 'Cop', 'C,o,p', 'Police officer', 3), (32, 'Cot', 'C,o,t', 'Small bed', 3), (33, 'Dad', 'D,a,d', 'Paternal parent', 3), (34, 'Dam', 'D,a,m', 'Used to create energy', 3), (35, 'Dane', 'D,a,n,e', 'Great dog', 4), (36, 'Den', 'D,e,n', 'Man cave', 3), (37, 'Dig', 'D,i,g', 'Taking out dirt', 3), (38, 'Dine', 'D,i,n,e', 'Have a meal', 4), (39, 'Dino', 'D,i,n,o', 'Flintstones pet', 4), (40, 'Dip', 'D,i,p', 'Immerse briefly', 3), (41, 'Dog', 'D,o,g', 'A mans best friend', 3), (42, 'Done', 'D,o,n,e', 'To finish up', 4), (43, 'Dot', 'D,o,t', 'Little point', 3), (44, 'Dune', 'D,u,n,e', 'Sandy hill', 4), (45, 'Dye', 'D,y,e', 'Used to changed color', 3), (46, 'Dyne', 'D,y,n,e', 'Unit of force', 4), (47, 'Eat', 'E,a,t', 'We need this to survive', 3), (48, 'Fan', 'F,a,n', 'Cooling device', 3), (49, 'Fat', 'F,a,t', 'Opposite of skinny', 3), (50, 'Fax', 'F,a,x', 'Old way of sending documents electronically', 3), (51, 'Fog', 'F,o,g', 'Thick mist', 3), (52, 'Fun', 'F,u,n', 'You play games to have', 3), (53, 'Ham', 'H,a,m', 'Pork product', 3), (54, 'Hat', 'H,a,t', 'Head accessory', 3), (55, 'Hen', 'H,e,n', 'Female rooster', 3), (56, 'Hit', 'H,i,t', 'Top 10 song', 3), (57, 'Hop', 'H,o,p', 'Small jump', 3), (58, 'Hot', 'H,o,t', 'Opposite of cold', 3), (59, 'Ice', 'I,c,e', 'It keeps things cool', 3), (60, 'Jam', 'J,a,m', 'Another word for jelly', 3), (61, 'Jet', 'J,e,t', 'Type of aircraft', 3), (62, 'Jog', 'J,o,g', 'Light sprint', 3), (63, 'Keg', 'K,e,g', 'Brewery unit', 3), (64, 'Kit', 'K,i,t', 'Tool container', 3), (65, 'Lad', 'L,a,d', 'Young boy', 3), (66, 'Lam', 'L,a,m', 'Escape as from jail', 3), (67, 'Lap', 'L,a,p', 'Once around the track', 3), (68, 'Leg', 'L,e,g', 'Lower limb', 3), (69, 'Let', 'L,e,t', 'Permit; lease', 3), (70, 'Lip', 'L,i,p', 'Mouth part', 3), (71, 'Lit', 'L,i,t', 'Something ignited', 3), (72, 'Log', 'L,o,g', 'Piece of wood', 3), (73, 'Mad', 'M,a,d', 'Very angry', 3), (74, 'Man', 'M,a,n', 'Male person', 3), (75, 'Mane', 'M,a,n,e', 'Hair on a lion', 4), (76, 'Mani', 'M,a,n,i', 'Short for manicure', 4), (77, 'Mano', 'M,a,n,o', 'Another word for hand', 4), (78, 'Many', 'M,a,n,y', 'More than a couple', 4), (79, 'Map', 'M,a,p', 'Area plan', 3), (80, 'Mat', 'M,a,t', 'Shoe wiping spot', 3), (81, 'Men', 'M,e,n', 'More than one male', 3), (82, 'Menu', 'M,e,n,u', 'List of available dishes', 4), (83, 'Met', 'M,e,t', 'Got together', 3), (84, 'Mina', 'M,i.n,a', 'A monetary unit in Ancient Greece', 4), (85, 'Mine', 'M,i.n,e', 'Belonging to me', 4), (86, 'Mini', 'M,i.n,i', 'Small version', 4), (87, 'Mona', 'M,o.n,a', 'First name of famous art piece', 4), (88, 'Mop', 'M,o,p', 'Cleanup aid', 3), (89, 'Muni', 'M,u.n,i', 'Tax exempt bond, for short', 4), (90, 'Nap', 'N,a,p', 'Brief sleep', 3), (91, 'Net', 'N,e,t', 'Fishing trap', 3), (92, 'Pad', 'P,a,d', 'Helicopter stand', 3), (93, 'Pan', 'P,a,n', 'Used for cooking', 3), (94, 'Peg', 'P,e,g', 'Tent stake', 3), (95, 'Pen', 'P,e,n', 'Writing tool', 3), (96, 'Pet', 'P,e,t', 'Animal companion', 3), (97, 'Pig', 'P,i,g', 'Bacon source', 3), (98, 'Pin', 'P,i,n', 'Metal fastener', 3), (99, 'Pop', 'P,o,p', 'Carbonated drink', 3), (100, 'Pot', 'P,o,t', 'Kitchen utensil', 3), (101, 'Rag', 'R,a,g', 'Piece of cloth', 3), (102, 'Ram', 'R,a,m', 'Symbol of Aries', 3), (103, 'Rap', 'R,a,p', 'Music genre', 3), (104, 'Rat', 'R,a,t', 'Large rodent', 3), (105, 'Red', 'R,e,d', 'White or ___ wine', 3), (106, 'Rig', 'R,i,g', 'Arrange in a dishonest way', 3), (107, 'Rip', 'R,i,p', 'Clothing tear', 3), (108, 'Rot', 'R,o,t', 'To decompose or decay', 3), (109, 'Run', 'R,u,m', 'Move rapidly', 3), (110, 'Sip', 'S,i,p', 'Small mouthful', 3), (111, 'Sit', 'S,i,t', 'Occupy a seat', 3), (112, 'Sun', 'S,u,n', 'Lights up the solar system', 3), (113, 'Tag', 'T,a,g', 'Clothing label', 3), (114, 'Tap', 'T,a,p', 'Gentle attention-getter', 3), (115, 'Ten', 'T,e,n', 'Number after nine', 3), (116, 'Tin', 'T,i,n', 'Metallic element', 3), (117, 'Tip', 'T,i,p', 'Overbalance', 3), (118, 'Top', 'T,o,p', 'Removable cover', 3), (119, 'Van', 'V,a,n', 'Larger than a car', 3), (120, 'Vet', 'V,e,t', 'Pet doctor', 3), (121, 'Wet', 'W,e,t', 'Opposite of dry', 3), (122, 'Wig', 'W,i,g', 'Part of a clown costume', 3), (123, 'Yam', 'Y,a,m', 'Sweet potato substitute', 3), (124, 'Zip', 'Z,i,p', 'Kind of code', 3); -- -- Indexes for dumped tables -- -- -- Indexes for table `words` -- ALTER TABLE `words` ADD PRIMARY KEY (`Word_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 */;
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: db -- Generation Time: Dec 12, 2020 at 04:31 AM -- Server version: 8.0.22 -- 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: `banking` -- -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `customer_id` int NOT NULL, `name` varchar(100) NOT NULL, `date_of_birth` date NOT NULL, `city` varchar(100) NOT NULL, `ziipcode` varchar(10) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `customers` -- INSERT INTO `customers` (`customer_id`, `name`, `date_of_birth`, `city`, `ziipcode`, `status`) VALUES (1, 'Alfiankan', '1999-11-12', 'Karanganyar', '57781', 1), (2, 'Andara', '1999-11-12', 'Malang', '57781', 1), (3, 'Sujatmiko', '1999-11-12', 'Surabaya', '57781', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `customers` -- ALTER TABLE `customers` ADD PRIMARY KEY (`customer_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `customers` -- ALTER TABLE `customers` MODIFY `customer_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; 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 CREATE FUNCTION [dbo].[ufn_sqlwatch_get_file_type_desc] ( @file_type tinyint ) RETURNS varchar(max) with schemabinding AS BEGIN /* https://docs.microsoft.com/en-us/sql/relational-databases/system-catalog-views/sys-master-files-transact-sql File type: 0 = Rows. 1 = Log 2 = FILESTREAM 3 = Identified for informational purposes only. Not supported. Future compatibility is not guaranteed. 4 = Full-text (Full-text catalogs earlier than SQL Server 2008; full-text catalogs that are upgraded to or created in SQL Server 2008 or higher will report a file type 0.) */ return case @file_type when 0 then 'Rows' when 1 then 'Log' when 2 then 'FILESTREAM' when 3 then '3' when 4 then 'Full-text' else 'UNKNOWN' end; END;
-- phpMyAdmin SQL Dump -- version 3.3.7deb7 -- http://www.phpmyadmin.net -- -- Serveur: localhost -- Généré le : Jeu 23 Mai 2013 à 22:27 -- Version du serveur: 5.1.66 -- Version de PHP: 5.3.24-1~dotdeb.0 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!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 */; -- -- Base de données: `quizzfb` -- -- -------------------------------------------------------- -- -- Structure de la table `answer` -- DROP TABLE IF EXISTS `answer`; CREATE TABLE IF NOT EXISTS `answer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question_id` int(11) DEFAULT NULL, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `is_correct` tinyint(1) NOT NULL, PRIMARY KEY (`id`), KEY `IDX_DADD4A251E27F6BF` (`question_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=71 ; -- -- Contenu de la table `answer` -- INSERT INTO `answer` (`id`, `question_id`, `title`, `is_correct`) VALUES (1, 50, 'Lost, les disparus', 0), (2, 50, '24 heures chrono', 1), (3, 50, 'NCIS', 0), (4, 51, '<NAME>', 0), (5, 51, '<NAME>', 0), (6, 51, '<NAME>', 1), (7, 52, 'Nip/Tuck', 1), (9, 52, 'Scrubs', 0), (10, 52, 'Grey''s anatomy', 0), (11, 53, '<NAME>', 0), (12, 53, '<NAME>', 0), (13, 53, '<NAME>', 1), (14, 54, '<NAME>', 0), (15, 54, '<NAME>', 1), (16, 54, '<NAME>', 0), (17, 55, '<NAME>', 1), (18, 55, '<NAME>', 0), (19, 55, 'Oz', 0), (20, 56, 'Chirurgien', 0), (21, 56, 'Pédiatre', 0), (22, 56, '<NAME>', 1), (23, 57, 'New Criminal Independent Service', 0), (24, 57, 'Naval Criminal Investigative Service', 1), (25, 57, 'National Coalition of Independent Service', 0), (26, 58, 'Bones', 0), (27, 58, 'The Unit', 1), (28, 58, 'Angela''s Eyes', 0), (29, 59, '2 200', 0), (30, 59, '3 300', 0), (31, 59, '4 400', 1), (32, 60, 'Washington', 0), (33, 60, '<NAME>', 0), (34, 60, 'Paris', 1), (35, 61, 'Serbie', 1), (36, 61, 'Turquie', 0), (37, 61, 'Nigeria', 0), (38, 62, 'Lisbonne', 0), (39, 62, 'Madrid', 1), (40, 62, 'Rome', 0), (41, 63, '<NAME>', 1), (42, 63, '<NAME>', 0), (43, 63, '<NAME>', 0), (44, 64, '9 octobre 2009', 0), (45, 64, '20 janvier 2009', 1), (46, 64, '4 novembre 2008', 0), (47, 65, '<NAME>', 0), (48, 65, '<NAME>', 1), (49, 65, '<NAME>', 0), (50, 66, '<NAME>', 0), (51, 66, '<NAME>', 1), (52, 66, '<NAME>', 0), (53, 67, '<NAME>', 0), (54, 67, '<NAME>', 1), (55, 67, 'The Rock', 0), (56, 68, '<NAME>', 1), (57, 68, '<NAME>', 0), (58, 68, '<NAME>', 0), (59, 69, '<NAME>', 0), (60, 69, 'Coluche', 1), (61, 69, '<NAME>', 0), (62, 70, '<NAME>', 1), (63, 70, '<NAME>', 0), (64, 70, '<NAME>', 0), (65, 71, '<NAME>', 0), (66, 71, '<NAME>', 0), (67, 71, 'Lorie', 1), (68, 72, '<NAME>', 0), (69, 72, '<NAME>', 1), (70, 72, '<NAME>', 0); -- -------------------------------------------------------- -- -- Structure de la table `question` -- DROP TABLE IF EXISTS `question`; CREATE TABLE IF NOT EXISTS `question` ( `id` int(11) NOT NULL AUTO_INCREMENT, `quizz_id` int(11) DEFAULT NULL, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `picture` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `IDX_B6F7494EBA934BCD` (`quizz_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=73 ; -- -- Contenu de la table `question` -- INSERT INTO `question` (`id`, `quizz_id`, `title`, `picture`) VALUES (50, 10, 'Dans quelle série <NAME> joue-t-il le rôle principal ?', '3d1089e61d6af0a0dc41714c2aa5f5fa56483333.jpeg'), (51, 10, 'Qui joue le rôle du Dr House dans la série du même nom ?', '5f4fb175b9c15aa3ec432fdaa951927ac7243b26.jpeg'), (52, 10, 'Quelle série a pour décor une clinique de chirurgie esthétique ?', '55de19e65a65cf18471860a39af8b3c52b528860.jpeg'), (53, 10, 'Qui est le chef de l''unité scientifique de la police de Manhattan ?', '2d2b0bf8a435313d6521737a0b0418c4a4266062.jpeg'), (54, 10, 'Qui joue le rôle de <NAME> ?', 'b93eecddcdf68de72cfbe6aacfda515e12502748.jpeg'), (55, 16, 'Dans quel série <NAME> se fait-il incarcérer dans le but de faire évader son frère ?', '217de276847c0b62b8c59e53b67a95be4f952216.jpeg'), (56, 16, 'Quel métier exerce le Dr <NAME> ?', '3aed6988c4fea46823f0a88ad7678d6455ef06bf.jpeg'), (57, 16, 'Que veut dire NCIS ?', '56b6a6263c28ffeef68d7881675c1793b59b7ffd.jpeg'), (58, 16, 'Comment s''appelle la nouvelle série dans laquelle <NAME> tient le rôle principal ?', '158445f06482622a1ffb5c2844407bc6486627d5.jpeg'), (59, 16, 'Combien de personnes réapparaissent mystérieusement après plusieurs années, dans la série du même nom ?', 'fd4d98d15ba9dc9cbb08700f9e4b439af20096c3.jpeg'), (60, 13, 'Trouver cette capitale', '091a15d8b5283a975ce1287e32e10c36123d6b4d.jpeg'), (61, 13, 'Où se situe la ville de Belgrade ?', '0f9e29b331fa9e80b659605c9b05cc9465e81059.jpeg'), (62, 13, 'Qu''elle est la capitale de L’Espagne ?', '624c43d52d949555db07725a5113f6b65b08e023.jpeg'), (63, 17, 'Cette actrice fut révélée dans "Léon" avec <NAME> !', '5a56458b3956cc5c44f3f15f937cd1d5be29bf53.jpeg'), (64, 17, 'A quelle date <NAME> remporta-t-il les élections présidentielles américaines ?', 'e88eba8860c497971c7203feb701d21f52495de5.jpeg'), (65, 17, 'Né en 1935, immense réalisateur et scénariste américain !', '53716ab94f13110d153a77e377421809bdc393e6.png'), (66, 17, 'Travailler plus pour gagner plus !', '6ce7166216f6e83d0bcd78bbb6308afb37f18abe.jpeg'), (67, 17, 'Rambo ou Rocky !', 'e162ebca2e199814e5e6684d3f8e1c0d79acc836.jpeg'), (68, 18, 'Cet enfant est . . .', '24d9d82ebb5dbdd44244e9a418bc6446d2d6799c.jpeg'), (69, 18, 'Cet enfant est . . .', '5cb75070da7be16fa89118c2bd0081facac574fe.jpeg'), (70, 18, 'Cet enfant est . . .', '3f52922bdf151bf2244bddc3d9a2446aa39d0084.jpeg'), (71, 18, 'Cet enfant est . . .', '8d1b14af0fc3be13522d003d80008ab69ad3dd36.jpeg'), (72, 18, 'Cet enfant est . . .', '712ca7027174c692178a0e296f2d983d6326c1b8.jpeg'); -- -------------------------------------------------------- -- -- Structure de la table `quizz` -- DROP TABLE IF EXISTS `quizz`; CREATE TABLE IF NOT EXISTS `quizz` ( `id` int(11) NOT NULL AUTO_INCREMENT, `theme_id` int(11) DEFAULT NULL, `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `picture` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `short_desc` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `long_desc` longtext COLLATE utf8_unicode_ci, `win_points` int(11) NOT NULL, `average_time` int(11) NOT NULL, `txt_win_1` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `txt_win_3` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `txt_win_2` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `txt_win_4` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `share_wall_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `share_wall_desc` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `is_promoted` tinyint(1) NOT NULL, `created_at` datetime NOT NULL, `state` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `IDX_7C77973D59027487` (`theme_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=19 ; -- -- Contenu de la table `quizz` -- INSERT INTO `quizz` (`id`, `theme_id`, `title`, `picture`, `short_desc`, `long_desc`, `win_points`, `average_time`, `txt_win_1`, `txt_win_3`, `txt_win_2`, `txt_win_4`, `share_wall_title`, `share_wall_desc`, `is_promoted`, `created_at`, `state`) VALUES (10, 16, 'Séries Américaines', '87ce4d4195ce594ab28e8c9a1d4f4298369db408.jpeg', 'Regardez-vous les séries américaines ?', 'Différentes questions sur les séries telle que breking bad, games of thrones, dr house etc ...', 20, 100, 'Il n''y à pas que les séries françaises !', 'C''est presque ça !', 'C''est pas gagné !', 'Félicitations t''es un expert dans les séries américaines.', 'Quizz sur les séries américaines', 'Différentes questions portant sur les grandes séries américaines', 0, '2013-05-13 03:12:58', 1), (13, 19, 'Capitale des pays', '38de98eb76c9233efaa34e2975ee4357cf324543.jpeg', 'Quizz pour tester vos connaissances sur les capitales des pays', 'Ce quizz sur la géographie va permettre de tester vos connaissances sur les capitales des différents continents', 40, 100, 'T''as eu ton bac dans une pochette surprise ?', 'Joli score', 'C''est pas encore ça', 'Félicitations !', 'Capitale des pays', 'Quizz de géographie sur les capitales des pays', 0, '2013-05-13 05:42:02', 1), (16, 16, 'Séries Américaines 2', '97d1b239be424fa70024c88609d1fedca5f36e39.png', 'En avant pour cette deuxième version des séries américaines', 'Différentes questions sur les séries telle que NCIS, dr house etc ...', 50, 150, 'sois pas triste tu es nul c''est tout', 'Bien joué, mais je sais que tu peux mieux faire', 'j''ai connu des scores meilleur...', 'Extra, tu gères ;)', 'Séries Américaines 2', 'En avant pour cette deuxième version des séries américaines.\r\nDifférentes questions sur les séries telle que NCIS, dr house etc ...', 0, '2013-05-23 20:54:51', 1), (17, 16, 'Quizz célébrités', '92d8e71a40ad7fa4c01b7b9884d3ad2e3962e552.jpeg', 'Ce Quizz vous permet de tester vos connaissances sur les people.', 'Ce Quizz vous permet de tester vos connaissances sur les people.', 20, 80, 'Tu sors jamais de chez toi ? achète toi une télé ;)', 'Tes connaissances people sont impressionnantes :)', 'Arf, tu aurais pu te dépasser un peu plus', 'Tu nages parmi les people avec facilité :p', 'Quizz célébrités', 'Ce Quizz vous permet de tester vos connaissances people.', 0, '2013-05-23 21:32:28', 1), (18, 16, 'Quizz célébrités 2', '54a13a8726e5e2bfcb5469b669903e1de707a3f5.png', 'En avant pour la deuxième version du Quizz célébrité, cette fois ils sont tous petits ;)', 'De nouvelle questions sur nos cher amis les people', 200, 200, 'tu n''as toujours pas acheté de télé il me semble', 'bravo, digne d''un paparazzi', 'encore un effort...', 'serais tu une star ? ;)', 'Quizz célébrités 2', 'En avant pour la deuxième version du Quizz célébrité.\r\nDe nouvelle questions sur nos cher amis les people', 1, '2013-05-23 21:36:37', 1); -- -------------------------------------------------------- -- -- Structure de la table `quizz_result` -- DROP TABLE IF EXISTS `quizz_result`; CREATE TABLE IF NOT EXISTS `quizz_result` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `quizz_id` int(11) DEFAULT NULL, `date_start` datetime NOT NULL, `date_end` datetime DEFAULT NULL, `average` double DEFAULT NULL, `win_points` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `IDX_4995E702A76ED395` (`user_id`), KEY `IDX_4995E702BA934BCD` (`quizz_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ; -- -- Contenu de la table `quizz_result` -- -- -------------------------------------------------------- -- -- Structure de la table `theme` -- DROP TABLE IF EXISTS `theme`; CREATE TABLE IF NOT EXISTS `theme` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `picture` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `short_desc` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `long_desc` longtext COLLATE utf8_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=22 ; -- -- Contenu de la table `theme` -- INSERT INTO `theme` (`id`, `title`, `picture`, `short_desc`, `long_desc`) VALUES (16, 'Séries TV', '687a8e3251556facd689176b8446706e652de003.jpeg', 'Tester vos connaissances en séries parmi les plus célèbres du moment', 'Vous êtes incollable sur les séries du moment ? alors ce thème est fait pour vous, des séries Américaines aux Françaises, tester votre culture et votre rapidité.'), (19, 'Géographie', '2a44e5b8aa6d37fc8fa6587cb1045bb1c643f474.jpeg', 'venez tester vos connaissances géographiques. Incollable sur les pays, capitales, océans..? Ce thème est fait pour vous', 'Ce thème permet aux passionnés de géographie de tester leur connaissance et leur rapidité. Continents, pays, mer & océans... tout y est traité.'), (20, 'Célébrités', '5be96ba8726302b81127eac9350b0faa7cf40f58.jpeg', 'Ce thème vous propose de tester vos connaissances people.', 'Incollable sur les célébrités du moment ? ce thème va vous surprendre'), (21, 'Musique Françaises', '374f8fc4b4fbf15751079cb6097d6390a3820461.jpeg', 'fin connaisseur de musiques française ? vous allez apprécier ce thème', 'Retrouver dans ce thème les chanteurs Français d''hier et d''aujourd''hui.'); -- -------------------------------------------------------- -- -- Structure de la table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fb_uid` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `firstname` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `lastname` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `username` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `picture` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `points` double DEFAULT NULL, `average_time` double DEFAULT NULL, `nb_quizz` double DEFAULT NULL, `created_at` datetime NOT NULL, `lastconnect_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ; -- -- Contenu de la table `user` -- INSERT INTO `user` (`id`, `fb_uid`, `firstname`, `lastname`, `username`, `picture`, `points`, `average_time`, `nb_quizz`, `created_at`, `lastconnect_at`) VALUES (1, '100003125315007', 'Mickaël', 'Chapusot', NULL, 'https://graph.facebook.com/100003125315007/picture', 8, 8, 1, '2013-05-21 11:05:00', NULL), (2, '12', 'first', 'last', 'uname', 'jj.jpg', 300, 2, 2, '2013-05-23 15:31:00', NULL), (3, '4', 'fgg', 'dfgdf', 'dfgfdg', 'fdgdf', 500, NULL, NULL, '0000-00-00 00:00:00', NULL), (4, 'dfdg', 'dfgfdg', 'fgfg', 'fgfg', 'fgfd', 10, NULL, NULL, '0000-00-00 00:00:00', NULL), (5, 'qdqdqs', 'sdqsd', 'sdqd', 'qsdqs', 'qdsdsq', 2, 23, NULL, '0000-00-00 00:00:00', NULL), (6, 'dcsdv', 'svsdv', 'dvdv', 'sdv', 'svsd', 1, 0, 0, '0000-00-00 00:00:00', NULL); -- -------------------------------------------------------- -- -- Structure de la table `user_answer` -- DROP TABLE IF EXISTS `user_answer`; CREATE TABLE IF NOT EXISTS `user_answer` ( `user_id` int(11) NOT NULL, `answer_id` int(11) NOT NULL, PRIMARY KEY (`user_id`,`answer_id`), KEY `IDX_BF8F5118A76ED395` (`user_id`), KEY `IDX_BF8F5118AA334807` (`answer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Contenu de la table `user_answer` -- -- -- Contraintes pour les tables exportées -- -- -- Contraintes pour la table `answer` -- ALTER TABLE `answer` ADD CONSTRAINT `FK_DADD4A251E27F6BF` FOREIGN KEY (`question_id`) REFERENCES `question` (`id`); -- -- Contraintes pour la table `question` -- ALTER TABLE `question` ADD CONSTRAINT `FK_B6F7494EBA934BCD` FOREIGN KEY (`quizz_id`) REFERENCES `quizz` (`id`); -- -- Contraintes pour la table `quizz` -- ALTER TABLE `quizz` ADD CONSTRAINT `FK_7C77973D59027487` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`id`); -- -- Contraintes pour la table `quizz_result` -- ALTER TABLE `quizz_result` ADD CONSTRAINT `FK_4995E702A76ED395` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`), ADD CONSTRAINT `FK_4995E702BA934BCD` FOREIGN KEY (`quizz_id`) REFERENCES `quizz` (`id`); -- -- Contraintes pour la table `user_answer` -- ALTER TABLE `user_answer` ADD CONSTRAINT `FK_BF8F5118A76ED395` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `FK_BF8F5118AA334807` FOREIGN KEY (`answer_id`) REFERENCES `answer` (`id`) ON DELETE CASCADE;
DELETE FROM tournament_team WHERE tournament_id = $1 and id = $2 AND NOT EXISTS ( SELECT team_id FROM team_plays_in_tournament_match WHERE team_id = $2 ) RETURNING id;
<filename>src/sql/62.sql ALTER TABLE `user_games` CHANGE `account_value` `account_value` DECIMAL(20,8) NOT NULL DEFAULT '0.00000000'; ALTER TABLE `user_games` ADD `faucet_claims` INT NULL DEFAULT '0' AFTER `api_access_code`;
<filename>src/test/resources/sql/select/fdc50bb6.sql -- file:stats.sql ln:61 expect:true SELECT (pr.snap_ts < pg_stat_get_snapshot_timestamp()) INTO updated4 FROM prevstats AS pr
<reponame>AjinkyaBangale2/Leetcode-SQL-Solutions # https://leetcode.com/problems/recyclable-and-low-fat-products/ SELECT product_id FROM Products WHERE low_fats = 'Y' and recyclable = 'Y'
<reponame>sucrose0413/das-levy-transfer-matching-api CREATE TABLE [dbo].[PledgeLocation] ( [Id] INT IDENTITY NOT NULL, [PledgeId] INT NOT NULL, [Name] VARCHAR(MAX) NOT NULL, [Latitude] FLOAT NOT NULL, [Longitude] FLOAT NOT NULL, CONSTRAINT [FK_PledgeLocation_ToTable] FOREIGN KEY ([PledgeId]) REFERENCES [Pledge]([Id]), CONSTRAINT [PK_PledgeLocation] PRIMARY KEY ([Id]) )
<gh_stars>1-10 -- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 07, 2021 at 02:43 PM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `rental_mobil` -- -- -------------------------------------------------------- -- -- Table structure for table `contact` -- CREATE TABLE `contact` ( `id_contact` int(11) NOT NULL, `id_user` int(11) NOT NULL, `subject` varchar(100) NOT NULL, `pesan` text NOT NULL, `status` varchar(1) NOT NULL COMMENT '1=sudah dilihan, 0=belum di lihat', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `contact` -- INSERT INTO `contact` (`id_contact`, `id_user`, `subject`, `pesan`, `status`, `created`, `updated`, `created_by`, `updated_by`) VALUES (1, 4, 'Tanya soal mobil', 'Permisi boleh dong spil saldonya', '1', '2021-11-10 22:08:49', '2021-11-29 00:09:50', '4', '7'), (2, 7, 'hey hey hey', 'tes tes dicoba low satu dua', '1', '2021-11-16 06:36:18', '2021-11-22 21:12:16', '7', '7'), (3, 13, 'Halo Admin', 'Asik asikk', '1', '2021-12-01 20:30:31', '2021-12-01 20:31:03', '13', '7'), (4, 13, 'halo', 'halo admin', '0', '2021-12-01 20:41:31', NULL, '13', NULL), (5, 13, 'Halo admin', 'tanya soal cancel', '1', '2021-12-01 20:41:50', '2021-12-01 21:29:23', '13', '7'); -- -------------------------------------------------------- -- -- Table structure for table `fitur` -- CREATE TABLE `fitur` ( `id_fitur` int(11) NOT NULL, `id_mobil` int(11) NOT NULL, `hrg_supir` int(11) NOT NULL, `supir` int(1) NOT NULL, `ac` int(1) NOT NULL, `seat_belt` int(1) NOT NULL, `air` int(1) NOT NULL, `p3k` int(1) NOT NULL, `audio_input` int(1) NOT NULL, `mp3_player` int(1) NOT NULL, `bluetooth` int(1) NOT NULL, `vidio` int(1) NOT NULL, `central_lock` int(1) NOT NULL, `ban_serep` int(1) NOT NULL, `car_kit` int(1) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `fitur` -- INSERT INTO `fitur` (`id_fitur`, `id_mobil`, `hrg_supir`, `supir`, `ac`, `seat_belt`, `air`, `p3k`, `audio_input`, `mp3_player`, `bluetooth`, `vidio`, `central_lock`, `ban_serep`, `car_kit`, `created`, `updated`, `created_by`, `updated_by`) VALUES (1, 6, 300000, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, NULL, '2021-12-01 20:17:56', '0', '7'), (2, 9, 300000, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, NULL, NULL, '0', '0'), (3, 10, 300000, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, NULL, NULL, '0', '0'), (4, 13, 300000, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, NULL, NULL, '0', '0'), (5, 14, 300000, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, NULL, NULL, '0', '0'), (6, 15, 300000, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, NULL, NULL, '0', '0'), (11, 18, 300000, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, '2021-11-29 00:25:51', NULL, '7', NULL); -- -------------------------------------------------------- -- -- Table structure for table `mobil` -- CREATE TABLE `mobil` ( `id_mobil` int(11) NOT NULL, `id_tipe` int(11) NOT NULL, `merek` varchar(120) NOT NULL, `no_plat` varchar(20) DEFAULT NULL, `warna` varchar(20) DEFAULT NULL, `transmisi` varchar(20) DEFAULT NULL, `jmlh_kursi` varchar(20) DEFAULT NULL, `bagasi` varchar(20) DEFAULT NULL, `bbm` varchar(20) DEFAULT NULL, `tahun` int(11) NOT NULL, `km` int(11) DEFAULT NULL, `status` int(11) NOT NULL, `harga` int(11) NOT NULL, `denda` int(11) NOT NULL, `gambar` varchar(255) NOT NULL, `detail` text DEFAULT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `mobil` -- INSERT INTO `mobil` (`id_mobil`, `id_tipe`, `merek`, `no_plat`, `warna`, `transmisi`, `jmlh_kursi`, `bagasi`, `bbm`, `tahun`, `km`, `status`, `harga`, `denda`, `gambar`, `detail`, `created`, `updated`, `created_by`, `updated_by`) VALUES (6, 10, '<NAME>', 'B 1446 DAG', 'Hitam', 'Manual', '6 Dewasa', '3 Ransel', 'Pertalite', 2015, 21000, 1, 400000, 400000, 'toyota-camry.jpg', 'Harga mobil perhari merupakan harga penyewaan mobil dalam satu hari, sedangkan untuk denda mobil perhari merupakan harga denda perhari yang dibebankan kepada pihak penyewa mobil jika telat mengembalikan mobil sesuai tanggal jatuh tempo pengembalian mobil. Harga mobil akan dikalikan dengan total hari penyewaan mobil, begitu juga dengan denda mobil akan dikalikan dengan total hari telat pengembalian mobil. <br> Sedangakan untuk harga supir perhari merupakan harga yang dibayar untuk supir perharinya yang nantinya akan dikalikan sesuai berapa hari penyewaan supir. Untuk Mobil yang tidak memiiliki Fitur lepas kunci maka wajib menggunakan supir, sedangkan untuk mobil yang memiliki fitur lepas kunci maka bisa memilih menggunakan jasa supir atau tidak.', '2021-09-30 19:20:55', '2021-12-01 20:17:56', '0', '7'), (9, 10, 'Honda City', 'B 1456 DAG', 'Hitam', 'Manual', '7 Dewasa', '3 Ransel', 'Pertamax', 2015, 11860, 1, 450000, 450000, 'honda-city.jpg', 'Harga mobil perhari merupakan harga penyewaan mobil dalam satu hari, sedangkan untuk denda mobil perhari merupakan harga denda perhari yang dibebankan kepada pihak penyewa mobil jika telat mengembalikan mobil sesuai tanggal jatuh tempo pengembalian mobil. Harga mobil akan dikalikan dengan total hari penyewaan mobil, begitu juga dengan denda mobil akan dikalikan dengan total hari telat pengembalian mobil. <br> Sedangakan untuk harga supir perhari merupakan harga yang dibayar untuk supir perharinya yang nantinya akan dikalikan sesuai berapa hari penyewaan supir. Untuk Mobil yang tidak memiiliki Fitur lepas kunci maka wajib menggunakan supir, sedangkan untuk mobil yang memiliki fitur lepas kunci maka bisa memilih menggunakan jasa supir atau tidak.', '2021-09-30 19:20:55', '2021-11-04 22:00:47', '0', 'Joko Santos'), (10, 15, 'CRV', 'B 1234 csh', 'Silver', 'Matic', '7 Dewasa', '4 Ransel', 'Pertalite', 2019, 34000, 1, 400000, 400000, 'gallery_used-car-mobil123-honda-cr-v-2_4.jpg', 'Harga mobil perhari merupakan harga penyewaan mobil dalam satu hari, sedangkan untuk denda mobil perhari merupakan harga denda perhari yang dibebankan kepada pihak penyewa mobil jika telat mengembalikan mobil sesuai tanggal jatuh tempo pengembalian mobil. Harga mobil akan dikalikan dengan total hari penyewaan mobil, begitu juga dengan denda mobil akan dikalikan dengan total hari telat pengembalian mobil. <br> Sedangakan untuk harga supir perhari merupakan harga yang dibayar untuk supir perharinya yang nantinya akan dikalikan sesuai berapa hari penyewaan supir. Untuk Mobil yang tidak memiiliki Fitur lepas kunci maka wajib menggunakan supir, sedangkan untuk mobil yang memiliki fitur lepas kunci maka bisa memilih menggunakan jasa supir atau tidak.', '2021-09-30 19:20:55', '2021-11-04 22:19:14', '0', 'Joko Santos'), (13, 15, 'Toyota Avanza', 'B 2245 DAM', 'Hitam', 'Manual', '7 Dewasa', '4 Ransel', 'Pertamax', 2015, 25640, 1, 350000, 350000, 'avanza-hitam.jpg', 'Harga mobil perhari merupakan harga penyewaan mobil dalam satu hari, sedangkan untuk denda mobil perhari merupakan harga denda perhari yang dibebankan kepada pihak penyewa mobil jika telat mengembalikan mobil sesuai tanggal jatuh tempo pengembalian mobil. Harga mobil akan dikalikan dengan total hari penyewaan mobil, begitu juga dengan denda mobil akan dikalikan dengan total hari telat pengembalian mobil. <br> Sedangakan untuk harga supir perhari merupakan harga yang dibayar untuk supir perharinya yang nantinya akan dikalikan sesuai berapa hari penyewaan supir. Untuk Mobil yang tidak memiiliki Fitur lepas kunci maka wajib menggunakan supir, sedangkan untuk mobil yang memiliki fitur lepas kunci maka bisa memilih menggunakan jasa supir atau tidak.', '2021-09-30 19:20:55', NULL, '0', '0'), (14, 15, '<NAME>', 'B 1123 DUD', 'Putih', 'Matic', '7 Dewasa', '4 Ransel', 'Pertalite', 2016, 40020, 0, 350000, 350000, 'avanza-putih.jpg', 'Harga mobil perhari merupakan harga penyewaan mobil dalam satu hari, sedangkan untuk denda mobil perhari merupakan harga denda perhari yang dibebankan kepada pihak penyewa mobil jika telat mengembalikan mobil sesuai tanggal jatuh tempo pengembalian mobil. Harga mobil akan dikalikan dengan total hari penyewaan mobil, begitu juga dengan denda mobil akan dikalikan dengan total hari telat pengembalian mobil. <br> Sedangakan untuk harga supir perhari merupakan harga yang dibayar untuk supir perharinya yang nantinya akan dikalikan sesuai berapa hari penyewaan supir. Untuk Mobil yang tidak memiiliki Fitur lepas kunci maka wajib menggunakan supir, sedangkan untuk mobil yang memiliki fitur lepas kunci maka bisa memilih menggunakan jasa supir atau tidak.', '2021-09-30 19:20:55', '2021-11-03 10:45:39', '0', 'Joko Santos'), (15, 18, '<NAME>', 'P 1234 UI', 'Silver', 'Manual', '10 Dewasa', '8 Koper', 'Solar', 2015, 19762, 1, 700000, 700000, 'car-300921-b3bd9ca18c.jpg', 'Harga mobil perhari merupakan harga penyewaan mobil dalam satu hari, sedangkan untuk denda mobil perhari merupakan harga denda perhari yang dibebankan kepada pihak penyewa mobil jika telat mengembalikan mobil sesuai tanggal jatuh tempo pengembalian mobil. Harga mobil akan dikalikan dengan total hari penyewaan mobil, begitu juga dengan denda mobil akan dikalikan dengan total hari telat pengembalian mobil. <br> Sedangakan untuk harga supir perhari merupakan harga yang dibayar untuk supir perharinya yang nantinya akan dikalikan sesuai berapa hari penyewaan supir. Untuk Mobil yang tidak memiiliki Fitur lepas kunci maka wajib menggunakan supir, sedangkan untuk mobil yang memiliki fitur lepas kunci maka bisa memilih menggunakan jasa supir atau tidak.', '2021-09-30 21:44:05', NULL, '0', '0'), (18, 13, 'Balap Racing', 'B 9998 NMD', 'Merah', 'Manual', '2 Kursi', '2 Bagasi', 'Solar', 2021, 1200, 1, 300000, 300000, 'car-291121-74a695f2e7.jpg', 'Mobil balap asiq', '2021-11-29 00:25:51', NULL, '7', NULL); -- -------------------------------------------------------- -- -- Table structure for table `review` -- CREATE TABLE `review` ( `id_review` int(11) NOT NULL, `id_user` int(11) NOT NULL, `id_mobil` int(11) NOT NULL, `id_transaksi` int(11) NOT NULL, `review` text NOT NULL, `star` int(2) NOT NULL, `status` varchar(1) NOT NULL COMMENT '1 = tampil, 0 = tidak tampil', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `review` -- INSERT INTO `review` (`id_review`, `id_user`, `id_mobil`, `id_transaksi`, `review`, `star`, `status`, `created`, `updated`, `created_by`, `updated_by`) VALUES (4, 4, 18, 34, 'mobilnya kenceng banget, supirnya asik', 5, '1', '2021-11-29 16:32:31', '2021-12-01 21:28:51', '4', '7'), (5, 13, 6, 40, 'ksdjfksjdkj', 5, '0', '2021-12-07 10:11:56', NULL, '13', NULL), (6, 13, 6, 42, 'mantab asiq', 5, '0', '2021-12-07 10:48:36', NULL, '13', NULL), (7, 13, 9, 43, 'mantab joss', 5, '0', '2021-12-07 10:53:49', NULL, '13', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tipe` -- CREATE TABLE `tipe` ( `id_tipe` int(11) NOT NULL, `kode_tipe` varchar(120) NOT NULL, `nama_tipe` varchar(120) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tipe` -- INSERT INTO `tipe` (`id_tipe`, `kode_tipe`, `nama_tipe`, `created`, `updated`, `created_by`, `updated_by`) VALUES (10, 'CVT', 'Convertible', '2021-11-15 14:38:59', '2021-11-29 00:09:43', '7', '7'), (11, 'PU', 'Pick Up', '2021-11-15 14:53:34', NULL, '7', NULL), (12, 'SUV', 'Sport Utility Vehicle', '2021-11-15 14:54:07', NULL, '7', NULL), (13, 'OR', 'Off Roader', '2021-11-15 14:54:24', NULL, '7', NULL), (14, 'MPV', 'Multi Purposes Vehicle', '2021-11-15 14:55:09', NULL, '7', NULL), (15, 'MB', 'Mini Bus / Van', '2021-11-15 14:56:05', NULL, '7', NULL), (16, 'DC', 'Double Cabin', '2021-11-15 15:01:08', NULL, '7', NULL), (18, 'ELF', 'Elef', '2021-11-15 16:39:44', NULL, '7', NULL); -- -------------------------------------------------------- -- -- Table structure for table `transaksi` -- CREATE TABLE `transaksi` ( `id_transaksi` int(11) NOT NULL, `id_user` int(11) NOT NULL, `id_mobil` int(11) NOT NULL, `tgl_rental` varchar(11) NOT NULL, `waktu_penjemputan` varchar(11) NOT NULL, `tgl_kembali` varchar(11) NOT NULL, `alamat_penjemputan` text NOT NULL, `total_harga` int(11) NOT NULL, `pajak` int(11) NOT NULL COMMENT 'total harga * 0.02', `total_harga_supir` int(11) NOT NULL, `total_denda` int(11) NOT NULL, `total_akhir` int(11) NOT NULL, `tgl_pengembalian` date DEFAULT NULL, `status_pengembalian` varchar(50) DEFAULT NULL, `status_rental` varchar(50) NOT NULL COMMENT 'Belum Selesai, Selesai, Gagal, Batal', `bukti_pembayaran` varchar(120) DEFAULT NULL, `status_pembayaran` int(11) NOT NULL, `confirm_by` varchar(50) DEFAULT NULL COMMENT 'orang yang mengkonfirmasi pembayaran', `tgl_cancel` varchar(11) DEFAULT NULL, `status_refund` varchar(120) NOT NULL COMMENT 'Selesai dan Belum Selesai', `bukti_refund` varchar(255) DEFAULT NULL, `total_refund` int(11) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `transaksi` -- INSERT INTO `transaksi` (`id_transaksi`, `id_user`, `id_mobil`, `tgl_rental`, `waktu_penjemputan`, `tgl_kembali`, `alamat_penjemputan`, `total_harga`, `pajak`, `total_harga_supir`, `total_denda`, `total_akhir`, `tgl_pengembalian`, `status_pengembalian`, `status_rental`, `bukti_pembayaran`, `status_pembayaran`, `confirm_by`, `tgl_cancel`, `status_refund`, `bukti_refund`, `total_refund`, `created`, `updated`, `created_by`, `updated_by`) VALUES (33, 4, 9, '2021/12/1', '7:00am', '2021/12/3', 'Kencono, Sragi, Songgon, Banyuwangi', 1350000, 27000, 0, 0, 1377000, NULL, 'Kembali', 'Gagal', NULL, 0, NULL, NULL, 'Belum Selesai', NULL, 0, '2021-11-29 11:43:56', '2021-12-01 20:10:27', '4', '4'), (34, 4, 18, '2021/12/2', '1:00am', '2021/12/3', 'Kencono, Sragi, Songgon, Banyuwangi', 600000, 12000, 600000, 0, 1212000, '2021-12-03', 'Kembali', 'Selesai', 'Struk-291121-e3d305a825.jpg', 1, '<NAME>', NULL, 'Belum Selesai', NULL, 0, '2021-11-30 11:49:56', NULL, '4', NULL), (39, 13, 6, '2021/12/9', '1:00am', '2021/12/13', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 2000000, 40000, 1500000, 0, 0, NULL, 'Kembali', 'Batal', 'Struk-291121-e3d305a825.jpg', 1, 'Arif', '2021/12/05', 'Belum Selesai', NULL, 3540000, '2021-12-05 21:24:17', '2021-12-05 22:45:35', '13', '13'), (40, 13, 6, '2021/12/03', '1:00am', '2021/12/06', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 1200000, 24000, 900000, 400000, 2524000, '2021-12-07', 'Kembali', 'Selesai', 'Struk-291121-e3d305a825.jpg', 1, 'Arif', NULL, 'Belum Selesai', NULL, 0, '2021-12-05 22:56:01', '2021-12-07 10:00:42', '13', '11'), (41, 13, 6, '2021/12/8', '1:00am', '2021/12/10', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 1200000, 24000, 900000, 0, 2124000, NULL, 'Belum Diambil', 'Belum Selesai', NULL, 0, NULL, NULL, 'Belum Selesai', NULL, 0, '2021-12-05 23:08:38', NULL, '13', NULL), (42, 13, 6, '2021/12/14', '1:00am', '2021/12/16', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 1200000, 24000, 900000, 0, 2124000, '2021-12-07', 'Kembali', 'Selesai', 'Struk-071221-1f4a2a592c.jpeg', 1, 'Arif', NULL, 'Belum Selesai', NULL, 0, '2021-12-07 10:36:41', '2021-12-07 10:38:17', '13', '7'), (43, 13, 9, '2021/12/16', '1:30am', '2021/12/17', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 900000, 18000, 600000, 0, 1518000, '2021-12-07', 'Kembali', 'Selesai', 'Struk-071221-02f1a8d797.jpeg', 1, 'Arif', NULL, 'Belum Selesai', NULL, 0, '2021-12-07 10:51:05', '2021-12-07 10:52:22', '13', '7'), (44, 13, 10, '2021/12/16', '12:30am', '2021/12/18', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 1200000, 24000, 900000, 0, 2124000, '2021-12-07', 'Kembali', 'Selesai', 'Struk-071221-6f66124ced.jpeg', 1, 'Arif', NULL, 'Belum Selesai', NULL, 0, '2021-12-07 10:55:53', '2021-12-07 10:57:31', '13', '7'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `id_user` int(11) NOT NULL, `nama` varchar(120) NOT NULL, `username` varchar(120) NOT NULL, `email` varchar(100) NOT NULL, `alamat` varchar(120) NOT NULL, `gender` varchar(20) NOT NULL, `no_telepon` varchar(20) NOT NULL, `no_ktp` varchar(50) NOT NULL, `password` varchar(120) NOT NULL, `avatar` varchar(255) NOT NULL, `foto_ktp` varchar(255) NOT NULL, `role` int(11) NOT NULL COMMENT '1 = Admin, 2 = Customer', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `created_by` varchar(11) DEFAULT NULL, `updated_by` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`id_user`, `nama`, `username`, `email`, `alamat`, `gender`, `no_telepon`, `no_ktp`, `password`, `avatar`, `foto_ktp`, `role`, `created`, `updated`, `created_by`, `updated_by`) VALUES (4, '<NAME>', 'jokos', '<EMAIL>', 'Jl. Satu Pekanbaru', 'L', '6285707745485', '215654532767', 'e5bc62b374076985e23e4f588466ae9c', 'avatar-301121-4549314299.jpg', 'ktp-301121-82fbfaeccf.jpg', 2, '2021-09-30 19:23:12', '2021-12-01 21:23:38', '4', '4'), (7, 'Arif', 'admin', '<EMAIL>', '<PASSWORD>', 'L', '6282244922833', '1764578345', '21232f297a57a5a743894a0e4a801fc3', 'default.jpg', 'ktp-221121-0f58150553.jpg', 1, '2021-09-30 19:23:12', '2021-11-29 00:06:56', '0', '7'), (11, '<NAME>', 'irvan', '<EMAIL>', 'Kencono, Sragi, Songgon, Banyuwangi', 'L', '082244922833', '351019230698', '2467d3744600858cc9026d5ac6005305', 'avatar-291121-bf07d96d01.jpg', 'ktp-231121-a97489eabb.jpeg', 1, '2021-11-29 11:27:18', NULL, '11', NULL), (13, '<NAME>', 'oktavianoandy', '<EMAIL>', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 'L', '085766566560', '3508040210990002', 'e5bc62b374076985e23e4f588466ae9c', 'avatar-011221-3abe4082b7.jpg', 'ktp-011221-b90f66cc72.png', 2, '2021-12-01 20:30:02', NULL, 'oktavianoan', NULL), (14, '<NAME>', 'danis', '<EMAIL>', 'Jl. Tirto Utomo Gg.8 No.2 , Kec. Dau, Malang, Jawa Timur,', 'L', '085766566560', '3508040210990009', 'e5bc62b374076985e23e4f588466ae9c', 'avatar-011221-61dee89961.jpg', 'ktp-011221-67c99ca313.png', 2, '2021-12-01 21:32:07', NULL, '7', NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `contact` -- ALTER TABLE `contact` ADD PRIMARY KEY (`id_contact`), ADD KEY `id_user` (`id_user`); -- -- Indexes for table `fitur` -- ALTER TABLE `fitur` ADD PRIMARY KEY (`id_fitur`), ADD KEY `id_mobil` (`id_mobil`); -- -- Indexes for table `mobil` -- ALTER TABLE `mobil` ADD PRIMARY KEY (`id_mobil`), ADD KEY `id_tipe` (`id_tipe`); -- -- Indexes for table `review` -- ALTER TABLE `review` ADD PRIMARY KEY (`id_review`), ADD KEY `id_user` (`id_user`), ADD KEY `id_transaksi` (`id_mobil`), ADD KEY `id_transaksi_2` (`id_transaksi`); -- -- Indexes for table `tipe` -- ALTER TABLE `tipe` ADD PRIMARY KEY (`id_tipe`); -- -- Indexes for table `transaksi` -- ALTER TABLE `transaksi` ADD PRIMARY KEY (`id_transaksi`), ADD KEY `id_user` (`id_user`,`id_mobil`), ADD KEY `id_mobil` (`id_mobil`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id_user`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `contact` -- ALTER TABLE `contact` MODIFY `id_contact` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `fitur` -- ALTER TABLE `fitur` MODIFY `id_fitur` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `mobil` -- ALTER TABLE `mobil` MODIFY `id_mobil` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `review` -- ALTER TABLE `review` MODIFY `id_review` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `tipe` -- ALTER TABLE `tipe` MODIFY `id_tipe` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `transaksi` -- ALTER TABLE `transaksi` MODIFY `id_transaksi` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- Constraints for dumped tables -- -- -- Constraints for table `contact` -- ALTER TABLE `contact` ADD CONSTRAINT `contact_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `fitur` -- ALTER TABLE `fitur` ADD CONSTRAINT `fitur_ibfk_1` FOREIGN KEY (`id_mobil`) REFERENCES `mobil` (`id_mobil`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `mobil` -- ALTER TABLE `mobil` ADD CONSTRAINT `mobil_ibfk_1` FOREIGN KEY (`id_tipe`) REFERENCES `tipe` (`id_tipe`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `review` -- ALTER TABLE `review` ADD CONSTRAINT `review_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `review_ibfk_2` FOREIGN KEY (`id_mobil`) REFERENCES `mobil` (`id_mobil`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `review_ibfk_3` FOREIGN KEY (`id_transaksi`) REFERENCES `transaksi` (`id_transaksi`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `transaksi` -- ALTER TABLE `transaksi` ADD CONSTRAINT `transaksi_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `transaksi_ibfk_2` FOREIGN KEY (`id_mobil`) REFERENCES `mobil` (`id_mobil`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>1000+ -- 2019-05-08T08:51:29.034 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,576249,0,541124,541447,17,540962,'Access',TO_TIMESTAMP('2019-05-08 08:51:28','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','Y','N','Y','N','Access',10,TO_TIMESTAMP('2019-05-08 08:51:28','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:29.037 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541447 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:29.043 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541447 ; -- 2019-05-08T08:51:29.044 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541447, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541393 ; -- 2019-05-08T08:51:29.139 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,576702,0,541124,541448,17,540992,'PrincipalType',TO_TIMESTAMP('2019-05-08 08:51:29','YYYY-MM-DD HH24:MI:SS'),100,'G','D',0,'Y','N','Y','N','Y','N','Typ',20,TO_TIMESTAMP('2019-05-08 08:51:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:29.141 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541448 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:29.144 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541448 ; -- 2019-05-08T08:51:29.145 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541448, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541443 ; -- 2019-05-08T08:51:29.235 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,Description,DisplayLogic,EntityType,FieldLength,Help,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,138,0,541124,541449,30,540401,'AD_User_ID',TO_TIMESTAMP('2019-05-08 08:51:29','YYYY-MM-DD HH24:MI:SS'),100,'User within the system - Internal or Business Partner Contact','@PrincipalType@=U','D',0,'The User identifies a unique user in the system. This could be an internal user or a business partner contact','Y','N','Y','N','Y','N','Ansprechpartner',30,TO_TIMESTAMP('2019-05-08 08:51:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:29.236 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541449 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:29.240 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541449 ; -- 2019-05-08T08:51:29.241 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541449, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541394 ; -- 2019-05-08T08:51:29.345 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DisplayLogic,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,576186,0,541124,541450,30,'AD_UserGroup_ID',TO_TIMESTAMP('2019-05-08 08:51:29','YYYY-MM-DD HH24:MI:SS'),100,'@PrincipalType@=G','D',0,'Y','N','Y','N','Y','N','Nutzergruppe',40,TO_TIMESTAMP('2019-05-08 08:51:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:29.346 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541450 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:29.349 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541450 ; -- 2019-05-08T08:51:29.350 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541450, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541395 ; -- 2019-05-08T08:51:58.680 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,576249,0,541125,541451,17,540962,'Access',TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100,'D',1,'Y','N','Y','N','Y','N','Access',10,TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:58.681 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541451 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:58.684 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541451 ; -- 2019-05-08T08:51:58.685 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541451, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541396 ; -- 2019-05-08T08:51:58.791 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,576702,0,541125,541452,17,540992,'PrincipalType',TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100,'G','D',0,'Y','N','Y','N','Y','N','Typ',20,TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:58.795 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541452 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:58.800 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541452 ; -- 2019-05-08T08:51:58.801 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541452, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541444 ; -- 2019-05-08T08:51:58.910 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,Description,DisplayLogic,EntityType,FieldLength,Help,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,138,0,541125,541453,30,540401,'AD_User_ID',TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100,'User within the system - Internal or Business Partner Contact','@PrincipalType@=U','D',0,'The User identifies a unique user in the system. This could be an internal user or a business partner contact','Y','N','Y','N','Y','N','Ansprechpartner',30,TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:58.913 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541453 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:58.918 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541453 ; -- 2019-05-08T08:51:58.919 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541453, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541397 ; -- 2019-05-08T08:51:59.025 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DisplayLogic,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,576186,0,541125,541454,30,'AD_UserGroup_ID',TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100,'@PrincipalType@=G','D',0,'Y','N','Y','N','Y','N','Nutzergruppe',40,TO_TIMESTAMP('2019-05-08 08:51:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-05-08T08:51:59.027 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_Para_ID=541454 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID) ; -- 2019-05-08T08:51:59.032 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541454 ; -- 2019-05-08T08:51:59.034 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Para_Trl (AD_Process_Para_ID, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated) SELECT 541454, AD_Language, AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated, UpdatedBy, Name, Description, Help, IsTranslated FROM AD_Process_Para_Trl WHERE AD_Process_Para_ID = 541398 ;
DROP DATABASE IF EXISTS tracker_DB; CREATE DATABASE tracker_DB; USE tracker_DB; CREATE TABLE department ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL ); CREATE TABLE role ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, title VARCHAR(30) NOT NULL, salary DECIMAL NOT NULL, department_id INT -- FOREIGN KEY (department_id) REFERENCES department(id) ); CREATE TABLE employee ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name VARCHAR(30) NOT NULL, last_name VARCHAR(30) NOT NULL, role_id INT NOT NULL, manager_id INT -- FOREIGN KEY (role_id) REFERENCES role(id), -- FOREIGN KEY (manager_id) REFERENCES employee(id) ); INSERT INTO department (name) Values ('Finance'), ('Sales'), ('Human Resources'), ('Operations'); Insert INTO role (title, salary, department_id) VALUES ('VP of Finance', 200000, 1), ('VP of Operations', 175000, 2), ('Benefits Specialist', 55000, 3), ('Logistics Specialist', 70000, 4); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ('Peyton', 'Manning', 1, null), ('Andrew', 'Luck', 2, null), ('Quenton', 'Nelson', 3, 1), ('Marvin', 'Harrison', 4, 2); SELECT * FROM tracker_db.department; SELECT * FROM tracker_db.role; SELECT * FROM tracker_db.employee;
<reponame>wanghaonanlpc/Leetcode-1<filename>database/_570.sql select Name from Employee as Name where Id in (select ManagerId from Employee group by ManagerId having count(*) >= 5) ;
<reponame>utPLSQL/utPLSQL-v2-v3-bridge set heading off set feedback off def component = &&1 exec dbms_output.put_line('Installing component '||upper(regexp_substr('&&component','\/(\w*)\.',1,1,'i',1))); @@&&component show errors exec dbms_output.put_line('--------------------------------------------------------------'); undef component
<reponame>alytics/pg_partman<gh_stars>0 -- ########## TIME STATIC TESTS ########## -- Test p_start_partition parameter \set ON_ERROR_ROLLBACK 1 \set ON_ERROR_STOP true BEGIN; SELECT set_config('search_path','partman, public',false); SELECT plan(77); CREATE SCHEMA partman_test; CREATE SCHEMA partman_retention_test; CREATE TABLE partman_test.time_static_table (col1 int primary key, col2 text, col3 timestamptz NOT NULL DEFAULT now()); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(1,10), CURRENT_TIMESTAMP); SELECT create_parent('partman_test.time_static_table', 'col3', 'time-static', 'daily', p_start_partition := (CURRENT_TIMESTAMP - '10 days'::interval)::text); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'5 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'5 days'::interval, 'YYYY_MM_DD')||' does exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'6 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'6 days'::interval, 'YYYY_MM_DD')||' does exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'7 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'7 days'::interval, 'YYYY_MM_DD')||' does exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'8 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'8 days'::interval, 'YYYY_MM_DD')||' does exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'9 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'9 days'::interval, 'YYYY_MM_DD')||' does exists'); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'10 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'10 days'::interval, 'YYYY_MM_DD')||' does exists'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'11 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'11 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'5 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'5 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'6 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'6 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'7 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'7 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'8 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'8 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'9 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'9 days'::interval, 'YYYY_MM_DD')); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'10 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP-'10 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT partition_data_time(''partman_test.time_static_table'')::int', ARRAY[10], 'Check that partitioning function returns correct count of rows moved'); SELECT is_empty('SELECT * FROM ONLY partman_test.time_static_table', 'Check that parent table has had data moved to partition'); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table', ARRAY[10], 'Check count from parent table'); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD')); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(11,20), CURRENT_TIMESTAMP + '1 day'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(21,25), CURRENT_TIMESTAMP + '2 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(26,30), CURRENT_TIMESTAMP + '3 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(31,37), CURRENT_TIMESTAMP + '4 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(40,49), CURRENT_TIMESTAMP - '1 day'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(50,70), CURRENT_TIMESTAMP - '2 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(71,85), CURRENT_TIMESTAMP - '3 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(86,100), CURRENT_TIMESTAMP - '4 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(101,110), CURRENT_TIMESTAMP - '5 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(111,120), CURRENT_TIMESTAMP - '6 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(121,130), CURRENT_TIMESTAMP - '7 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(131,140), CURRENT_TIMESTAMP - '8 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(141,150), CURRENT_TIMESTAMP - '9 days'::interval); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(151,160), CURRENT_TIMESTAMP - '10 days'::interval); SELECT partition_data_time('partman_test.time_static_table', p_batch_count := 20); SELECT is_empty('SELECT * FROM ONLY partman_test.time_static_table', 'Check that parent table has had no data inserted to it'); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD'), ARRAY[5], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD'), ARRAY[5], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD'), ARRAY[7], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD'), ARRAY[21], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD'), ARRAY[15], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD'), ARRAY[15], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'5 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'5 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'6 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'6 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'7 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'7 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'8 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'8 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'9 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'9 days'::interval, 'YYYY_MM_DD')); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP-'10 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP-'10 days'::interval, 'YYYY_MM_DD')); UPDATE part_config SET premake = 5 WHERE parent_table = 'partman_test.time_static_table'; SELECT run_maintenance(); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(161,170), CURRENT_TIMESTAMP + '5 days'::interval); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD')); SELECT is_empty('SELECT * FROM ONLY partman_test.time_static_table', 'Check that parent table has had no data inserted to it'); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD')); UPDATE part_config SET premake = 6 WHERE parent_table = 'partman_test.time_static_table'; SELECT run_maintenance(); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(171,180), CURRENT_TIMESTAMP + '6 days'::interval); SELECT is_empty('SELECT * FROM ONLY partman_test.time_static_table', 'Check that parent table has had no data inserted to it'); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table', ARRAY[178], 'Check count from parent table'); SELECT results_eq('SELECT count(*)::int FROM partman_test.time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD'), ARRAY[10], 'Check count from time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD')); SELECT has_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'7 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'7 days'::interval, 'YYYY_MM_DD')||' exists'); SELECT col_is_pk('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD'), ARRAY['col1'], 'Check for primary key in time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD')); INSERT INTO partman_test.time_static_table (col1, col3) VALUES (generate_series(200,210), CURRENT_TIMESTAMP + '20 days'::interval); SELECT results_eq('SELECT count(*)::int FROM ONLY partman_test.time_static_table', ARRAY[11], 'Check that data outside trigger scope goes to parent'); SELECT drop_partition_time('partman_test.time_static_table', '3 days', p_keep_table := false); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'4 days'::interval, 'YYYY_MM_DD')||' does not exist'); UPDATE part_config SET retention = '2 days'::interval WHERE parent_table = 'partman_test.time_static_table'; SELECT drop_partition_time('partman_test.time_static_table', p_retention_schema := 'partman_retention_test'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT has_table('partman_retention_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'3 days'::interval, 'YYYY_MM_DD')||' got moved to new schema'); SELECT undo_partition_time('partman_test.time_static_table', 20, p_keep_table := false); SELECT results_eq('SELECT count(*)::int FROM ONLY partman_test.time_static_table', ARRAY[99], 'Check count from parent table after undo'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'1 day'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'2 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'3 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'4 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'5 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP+'6 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'1 day'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT hasnt_table('partman_test', 'time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD'), 'Check time_static_table_p'||to_char(CURRENT_TIMESTAMP-'2 days'::interval, 'YYYY_MM_DD')||' does not exist'); SELECT * FROM finish(); ROLLBACK;
<reponame>nowucca/SimpleAffableBean<filename>src/main/db/sampleData.sql -- -- BSD 3-Clause License -- -- Copyright (C) 2018 <NAME> <<EMAIL>> -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- -- * Redistributions in binary form must reproduce the above copyright notice, -- this list of conditions and the following disclaimer in the documentation -- and/or other materials provided with the distribution. -- -- * Neither the name of the copyright holder nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- Database: `simpleaffablebean` -- -- -------------------------------------------------------- -- -- Sample data for table `category` -- INSERT INTO `category` (name) VALUES ('dairy'),('meats'),('bakery'),('fruit & veg'); -- -- Sample data for table `product` -- INSERT INTO `product` (`name`, price, description, category_id) VALUES ('milk', 170, 'semi skimmed (1L)', 1001); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('cheese', 239, 'mild cheddar (330g)', 1001); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('butter', 109, 'unsalted (250g)', 1001); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('free range eggs', 176, 'medium-sized (6 eggs)', 1001); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('organic meat patties', 229, 'rolled in fresh herbs<br>2 patties (250g)', 1002); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('parma ham', 349, 'matured, organic (70g)', 1002); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('chicken leg', 259, 'free range (250g)', 1002); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('sausages', 355, 'reduced fat, pork<br>3 sausages (350g)', 1002); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('sunflower seed loaf', 189, '600g', 1003); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('sesame seed bagel', 119, '4 bagels', 1003); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('pumpkin seed bun', 115, '4 buns', 1003); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('chocolate cookies', 239, 'contain peanuts<br>(3 cookies)', 1003); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('corn on the cob', 159, '2 pieces', 1004); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('red currants', 249, '150g', 1004); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('broccoli', 129, '500g', 1004); INSERT INTO `product` (`name`, price, description, category_id) VALUES ('seedless watermelon', 149, '250g', 1004); -- (without description) -- INSERT INTO `product` (`name`, price, category_id) VALUES ('milk', 170, 1); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('cheese', 239, 1); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('butter', 109, 1); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('free range eggs', 176, 1); -- -- INSERT INTO `product` (`name`, price, category_id) VALUES ('organic meat patties', 229, 2); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('parma ham', 349, 2); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('chicken leg', 259, 2); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('sausages', 355, 2); -- -- INSERT INTO `product` (`name`, price, category_id) VALUES ('sunflower seed loaf', 189, 3); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('sesame seed bagel', 119, 3); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('pumpkin seed bunbun', 115, 3); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('chocolate cookies', 239, 3); -- -- INSERT INTO `product` (`name`, price, category_id) VALUES ('corn on the cob', 159, 4); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('red currants', 249, 4); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('broccoli', 129, 4); -- INSERT INTO `product` (`name`, price, category_id) VALUES ('seedless watermelon', 149, 4); -- -- Sample data for table `customer` -- -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '605434778', 'Široká 45', '1', '4224311324421331'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '226884562', 'Ruská 11', '2', '4321123443211234'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '224517995', 'Kostelní 83', '7', '3311332222444411'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '224517995', 'Letohradská 18', '7', '1111222244443333'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '204888845', 'Dušní 87', '1', '2222333311114444'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '728331184', 'Krkonošská 9', '3', '3111444222212334'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '737610775', 'Plzeňská 131', '5', '2244443321123311'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '734556133', 'Prokopská 60', '1', '3333111144442222'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '606338909', 'Ve Střešovičkách 49', '6', '1111222233334444'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '222756448', 'Družstevní 77', '4', '4444222233331111'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '608995383', 'Pařížská 89', '1', '2222444411113333'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '413443727', 'Valečovská 20', '9', '2244331133114422'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '733556813', 'Na hájku 3', '8', '3333444422221111'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '602680793', 'Kodaňská 78', '10', '5490123456789128'); -- INSERT INTO `customer` (`name`, email, phone, address, city_region, cc_number) VALUES ('<NAME>', '<EMAIL>', '605449336', 'Žerotínova 64', '3', '4539992043491562'); -- -- Sample data for table `customer_order` -- -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1650, '2010-05-14 18:00:11.0', 15, 285434339); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1611, '2010-05-14 17:56:23.0', 14, 428278565); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (2600, '2010-05-14 17:51:37.0', 13, 503113888); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1763, '2010-05-14 17:47:46.0', 12, 916407556); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1724, '2010-05-14 17:45:21.0', 11, 189191209); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1557, '2010-05-14 17:43:12.0', 10, 274027361); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (449, '2010-05-14 18:04:09.0', 9, 250764732); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1970, '2010-05-14 18:10:09.0', 8, 766244032); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (3749, '2010-05-14 18:23:08.0', 7, 53395157); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1890, '2010-05-14 18:25:56.0', 6, 818358116); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1892, '2010-05-14 18:32:03.0', 5, 244956320); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1766, '2010-05-14 18:35:07.0', 4, 868642371); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1022, '2010-05-14 18:40:38.0', 3, 344549009); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1216, '2010-05-14 18:51:58.0', 2, 475644436); -- INSERT INTO `customer_order` (amount, date_created, customer_id, confirmation_number) VALUES (1075, '2010-05-14 18:56:13.0', 1, 247455344); -- -- Sample data for table `customer_order_line_item` -- -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (15, 1, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (15, 15, 3); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (15, 3, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (14, 5, 4); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (13, 13, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (13, 4, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (13, 10, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (13, 16, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (12, 1, 3); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (12, 12, 4); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (11, 13, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (11, 2, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (11, 9, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (11, 14, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (11, 16, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (11, 10, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (10, 13, 10); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (9, 8, 5); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (9, 7, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (9, 6, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (9, 5, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (8, 8, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (8, 15, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (8, 11, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (8, 9, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (8, 14, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (8, 16, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (7, 16, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (6, 15, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (6, 9, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (6, 4, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (6, 6, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (6, 3, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (5, 15, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (5, 7, 5); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (4, 8, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (4, 1, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (4, 11, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (4, 14, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (4, 4, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (4, 16, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (3, 1, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (3, 8, 6); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 13, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 5, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 15, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 2, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 11, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 16, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (2, 4, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (1, 12, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (1, 2, 2); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (1, 13, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (1, 10, 1); -- INSERT INTO `customer_order_line_item` (customer_order_id, product_id, quantity) VALUES (1, 8, 1);
INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZT55ESKL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40FYCMIM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HMIVLPYF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BKW585', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TOHLAR50', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BDH94LI5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T26ZCJWU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '23TYOFO2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '16G3XSCF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '607X16JP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '26QKOS42', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '94XEFH3C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DOL466QW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QJ3Q9XIZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70RVWCR6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80O4H32C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509YOB51', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60MJ7E22', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UBB88437', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E45DZR5U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50FHLWE2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3PRBLITP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TSES6XWG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6XJF35N3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50U3DORV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SRFZDAHD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'gupqk6vz', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SL4UNXGL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CJ2UMRC7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '601RLAUI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QGWWCRWF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30SOL10SEP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZLWZQ7PW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QK5WQTO3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QJI4E3SI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GLAUB5MG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509HMBW8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Q3IOOR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y26ZXCAO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HP43BIC2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y6PL3TU6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3JGBU7GH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WM7PC2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8Z3LJBFK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NBQOY8KG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LS7MM3UK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60S8U5DY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70210913', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IL6AVT9N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XJFILZM2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60KY7UY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AX83QM8J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507RJK2Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70KESXWA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50I2S8IO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B5TZYWGW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50654L2E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZVTH4PBF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XIB73EU2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XFBFU4CL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IJ3MON', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50YTK1AI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4ELE74IW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RTOYU2Z9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40GHCZKK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8JR3RL44', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4W82SAIX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6WOKAXHC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3GSQ3QDQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '429SN6RP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BMFY4FEC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55FCLQKV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZMQMCM46', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '61YHOQRT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40ZMS51R', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QK6QQYDI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9KX73SAE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4SZG6NSS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9LFKX4J4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60TRAD32', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GIYE5BCQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60OQ312T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50RLVXAH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'O8PRXPA6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60SKZQ7F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'J7CGST7C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5095S9KV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YJ8DTJ3S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6523M2IH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LYS84QI9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CW63VKMJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZELN24R3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '807UZN6O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55FMF5JA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LAOSO3ZU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60TYAWDA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '709ONJR6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LYLL6J24', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ZA8KEC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '58FMDUQ3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50XJ7CJ7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AXWXPTGY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4BU7JYK4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45P9FPT2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YIUYYDUN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZDTO4B3P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TWQIIL5O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TIZED5KQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3MDF3C8J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PDARD573', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80QZMJNP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '501YCLWH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UX6L98', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E6HSV87S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60JXD45P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30Y4RH1S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80IRJHVP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50V7J2C9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70D5LOT3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JMEOF2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ZGQGZB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FD2CJAVJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5Z6MKSNM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'M7ZV2QET', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JDBH89ZT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ORN25NPB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B2MAFW5D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55I6AIKR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T67GI9DQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60MDW99V', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '502IBLK4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75JLLIB4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6731061H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VH5XNKM9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JWPJRRT5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VCR8UG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QGI4LY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4DWA224S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U2AV9MPN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VWG6T75S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RZF8BSGE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '47GVA6MN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50R7ENG3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CAB2021D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LFOTS2EP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80ESY5Y7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7VPBJ877', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IMOLI5COLORS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MRDSM52C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50PPT21C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '77SUKFAP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WVYIBJQ9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '69249K7X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L5X2IVEQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50NHAM1Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55HOS7UP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9VIMUWEG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '405OQGTC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5033PBSY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ITBDO6CM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BU76UB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40E17V2L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7RUCGC3R', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '689N53RY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PKKGG7D6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4XOCR9XS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '73JP2A1F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FOLREVKD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505ZTWA9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50HZDTNN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507CO56A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JITWNIV2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '553TQR56', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40YLD96K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5082A3QQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '35X1MMOQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50RCISZE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5LCM35UE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IQ5YCS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MM50CACTUS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6QI8PP69', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50M435RM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZNHXPGT8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NJ3EC8QF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '406VTRG8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40Q6KG5T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QJEEYF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50TF9K93', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8NBQIIFT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '58TBAVPB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NDN31US50', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z3CAR86X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65V8BD2Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QILWNY82', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GMQKRCIY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'W53SSC5D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5I37696Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'S64YD4KS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SG5RNL98', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5QRP8Z8H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '605050MB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NCN85U67', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40F9J7IE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70QOBQQM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7014SQ5N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YHXI2OWM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60SZQVFE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TLICX5ZU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '553I2J65', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CFMB9UZH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OPCO9YF7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NZPFFDNU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50FP2SIN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L6WCYFJS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40SEAJ9D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50J5GOOO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '429XQ5RN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6YVG7ZE9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40MHM7XP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50RYIAIA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UMM5Q3OS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DZGTJGVM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50EHYLU4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TOPSESTD26', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BC2455D7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5V2422VF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U69IQX4B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'V54TCL8H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3I7ZVUC3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BHPOQTDM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WNBL17', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50O7SF3A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5084NGTB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45LDO977', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CR3GT5RU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40YLZBD1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7JYZE86V', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DHU9UNFP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NOSI3U3M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '304PU89Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FZLRHB8E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40G9Q6WR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XG5ARTM4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5553K4BS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50YQ3WX4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60L2FN2G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60PV1BN3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8A9OAX6S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50L9YP84', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50K3GE93', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RT7486VN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40B5EWN4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50DTD8BJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505V6ELV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RN4L6K92', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'I6ZL8SWV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QYBAAA7I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SYJ9RPO5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WBU39EHE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5XC9J6IA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'I7T4OEHC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IEBX2E25', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60PZH6HW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'S3XL6Y3F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BRPSBT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'POPAEU3L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JH8Z9U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9DFLGVW5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EO7PTJAH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZVQBKX5W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80EYNDEW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XGAU6ECS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MJC28GTR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E369RGVP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2K2JPAPY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505KCYFE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60VG4QKN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UZQQNXQC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T9GRG5FJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FQQJTCXS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '409RYOBG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YQ2PLARX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VHKPCP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '77JOSINY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SA6UDIUX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '558FTKV9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80TIODB6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'D7RB3VOR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SHMRM9DO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50R3KEKW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60X7ONDP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '23OO9MZL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40SK2KOG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '703YGCY4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60RUZVTY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2D6K7R60', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '404G9NZF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LQDTC83T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60JX2151', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UDOWAQ6I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6N74FGC8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZUVCM45N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50LOVINPET', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75CYTGII', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RQPJBY6M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2ICCBFNC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60UQQJYJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50M82WUB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IHFLW9RS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50PZJZWB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7ATJRHVI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507Q3BWS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70OF2JS1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IX4EAVXF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JPAJLKMX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40JKE0NS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'pm6l2o3w', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AT2LGQR5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2DEDDWS7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40G3B4H8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50PUWSCA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5065KWYC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60BTEJFC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SJJUKA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65A9WF3U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5RJ6ZYEU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70FG4YFQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TP6SUC7A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506N7HBV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '459QGPWY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LS6AZWID', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506S7PMM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UR7TL4RB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JYHTXQB9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZGYZKATA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50OQPU3U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MBP88V9Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JUXS2A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ZLS65W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ACRACK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JR8XHQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PBRR2BS6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JO3S4GPP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50D8IWCZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2R2KVUEM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7Q5PQAMP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YGYXQ25U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WWCTAOSM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NWI3DOSC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZB3CHRDB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7AIKEUXI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65KYGWMU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MMJJSNOK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DV2Z9ZM5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60shortwigs', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WIT7QQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KJ7V85GU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EUAA9Y78', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WGKUKLAF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4ZX8KG8S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '69IDVZRE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50534Z37', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'N5FEGSWL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IJKZ3J8P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '707MPJHK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OPLJRL8P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65MJEW4P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SVB7C8C9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YZTJFZ2M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QN8KPPTK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '502U4VVY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FJMWHB5C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4L2JYHLB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '501H2TED', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UTMUP2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DN64NKG8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AMW9I7TC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40WFO47Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F3LMF75E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XTNCZKSX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503UDL6X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '603YES2R', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40XDMKQX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DZJZO697', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SILF6RRD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WRY6RMC8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TUJZGBJG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IY2GWQCF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HXT367V7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CZS4Z84H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8VLDER7L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '10QUAZJO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WFBHS7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B58O4S9W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SIN9IKP8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40ONUSD8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y5UFKDKL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BBTGZ5VE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GZ83UTIX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QNFCO9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '222AA8YY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7JLUGB88', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '444FI9YH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LQ9L5LI2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50MM4973', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EXTRA25', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'STJ3PWUA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QCQ552SE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HY97EMNV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65J4DLGP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z5M9CQRS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '56493HIY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3V2XS6EW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50K35IB5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'A4MEQWLH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50HLVKLR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZBNH4ZSP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'G9YPAWPW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E8JBLDIC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WMZCYXY263', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KNJATS5U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50DBZG9A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SZYB05', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508BOXJK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LE8FEJ63', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'V3XU8UH2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LHUMCEBC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '72KBU93U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'A6ACHNSU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30HG2TLS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60141CCW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7X5C7QNL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SCDV09', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60A1V59U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MK3SGO67', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45K4XTGH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GRAVITYCHAIRS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40IGIUO1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507XGE9W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65O11YKN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5532PP5Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ND5EY67Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50I93UGV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BGC57G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DAFSMZKW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WOVVGA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '78TBA9VR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IQVNDQ76', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '608A1EBD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7AIOHOBA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NQOXJAAR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6BRGVJZD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3HQ4JMBG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '401Y4Q6G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OKQ27UFO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60PLANTSTAND', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SKVIZQ4O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BHG4KMSV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'M6M4HSZK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50LMMNYI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60DB1V2T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LMWD3S2X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TQL7QMGW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UIQGQ2LU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z28VW462', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SKGT8J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZCKK4CKZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U4VCBUIS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '20DB8T4A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UTWBXGAV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40QD1JQE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NZBYM4TT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50MQ1FM1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZH68BVLS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TGFMH5HG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50I7B9R3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '559AMK8R', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MWSZ43Y2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '20C5HRI8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40RAV4JA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QYFNSCRJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VAO5IU93', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80E8ZFTG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60JI5NAK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XL95FBR8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3I59YPXL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OU3EWDMQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RKAAS7W2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q8Z6D28T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ARAGCCHB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DXTA4N69', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JFLEC4FG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B73JKQC9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50KO98WR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5T8KYCWB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8M6IOO6H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PECUYZ9M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30EFI8XL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70PBCDU3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VO4TN9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LGCFUI8G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '05HKZ6NE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'A89BOXT5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BYOBL36Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40HHXJ196', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '208ED3F3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40AC24AC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AQ6V8HGA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EVYJZJIV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '704CB3KT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TSM228UT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7056ROVM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50S3KI61', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '605WA2Q5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MSI987D6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DQ2UTJ94', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JYW24W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2QJLM5EL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55IPFW1U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ZS3ZGL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HOBCV2PU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40XTI28M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60GIG488', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8W55EWWL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60YJVAYM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509F2PC9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6NBXVGM5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40NYYQC6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FXWVG7I5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5094H5YB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55YWXVK1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40CS8FFK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DMJHVQ5K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'V2RYOYW2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LOW50OFF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '42TOPSTYPE09', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '56ZNRZ25', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9JXFI8LB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8XYUXVLO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '35UQJKBO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IHPDX3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Q8WBWK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '808GJGU7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50OZKHS9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60MVPL5L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LTYZKJOK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506UQ5NE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60DLETGN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60796BXL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LUWFR66D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70ME8RYP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '99HC9XIS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZB3UKZT9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ZIYK56', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'D3AYCG9P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UH667MSE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509IWQRI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55KQVJPD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z3MXIIWR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'I7PJV5T3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60CQE6PQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '504G2NLJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SYXOIZH2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Z8B8WQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80174F8T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '706BFJBR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GJ4F2FU2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40T6J9VS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EEY65P87', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZG3AM6IK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7FX8CUQR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '53EZP2CM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RD7CKWSX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9TJOW7Q7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5082UTPN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '316M9FNR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XFNIHRL8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '601IXWLX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YCJMI4PV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LWCYE4VI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PWKYSZEA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3OAOJQU2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60L7HOQN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50LHPFWI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50J9YIQY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JS595S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '823YHQTA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30CN036T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50GCCPR7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '401RQD4I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'X5SZ6PVY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8VYU94YC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70UPWR4C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'M7O4N2UL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7MMRHPLW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VV3IABNO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'A6GUUAX8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65ZV11TO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XMCEEVEK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8CXQHN9I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BIMFBK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70TOLUYK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50LFJXFB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NQINEBNS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'N5M47MMN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FD3UP3LK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JOOI66QK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NDALY46Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40174T3Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IDSWQNMP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TMMY2CAT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LHHS8O3S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SBVRW5ON', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z8UL2QKC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VM2SYUQV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '20E6FU27', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JYL1ZW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DG6SA9B7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WQK8RGP8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FU8XZFYQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60LZFVWL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '20VYN1OD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55473W8A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8BPN4UGF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GPOPKBEK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80Y9P76B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SXVUM5IB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HEROAD365', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MVZHO6CA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SKZX6B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YQAU7DCC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PPQWBS7H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509MI9EY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WY444CSA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JX256N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '659TYK85', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QEEUS36O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50N8CH1M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ALZMRH22', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80MECOFZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '56MUB52D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NCBAJOOT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L8D2HOQE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40A1J72J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AWNING', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KTZGQSAX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7HVORNN9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZY4M7IDK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DJTI9CUB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KYQLPGRB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '78VNK4ZV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '488GDV2T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '98SSH7L8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UC8BU955', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6RGYQDY6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50A7M6G8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'N37BJWR8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VTKPQPGX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3GWSFNJ6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SWHIUPYG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UXFPYK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50G99C6Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75KGOMW6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DRGGC2OU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SMMN32V7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KOGBSNP4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QNVTATP8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PPR5X895', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4EWWKS76', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'J3H8TSEN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8URJN865', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JXXVLS9M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50XDLY1Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BHGXRN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GTJF2G2I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2EIWCC8V', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MPO8O2Z3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TPD88W5O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60U2NGXC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BCP19', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QDX9NZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ML5NVVHK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QTOAWSMI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QIT2FXB9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WQV2SYIU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SCARY15', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KXP62XD5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XL4ZXZKH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RTR927PM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BF2758GM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F93DZACU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60QBEVXQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60TSFIPI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '702UQQXO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PPAFJHWH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VL2NMO5L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HBLQHX76', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SYHR3L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HU3WYUZF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NFL9YZUI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y5KSWZCN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KUI6LWXI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BSQZPWD6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40N1PYRF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'N9UXVHQM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5MREEF8A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70V9ATUT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DS8B9GB4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4515WUSM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '64NBD8ET', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AN7OL2YI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50S27FPE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B4SIGXAP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506HODFW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40UNGT3P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UHBGMK3I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60ZUYD89', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L6HH5JRK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2014K7QV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MLK2RGUW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40UGYWRK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L7XUMFBS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MAXRGB50', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4094TP45', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TXGMVHA6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5VQ2GN7F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70SXG5ZR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '67RF1121', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OQCFKQMZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80N8DFFC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AA6OOT2S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZM3CT4C8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '708BBXHV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SXK77MNT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4AAMATAX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DBNQTPK2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XHSD9G58', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508WGVBA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7MLUDM3U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505JFEBJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PT5KZPKH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509L1FD8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '51A2GL6M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FZAOW9Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UUIU88XI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CYSVM8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WKF9IY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EOT65WFM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40RKIFAL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70H3742J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70LCE61C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IM5RP3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SNLW4U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AQDBC8AW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z6TM55NE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BXMYS8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TRU75QKC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WM2ALM5Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503EA99S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4TXNZPSH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MWUT8RB3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LKche032', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40TWQRN4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50OIARMQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ECCLTX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UJ33G3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UVQGD2HZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8AM27PJO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4YNFML7G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '48Q7492S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T4X6RHPQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50621GG6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60GUGPZ7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '402PFFMA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q3CHXFBK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7PL2WM82', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50DMSH41', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60AIP657', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55DMW8TN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GZKLVSC6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '10Q4RCCA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55VA35UF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '805GN9XB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GLN5REKB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6HOOG8KB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5IDK3UX2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QTAZIQ9U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '94TSJ33X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GFCYBER', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50LCCRFZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7LCL4XBJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PZ6GO86Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5GCCGOU8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'P7FG4K7T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6088411Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6UQWA6OP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '58F79ADP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508QQT8J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50DTOGSG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '502M5PZM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'S3C5C79J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50GE15EM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EIKJCBSF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50EAFKCZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QIUB2K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60N28ATH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4ZCXKHND', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SQANEITX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80UQKS8H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q5OPO8BS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KIDDAD1660', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '48CVN7K3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3QIRJGBP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PLAYDOCTOR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '43H9TY7D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503OSEM3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '601BOIQM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '407BAFLS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7042H5R3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50XDPU5K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '08QAXRDV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50D5JYDU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '605IXVGG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75Z9OD5C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '606AYR31', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60KSBTSR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60HBBTJM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LFSS4BNT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5023CCEE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60TCKKFG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2EHPBTNJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508GYT57', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'G25H5EHT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TU4YBS58', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YYOWYUSL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60UA32UP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9L6FUY5U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '701WY877', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KIDSDRUMSET', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XWC7REPL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DC49ACHF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NWAKJQZF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55QRLASJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SVP9LY84', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YN7PNQBF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50H1IYVY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2075SK2C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40WVZO88', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50J6EE88', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55SWJSST', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GRPS8A6I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '306VKPU1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B8U59E99', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60916VE6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BVMFAULC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YW8IPRPP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XX88U23Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '504Q9SCK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y55SRUVV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'O5I75RAL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CA7F76', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503DY2KQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45IFWEZR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XOFOWPL6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50X3D26S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EFYT9H27', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503MXC32', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XZ8P9YNC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6K7KR6OD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40JANDXN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70AX2Y5B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KZUO9967', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TLIDEY2Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3SM8MBP8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DW2E73OU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '25CARDIG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DBLSCNVK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'V5UCEZCV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75VBFMIH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U29RWM3L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60XNF8TW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WFPCB4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80AS8QV9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BHPVSQNH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VD89QR6Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GTU4FHP2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5032F9VB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '904459', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70F47DNR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30S93RHT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'V765MJ7X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JGSJQWHS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B6GN97M4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '408KVFOB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2JSNPW43', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '962JMDD2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AIP69XHP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6LUD6EKK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60F8RTOO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PE396OUG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7086MEXC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BQUAKGSG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50GDU6DN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YWZTUEBC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BREAKERS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YHNYDRBR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45EOXS56', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L47E5DXW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GEZMJF5K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40ACXUSQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YIMK9X9Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40I91FOY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7MPLMI5R', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60E28BK6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L4IFQ73W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HRJOP2JA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2F9VJYPI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9FLYJM4Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y5WAJASL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WLOU6WF4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509GI887', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '68L8XQ9U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '49R5M31D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HLDIV4ZT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70V77JI8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50A9FUUA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F9MZNWXW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZX3BWUJP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60ILBQHY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30DT9PSC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50495KSR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SEBLGF8K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UX9LSR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50XI2QSC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NW7ODYVP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80MQ8PX1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LWY874L2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BLPGCO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '704KSE14', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50AE1MOJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TDPE7KP4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30GSCOPY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503HCJGN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75PDW22X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KM35SLXZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QZWY7T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50DDRP8S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q6368YML', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CPYPA7BG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '606ZQI4F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WW4TQA6O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40WMZLEO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SJV8BT7Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PF5QXIKA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CLE6W2C5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FPNVKQVT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T7RC4BRB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9BQWM4Z8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DGRFQNJF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50F87VUI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IM6NFB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4FO3HKYX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8NI8CG9M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '806FK4GF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ADVENTCALENDAR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IAZ1E5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40YX8HR1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4REXF2GY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60W8ZADO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60ITNA4I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2OH5U25V', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506H3X23', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5V6TYRQ8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U7UWLYYI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DDLAXAQY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XYRF6FPB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '706KMJUV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DZEMM6U7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BKUXSKVU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '69XGFWMK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FXPNFQ2W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70TQ6E3D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GUTL3RRB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7SDJ9998', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8N6BIUC7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FDY7IGDD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55EKH9JU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '56IS9OZG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50W82W1K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UV2ODX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WK6TOU2U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50P3ZTXQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30RKEWBJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60OIG2P3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3YYP6KZA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3TX2UBZB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70OUD3N8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5071LA4X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NQOQ3B4K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U6RLQDKG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6BRRYNL5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '408IEVJM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'I3RXZI89', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '557XAW8Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JXC79KMW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6MRQ8BAS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503PQKNX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EK7A6KXB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F8CPRWUF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6W4K465X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KX82OAGA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40FIFJBF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60JGFOZP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65V76A29', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505JP1YQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '746HEX3C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VVM46R', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IY9A1C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OGDN872O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6QGZKNSF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65FM769W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QIEUP8F3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SFHN8U4B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9TYL3YQ2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U7J8ENPU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DD4XXCFV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'H7OVMSFK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50GETCHEWTOY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5RVKZEEV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BIF3FLH8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'N73ZYKX7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45W8CSZ7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60WPBLM8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75OWYZEL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60VEJIQT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40BNJL7J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HZE5T46W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T9WAX3PR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2ZI28LB8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50X88BN6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IGM4QO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ACN8AXXT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40VKHFBD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9UPHC2TP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4YRR3WE4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '501RD8DQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5JXKA4HM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80XI8BCG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WDGV2C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9IGDRVBF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4056NXZ1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2TQHLAAZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XNGG35N4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509SRRLY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PIETT7UN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5R7XY9AW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50YBHN1K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9ZO5KUHR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80K6TEGC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '83QOFC4Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DNG6TMEN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SJKE336W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GHKGLK84', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QKOIBSTV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RN33LPZ3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QTGHSRNZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '606KOOP1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FQYP9DTB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ADFZLZ62', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GO6MW2J7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50V2EUAS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55UG69JD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SZ5HNH7V', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LES4WCIX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6LSVCI8D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GDYOPOSZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3Y5QNQC4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LAKW6PZH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BTV677KL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9BA75AS6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '44VZKJPF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '37SA7NI6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70SL4XBE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q4RX3BMM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2UA7AK7S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TIW8TG4L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IEPNRW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50GZHYKN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50DNUTVX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9N4LRBMQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80VINOW1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50IJO9LP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DEY5TCYS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6092G6OX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FMPHHPHH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GEIOIR02', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NW78F9J2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UYJXGMO3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KGAKDQS7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KRIX98IF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QFCBWUA2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '35PSATQY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ECHOXBX5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VIPTREAT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'O6DUEQAD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '401C6N6K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CCOMPYH6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '71FKS3Z3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60I46XS7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6EOQIYX2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ABFYUID5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '32NT6XDI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '303VRXEJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BBA34AVY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U2LBMT57', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4YY7IVWZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8SHUI3NA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '279YDJF8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LD79YE95', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65LBPHLW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65RDL921', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LOVINANGRY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UEP3LG56', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50B2K51K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '32OZCGGW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'S2JBTQFC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QB5F4LWQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'THPDMHE4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50NIAYDK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'S9BCY7PQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50235AJB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80QZH2WZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50RPFHBV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WKTVR75D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3G5CKJV3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GIQ8N4QB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9V44CPN5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DQBJXGRK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '523268OF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5018WDQS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40UUD7QJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U8X39CH6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40WYRSZC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JBAJ5YOZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4ROFNV8F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XFSU45OD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OVAQR2UC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6AX6H6ZH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PQX4GYOV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50XTUPH7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '429A9PPJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MUZYKZBQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60AL526O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60RGWR8P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '83PCYRMT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '404G1D4O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50X87Z5J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'X9GISQOP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5XP7K3A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70XQPZIU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '67YXNE4D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50NGDZWC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SLIME2021', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SMSWVORH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ACCWFY33', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DZLXDHY6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75T41PA2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7SEATDINING', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BX9IF847', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '73QLJXM9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GAMETABLE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55AH2YKV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JSSZELJ8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50G4ISB9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EG6I5GSA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '654RK4L7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XEQ2DE9K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PHNKVYTM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40GRILLS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XZRIVZSG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z322GISJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50PH6QU7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50G94FF4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QLFHI4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65JDXNQN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '52RXUB8Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ZJJHYL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9U6M52BV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '49JLG5DK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HHZQ3N8A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60DAU81F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YWFDY5NR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45DBSNWY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QOELN2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZBMZPKGH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OO2DYDGB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50AW1YXD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'T5XZLUUF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '52GO89V2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '90LIEBIAO1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9D28JR2U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'M3U33JK9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '261TOMMY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y9WXB56P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PY8YUCEY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LN6Q9AXH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SEPSHIP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5052TNNS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ACUQP8GO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '35H8FPXC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50P2IO8T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '66YI48RU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z9WBPOYS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2DO3UEEW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DY2APWDI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'P3TAZCZM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50PETCYY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FE62ESUG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '44BIDFH8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z2JBGHFO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JKJ7E7S3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55JX3K9P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '455PZO4Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E597UKCC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Y9UHHN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WZNLZK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503ODTI5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45PJ2SOB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WWRR2222', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50B27VR9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50RZ2BFM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BLACKTREE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OZWAPEYL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40BXFXRA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55JH26ZF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F7M6M6CS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60LX8EFD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TIOF3OU7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4069DCWP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50WC3W3O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MHNDI3LR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50HOJ1GK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60OO7TC9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '707UN24Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OTBHA7RA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3TYMNVXL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6YJ96DL5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508LI2ZA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3MXGO5X7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MD64S46E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PFHRBNB5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5HYNJRST', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40GVROWI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '502Y8CQI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '504TA8FE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OCHKMBCW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VEN1HH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30A1DDX5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '20HVRQTF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YCASY75Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ABY8H5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BRO2BA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2KIFZSZD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VZOXD2GK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JDD8P39N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GJYHXCDA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CH2KCP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7518VHTV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RNF2Y3WF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506EZVBM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50YYQ24B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WVY42RXQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9ZZ8TYXX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6R6QZZDA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RXZSRREB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5SGOUHBM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80PQ1U9O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HRDD6HZ6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BY9PWQV8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '678F3TVL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50K9UWDE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Z6HPU3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YB3VCXEA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UQOX532K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EOOW73UO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BBREVVF7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '502011OFF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50KR5Q8Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XLN4WB8Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '824RX53E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40CQZN5Z', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '602WEPEW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80ELYBJ6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YAYFALL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50HL2LL8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60S7TPJ2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40KTQKXQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60V7CW2U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Z51W5E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'A9OCDAAB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '71C6UTHH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50W3W7CC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GX5ZIHB5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ICXRFCJG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KFQ6MMKR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GN7AJQOH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50Q85953', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '353QXTNV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '703LCDJH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FXJH4HVG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E7CFVRJR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'X82CWJJ7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TDVRGLKR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2DPPDDH2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CQXYVZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506PHFIC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JNJA4CY7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60J47OON', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CN73CB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HOTGZILL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ORIBRGJJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6OEC9I44', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Trumore16', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7GWN6CVJ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60ACNSQH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50AAA5656', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60KLBJCV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L8OHC2I3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YOFM5KSN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3AWY3G5C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40FO719X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7W2BY2VG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VLFQWEUH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L2QCZTSA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'K8A35QUO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6W7JGRVV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QSBYATZT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GV9TGW22', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SAL78OST', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3YXF8SE6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'W52Q7ZUM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '475JHAOY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BQNMSKT6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50BGGZGG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B6RCPZ96', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30Y7HFN2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'D4M2FA7I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80FGREXV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50OWT336', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'K37UIC2W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70EX19BN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2835NG9D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GQBMUFSX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3YZ7H9M7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'H3CMJ27H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B3HNWEX3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50GFQPCE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '53EEXRK4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '403YDIFC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '57K391FV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60LWDCPP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55P9GUT8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DDUKYDKC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y84Y2VF8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30PA87JV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VL3YH4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65PPPDDD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50U2GEXX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VVB9A4QK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60LRD1HH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5LWZARKF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VWXORG85', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FSKHZEAV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '206Z9OAS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5AT7PKK6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OWKPCTRT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OLEOKPHK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'R9B9YU9K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6J4TPDWN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VTR556GB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7CCVIN6O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PPU2DDDA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FK52QYPU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UDJXHNLW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4I9C97V8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KPZCA3X9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45YIKG8O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5081YOZT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60LWS85V', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y8VYOITV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40DHPA4M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'THY2BPSB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50J5CELK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75B9H2PE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F2TBHI8E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6URWL7V8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6VR8WPTR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50VG8VL2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50TQ6WX6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WQL3EUJB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506VKA29', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509C31J9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60VBZR6N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '37JBFK3C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '511BPMU4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GFM8BJEY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '276N9OC6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KVW9DYRA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8234UNAD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7KSRVHTP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FAEIDKI7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'EJTKUNCL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '605N77KB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50RIBONB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60PJEIQD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507KYDCC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50FQF7GF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FNNB9SAC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'I5HYPYT2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OKF7UCCG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '755XRQLQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QYPYW57D', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50UR6NAM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'E8ULCFRQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80CJASX1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TLZBGDW8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SSHCKL9J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70KKQRJK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '67Q5ZZJV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q7QUMXWI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '74RXWZF4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70ACUWHC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4T28SMPG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6DJWEZUS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RATI4EB8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40AWRG1U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '32DKVI5Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'C7TH4L6N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45UZBKSX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4QM4C8JQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6FYIIPIU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ELMCW3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OHZEI9Z4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'H97VB9E5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80QD28A4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6093KAIS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507ZN592', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50QQ5NB1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50EG3AVA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SLIPPERS50', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80EVNEC3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '501EOXTV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LTJVBEQU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '403K6EW5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9AGRP2AK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60OE7JE6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IIWQCKAQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40ULF89N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'USKR0914', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60Y587O7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '729M5SA3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80RQCOXQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40V75UXX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4N4LR2FV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '236FOKSK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VLH9WLWP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7JSZWUKF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9YPU9EA8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6KYS5Q89', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '51W16DU9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Y74BSU3Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RD8YZC7Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '657TF4LR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'W4A53KOW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505DQUYU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VL8HAIBT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507Q5ACI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '208VSB99', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HIQADSSW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GCS2J3YEA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60B8OUC9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LK7LLDNH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55CANDLESET', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CGICX3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XEZ79HFK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'D42JV49A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FRIENDS15', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40QD6I4G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55JRH2KH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4025E9R4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'W9PPS7MN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BNJVJ4RW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70G4T8T4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'OZWNGE63', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50FSHTZ8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MMSI43ZM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'P4275HSY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'USBMICBB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AUJXLK2H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'QX7D2QLE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'L7PKVVRF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50CUHXXB', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50M2SB5E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50HFUR4C', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50KBS1GV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KDTB9M7W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CXG3NN25', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JG8YV96B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50TSTST8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'MLWCGXYY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '406DGEK3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XNCAVMM4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '32NWV921', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4GG9EBDU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4CEJ7VEM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SSH7HWXM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5MBBSMY3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '75K91BJS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '39V6PUQV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '507UF15T', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60Q9IQ1H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '605NFY4I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SD6BS3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '501XRGDQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508AT2I', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '56DA1VT5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '63ERTL9X', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '703BNRUF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FYRLT4D4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70WYMK23', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AVIL7TAS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'G7FKIX3K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SAVE40VS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GOSUGUU96', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WUJITBWD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30RE259A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PF2WVFNO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SNAPEBT10', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NH9DB2FQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8045DM9Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50TWXEE4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '304B2X8K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50ITWNF1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50W92KL1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55N7TRH6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40QET881', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '409XTQ6P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55SNVZ1N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50KYAZNN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'G5KUDB58', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PCNCN8NM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50NCNN1U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'G7AMB7ZE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55P25XO1', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ARVSP85G', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40UD6BLC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UUUXVQGT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '403GX4LT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GD3USPL4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ARR5UQGY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CVUOJ82L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XYA4K2AI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60PZKLDY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FREESHIP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2QR473HA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50T5U2PZ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TRGKFMWA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LIM4TH2H', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50I3S4CX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'U3DDILWD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'KWPHS6EV', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FP7Q5ND3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8057L8L4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8WLQNPKR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FOHRO2ZH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45ONNZHU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40ZETZK7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'B4BKVRXX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60RIEIO8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509GG9PI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TBA6P5YCY', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '9LB8GJMT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503UM5CA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UZKOZBA7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50FRM99B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FXHSOP82', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60U3TX5L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SFN9GZWW', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'IPTN6HPS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5BFTMNTM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65U4N1G5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JDOEQEBS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8R35HXA8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '28P6RHPK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50SSLG7F', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '706MJUAK', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Q3Z7UUHI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DJQ8WQP5', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'GEAEOX7W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8K6X4BSU', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '505W4GPG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55GV3YH6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '6VWP5UVE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50HG7LCL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'URY6GDRE', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '30AQJFGD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508USAO2', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '80PSETYR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZBJ4O3L7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'M7IGEXUO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50TKJXPF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BBFXUP6K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'LQ7U5YBA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TH9WXZTO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XAR9QSGL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70KCYN4Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WAFZAI3P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ODNMY66N', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65QR7TWX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '202PYHED', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '804GFX8K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50JDUMMR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40TXKE51', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40GKV129', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'NEYKWLBX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '508T64IC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DKIIEO23', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3A99TTUD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60ZOACKX', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'FHHFOTKG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509R559L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4GRYJ92U', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PJJ3YOE7', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55KY4H39', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PZPUOL6W', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50K36AD9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'F95RN47S', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60V9JZ2Y', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60JS19MF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'ZZDA4IH9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4TEV9DWP', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '66DEVNEL', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'VQZX6M4L', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'JHA4FC9Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '509EUFCQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '5SB7LROD', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'WCPUQ5NI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '7O3O2K7P', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '45QMJG5Q', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HB3CYXWI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2O6WJ3AM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '502MNGOF', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HLHJX2G8', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PD2RUPI9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'TOPSESTD16', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UHFN9CJS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'BVVVBGBT', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55FAEMQ6', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '60Y65WNS', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40LCVR68', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2TVVRZK4', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '70BXDH39', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '2H5NDPZO', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DYMX2RS3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'YN55RUBA', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'gracosy930B', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'XJDT9CQ3', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '3T4LLS8A', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50KWYXZH', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'SVEM62UR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40C6DVWR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'RTR924PM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'CRX4UAE9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '8VR5RLEG', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '506JQU7K', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'AZAVDO8M', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'HQ8CVQ88', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50T43GDN', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '503TFK3E', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'Z7QCGYGI', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'UPW9DMUM', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50AFUSYQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '55JEG56J', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'PDGTOFCC', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '40CLTFNS1LR', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '4723RR7O', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '65R2VAVQ', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), '50H9YBP9', 1); INSERT INTO `facebook`.`fb_search_codes` (`id`, `create_time`, `update_time`, `code`, `search_status`) VALUES (NULL, NOW(), NOW(), 'DPH9KDKT', 1);
<reponame>qingbing/laravel-helper CREATE TABLE `zf_platform` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID', `key` varchar(32) NOT NULL COMMENT '项目平台代码', `name` varchar(100) NOT NULL COMMENT '平台名称', `description` varchar(255) NOT NULL DEFAULT '' COMMENT '平台描述', `is_enable` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '启用状态[1:未启用,2:已启用]', `sort_order` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '显示排序', `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_key` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='平台(项目)'; insert into `zf_platform` ( `key`, `name`, `description`, `is_enable`, `sort_order`) values ( 'admin', '管理后台', '后台管理平台', '1', '2'); insert into `zf_platform` ( `key`, `name`, `description`, `is_enable`, `sort_order`) values ( 'member', '会员平台', '会员管理平台', '1', '3'); insert into `zf_platform` ( `key`, `name`, `description`, `is_enable`, `sort_order`) values ( 'program', '程序后台', '程序员程序代码管理平台', '1', '1');
<gh_stars>0 create table master_info ( username varchar(30) primary key, password varchar(30), ts_login timestamp, logged boolean);
--- creación de tabla destinos CREATE TABLE destinos ( idDestino tinyint UNSIGNED auto_increment not null primary key, destNombre varchar(45) not null, idRegion tinyint not null, destPrecio float not null, destAsientos tinyint not null, destDisponibles tinyint not null, destActivo boolean not null DEFAULT 1 ); --- inserción de datos INSERT INTO destinos (idDestino, destNombre, idRegion, destPrecio, destAsientos, destDisponibles, destActivo) VALUES (1, 'Londres (Heathrow)', 5, '9711', 5, 5, 1), (2, 'Amsterdam (Schiphol)', 5, '6231', 5, 5, 1), (3, 'Miami (Wilcox Field)', 4, '6517', 5, 5, 1), (4, 'Tokio (Narita)', 7, '8704', 5, 5, 1), (5, '<NAME> (KLIA)', 8, '8570', 5, 5, 1), (6, 'Bangkok (Suvarnabhumi)', 8, '8469', 5, 5, 1), (7, 'París (Charles de Gaulle)', 5, '7713', 5, 5, 1), (8, 'Cancún (Cancún)', 3, '6494', 5, 5, 1), (9, 'Milán (Malpensa)', 5, '6756', 5, 5, 1);
set echo on begin -- v$session.client_info dbms_application_info.set_client_info('Test - 64 Characters Max'); end; / accept x prompt "Press <ENTER>" begin -- v$sqlarea.module -- v$sqlarea.action -- or dbms_application_info.read_module() dbms_application_info.set_module( module_name => 'Test Module', action_name => 'Action 1' ); dbms_lock.sleep(10); end; / accept x prompt "Press <ENTER>" begin dbms_application_info.set_action( action_name => null ); end; / set echo off
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Host: db -- Generation Time: Jul 24, 2019 at 04:52 PM -- Server version: 5.7.26 -- PHP Version: 7.2.14 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `database` -- -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2019_07_19_180910_create_users_table', 1), (2, '2019_07_21_202435_create_products_table', 2), (3, '2019_07_22_004019_create_usersproducts_table', 3), (4, '2019_07_22_122637_create_users_products_table', 4); -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` int(10) UNSIGNED NOT NULL, `sku` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `price` int(11) NOT NULL, `description` longtext COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `sku`, `name`, `price`, `description`, `created_at`, `updated_at`) VALUES (1, 'battery-4', 'Battery 4', 15, 'Battery 4', NULL, NULL), (2, 'guitar-rig-5', 'Guitar Rig 5', 95, 'Guitar Rig 5', NULL, NULL), (3, 'komplete-12', 'Komplete 12', 75, 'Komplete 12', NULL, NULL), (4, 'komplete-audio-2', 'Komplete Audio 2', 55, 'Komplete Audio 2', NULL, NULL), (5, 'komplete-kontrol-m32', 'Komplete Kontrol M32', 15, 'Komplete Kontrol M32', NULL, NULL), (6, 'komplete-kontrol-s49-black', 'Komplete Kontrol S49 Black', 25, 'Komplete Kontrol S49 Black', NULL, NULL), (7, 'komplete-kontrol-s61', 'Komplete Kontrol S61', 15, 'Komplete Kontrol S61', NULL, NULL), (8, 'kontakt-6', 'Kontakt 6', 15, 'Kontakt 6', NULL, NULL), (9, 'lone-forest', 'Lone Forest', 65, 'Lone Forest', NULL, NULL), (10, 'maschine', 'Maschine', 25, 'Maschine', NULL, NULL), (11, 'maschine-jam', 'Maschine JAM', 55, 'Maschine JAM', NULL, NULL), (12, 'massive', 'Massive', 25, 'Massive', NULL, NULL), (13, 'reaktor-6', '<NAME>', 25, 'Reaktor 6', NULL, NULL), (14, 'traktor-kontrol-s4', 'Traktor Kontrol S4', 21, 'Traktor Kontrol S4', NULL, NULL), (15, 'traktor-kontrol-s8', 'Traktor Kontrol S8', 35, 'Traktor Kontrol S8', NULL, NULL), (16, 'traktor-kontrol-z2', 'Traktor Kontrol Z2', 27, 'Traktor Kontrol Z2', NULL, NULL), (17, 'traktor-pro-3', 'Traktor PRO 3', 25, 'Traktor PRO 3', NULL, NULL), (18, 'una-corda', 'Una Corda', 45, 'Una Corda', NULL, NULL), (19, 'iPhone-X-128GB', 'iPhone X 128GB Mobile Phone', 500, 'iPhone X 128GB Mobile Phone', '2019-07-22 17:48:08', '2019-07-22 17:48:08'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `api_token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `name`, `email`, `password`, `api_token`, `remember_token`, `created_at`, `updated_at`, `deleted_at`) VALUES (2, 'AlbertoBoyleI', 'Dr. <NAME>', '<EMAIL>', 'secret', '', NULL, NULL, NULL, NULL), (3, 'CandelarioKassulke', '<NAME>', '<EMAIL>', 'secret', '', NULL, NULL, NULL, NULL), (4, 'AbnerMueller', '<NAME>', '<EMAIL>', 'secret', '', NULL, NULL, NULL, NULL), (5, 'OdieMiller', 'Mrs. <NAME> Jr.', '<EMAIL>', 'secret', '', NULL, NULL, NULL, NULL), (6, 'westonratke', '<NAME>', '<EMAIL>', '$2y$10$Klf3A3SNOesjGiL1AblkHeK4CPsAuQJhHoGqI2BWgEY4Vuu3lxelm', '<PASSWORD>', NULL, '2019-07-22 13:03:11', '2019-07-23 11:27:40', NULL); -- -------------------------------------------------------- -- -- Table structure for table `users_products` -- CREATE TABLE `users_products` ( `id` int(10) UNSIGNED NOT NULL, `user_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `sku` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users_products` -- INSERT INTO `users_products` (`id`, `user_id`, `sku`, `created_at`, `updated_at`) VALUES (1, '6', 'battery-4', NULL, NULL), (2, '6', 'una-corda', NULL, NULL), (3, '6', 'komplete-12', NULL, NULL), (4, '2', 'battery-4', NULL, NULL), (5, '2', 'komplete-kontrol-m32', NULL, NULL), (6, '2', 'kontakt-6', NULL, NULL), (7, '3', 'massive', NULL, NULL), (8, '3', 'komplete-audio-2', NULL, NULL), (9, '3', 'reaktor-6', NULL, NULL), (10, '4', 'massive', NULL, NULL), (11, '4', 'komplete-audio-2', NULL, NULL), (12, '4', 'reaktor-6', NULL, NULL), (13, '5', 'komplete-kontrol-s49-black', NULL, NULL), (14, '5', 'komplete-audio-2', NULL, NULL), (15, '5', 'komplete-12', NULL, NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `users_products` -- ALTER TABLE `users_products` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `users_products` -- ALTER TABLE `users_products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; 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>logikalmidia/codeigniter-blog -- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 18, 2018 at 07:45 PM -- Server version: 10.1.34-MariaDB -- PHP Version: 7.2.7 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `my_blog` -- -- -------------------------------------------------------- -- -- Table structure for table `posts` -- CREATE TABLE `posts` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `body` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`id`, `title`, `slug`, `body`, `created_at`) VALUES (1, 'Post One', 'Post-one', 'Programs and other executable files can live in many directories, so operating systems provide a search path that lists the directories that the OS searches for executables. The path is stored in an environment variable, which is a named string maintained by the operating system. These variables contain information available to the command shell and other programs. ', '2018-08-10 00:55:19'), (2, 'Post two', 'post-two', 'Programs and other executable files can live in many directories, so operating systems provide a search path that lists the directories that the OS searches for executables. The path is stored in an environment variable, which is a named string maintained by the operating system. These variables contain information available to the command shell and other programs. ', '2018-08-10 00:55:19'); -- -- Indexes for dumped tables -- -- -- Indexes for table `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `posts` -- ALTER TABLE `posts` 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 */;
<reponame>Eeki/chat-app<filename>server/migrations/sqls/20210722174152-create-roles-up.sql CREATE ROLE chat_postgraphile; CREATE ROLE chat_anonymous; CREATE ROLE chat_person; GRANT chat_anonymous TO chat_postgraphile; GRANT chat_person TO chat_postgraphile;
--film tablosunda bulunan ve film ismi (title) 'n' karakteri ile biten en uzun (length) 5 filmi sıralayınız. SELECT title FROM film WHERE title LIKE '%n' ORDER BY legnth DESC LIMIT 5; --film tablosunda bulunan ve film ismi (title) --'n' karakteri ile biten en kısa (length) ikinci(6,7,8,9,10) 5 filmi(6,7,8,9,10) sıralayınız. SELECT title FROM film WHERE LIKE title LIKE '%n' ORDER BY length OFFSET 6 LIMIT 5; /* customer tablosunda bulunan last_name sütununa göre azalan yapılan sıralamada store_id 1 olmak koşuluyla ilk 4 veriyi sıralayınız. */ SELECT last_name FROM Customer WHERE store_id = 1 ORDER BY last_name desc LIMIT 4
/********************************************************************************** * Descrição: Script de alteração do tipo da coluna na #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela} * Autor: #{Autor@Digite o nome do Autor} * Data Criação: #{Data@Coloque a data de criação@@date} **********************************************************************************/ ----------------------------- -- #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela} ----------------------------- set serveroutput on prompt "[LOG] >>>>>> Executando script de alteração da #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela}" ALTER TABLE #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela} ADD #{Campo@Campo a ser alterado@30}_ VARCHAR2(4); UPDATE #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela} SET #{Campo@Campo a ser alterado@30}_ = TO_CHAR(#{Campo@Campo a ser alterado@30}); COMMIT; ALTER TABLE #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela} DROP COLUMN #{Campo@Campo a ser alterado@30}; ALTER TABLE #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela} RENAME COLUMN #{Campo@Campo a ser alterado@30}_ TO #{Campo@Campo a ser alterado@30}; prompt "[LOG] <<<<<< Fim da executando script de alteração da #{Esquema e Tabela@Digite o esquema e a tabela. Ex.: esquema.tabela}"
--Template 22 set query_group to 'query 22'; set enable_result_cache_for_session=false; select cntrycode, count(*) as numcust, sum(c_acctbal) as totacctbal from ( select substring(c_phone from 1 for 2) as cntrycode, c_acctbal from spectrum1000.customer where substring(c_phone from 1 for 2) in ('13','31','23','29','30','18','17') and c_acctbal > ( select avg(c_acctbal) from spectrum1000.customer where c_acctbal > 0.00 and substring (c_phone from 1 for 2) in ('13','31','23','29','30','18','17') ) and not exists ( select * from spectrum1000.orders where o_custkey = c_custkey ) ) as custsale group by cntrycode order by cntrycode;
SELECT id_formacio, nom, IFNULL(nom_curt, nom) AS nom_curt, descripcio, num_persones FROM formacions WHERE id_formacio = ?;
<reponame>jdkoren/sqlite-parser -- analyze2.test -- -- execsql { -- DELETE FROM sqlite_stat1; -- DELETE FROM sqlite_stat2; -- } DELETE FROM sqlite_stat1; DELETE FROM sqlite_stat2;
-- file:privileges.sql ln:512 expect:true CREATE CAST (testdomain1 AS testdomain3a) WITH FUNCTION castfunc(int)
<filename>restful-clojure/migrations/2015-03-13-005900-add-password-digest-to-users.down.sql ALTER TABLE users DROP COLUMN password_digest;
alter table idm.users add column reset_guid_date_created timestamp;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 09, 2020 at 06:39 PM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.6 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: `ecommerce` -- DELIMITER $$ -- -- Procedures -- CREATE DEFINER=`root`@`localhost` PROCEDURE `getcat` (IN `cid` INT) SELECT * FROM categories WHERE cat_id=cid$$ DELIMITER ; -- -------------------------------------------------------- -- -- Table structure for table `admin_info` -- CREATE TABLE `admin_info` ( `admin_id` int(10) NOT NULL, `admin_name` varchar(100) NOT NULL, `admin_email` varchar(300) NOT NULL, `admin_password` varchar(300) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin_info` -- INSERT INTO `admin_info` (`admin_id`, `admin_name`, `admin_email`, `admin_password`) VALUES (1, 'admin', '<EMAIL>', '<PASSWORD>'), (2, 'Shebika', '<EMAIL>', '<PASSWORD>'); -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `brand_id` int(100) NOT NULL, `brand_title` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `brands` -- INSERT INTO `brands` (`brand_id`, `brand_title`) VALUES (1, 'Fresh'), (2, 'Frozen'); -- -------------------------------------------------------- -- -- Table structure for table `cart` -- CREATE TABLE `cart` ( `id` int(10) NOT NULL, `p_id` int(10) NOT NULL, `ip_add` varchar(250) NOT NULL, `user_id` int(10) DEFAULT NULL, `qty` int(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `cart` -- INSERT INTO `cart` (`id`, `p_id`, `ip_add`, `user_id`, `qty`) VALUES (6, 26, '::1', 4, 1), (9, 10, '::1', 7, 1), (10, 11, '::1', 7, 1), (11, 45, '::1', 7, 1), (44, 5, '::1', 3, 0), (46, 2, '::1', 3, 0), (48, 72, '::1', 3, 0), (49, 60, '::1', 8, 1), (50, 61, '::1', 8, 1), (51, 1, '::1', 8, 1), (52, 5, '::1', 9, 1), (53, 2, '::1', 14, 1), (54, 3, '::1', 14, 1), (55, 5, '::1', 14, 1), (56, 1, '::1', 9, 1), (57, 2, '::1', 9, 1), (71, 61, '127.0.0.1', -1, 1), (147, 51, '::1', 26, 1), (148, 6, '::1', 26, 1), (149, 60, '::1', 26, 1); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `cat_id` int(100) NOT NULL, `cat_title` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`cat_id`, `cat_title`) VALUES (1, 'Fruits'), (2, 'Vegetables'), (3, 'Crops'), (4, 'Dairy Products'); -- -------------------------------------------------------- -- -- Table structure for table `email_info` -- CREATE TABLE `email_info` ( `email_id` int(100) NOT NULL, `email` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_info` -- INSERT INTO `email_info` (`email_id`, `email`) VALUES (3, '<EMAIL>'), (4, '<EMAIL>'), (5, '<EMAIL>'); -- -------------------------------------------------------- -- -- Table structure for table `farmer_info` -- CREATE TABLE `farmer_info` ( `farmer_id` int(11) NOT NULL, `farmer_name` varchar(50) NOT NULL, `farmer_mobile` varchar(11) NOT NULL, `farmer_pass` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `farmer_info` -- INSERT INTO `farmer_info` (`farmer_id`, `farmer_name`, `farmer_mobile`, `farmer_pass`) VALUES (1, '<NAME>', '01784579839', 'rahim123'), (2, '<NAME>', '01798522856', 'fahim123'), (3, '<NAME>', '01784579839', 'rahim123'), (4, '<NAME>', '01798522856', 'fahim123'); -- -------------------------------------------------------- -- -- Table structure for table `logs` -- CREATE TABLE `logs` ( `id` int(11) NOT NULL, `user_id` varchar(50) NOT NULL, `action` varchar(50) NOT NULL, `date` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `order_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `qty` int(11) NOT NULL, `trx_id` varchar(255) NOT NULL, `p_status` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`order_id`, `user_id`, `product_id`, `qty`, `trx_id`, `p_status`) VALUES (1, 12, 7, 1, '07M47684BS5725041', 'Completed'), (2, 14, 2, 1, '07M47684BS5725041', 'Completed'); -- -------------------------------------------------------- -- -- Table structure for table `orders_info` -- CREATE TABLE `orders_info` ( `order_id` int(10) NOT NULL, `user_id` int(11) NOT NULL, `f_name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `address` varchar(255) NOT NULL, `city` varchar(255) NOT NULL, `state` varchar(255) NOT NULL, `zip` int(10) NOT NULL, `cardname` varchar(255) NOT NULL, `cardnumber` varchar(20) NOT NULL, `expdate` varchar(255) NOT NULL, `prod_count` int(15) DEFAULT NULL, `total_amt` int(15) DEFAULT NULL, `cvv` int(5) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `orders_info` -- INSERT INTO `orders_info` (`order_id`, `user_id`, `f_name`, `email`, `address`, `city`, `state`, `zip`, `cardname`, `cardnumber`, `expdate`, `prod_count`, `total_amt`, `cvv`) VALUES (1, 12, 'Puneeth', '<EMAIL>', 'Bangalore, Kumbalagodu, Karnataka', 'Bangalore', 'Karnataka', 560074, 'pokjhgfcxc', '4321 2345 6788 7654', '12/90', 3, 77000, 1234); -- -------------------------------------------------------- -- -- Table structure for table `order_products` -- CREATE TABLE `order_products` ( `order_pro_id` int(10) NOT NULL, `order_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `qty` int(15) DEFAULT NULL, `amt` int(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `order_products` -- INSERT INTO `order_products` (`order_pro_id`, `order_id`, `product_id`, `qty`, `amt`) VALUES (73, 1, 1, 1, 5000), (74, 1, 4, 2, 64000), (75, 1, 8, 1, 40000); -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `product_id` int(100) NOT NULL, `product_cat` int(100) NOT NULL, `product_brand` int(100) NOT NULL, `product_title` varchar(255) NOT NULL, `product_price` int(100) NOT NULL, `product_desc` text NOT NULL, `product_image` text NOT NULL, `product_keywords` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `products` -- INSERT INTO `products` (`product_id`, `product_cat`, `product_brand`, `product_title`, `product_price`, `product_desc`, `product_image`, `product_keywords`) VALUES (1, 1, 1, 'Green Coconut', 50, 'Green Coconut', 'greencoconut.jpg', 'Green Coconut'), (2, 1, 1, 'Fresh cucumber', 70, 'Nutrients. Cucumbers are packed with them. In just a single cup of cucumber slices, you\'ll get 14% to 19% of the vitamin K you need for the day. You\'ll also get vitamins B and C along with minerals like copper, phosphorus, potassium, and magnesium.', 'cucumber.jpg', 'Fresh Cucumber'), (3, 1, 1, 'coconut', 65, 'Coconut is the fruit of the coconut palm (Cocos nucifera). It\'s used for its water, milk, oil, and tasty meat. Coconuts have been grown in tropical regions for more than 4,500 years but recently increased in popularity for their flavor, culinary uses, and potential health benefits', 'coconut.jpg', 'Coconut'), (4, 1, 1, 'Pomelo fruit (jumbura)', 40, 'The pomelo is a large citrus fruit, 15–25 centimetres (6–10 in) in diameter, usually weighing 1–2 kilograms (2–4 lb). It has a thicker rind than a grapefruit. Containing 11–18 segments, the flesh tastes like a mild grapefruit (believed to be a hybrid of Citrus maxima and the orange).jambura', 'jambura(pomelo).jpg', 'Pomelo fruit (jumbura)'), (5, 1, 1, 'Dragon Fruit', 750, 'A pitaya or pitahaya is the fruit of several different cactus species indigenous to the Americas. Pitaya usually refers to fruit of the genus Stenocereus, while pitahaya or dragon fruit refers to fruit of the genus Hylocereus, both in the family Cactaceae.', 'dragon.jpg', 'Dragon Fruits'), (6, 1, 1, 'Fresh Banana', 80, 'A banana is an elongated, edible fruit – botanically a berry – produced by several kinds of large herbaceous flowering plants in the genus Musa. In some countries, bananas used for cooking may be called \"plantains\", distinguishing them from dessert bananas.', 'banana.jpg', 'Fresh Banana'), (7, 1, 1, 'Fresh Apple', 150, ' Apples Are Nutritious. Apples May Be Good for Weight Loss. Apples May Be Good for Your Heart.They\'re Linked to a Lower Risk of Diabetes.They May Have Prebiotic Effects and Promote Good Gut Bacteria. Substances in Apples May Help Prevent Cancer. Apples Contain Compounds That Can Help Fight Asthma.', 'apple.jpg', 'Fresh Apple'), (8, 1, 1, 'Grapes', 300, 'Grapes are a good source of potassium, a mineral that helps balance fluids in your body. Potassium can help bring down high blood pressure and lower your risk of heart disease and stroke. Most people don\'t get enough of this nutrient, so eating grapes can help fill the gap.', 'grapes.jpg', 'Fresh Grapes'), (9, 1, 1, 'Fresh Guava', 60, 'guava leaves are used as an herbal tea and the leaf extract as a supplement. Guava fruits are amazingly rich in antioxidants, vitamin C, potassium, and fiber.', 'guava.jpg', 'Fresh Guava'), (10, 1, 1, 'Fresh Jackfruit', 120, 'Constipation. Jackfruit is a good source of fiber, so it could help you feel fuller for longer and help keep your bowel movements regular.', 'jackfruit.jpg', 'Fresh Jackfruit'), (11, 1, 1, 'Fresh White Jamrul', 80, 'It is a tropical fruit that grows in south-east Asia, including southern India, Indonesia and Malaysia. ... It has a glossy, thin, green or red skin, though a variety of the fruit in Indonesia has a white skin.', 'jamrul.jpg', 'Fresh White Jamrul'), (12, 1, 1, 'Fresh Red Jamrul ', 85, 'It is a tropical fruit that grows in south-east Asia, including southern India, Indonesia and Malaysia. ... It has a glossy, thin, green or red skin, though a variety of the fruit in Indonesia has a white skin.', 'redJamrul.jpg', 'Fresh Red Jamrul'), (13, 1, 1, 'Fresh Boroi', 75, 'Fresh Boroi Fruit,', 'jujbue(boroi).jpg', 'Fresh Boroi'), (14, 1, 1, 'Litchi', 250, 'A small rounded fruit with sweet white scented flesh, a large central stone, and a thin rough skin.', 'litchi.jpg', 'Litchi Fruit\r\n'), (15, 1, 1, 'Fresh Orange', 120, 'Orange', 'orange.jpg', 'Fresh Orange'), (16, 1, 1, 'Fresh Mango', 70, 'Fresh Mango of Rajsahi', 'mango.jpg', 'Fresh Mango'), (17, 1, 1, 'Olive', 60, 'Fresh olive', 'olive.jpg', 'Fresh Olive'), (19, 1, 1, 'Papaya', 20, 'Fresh Rip Papaya', 'papaya.jpg', 'Fresh Rip Papaya'), (20, 1, 1, 'Pineapple', 50, 'Fresh Pineapple', 'pineapple.jpg', 'Fresh Pineapple'), (21, 1, 1, 'Watermelon', 100, 'ssds', 'watermelon.jpg', 'Fresh Watermelon'), (22, 1, 1, 'Sugarcane', 30, 'Sugarcane ', 'sugarcane.jpg', 'Fresh Sugarcane'), (23, 1, 1, 'Pomegranate', 1900, 'Fresh Pomegranate', 'pomegranate.jpg', 'Fresh Pomegranate'), (24, 2, 1, 'Onion', 30, 'Vegetable item Onion', 'onion.jpg', 'Onion'), (25, 2, 1, 'Potato', 15, 'Vegetable- Potato', 'potato.jpg', 'Potato'), (27, 2, 1, 'Bitter gourd', 40, 'Vegetable- Bitter gourd', 'bittergourd.jpg', 'Bitter gourd'), (32, 2, 1, 'Bottle gourd', 65, 'Vegetable-Bottle gourd', 'bottleGourd.jpg', 'Fresh bottle gourd'), (33, 2, 1, 'Fresh Cabbage', 20, 'Vegetable-Cabbage', 'cabbage.jpg', 'Fresh Cabbage'), (34, 2, 4, 'Carrot', 1000, 'Vegetable-Carrot', 'carrot.jpg', 'Carrot'), (35, 2, 1, 'Cauliflower', 20, 'Vegetable-Cauliflower', 'cauliflower.jpg', 'Fresh Cauliflower'), (36, 2, 1, 'Green Chili', 200, 'Vegetable-Green Chili', 'greenchili.jpg', 'Green Chili'), (37, 2, 1, 'Red Chili', 250, 'Vegetable-Red Chili', 'redchili.jpg', 'Redchili'), (38, 2, 1, 'sweet Potato', 25, 'Vegetable- Sweet Potato', 'sweetPotato.jpg', 'Sweet Potato'), (39, 2, 1, 'Pumpkin', 60, 'Vegetable-Pumpkin', 'pumpkin.jpg', 'Pumpkin'), (40, 2, 1, 'White Radish', 40, 'White Radish', 'whiteradish.jpg', 'Vegetable- Whiteradish'), (45, 2, 1, 'Mushroom', 300, 'Vegetable- Mushroom', 'mushroom.jpg', 'Mashroom'), (46, 2, 1, 'Lemon', 10, 'Lemon', 'lemon.jpg', 'Lemon'), (47, 2, 1, 'Ladies\'Finger', 30, 'Vegetable-Ladies\'Finger', 'lf.jpg', 'Ladies\'Finger'), (48, 2, 1, 'Green pea', 120, 'Vegetable- Green Pea', 'greenPea.jpg', 'Green Pea'), (49, 2, 1, 'Garlic', 120, 'Vegetable- Garlic', 'garlic.jpg', 'Garlic'), (50, 2, 1, 'Ginger', 150, 'Ginger', 'ginger.jpg', 'Ginger'), (51, 3, 1, '<NAME>', 30, 'Rice', 'ausRice.jpg', 'Aus Rice'), (52, 3, 1, '<NAME>', 35, 'Rice', 'boroRice.jpg', 'Boro Rice'), (53, 3, 1, '<NAME>', 35, 'Rice', 'redAmon.jpg', 'Red Amon Rice'), (54, 3, 1, '<NAME>', 90, 'Lentil', 'redLentil.jpg', 'Red Lentil'), (55, 3, 1, '<NAME>', 100, 'Lentil', 'mughDal.jpg', '<NAME>'), (56, 3, 1, 'khesariDal.jpg', 60, '<NAME>', 'khesariDal.jpg', '<NAME>'), (57, 3, 1, 'Sunned Rice', 60, 'Rice', 'atopRice.jpg', 'Sunned Rice'), (58, 3, 1, '<NAME>', 70, 'Lentil', 'chanaDal.jpg', 'Buter Dal'), (59, 4, 1, 'Milk', 70, 'Milk', 'milk.jpg', 'Milk'), (60, 4, 2, 'Sweet Curd', 150, 'Curd', 'sweetCurd.jpg', 'Sweet Curd'), (61, 4, 2, 'Yogurt', 100, 'Yogurt', 'yogurt.jpg', 'Yogurt'), (62, 4, 2, 'Cheese', 1200, 'Cheese', 'cheese.jpg', 'Cheese'), (63, 4, 2, 'Butter', 2000, 'Butter', 'butter.jpg', 'Butter'), (70, 1, 1, 'Fresh guava', 50, 'fruits', 'guava.JPG', 'Fresh Guava'), (71, 1, 1, 'Fresh Dragon Fruit', 500, 'Fresh Dragon Fruit', 'dragon.jpg', 'Fruits'), (72, 2, 1, 'Fresh Lemon', 20, 'Fresh Lemon', 'lemon.jpg', 'Fruits'), (73, 4, 2, 'Swiss Cheese', 2000, 'Fresh Swiss Cheese', 'cheese.jpg', 'Fresh Swiss Cheese'), (74, 3, 1, 'Sunned Rice', 40, 'Sunned Rice', 'atopRice.jpg', 'Sunned Rice'), (75, 1, 1, 'Mango', 80, 'Fresh Mango', 'mango.jpg', 'Fresh Mango'), (83, 1, 1, 'Fresh Kotbel', 10, 'Kotbel is a Testy Bangladeshi fruit.', '1602187065_kotbel.JPG', 'Kotbel'); -- -------------------------------------------------------- -- -- Table structure for table `user_info` -- CREATE TABLE `user_info` ( `user_id` int(10) NOT NULL, `first_name` varchar(100) NOT NULL, `last_name` varchar(100) NOT NULL, `email` varchar(300) NOT NULL, `password` varchar(300) NOT NULL, `mobile` varchar(11) NOT NULL, `address1` varchar(300) NOT NULL, `address2` varchar(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_info` -- INSERT INTO `user_info` (`user_id`, `first_name`, `last_name`, `email`, `password`, `mobile`, `address1`, `address2`) VALUES (12, 'puneeth', 'Reddy', '<EMAIL>', 'puneeth', '9448121558', '123456789', 'sdcjns,djc'), (15, 'hemu', 'ajhgdg', '<EMAIL>', '346778', '536487276', ',mdnbca', 'asdmhmhvbv'), (16, 'venky', 'vs', '<EMAIL>', '1234534', '9877654334', 'snhdgvajfehyfygv', 'asdjbhfkeur'), (19, 'abhishek', 'bs', '<EMAIL>', 'asdcsdcc', '9871236534', 'bangalore', 'hassan'), (21, 'prajval', 'mcta', '<EMAIL>', '1234545662', '202-555-01', 'bangalore', 'kumbalagodu'), (22, 'puneeth', 'v', '<EMAIL>', '1234534', '9877654334', 'snhdgvajfehyfygv', 'asdjbhfkeur'), (23, 'hemanth', 'reddy', '<EMAIL>', 'Puneeth@123', '9876543234', 'Bangalore', 'Kumbalagodu'), (24, 'newuser', 'user', '<EMAIL>', 'puneeth@123', '9535688928', 'Bangalore', 'Kumbalagodu'), (25, 'otheruser', 'user', '<EMAIL>', 'puneeth@123', '9535688928', 'Bangalore', 'Kumbalagodu'), (26, 'Shebika', 'Sen', '<EMAIL>', 'shebika123', '0162761297', 'Khilkhet Dhaka-1229', 'Dhaka'), (27, 'Humaira', 'Jim', '<EMAIL>', 'jim123', '0162761297', 'Sirajgong', 'Sirajgong'), (28, 'Fahim', 'Khan', '<EMAIL>', 'fahim123', '01728596421', 'Dhaka', 'Mirpur, Dha'), (29, 'Shekha', 'Sen', '<EMAIL>', 'shekha123', '01724519838', 'Dhaka', 'Khilkhet Dh'), (30, 'Shekha', 'Sen', '<EMAIL>', 'shekha123', '01724519838', 'Dhaka', 'Khilkhet Dh'), (31, 'Shekha', 'Sen', '<EMAIL>', 'shekha123', '01724519838', 'Dhaka', 'Khilkhet Dh'); -- -- Triggers `user_info` -- DELIMITER $$ CREATE TRIGGER `after_user_info_insert` AFTER INSERT ON `user_info` FOR EACH ROW BEGIN INSERT INTO user_info_backup VALUES(new.user_id,new.first_name,new.last_name,new.email,new.password,new.mobile,new.address1,new.address2); END $$ DELIMITER ; -- -------------------------------------------------------- -- -- Table structure for table `user_info_backup` -- CREATE TABLE `user_info_backup` ( `user_id` int(10) NOT NULL, `first_name` varchar(100) NOT NULL, `last_name` varchar(100) NOT NULL, `email` varchar(300) NOT NULL, `password` varchar(300) NOT NULL, `mobile` varchar(10) NOT NULL, `address1` varchar(300) NOT NULL, `address2` varchar(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_info_backup` -- INSERT INTO `user_info_backup` (`user_id`, `first_name`, `last_name`, `email`, `password`, `mobile`, `address1`, `address2`) VALUES (12, 'puneeth', 'Reddy', '<EMAIL>', '123456789', '9448121558', '123456789', 'sdcjns,djc'), (14, 'hemanthu', 'reddy', '<EMAIL>', '123456788', '6526436723', 's,dc wfjvnvn', 'b efhfhvvbr'), (15, 'hemu', 'ajhgdg', '<EMAIL>', '346778', '536487276', ',mdnbca', 'asdmhmhvbv'), (16, 'venky', 'vs', '<EMAIL>', '1234534', '9877654334', 'snhdgvajfehyfygv', 'asdjbhfkeur'), (19, 'abhishek', 'bs', '<EMAIL>', 'asdcsdcc', '9871236534', 'bangalore', 'hassan'), (20, 'pramod', 'vh', '<EMAIL>', '124335353', '9767645653', 'ksbdfcdf', 'sjrgrevgsib'), (21, 'prajval', 'mcta', '<EMAIL>', '1234545662', '202-555-01', 'bangalore', 'kumbalagodu'), (22, 'puneeth', 'v', '<EMAIL>', '1234534', '9877654334', 'snhdgvajfehyfygv', 'asdjbhfkeur'), (23, 'hemanth', 'reddy', '<EMAIL>', 'Puneeth@123', '9876543234', 'Bangalore', 'Kumbalagodu'), (24, 'newuser', 'user', '<EMAIL>', 'puneeth<PASSWORD>', '9535688928', 'Bangalore', 'Kumbalagodu'), (25, 'otheruser', 'user', '<EMAIL>', 'puneeth<PASSWORD>', '9535688928', 'Bangalore', 'Kumbalagodu'), (26, 'Shebika', 'Sen', '<EMAIL>', 'shebika123', '0162761297', 'Khilkhet Dhaka-1229', 'Dhaka'), (27, 'Humaira', 'Jim', '<EMAIL>', 'jim123', '0162761297', 'Sirajgong', 'Sirajgong'), (28, 'Fahim', 'Khan', '<EMAIL>', 'fahim123', '0172859642', 'Dhaka', 'Mirpur, Dha'), (29, 'Shekha', 'Sen', '<EMAIL>', 'shekha123', '0172451983', 'Dhaka', 'Khilkhet Dh'), (30, 'Shekha', 'Sen', '<EMAIL>', 'shekha123', '0172451983', 'Dhaka', 'Khilkhet Dh'), (31, 'Shekha', 'Sen', '<EMAIL>', 'shekha123', '0172451983', 'Dhaka', 'Khilkhet Dh'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin_info` -- ALTER TABLE `admin_info` ADD PRIMARY KEY (`admin_id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`brand_id`); -- -- Indexes for table `cart` -- ALTER TABLE `cart` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`cat_id`); -- -- Indexes for table `email_info` -- ALTER TABLE `email_info` ADD PRIMARY KEY (`email_id`); -- -- Indexes for table `farmer_info` -- ALTER TABLE `farmer_info` ADD PRIMARY KEY (`farmer_id`); -- -- Indexes for table `logs` -- ALTER TABLE `logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`order_id`); -- -- Indexes for table `orders_info` -- ALTER TABLE `orders_info` ADD PRIMARY KEY (`order_id`), ADD KEY `user_id` (`user_id`); -- -- Indexes for table `order_products` -- ALTER TABLE `order_products` ADD PRIMARY KEY (`order_pro_id`), ADD KEY `order_products` (`order_id`), ADD KEY `product_id` (`product_id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`product_id`); -- -- Indexes for table `user_info` -- ALTER TABLE `user_info` ADD PRIMARY KEY (`user_id`); -- -- Indexes for table `user_info_backup` -- ALTER TABLE `user_info_backup` ADD PRIMARY KEY (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin_info` -- ALTER TABLE `admin_info` MODIFY `admin_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `brand_id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `cart` -- ALTER TABLE `cart` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=150; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `cat_id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `email_info` -- ALTER TABLE `email_info` MODIFY `email_id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `farmer_info` -- ALTER TABLE `farmer_info` MODIFY `farmer_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `logs` -- ALTER TABLE `logs` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `order_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `orders_info` -- ALTER TABLE `orders_info` MODIFY `order_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `order_products` -- ALTER TABLE `order_products` MODIFY `order_pro_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=91; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `product_id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84; -- -- AUTO_INCREMENT for table `user_info` -- ALTER TABLE `user_info` MODIFY `user_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32; -- -- AUTO_INCREMENT for table `user_info_backup` -- ALTER TABLE `user_info_backup` MODIFY `user_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32; -- -- Constraints for dumped tables -- -- -- Constraints for table `orders_info` -- ALTER TABLE `orders_info` ADD CONSTRAINT `user_id` FOREIGN KEY (`user_id`) REFERENCES `user_info` (`user_id`); -- -- Constraints for table `order_products` -- ALTER TABLE `order_products` ADD CONSTRAINT `order_products` FOREIGN KEY (`order_id`) REFERENCES `orders_info` (`order_id`) ON DELETE NO ACTION ON UPDATE CASCADE, ADD CONSTRAINT `product_id` FOREIGN KEY (`product_id`) REFERENCES `products` (`product_id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>scripts/schema/ccpv2/201-apb-65-groups-shared_4.sql /* Copyright (c) 2006-2013 Regents of the University of Minnesota For licensing terms, see the file LICENSE. */ /* This script drops obsolete views and makes views for each of the geofeature_layer feat_types. */ \qecho \qecho This script drops obsolete views and makes views for each of the \qecho geofeature_layer feat_types. \qecho BEGIN TRANSACTION; SET CONSTRAINTS ALL DEFERRED; /* Run this script just once, for all instances of Cyclopath */ SET search_path TO public; /* ==================================================================== */ /* Step (1) -- DROP GEOFEATURE LAYER CONVENIENCE VIEWS */ /* ==================================================================== */ CREATE FUNCTION iv_gf_layer_view_drop_all() RETURNS VOID AS $$ DECLARE feat_type_layer RECORD; BEGIN /* Drop view for each geofeature type */ /* NOTE We removed two rows previously so we UNION 'em back in */ FOR feat_type_layer IN SELECT DISTINCT feat_type FROM geofeature_layer UNION (SELECT 'region_watched' AS feat_type) UNION (SELECT 'region_work_hint' AS feat_type) LOOP EXECUTE 'DROP VIEW gfl_' || feat_type_layer.feat_type || ';'; END LOOP; END; $$ LANGUAGE plpgsql VOLATILE; SELECT iv_gf_layer_view_drop_all(); DROP FUNCTION iv_gf_layer_view_drop_all(); /* ==================================================================== */ /* Step (2) -- Cleanup geofeature_layer table */ /* ==================================================================== */ \qecho \qecho Cleaning up geofeature_layer table \qecho -- FIXME All dependent tables were dropped in the last script? ALTER TABLE geofeature_layer DROP COLUMN draw_class_id; /* ==================================================================== */ /* Step (3) -- REBUILD GEOFEATURE LAYER CONVENIENCE VIEWS */ /* ==================================================================== */ /* C.f. 102-apb-21-aattrs-shared__.sql */ \qecho \qecho Creating geofeature layer convenience views \qecho /* FIXME Is gfl_ a good prefixxing convention? */ CREATE FUNCTION gfl_feat_type_view_create(IN feat_type TEXT) RETURNS VOID AS $$ BEGIN EXECUTE 'CREATE VIEW gfl_' || feat_type || ' AS SELECT * FROM geofeature_layer AS gfl WHERE gfl.feat_type = ''' || feat_type || ''';'; END; $$ LANGUAGE plpgsql VOLATILE; CREATE FUNCTION gfl_feat_type_view_create_all() RETURNS VOID AS $$ DECLARE layer RECORD; BEGIN -- Create view for each geofeature type FOR layer IN SELECT DISTINCT feat_type FROM geofeature_layer LOOP PERFORM gfl_feat_type_view_create(layer.feat_type); END LOOP; END; $$ LANGUAGE plpgsql VOLATILE; SELECT gfl_feat_type_view_create_all(); DROP FUNCTION gfl_feat_type_view_create_all(); DROP FUNCTION gfl_feat_type_view_create(IN feat_type TEXT); /* ==================================================================== */ /* Step (4) -- */ /* ==================================================================== */ /* FIXME: This view is used by CcpC1 MapServer and Flashclient to render * map items. In CcpV2, there are more sophisticated draw param * settings. * * So... delete this view eventually. */ DROP VIEW draw_param_joined; CREATE VIEW draw_param_joined AS SELECT draw_class.id AS draw_class_id, draw_class.text, draw_class.color, draw_param.zoom, draw_param.width, draw_param.label, draw_param.label_size FROM draw_class LEFT OUTER JOIN draw_param ON draw_class.id = draw_param.draw_class_id ORDER BY draw_param.zoom ASC ,draw_class.id ASC ; /* ==================================================================== */ /* Step (n) -- All done! */ /* ==================================================================== */ \qecho \qecho Done! \qecho COMMIT;
<reponame>opitzconsulting/orcas create table varray_table_add ( id number );
<reponame>kwakwaversal/mojolicious-plugin-restify-example<gh_stars>1-10 -- 1 up SET CHECK_FUNCTION_BODIES TO FALSE; CREATE OR REPLACE FUNCTION "trig_stats_update" () RETURNS trigger AS $BODY$ -- Trigger updating the stats table when games are inserted, updated or deleted. -- DECLARE BEGIN IF TG_OP = 'INSERT' OR TG_OP = 'UPDATE' THEN PERFORM func_update_stats(ARRAY[NEW.winner_id, NEW.loser_id]::uuid[]); RETURN NEW; ELSIF TG_OP = 'DELETE' THEN PERFORM func_update_stats(ARRAY[OLD.winner_id, OLD.loser_id]::uuid[]); RETURN OLD; END IF; END; $BODY$ LANGUAGE PLpgSQL CALLED ON NULL INPUT IMMUTABLE EXTERNAL SECURITY DEFINER; CREATE OR REPLACE FUNCTION "func_update_stats" (IN player_ids uuid[]) RETURNS bool AS $BODY$ -- Updates the stats table based on the array of players_id passed. -- DECLARE player_id uuid; r vw_stats%rowtype; -- or record new_stats_id uuid; BEGIN FOREACH player_id IN ARRAY $1 LOOP -- In postgres 9.5 this could be 'ON CONFLICT DO' which is UPSERT. I -- cannot do that because TravisCI is only on 9.4. DELETE FROM stats WHERE stats_id=(SELECT stats_id FROM players WHERE players_id=player_id); SELECT INTO r * FROM vw_stats WHERE players_id=player_id; IF FOUND THEN new_stats_id = gen_random_uuid(); INSERT INTO stats(stats_id, games, wins, losses, avg_score, max_score, updated) VALUES(new_stats_id, r.games, r.wins, r.losses, r.avg_score, r.max_score, NOW()); UPDATE players SET stats_id=new_stats_id WHERE players_id=player_id; ELSE RAISE NOTICE 'Unable to find % in vw_stats', player_id; END IF; END LOOP; RETURN true; END; $BODY$ LANGUAGE PLpgSQL CALLED ON NULL INPUT VOLATILE EXTERNAL SECURITY DEFINER; SET CHECK_FUNCTION_BODIES TO TRUE; DROP TABLE IF EXISTS "players" CASCADE; CREATE TABLE "players" ( "players_id" uuid NOT NULL, "stats_id" uuid, "forename" varchar NOT NULL, "surname" varchar NOT NULL, "nickname" varchar NOT NULL, "email" varchar NOT NULL, "tel_no" varchar NOT NULL, "created" timestamp with time zone NOT NULL DEFAULT NOW(), "updated" timestamp with time zone NOT NULL DEFAULT NOW(), "status" varchar NOT NULL DEFAULT 'Active', CONSTRAINT "pk_players" PRIMARY KEY("players_id"), CONSTRAINT "con_players_status" CHECK(status IN ('Active', 'Deleted', 'Suspended', 'Trashed')) ); COMMENT ON TABLE "players" IS 'Player details (including contact information).'; COMMENT ON COLUMN "players"."players_id" IS 'Primary key. UUIDs are generally better for futureproofing.'; COMMENT ON COLUMN "players"."forename" IS 'The real forename of the member.'; COMMENT ON COLUMN "players"."surname" IS 'The real surname of the member.'; COMMENT ON COLUMN "players"."nickname" IS 'Everyone likes a pseudonym.'; COMMENT ON COLUMN "players"."email" IS 'We need to be able to contact our members.'; COMMENT ON COLUMN "players"."tel_no" IS 'Contact number for the member (upselling?)'; COMMENT ON COLUMN "players"."created" IS 'When the member was created.'; COMMENT ON COLUMN "players"."updated" IS 'When the details were last updated.'; COMMENT ON COLUMN "players"."status" IS 'Active, Deleted, Suspended, Trashed.'; INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('0CA4C5E0-C822-3799-4521-1BF02543E702','Paul','Williams','Kwakwaversal','<EMAIL>','07777 555 555'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('037B2FB6-6573-0F33-B5EA-D902413FE805','Demetria','Barr','Rylee','<EMAIL>','(0111) 172 1409'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('87431F35-F5F8-8642-D1B2-35C8880016D0','Karina','Washington','Isabelle','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F9E93A6A-72BE-6B68-3836-E71B57662A0B','Zena','Manning','Amela','<EMAIL>','070 1525 9341'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('A1395323-A908-3608-3F84-2AC3BCB2E9AF','Amena','Raymond','Germaine','<EMAIL>','(011963) 33430'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('B71D8E79-546F-6AFB-573B-EB76C8F568FB','Marcia','Serrano','Yen','<EMAIL>','056 9342 3939'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('C26D94A0-28DC-973C-4185-642077F32996','Veda','Macias','Tamekah','<EMAIL>','(014673) 43897'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('DE4479E2-4BA0-8129-129C-9EE55901EFFB','Maya','Castillo','Carter','<EMAIL>','(029) 0611 6699'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('A5B40FB1-CAEA-1E70-C2BA-73551D8A9716','Rafael','Paul','Ocean','<EMAIL>','(01336) 468131'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('DB2CC87A-E63A-1890-3611-C2A9BBDCBC39','Rachel','Wilder','Reese','<EMAIL>','0800 214448'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('7EB00F48-3B90-B8EB-5BD2-E30D5C51D4B0','Chava','Fischer','Carissa','<EMAIL>','0500 276665'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('104AD2DA-3EBD-AFB7-6B55-D24C3C20B5C9','Dale','Stewart','Willow','<EMAIL>','0384 190 5916'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('EF2BAAA0-39F0-8FC9-3904-616FB8BCA8C7','Beck','Mccullough','Wyoming','<EMAIL>','0845 46 49'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('AACE42D3-5C42-335F-4ACB-F4FC90F063AB','Valentine','Ford','Bertha','<EMAIL>','0964 726 8749'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('498B7460-59FA-CBE2-4C3E-81F8AC39D291','Sigourney','Sims','Hedley','<EMAIL>','0845 46 44'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('5F575DF0-5C38-7BA9-A6B2-A5BEDB440331','Yasir','Dean','Cameron','<EMAIL>','0395 272 4040'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('4B9C71DA-84F2-E00D-0E2E-6EEB12B7EAE4','Gillian','Hogan','Karen','ut.nulla.Cras<EMAIL>','(019141) 23859'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('8D7AE85A-ED77-EAF2-EDFF-A26025189974','Libby','Huber','Zephr','<EMAIL>','0313 607 1838'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('719EBE98-0746-B686-FCBE-CD4E395C2742','Patricia','William','Anthony','<EMAIL>','0845 46 49'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('195B97BF-9B00-62C9-A9F0-C74DB1910E34','Amethyst','Hendricks','Giacomo','<EMAIL>','070 6579 1488'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('4D36F8E2-CEDA-EE6D-864E-3CBA6F0FC1FA','MacKensie','Baker','Cassidy','<EMAIL>','(0113) 136 7221'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('853D2888-CA67-0501-8C3E-A6A99196D54D','Nissim','Glass','Yolanda','<EMAIL>','056 1931 5215'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('A0A52D15-905E-72EC-DC98-B5CF82A29325','Hamish','Fisher','Denton','<EMAIL>','(0161) 193 0717'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('CBA1DF8F-6DAA-D2AD-2ED6-3BD85A975828','Dean','Sawyer','Bianca','<EMAIL>','(014143) 82778'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('948EFB16-7F41-3998-66E5-A7305C2D130F','Amity','Fleming','Vanna','<EMAIL>','0845 46 48'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('0C4C587B-BDB7-B050-9FA6-3D85D67F9452','Veronica','Lott','Norman','<EMAIL>','(0171) 955 3674'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('B742C3D9-4119-6DEA-C9BA-66238CB5BDC9','Nayda','Cochran','Xantha','<EMAIL>','07545 389177'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('88017541-82C1-9669-9CF4-3DAA84B41A7D','Mercedes','Bernard','Jeanette','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('158C9E1D-E92F-1EAC-BF56-4663F90A4267','Giselle','Bright','Caesar','<EMAIL>','076 6745 1571'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('3902C6A1-9753-6FDE-3FD2-557BBF0FA2CD','Ivor','Mayo','Daria','<EMAIL>','07927 549080'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('98BAE89A-FC6F-E93F-8620-B0484ABD500D','Kermit','Roberson','Alexandra','<EMAIL>','07624 629632'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('D8BC29A0-C116-8774-AA5B-CF44AF872B9A','Aimee','Booker','Courtney','<EMAIL>','0900 895 6795'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('490E62FB-C6E4-50B0-F3F8-3EC5F75B49FF','Bryar','Tillman','Hilary','<EMAIL>','0900 726 3864'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('E32DE969-8A0B-C96E-86C1-32C35BEF715B','Nomlanga','Jackson','Conan','<EMAIL>','(016520) 43708'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('5987BAE0-4293-40A4-B362-335D2BF2B713','Quinlan','Wolf','Fay','<EMAIL>','0845 46 43'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6E6A4316-04C3-5C1D-215C-17D6033A8DE3','Xaviera','Wilder','Lawrence','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('8D88B2C1-A178-9D89-2F3A-4886B189A089','Marcia','Brown','Adam','<EMAIL>','076 8484 0578'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('9BD78D36-2DBB-6E2F-2B29-B313B3469A7D','Lara','Puckett','Iona','<EMAIL>','0845 46 44'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6C292E9B-AB36-7D68-375F-E54A0CE2FF1E','Mona','Callahan','Evangeline','<EMAIL>','07236 608779'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('60FE30C6-7F8E-A863-667D-48C16B830F0F','Rudyard','Shelton','Emerson','<EMAIL>','07624 100334'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('B861066F-A837-2B52-23B4-3D2E3EEDAF81','Hyacinth','Ayala','Ferris','<EMAIL>','0873 892 6998'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('8E4C8AED-F943-B034-8C3E-90F2B051F017','Quamar','English','Cassady','<EMAIL>','056 8770 0864'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('94DD0AEE-D2B5-E70D-3E4C-1C1A8065551A','Rafael','Golden','Ori','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('EA2ACEFB-BA5C-C0E1-2A66-A3123BA33015','Preston','Bradford','Andrew','<EMAIL>','0800 917465'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('DC913A93-62CB-7A4F-D8EA-8E9672200D09','Silas','Walker','William','<EMAIL>','0500 571166'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F1F6AF32-524A-D242-DF76-EAB9A6C7A190','Thor','Vaughn','Amal','<EMAIL>','(0131) 642 6265'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('CD13AE3C-9FCF-BBB7-7132-31494276C399','Camilla','Tucker','Iliana','<EMAIL>','056 7819 3263'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('3EB770D3-21AD-7E9D-823E-FD52A056DFA4','Ryder','Tran','Gail','<EMAIL>','(01422) 992874'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F3CC55B1-350C-A805-B3DB-6E1EA351FA38','Aaron','Wilder','Halee','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6E75E29E-2073-CE56-000F-148FAB4ADC06','Sydnee','Summers','Wylie','<EMAIL>','(0121) 566 9674'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('ED665153-B471-2AF4-0966-2BD2986B8F34','Ariel','Baldwin','Kathleen','<EMAIL>','07624 152425'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6E178A3A-22E9-0C33-860F-4D45602BB5B1','Kitra','Cox','Imelda','<EMAIL>','056 7796 1238'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('C46188D7-9E90-0D7D-76EF-67EFE2A64788','Sebastian','Vinson','Rina','<EMAIL>','(01631) 01042'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('3CAD818E-CAFD-1C21-2C75-44B5B4AE4F3A','Idona','Cantrell','Avye','<EMAIL>','070 8057 4081'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('C0EC3DD8-8BCA-C934-CCFE-B24B090EDCF9','Shelby','Bowen','Karyn','<EMAIL>','0845 46 43'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('379504D9-8306-0600-44C5-63C6A74B8A2C','Clementine','Marquez','Alea','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6AEDA4A0-044A-86D0-3C18-860D1E1537B8','Nola','Kaufman','Paki','<EMAIL>','0800 072893'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('E458A999-829B-A95D-DA82-22C2289EEAF4','Timothy','Cline','John','<EMAIL>','(018731) 11832'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('A380BA35-B563-D891-A41E-738FA272A460','Donovan','Page','Hayden','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F00C5BD2-C425-07B9-9B7C-302CE0899DDE','Leandra','Gonzales','Graham','<EMAIL>','076 0180 3748'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('86F8F599-760C-458C-7FAE-9CBAB35BF5A9','Linda','Elliott','Dai','<EMAIL>','0353 579 1243'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('C0CE6100-B0A9-83E4-704F-E9BF2D5173F8','Grace','Elliott','Maggy','<EMAIL>','(01084) 49394'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('94122F27-DBE5-CD80-C993-9DAF58119E80','Whitney','Clements','Kirby','<EMAIL>','076 3401 3923'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('5F8397B0-56FB-BD16-0522-FAEF1A2FA713','Zena','Buchanan','Blossom','<EMAIL>','0820 116 0785'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('9FA4EE37-EEA6-AFDB-EFFE-E7EA584A6F9E','Heidi','Galloway','Giselle','<EMAIL>','0800 237348'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('9459F41A-B827-69EE-7C7B-C441DCA1575B','Todd','Callahan','Cherokee','<EMAIL>','(01310) 94710'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('1237C7CA-F1B8-1012-848D-7521B9B81974','Cole','Carpenter','Hilel','<EMAIL>','0500 687809'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6D996998-5528-7DBB-08F8-8220BA3BA5E2','Logan','Salinas','MacKensie','<EMAIL>','056 4458 7905'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('C5909D1F-E962-04E5-5E35-EC1473AC8097','Jescie','Gilmore','Constance','<EMAIL>','(016977) 1449'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6CC7EBE7-F0D0-DBAC-ED50-A458B3BA61F0','Germaine','Stark','Sylvia','<EMAIL>','(016977) 9764'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('FC4DD244-5FAD-ACA2-A7FA-30D36CE83551','Jaquelyn','Matthews','Gay','<EMAIL>','(023) 8520 7520'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('8E87AA29-B88F-D773-56F0-53F86836719A','Tucker','Lang','Bryar','<EMAIL>','0800 268 8455'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('7760E724-9496-5936-E5D1-1E8EC3F84013','Holly','Lott','Maile','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('3F5D2C20-0F35-76A3-351D-3230D1CC80DF','Leah','Mcmillan','Uma','<EMAIL>','(01881) 40486'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('32B33816-A2AB-8E98-6A9A-8157A0DB514F','Tasha','Trujillo','Guinevere','<EMAIL>','(013231) 96140'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('1D3FCEF9-EBBE-FEC3-BC4B-EF930CE0B9CD','Orson','Fernandez','Rooney','<EMAIL>','07624 886205'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('479C551F-E6CF-F81D-1687-0ED5686D3485','Aurelia','Oneil','Victoria','<EMAIL>','0500 463864'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('7C2C5EE4-89B2-73B8-5357-5DC1819EEAC8','Maisie','Wong','Risa','<EMAIL>','076 8172 4069'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('4E9168FC-5CB7-F2D7-485D-E587230CEC60','Christine','Sanford','Keaton','<EMAIL>','0387 013 6742'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('59711F02-AF11-BFC6-0EDD-45D5F2ACF098','Josiah','Greer','Travis','<EMAIL>','0800 1111'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('1493596C-1BBC-EA79-1D58-03C5FB12744B','Ronan','Farley','Hermione','<EMAIL>','(01411) 74214'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('86AFEDA5-457D-5FF4-3661-BAEB19611B1B','Kellie','Ellis','Ingrid','<EMAIL>','0851 120 7126'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F4CC22E2-BCC2-9028-9419-FD846062480B','Nora','Goodwin','Ora','<EMAIL>','070 7424 7008'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('C8165AED-388E-9010-9C16-5E36867808A4','Phoebe','Gutierrez','Urielle','<EMAIL>','0391 450 3890'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('83AC3CF3-E233-EC36-B67F-2EE870F44F3C','Jane','Carroll','Nero','<EMAIL>','0800 707 3609'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('8B4ADA67-F831-045D-BBE8-A252DBDFAAC9','Knox','Bolton','Zenaida','<EMAIL>','0500 063572'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('A1EA1BA2-DE7A-D97F-47BE-904B0A3A9C85','Whilemina','Brewer','Virginia','<EMAIL>','07624 505173'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F60F4D74-9190-BA75-A6AD-5EDE01A6EC9B','Gillian','Hurst','Lana','<EMAIL>','0915 544 4462'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('1FA9B7B2-FF6F-F0AF-E412-03D89BF3D5FE','Macey','Burgess','Blossom','<EMAIL>','(012807) 72513'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('756A748A-89D4-D520-C1AF-9DDF4C4A21F6','Salvador','Stevenson','Adrian','<EMAIL>','(01747) 504843'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('6971F4EC-A059-091B-3F6D-46500AC5112D','Allen','Meadows','Sade','<EMAIL>','07478 134651'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('5A1403E5-1851-6F9A-1878-72381C62859A','Ezra','Barton','Dorothy','<EMAIL>','055 7698 6287'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('F2D878BA-35E9-F127-DAEB-8A4593035522','Sydney','Ruiz','Ingrid','<EMAIL>','076 4779 6400'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('89CDCA49-CBD3-3C34-7522-C268B58285EC','Walter','Maddox','Stephanie','<EMAIL>','070 2355 8562'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('70EBC331-19B8-FA87-66FC-CE87A05A13A8','Chloe','Joyce','Eliana','<EMAIL>','056 5603 2973'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('26C9759A-106B-9B16-0DB4-C10A865EB355','Conan','Duffy','Jakeem','<EMAIL>','(01487) 77025'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('1E37A2AF-D726-6AAC-6ACC-A1804A343BD9','Lesley','Leon','Martha','<EMAIL>','070 7887 3992'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('A18889F4-7393-2673-B421-683938317AA3','Maisie','Steele','Kyla','<EMAIL>','(01823) 13687'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('DB8E7302-B6C6-951D-187D-225B575D9264','Nelle','Ingram','Dieter','<EMAIL>','056 8774 0436'); INSERT INTO "players" (players_id,forename,surname,nickname,email,tel_no) VALUES ('09F7CC96-5CCC-9893-67F1-2AA92C6A4307','Shea','Jarvis','Austin','<EMAIL>','(027) 7843 1961'); DROP TABLE IF EXISTS "games" CASCADE; CREATE TABLE "games" ( "games_id" uuid NOT NULL, "winner_id" uuid NOT NULL, "winner_score" int4 NOT NULL DEFAULT 0, "loser_id" uuid NOT NULL, "loser_score" int4 NOT NULL DEFAULT 0, "started" timestamp with time zone NOT NULL DEFAULT NOW(), "finished" timestamp with time zone NOT NULL DEFAULT NOW(), CONSTRAINT "pk_games" PRIMARY KEY("games_id") ); CREATE INDEX "idx_games_winner_id" ON "games" ( "winner_id" ); CREATE INDEX "idx_games_loser_id" ON "games" ( "loser_id" ); CREATE TRIGGER "trig_games_change" AFTER INSERT OR UPDATE OR DELETE ON "games" FOR EACH ROW EXECUTE PROCEDURE "trig_stats_update"(); COMMENT ON TABLE "games" IS 'Results of all the scrabble games.'; COMMENT ON COLUMN "games"."winner_id" IS 'Winner uuid.'; COMMENT ON COLUMN "games"."winner_score" IS 'Winner''s score.'; COMMENT ON COLUMN "games"."loser_id" IS 'Loser uuid.'; COMMENT ON COLUMN "games"."loser_score" IS 'Loser''s score.'; COMMENT ON COLUMN "games"."started" IS 'When the game was started.'; COMMENT ON COLUMN "games"."finished" IS 'When the game finished.'; DROP TABLE IF EXISTS "stats" CASCADE; CREATE TABLE "stats" ( "stats_id" uuid NOT NULL DEFAULT gen_random_uuid(), "games" int4 NOT NULL DEFAULT 0, "wins" int4 NOT NULL DEFAULT 0, "losses" int4 NOT NULL DEFAULT 0, "avg_score" int4 NOT NULL DEFAULT 0, "max_score" int4 NOT NULL DEFAULT 0, "updated" timestamp with time zone NOT NULL DEFAULT NOW(), CONSTRAINT "pk_stats" PRIMARY KEY("stats_id") ); ALTER TABLE "players" ADD CONSTRAINT "fk_players_to_stats" FOREIGN KEY ("stats_id") REFERENCES "stats"("stats_id") MATCH SIMPLE ON DELETE SET NULL ON UPDATE CASCADE NOT DEFERRABLE; ALTER TABLE "games" ADD CONSTRAINT "fk_games_winner_to_players" FOREIGN KEY ("winner_id") REFERENCES "players"("players_id") MATCH SIMPLE ON DELETE NO ACTION ON UPDATE NO ACTION NOT DEFERRABLE; ALTER TABLE "games" ADD CONSTRAINT "fk_games_loser_to_players" FOREIGN KEY ("loser_id") REFERENCES "players"("players_id") MATCH SIMPLE ON DELETE NO ACTION ON UPDATE NO ACTION NOT DEFERRABLE; CREATE OR REPLACE VIEW "vw_stats" AS SELECT players_id, COUNT(*) AS games, SUM(CASE WHEN players_id=winner_id THEN 1 ELSE 0 END) AS wins, SUM(CASE WHEN players_id=loser_id THEN 1 ELSE 0 END) AS losses, AVG(CASE WHEN players_id=winner_id THEN winner_score WHEN players_id=loser_id THEN loser_score ELSE 0 END)::INTEGER AS avg_score, MAX(CASE WHEN players_id=winner_id THEN winner_score WHEN players_id=loser_id THEN loser_score ELSE 0 END)::INTEGER AS max_score FROM players p JOIN games g ON p.players_id=g.winner_id OR p.players_id=g.loser_id GROUP BY 1; COMMENT ON VIEW "vw_stats" IS 'Used to help build the stats table.'; -- 1 down DROP TABLE IF EXISTS "games" CASCADE; DROP TABLE IF EXISTS "players" CASCADE; DROP TABLE IF EXISTS "stats" CASCADE; DROP VIEW IF EXISTS "vw_stats" CASCADE;
-- // CLOUD-76564 update gateway table -- Migration SQL that makes the change goes here. ALTER TABLE gateway ADD COLUMN gatewaytype varchar(255); ALTER TABLE gateway ADD COLUMN ssotype varchar(255); UPDATE gateway SET gatewaytype = 'INDIVIDUAL'; UPDATE gateway SET ssotype = 'NONE'; ALTER TABLE gateway ALTER COLUMN gatewaytype SET NOT NULL; ALTER TABLE gateway ALTER COLUMN ssotype SET NOT NULL; -- //@UNDO -- SQL to undo the change goes here. ALTER TABLE gateway DROP COLUMN gatewaytype; ALTER TABLE gateway DROP COLUMN ssotype;
<reponame>uk-gov-mirror/SkillsFundingAgency.das-data-management CREATE TABLE [ASData_PL].[FAT2_ProviderStandardLocation] ( [StandardId] int NOT NULL, [UkPrn] int NOT NULL, [LocationId] int NOT NULL, [DeliveryModes] varchar(260) NOT NULL, [Radius] decimal(18,0) NOT NULL, [National] bit NOT NULL, [AsDm_UpdatedDateTime] [datetime2](7) DEFAULT (getdate()) )
-- -------------------------------------------------------- -- Host: 127.0.0.1 -- Server Version: 10.4.17-MariaDB - mariadb.org binary distribution -- Server Betriebssystem: Win64 -- HeidiSQL Version: 11.2.0.6213 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- Exportiere Datenbank Struktur für webspace CREATE DATABASE IF NOT EXISTS `webspace` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `webspace`; -- Exportiere Struktur von Tabelle webspace.changelog CREATE TABLE IF NOT EXISTS `changelog` ( `id` int(11) NOT NULL AUTO_INCREMENT, `headline` varchar(255) NOT NULL, `description` text NOT NULL, `old_version` varchar(10) NOT NULL, `new_version` varchar(10) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- Exportiere Daten aus Tabelle webspace.changelog: ~3 rows (ungefähr) /*!40000 ALTER TABLE `changelog` DISABLE KEYS */; INSERT INTO `changelog` (`id`, `headline`, `description`, `old_version`, `new_version`, `timestamp`) VALUES (1, 'Erster Changelog Eintrag', 'Dies ist der erste Changelog Eintrag für diese Webseite. Es werden weitere folgen, wenn es Neuerungen gibt', 'v0.0.0', 'v0.1.0', '2021-03-21 20:41:47'), (5, 'awd', 'awd', 'awd', 'awd', '2021-06-15 17:11:23'), (6, 'awd11', 'awd1', 'awd1', 'awd1', '2021-06-15 17:12:01'); /*!40000 ALTER TABLE `changelog` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.github_repos_documentation CREATE TABLE IF NOT EXISTS `github_repos_documentation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `github_id` int(11) NOT NULL, `creater_user_id` varchar(255) NOT NULL, `message` text NOT NULL, `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; -- Exportiere Daten aus Tabelle webspace.github_repos_documentation: ~2 rows (ungefähr) /*!40000 ALTER TABLE `github_repos_documentation` DISABLE KEYS */; INSERT INTO `github_repos_documentation` (`id`, `github_id`, `creater_user_id`, `message`, `timestamp`) VALUES (1, 190927017, '1', 'Test EIntrag #1', '2021-03-22 21:30:30'), (2, 190927017, '1', 'Test Eintrag #2', '2021-03-22 21:30:40'); /*!40000 ALTER TABLE `github_repos_documentation` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.permissions CREATE TABLE IF NOT EXISTS `permissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permission_name` varchar(255) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`), UNIQUE KEY `Schlüssel 2` (`permission_name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- Exportiere Daten aus Tabelle webspace.permissions: ~0 rows (ungefähr) /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` (`id`, `permission_name`, `timestamp`) VALUES (1, 'admin', '2021-04-14 19:33:21'); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.techs_sub CREATE TABLE IF NOT EXISTS `techs_sub` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parrent_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; -- Exportiere Daten aus Tabelle webspace.techs_sub: ~6 rows (ungefähr) /*!40000 ALTER TABLE `techs_sub` DISABLE KEYS */; INSERT INTO `techs_sub` (`id`, `parrent_id`, `name`, `timestamp`) VALUES (3, 5, 'Plain JavaScript', '2021-03-21 17:42:41'), (4, 5, 'ReactJs', '2021-03-21 17:42:51'), (5, 5, 'ExpressJs', '2021-03-21 17:42:51'), (6, 9, 'CSS', '2021-03-21 17:43:06'), (7, 9, 'Less', '2021-03-21 17:43:10'), (8, 4, 'MariaDB', '2021-03-21 17:43:45'); /*!40000 ALTER TABLE `techs_sub` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.techs_title CREATE TABLE IF NOT EXISTS `techs_title` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; -- Exportiere Daten aus Tabelle webspace.techs_title: ~6 rows (ungefähr) /*!40000 ALTER TABLE `techs_title` DISABLE KEYS */; INSERT INTO `techs_title` (`id`, `name`, `timestamp`) VALUES (1, 'PHP', '2021-03-20 18:38:19'), (2, 'Java', '2021-03-20 18:38:35'), (3, 'C++', '2021-03-20 18:38:40'), (4, 'SQL', '2021-03-20 18:38:45'), (5, 'JavaScript', '2021-03-20 18:53:04'), (9, 'CSS', '2021-03-20 19:01:33'); /*!40000 ALTER TABLE `techs_title` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.user CREATE TABLE IF NOT EXISTS `user` ( `id` varchar(100) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `admin` int(11) NOT NULL DEFAULT 0, `create_time` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Exportiere Daten aus Tabelle webspace.user: ~0 rows (ungefähr) /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` (`id`, `username`, `password`, `email`, `admin`, `create_time`) VALUES ('b4ncd1Q0HBWLlah1pRjm0yGue', 'eike', <PASSWORD>', '<EMAIL>', 1, '2021-02-09 21:09:05'); /*!40000 ALTER TABLE `user` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.user_permissions CREATE TABLE IF NOT EXISTS `user_permissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permission_id` int(11) NOT NULL, `user_id` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `Schlüssel 2` (`permission_id`,`user_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- Exportiere Daten aus Tabelle webspace.user_permissions: ~0 rows (ungefähr) /*!40000 ALTER TABLE `user_permissions` DISABLE KEYS */; INSERT INTO `user_permissions` (`id`, `permission_id`, `user_id`) VALUES (1, 1, 'b4ncd1Q0HBWLlah1pRjm0yGue'); /*!40000 ALTER TABLE `user_permissions` ENABLE KEYS */; -- Exportiere Struktur von Tabelle webspace.user_token CREATE TABLE IF NOT EXISTS `user_token` ( `user_id` varchar(50) NOT NULL, `token` varchar(100) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`user_id`), UNIQUE KEY `Schlüssel 2` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Exportiere Daten aus Tabelle webspace.user_token: ~1 rows (ungefähr) /*!40000 ALTER TABLE `user_token` DISABLE KEYS */; INSERT INTO `user_token` (`user_id`, `token`, `timestamp`) VALUES ('<KEY>', '<KEY>', '2021-04-13 14:32:00'); /*!40000 ALTER TABLE `user_token` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
<reponame>socheatha/bss_clinic_por_rotha<filename>clinic (4).sql /* Navicat MySQL Data Transfer Source Server : Heroku DB Source Server Version : 80020 Source Host : u6354r3es4optspf.cbetxkdyhwsb.us-east-1.rds.amazonaws.com:3306 Source Database : i70znixrntrouc7k Target Server Type : MYSQL Target Server Version : 80020 File Encoding : 65001 Date: 2021-03-26 20:13:36 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `districts` -- ---------------------------- DROP TABLE IF EXISTS `districts`; CREATE TABLE `districts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name_en` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `province_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `districts_province_id_foreign` (`province_id`), CONSTRAINT `districts_province_id_foreign` FOREIGN KEY (`province_id`) REFERENCES `provinces` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of districts -- ---------------------------- INSERT INTO `districts` VALUES ('1', 'មង្គលបូរី', 'Mungkul Borey', '0102', '1', null, null); INSERT INTO `districts` VALUES ('2', 'ភ្នំស្រុក', 'Phnum Srok', '0103', '1', null, null); INSERT INTO `districts` VALUES ('3', 'ព្រះនេត្រព្រះ', 'Preah Netr Preah', '0104', '1', null, null); INSERT INTO `districts` VALUES ('4', 'អូរជ្រៅ', 'Ou Chrov', '0105', '1', null, null); INSERT INTO `districts` VALUES ('5', 'សិរីសោភ័ណ', 'Serey Sophorn', '0106', '1', null, null); INSERT INTO `districts` VALUES ('6', 'ថ្មពួក', 'Thma Puok', '0107', '1', null, null); INSERT INTO `districts` VALUES ('7', 'ស្វាយចេក', 'Svay Chek', '0108', '1', null, null); INSERT INTO `districts` VALUES ('8', 'ម៉ាឡៃ', 'Malai', '0109', '1', null, null); INSERT INTO `districts` VALUES ('9', 'បាណន់', 'Banan', '0201', '2', null, null); INSERT INTO `districts` VALUES ('10', 'ថ្មគោល', 'Thmor Koul', '0202', '2', null, null); INSERT INTO `districts` VALUES ('11', 'បវេល', 'Bavel', '0204', '2', null, null); INSERT INTO `districts` VALUES ('12', 'ឯកភ្នំ', 'Aek Phnum', '0205', '2', null, null); INSERT INTO `districts` VALUES ('13', 'មោងឫស្សី', 'Maung Russey', '0206', '2', null, null); INSERT INTO `districts` VALUES ('14', 'រុក្ខគីរី', 'Rukhakiri', '0214', '2', null, null); INSERT INTO `districts` VALUES ('15', 'រតនមណ្ឌល', 'Ratanak Mondul', '0207', '2', null, null); INSERT INTO `districts` VALUES ('16', 'សង្កែ', 'Sangke', '0208', '2', null, null); INSERT INTO `districts` VALUES ('17', 'សំឡូត', 'Samlaut', '0209', '2', null, null); INSERT INTO `districts` VALUES ('18', 'សំពៅលូន', 'Sampov Loun', '0210', '2', null, null); INSERT INTO `districts` VALUES ('19', 'ភ្នំព្រឹក', 'Phnum Proek', '0211', '2', null, null); INSERT INTO `districts` VALUES ('20', 'កំរៀង', 'Kamreang', '0212', '2', null, null); INSERT INTO `districts` VALUES ('21', 'គាស់ក្រឡ', 'Koas Krala', '0213', '2', null, null); INSERT INTO `districts` VALUES ('22', 'បាត់ដំបង', 'Battambang', '0203', '2', null, null); INSERT INTO `districts` VALUES ('23', 'ប៉ោយប៉ែត', 'Poipet', '0110', '1', null, null); INSERT INTO `districts` VALUES ('24', 'កំពង់ចាម', 'Kampong Cham', '0304', '3', null, null); INSERT INTO `districts` VALUES ('25', 'បាធាយ​', 'Batheay', '0301', '3', null, null); INSERT INTO `districts` VALUES ('26', 'ចំការលើ​', 'Chamkar Leu', '0302', '3', null, null); INSERT INTO `districts` VALUES ('27', 'ជើងព្រៃ​', 'Cheung Prey', '0303', '3', null, null); INSERT INTO `districts` VALUES ('28', 'កំពង់សៀម​', 'Kampong Siem', '0305', '3', null, null); INSERT INTO `districts` VALUES ('29', 'កងមាស​', 'Kang Meas', '0306', '3', null, null); INSERT INTO `districts` VALUES ('30', 'កោះសូទិន​', 'Kaoh Soutin', '0307', '3', null, null); INSERT INTO `districts` VALUES ('31', 'ព្រៃឈរ​', 'Prey Chhor', '0308', '3', null, null); INSERT INTO `districts` VALUES ('32', 'ស្រីសន្ធរ​', 'Srey Santhor', '0309', '3', null, null); INSERT INTO `districts` VALUES ('33', 'ស្ទឹងត្រង់', 'Stueng Trang', '0310', '3', null, null); INSERT INTO `districts` VALUES ('34', 'បរិបូណ៌', 'Baribour', '0401', '4', null, null); INSERT INTO `districts` VALUES ('35', 'ជលគីរី', 'Chol Kiri', '0402', '4', null, null); INSERT INTO `districts` VALUES ('36', 'កំពង់ឆ្នាំង', 'Kampong Chhnang', '0403', '4', null, null); INSERT INTO `districts` VALUES ('37', 'កំពង់លែង', 'Kampong Leaeng', '0404', '4', null, null); INSERT INTO `districts` VALUES ('38', 'កំពង់ត្រឡាច', 'Kampong Tralach', '0405', '4', null, null); INSERT INTO `districts` VALUES ('39', 'រលាប្អៀរ', 'Rolea B\'ier', '0406', '4', null, null); INSERT INTO `districts` VALUES ('40', 'សាមគ្គីមានជ័យ', 'Sameakki Mean Chey', '0407', '4', null, null); INSERT INTO `districts` VALUES ('41', 'ទឹកផុស', 'Tuek Phos', '0408', '4', null, null); INSERT INTO `districts` VALUES ('42', 'បរសេដ្ឋ', 'Borsedth', '0501', '5', null, null); INSERT INTO `districts` VALUES ('43', 'ច្បារមន', 'Chbar Mon', '0502', '5', null, null); INSERT INTO `districts` VALUES ('44', 'គងពិសី', 'Kong Pisei', '0503', '5', null, null); INSERT INTO `districts` VALUES ('45', 'ឱរ៉ាល់', 'Aoral', '0504', '5', null, null); INSERT INTO `districts` VALUES ('46', 'ឧដុង្គ', 'Odongk', '0505', '5', null, null); INSERT INTO `districts` VALUES ('47', 'ភ្នំស្រួច', 'Phnum Sruoch', '0506', '5', null, null); INSERT INTO `districts` VALUES ('48', 'សំរោងទង', 'Samraong Tong', '0507', '5', null, null); INSERT INTO `districts` VALUES ('49', 'ថ្ពង', 'Thpong', '0508', '5', null, null); INSERT INTO `districts` VALUES ('50', 'បារាយណ៍', 'Baray', '0601', '6', null, null); INSERT INTO `districts` VALUES ('51', 'កំពង់ស្វាយ', 'Kampong Svay', '0602', '6', null, null); INSERT INTO `districts` VALUES ('52', 'ស្ទឹងសែន', 'Stueng Saen', '0603', '6', null, null); INSERT INTO `districts` VALUES ('53', 'ប្រាសាទបល្ល័ង្ក', 'Prasat Balang', '0604', '6', null, null); INSERT INTO `districts` VALUES ('54', 'ប្រាសាទសំបូរ', 'Prasat Sambour', '0605', '6', null, null); INSERT INTO `districts` VALUES ('55', 'សណ្ដាន់', 'Sandan', '0606', '6', null, null); INSERT INTO `districts` VALUES ('56', 'សន្ទុក', 'Santuk', '0607', '6', null, null); INSERT INTO `districts` VALUES ('57', 'ស្ទោង', 'Stoung', '0608', '6', null, null); INSERT INTO `districts` VALUES ('58', 'អង្គរជ័យ', 'Angkor Chey', '', '7', null, null); INSERT INTO `districts` VALUES ('59', 'បន្ទាយមាស', 'Bantay Meas', '', '7', null, null); INSERT INTO `districts` VALUES ('60', 'ឈូក', 'Chouk', '', '7', null, null); INSERT INTO `districts` VALUES ('61', 'ជុំគីរី', 'Chum Kiri', '', '7', null, null); INSERT INTO `districts` VALUES ('62', 'ដងទង់', 'Dong Tung', '', '7', null, null); INSERT INTO `districts` VALUES ('63', 'កំពង់ត្រាច', 'Kampong Trach', '', '7', null, null); INSERT INTO `districts` VALUES ('64', 'កំពត', 'Kampot', '', '7', null, null); INSERT INTO `districts` VALUES ('65', 'ទឹកឈូ', 'Tuek Chu', '', '7', null, null); INSERT INTO `districts` VALUES ('66', 'កណ្ដាលស្ទឹង', 'Kandal Stueng', '0801', '8', null, null); INSERT INTO `districts` VALUES ('67', 'កៀនស្វាយ', 'Kien Svay', '0802', '8', null, null); INSERT INTO `districts` VALUES ('68', 'ខ្សាច់កណ្តាល', 'Khsach Kandal', '0803', '8', null, null); INSERT INTO `districts` VALUES ('69', 'កោះធំ', 'Kaoh Thum', '0804', '8', null, null); INSERT INTO `districts` VALUES ('70', 'លើកដែក', 'Leuk Daek', '0805', '8', null, null); INSERT INTO `districts` VALUES ('71', 'ល្វាឯម', 'Lvea Aem', '0806', '8', null, null); INSERT INTO `districts` VALUES ('72', 'មុខកំពូល', 'Mukh Kampul', '0807', '8', null, null); INSERT INTO `districts` VALUES ('73', 'អង្គស្នួល', 'Angk Snuol', '0808', '8', null, null); INSERT INTO `districts` VALUES ('74', 'ពញាឮ', 'Ponhea Lueu', '0809', '8', null, null); INSERT INTO `districts` VALUES ('75', 'ស្អាង', 'S\'ang', '0810', '8', null, null); INSERT INTO `districts` VALUES ('76', 'តាខ្មៅ', 'Ta Khmau', '0811', '8', null, null); INSERT INTO `districts` VALUES ('77', 'បទុមសាគរ', 'Botum Sakor', '0901', '9', null, null); INSERT INTO `districts` VALUES ('78', 'គីរីសាគរ', 'Kiri Sakor', '0902', '9', null, null); INSERT INTO `districts` VALUES ('79', 'កោះកុង', 'Koh Kong', '0903', '9', null, null); INSERT INTO `districts` VALUES ('80', 'ស្មាច់មានជ័យ', 'Smach Mean Chey', '0904', '9', null, null); INSERT INTO `districts` VALUES ('81', 'មណ្ឌលសីមា', 'Mondol Seima', '0905', '9', null, null); INSERT INTO `districts` VALUES ('82', 'ស្រែអំបិល', 'Srae Ambel', '0906', '9', null, null); INSERT INTO `districts` VALUES ('83', 'ថ្មបាំង', 'Thmo Bang', '0907', '9', null, null); INSERT INTO `districts` VALUES ('84', 'កំពង់សិលា', 'Kampong Seila', '0908', '9', null, null); INSERT INTO `districts` VALUES ('85', 'ឆ្លូង​', 'Chhloung', '1001', '10', null, null); INSERT INTO `districts` VALUES ('86', 'ក្រចេះ', 'Kratie', '1002', '10', null, null); INSERT INTO `districts` VALUES ('87', 'ព្រែកប្រសព្វ', 'Preaek Prasab', '1003', '10', null, null); INSERT INTO `districts` VALUES ('88', 'សំបូរ', 'Sambour', '1004', '10', null, null); INSERT INTO `districts` VALUES ('89', 'ស្នួល', 'Snuol', '1005', '10', null, null); INSERT INTO `districts` VALUES ('90', 'ចិត្របុរី', 'Chet Borei', '1006', '10', null, null); INSERT INTO `districts` VALUES ('91', 'ស្រុកកែវសីមា', 'Kaev Seima', '1101', '11', null, null); INSERT INTO `districts` VALUES ('92', 'ស្រុកកោះញែក', 'Kaoh Nheaek', '1102', '11', null, null); INSERT INTO `districts` VALUES ('93', 'ស្រុកអូររាំង', 'Ou Reang', '1103', '11', null, null); INSERT INTO `districts` VALUES ('94', 'ស្រុកពេជ្រាដា', 'Pech Chreada', '1104', '11', null, null); INSERT INTO `districts` VALUES ('95', 'សែនមនោរម្យ', 'Senmonorom', '1105', '11', null, null); INSERT INTO `districts` VALUES ('96', 'ចំការមន', 'Chamkar Mon', '', '12', null, null); INSERT INTO `districts` VALUES ('97', 'ដូនពេញ', 'Doun Penh', '', '12', null, null); INSERT INTO `districts` VALUES ('98', '៧មករា', '7 Meakkakra', '', '12', null, null); INSERT INTO `districts` VALUES ('99', 'ទួលគោក', 'Tuol Kouk', '', '12', null, null); INSERT INTO `districts` VALUES ('100', 'ដង្កោ', 'Dangkao', '', '12', null, null); INSERT INTO `districts` VALUES ('101', 'មានជ័យ', 'Mean Chey', '', '12', null, null); INSERT INTO `districts` VALUES ('102', 'ឫស្សីកែវ', 'Russey Keo', '', '12', null, null); INSERT INTO `districts` VALUES ('103', 'សែនសុខ', 'Sen Sok', '', '12', null, null); INSERT INTO `districts` VALUES ('104', 'ពោធិ៍សែនជ័យ', 'Pur SenChey', '', '12', null, null); INSERT INTO `districts` VALUES ('105', 'ជ្រោយចង្វារ', 'Chraoy Chongvar', '', '12', null, null); INSERT INTO `districts` VALUES ('106', 'ព្រែកព្នៅ', 'Praek Pnov', '', '12', null, null); INSERT INTO `districts` VALUES ('107', 'ច្បារអំពៅ', 'Chbar Ampov', '', '12', null, null); INSERT INTO `districts` VALUES ('108', 'ជ័យសែន', 'Chey Saen', '1301', '13', null, null); INSERT INTO `districts` VALUES ('109', 'ឆែប', 'Chhaeb', '1302', '13', null, null); INSERT INTO `districts` VALUES ('110', 'ជាំក្សាន្ត', 'Choam Khsant', '1303', '13', null, null); INSERT INTO `districts` VALUES ('111', 'គូលែន', 'Kuleaen', '1304', '13', null, null); INSERT INTO `districts` VALUES ('112', 'វៀង', 'Rovieng', '1305', '13', null, null); INSERT INTO `districts` VALUES ('113', 'សង្គមថ្មី', 'Sangkom Thmei', '1306', '13', null, null); INSERT INTO `districts` VALUES ('114', 'ត្បែងមានជ័យ', 'Tbaeng Mean chey', '1307', '13', null, null); INSERT INTO `districts` VALUES ('115', 'ព្រៃវែង​', 'Prey Veng', '1401', '14', null, null); INSERT INTO `districts` VALUES ('116', 'កំចាយមារ​', 'Kamchay Mea', '1402', '14', null, null); INSERT INTO `districts` VALUES ('117', 'កំពង់ត្របែក', 'Kampong Trobek', '1403', '14', null, null); INSERT INTO `districts` VALUES ('118', 'កញ្ច្រៀច​', 'Kachreach', '1404', '14', null, null); INSERT INTO `districts` VALUES ('119', 'មេសាង​', 'Mesang', '1405', '14', null, null); INSERT INTO `districts` VALUES ('120', 'ពាមជរ​', 'Peamchor', '1406', '14', null, null); INSERT INTO `districts` VALUES ('121', 'ពាមរ​', 'Peamr', '1407', '14', null, null); INSERT INTO `districts` VALUES ('122', 'ពារាំង​', 'Peareang', '1408', '14', null, null); INSERT INTO `districts` VALUES ('123', 'ព្រះស្ដេច​', 'Prehsdach', '1409', '14', null, null); INSERT INTO `districts` VALUES ('124', 'ស្វាយអន្ទរ​', 'Svay Ontor', '1410', '14', null, null); INSERT INTO `districts` VALUES ('125', 'បាភ្នំ​', 'Baphnum', '1411', '14', null, null); INSERT INTO `districts` VALUES ('126', 'ស៊ីធរកណ្ដាល​', 'Sithor Kandal', '1412', '14', null, null); INSERT INTO `districts` VALUES ('127', 'កំពង់លាវ', 'Kampong Leav', '1413', '14', null, null); INSERT INTO `districts` VALUES ('128', 'បាកាន', 'Bakan', '1501', '15', null, null); INSERT INTO `districts` VALUES ('129', 'កណ្តៀង', 'Kandeang', '1502', '15', null, null); INSERT INTO `districts` VALUES ('130', 'ក្រគរ', 'Krokor', '1503', '15', null, null); INSERT INTO `districts` VALUES ('131', 'ភ្នំក្រវាញ', 'Phnum Kravanh', '1504', '15', null, null); INSERT INTO `districts` VALUES ('132', 'ពោធិ៍សាត់', 'Pursat', '1505', '15', null, null); INSERT INTO `districts` VALUES ('133', 'វាលវែង', 'Veal Veaeng', '1506', '15', null, null); INSERT INTO `districts` VALUES ('134', 'អណ្តូងមាស​', 'Andoung Meas', '1601', '16', null, null); INSERT INTO `districts` VALUES ('135', 'បានលុង', 'Ban Lung', '1602', '16', null, null); INSERT INTO `districts` VALUES ('136', 'បរកែវ', 'Bar Kaev', '1603', '16', null, null); INSERT INTO `districts` VALUES ('137', 'កូនមុំ', 'Koun Mom', '1604', '16', null, null); INSERT INTO `districts` VALUES ('138', 'លំផាត់', 'Lumphat', '1605', '16', null, null); INSERT INTO `districts` VALUES ('139', 'អូរជុំ', 'Ou Chum', '1606', '16', null, null); INSERT INTO `districts` VALUES ('140', 'អូរយ៉ាដាវ', 'Ou Ya Dav', '1607', '16', null, null); INSERT INTO `districts` VALUES ('141', 'តាវែង', 'Ta Veaeng', '1608', '16', null, null); INSERT INTO `districts` VALUES ('142', 'វើនសៃ', 'Veun Sai', '1609', '16', null, null); INSERT INTO `districts` VALUES ('143', 'អង្គរជុំ', 'Angkor Chum', '1701', '17', null, null); INSERT INTO `districts` VALUES ('144', 'អង្គរធំ', 'Angkor Thum', '1702', '17', null, null); INSERT INTO `districts` VALUES ('145', 'បន្ទាយស្រី', 'Banteay Srei', '1703', '17', null, null); INSERT INTO `districts` VALUES ('146', 'ជីក្រែង', 'Chi Kraeng', '1704', '17', null, null); INSERT INTO `districts` VALUES ('147', 'ក្រឡាញ់', 'Kralanh', '1706', '17', null, null); INSERT INTO `districts` VALUES ('148', 'ពួក', 'Puok', '1707', '17', null, null); INSERT INTO `districts` VALUES ('149', 'ប្រាសាទបាគង', 'Prasat Bakong', '1709', '17', null, null); INSERT INTO `districts` VALUES ('150', 'សៀមរាប', 'Siem Reab', '1710', '17', null, null); INSERT INTO `districts` VALUES ('151', 'សូទ្រនិគម', 'Soutr Nikom', '1711', '17', null, null); INSERT INTO `districts` VALUES ('152', 'ស្រីស្នំ', 'Srei Snam', '1712', '17', null, null); INSERT INTO `districts` VALUES ('153', 'ស្វាយលើ', 'Svay Leu', '1713', '17', null, null); INSERT INTO `districts` VALUES ('154', 'វ៉ារិន', 'Varin', '1714', '17', null, null); INSERT INTO `districts` VALUES ('155', 'មិត្តភាព', 'Mittakpheap', '1801', '18', null, null); INSERT INTO `districts` VALUES ('156', 'ព្រៃនប់', 'Prey Nob', '1802', '18', null, null); INSERT INTO `districts` VALUES ('157', 'ស្ទឹងហាវ', 'Stueng Hav', '1803', '18', null, null); INSERT INTO `districts` VALUES ('158', 'កំពង់សីលា', 'Kampong Seila', '1804', '18', null, null); INSERT INTO `districts` VALUES ('159', 'សេសាន', 'Sesan', '1901', '19', null, null); INSERT INTO `districts` VALUES ('160', 'សៀមបូក', 'Siem Bouk', '1902', '19', null, null); INSERT INTO `districts` VALUES ('161', 'សៀមប៉ាង', 'Siem Pang', '1903', '19', null, null); INSERT INTO `districts` VALUES ('162', 'ស្ទឹងត្រែង', 'Stueng Traeng', '1904', '19', null, null); INSERT INTO `districts` VALUES ('163', 'ថាឡាបរិវ៉ាត់', 'Thala Barivat', '1905', '19', null, null); INSERT INTO `districts` VALUES ('164', 'ចន្រ្ទា​', 'Chanthrea', '2001', '20', null, null); INSERT INTO `districts` VALUES ('165', 'កំពង់រោទិ៍', 'Kampong Rou', '2002', '20', null, null); INSERT INTO `districts` VALUES ('166', 'រំដួល', 'Romdoul', '2003', '20', null, null); INSERT INTO `districts` VALUES ('167', 'រមាសហែក', 'Romeas Haek', '2004', '20', null, null); INSERT INTO `districts` VALUES ('168', 'ស្វាយជ្រំ', 'Svay Chrom', '2005', '20', null, null); INSERT INTO `districts` VALUES ('169', 'ស្វាយរៀង', 'Svay Rieng', '2006', '20', null, null); INSERT INTO `districts` VALUES ('170', 'ស្វាយទាប', 'Svay Theab', '2007', '20', null, null); INSERT INTO `districts` VALUES ('171', 'បាវិត', 'Bavet', '2008', '20', null, null); INSERT INTO `districts` VALUES ('172', 'អង្គរបូរី​', 'Angkor Borei', '2101', '21', null, null); INSERT INTO `districts` VALUES ('173', 'បាទី', 'Bati', '2102', '21', null, null); INSERT INTO `districts` VALUES ('174', 'បូរីជលសារ', 'Borei Cholsar', '2103', '21', null, null); INSERT INTO `districts` VALUES ('175', 'គិរីវង់', 'Kiri Vong', '2104', '21', null, null); INSERT INTO `districts` VALUES ('176', 'កោះអណ្តែត', 'Kaoh Andaet', '2105', '21', null, null); INSERT INTO `districts` VALUES ('177', 'ព្រៃកប្បាស', 'Prey Kabbas', '2106', '21', null, null); INSERT INTO `districts` VALUES ('178', 'សំរោង', 'Samraong', '2107', '21', null, null); INSERT INTO `districts` VALUES ('179', 'ដូនកែវ', 'Doun Kaev', '2108', '21', null, null); INSERT INTO `districts` VALUES ('180', 'ត្រាំកក់', 'Tram Kak', '2109', '21', null, null); INSERT INTO `districts` VALUES ('181', 'ទ្រាំង', 'Treang', '2110', '21', null, null); INSERT INTO `districts` VALUES ('182', 'ដំណាក់ចង្អើរ', 'Damnak Chang\'aeur', '2201', '23', null, null); INSERT INTO `districts` VALUES ('183', 'កែប', 'Kep', '2202', '23', null, null); INSERT INTO `districts` VALUES ('184', 'ប៉ៃលិន​', 'Pailin', '2301', '24', null, null); INSERT INTO `districts` VALUES ('185', 'សាលា​​ក្រៅ', 'Salakrao', '2302', '24', null, null); INSERT INTO `districts` VALUES ('186', 'អន្លង់វែង', 'Anlong Veng', '2201', '22', null, null); INSERT INTO `districts` VALUES ('187', 'បន្ទាយអំពិល', 'Banteay Ampil', '2202', '22', null, null); INSERT INTO `districts` VALUES ('188', 'ចុងកាល់', 'Chong Kal', '2203', '22', null, null); INSERT INTO `districts` VALUES ('189', 'សំរោង', 'Samraong', '2204', '22', null, null); INSERT INTO `districts` VALUES ('190', 'ត្រពាំងប្រាសាទ', 'Trapeang Prasat', '2205', '22', null, null); INSERT INTO `districts` VALUES ('191', 'ដំបែ', 'Dambe', '', '25', null, null); INSERT INTO `districts` VALUES ('192', 'ក្រូចឆ្មារ', 'Krochhma', '', '25', null, null); INSERT INTO `districts` VALUES ('193', 'មេមត់', 'Memut', '', '25', null, null); INSERT INTO `districts` VALUES ('194', 'អូររាំងឪ', 'Orangov', '', '25', null, null); INSERT INTO `districts` VALUES ('195', 'ពញាក្រែក', 'Punhea Krek', '', '25', null, null); INSERT INTO `districts` VALUES ('196', 'ត្បូងឃ្មុំ', 'Tboung Khmum', '', '25', null, null); INSERT INTO `districts` VALUES ('197', 'សួង', 'Soung', '', '25', null, null); INSERT INTO `districts` VALUES ('198', 'ព្រះសីហនុ', 'Sihanoukville', '០', '18', null, null); INSERT INTO `districts` VALUES ('199', 'បឹងកេងកង', 'Boeung Keng Kang', '120000', '12', null, null); INSERT INTO `districts` VALUES ('200', 'កំបូល', 'Kantaok', '0000', '12', null, null); -- ---------------------------- -- Table structure for `doctors` -- ---------------------------- DROP TABLE IF EXISTS `doctors`; CREATE TABLE `doctors` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name_kh` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name_en` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `id_card` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gender` tinyint(1) NOT NULL DEFAULT '1', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `full_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_village` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_commune` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_district_id` bigint unsigned DEFAULT NULL, `address_province_id` bigint unsigned DEFAULT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `doctors_address_district_id_foreign` (`address_district_id`), KEY `doctors_address_province_id_foreign` (`address_province_id`), KEY `doctors_created_by_foreign` (`created_by`), KEY `doctors_updated_by_foreign` (`updated_by`), CONSTRAINT `doctors_address_district_id_foreign` FOREIGN KEY (`address_district_id`) REFERENCES `districts` (`id`), CONSTRAINT `doctors_address_province_id_foreign` FOREIGN KEY (`address_province_id`) REFERENCES `provinces` (`id`), CONSTRAINT `doctors_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `doctors_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of doctors -- ---------------------------- -- ---------------------------- -- Table structure for `echoes` -- ---------------------------- DROP TABLE IF EXISTS `echoes`; CREATE TABLE `echoes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` date NOT NULL, `pt_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_age` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_gender` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_diagnosis` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_village` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_commune` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_district_id` bigint unsigned DEFAULT NULL, `pt_province_id` bigint unsigned DEFAULT NULL, `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default.png', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `patient_id` bigint unsigned DEFAULT NULL, `echo_default_description_id` bigint unsigned NOT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `echoes_patient_id_foreign` (`patient_id`), KEY `echoes_echo_default_description_id_foreign` (`echo_default_description_id`), KEY `echoes_created_by_foreign` (`created_by`), KEY `echoes_updated_by_foreign` (`updated_by`), CONSTRAINT `echoes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `echoes_echo_default_description_id_foreign` FOREIGN KEY (`echo_default_description_id`) REFERENCES `echo_default_descriptions` (`id`), CONSTRAINT `echoes_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `echoes_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of echoes -- ---------------------------- INSERT INTO `echoes` VALUES ('11', '2021-02-20', 'Chenda', '15', 'ប្រុស', '5244324', 'hhi', 'hjkb', 'hvgj', '68', '8', 'default.png', '<p style=\"margin-left:48px\"><span style=\"font-size:10pt\"><span style=\"font-size:14.0pt\">Nombre du f&oelig;tus (</span><span style=\"font-size:11.0pt\">ចំនួន</span><span style=\"font-size:14.0pt\">) : 01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DDR&nbsp;: </span><span style=\"font-size:14.0pt\">&nbsp;/&nbsp; / 2020</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><u><span style=\"font-size:12.0pt\">Technique</span></u><span style=\"font-size:12.0pt\">&nbsp;: L`examen est r&eacute;alis&eacute; par voie transcutan&eacute;e</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:12.0pt\">Ut&eacute;rus est gravide de: mm DAP, pr&eacute;sence d&rsquo;un sac claire </span>&nbsp;<span style=\"font-size:12.0pt\">mesure d<strong>e</strong></span><strong><span style=\"font-size:12.0pt\">:</span></strong><strong><span style=\"font-size:12.0pt\"> mm</span></strong><span style=\"font-size:12.0pt\"> avec </span><span style=\"font-size:12.0pt\">point de vitalit&eacute;</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:12.0pt\">Absence d&rsquo;anomalie de structure de l&#39;ovaire </span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><strong><u><span style=\"font-size:12.0pt\">Conclusion </span></u></strong><strong><span style=\"font-size:12.0pt\">: </span></strong><span style=\"font-size:12.0pt\">Echographie pelvienne montre<strong> une grossesse de:&nbsp; <span style=\"color:blue\">SA J&nbsp;</span></strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">vienn &eacute;volutive</span></span></strong><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">.</span></span></strong></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Terme echographique&nbsp;:&nbsp;&nbsp;&nbsp; /&nbsp;&nbsp;&nbsp; /2021&nbsp;&nbsp;&nbsp;&nbsp; +/- 1w0d</span></span></strong>&nbsp;&nbsp;&nbsp;&nbsp; </span></p>', '21', '2', '3', '3', '2021-02-20 08:37:45', '2021-02-20 08:37:45'); INSERT INTO `echoes` VALUES ('12', '2021-02-20', 'Chenda', '15', 'ប្រុស', '5244324', null, null, null, '68', '8', 'default.png', '<p style=\"margin-left:48px\"><span style=\"font-size:10pt\"><span style=\"font-size:14.0pt\">Nombre du f&oelig;tus (</span><span style=\"font-size:11.0pt\">ចំនួន</span><span style=\"font-size:14.0pt\">) : 01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DDR&nbsp;: </span><span style=\"font-size:14.0pt\">&nbsp;/&nbsp; / 2020</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><u><span style=\"font-size:12.0pt\">Technique</span></u><span style=\"font-size:12.0pt\">&nbsp;: L`examen est r&eacute;alis&eacute; par voie transcutan&eacute;e</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:12.0pt\">Ut&eacute;rus est gravide de: mm DAP, pr&eacute;sence d&rsquo;un sac claire </span>&nbsp;<span style=\"font-size:12.0pt\">mesure d<strong>e</strong></span><strong><span style=\"font-size:12.0pt\">:</span></strong><strong><span style=\"font-size:12.0pt\"> mm</span></strong><span style=\"font-size:12.0pt\"> avec </span><span style=\"font-size:12.0pt\">point de vitalit&eacute;</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:12.0pt\">Absence d&rsquo;anomalie de structure de l&#39;ovaire </span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><strong><u><span style=\"font-size:12.0pt\">Conclusion </span></u></strong><strong><span style=\"font-size:12.0pt\">: </span></strong><span style=\"font-size:12.0pt\">Echographie pelvienne montre<strong> une grossesse de:&nbsp; <span style=\"color:blue\">SA J&nbsp;</span></strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">vienn &eacute;volutive</span></span></strong><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">.</span></span></strong></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Terme echographique&nbsp;:&nbsp;&nbsp;&nbsp; /&nbsp;&nbsp;&nbsp; /2021&nbsp;&nbsp;&nbsp;&nbsp; +/- 1w0d</span></span></strong>&nbsp;&nbsp;&nbsp;&nbsp; </span></p>', '21', '2', '3', '3', '2021-02-20 08:40:45', '2021-02-20 08:40:45'); INSERT INTO `echoes` VALUES ('13', '2021-02-23', 'mongkul', null, 'ប្រុស', null, null, null, null, null, null, 'default.png', '<p><span style=\"font-size:12px\"><u>Technique</u>&nbsp;: L`examen est r&eacute;alis&eacute; par voie transcutan&eacute;e</span></p>\r\n\r\n<p><span style=\"font-size:12px\"><strong>Echographie pelvienne :</strong></span></p>\r\n\r\n<p><span style=\"font-size:12px\">Ut&eacute;rus est gravide, pr&eacute;sence d&rsquo;un sac claire mesure d<strong>e: 15.6</strong><strong>mm</strong> avec sac d&eacute;form&eacute;.</span></p>\r\n\r\n<p><span style=\"font-size:12px\">Absence d&rsquo;anomalie de structure de l&#39;ovaire </span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12px\"><strong><u>Conclusion </u>: </strong>Echographie pelvienne montre<strong> une grossesse arret&eacute;<span style=\"color:blue\">.</span></strong></span></p>', '22', '1', '2', '1', '2021-02-23 08:34:01', '2021-02-27 09:43:55'); INSERT INTO `echoes` VALUES ('14', '2021-02-23', 'mongkul', null, 'ប្រុស', null, null, null, null, null, null, 'default.png', '<p><span style=\"font-size:10pt\"><u><span style=\"font-size:12.0pt\">Technique</span></u><span style=\"font-size:12.0pt\">&nbsp;: L`examen est r&eacute;alis&eacute; par voie transcutan&eacute;e</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><strong><span style=\"font-size:12.0pt\">Echographie pelvienne :</span></strong></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:12.0pt\">Ut&eacute;rus est gravide, pr&eacute;sence d&rsquo;un sac claire mesure d<strong>e: </strong></span><strong><span style=\"font-size:12.0pt\">15.6</span></strong><strong><span style=\"font-size:12.0pt\">mm</span></strong><span style=\"font-size:12.0pt\"> avec sac d&eacute;form&eacute;.</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:12.0pt\">Absence d&rsquo;anomalie de structure de l&#39;ovaire </span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><strong><u><span style=\"font-size:12.0pt\">Conclusion </span></u></strong><strong><span style=\"font-size:12.0pt\">: </span></strong><span style=\"font-size:12.0pt\">Echographie pelvienne montre<strong> une grossesse arret&eacute;<span style=\"color:blue\">.</span></strong></span></span></p>', '22', '1', '2', '2', '2021-02-23 08:34:01', '2021-02-23 08:34:01'); -- ---------------------------- -- Table structure for `echo_default_descriptions` -- ---------------------------- DROP TABLE IF EXISTS `echo_default_descriptions`; CREATE TABLE `echo_default_descriptions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of echo_default_descriptions -- ---------------------------- INSERT INTO `echo_default_descriptions` VALUES ('1', 'Grossesse non évolué', 'grossesse-non-evolue', '<p><span style=\"font-size:12px\"><u>Technique</u>&nbsp;: L`examen est r&eacute;alis&eacute; par voie transcutan&eacute;e</span></p>\r\n\r\n<p><span style=\"font-size:12px\"><strong>Echographie pelvienne :</strong></span></p>\r\n\r\n<p><span style=\"font-size:12px\">Ut&eacute;rus est gravide, pr&eacute;sence d&rsquo;un sac claire mesure d<strong>e: 15.6</strong><strong>mm</strong> avec sac d&eacute;form&eacute;.</span></p>\r\n\r\n<p><span style=\"font-size:12px\">Absence d&rsquo;anomalie de structure de l&#39;ovaire </span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12px\"><strong><u>Conclusion </u>: </strong>Echographie pelvienne montre<strong> une grossesse arret&eacute;<span style=\"color:blue\">.</span></strong></span></p>', null, '2021-02-27 09:39:27'); INSERT INTO `echo_default_descriptions` VALUES ('2', 'Grossesse évolué', 'grossesse-evolue', '<p style=\"margin-left:48px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Nombre du f&oelig;tus (</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">ចំនួន</span></span><span style=\"font-size:14.0pt\">) : 01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DDR&nbsp;: </span><span style=\"font-size:14.0pt\">&nbsp;/&nbsp; / 2020</span></span></span></p>\r\n\r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><u><span style=\"font-size:12.0pt\">Technique</span></u><span style=\"font-size:12.0pt\">&nbsp;: L`examen est r&eacute;alis&eacute; par voie transcutan&eacute;e</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Ut&eacute;rus est gravide de: mm DAP, pr&eacute;sence d&rsquo;un sac claire </span>&nbsp;<span style=\"font-size:12.0pt\">mesure d<strong>e</strong></span><strong><span style=\"font-size:12.0pt\">:</span></strong><strong><span style=\"font-size:12.0pt\"> mm</span></strong><span style=\"font-size:12.0pt\"> avec </span><span style=\"font-size:12.0pt\">point de vitalit&eacute;</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Absence d&rsquo;anomalie de structure de l&#39;ovaire </span></span></span></p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:12.0pt\">Conclusion </span></u></strong><strong><span style=\"font-size:12.0pt\">: </span></strong><span style=\"font-size:12.0pt\">Echographie pelvienne montre<strong> une grossesse de:&nbsp; <span style=\"color:blue\">SA J&nbsp;</span></strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">vienn &eacute;volutive</span></span></strong><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">.</span></span></strong></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"color:blue\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Terme echographique&nbsp;:&nbsp;&nbsp;&nbsp; /&nbsp;&nbsp;&nbsp; /2021&nbsp;&nbsp;&nbsp;&nbsp; +/- 1w0d</span></span></strong>&nbsp;&nbsp;&nbsp;&nbsp; </span></span></p>\r\n ', null, null); INSERT INTO `echo_default_descriptions` VALUES ('3', 'Echo abdominaleF', 'echo-abdominalef', '<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:14.0pt\">R&eacute;sultat </span></u></strong></span></span></p>\r\n\r\n <ul>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Le foie est de taille (FD&nbsp;: mm,FG&nbsp;: mm)&nbsp; de contours r&eacute;guliers, d&#39;&eacute;cho-structure homog&egrave;ne surface liss borde inf&eacute;rieux tranchante.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Le tronc porte et les veines sus-h&eacute;patiques sont dilat&eacute;.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">La v&eacute;sicule biliaire alithiasique, la paroi fine et r&eacute;guli&egrave;re.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Les voies biliaires intra et extra h&eacute;patiques sont &nbsp;dilat&eacute;es.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Le pancr&eacute;as est de tailles normales, de contours r&eacute;guliers. </span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">La rate est homog&egrave;ne, de taille normale. </span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Les reins de taille normale (RD: mm,RG:mm) la diff&eacute;renciation cortico-m&eacute;dullaire bien visible, absence de dilatations des cavit&eacute;s py&eacute;localicielles.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">La vessie an&eacute;chogene la paroi fine et absence de diverticule ni de calcul.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Ut&eacute;rus</span><span style=\"font-size:14.0pt\">:ant&eacute;vers&eacute;</span><span style=\"font-size:22.5pt\"><span style=\"font-family:DaunPenh\">​​</span></span><span style=\"font-size:14.0pt\"> de 40mm de DAP ligne vacuit&eacute; r&eacute;guli&eacute;</span> </span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Annex :normale</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Douglas&nbsp;: libre.</span></span></span></li>\r\n </ul>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:14.0pt\"><span style=\"color:blue\">&nbsp;&nbsp;&nbsp;&nbsp; Au total</span></span></strong><span style=\"font-size:14.0pt\"> : Echographie pelvienne normale</span></span></span></p>\r\n ', null, null); INSERT INTO `echo_default_descriptions` VALUES ('4', 'Echo abdominaleM', 'echo-abdominalem', '<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:14.0pt\">R&eacute;sultat </span></u></strong></span></span></p>\r\n\r\n <ul>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Le foie est de taille (FD&nbsp;: mm,FG&nbsp;: mm)&nbsp; de contours r&eacute;guliers, d&#39;&eacute;cho-structure homog&egrave;ne surface liss borde inf&eacute;rieux tranchante .</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Le tronc porte et les veines sus-h&eacute;patiques sont perm&eacute;ables.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">La v&eacute;sicule biliaire alithiasique, la paroi fine et r&eacute;guli&egrave;re.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Les voies biliaires intra et extra h&eacute;patiques ne sont pas dilat&eacute;es.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Le pancr&eacute;as est de tailles normales, de contours r&eacute;guliers. </span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">La rate est homog&egrave;ne, de taille normale. </span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Les reins de taille normale (RD: mm,RG:mm) la diff&eacute;renciation cortico-m&eacute;dullaire bien visible, absence de dilatations des cavit&eacute;s py&eacute;localicielles</span><span style=\"font-size:22.5pt\"><span style=\"font-family:DaunPenh\">​</span></span> </span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">La vessie an&eacute;chogene la paroi fine et absence de diverticule ni de calcul</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Prostat&nbsp;:normale</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Douglas&nbsp;: libre.</span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:12.0pt\">Gaz intent</span></span></span></li>\r\n </ul>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:22.5pt\"><span style=\"font-family:DaunPenh\">​​&nbsp;&nbsp;&nbsp; </span></span><strong><u><span style=\"font-size:14.0pt\">Au total</span></u></strong><span style=\"font-size:14.0pt\"> : Echographie abdominale normale a ce jour</span></span></span></p>\r\n ', null, null); INSERT INTO `echo_default_descriptions` VALUES ('5', 'Echo SEIN', 'echo-sein', '<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Nom et Pr&eacute;nom :&nbsp;&nbsp; </span></span></span></p>\r\n\r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Clinique : </span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">M&eacute;decin demander&nbsp;:</span></span></span></p>\r\n \r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:16.0pt\">R&eacute;sultat </span></u></strong></span></span></p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Tissue sous cutan&eacute;e et graisseuse sont normaux.</span></span></span></p>\r\n \r\n <p style=\"margin-left:48px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Absence anomalie de morphologie et de structure de la glande mammaire.</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Absence ad&eacute;nopathie </span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size:14.0pt\">Absence </span><span style=\"font-size:14.0pt\">de calcification ou de formation tumorale .</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; La vascularisation est normale. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span></p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:14.0pt\">Au total</span></u></strong><span style=\"font-size:14.0pt\">: Echographie du seins sont normaeux.</span></span></span></p>\r\n ', null, null); INSERT INTO `echo_default_descriptions` VALUES ('6', 'Echo thyroïdienne', 'echo-thyroidienne', '<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Nom et pr&eacute;nom : &nbsp;</span></span></span></p>\r\n\r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Clinique :&nbsp; </span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">M&eacute;decin demander&nbsp;: &nbsp;</span></span></span></p>\r\n \r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:16.0pt\">R&eacute;sultat </span></u></strong></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">La glande thyro&iuml;de est mesur&eacute;e&nbsp; au : &nbsp;</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:14.0pt\">Lobe droit</span></strong><span style=\"font-size:14.0pt\">&nbsp;: L&nbsp;: mm X&nbsp; L&rsquo; : mm X AP&nbsp;: mm&nbsp; </span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:14.0pt\">Lobe gauche</span></strong><span style=\"font-size:14.0pt\">&nbsp;: L&nbsp;: mm X&nbsp; L&rsquo; : mm X AP&nbsp;: mm &nbsp;</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:14.0pt\">Isthme&nbsp;</span></strong><span style=\"font-size:14.0pt\">: &nbsp; mm en ant&eacute;ropost&eacute;rieur (AP).</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:14.0pt\">Volume</span></strong><span style=\"font-size:14.0pt\"> estim&eacute; &agrave;&nbsp; <strong>g</strong> pour un lobe [<strong><em>normal inf&eacute;rieur &agrave; 7g</em></strong>].</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">L&#39;&eacute;chostructure glandulaire est l&eacute;g&egrave;rement granuleuse, homog&egrave;ne et &eacute;chog&egrave;ne. Les contours de l&#39;isthme et de chaque lobe sont r&eacute;guliers.&nbsp;&nbsp; </span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Diff&eacute;renciation de gradient musculo-parenchymateux.</span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Absence d&#39;ad&eacute;nopathie le long des axes jugulo-carotidiennes.&nbsp;&nbsp; </span></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Pas d&#39;argument en faveur d&#39;une pathologie para-thyro&iuml;dienne.&nbsp;&nbsp; </span></span></span></p>\r\n \r\n <p>&nbsp;</p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:14.0pt\">Au total</span></u></strong><span style=\"font-size:14.0pt\">: Echographie thyro&iuml;dienne normale.</span></span></span></p>\r\n ', null, null); INSERT INTO `echo_default_descriptions` VALUES ('7', 'Obst 3 trimestre', 'obst-3-trimestre', '<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><u><span style=\"font-size:16.0pt\"><span style=\"color:red\">R&eacute;sultat</span></span></u></span></span></p>\r\n\r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<span style=\"font-size:14.0pt\">&nbsp;&nbsp;Nombre du f&oelig;tus (</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">ចំនួន</span></span><span style=\"font-size:14.0pt\">) : 01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DDR&nbsp;: </span><span style=\"font-size:14.0pt\">&nbsp;/ &nbsp;/ 2020</span></span></span></p>\r\n \r\n <table cellspacing=\"0\" class=\"Table\" style=\"border-collapse:collapse; border:none; margin-left:73px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"border-bottom:1px solid black; border-left:1px solid black; border-right:1px solid black; border-top:1px solid black; vertical-align:top; width:162px\">\r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">Poids (</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">ទម្ងន់កូន</span></span><span style=\"font-size:14.0pt\">):</span></span></span></p>\r\n </td>\r\n <td style=\"border-bottom:1px solid black; border-left:none; border-right:1px solid black; border-top:1px solid black; vertical-align:top; width:168px\">\r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">DBP (</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">ទំហំក្បាល</span></span><span style=\"font-size:14.0pt\">)</span></span></span></p>\r\n </td>\r\n <td style=\"border-bottom:1px solid black; border-left:none; border-right:1px solid black; border-top:1px solid black; vertical-align:top; width:150px\">\r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">F</span><span style=\"font-size:14.0pt\">L(</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">ប្រវែងភ្លៅកូន</span></span><span style=\"font-size:14.0pt\">)</span></span></span></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"border-bottom:1px solid black; border-left:1px solid black; border-right:1px solid black; border-top:none; vertical-align:top; width:162px\">\r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">g</span></span></span></p>\r\n </td>\r\n <td style=\"border-bottom:1px solid black; border-left:none; border-right:1px solid black; border-top:none; vertical-align:top; width:168px\">\r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">mm</span></span></span></p>\r\n </td>\r\n <td style=\"border-bottom:1px solid black; border-left:none; border-right:1px solid black; border-top:none; vertical-align:top; width:150px\">\r\n <p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:14.0pt\">mm</span></span></span></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n \r\n <ul>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\">&nbsp;<span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">Absence anormalie morphologie d&eacute;c&eacute;lable<span style=\"color:red\"> (</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">រូបរាងកូនគ្រប់លកិខណ</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:red\">:</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:red\">)</span></span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">&nbsp;Bonne movement <span style=\"color:red\">(</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ចលនាកូនល្អ</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:red\">)</span></span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">&nbsp;Activit&eacute; cardiaque (</span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ចលនាបេះដូងកូនល្អ</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">):&nbsp; b/mn</span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">&nbsp;Bonne placenta (<span style=\"color:#bf8f00\">សុកកូនល្អ</span>) post&eacute;rieux en haut( <span style=\"color:#bf8f00\">នៅផ្នែកខាង</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ក្រោយខាងលើ</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">)</span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">&nbsp;Pr&eacute;sentation(</span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ការបង្ហាញ</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ទម្រង់</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">): sommet dose a G&nbsp; (</span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ក្បាលនៅខាងក្រោម</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">)</span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">Cordon circulaire 2toure A/V du cou</span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">&nbsp;Liquide amniotique normale (<span style=\"color:#bf8f00\">បរិមាណទឹកភ្លោះកូន ល្អគ្រប់គ្រាន់</span>) AFI: 13</span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">&nbsp;Sex (ភេទ)&nbsp;: </span></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:red\">ស្រី ​ ប្រុស</span></span></span>&nbsp; </span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:22.5pt\"><span style=\"font-family:DaunPenh\">​ </span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">អាយុកូន</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ចំនួន</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">:</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">​​&nbsp; សប្ដាហ៍​និង​​ ថ្ងៃ​ </span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ការលូតលាស់ល្អ</span></span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">Les ovairese sont de taille et de morphologie normale, sans formation kystique a leur niveau.</span></span></span></span></li>\r\n <li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">Abcence d&rsquo; &eacute;panchement dans le cul de sac de Douglas</span></span></span></span></li>\r\n </ul>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><u><span style=\"font-size:22.5pt\"><span style=\"font-family:DaunPenh\">​</span></span></u>&nbsp;&nbsp;&nbsp; <strong><u><span style=\"font-size:14.0pt\"><span style=\"color:#002060\">Au total</span></span></u></strong><strong><span style=\"font-size:14.0pt\">:</span></strong><span style=\"font-size:14.0pt\">&Eacute;chographie pelvienne montrant de grossesse de(</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">អាយុកូនចំនួន</span></span></span><span style=\"font-size:14.0pt\">):SA et:jours(</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#bf8f00\">ថ្ងៃ</span></span></span><span style=\"font-size:14.0pt\">)</span><strong> </strong></span></span></p>\r\n \r\n <p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:22.5pt\"><span style=\"font-family:DaunPenh\">​​&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:14.0pt\">Pr&eacute;sum&eacute; de terme le (</span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\"><span style=\"color:#ffc000\">គ្រប់ខែនៅថ្ងៃទី</span></span></span><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Khmer OS System&quot;\">)</span></span><span style=\"font-size:14.0pt\"><span style=\"color:#00b0f0\">:</span></span> <strong><span style=\"font-size:12.0pt\"><span style=\"color:#00b0f0\">/&nbsp;&nbsp; /2021&nbsp;&nbsp;&nbsp;&nbsp; +/- w</span></span></strong><span style=\"font-size:19.5pt\"><span style=\"font-family:DaunPenh\"><span style=\"color:#00b0f0\">​</span></span></span><strong> </strong><strong><span style=\"font-size:12.0pt\"><span style=\"color:#00b0f0\">d</span></span></strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></p>\r\n ', null, null); INSERT INTO `echo_default_descriptions` VALUES ('8', 'Hématologie analyse', 'hematologie-analyse', '<p style=\"text-align:center\"><u><span style=\"color:red\">R&eacute;sultat</span></u></p>', null, null); INSERT INTO `echo_default_descriptions` VALUES ('9', 'Letter from the hospital', 'letter-form-the-hospital', '<p style=\"text-align:center\"><span style=\"font-size:10pt\"><u><span style=\"font-size:14.0pt\"><span style=\"color:#44546a\">លិខិតចេញពីបន្ទប់សំរាកព្យាបាលនិងសម្ភព</span></span></u></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:#44546a\">គ្រូពេទ្យព្យាបាលបញ្ជាក់ថា</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:#00b0f0\">​​​​&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">អ្នកជម្ងឺឈ្មោះ</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:​​&nbsp; ​ស៊ា សុផល&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ភេទ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ស្រី&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;អាយុ​:&nbsp;&nbsp;&nbsp; ២២​&nbsp;&nbsp; ឆ្នាំ&nbsp;&nbsp;&nbsp;&nbsp; សញ្ជាតិ: ​ខ្មែរ</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">​&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;ថ្ងៃ&nbsp; ខែ ឆ្នាំ កំណើត</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:&nbsp;&nbsp;&nbsp;&nbsp; ១៨​ /០១/ ១៩៩៩&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">​​&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ទីកន្លែងកំណើត​​​</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">: ភូមិ&nbsp; ផ្លាក​ ​​/ &nbsp;ឃុំ&nbsp; តាប្រុក&nbsp; / ស្រុក ចំការលើ&nbsp;&nbsp;&nbsp; /&nbsp; ខេត្ត​ កំពង់ចាម</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">​&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;មុខរបរ</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;សន្តិសុខ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; អង្គភាព :</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ប្រពន្ធ</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">ឈ្មោះ</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:​&nbsp;&nbsp; ហឿន រីដា&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; អាយុ​:&nbsp;&nbsp;&nbsp; ២៤​&nbsp;&nbsp; ឆ្នាំ&nbsp;&nbsp;&nbsp;&nbsp; សញ្ជាតិ: ​ខ្មែរ</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;ទីកន្លែងកំណើត​​​: ភូមិ&nbsp; ផ្លាក​ ​​/&nbsp; ឃុំ&nbsp; តាប្រុក&nbsp; / ស្រុក ចំការលើ&nbsp;&nbsp;&nbsp; /&nbsp; ខេត្ត​ កំពង់ចាម​&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ​មុខរបរ</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:&nbsp;&nbsp; ចុងភៅ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;អង្គភាព :</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;អាស័យដ្ឋាន: ភូមិ&nbsp; ផ្លាក​ ​​/&nbsp; ឃុំ&nbsp; តាប្រុក&nbsp; / ស្រុក ចំការលើ&nbsp;&nbsp;&nbsp; /&nbsp; ខេត្ត​ កំពង់ចាម</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ចុលសំរាកព្យាបាល​ ថ្ងៃទី&nbsp; ១៩ ​ ខែ​&nbsp; មករា&nbsp;&nbsp; ឆ្នាំ​​​​&nbsp;&nbsp; ២០២០&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ចេញសំរាកព្យាបាល​ ថ្ងៃទី ​​ ២១&nbsp; ខែ​ &nbsp;មករា&nbsp; ឆ្នាំ​​​​&nbsp;&nbsp; ២០២០</span></span>&nbsp;&nbsp; </span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;រោគវិនិច្ឆ័យ នៅពេលចូលសំរាក​</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:រលាកក្រពះធ្ងន់ធ្ង</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; រោគវិនិច្ឆ័យ នៅពេលចូលសំរាក</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:រលាកក្រពះធ្ងន់ធ្ង</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:black\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;សភាពអ្នកជម្ងឺនៅពេលចេញ</span></span><span style=\"font-size:11.0pt\"><span style=\"color:black\">:ធូស្រាល</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<u><span style=\"font-size:11.0pt\"><span style=\"color:red\">ចំណាំ</span></span></u><span style=\"font-size:11.0pt\"><span style=\"color:red\">:</span></span><span style=\"font-size:11.0pt\"><span style=\"color:#002060\">សូមយកលិខិតចេញពីមន្ទីសំរាកព្យាបាលនេះដើម្បីសុំច្បាប់កន្លែងការងារតាមតម្រូវការ</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:#002060\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ធ្វើនៅចំការលើ ថ្ងៃទី​​២១​ ខែ មករា ឆ្នាំ​២០២០</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:#002060\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; គ្រូពេទ្យព្យាបាល</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-size:11.0pt\"><span style=\"color:#002060\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;វេជ្ជបណ្ឌិត អ៊ុត ព្រង</span></span></span></p>', null, '2021-02-17 12:14:18'); -- ---------------------------- -- Table structure for `invoices` -- ---------------------------- DROP TABLE IF EXISTS `invoices`; CREATE TABLE `invoices` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` date NOT NULL, `inv_number` int NOT NULL, `rate` int NOT NULL DEFAULT '4000', `pt_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_age` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_age_type` enum('1','2') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `pt_gender` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_diagnosis` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_village` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_commune` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_district_id` bigint unsigned DEFAULT NULL, `pt_province_id` bigint unsigned DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '0', `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `patient_id` bigint unsigned DEFAULT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `invoices_patient_id_foreign` (`patient_id`), KEY `invoices_created_by_foreign` (`created_by`), KEY `invoices_updated_by_foreign` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of invoices -- ---------------------------- INSERT INTO `invoices` VALUES ('18', '2021-02-19', '1', '4000', '000019', 'ra dy', '30', '1', 'ស្រី', '031503333', null, null, null, null, null, '1', null, '19', '3', '3', '2021-02-19 05:15:00', '2021-02-19 05:15:00'); INSERT INTO `invoices` VALUES ('19', '2021-02-19', '2', '4000', '000014', 'Mr. ABC', '18', '1', 'ស្រី', '84674746', 'headach', '<NAME>', 'Prekrey', '68', '8', '1', null, '14', '3', '3', '2021-02-19 05:23:24', '2021-02-19 05:23:24'); INSERT INTO `invoices` VALUES ('20', '2021-02-20', '3', '4000', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '1', null, '21', '2', '2', '2021-02-20 06:30:35', '2021-02-20 06:30:35'); INSERT INTO `invoices` VALUES ('21', '2021-02-22', '4', '4000', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', 'dfa', 'ds', 'd', '68', '8', '1', null, '21', '3', '3', '2021-02-22 03:57:03', '2021-02-22 03:57:03'); INSERT INTO `invoices` VALUES ('22', '2021-02-22', '5', '4000', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, 'dfaz', 'dfaf', '68', '8', '1', null, '21', '3', '3', '2021-02-22 03:58:55', '2021-02-22 03:58:55'); INSERT INTO `invoices` VALUES ('23', '2021-03-15', '6', '4000', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '1', null, '22', '7', '7', '2021-03-15 11:03:36', '2021-03-15 11:03:36'); INSERT INTO `invoices` VALUES ('24', '2021-03-15', '6', '4000', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '1', null, '22', '7', '7', '2021-03-15 11:03:58', '2021-03-15 11:03:58'); -- ---------------------------- -- Table structure for `invoice_details` -- ---------------------------- DROP TABLE IF EXISTS `invoice_details`; CREATE TABLE `invoice_details` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `index` int NOT NULL, `discount` double NOT NULL DEFAULT '0', `invoice_id` bigint unsigned NOT NULL, `service_id` bigint unsigned DEFAULT NULL, `medicine_id` bigint unsigned DEFAULT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `invoice_details_invoice_id_foreign` (`invoice_id`), KEY `invoice_details_created_by_foreign` (`created_by`), KEY `invoice_details_updated_by_foreign` (`updated_by`), KEY `invoice_details_medicine_id_foreign` (`medicine_id`), CONSTRAINT `invoice_details_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `invoice_details_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `invoice_details_medicine_id_foreign` FOREIGN KEY (`medicine_id`) REFERENCES `medicines` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `invoice_details_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of invoice_details -- ---------------------------- INSERT INTO `invoice_details` VALUES ('26', 'Medicine', '40', null, '1', '0', '18', '3', null, '3', '3', '2021-02-19 05:15:00', '2021-02-19 05:15:00'); INSERT INTO `invoice_details` VALUES ('27', 'Medicine', '5', null, '1', '0', '19', '3', null, '3', '3', '2021-02-19 05:23:24', '2021-02-19 05:23:24'); INSERT INTO `invoice_details` VALUES ('28', 'Echo', '20', 'asdf', '1', '0', '20', '1', null, '2', '2', '2021-02-20 06:30:35', '2021-02-20 06:30:35'); INSERT INTO `invoice_details` VALUES ('29', 'Consulting', '10', null, '1', '0', '21', '2', null, '3', '3', '2021-02-22 03:57:03', '2021-02-22 03:57:03'); INSERT INTO `invoice_details` VALUES ('30', 'Medicine', '20', 'd', '1', '0', '22', '3', null, '3', '3', '2021-02-22 03:58:55', '2021-02-22 03:58:55'); INSERT INTO `invoice_details` VALUES ('31', 'តេស្ដឈាម', '30', null, '1', '0', '23', '14', null, '7', '7', '2021-03-15 11:03:36', '2021-03-15 11:03:36'); -- ---------------------------- -- Table structure for `labors` -- ---------------------------- DROP TABLE IF EXISTS `labors`; CREATE TABLE `labors` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` date NOT NULL, `labor_number` int NOT NULL, `pt_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_age` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_gender` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_village` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_commune` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_district_id` bigint unsigned DEFAULT NULL, `pt_province_id` bigint unsigned DEFAULT NULL, `price` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `labor_type` tinyint NOT NULL DEFAULT '1', `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `simple_labor_detail` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `patient_id` bigint unsigned DEFAULT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `labors_patient_id_foreign` (`patient_id`), KEY `labors_pt_district_id_foreign` (`pt_district_id`), KEY `labors_pt_province_id_foreign` (`pt_province_id`), KEY `labors_created_by_foreign` (`created_by`), KEY `labors_updated_by_foreign` (`updated_by`), CONSTRAINT `labors_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `labors_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`), CONSTRAINT `labors_pt_district_id_foreign` FOREIGN KEY (`pt_district_id`) REFERENCES `districts` (`id`), CONSTRAINT `labors_pt_province_id_foreign` FOREIGN KEY (`pt_province_id`) REFERENCES `provinces` (`id`), CONSTRAINT `labors_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of labors -- ---------------------------- INSERT INTO `labors` VALUES ('73', '2021-03-24', '1', '000022', 'mongkul', null, 'ប្រុស', null, null, null, null, null, '0', 'labor-standard', '1', null, '', '22', '1', '1', '2021-03-24 22:32:28', '2021-03-24 22:32:28'); -- ---------------------------- -- Table structure for `labor_categories` -- ---------------------------- DROP TABLE IF EXISTS `labor_categories`; CREATE TABLE `labor_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `labor_categories_created_by_foreign` (`created_by`), KEY `labor_categories_updated_by_foreign` (`updated_by`), CONSTRAINT `labor_categories_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `labor_categories_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of labor_categories -- ---------------------------- INSERT INTO `labor_categories` VALUES ('1', 'HEMATOLOGIE', 'HEMATOLOGIE', '1', '1', '2021-02-28 14:54:43', '2021-03-23 21:19:49'); INSERT INTO `labor_categories` VALUES ('2', 'BIOLOGIE', 'BIOLOGIE', '1', '1', '2021-03-23 21:19:58', '2021-03-23 21:19:58'); INSERT INTO `labor_categories` VALUES ('3', 'URINE', 'URINE', '1', '1', '2021-03-23 21:20:25', '2021-03-23 21:20:25'); INSERT INTO `labor_categories` VALUES ('4', 'SEROLOGIE', 'SEROLOGIE', '1', '1', '2021-03-23 21:20:27', '2021-03-23 21:20:27'); INSERT INTO `labor_categories` VALUES ('5', 'Blood Type', 'Blood Type', '1', '1', '2021-03-23 21:20:48', '2021-03-23 21:20:48'); -- ---------------------------- -- Table structure for `labor_details` -- ---------------------------- DROP TABLE IF EXISTS `labor_details`; CREATE TABLE `labor_details` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `result` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `unit` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sort` int DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `labor_id` bigint unsigned NOT NULL, `service_id` bigint unsigned NOT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `labor_details_labor_id_foreign` (`labor_id`), KEY `labor_details_service_id_foreign` (`service_id`), KEY `labor_details_created_by_foreign` (`created_by`), KEY `labor_details_updated_by_foreign` (`updated_by`), CONSTRAINT `labor_details_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `labor_details_labor_id_foreign` FOREIGN KEY (`labor_id`) REFERENCES `labors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `labor_details_service_id_foreign` FOREIGN KEY (`service_id`) REFERENCES `labor_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `labor_details_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=171 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of labor_details -- ---------------------------- -- ---------------------------- -- Table structure for `labor_services` -- ---------------------------- DROP TABLE IF EXISTS `labor_services`; CREATE TABLE `labor_services` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `unit` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ref_from` double DEFAULT NULL, `ref_to` double DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `category_id` bigint unsigned NOT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `labor_services_category_id_foreign` (`category_id`), KEY `labor_services_created_by_foreign` (`created_by`), KEY `labor_services_updated_by_foreign` (`updated_by`), CONSTRAINT `labor_services_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `labor_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `labor_services_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`), CONSTRAINT `labor_services_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of labor_services -- ---------------------------- INSERT INTO `labor_services` VALUES ('10', 'WBC', '10^9/L', '3.5', '9.5', null, '1', '1', '1', '2021-02-28 14:56:58', '2021-03-23 21:24:09'); INSERT INTO `labor_services` VALUES ('11', 'Neu%', '%', '40', '75', null, '1', '1', '1', '2021-02-28 15:04:32', '2021-03-23 21:24:39'); INSERT INTO `labor_services` VALUES ('12', 'Lym%', '%', '20', '50', null, '1', '7', '1', '2021-03-11 19:10:35', '2021-03-23 21:24:59'); INSERT INTO `labor_services` VALUES ('13', 'Mon%', '%', '3', '10', null, '1', '7', '1', '2021-03-11 19:10:51', '2021-03-23 21:25:33'); INSERT INTO `labor_services` VALUES ('17', 'Eos%', '%', '0.4', '8', null, '1', '7', '1', '2021-03-11 19:12:09', '2021-03-23 21:26:12'); INSERT INTO `labor_services` VALUES ('18', 'Bas%', '%', '0', '1', null, '1', '7', '1', '2021-03-11 19:12:27', '2021-03-23 21:26:43'); INSERT INTO `labor_services` VALUES ('19', 'Neu#', '10^9/L', '1.8', '6.3', null, '1', '7', '1', '2021-03-11 19:12:45', '2021-03-23 21:27:21'); INSERT INTO `labor_services` VALUES ('20', 'Lym#', '10^9/L', '1.1', '3.2', null, '1', '7', '1', '2021-03-18 20:30:33', '2021-03-23 21:28:57'); INSERT INTO `labor_services` VALUES ('21', 'Mon#', '10^9/L', '0.1', '0.6', null, '1', '7', '1', '2021-03-18 20:30:39', '2021-03-23 21:29:50'); INSERT INTO `labor_services` VALUES ('22', 'Eos#', '10^9/L', '0.02', '0.52', null, '1', '1', '1', '2021-03-23 21:30:33', '2021-03-23 21:30:33'); INSERT INTO `labor_services` VALUES ('23', 'Bas#', '10^9/L', '0', '0.06', null, '1', '1', '1', '2021-03-23 21:30:53', '2021-03-23 21:31:12'); INSERT INTO `labor_services` VALUES ('24', 'AL#', '10^9/L', '0', '0.2', null, '1', '1', '1', '2021-03-23 21:31:39', '2021-03-23 21:31:39'); INSERT INTO `labor_services` VALUES ('25', 'AL%', '%', '0', '0.2', null, '1', '1', '1', '2021-03-23 21:32:02', '2021-03-23 21:32:02'); INSERT INTO `labor_services` VALUES ('26', 'IG#', '10^9/L', '0', '0.2', null, '1', '1', '1', '2021-03-23 21:33:29', '2021-03-23 21:33:29'); INSERT INTO `labor_services` VALUES ('27', 'IG%', '%', '0', '2.5', null, '1', '1', '1', '2021-03-23 21:33:54', '2021-03-23 21:33:54'); INSERT INTO `labor_services` VALUES ('28', 'RBC', '10^12/L', '4.3', '5.8', null, '1', '1', '1', '2021-03-23 21:34:29', '2021-03-23 21:34:29'); INSERT INTO `labor_services` VALUES ('29', 'HGB', 'g/L', '130', '175', null, '1', '1', '1', '2021-03-23 21:35:06', '2021-03-23 21:35:06'); INSERT INTO `labor_services` VALUES ('30', 'HCT', '%', '40', '50', null, '1', '1', '1', '2021-03-23 21:35:22', '2021-03-23 21:35:22'); INSERT INTO `labor_services` VALUES ('31', 'MCV', 'fL', '82', '100', null, '1', '1', '1', '2021-03-23 21:35:44', '2021-03-23 21:35:44'); INSERT INTO `labor_services` VALUES ('32', 'MCH', 'pg', '27', '34', null, '1', '1', '1', '2021-03-23 21:36:01', '2021-03-23 21:36:01'); INSERT INTO `labor_services` VALUES ('33', 'MCHC', 'g/L', '316', '354', null, '1', '1', '1', '2021-03-23 21:36:27', '2021-03-23 21:36:27'); INSERT INTO `labor_services` VALUES ('34', 'RDW-CV', '%', '11', '16', null, '1', '1', '1', '2021-03-23 21:36:53', '2021-03-23 21:36:53'); INSERT INTO `labor_services` VALUES ('35', 'RDW-SD', 'fL', '35', '56', null, '1', '1', '1', '2021-03-23 21:37:11', '2021-03-23 21:37:11'); INSERT INTO `labor_services` VALUES ('36', 'PLT', '10^9/L', '125', '350', null, '1', '1', '1', '2021-03-23 21:37:35', '2021-03-23 21:37:35'); INSERT INTO `labor_services` VALUES ('37', 'MPV', 'fL', '6.5', '12', null, '1', '1', '1', '2021-03-23 21:37:54', '2021-03-23 21:37:54'); INSERT INTO `labor_services` VALUES ('38', 'PDW', 'fL', '9', '17', null, '1', '1', '1', '2021-03-23 21:38:17', '2021-03-23 21:38:17'); INSERT INTO `labor_services` VALUES ('39', 'PCT', '%', '0.108', '0.282', null, '1', '1', '1', '2021-03-23 21:38:48', '2021-03-23 21:38:48'); INSERT INTO `labor_services` VALUES ('40', 'P-LCR', '%', '11', '45', null, '1', '1', '1', '2021-03-23 21:39:09', '2021-03-23 21:39:09'); INSERT INTO `labor_services` VALUES ('41', 'P-LCC', '10^9/L', '30', '90', null, '1', '1', '1', '2021-03-23 21:39:30', '2021-03-23 21:39:30'); INSERT INTO `labor_services` VALUES ('42', '▢ Calcium Arsenazo', 'mg/dL', '8.6', '10.2', null, '2', '1', '1', '2021-03-23 21:39:54', '2021-03-24 20:54:25'); INSERT INTO `labor_services` VALUES ('43', '▢ CHOLLn', 'mg/l', '120', '200', null, '2', '1', '1', '2021-03-23 21:40:13', '2021-03-24 20:54:28'); INSERT INTO `labor_services` VALUES ('44', '▢ Creatinine', 'mg/dl', '0.7', '1.4', null, '2', '1', '1', '2021-03-23 21:40:32', '2021-03-24 20:54:31'); INSERT INTO `labor_services` VALUES ('45', '▢ GLUCLn', 'mg/dl', '74', '100', null, '2', '1', '1', '2021-03-23 21:40:51', '2021-03-24 20:54:35'); INSERT INTO `labor_services` VALUES ('46', '▢ GOT(ast)Liquid', 'U/L', '3.1', '38', null, '2', '1', '1', '2021-03-23 21:41:08', '2021-03-24 20:54:38'); INSERT INTO `labor_services` VALUES ('47', '▢ GPL(alt)Liquid', 'U/L', '3', '40', null, '2', '1', '1', '2021-03-23 21:41:38', '2021-03-24 20:54:40'); INSERT INTO `labor_services` VALUES ('48', '▢ TRIGLn', 'mg/dl', '40', '160', null, '2', '1', '1', '2021-03-23 21:41:59', '2021-03-24 20:54:44'); INSERT INTO `labor_services` VALUES ('49', '▢ UALn', 'mg/l', '3.6', '7.7', null, '2', '1', '1', '2021-03-23 21:42:22', '2021-03-24 20:54:47'); INSERT INTO `labor_services` VALUES ('50', '▢ Proteine', null, null, null, null, '3', '1', '1', '2021-03-24 18:51:56', '2021-03-24 18:53:27'); INSERT INTO `labor_services` VALUES ('51', 'Hematie', null, null, null, null, '3', '1', '1', '2021-03-24 18:53:58', '2021-03-25 21:58:35'); INSERT INTO `labor_services` VALUES ('52', '▢ PH', null, null, null, null, '3', '1', '1', '2021-03-24 18:54:24', '2021-03-25 21:59:21'); INSERT INTO `labor_services` VALUES ('53', 'Leucocyte', null, null, null, null, '3', '1', '1', '2021-03-24 18:55:03', '2021-03-24 18:55:03'); INSERT INTO `labor_services` VALUES ('54', '▢ Glucose', null, null, null, null, '3', '1', '1', '2021-03-24 18:55:41', '2021-03-24 18:55:41'); INSERT INTO `labor_services` VALUES ('55', 'Cylinder', null, null, null, null, '3', '1', '1', '2021-03-24 18:55:53', '2021-03-24 18:55:53'); INSERT INTO `labor_services` VALUES ('56', '▢ T. Grosses', null, null, null, null, '3', '1', '1', '2021-03-24 18:55:59', '2021-03-24 18:55:59'); INSERT INTO `labor_services` VALUES ('57', 'Bacterie', null, null, null, null, '3', '1', '1', '2021-03-24 18:56:05', '2021-03-24 18:56:05'); INSERT INTO `labor_services` VALUES ('58', '▢ Sediment Urinarire', null, null, null, null, '3', '1', '1', '2021-03-24 18:56:12', '2021-03-24 18:56:12'); INSERT INTO `labor_services` VALUES ('59', 'Cristaux', null, null, null, null, '3', '1', '1', '2021-03-24 18:56:23', '2021-03-24 18:56:23'); INSERT INTO `labor_services` VALUES ('60', '- Cellule epitteliales', null, null, null, null, '3', '1', '1', '2021-03-24 18:56:30', '2021-03-24 18:56:30'); INSERT INTO `labor_services` VALUES ('61', 'Candida', null, null, null, null, '3', '1', '1', '2021-03-24 18:56:50', '2021-03-24 18:56:50'); INSERT INTO `labor_services` VALUES ('62', '▢ HBs.Ag', null, null, null, null, '4', '1', '1', '2021-03-24 18:57:33', '2021-03-24 18:57:33'); INSERT INTO `labor_services` VALUES ('63', '▢ ASLO', null, null, null, null, '4', '1', '1', '2021-03-24 18:58:04', '2021-03-24 18:58:04'); INSERT INTO `labor_services` VALUES ('64', '▢ HBs.Ab', null, null, null, null, '4', '1', '1', '2021-03-24 18:58:21', '2021-03-24 18:58:21'); INSERT INTO `labor_services` VALUES ('65', '▢ <NAME>', null, null, null, null, '4', '1', '1', '2021-03-24 18:58:34', '2021-03-24 18:58:34'); INSERT INTO `labor_services` VALUES ('66', '▢ AFP', null, null, null, null, '4', '1', '1', '2021-03-24 18:58:47', '2021-03-24 18:58:47'); INSERT INTO `labor_services` VALUES ('67', '▢ Widal:', null, null, null, null, '4', '1', '1', '2021-03-24 18:58:59', '2021-03-24 18:58:59'); INSERT INTO `labor_services` VALUES ('68', '▢ HCV.Ab', null, null, null, null, '4', '1', '1', '2021-03-24 18:59:11', '2021-03-24 18:59:11'); INSERT INTO `labor_services` VALUES ('69', ' ​ ​ ​ ​ ​ TO', null, null, null, null, '4', '1', '1', '2021-03-24 18:59:25', '2021-03-24 18:59:25'); INSERT INTO `labor_services` VALUES ('70', '▢ Syphilis', null, null, null, null, '4', '1', '1', '2021-03-24 18:59:43', '2021-03-24 18:59:43'); INSERT INTO `labor_services` VALUES ('71', ' ​ ​ ​ ​ ​ TH', null, null, null, null, '4', '1', '1', '2021-03-24 18:59:54', '2021-03-24 18:59:54'); INSERT INTO `labor_services` VALUES ('72', '▢ Anti.HIV', null, null, null, null, '4', '1', '1', '2021-03-24 18:59:59', '2021-03-24 18:59:59'); INSERT INTO `labor_services` VALUES ('73', 'ក្រុមឈាម', null, null, null, null, '5', '1', '1', '2021-03-24 19:00:52', '2021-03-24 19:00:52'); -- ---------------------------- -- Table structure for `labor_types` -- ---------------------------- DROP TABLE IF EXISTS `labor_types`; CREATE TABLE `labor_types` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of labor_types -- ---------------------------- INSERT INTO `labor_types` VALUES ('1', 'Labo', 'labor-standard', '', null, null); INSERT INTO `labor_types` VALUES ('2', 'Hematology', 'hematology', '', null, null); INSERT INTO `labor_types` VALUES ('3', 'Biologie', 'biologie', '', null, null); INSERT INTO `labor_types` VALUES ('4', 'Urine', 'urine', '', null, null); INSERT INTO `labor_types` VALUES ('5', 'Serologie', 'serologie', '', null, null); INSERT INTO `labor_types` VALUES ('6', 'Blood type', 'blood-type', '', null, null); -- ---------------------------- -- Table structure for `medicines` -- ---------------------------- DROP TABLE IF EXISTS `medicines`; CREATE TABLE `medicines` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `usage_id` int unsigned NOT NULL DEFAULT '1', `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `price` double NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `medicines_usage_id_foreign` (`usage_id`), KEY `medicines_created_by_foreign` (`created_by`), KEY `medicines_updated_by_foreign` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of medicines -- ---------------------------- INSERT INTO `medicines` VALUES ('5', 'Panadol', null, null, '1', '1', '1', '2021-02-19 07:11:39', '2021-02-19 07:11:39', '0'); INSERT INTO `medicines` VALUES ('6', 'Exnadol', null, null, '1', '1', '1', '2021-02-19 07:11:39', '2021-02-19 07:11:39', '0'); INSERT INTO `medicines` VALUES ('7', 'AAAAAAAAAA', null, null, '1', '1', '1', '2021-02-19 07:13:44', '2021-02-19 07:13:44', '0'); INSERT INTO `medicines` VALUES ('8', 'Panadol1', null, null, '1', '2', '2', '2021-02-23 08:35:02', '2021-02-23 08:35:02', '0'); -- ---------------------------- -- Table structure for `migrations` -- ---------------------------- DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of migrations -- ---------------------------- INSERT INTO `migrations` VALUES ('1', '2018_12_18_094613_create_password_resets_table', '1'); INSERT INTO `migrations` VALUES ('2', '2019_02_22_004943_create_users_table', '1'); INSERT INTO `migrations` VALUES ('4', '2019_02_22_085134_create_provinces_table', '1'); INSERT INTO `migrations` VALUES ('5', '2019_02_22_085150_create_districts_table', '1'); INSERT INTO `migrations` VALUES ('6', '2020_07_29_091923_create_permission_tables', '1'); INSERT INTO `migrations` VALUES ('7', '2020_07_30_091923_create_default_datas_tables', '1'); INSERT INTO `migrations` VALUES ('8', '2020_12_17_110019_create_sessions_table', '1'); INSERT INTO `migrations` VALUES ('9', '2020_12_18_110019_create_patients_table', '1'); INSERT INTO `migrations` VALUES ('10', '2020_12_18_110019_create_usages_table', '1'); INSERT INTO `migrations` VALUES ('11', '2020_12_18_110020_create_medicines_table', '1'); INSERT INTO `migrations` VALUES ('12', '2020_12_18_110021_create_doctors_table', '1'); INSERT INTO `migrations` VALUES ('13', '2020_12_18_110030_create_services_table', '1'); INSERT INTO `migrations` VALUES ('14', '2020_12_18_110031_create_invoices_table', '1'); INSERT INTO `migrations` VALUES ('15', '2020_12_18_110032_create_invoice_details_table', '1'); INSERT INTO `migrations` VALUES ('16', '2020_12_18_110034_create_prescriptions_table', '1'); INSERT INTO `migrations` VALUES ('17', '2020_12_18_110035_create_prescription_details_table', '1'); INSERT INTO `migrations` VALUES ('35', '2019_02_22_085133_create_setting_table', '2'); INSERT INTO `migrations` VALUES ('36', '2020_12_18_110037_create_echo_default_descriptions_table', '2'); INSERT INTO `migrations` VALUES ('37', '2020_12_18_110037_create_echoes_table', '2'); INSERT INTO `migrations` VALUES ('38', '2021_02_05_220905_update_medicine_service_and_invoice', '3'); INSERT INTO `migrations` VALUES ('45', '2021_02_27_213423_create_labor_categories_table', '5'); INSERT INTO `migrations` VALUES ('46', '2021_02_27_213530_create_labor_services_table', '5'); INSERT INTO `migrations` VALUES ('47', '2021_02_28_220038_create_labors_table', '6'); INSERT INTO `migrations` VALUES ('48', '2021_02_28_220140_create_labor_details_table', '6'); INSERT INTO `migrations` VALUES ('49', '2021_02_28_220037_create_labor_types_table', '7'); -- ---------------------------- -- Table structure for `model_has_permissions` -- ---------------------------- DROP TABLE IF EXISTS `model_has_permissions`; CREATE TABLE `model_has_permissions` ( `permission_id` bigint unsigned NOT NULL, `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint unsigned NOT NULL, PRIMARY KEY (`permission_id`,`model_id`,`model_type`), KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of model_has_permissions -- ---------------------------- -- ---------------------------- -- Table structure for `model_has_roles` -- ---------------------------- DROP TABLE IF EXISTS `model_has_roles`; CREATE TABLE `model_has_roles` ( `role_id` bigint unsigned NOT NULL, `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint unsigned NOT NULL, PRIMARY KEY (`role_id`,`model_id`,`model_type`), KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of model_has_roles -- ---------------------------- INSERT INTO `model_has_roles` VALUES ('1', 'App\\Models\\User', '1'); INSERT INTO `model_has_roles` VALUES ('2', 'App\\Models\\User', '2'); INSERT INTO `model_has_roles` VALUES ('1', 'App\\Models\\User', '3'); INSERT INTO `model_has_roles` VALUES ('1', 'App\\Models\\User', '4'); INSERT INTO `model_has_roles` VALUES ('4', 'App\\Models\\User', '5'); INSERT INTO `model_has_roles` VALUES ('5', 'App\\Models\\User', '6'); INSERT INTO `model_has_roles` VALUES ('6', 'App\\Models\\User', '7'); -- ---------------------------- -- Table structure for `password_resets` -- ---------------------------- DROP TABLE IF EXISTS `password_resets`; CREATE TABLE `password_resets` ( `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of password_resets -- ---------------------------- -- ---------------------------- -- Table structure for `patients` -- ---------------------------- DROP TABLE IF EXISTS `patients`; CREATE TABLE `patients` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `id_card` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gender` tinyint(1) NOT NULL DEFAULT '1', `age` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `age_type` enum('1','2') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `full_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_village` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_commune` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_district_id` bigint unsigned DEFAULT NULL, `address_province_id` bigint unsigned DEFAULT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `patients_address_district_id_foreign` (`address_district_id`), KEY `patients_address_province_id_foreign` (`address_province_id`), KEY `patients_created_by_foreign` (`created_by`), KEY `patients_updated_by_foreign` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of patients -- ---------------------------- INSERT INTO `patients` VALUES ('21', 'Chenda', '524525', '<EMAIL>', '5244324', '1', '15', '1', null, null, null, null, '68', '8', '3', '3', '2021-02-19 06:05:31', '2021-02-19 06:05:31'); INSERT INTO `patients` VALUES ('22', 'mongkul', null, null, null, '1', null, '1', null, null, null, null, null, null, '2', '2', '2021-02-23 08:34:01', '2021-02-23 08:34:01'); INSERT INTO `patients` VALUES ('23', 'Testing', null, null, '0', '1', '13', '1', null, null, null, null, '25', '3', '1', '1', '2021-02-28 02:18:35', '2021-02-28 02:18:35'); INSERT INTO `patients` VALUES ('24', 'monglyly', null, null, null, '1', '33', '1', null, null, null, null, null, null, '2', '2', '2021-03-08 21:36:41', '2021-03-08 21:36:41'); INSERT INTO `patients` VALUES ('25', 'Phea', null, null, null, '1', '01', '1', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '2', '2', '2021-03-10 10:54:39', '2021-03-10 10:54:39'); INSERT INTO `patients` VALUES ('26', 'ផា', null, null, null, '1', '២០', '1', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', '24', '3', '2', '2', '2021-03-10 11:01:36', '2021-03-10 11:01:36'); INSERT INTO `patients` VALUES ('27', 'rey', null, null, null, '1', '31', '1', null, null, null, null, null, null, '2', '2', '2021-03-10 11:14:20', '2021-03-10 11:14:20'); INSERT INTO `patients` VALUES ('28', 'ណុល', null, null, '0714863333', '1', '50', '1', null, null, 'ថ្នល់បែកលិច', 'ស្វាយទាប', '24', '3', '7', '7', '2021-03-11 15:13:04', '2021-03-11 15:13:04'); -- ---------------------------- -- Table structure for `permissions` -- ---------------------------- DROP TABLE IF EXISTS `permissions`; CREATE TABLE `permissions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of permissions -- ---------------------------- INSERT INTO `permissions` VALUES ('1', 'Permission Index', 'web', 'Visit Permission Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('2', 'Permission Create', 'web', 'Create new Permission', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('3', 'Permission Edit', 'web', 'Edit Existed Permission', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('4', 'Permission Delete', 'web', 'Delete Existed Permission', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('5', 'Permission Assign User', 'web', 'Assign Permissions to Users', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('6', 'Permission Assign Role', 'web', 'Assign Permissions to Roles', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('7', 'Role Index', 'web', 'Visit Role Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('8', 'Role Create', 'web', 'Create new Role', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('9', 'Role Edit', 'web', 'Edit Existed Role', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('10', 'Role Delete', 'web', 'Delete Existed Role', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('11', 'Role Assign User', 'web', 'Assign Roles to Users', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('12', 'Role Assign Permission', 'web', 'Assign Permission to Users', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('13', 'User Index', 'web', 'Visit User Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('14', 'User Create', 'web', 'Create new User', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('15', 'User Edit', 'web', 'Edit Existed User', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('16', 'User Delete', 'web', 'Delete Existed User', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('17', 'User Password', 'web', 'Change Password User', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('18', 'User Assign Role', 'web', 'Assign Roles to Users', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('19', 'User Assign Permission', 'web', 'Assign Permission to Users', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('20', 'Province Index', 'web', 'Visit Province Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('21', 'Province Create', 'web', 'Create new Province', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('22', 'Province Edit', 'web', 'Edit Existed Province', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('23', 'Province Delete', 'web', 'Delete Existed Province', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('24', 'District Index', 'web', 'Visit District Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('25', 'District Create', 'web', 'Create new District', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('26', 'District Edit', 'web', 'Edit Existed District', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('27', 'District Delete', 'web', 'Delete Existed District', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('28', 'Medicine Index', 'web', 'Visit Medicine Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('29', 'Medicine Create', 'web', 'Create new Medicine', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('30', 'Medicine Edit', 'web', 'Edit Existed Medicine', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('31', 'Medicine Delete', 'web', 'Delete Existed Medicine', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('32', 'Usage Index', 'web', 'Visit Usage Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('33', 'Usage Create', 'web', 'Create new Usage', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('34', 'Usage Edit', 'web', 'Edit Existed Usage', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('35', 'Usage Delete', 'web', 'Delete Existed Usage', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('36', 'Doctor Index', 'web', 'Visit Doctor Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('37', 'Doctor Create', 'web', 'Create new Doctor', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('38', 'Doctor Edit', 'web', 'Edit Existed Doctor', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('39', 'Doctor Delete', 'web', 'Delete Existed Doctor', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('40', 'Doctor Show', 'web', 'Show Doctor detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('41', 'Patient Index', 'web', 'Visit Patient Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('42', 'Patient Create', 'web', 'Create new Patient', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('43', 'Patient Edit', 'web', 'Edit Existed Patient', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('44', 'Patient Delete', 'web', 'Delete Existed Patient', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('45', 'Patient Show', 'web', 'Show Patient detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('46', 'Service Index', 'web', 'Visit Service Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('47', 'Service Create', 'web', 'Create new Service', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('48', 'Service Edit', 'web', 'Edit Existed Service', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('49', 'Service Delete', 'web', 'Delete Existed Service', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('50', 'Service Show', 'web', 'Show Service detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('51', 'Invoice Index', 'web', 'Visit Invoice Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('52', 'Invoice Create', 'web', 'Create new Invoice', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('53', 'Invoice Edit', 'web', 'Edit Existed Invoice', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('54', 'Invoice Delete', 'web', 'Delete Existed Invoice', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('55', 'Invoice Show', 'web', 'Show Invoice detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('56', 'Invoice Print', 'web', 'Show Invoice detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('57', 'Prescription Index', 'web', 'Visit Prescription Index', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('58', 'Prescription Create', 'web', 'Create new Prescription', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('59', 'Prescription Edit', 'web', 'Edit Existed Prescription', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('60', 'Prescription Delete', 'web', 'Delete Existed Prescription', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('61', 'Prescription Show', 'web', 'Show Prescription detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('62', 'Prescription Print', 'web', 'Print Prescription detail', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `permissions` VALUES ('63', 'Setting Index', 'web', null, '2021-01-31 06:40:33', '2021-01-31 06:40:33'); INSERT INTO `permissions` VALUES ('64', 'Echo Default Description Index', 'web', 'Echo Default Description Index', '2021-01-31 07:16:49', '2021-01-31 07:16:49'); INSERT INTO `permissions` VALUES ('65', 'Echo Default Description Create', 'web', 'Create new Echo Default Description', '2021-01-31 07:16:49', '2021-01-31 07:16:49'); INSERT INTO `permissions` VALUES ('66', 'Echo Default Description Edit', 'web', 'Edit Existed Echo Default Description', '2021-01-31 07:16:49', '2021-01-31 07:16:49'); INSERT INTO `permissions` VALUES ('67', 'Echo Default Description Delete', 'web', 'Delete Existed Echo Default Description', '2021-01-31 07:16:49', '2021-01-31 07:16:49'); INSERT INTO `permissions` VALUES ('68', 'Echo Index', 'web', 'Echo Index', '2021-01-31 07:16:54', '2021-01-31 07:16:54'); INSERT INTO `permissions` VALUES ('69', 'Echo Create', 'web', 'Create new Echo', '2021-01-31 07:16:54', '2021-01-31 07:16:54'); INSERT INTO `permissions` VALUES ('70', 'Echo Edit', 'web', 'Edit Existed Echo', '2021-01-31 07:16:54', '2021-01-31 07:16:54'); INSERT INTO `permissions` VALUES ('71', 'Echo Delete', 'web', 'Delete Existed Echo', '2021-01-31 07:16:54', '2021-01-31 07:16:54'); INSERT INTO `permissions` VALUES ('72', 'Echo Print', 'web', null, '2021-02-07 10:48:28', '2021-02-07 10:48:28'); INSERT INTO `permissions` VALUES ('73', 'Labor Index', 'web', 'Labor Index', '2021-02-26 15:10:18', '2021-02-26 15:10:18'); INSERT INTO `permissions` VALUES ('74', 'Labor Create', 'web', 'Create new Labor', '2021-02-26 15:10:18', '2021-02-26 15:10:18'); INSERT INTO `permissions` VALUES ('75', 'Labor Edit', 'web', 'Edit Existed Labor', '2021-02-26 15:10:18', '2021-02-26 15:10:18'); INSERT INTO `permissions` VALUES ('76', 'Labor Delete', 'web', 'Delete Existed Labor', '2021-02-26 15:10:18', '2021-02-26 15:10:18'); INSERT INTO `permissions` VALUES ('82', 'Labor Print', 'web', null, '2021-02-26 15:11:15', '2021-02-26 15:11:15'); INSERT INTO `permissions` VALUES ('83', 'Labor Show', 'web', null, '2021-02-26 15:11:44', '2021-02-26 15:11:44'); INSERT INTO `permissions` VALUES ('84', 'Labor Service Index', 'web', 'Labor Service Index', '2021-02-27 15:24:40', '2021-02-27 15:24:40'); INSERT INTO `permissions` VALUES ('85', 'Labor Service Create', 'web', 'Create new Labor Service', '2021-02-27 15:24:40', '2021-02-27 15:24:40'); INSERT INTO `permissions` VALUES ('86', 'Labor Service Edit', 'web', 'Edit Existed Labor Service', '2021-02-27 15:24:40', '2021-02-27 15:24:40'); INSERT INTO `permissions` VALUES ('87', 'Labor Service Delete', 'web', 'Delete Existed Labor Service', '2021-02-27 15:24:40', '2021-02-27 15:24:40'); INSERT INTO `permissions` VALUES ('88', 'Labor Category Index', 'web', 'Labor Category Index', '2021-02-27 15:24:46', '2021-02-27 15:24:46'); INSERT INTO `permissions` VALUES ('89', 'Labor Category Create', 'web', 'Create new Labor Category', '2021-02-27 15:24:46', '2021-02-27 15:24:46'); INSERT INTO `permissions` VALUES ('90', 'Labor Category Edit', 'web', 'Edit Existed Labor Category', '2021-02-27 15:24:46', '2021-02-27 15:24:46'); INSERT INTO `permissions` VALUES ('91', 'Labor Category Delete', 'web', 'Delete Existed Labor Category', '2021-02-27 15:24:46', '2021-02-27 15:24:46'); INSERT INTO `permissions` VALUES ('92', 'Labor Report', 'web', 'Labor Report Labor Report', '2021-02-28 14:57:37', '2021-02-28 14:57:37'); -- ---------------------------- -- Table structure for `prescriptions` -- ---------------------------- DROP TABLE IF EXISTS `prescriptions`; CREATE TABLE `prescriptions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `date` date NOT NULL, `code` int NOT NULL, `pt_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pt_age` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_age_type` enum('1','2') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `pt_gender` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pt_diagnosis` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_village` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_commune` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `pt_district_id` bigint unsigned DEFAULT NULL, `pt_province_id` bigint unsigned DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '0', `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `patient_id` bigint unsigned DEFAULT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `prescriptions_patient_id_foreign` (`patient_id`), KEY `prescriptions_created_by_foreign` (`created_by`), KEY `prescriptions_updated_by_foreign` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of prescriptions -- ---------------------------- INSERT INTO `prescriptions` VALUES ('23', '2021-02-19', '1', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', '1111111111111', '111111111', '111111111', '68', '8', '0', '11111111', '21', '1', '1', '2021-02-19 07:11:39', '2021-02-19 07:11:39'); INSERT INTO `prescriptions` VALUES ('24', '2021-02-20', '2', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, 'ស្វាយទាប', 'ស្វាយទាប', '26', '3', '0', null, '21', '2', '2', '2021-02-20 06:32:43', '2021-02-20 06:32:43'); INSERT INTO `prescriptions` VALUES ('25', '2021-02-22', '3', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '2', '2', '2021-02-22 03:40:54', '2021-02-22 03:40:54'); INSERT INTO `prescriptions` VALUES ('26', '2021-02-22', '4', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, 'sdfgs', 'daf', '68', '8', '0', null, '21', '3', '3', '2021-02-22 03:58:12', '2021-02-22 03:58:12'); INSERT INTO `prescriptions` VALUES ('27', '2021-02-23', '5', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '2', '2', '2021-02-23 08:35:02', '2021-02-23 08:35:02'); INSERT INTO `prescriptions` VALUES ('28', '2021-03-08', '6', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, '67', '8', '0', null, '22', '2', '2', '2021-03-08 21:53:03', '2021-03-08 21:53:03'); INSERT INTO `prescriptions` VALUES ('29', '2021-03-08', '6', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '22', '2', '2', '2021-03-08 21:53:16', '2021-03-08 21:53:16'); INSERT INTO `prescriptions` VALUES ('30', '2021-03-08', '6', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '22', '2', '2', '2021-03-08 21:53:54', '2021-03-08 21:53:54'); INSERT INTO `prescriptions` VALUES ('31', '2021-03-08', '7', '000023', 'Testing', '13', '1', 'ប្រុស', '0', 'trytdry', 'rsres', 'yg', '25', '3', '0', null, '23', '3', '3', '2021-03-08 21:58:44', '2021-03-08 21:58:44'); INSERT INTO `prescriptions` VALUES ('32', '2021-03-08', '7', '000022', 'mongkul', '564', '1', 'ប្រុស', null, null, null, null, '26', '3', '0', null, '22', '3', '3', '2021-03-08 21:59:25', '2021-03-08 21:59:25'); INSERT INTO `prescriptions` VALUES ('33', '2021-03-09', '8', '000023', 'Testing', '13', '1', 'ប្រុស', '0', '11', '44', '33', '25', '3', '0', '22', '23', '1', '1', '2021-03-09 09:22:59', '2021-03-09 09:22:59'); INSERT INTO `prescriptions` VALUES ('34', '2021-03-09', '8', '000023', 'Testing', '13', '1', 'ប្រុស', '0', '11', '44', '33', '25', '3', '0', '22', '23', '1', '1', '2021-03-09 09:23:58', '2021-03-09 09:23:58'); INSERT INTO `prescriptions` VALUES ('35', '2021-03-10', '9', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '22', '2', '2', '2021-03-10 11:12:11', '2021-03-10 11:12:11'); INSERT INTO `prescriptions` VALUES ('36', '2021-03-10', '10', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '2', '2', '2021-03-10 11:17:58', '2021-03-10 11:17:58'); INSERT INTO `prescriptions` VALUES ('37', '2021-03-11', '11', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '6', '6', '2021-03-11 13:07:04', '2021-03-11 13:07:04'); INSERT INTO `prescriptions` VALUES ('38', '2021-03-11', '12', '000024', 'monglyly', '33', '1', 'ប្រុស', '54565344', 'fff', 'f', 'f', '35', '4', '0', null, '24', '7', '7', '2021-03-11 13:35:01', '2021-03-11 13:35:01'); INSERT INTO `prescriptions` VALUES ('39', '2021-03-11', '13', '000028', 'ណុល', '50', '1', 'ប្រុស', '0714863333', null, 'ថ្នល់បែកលិច', 'ស្វាយទាប', '24', '3', '0', null, '28', '7', '7', '2021-03-11 15:19:13', '2021-03-11 15:19:13'); INSERT INTO `prescriptions` VALUES ('40', '2021-03-11', '14', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '7', '7', '2021-03-11 15:29:12', '2021-03-11 15:29:12'); INSERT INTO `prescriptions` VALUES ('41', '2021-03-11', '15', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '26', '3', '0', null, '21', '7', '7', '2021-03-11 19:40:51', '2021-03-11 19:40:51'); INSERT INTO `prescriptions` VALUES ('42', '2021-03-11', '16', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', '26', '3', '0', null, '25', '7', '7', '2021-03-11 20:04:01', '2021-03-11 20:04:03'); INSERT INTO `prescriptions` VALUES ('43', '2021-03-11', '17', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '22', '7', '7', '2021-03-11 20:06:04', '2021-03-11 20:06:04'); INSERT INTO `prescriptions` VALUES ('44', '2021-03-11', '18', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '7', '7', '2021-03-11 20:09:28', '2021-03-11 20:09:28'); INSERT INTO `prescriptions` VALUES ('45', '2021-03-11', '19', '000025', 'Phea', '01', '1', 'ប្រុស', null, 'Test', 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-11 20:12:26', '2021-03-11 20:12:26'); INSERT INTO `prescriptions` VALUES ('46', '2021-03-11', '20', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-11 20:16:54', '2021-03-11 20:16:54'); INSERT INTO `prescriptions` VALUES ('47', '2021-03-11', '21', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '7', '7', '2021-03-11 20:18:07', '2021-03-11 20:18:07'); INSERT INTO `prescriptions` VALUES ('48', '2021-03-11', '22', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-11 20:19:05', '2021-03-11 20:19:05'); INSERT INTO `prescriptions` VALUES ('49', '2021-03-11', '23', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-11 20:30:33', '2021-03-11 20:30:33'); INSERT INTO `prescriptions` VALUES ('50', '2021-03-12', '24', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-12 09:52:32', '2021-03-12 09:52:32'); INSERT INTO `prescriptions` VALUES ('51', '2021-03-12', '25', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '22', '7', '7', '2021-03-12 09:59:51', '2021-03-12 09:59:51'); INSERT INTO `prescriptions` VALUES ('52', '2021-03-15', '26', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-15 08:53:53', '2021-03-15 08:53:53'); INSERT INTO `prescriptions` VALUES ('53', '2021-03-15', '27', '000022', 'mongkul', null, '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '22', '7', '7', '2021-03-15 10:29:25', '2021-03-15 10:29:25'); INSERT INTO `prescriptions` VALUES ('54', '2021-03-16', '28', '000021', 'Chenda', '15', '1', 'ប្រុស', '5244324', null, null, null, '68', '8', '0', null, '21', '7', '7', '2021-03-16 14:12:46', '2021-03-16 14:12:46'); INSERT INTO `prescriptions` VALUES ('55', '2021-03-16', '29', '000025', 'Phea', '01', '1', 'ប្រុស', null, null, 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-16 15:40:00', '2021-03-16 15:40:00'); INSERT INTO `prescriptions` VALUES ('56', '2021-03-16', '30', '000025', 'Phea', '01', '1', 'ប្រុស', null, 'hii', 'ថ្នល់បែក', 'ស្វាយទាប', null, '3', '0', null, '25', '7', '7', '2021-03-16 15:44:53', '2021-03-16 15:44:53'); INSERT INTO `prescriptions` VALUES ('57', '2021-03-16', '31', '000024', 'monglyly', '33', '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '24', '7', '7', '2021-03-16 15:55:04', '2021-03-16 15:55:04'); INSERT INTO `prescriptions` VALUES ('58', '2021-03-17', '32', '000024', 'monglyly', '33', '1', 'ប្រុស', null, null, null, null, null, null, '0', null, '24', '7', '7', '2021-03-17 11:30:22', '2021-03-17 11:30:22'); -- ---------------------------- -- Table structure for `prescription_details` -- ---------------------------- DROP TABLE IF EXISTS `prescription_details`; CREATE TABLE `prescription_details` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `medicine_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `medicine_usage` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `morning` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `afternoon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `evening` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `night` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty_days` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `index` int NOT NULL, `medicine_id` bigint unsigned DEFAULT NULL, `prescription_id` bigint unsigned NOT NULL, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `prescription_details_medicine_id_foreign` (`medicine_id`), KEY `prescription_details_prescription_id_foreign` (`prescription_id`), KEY `prescription_details_created_by_foreign` (`created_by`), KEY `prescription_details_updated_by_foreign` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of prescription_details -- ---------------------------- INSERT INTO `prescription_details` VALUES ('1', 'asdfaasdf', 'លេប', '1', '0', '0', '1', '0', null, '1', '3', '1', '1', '1', '2021-01-31 06:54:57', '2021-01-31 06:54:57'); INSERT INTO `prescription_details` VALUES ('2', 'Paracetamol 500', 'លេប', '1', '0', '1', '0', '0', null, '1', null, '4', '1', '1', '2021-02-10 15:02:03', '2021-02-10 15:02:03'); INSERT INTO `prescription_details` VALUES ('3', 'Wood Serum', 'ផឹក', '1', '1', '1', '1', '0', null, '2', null, '4', '1', '1', '2021-02-10 15:02:03', '2021-02-10 15:02:03'); INSERT INTO `prescription_details` VALUES ('4', 'Paracetamol 500', 'លេប', '2', '1', '2', '2', '0', null, '1', null, '5', '1', '1', '2021-02-10 15:11:46', '2021-02-10 15:56:46'); INSERT INTO `prescription_details` VALUES ('7', 'Testing', 'លាប', '1', '1', '1', '1', '0', null, '2', null, '5', '1', '1', '2021-02-10 16:07:38', '2021-02-10 16:07:38'); INSERT INTO `prescription_details` VALUES ('20', 'M A', '111', '1', '1', '1', '1', '0', '1111', '1', null, '7', '2', '2', '2021-02-11 05:11:42', '2021-02-11 05:11:42'); INSERT INTO `prescription_details` VALUES ('21', 'M A', '1111', '1', '1', '1', '1', '0', '1111', '2', null, '7', '2', '2', '2021-02-11 05:11:42', '2021-02-11 05:11:42'); INSERT INTO `prescription_details` VALUES ('22', 'M C', '5', '1', '2', '3', '4', '0', '6', '1', null, '8', '2', '2', '2021-02-11 05:15:47', '2021-02-11 05:15:47'); INSERT INTO `prescription_details` VALUES ('23', 'MD', '6', '2', '3', '4', '5', '0', '7', '2', null, '8', '2', '2', '2021-02-11 05:15:47', '2021-02-11 05:15:47'); INSERT INTO `prescription_details` VALUES ('24', 'para', 'លេប', '2', '2', '2', '1', '0', null, '1', null, '9', '2', '2', '2021-02-13 03:13:57', '2021-02-13 03:13:57'); INSERT INTO `prescription_details` VALUES ('25', 'amox', 'លាប', '1', '1', '1', '1', '0', null, '2', null, '9', '2', '2', '2021-02-13 03:13:57', '2021-02-13 03:13:57'); INSERT INTO `prescription_details` VALUES ('26', 'cloa', 'លេប', '1', '1', '1', '1', '0', null, '1', null, '10', '2', '2', '2021-02-13 03:34:00', '2021-02-13 03:34:00'); INSERT INTO `prescription_details` VALUES ('27', 'amox', 'លាប', '1', '2', '7', '10', '0', null, '2', null, '10', '2', '2', '2021-02-13 03:34:00', '2021-02-13 03:34:00'); INSERT INTO `prescription_details` VALUES ('28', 'para', 'លេប', '1', '1', '18', '1', '0', null, '3', null, '10', '2', '2', '2021-02-13 03:34:00', '2021-02-13 03:34:00'); INSERT INTO `prescription_details` VALUES ('29', 'para', 'លេប', '4', '4', '2', '8', '0', null, '1', null, '11', '2', '2', '2021-02-13 04:14:29', '2021-02-13 04:14:29'); INSERT INTO `prescription_details` VALUES ('30', 'Paracetamol 500', 'លេប', '1', '0', '0', '1', '0', null, '1', null, '12', '2', '2', '2021-02-13 11:09:09', '2021-02-13 11:09:09'); INSERT INTO `prescription_details` VALUES ('31', 'Wood', 'ផឹក', '1', '0', '1', '0', '0', null, '2', null, '12', '2', '2', '2021-02-13 11:09:09', '2021-02-13 11:09:09'); INSERT INTO `prescription_details` VALUES ('33', 'aaa', 'ចាក់', '0', '1', '0', '0', '0', null, '2', null, '12', '2', '2', '2021-02-13 11:10:35', '2021-02-13 11:10:35'); INSERT INTO `prescription_details` VALUES ('34', 'para', 'លេប', '9', '1', '1', '1', '0', null, '1', null, '13', '2', '2', '2021-02-14 03:31:09', '2021-02-14 03:31:09'); INSERT INTO `prescription_details` VALUES ('35', 'amox', 'លេប', '1', '1', '1', '1', '0', null, '2', null, '13', '2', '2', '2021-02-14 03:31:09', '2021-02-14 03:31:09'); INSERT INTO `prescription_details` VALUES ('36', 'co', 'លេប', '1', '1', '1', '1', '0', null, '3', null, '13', '2', '2', '2021-02-14 03:31:09', '2021-02-14 03:31:09'); INSERT INTO `prescription_details` VALUES ('37', 'cloa', 'លេប', '1', '1', '1', '1', '0', null, '4', null, '13', '2', '2', '2021-02-14 03:31:09', '2021-02-14 03:31:09'); INSERT INTO `prescription_details` VALUES ('38', 'para', 'លេប', '9', '9', '9', '9', '0', null, '1', null, '14', '2', '2', '2021-02-14 03:47:03', '2021-02-14 03:47:03'); INSERT INTO `prescription_details` VALUES ('39', 'Paracetamol 500', 'លេប', '1', null, null, '1', '0', null, '1', null, '15', '2', '2', '2021-02-16 13:14:23', '2021-02-16 13:14:23'); INSERT INTO `prescription_details` VALUES ('40', 'asd', 'asdf', null, '1', '1', null, '0', null, '2', null, '15', '2', '2', '2021-02-16 13:14:43', '2021-02-16 13:14:43'); INSERT INTO `prescription_details` VALUES ('41', 'para', 'លេប', '1', '1', '1', null, '0', null, '1', null, '16', '2', '2', '2021-02-17 00:17:40', '2021-02-17 00:17:40'); INSERT INTO `prescription_details` VALUES ('42', '1', 'ytftyu', '1', null, null, null, '0', null, '1', null, '17', '3', '1', '2021-02-17 00:27:02', '2021-02-17 14:01:02'); INSERT INTO `prescription_details` VALUES ('43', 'amox 250', 'លេប', '1', '2', '1', '3', '0', null, '1', null, '18', '2', '2', '2021-02-17 05:06:38', '2021-02-17 05:06:38'); INSERT INTO `prescription_details` VALUES ('44', 'Para Sitamol 500g', 'លេប', '1', '1', '1', null, '0', 'ញាំក្រោយបាយ', '1', null, '19', '3', '3', '2021-02-17 05:19:37', '2021-02-17 05:19:37'); INSERT INTO `prescription_details` VALUES ('45', 'cloa', 'លេប', '1', '1', '1', null, '0', null, '1', null, '20', '2', '2', '2021-02-18 00:38:32', '2021-02-18 00:38:32'); INSERT INTO `prescription_details` VALUES ('46', 'amox 250', 'លេប', '1', '1', '1', null, '0', null, '2', null, '20', '2', '2', '2021-02-18 00:38:32', '2021-02-18 00:38:32'); INSERT INTO `prescription_details` VALUES ('47', 'Paractamol 500', 'លេប', '1', '1', '1', null, '0', null, '1', null, '21', '2', '2', '2021-02-18 10:00:56', '2021-02-18 10:00:56'); INSERT INTO `prescription_details` VALUES ('48', 'para', 'លេប', '1', '1', '1', '1', '0', null, '1', null, '22', '2', '2', '2021-02-19 01:09:26', '2021-02-19 01:09:26'); INSERT INTO `prescription_details` VALUES ('49', 'amox 250', 'លេប', '1', '1', '1', null, '0', null, '2', null, '22', '2', '2', '2021-02-19 01:09:26', '2021-02-19 01:09:26'); INSERT INTO `prescription_details` VALUES ('50', 'Panadol', '1', '1', '1', '1', '1', '0', '1', '1', '5', '23', '1', '1', '2021-02-19 07:11:39', '2021-02-19 07:11:39'); INSERT INTO `prescription_details` VALUES ('51', 'AAAAAAAAAA', '2', '2', '2', '2', '2', '0', '2', '2', '7', '23', '1', '1', '2021-02-19 07:11:39', '2021-02-19 07:13:44'); INSERT INTO `prescription_details` VALUES ('52', 'Panadol', 'លេប', '1', '1', null, '1', '0', 'មុនបាយ ៣០នាទី', '1', '5', '24', '2', '2', '2021-02-20 06:32:43', '2021-02-20 06:32:43'); INSERT INTO `prescription_details` VALUES ('53', 'Exnadol', 'លេប', '1', null, null, '1', '0', 'មុនបាយ៣០នាទី', '2', '6', '24', '2', '2', '2021-02-20 06:32:43', '2021-02-20 06:32:43'); INSERT INTO `prescription_details` VALUES ('54', 'Exnadol', 'លេប', '1', '1', '1', '1', '0', '7', '1', '6', '25', '2', '2', '2021-02-22 03:40:54', '2021-02-22 03:40:54'); INSERT INTO `prescription_details` VALUES ('55', 'Exnadol', 'ljdfa', '1', '1', '1', '1', '0', null, '1', '6', '26', '3', '3', '2021-02-22 03:58:12', '2021-02-22 03:58:12'); INSERT INTO `prescription_details` VALUES ('56', 'Panadol1', 'លេប', '1', '1', '1', null, '0', null, '1', '8', '27', '2', '2', '2021-02-23 08:35:02', '2021-02-23 08:35:02'); INSERT INTO `prescription_details` VALUES ('57', 'Panadol', 'លាយទឹក', '1', '2', '3', '4', '5', '6', '1', '5', '34', '1', '1', '2021-03-09 09:23:58', '2021-03-09 09:23:58'); INSERT INTO `prescription_details` VALUES ('58', 'Exnadol', 'លេប', '1', '0', '1', '0', '5', null, '1', '6', '35', '2', '2', '2021-03-10 11:12:11', '2021-03-10 11:12:11'); INSERT INTO `prescription_details` VALUES ('59', 'Panadol1', 'លេប', '1', '1', '1', '0', '5', null, '2', '8', '35', '2', '2', '2021-03-10 11:12:11', '2021-03-10 11:12:11'); INSERT INTO `prescription_details` VALUES ('60', 'Panadol', 'លេប', '1', '1', '1', '0', '5', null, '3', '5', '35', '2', '2', '2021-03-10 11:12:11', '2021-03-10 11:12:11'); INSERT INTO `prescription_details` VALUES ('61', 'Exnadol', 'លេប', '1', '0', '1', '0', '1', null, '1', '6', '36', '2', '2', '2021-03-10 11:17:58', '2021-03-10 11:17:58'); INSERT INTO `prescription_details` VALUES ('62', 'AAAAAAAAAA', 'លាប', '0', '0', '0', '0', '0', null, '1', null, '31', '1', '1', '2021-03-10 22:58:18', '2021-03-10 22:58:18'); INSERT INTO `prescription_details` VALUES ('63', 'Panadol', 'លេប', '0', '0', '0', '0', '0', null, '2', null, '31', '1', '1', '2021-03-10 22:58:39', '2021-03-10 22:58:39'); INSERT INTO `prescription_details` VALUES ('64', 'Panadol', 'លេប', '0', '0', '0', '0', '0', null, '1', null, '30', '1', '1', '2021-03-10 23:04:41', '2021-03-10 23:04:41'); INSERT INTO `prescription_details` VALUES ('65', 'Exnadol', 'លេប', '1', '1', '0', '1', '3', null, '1', '6', '37', '6', '6', '2021-03-11 13:07:04', '2021-03-11 13:07:04'); INSERT INTO `prescription_details` VALUES ('66', 'Exnadol', 'លេប', '1', '1', '1', '1', '3', null, '1', '6', '38', '7', '7', '2021-03-11 13:35:01', '2021-03-11 13:35:01'); INSERT INTO `prescription_details` VALUES ('67', 'Exnadol', 'លេប', '1', '1', '1', '0', '5', null, '1', '6', '39', '7', '7', '2021-03-11 15:19:13', '2021-03-11 15:19:13'); INSERT INTO `prescription_details` VALUES ('68', 'Panadol1', 'លេប', '2', '0', '0', '2', '5', null, '2', '8', '39', '7', '7', '2021-03-11 15:19:13', '2021-03-11 15:19:13'); INSERT INTO `prescription_details` VALUES ('69', 'Exnadol', 'លេប', '1', '0', '1', '0', '5', null, '1', '6', '40', '7', '7', '2021-03-11 15:29:12', '2021-03-11 15:29:12'); INSERT INTO `prescription_details` VALUES ('70', 'Exnadol', 'លេប', '1', '1', '1', '0', '5', null, '1', '6', '41', '7', '7', '2021-03-11 19:40:51', '2021-03-11 19:40:51'); INSERT INTO `prescription_details` VALUES ('71', 'Panadol', 'លេប', '2', '2', '2', '0', '5', null, '2', '5', '41', '7', '7', '2021-03-11 19:40:51', '2021-03-11 19:40:51'); INSERT INTO `prescription_details` VALUES ('72', 'Exnadol', 'លេប', '1', '1', '1', '1', '3', null, '1', '6', '42', '7', '7', '2021-03-11 20:04:01', '2021-03-11 20:04:01'); INSERT INTO `prescription_details` VALUES ('73', 'Exnadol', 'លេប', '1', '0', '0', '0', '1', null, '1', '6', '43', '7', '7', '2021-03-11 20:06:04', '2021-03-11 20:06:04'); INSERT INTO `prescription_details` VALUES ('74', 'Exnadol', 'លេប', '1', '1', '1', '0', '5', null, '1', '6', '44', '7', '7', '2021-03-11 20:09:28', '2021-03-11 20:09:28'); INSERT INTO `prescription_details` VALUES ('75', 'Panadol', 'លេប', '1', '1', '1', '1', '3', null, '1', '5', '45', '7', '7', '2021-03-11 20:12:26', '2021-03-11 20:12:26'); INSERT INTO `prescription_details` VALUES ('76', 'Panadol', 'លេប', '1', '1', '1', '1', '3', null, '1', '5', '46', '7', '7', '2021-03-11 20:16:54', '2021-03-11 20:16:54'); INSERT INTO `prescription_details` VALUES ('77', 'Exnadol', 'លេប', '1', '0', '3', '0', '6', null, '1', '6', '47', '7', '7', '2021-03-11 20:18:07', '2021-03-11 20:18:07'); INSERT INTO `prescription_details` VALUES ('78', 'Panadol', 'លេប', '1', '1', '1', '2', '2', null, '1', '5', '48', '7', '7', '2021-03-11 20:19:05', '2021-03-11 20:19:05'); INSERT INTO `prescription_details` VALUES ('79', 'Panadol', 'លេប', '1', '1', '1', '1', '3', null, '1', '5', '49', '7', '7', '2021-03-11 20:30:33', '2021-03-11 20:30:33'); INSERT INTO `prescription_details` VALUES ('80', 'Exnadol', 'លេប', '1', '1', '1', '0', '2', null, '1', '6', '50', '7', '7', '2021-03-12 09:52:32', '2021-03-12 09:52:32'); INSERT INTO `prescription_details` VALUES ('81', 'AAAAAAAAAA', 'លេប', '1', '1', '1', '0', '5', null, '1', '7', '51', '7', '7', '2021-03-12 09:59:51', '2021-03-12 09:59:51'); INSERT INTO `prescription_details` VALUES ('82', 'Panadol', 'លេប', '1', '1', '1', '0', '5', null, '2', '5', '51', '7', '7', '2021-03-12 09:59:51', '2021-03-14 13:07:18'); INSERT INTO `prescription_details` VALUES ('83', 'Panadol', 'លេប', '1', '1', '1', '0', '2', null, '1', '5', '52', '7', '7', '2021-03-15 08:53:53', '2021-03-15 08:53:53'); INSERT INTO `prescription_details` VALUES ('84', 'Exnadol', 'លេប', '1', '0', '0', '1', '5', null, '1', '6', '53', '7', '7', '2021-03-15 10:29:25', '2021-03-15 10:29:25'); INSERT INTO `prescription_details` VALUES ('85', 'AAAAAAAAAA', 'លេប', '1', '1', '0', '1', '6', null, '2', '7', '53', '7', '7', '2021-03-15 10:29:25', '2021-03-15 10:29:25'); INSERT INTO `prescription_details` VALUES ('86', 'AAAAAAAAAA', 'លេប', '1', '1', '1', '0', '5', null, '1', '7', '54', '7', '7', '2021-03-16 14:12:46', '2021-03-16 14:12:46'); INSERT INTO `prescription_details` VALUES ('87', 'Panadol', 'លេប', '2', '2', '2', '0', '3', null, '1', '5', '55', '7', '7', '2021-03-16 15:40:00', '2021-03-16 15:40:00'); INSERT INTO `prescription_details` VALUES ('88', 'Exnadol', 'លេប', '1', '1', '1', '0', '4', null, '1', '6', '56', '7', '7', '2021-03-16 15:44:53', '2021-03-16 15:44:53'); INSERT INTO `prescription_details` VALUES ('89', 'Exnadol', 'លេប', '1', '0', '1', '0', '6', null, '1', '6', '57', '7', '7', '2021-03-16 15:55:04', '2021-03-16 15:55:04'); INSERT INTO `prescription_details` VALUES ('90', 'Exnadol', 'លេប', '1', '1', '1', '0', '5', null, '1', '6', '58', '7', '7', '2021-03-17 11:30:22', '2021-03-17 11:30:22'); -- ---------------------------- -- Table structure for `provinces` -- ---------------------------- DROP TABLE IF EXISTS `provinces`; CREATE TABLE `provinces` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name_en` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of provinces -- ---------------------------- INSERT INTO `provinces` VALUES ('1', 'បន្ទាយមានជ័យ', 'Banteay Meanchey', null, null); INSERT INTO `provinces` VALUES ('2', 'បាត់ដំបង', 'Battambang', null, null); INSERT INTO `provinces` VALUES ('3', 'កំពង់ចាម', 'Kampong Cham', null, null); INSERT INTO `provinces` VALUES ('4', 'កំពង់ឆ្នាំង', 'Kampong Chhnang', null, null); INSERT INTO `provinces` VALUES ('5', 'កំពង់ស្ពឺ', 'Kampong Speu', null, null); INSERT INTO `provinces` VALUES ('6', 'កំពង់ធំ', 'Kampong Thom', null, null); INSERT INTO `provinces` VALUES ('7', 'កំពត', 'Kampot', null, null); INSERT INTO `provinces` VALUES ('8', 'កណ្ដាល', 'Kandal', null, null); INSERT INTO `provinces` VALUES ('9', 'កោះកុង', 'Koh Kong', null, null); INSERT INTO `provinces` VALUES ('10', 'ក្រចេះ', 'Kratie', null, null); INSERT INTO `provinces` VALUES ('11', 'មណ្ឌលគិរី', 'Mondul Kiri', null, null); INSERT INTO `provinces` VALUES ('12', 'ភ្នំពេញ', 'Phnom Penh', null, null); INSERT INTO `provinces` VALUES ('13', 'ព្រះវិហារ', 'Preah Vihear', null, null); INSERT INTO `provinces` VALUES ('14', 'ព្រៃវែង', 'Prey Veng', null, null); INSERT INTO `provinces` VALUES ('15', 'ពោធិ៍សាត់', 'Pursat', null, null); INSERT INTO `provinces` VALUES ('16', 'រតនគិរី', 'Ratanak', null, null); INSERT INTO `provinces` VALUES ('17', 'សៀមរាប', 'Siemreap', null, null); INSERT INTO `provinces` VALUES ('18', 'ព្រះសីហនុ', 'Preah Sihanouk', null, null); INSERT INTO `provinces` VALUES ('19', 'ស្ទឹងត្រែង', 'Stung Treng', null, null); INSERT INTO `provinces` VALUES ('20', 'ស្វាយរៀង', 'Svay Rieng', null, null); INSERT INTO `provinces` VALUES ('21', 'តាកែវ', 'Takeo', null, null); INSERT INTO `provinces` VALUES ('22', 'ឧត្ដរមានជ័យ', 'Oddar Meanchey', null, null); INSERT INTO `provinces` VALUES ('23', 'កែប', 'Kep', null, null); INSERT INTO `provinces` VALUES ('24', 'ប៉ៃលិន', 'Pailin', null, null); INSERT INTO `provinces` VALUES ('25', 'ត្បូងឃ្មុំ', 'Tboung Khmum', null, null); -- ---------------------------- -- Table structure for `roles` -- ---------------------------- DROP TABLE IF EXISTS `roles`; CREATE TABLE `roles` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of roles -- ---------------------------- INSERT INTO `roles` VALUES ('1', 'Dev Admin', 'web', 'Power Administrator or Super Administrator is the highest admin that has all right to CRUD or coding to change everything', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `roles` VALUES ('2', 'Admin', 'web', 'Administrator is a no normal admin.', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `roles` VALUES ('3', 'User', 'web', 'User with no right', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `roles` VALUES ('4', 'Receptionist', 'web', 'Teacher', '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `roles` VALUES ('5', 'OUT PRENG CLINIC', 'web', null, '2021-03-10 19:31:31', '2021-03-10 19:31:31'); INSERT INTO `roles` VALUES ('6', 'THAI SOKLEN CLINIC', 'web', null, '2021-03-10 19:31:45', '2021-03-10 19:31:45'); -- ---------------------------- -- Table structure for `role_has_permissions` -- ---------------------------- DROP TABLE IF EXISTS `role_has_permissions`; CREATE TABLE `role_has_permissions` ( `permission_id` bigint unsigned NOT NULL, `role_id` bigint unsigned NOT NULL, PRIMARY KEY (`permission_id`,`role_id`), KEY `role_has_permissions_role_id_foreign` (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of role_has_permissions -- ---------------------------- INSERT INTO `role_has_permissions` VALUES ('1', '1'); INSERT INTO `role_has_permissions` VALUES ('2', '1'); INSERT INTO `role_has_permissions` VALUES ('3', '1'); INSERT INTO `role_has_permissions` VALUES ('4', '1'); INSERT INTO `role_has_permissions` VALUES ('5', '1'); INSERT INTO `role_has_permissions` VALUES ('6', '1'); INSERT INTO `role_has_permissions` VALUES ('7', '1'); INSERT INTO `role_has_permissions` VALUES ('8', '1'); INSERT INTO `role_has_permissions` VALUES ('9', '1'); INSERT INTO `role_has_permissions` VALUES ('10', '1'); INSERT INTO `role_has_permissions` VALUES ('11', '1'); INSERT INTO `role_has_permissions` VALUES ('12', '1'); INSERT INTO `role_has_permissions` VALUES ('13', '1'); INSERT INTO `role_has_permissions` VALUES ('14', '1'); INSERT INTO `role_has_permissions` VALUES ('15', '1'); INSERT INTO `role_has_permissions` VALUES ('16', '1'); INSERT INTO `role_has_permissions` VALUES ('17', '1'); INSERT INTO `role_has_permissions` VALUES ('18', '1'); INSERT INTO `role_has_permissions` VALUES ('19', '1'); INSERT INTO `role_has_permissions` VALUES ('20', '1'); INSERT INTO `role_has_permissions` VALUES ('21', '1'); INSERT INTO `role_has_permissions` VALUES ('22', '1'); INSERT INTO `role_has_permissions` VALUES ('23', '1'); INSERT INTO `role_has_permissions` VALUES ('24', '1'); INSERT INTO `role_has_permissions` VALUES ('25', '1'); INSERT INTO `role_has_permissions` VALUES ('26', '1'); INSERT INTO `role_has_permissions` VALUES ('27', '1'); INSERT INTO `role_has_permissions` VALUES ('28', '1'); INSERT INTO `role_has_permissions` VALUES ('29', '1'); INSERT INTO `role_has_permissions` VALUES ('30', '1'); INSERT INTO `role_has_permissions` VALUES ('31', '1'); INSERT INTO `role_has_permissions` VALUES ('32', '1'); INSERT INTO `role_has_permissions` VALUES ('33', '1'); INSERT INTO `role_has_permissions` VALUES ('34', '1'); INSERT INTO `role_has_permissions` VALUES ('35', '1'); INSERT INTO `role_has_permissions` VALUES ('36', '1'); INSERT INTO `role_has_permissions` VALUES ('37', '1'); INSERT INTO `role_has_permissions` VALUES ('38', '1'); INSERT INTO `role_has_permissions` VALUES ('39', '1'); INSERT INTO `role_has_permissions` VALUES ('40', '1'); INSERT INTO `role_has_permissions` VALUES ('41', '1'); INSERT INTO `role_has_permissions` VALUES ('42', '1'); INSERT INTO `role_has_permissions` VALUES ('43', '1'); INSERT INTO `role_has_permissions` VALUES ('44', '1'); INSERT INTO `role_has_permissions` VALUES ('45', '1'); INSERT INTO `role_has_permissions` VALUES ('46', '1'); INSERT INTO `role_has_permissions` VALUES ('47', '1'); INSERT INTO `role_has_permissions` VALUES ('48', '1'); INSERT INTO `role_has_permissions` VALUES ('49', '1'); INSERT INTO `role_has_permissions` VALUES ('50', '1'); INSERT INTO `role_has_permissions` VALUES ('51', '1'); INSERT INTO `role_has_permissions` VALUES ('52', '1'); INSERT INTO `role_has_permissions` VALUES ('53', '1'); INSERT INTO `role_has_permissions` VALUES ('54', '1'); INSERT INTO `role_has_permissions` VALUES ('55', '1'); INSERT INTO `role_has_permissions` VALUES ('56', '1'); INSERT INTO `role_has_permissions` VALUES ('57', '1'); INSERT INTO `role_has_permissions` VALUES ('58', '1'); INSERT INTO `role_has_permissions` VALUES ('59', '1'); INSERT INTO `role_has_permissions` VALUES ('60', '1'); INSERT INTO `role_has_permissions` VALUES ('61', '1'); INSERT INTO `role_has_permissions` VALUES ('62', '1'); INSERT INTO `role_has_permissions` VALUES ('63', '1'); INSERT INTO `role_has_permissions` VALUES ('64', '1'); INSERT INTO `role_has_permissions` VALUES ('65', '1'); INSERT INTO `role_has_permissions` VALUES ('66', '1'); INSERT INTO `role_has_permissions` VALUES ('67', '1'); INSERT INTO `role_has_permissions` VALUES ('68', '1'); INSERT INTO `role_has_permissions` VALUES ('69', '1'); INSERT INTO `role_has_permissions` VALUES ('70', '1'); INSERT INTO `role_has_permissions` VALUES ('71', '1'); INSERT INTO `role_has_permissions` VALUES ('72', '1'); INSERT INTO `role_has_permissions` VALUES ('73', '1'); INSERT INTO `role_has_permissions` VALUES ('74', '1'); INSERT INTO `role_has_permissions` VALUES ('75', '1'); INSERT INTO `role_has_permissions` VALUES ('76', '1'); INSERT INTO `role_has_permissions` VALUES ('82', '1'); INSERT INTO `role_has_permissions` VALUES ('83', '1'); INSERT INTO `role_has_permissions` VALUES ('84', '1'); INSERT INTO `role_has_permissions` VALUES ('85', '1'); INSERT INTO `role_has_permissions` VALUES ('86', '1'); INSERT INTO `role_has_permissions` VALUES ('87', '1'); INSERT INTO `role_has_permissions` VALUES ('88', '1'); INSERT INTO `role_has_permissions` VALUES ('89', '1'); INSERT INTO `role_has_permissions` VALUES ('90', '1'); INSERT INTO `role_has_permissions` VALUES ('91', '1'); INSERT INTO `role_has_permissions` VALUES ('92', '1'); INSERT INTO `role_has_permissions` VALUES ('1', '2'); INSERT INTO `role_has_permissions` VALUES ('2', '2'); INSERT INTO `role_has_permissions` VALUES ('3', '2'); INSERT INTO `role_has_permissions` VALUES ('4', '2'); INSERT INTO `role_has_permissions` VALUES ('5', '2'); INSERT INTO `role_has_permissions` VALUES ('13', '2'); INSERT INTO `role_has_permissions` VALUES ('14', '2'); INSERT INTO `role_has_permissions` VALUES ('15', '2'); INSERT INTO `role_has_permissions` VALUES ('16', '2'); INSERT INTO `role_has_permissions` VALUES ('17', '2'); INSERT INTO `role_has_permissions` VALUES ('19', '2'); INSERT INTO `role_has_permissions` VALUES ('20', '2'); INSERT INTO `role_has_permissions` VALUES ('21', '2'); INSERT INTO `role_has_permissions` VALUES ('22', '2'); INSERT INTO `role_has_permissions` VALUES ('23', '2'); INSERT INTO `role_has_permissions` VALUES ('24', '2'); INSERT INTO `role_has_permissions` VALUES ('25', '2'); INSERT INTO `role_has_permissions` VALUES ('26', '2'); INSERT INTO `role_has_permissions` VALUES ('27', '2'); INSERT INTO `role_has_permissions` VALUES ('28', '2'); INSERT INTO `role_has_permissions` VALUES ('29', '2'); INSERT INTO `role_has_permissions` VALUES ('30', '2'); INSERT INTO `role_has_permissions` VALUES ('31', '2'); INSERT INTO `role_has_permissions` VALUES ('32', '2'); INSERT INTO `role_has_permissions` VALUES ('33', '2'); INSERT INTO `role_has_permissions` VALUES ('34', '2'); INSERT INTO `role_has_permissions` VALUES ('35', '2'); INSERT INTO `role_has_permissions` VALUES ('41', '2'); INSERT INTO `role_has_permissions` VALUES ('42', '2'); INSERT INTO `role_has_permissions` VALUES ('43', '2'); INSERT INTO `role_has_permissions` VALUES ('44', '2'); INSERT INTO `role_has_permissions` VALUES ('45', '2'); INSERT INTO `role_has_permissions` VALUES ('46', '2'); INSERT INTO `role_has_permissions` VALUES ('47', '2'); INSERT INTO `role_has_permissions` VALUES ('48', '2'); INSERT INTO `role_has_permissions` VALUES ('49', '2'); INSERT INTO `role_has_permissions` VALUES ('50', '2'); INSERT INTO `role_has_permissions` VALUES ('51', '2'); INSERT INTO `role_has_permissions` VALUES ('52', '2'); INSERT INTO `role_has_permissions` VALUES ('53', '2'); INSERT INTO `role_has_permissions` VALUES ('54', '2'); INSERT INTO `role_has_permissions` VALUES ('55', '2'); INSERT INTO `role_has_permissions` VALUES ('56', '2'); INSERT INTO `role_has_permissions` VALUES ('57', '2'); INSERT INTO `role_has_permissions` VALUES ('58', '2'); INSERT INTO `role_has_permissions` VALUES ('59', '2'); INSERT INTO `role_has_permissions` VALUES ('60', '2'); INSERT INTO `role_has_permissions` VALUES ('61', '2'); INSERT INTO `role_has_permissions` VALUES ('62', '2'); INSERT INTO `role_has_permissions` VALUES ('63', '2'); INSERT INTO `role_has_permissions` VALUES ('73', '2'); INSERT INTO `role_has_permissions` VALUES ('74', '2'); INSERT INTO `role_has_permissions` VALUES ('75', '2'); INSERT INTO `role_has_permissions` VALUES ('76', '2'); INSERT INTO `role_has_permissions` VALUES ('82', '2'); INSERT INTO `role_has_permissions` VALUES ('83', '2'); INSERT INTO `role_has_permissions` VALUES ('84', '2'); INSERT INTO `role_has_permissions` VALUES ('85', '2'); INSERT INTO `role_has_permissions` VALUES ('86', '2'); INSERT INTO `role_has_permissions` VALUES ('87', '2'); INSERT INTO `role_has_permissions` VALUES ('92', '2'); INSERT INTO `role_has_permissions` VALUES ('28', '5'); INSERT INTO `role_has_permissions` VALUES ('29', '5'); INSERT INTO `role_has_permissions` VALUES ('30', '5'); INSERT INTO `role_has_permissions` VALUES ('31', '5'); INSERT INTO `role_has_permissions` VALUES ('32', '5'); INSERT INTO `role_has_permissions` VALUES ('33', '5'); INSERT INTO `role_has_permissions` VALUES ('34', '5'); INSERT INTO `role_has_permissions` VALUES ('35', '5'); INSERT INTO `role_has_permissions` VALUES ('41', '5'); INSERT INTO `role_has_permissions` VALUES ('42', '5'); INSERT INTO `role_has_permissions` VALUES ('43', '5'); INSERT INTO `role_has_permissions` VALUES ('44', '5'); INSERT INTO `role_has_permissions` VALUES ('45', '5'); INSERT INTO `role_has_permissions` VALUES ('46', '5'); INSERT INTO `role_has_permissions` VALUES ('47', '5'); INSERT INTO `role_has_permissions` VALUES ('48', '5'); INSERT INTO `role_has_permissions` VALUES ('49', '5'); INSERT INTO `role_has_permissions` VALUES ('50', '5'); INSERT INTO `role_has_permissions` VALUES ('51', '5'); INSERT INTO `role_has_permissions` VALUES ('52', '5'); INSERT INTO `role_has_permissions` VALUES ('53', '5'); INSERT INTO `role_has_permissions` VALUES ('54', '5'); INSERT INTO `role_has_permissions` VALUES ('55', '5'); INSERT INTO `role_has_permissions` VALUES ('56', '5'); INSERT INTO `role_has_permissions` VALUES ('57', '5'); INSERT INTO `role_has_permissions` VALUES ('58', '5'); INSERT INTO `role_has_permissions` VALUES ('59', '5'); INSERT INTO `role_has_permissions` VALUES ('60', '5'); INSERT INTO `role_has_permissions` VALUES ('61', '5'); INSERT INTO `role_has_permissions` VALUES ('62', '5'); INSERT INTO `role_has_permissions` VALUES ('68', '5'); INSERT INTO `role_has_permissions` VALUES ('69', '5'); INSERT INTO `role_has_permissions` VALUES ('70', '5'); INSERT INTO `role_has_permissions` VALUES ('71', '5'); INSERT INTO `role_has_permissions` VALUES ('72', '5'); INSERT INTO `role_has_permissions` VALUES ('28', '6'); INSERT INTO `role_has_permissions` VALUES ('29', '6'); INSERT INTO `role_has_permissions` VALUES ('30', '6'); INSERT INTO `role_has_permissions` VALUES ('31', '6'); INSERT INTO `role_has_permissions` VALUES ('32', '6'); INSERT INTO `role_has_permissions` VALUES ('33', '6'); INSERT INTO `role_has_permissions` VALUES ('34', '6'); INSERT INTO `role_has_permissions` VALUES ('35', '6'); INSERT INTO `role_has_permissions` VALUES ('41', '6'); INSERT INTO `role_has_permissions` VALUES ('42', '6'); INSERT INTO `role_has_permissions` VALUES ('43', '6'); INSERT INTO `role_has_permissions` VALUES ('44', '6'); INSERT INTO `role_has_permissions` VALUES ('45', '6'); INSERT INTO `role_has_permissions` VALUES ('46', '6'); INSERT INTO `role_has_permissions` VALUES ('47', '6'); INSERT INTO `role_has_permissions` VALUES ('48', '6'); INSERT INTO `role_has_permissions` VALUES ('49', '6'); INSERT INTO `role_has_permissions` VALUES ('50', '6'); INSERT INTO `role_has_permissions` VALUES ('51', '6'); INSERT INTO `role_has_permissions` VALUES ('52', '6'); INSERT INTO `role_has_permissions` VALUES ('53', '6'); INSERT INTO `role_has_permissions` VALUES ('54', '6'); INSERT INTO `role_has_permissions` VALUES ('55', '6'); INSERT INTO `role_has_permissions` VALUES ('56', '6'); INSERT INTO `role_has_permissions` VALUES ('57', '6'); INSERT INTO `role_has_permissions` VALUES ('58', '6'); INSERT INTO `role_has_permissions` VALUES ('59', '6'); INSERT INTO `role_has_permissions` VALUES ('60', '6'); INSERT INTO `role_has_permissions` VALUES ('61', '6'); INSERT INTO `role_has_permissions` VALUES ('62', '6'); INSERT INTO `role_has_permissions` VALUES ('63', '6'); INSERT INTO `role_has_permissions` VALUES ('73', '6'); INSERT INTO `role_has_permissions` VALUES ('74', '6'); INSERT INTO `role_has_permissions` VALUES ('75', '6'); INSERT INTO `role_has_permissions` VALUES ('76', '6'); INSERT INTO `role_has_permissions` VALUES ('82', '6'); INSERT INTO `role_has_permissions` VALUES ('83', '6'); INSERT INTO `role_has_permissions` VALUES ('84', '6'); INSERT INTO `role_has_permissions` VALUES ('85', '6'); INSERT INTO `role_has_permissions` VALUES ('86', '6'); INSERT INTO `role_has_permissions` VALUES ('87', '6'); INSERT INTO `role_has_permissions` VALUES ('88', '6'); INSERT INTO `role_has_permissions` VALUES ('89', '6'); INSERT INTO `role_has_permissions` VALUES ('90', '6'); INSERT INTO `role_has_permissions` VALUES ('91', '6'); INSERT INTO `role_has_permissions` VALUES ('92', '6'); -- ---------------------------- -- Table structure for `services` -- ---------------------------- DROP TABLE IF EXISTS `services`; CREATE TABLE `services` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `price` double NOT NULL DEFAULT '0', `is_labor` int NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `services_created_by_foreign` (`created_by`), KEY `services_updated_by_foreign` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of services -- ---------------------------- INSERT INTO `services` VALUES ('1', 'Echo', '20', '0', 'asdf', '1', '1', '2021-01-30 07:55:33', '2021-01-30 07:55:33'); INSERT INTO `services` VALUES ('2', 'Consulting', '10', '0', null, '1', '1', '2021-01-30 07:55:53', '2021-01-30 07:55:53'); INSERT INTO `services` VALUES ('3', 'Medicine', '0', '0', null, '1', '1', '2021-01-30 07:56:09', '2021-01-30 07:56:09'); INSERT INTO `services` VALUES ('10', 'ពិគ្រោះជម្ងឺ', '15', '0', 'ពិគ្រោះជម្ងឺ ទូទៅ', '2', '2', '2021-02-11 05:23:21', '2021-02-11 05:23:21'); INSERT INTO `services` VALUES ('14', 'តេស្ដឈាម', '30', '0', null, '2', '2', '2021-02-13 11:01:54', '2021-02-13 11:01:54'); -- ---------------------------- -- Table structure for `sessions` -- ---------------------------- DROP TABLE IF EXISTS `sessions`; CREATE TABLE `sessions` ( `id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `last_activity` int NOT NULL, UNIQUE KEY `sessions_id_unique` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of sessions -- ---------------------------- INSERT INTO `sessions` VALUES ('6jJmD1EDIJidA4ozHa1Idp3JkjkkHf2CUwg9ZCgK', null, '10.102.191.252', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36', '<KEY> '1616755653'); INSERT INTO `sessions` VALUES ('M0JCSRvIDg4GRHFUw7Me2lbgf6nqWhorL3zBUWeZ', '1', '10.35.254.83', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36', '<KEY>', '1616680570'); INSERT INTO `sessions` VALUES ('R56MpzxfMtRAWyeWECbRjBix8S4Tjj1oqowI6Y6q', '1', '10.7.244.15', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36', '<KEY>', '1616764269'); -- ---------------------------- -- Table structure for `setting` -- ---------------------------- DROP TABLE IF EXISTS `setting`; CREATE TABLE `setting` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `clinic_name_kh` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `clinic_name_en` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `sign_name_kh` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sign_name_en` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `echo_address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `echo_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `navbar_color` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'navbar-white navbar-light', `sidebar_color` tinyint(1) NOT NULL DEFAULT '0', `legacy` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of setting -- ---------------------------- INSERT INTO `setting` VALUES ('1', 'logo.png', 'បន្ទប់ពិគ្រោះព្យាបាលជំងឺ ប៉ោ រដ្ឋា', 'POR RATHA CABINET', 'ប៉ោ រដ្ឋា', 'POROTHA', '097 21 111 01 / 067 53 33 37', 'ភូមិស្រែប្រាំង ឃុំតាប្រុក ស្រុកចំការលើ ខេត្តកំពង់ចាម', '<div style=\"padding-bottom: 6px;\">ពិនិត្យ និងទទួលព្យាបាលជម្ងឺទូទៅលើ កុមារ មនុស្សចាស់ ពិនិត្យឈាម ចាក់វ៉ាក់សាំងឆ្កែឆ្កួត តេតាណូស</div>\r\n<div>វ៉ាក់សាំងថ្លើម និង ពិនិត្យអេកូពណ៌ 4D</div>', 'blank', 'blank', 'navbar-white navbar-light', '0', '1', null, '2021-03-23 22:19:31'); -- ---------------------------- -- Table structure for `usages` -- ---------------------------- DROP TABLE IF EXISTS `usages`; CREATE TABLE `usages` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of usages -- ---------------------------- INSERT INTO `usages` VALUES ('1', 'លេប', 'លេបចូលក្នុងខ្លួន', '2021-01-30 07:46:33', '2021-01-30 07:46:33'); INSERT INTO `usages` VALUES ('2', 'ចាក់', '', '2021-01-30 07:46:33', '2021-01-30 07:46:33'); INSERT INTO `usages` VALUES ('3', 'បន្ទក់', '', '2021-01-30 07:46:33', '2021-01-30 07:46:33'); INSERT INTO `usages` VALUES ('4', 'លាយទឹក', '', '2021-01-30 07:46:33', '2021-01-30 07:46:33'); INSERT INTO `usages` VALUES ('5', 'លាប', '', '2021-01-30 07:46:33', '2021-01-30 07:46:33'); -- ---------------------------- -- Table structure for `users` -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_user.png', `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `language` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'kh', `gender` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '0', `approval` tinyint(1) NOT NULL DEFAULT '0', `email_verified_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of users -- ---------------------------- INSERT INTO `users` VALUES ('1', 'Web', 'Dev', '<EMAIL>', <PASSWORD>', 'default_user.png', '0', 'kh', '1', '1', '1', null, null, '2021-01-30 07:46:32', '2021-01-30 07:46:32'); INSERT INTO `users` VALUES ('2', 'asdf', 'asdf', '<EMAIL>', '$2y$10$qey/hE4InCypbDqMA9xjNemeX3yu8.FyaFWSS9meuAsGUcjuFHBja', 'default_user.png', null, 'kh', '1', '1', '0', null, null, '2021-02-07 02:10:08', '2021-02-07 02:10:08'); INSERT INTO `users` VALUES ('3', 'buntheng', 'dev', '<EMAIL>', '$2y$10$GhTLWAWhpjLn3GdEEzpXGOH0KQDgIyR6rpI8bQCv3HR3ixHmjCiYq', 'default_user.png', null, 'kh', '1', '1', '0', null, null, '2021-02-10 16:46:31', '2021-02-10 16:46:31'); INSERT INTO `users` VALUES ('4', 'cheantha', 'dev', '<EMAIL>', '$2y$10$IQWIXJZzpg6flgBixkXiMuQt3sJHG/HHaeV0gVx1ZtLoYryib3G46', 'default_user.png', null, 'kh', '1', '1', '0', null, null, '2021-02-10 16:47:05', '2021-02-10 16:47:05'); INSERT INTO `users` VALUES ('5', 'Mr.', 'ABC', '<EMAIL>', '$2y$10$Gmq0QHhsRTZ0/t6Wv2EsAOcY97Z6h/z/nspCehfL5fhgcImzO5sbG', 'default_user.png', null, 'kh', '1', '1', '0', null, null, '2021-02-13 11:18:02', '2021-02-13 11:18:02'); INSERT INTO `users` VALUES ('6', 'អ៊ុត', 'ព្រង', '<EMAIL>', <PASSWORD>', 'default_user.png', '012 792 243 / 088 453 0077', 'kh', '1', '1', '0', null, null, '2021-03-10 19:23:13', '2021-03-10 19:23:13'); INSERT INTO `users` VALUES ('7', 'ថៃ', 'សុខឡែន', '<EMAIL>', <PASSWORD>', 'default_user.png', '012 68 12 38', 'kh', '1', '1', '0', null, null, '2021-03-10 19:28:00', '2021-03-11 18:29:46');
<reponame>BizbrainzGit/doctorssapp<filename>DB/doctorss_master.sql -- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 07, 2021 at 02:44 PM -- Server version: 10.4.17-MariaDB -- PHP Version: 7.4.14 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: `doctorss_master` -- -- -------------------------------------------------------- -- -- Table structure for table `accounts` -- CREATE TABLE `accounts` ( `id` int(11) NOT NULL, `account_name` varchar(100) NOT NULL, `account_shortname` varchar(500) NOT NULL, `no_of_doctors` varchar(111) NOT NULL, `status` tinyint(2) NOT NULL COMMENT '0 for Inactive, 1 for Active', `dbname` varchar(100) DEFAULT NULL, `encrypted_id` varchar(100) DEFAULT NULL, `business_address_id` int(11) DEFAULT NULL, `billing_address_id` int(11) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- -- Dumping data for table `accounts` -- INSERT INTO `accounts` (`id`, `account_name`, `account_shortname`, `no_of_doctors`, `status`, `dbname`, `encrypted_id`, `business_address_id`, `billing_address_id`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 'Mamatha Hospital', 'MITSH', '5', 1, 'doctorss_mitsh_27996', 'w2', 1, 2, '::1', 1, '2021-04-01 13:00:07', '::1', 1, '2021-04-01 13:00:11'), (2, 'Kamala Hospital', 'KIMSH', '3', 1, 'doctorss_kimsh_42974', 'x2', 3, 4, '::1', 1, '2021-04-01 13:02:56', '::1', 1, '2021-04-01 13:03:00'), (3, 'Chinnari Hospital', 'Chinnari', '7', 1, 'doctorss_CH_24398', 'y2', 18, 19, '::1', 1, '2021-04-07 14:12:13', '::1', 1, '2021-04-07 14:15:36'); -- -------------------------------------------------------- -- -- Table structure for table `accounts_subscriptions` -- CREATE TABLE `accounts_subscriptions` ( `id` int(11) NOT NULL, `account_id` varchar(20) NOT NULL, `subscription_startdate` date DEFAULT NULL, `subscription_enddate` date DEFAULT NULL, `payment_status` int(11) DEFAULT NULL, `promocode_id` int(11) DEFAULT NULL, `discount_amount` decimal(10,2) DEFAULT NULL, `package_total_amount` decimal(10,2) DEFAULT NULL, `sub_total_amount` decimal(10,2) DEFAULT NULL, `gst_amount` decimal(10,2) DEFAULT NULL, `igst_amount` decimal(10,2) DEFAULT NULL, `cgst_amount` decimal(10,2) DEFAULT NULL, `sgst_amount` decimal(10,2) DEFAULT NULL, `grand_total_amount` decimal(10,2) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `accounts_subscriptions` -- INSERT INTO `accounts_subscriptions` (`id`, `account_id`, `subscription_startdate`, `subscription_enddate`, `payment_status`, `promocode_id`, `discount_amount`, `package_total_amount`, `sub_total_amount`, `gst_amount`, `igst_amount`, `cgst_amount`, `sgst_amount`, `grand_total_amount`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, '1', '2021-04-01', '2021-06-30', 4, 0, '0.00', '15000.00', '15000.00', NULL, '0.00', '1350.00', '1350.00', '17700.00', '::1', 1, '2021-04-01 13:03:35', '::1', 1, '2021-04-01 13:03:35'), (2, '2', '2021-04-01', '2021-10-31', 4, 0, '0.00', '25000.00', '25000.00', NULL, '0.00', '2250.00', '2250.00', '29500.00', '::1', 1, '2021-04-01 13:04:17', '::1', 1, '2021-04-01 13:04:17'); -- -------------------------------------------------------- -- -- Table structure for table `activity_logs` -- CREATE TABLE `activity_logs` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `account_id` int(11) DEFAULT NULL, `activity_desc` text NOT NULL, `activity_method_name` varchar(250) DEFAULT NULL, `request_url` varchar(250) DEFAULT NULL, `request_referer` varchar(150) DEFAULT NULL, `request_type` varchar(50) DEFAULT NULL, `data` longtext DEFAULT NULL, `request_ip` varchar(50) DEFAULT NULL, `request_datetime` timestamp NULL DEFAULT current_timestamp(), `user_agent_activity` varchar(50) DEFAULT NULL, `created_at` date DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_ip` varchar(50) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `activity_request_mappings` -- CREATE TABLE `activity_request_mappings` ( `id` int(11) NOT NULL, `activity_desc` text NOT NULL, `request_url` varchar(250) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `activity_request_mappings` -- INSERT INTO `activity_request_mappings` (`id`, `activity_desc`, `request_url`) VALUES (1, 'Login Page', 'Welcome/login'); -- -------------------------------------------------------- -- -- Table structure for table `address` -- CREATE TABLE `address` ( `id` int(11) NOT NULL, `house_no` varchar(500) DEFAULT NULL, `street` varchar(350) DEFAULT NULL, `area` varchar(650) DEFAULT NULL, `landmark` varchar(100) DEFAULT NULL, `city_id` int(11) DEFAULT NULL, `state_id` int(11) DEFAULT NULL, `country` int(11) DEFAULT NULL, `pincode` bigint(6) DEFAULT NULL, `geocoordinates` varchar(200) DEFAULT NULL, `latitude` double(14,10) DEFAULT NULL, `longitude` double(14,10) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `address` -- INSERT INTO `address` (`id`, `house_no`, `street`, `area`, `landmark`, `city_id`, `state_id`, `country`, `pincode`, `geocoordinates`, `latitude`, `longitude`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, '1-85', 'Main Road', 'Bachupally', '', 5, 32, NULL, 525252, NULL, NULL, NULL, '::1', 1, '2021-04-01 13:00:07', NULL, NULL, NULL), (2, '1-85', 'Main Road', 'Bachupally', '', 5, 32, NULL, 525252, NULL, NULL, NULL, '::1', 1, '2021-04-01 13:00:07', NULL, NULL, NULL), (3, '12-85-85', 'Mian Road', 'Dilsuknagar', '', 5, 32, NULL, 505050, NULL, NULL, NULL, '::1', 1, '2021-04-01 13:02:56', NULL, NULL, NULL), (4, '1-85', 'Main Road', 'Disuknagar', '', 5, 32, NULL, 505050, NULL, NULL, NULL, '::1', 1, '2021-04-01 13:02:56', NULL, NULL, NULL), (5, '1-85', 'Mian Road', 'Hanamkonda', '', 56, 32, NULL, 505050, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:08:04', NULL, NULL, NULL), (6, '1-26-85', 'Main Road', 'Mamillagudem ', '', 5, 32, NULL, 565656, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:11:58', NULL, NULL, NULL), (7, '1-96-85', 'Main Road', 'Mahabubabad', '', 56, 32, NULL, 636363, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:14:07', NULL, NULL, NULL), (8, '1-85', 'Main Road', 'Kasba Bazar', '', 183, 32, NULL, 565656, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:16:38', NULL, NULL, NULL), (9, '1-85', 'Main road', 'Kaman Bazar', '', 183, 32, NULL, 545454, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:19:52', NULL, NULL, NULL), (10, '1-96', 'Main Road', 'Redyala', '', 56, 32, NULL, 585855, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:24:30', NULL, NULL, NULL), (11, '1-96', 'Main road', 'jogipet', '', 545, 32, NULL, 565655, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:27:24', NULL, NULL, NULL), (12, '1-85', 'Main Road', 'Dhone', '', 5, 32, NULL, 585585, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:29:21', NULL, NULL, NULL), (13, '1-52', 'MAin road', 'Kodhad', '', 183, 32, NULL, 655655, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:32:16', NULL, NULL, NULL), (14, '5-8585', 'MAin road', 'kothapet', '', 5, 32, NULL, 525252, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:34:39', NULL, NULL, NULL), (15, '1-85', 'Main Road', 'Nadiwada', '', 5, 32, NULL, 501010, NULL, NULL, NULL, '::1', 3, '2021-04-07 08:16:57', NULL, NULL, NULL), (16, '120', 'Main Road', 'Nadiwada', '', 56, 32, NULL, 555555, NULL, NULL, NULL, '::1', 14, '2021-04-07 11:34:30', NULL, NULL, NULL), (17, '1-85', 'main road', 'nadiwada', '', 183, 32, NULL, 111111, NULL, NULL, NULL, '::1', 15, '2021-04-07 11:43:34', NULL, NULL, NULL), (18, '1-85', 'Main Road', 'Nadiwada', 'Main Center', 56, 32, NULL, 506101, NULL, NULL, NULL, '::1', 1, '2021-04-07 14:12:13', '::1', 1, '2021-04-07 14:15:36'), (19, '1-85', 'Main road', 'Nadiwada', 'Nehru Center', 56, 32, NULL, 501010, NULL, NULL, NULL, '::1', 1, '2021-04-07 14:12:13', '::1', 1, '2021-04-07 14:15:36'); -- -------------------------------------------------------- -- -- Table structure for table `cities` -- CREATE TABLE `cities` ( `cityid` int(11) NOT NULL, `cityname` varchar(100) NOT NULL, `state_id` int(11) NOT NULL, `latitude` double(14,10) DEFAULT NULL, `longitude` double(14,10) DEFAULT NULL, `short_code` varchar(5) DEFAULT NULL, `status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `cities` -- INSERT INTO `cities` (`cityid`, `cityname`, `state_id`, `latitude`, `longitude`, `short_code`, `status`) VALUES (1, 'Mumbai', 21, 18.9800000000, 72.8300000000, NULL, 0), (2, 'Delhi', 10, 28.6700000000, 77.2200000000, NULL, 0), (3, 'Bengaluru', 17, 12.9800000000, 77.5800000000, NULL, 0), (4, 'Ahmedabad', 12, 23.0300000000, 72.6200000000, NULL, 0), (5, 'Hyderabad', 32, 17.3800000000, 78.4700000000, 'HYD', 1), (6, 'Chennai', 31, 13.0800000000, 80.2800000000, NULL, 0), (7, 'Kolkata', 36, 22.5700000000, 88.3700000000, NULL, 0), (8, 'Pune', 21, 18.5300000000, 73.8700000000, NULL, 0), (9, 'Jaipur', 29, 26.9200000000, 75.8200000000, NULL, 0), (10, 'Surat', 12, 20.9700000000, 72.9000000000, NULL, 0), (11, 'Lucknow', 34, 26.8500000000, 80.9200000000, NULL, 0), (12, 'Kanpur', 34, 26.4700000000, 80.3500000000, NULL, 0), (13, 'Nagpur', 21, 21.1500000000, 79.1000000000, NULL, 0), (14, 'Patna', 5, 25.6000000000, 85.1200000000, NULL, 0), (15, 'Indore', 20, 22.7200000000, 75.8300000000, NULL, 0), (16, 'Thane', 21, 19.2000000000, 72.9700000000, NULL, 0), (17, 'Bhopal', 20, 23.2700000000, 77.4000000000, NULL, 0), (18, 'Visakhapatnam', 2, 17.7000000000, 83.3000000000, 'VSP', 1), (19, 'Vadodara', 12, 22.3000000000, 73.2000000000, NULL, 0), (20, 'Firozabad', 34, 27.1500000000, 78.4200000000, NULL, 0), (21, 'Ludhiana', 28, 30.9000000000, 75.8500000000, NULL, 0), (22, 'Rajkot', 12, 22.3000000000, 70.7800000000, NULL, 0), (23, 'Agra', 34, 27.1800000000, 78.0200000000, NULL, 0), (24, 'Siliguri', 36, 26.7200000000, 88.4200000000, NULL, 0), (25, 'Nashik', 21, 19.9800000000, 73.8000000000, NULL, 0), (26, 'Faridabad', 13, 28.4300000000, 77.3200000000, NULL, 0), (27, 'Patiala', 28, 30.3300000000, 76.4000000000, NULL, 0), (28, 'Meerut', 34, 28.9800000000, 77.7000000000, NULL, 0), (29, 'Kalyan-Dombivali', 21, 19.2000000000, 73.0900000000, NULL, 0), (30, 'Vasai-Virar', 21, 19.4700000000, 72.8000000000, NULL, 0), (31, 'Varanasi', 34, 25.3300000000, 83.0000000000, NULL, 0), (32, 'Srinagar', 15, 34.0900000000, 74.8000000000, NULL, 0), (33, 'Dhanbad', 16, 23.8000000000, 86.4500000000, NULL, 0), (34, 'Jodhpur', 29, 26.2900000000, 73.0300000000, NULL, 0), (35, 'Amritsar', 28, 31.6300000000, 74.8700000000, NULL, 0), (36, 'Raipur', 7, 21.2300000000, 81.6300000000, NULL, 0), (37, 'Allahabad', 34, 25.4500000000, 81.8500000000, NULL, 0), (38, 'Coimbatore', 31, 10.9900000000, 76.9600000000, NULL, 0), (39, 'Jabalpur', 20, 23.1700000000, 79.9500000000, NULL, 0), (40, 'Gwalior', 20, 26.2200000000, 78.1800000000, NULL, 0), (41, 'Vijayawada', 2, 16.5200000000, 80.6200000000, 'VJA', 1), (42, 'Madurai', 31, 9.9300000000, 78.1200000000, NULL, 0), (43, 'Guwahati', 4, 26.1800000000, 91.7300000000, NULL, 0), (44, 'Chandigarh', 6, 30.7400000000, 76.7900000000, NULL, 0), (45, 'Hubli', 17, 15.3500000000, 75.1700000000, 'HBX', 1), (46, 'Amroha', 34, 28.9200000000, 78.4700000000, NULL, 0), (47, 'Moradabad', 34, 28.8300000000, 78.7800000000, NULL, 0), (48, 'Gurgaon', 13, 28.4700000000, 77.0300000000, NULL, 0), (49, 'Aligarh', 34, 27.8800000000, 78.0800000000, NULL, 0), (50, 'Solapur', 21, 17.6800000000, 75.9200000000, NULL, 0), (51, 'Ranchi', 16, 23.3500000000, 85.3300000000, NULL, 0), (52, 'Jalandhar', 28, 31.3300000000, 75.5800000000, NULL, 0), (53, 'Tiruchirappalli', 31, 10.8100000000, 78.6900000000, NULL, 0), (54, 'Bhubaneswar', 26, 20.2300000000, 85.8300000000, NULL, 0), (55, 'Salem', 31, 11.6500000000, 78.1700000000, NULL, 0), (56, 'Warangal', 32, 18.0000000000, 79.5800000000, NULL, 0), (57, 'Mira-Bhayandar', 21, 19.2900000000, 72.8500000000, NULL, 0), (58, 'Thiruvananthapuram', 18, 8.5100000000, 76.9600000000, NULL, 0), (59, 'Bhiwandi', 21, 19.3000000000, 73.0700000000, NULL, 0), (60, 'Saharanpur', 34, 29.9700000000, 77.5500000000, NULL, 0), (61, 'Guntur', 2, 16.3000000000, 80.4500000000, 'GNT', 1), (62, 'Amravati', 21, 20.9300000000, 77.7500000000, NULL, 0), (63, 'Bikaner', 29, 28.0200000000, 73.3000000000, NULL, 0), (64, 'Noida', 34, 28.5700000000, 77.3200000000, NULL, 0), (65, 'Jamshedpur', 16, 22.8000000000, 86.1800000000, NULL, 0), (66, '<NAME>', 7, 21.1900000000, 81.3500000000, NULL, 0), (67, 'Cuttack', 26, 20.5000000000, 85.8300000000, NULL, 0), (68, 'Kochi', 18, 9.9700000000, 76.2300000000, NULL, 0), (69, 'Udaipur', 29, 27.7200000000, 75.4800000000, NULL, 0), (70, 'Bhavnagar', 12, 21.7700000000, 72.1500000000, NULL, 0), (71, 'Dehradun', 35, 30.3200000000, 78.0300000000, NULL, 0), (72, 'Asansol', 36, 23.6800000000, 86.9800000000, NULL, 0), (73, 'Nanded-Waghala', 21, 19.1300000000, 77.3200000000, NULL, 0), (74, 'Ajmer', 29, 26.4500000000, 74.6300000000, NULL, 0), (75, 'Jamnagar', 12, 22.4700000000, 70.0700000000, NULL, 0), (76, 'Ujjain', 20, 23.1800000000, 75.7700000000, NULL, 0), (77, 'Sangli', 21, 16.8700000000, 74.5700000000, NULL, 0), (78, 'Loni', 34, 28.7500000000, 77.2800000000, NULL, 0), (79, 'Jhansi', 34, 25.4300000000, 78.5800000000, NULL, 0), (80, 'Pondicherry', 27, 11.9300000000, 79.8300000000, NULL, 0), (81, 'Nellore', 2, 14.4300000000, 79.9700000000, NULL, 0), (82, 'Jammu', 15, 32.7300000000, 74.8700000000, NULL, 0), (83, 'Belagavi', 17, 15.8400000000, 74.4900000000, 'BLGV', 1), (84, 'Raurkela', 26, 22.2000000000, 84.8800000000, NULL, 0), (85, 'Mangaluru', 17, 12.8600000000, 74.8400000000, 'IXE', 1), (86, 'Tirunelveli', 31, 8.7300000000, 77.7000000000, NULL, 0), (87, 'Malegaon', 21, 20.5500000000, 74.5300000000, NULL, 0), (88, 'Gaya', 5, 24.7800000000, 85.0000000000, NULL, 0), (89, 'Tiruppur', 31, 11.1000000000, 77.3500000000, NULL, 0), (90, 'Davanagere', 17, 14.4600000000, 75.9200000000, 'DVNG', 1), (91, 'Kozhikode', 18, 11.2500000000, 75.7700000000, NULL, 0), (92, 'Akola', 21, 20.7300000000, 77.0000000000, NULL, 0), (93, 'Kurnool', 2, 15.8300000000, 78.0500000000, 'KRNL', 1), (94, 'Bokaro Steel City', 16, 23.7800000000, 85.9700000000, NULL, 0), (95, 'Rajamundry', 2, 17.0000000000, 81.8000000000, 'RJY', 1), (96, 'Bellary', 17, 15.1500000000, 76.9300000000, 'VDY', 1), (97, 'Agartala', 33, 23.8400000000, 91.2800000000, NULL, 0), (98, 'Bhagalpur', 5, 25.2500000000, 87.0000000000, NULL, 0), (99, 'Latur', 21, 18.4000000000, 76.5800000000, NULL, 0), (100, 'Dhule', 21, 20.9000000000, 74.7800000000, NULL, 0), (101, 'Korba', 7, 22.3500000000, 82.6800000000, NULL, 0), (102, 'Bhilwara', 29, 25.3500000000, 74.6300000000, NULL, 0), (103, 'Brahmapur', 26, 19.3200000000, 84.7800000000, NULL, 0), (104, 'Mysore', 17, 12.3100000000, 76.6500000000, 'MYQ', 1), (105, 'Muzaffarpur', 5, 26.1200000000, 85.4000000000, NULL, 0), (106, 'Ahmednagar', 21, 19.0800000000, 74.7300000000, NULL, 0), (107, 'Kollam', 18, 8.8800000000, 76.5900000000, NULL, 0), (108, 'Raghunathganj', 36, 24.4500000000, 88.0500000000, NULL, 0), (109, 'Bilaspur', 7, 22.0800000000, 82.1500000000, NULL, 0), (110, 'Shahjahanpur', 34, 27.8800000000, 79.9200000000, NULL, 0), (111, 'Thrissur', 18, 10.5200000000, 76.2200000000, NULL, 0), (112, 'Alwar', 29, 27.5700000000, 76.6000000000, NULL, 0), (113, 'Kakinada', 2, 16.9300000000, 82.2200000000, NULL, 0), (114, 'Nizamabad', 32, 18.6700000000, 78.1200000000, NULL, 0), (115, 'Sagar', 20, 14.1700000000, 75.0300000000, NULL, 0), (116, 'Tumkur', 17, 13.3400000000, 77.1000000000, 'TMKR', 1), (117, 'Hisar', 13, 29.1700000000, 75.7200000000, NULL, 0), (118, 'Rohtak', 13, 28.9000000000, 76.5700000000, NULL, 0), (119, 'Panipat', 13, 29.3900000000, 76.9700000000, NULL, 0), (120, 'Darbhanga', 5, 26.1700000000, 85.9000000000, NULL, 0), (121, 'Kharagpur', 36, 22.3300000000, 87.3300000000, NULL, 0), (122, 'Aizawl', 24, 23.7200000000, 92.7200000000, NULL, 0), (123, 'Ichalkaranji', 21, 16.7000000000, 74.4700000000, NULL, 0), (124, 'Tirupathi', 2, 13.6200000000, 79.4100000000, 'TPT', 1), (125, 'Karnal', 13, 29.6800000000, 76.9800000000, NULL, 0), (126, 'Bathinda', 28, 30.2000000000, 74.9500000000, NULL, 0), (127, 'Rampur', 34, 28.8200000000, 79.0300000000, NULL, 0), (128, 'Shivamogga', 17, 13.9200000000, 75.5600000000, NULL, 0), (129, 'Ratlam', 20, 23.3200000000, 75.0700000000, NULL, 0), (130, 'Modinagar', 34, 28.8300000000, 77.5700000000, NULL, 0), (131, 'Durg', 7, 21.1800000000, 81.2800000000, NULL, 0), (132, 'Shillong', 23, 25.5800000000, 91.8700000000, NULL, 0), (133, 'Imphal', 22, 24.8200000000, 93.9500000000, NULL, 0), (134, 'Hapur', 34, 28.7200000000, 77.7800000000, NULL, 0), (135, 'Ranipet', 31, 12.9300000000, 79.3300000000, NULL, 0), (136, 'Anantapur', 2, 14.6800000000, 77.6000000000, 'ATP', 1), (137, 'Arrah', 5, 25.5700000000, 84.6700000000, NULL, 0), (138, 'Karimnagar', 32, 18.4300000000, 79.1500000000, 'KRM', 1), (139, 'Parbhani', 21, 19.2700000000, 76.7800000000, NULL, 0), (140, 'Etawah', 34, 26.7800000000, 79.0200000000, NULL, 0), (141, 'Bharatpur', 29, 27.2200000000, 77.4800000000, NULL, 0), (142, 'Begusarai', 5, 25.4200000000, 86.1300000000, NULL, 0), (143, 'New Delhi', 10, 28.6000000000, 77.2000000000, NULL, 0), (144, 'Chhapra', 5, 25.7700000000, 84.7900000000, NULL, 0), (145, 'Kadapa', 2, 14.4700000000, 78.8200000000, NULL, 0), (146, 'Ramagundam', 32, 18.7500000000, 79.5100000000, NULL, 0), (147, 'Pali', 29, 25.7700000000, 73.3300000000, NULL, 0), (148, 'Satna', 20, 24.5800000000, 80.8300000000, NULL, 0), (149, 'Vizinagaram', 2, 18.4000000000, 83.3300000000, NULL, 0), (150, 'Katihar', 5, 25.5300000000, 87.5800000000, NULL, 0), (151, 'Hardwar', 35, 29.9700000000, 78.1700000000, NULL, 0), (152, 'Sonipat', 13, 28.9800000000, 77.0200000000, NULL, 0), (153, 'Nagercoil', 31, 8.1900000000, 77.4300000000, NULL, 0), (154, 'Thanjavur', 31, 10.8000000000, 79.1500000000, NULL, 0), (155, 'Murwara (Katni)', 20, 23.8300000000, 80.4000000000, NULL, 0), (156, 'Naihati', 36, 22.9000000000, 88.4200000000, NULL, 0), (157, 'Sambhal', 34, 28.5800000000, 78.5500000000, NULL, 0), (158, 'Nadiad', 12, 22.7000000000, 72.8700000000, NULL, 0), (159, 'Yamunanagar', 13, 30.1000000000, 77.2800000000, NULL, 0), (160, '<NAME>', 36, 25.0100000000, 88.1400000000, NULL, 0), (161, 'Eluru', 2, 16.7100000000, 81.0900000000, NULL, 0), (162, 'Munger', 5, 25.3800000000, 86.4700000000, NULL, 0), (163, 'Panchkula', 13, 30.7300000000, 76.9500000000, NULL, 0), (164, 'Raichur', 17, 16.2000000000, 77.3700000000, 'RC', 1), (165, 'Panvel', 21, 18.9800000000, 73.1000000000, NULL, 0), (166, 'Deoghar', 16, 24.4800000000, 86.7000000000, NULL, 0), (167, 'Ongole', 2, 15.5000000000, 80.0500000000, NULL, 0), (168, 'Nandyal', 2, 15.4800000000, 78.4800000000, NULL, 0), (169, 'Morena', 20, 26.5000000000, 78.0000000000, NULL, 0), (170, 'Bhiwani', 13, 28.7800000000, 76.1300000000, NULL, 0), (171, 'Porbandar', 12, 21.6300000000, 69.6000000000, NULL, 0), (172, 'Palakkad', 18, 10.7700000000, 76.6500000000, NULL, 0), (173, 'Anand', 12, 22.5700000000, 72.9300000000, NULL, 0), (174, 'Purnia', 5, 25.7800000000, 87.4700000000, NULL, 0), (175, 'Baharampur', 36, 24.1000000000, 88.2500000000, NULL, 0), (176, 'Barmer', 29, 25.7500000000, 71.3800000000, NULL, 0), (177, 'Morvi', 12, 22.8200000000, 70.8300000000, NULL, 0), (178, 'Orai', 34, 25.9800000000, 79.4700000000, NULL, 0), (179, 'Bahraich', 34, 27.5800000000, 81.6000000000, NULL, 0), (180, 'Sikar', 29, 27.6200000000, 75.1500000000, NULL, 0), (181, 'Vellore', 31, 12.9300000000, 79.1300000000, NULL, 0), (182, 'Singrauli', 20, 24.1400000000, 82.3800000000, NULL, 0), (183, 'Khammam', 32, 17.2500000000, 80.1500000000, 'KMM', 1), (184, 'Mahesana', 12, 23.6000000000, 72.4000000000, NULL, 0), (185, 'Silchar', 4, 24.8200000000, 92.8000000000, NULL, 0), (186, 'Sambalpur', 26, 21.4500000000, 83.9700000000, NULL, 0), (187, 'Rewa', 20, 24.5300000000, 81.3000000000, NULL, 0), (188, 'Unnao', 34, 26.5300000000, 80.5000000000, NULL, 0), (189, 'Hugli-Chinsurah', 36, 22.8800000000, 88.3900000000, NULL, 0), (190, 'Raiganj', 36, 25.6200000000, 88.1200000000, NULL, 0), (191, 'Phusro', 16, 23.7600000000, 86.0100000000, NULL, 0), (192, 'Adityapur', 16, 22.7900000000, 86.1600000000, NULL, 0), (193, 'Alappuzha', 18, 9.4900000000, 76.3300000000, NULL, 0), (194, 'Bahadurgarh', 13, 28.6800000000, 76.9200000000, NULL, 0), (195, 'Machilipatnam', 2, 16.1700000000, 81.1300000000, NULL, 0), (196, '<NAME>', 34, 26.2300000000, 81.2400000000, NULL, 0), (197, 'Jalpaiguri', 36, 26.5200000000, 88.7300000000, NULL, 0), (198, 'Bharuch', 12, 21.7000000000, 72.9700000000, NULL, 0), (199, 'Pathankot', 28, 32.2800000000, 75.6500000000, NULL, 0), (200, 'Hoshiarpur', 28, 31.5000000000, 75.9100000000, NULL, 0), (201, 'Baramula', 15, 34.2021480000, 74.3482590000, NULL, 0), (202, 'Adoni', 2, 15.6300000000, 77.2800000000, NULL, 0), (203, 'Jind', 13, 29.3200000000, 76.3200000000, NULL, 0), (204, 'Tonk', 29, 26.1700000000, 75.7800000000, NULL, 0), (205, 'Tenali', 2, 16.2500000000, 80.5800000000, NULL, 0), (206, 'Kancheepuram', 31, 12.8300000000, 79.7200000000, NULL, 0), (207, 'Vapi', 12, 20.3700000000, 72.9000000000, NULL, 0), (208, 'Sirsa', 13, 29.5300000000, 75.0200000000, NULL, 0), (209, 'Navsari', 12, 20.8500000000, 72.9200000000, NULL, 0), (210, 'Mahbubnagar', 32, 16.7300000000, 77.9800000000, NULL, 0), (211, 'Puri', 26, 19.8000000000, 85.8500000000, NULL, 0), (212, '<NAME>', 17, 12.9500000000, 78.2600000000, NULL, 0), (213, 'Erode', 31, 11.3500000000, 77.7300000000, NULL, 0), (214, 'Batala', 28, 31.8200000000, 75.2000000000, NULL, 0), (215, 'Haldwani-cum-Kathgodam', 35, 29.2100000000, 79.5100000000, NULL, 0), (216, 'Vidisha', 20, 23.5300000000, 77.8200000000, NULL, 0), (217, 'Saharsa', 5, 25.8800000000, 86.6000000000, NULL, 0), (218, 'Thanesar', 13, 29.9600000000, 76.8100000000, NULL, 0), (219, 'Chittoor', 2, 13.2000000000, 79.1200000000, 'CTR', 1), (220, 'Veraval', 12, 20.9000000000, 70.3700000000, NULL, 0), (221, 'Lakhimpur', 34, 27.9500000000, 80.7700000000, NULL, 0), (222, 'Sitapur', 34, 27.5700000000, 80.6800000000, NULL, 0), (223, 'Hindupur', 2, 13.8300000000, 77.4900000000, NULL, 0), (224, 'Santipur', 36, 23.2500000000, 88.4300000000, NULL, 0), (225, 'Balurghat', 36, 25.2200000000, 88.7700000000, NULL, 0), (226, 'Ganjbasoda', 20, 23.8500000000, 77.9200000000, NULL, 0), (227, 'Moga', 28, 30.8000000000, 75.1700000000, NULL, 0), (228, 'Proddatur', 2, 14.7300000000, 78.5500000000, NULL, 0), (229, 'Srinagar', 35, 34.0900000000, 74.8000000000, NULL, 0), (230, 'Medinipur', 36, 22.4300000000, 87.3300000000, NULL, 0), (231, 'Habra', 36, 22.8300000000, 88.6300000000, NULL, 0), (232, 'Sasaram', 5, 24.9500000000, 84.0300000000, NULL, 0), (233, 'Hajipur', 5, 25.6800000000, 85.2200000000, NULL, 0), (234, 'Bhuj', 12, 23.2700000000, 69.6700000000, NULL, 0), (235, 'Shivpuri', 20, 25.4300000000, 77.6600000000, NULL, 0), (236, 'Ranaghat', 36, 23.1800000000, 88.5800000000, NULL, 0), (237, 'Shimla', 14, 31.1000000000, 77.1700000000, NULL, 0), (238, 'Tiruvannamalai', 31, 12.2200000000, 79.0700000000, NULL, 0), (239, 'Kaithal', 13, 29.8000000000, 76.3800000000, NULL, 0), (240, 'Rajnandgaon', 7, 21.0900000000, 81.0300000000, NULL, 0), (241, 'Godhra', 12, 22.7500000000, 73.6300000000, NULL, 0), (242, 'Hazaribag', 16, 23.9800000000, 85.3500000000, NULL, 0), (243, 'Bhimavaram', 2, 16.5300000000, 81.5300000000, NULL, 0), (244, 'Mandsaur', 20, 24.0700000000, 75.0700000000, NULL, 0), (245, 'Dibrugarh', 4, 27.4800000000, 94.9000000000, NULL, 0), (246, 'Kolar', 17, 13.1300000000, 78.1300000000, NULL, 0), (247, 'Bankura', 36, 23.2500000000, 87.0700000000, NULL, 0), (248, 'Mandya', 17, 12.5200000000, 76.9000000000, NULL, 0), (249, 'Dehri-on-Sone', 5, 24.9200000000, 84.1900000000, NULL, 0), (250, 'Madanapalle', 2, 13.5500000000, 78.5000000000, NULL, 0), (251, 'Malerkotla', 28, 30.5200000000, 75.8800000000, NULL, 0), (252, 'Lalitpur', 34, 24.7600000000, 78.4200000000, NULL, 0), (253, 'Bettiah', 5, 26.8000000000, 84.5000000000, NULL, 0), (254, 'Pollachi', 31, 10.6700000000, 77.0200000000, NULL, 0), (255, 'Khanna', 28, 30.7000000000, 76.2200000000, NULL, 0), (256, 'Neemuch', 20, 24.4700000000, 74.8600000000, NULL, 0), (257, 'Palwal', 13, 28.1500000000, 77.3300000000, NULL, 0), (258, 'Palanpur', 12, 24.1700000000, 72.4300000000, NULL, 0), (259, 'Guntakal', 2, 15.1700000000, 77.3800000000, NULL, 0), (260, 'Nabadwip', 36, 23.4200000000, 88.3700000000, NULL, 0), (261, 'Udupi', 17, 13.3500000000, 74.7500000000, 'UD', 1), (262, 'Jagdalpur', 7, 19.0700000000, 82.0300000000, NULL, 0), (263, 'Motihari', 5, 26.6500000000, 84.9200000000, NULL, 0), (264, 'Pilibhit', 34, 28.6300000000, 79.8000000000, NULL, 0), (265, 'Dimapur', 25, 25.9000000000, 93.7300000000, NULL, 0), (266, 'Mohali', 28, 30.7800000000, 76.6900000000, NULL, 0), (267, 'Sadulpur', 29, 28.6300000000, 75.3800000000, NULL, 0), (268, 'Rajapalayam', 31, 9.4500000000, 77.5700000000, NULL, 0), (269, 'Dharmavaram', 2, 14.4300000000, 77.7200000000, NULL, 0), (270, 'Kashipur', 35, 29.2200000000, 78.9500000000, NULL, 0), (271, 'Sivakasi', 31, 9.4500000000, 77.8200000000, NULL, 0), (272, 'Darjiling', 36, 27.0300000000, 88.2700000000, NULL, 0), (273, 'Chikamagaluru', 17, 13.3100000000, 75.7700000000, NULL, 0), (274, 'Gudivada', 2, 16.4500000000, 80.9800000000, NULL, 0), (275, '<NAME>', 26, 21.4800000000, 86.9200000000, NULL, 0), (276, 'Mancherial', 32, 18.8700000000, 79.4300000000, NULL, 0), (277, 'Srikakulam', 2, 18.2900000000, 83.8900000000, NULL, 0), (278, 'Adilabad', 32, 19.6700000000, 78.5300000000, 'ADIL', 1), (279, 'Yawatmal', 21, 20.3800000000, 78.1200000000, NULL, 0), (280, 'Barnala', 28, 30.3800000000, 75.5500000000, NULL, 0), (281, 'Nagaon', 4, 17.4700000000, 73.6200000000, NULL, 0), (282, 'Narasaraopet', 2, 16.2500000000, 80.0700000000, NULL, 0), (283, 'Raigarh', 7, 21.9000000000, 83.4000000000, NULL, 0), (284, 'Roorkee', 35, 29.8700000000, 77.8800000000, NULL, 0), (285, 'Valsad', 12, 20.6300000000, 72.9300000000, NULL, 0), (286, 'Ambikapur', 7, 23.1200000000, 83.2000000000, NULL, 0), (287, 'Giridih', 16, 24.1800000000, 86.3000000000, NULL, 0), (288, 'Chandausi', 34, 28.4500000000, 78.7700000000, NULL, 0), (289, 'Purulia', 36, 23.3300000000, 86.3700000000, NULL, 0), (290, 'Patan', 12, 23.8300000000, 72.1200000000, NULL, 0), (291, 'Bagaha', 5, 27.1000000000, 84.0800000000, NULL, 0), (292, 'Hardoi ', 34, 27.1200000000, 80.1500000000, NULL, 0), (293, 'Achalpur', 21, 21.2600000000, 77.5100000000, NULL, 0), (294, 'Osmanabad', 21, 18.1700000000, 76.0500000000, NULL, 0), (295, 'Deesa', 12, 24.2500000000, 72.1700000000, NULL, 0), (296, 'Nandurbar', 21, 21.3700000000, 74.2500000000, NULL, 0), (297, 'Azamgarh', 34, 26.0600000000, 83.1900000000, NULL, 0), (298, 'Ramgarh', 16, 23.6300000000, 85.5200000000, NULL, 0), (299, 'Firozpur', 28, 30.9300000000, 74.6200000000, NULL, 0), (300, '<NAME>', 26, 21.9300000000, 86.7500000000, NULL, 0), (301, 'Karwar', 17, 14.8100000000, 74.1300000000, NULL, 0), (302, 'Siwan', 5, 26.2200000000, 84.3700000000, NULL, 0), (303, 'Rajampet', 2, 14.1800000000, 79.1700000000, NULL, 0), (304, 'Pudukkottai', 31, 10.3800000000, 78.8200000000, NULL, 0), (305, 'Anantnag', 15, 33.7300000000, 75.1500000000, NULL, 0), (306, 'Tadpatri', 2, 14.9200000000, 78.0200000000, NULL, 0), (307, 'Satara', 21, 17.6800000000, 73.9800000000, NULL, 0), (308, 'Bhadrak', 26, 21.0500000000, 86.4900000000, NULL, 0), (309, 'Kishanganj', 5, 25.7000000000, 86.9500000000, NULL, 0), (310, 'Suryapet', 32, 17.1500000000, 79.6200000000, NULL, 0), (311, 'Wardha', 21, 20.7500000000, 78.6200000000, NULL, 0), (312, 'Ranebennuru', 17, 14.6100000000, 75.6300000000, NULL, 0), (313, 'Amreli', 12, 21.6200000000, 71.2300000000, NULL, 0), (314, 'Neyveli', 31, 11.5400000000, 79.4700000000, NULL, 0), (315, 'Jamalpur', 5, 25.3000000000, 86.5000000000, NULL, 0), (316, 'Marmagao', 11, 15.4000000000, 73.8000000000, NULL, 0), (317, 'Udgir', 21, 18.3800000000, 77.1200000000, NULL, 0), (318, 'Tadepalligudem', 2, 16.8300000000, 81.5000000000, NULL, 0), (319, 'Nagapattinam', 31, 10.7700000000, 79.8300000000, NULL, 0), (320, 'Buxar', 5, 25.5800000000, 83.9800000000, NULL, 0), (321, 'Aurangabad', 21, 19.8800000000, 75.3300000000, NULL, 0), (322, 'Jehanabad', 5, 25.1500000000, 84.9800000000, NULL, 0), (323, 'Phagwara', 28, 31.2200000000, 75.7700000000, NULL, 0), (324, 'Khair', 34, 27.9200000000, 77.8400000000, NULL, 0), (325, '<NAME>', 29, 25.9800000000, 76.3700000000, NULL, 0), (326, 'Kapurthala', 28, 31.3800000000, 75.3800000000, NULL, 0), (327, 'Chilakaluripet', 2, 16.0900000000, 80.1600000000, NULL, 0), (328, 'Aurangabad', 5, 19.8800000000, 75.3300000000, NULL, 0), (329, 'Malappuram', 18, 11.0700000000, 76.0700000000, NULL, 0), (330, 'Rewari', 13, 28.1800000000, 76.6200000000, NULL, 0), (331, 'Nagaur', 29, 27.2000000000, 73.7300000000, NULL, 0), (332, 'Sultanpur', 34, 26.2700000000, 82.0700000000, NULL, 0), (333, 'Nagda', 20, 23.4500000000, 75.4200000000, NULL, 0), (334, '<NAME>', 1, 11.6700000000, 92.7500000000, NULL, 0), (335, 'Lakhisarai', 5, 25.1800000000, 86.1300000000, NULL, 0), (336, 'Panaji', 11, 15.4800000000, 73.8300000000, NULL, 0), (337, 'Tinsukia', 4, 27.5000000000, 95.3700000000, NULL, 0), (338, 'Itarsi', 20, 22.6200000000, 77.7500000000, NULL, 0), (339, 'Kohima', 25, 25.6700000000, 94.1200000000, NULL, 0), (340, 'Balangir', 26, 20.7200000000, 83.4800000000, NULL, 0), (341, 'Nawada', 5, 26.3300000000, 79.3100000000, NULL, 0), (342, 'Jharsuguda', 26, 21.8500000000, 84.0300000000, NULL, 0), (343, 'Jagtial', 32, 18.8000000000, 78.9300000000, NULL, 0), (344, 'Viluppuram', 31, 11.9500000000, 79.2900000000, NULL, 0), (345, 'Amalner', 21, 21.0500000000, 75.0700000000, NULL, 0), (346, 'Zirakpur', 28, 30.6400000000, 76.8100000000, NULL, 0), (347, 'Tanda', 34, 31.6800000000, 75.6300000000, NULL, 0), (348, 'Tiruchengode', 31, 11.3800000000, 77.8900000000, NULL, 0), (349, 'Nagina', 34, 29.4500000000, 78.4500000000, NULL, 0), (350, 'Yemmiganur', 2, 15.7600000000, 77.4700000000, NULL, 0), (351, 'Vaniyambadi', 31, 12.6800000000, 78.6200000000, NULL, 0), (352, 'Sarni', 20, 22.1100000000, 78.1600000000, NULL, 0), (353, '<NAME>', 31, 10.0100000000, 77.4700000000, NULL, 0), (354, 'Margao', 11, 15.2866910000, 73.9698000000, NULL, 0), (355, 'Akot', 21, 21.1000000000, 77.0600000000, NULL, 0), (356, 'Sehore', 20, 23.2000000000, 77.0800000000, NULL, 0), (357, '<NAME>', 20, 22.5500000000, 75.7500000000, NULL, 0), (358, '<NAME>', 28, 30.5800000000, 74.9000000000, NULL, 0), (359, 'Makrana', 29, 27.0500000000, 74.7200000000, NULL, 0), (360, 'Pandharpur', 21, 17.6700000000, 75.3300000000, NULL, 0), (361, 'Miryalaguda', 32, 16.8700000000, 79.5600000000, NULL, 0), (362, 'Shamli', 34, 29.4500000000, 77.3200000000, NULL, 0), (363, 'Seoni', 20, 22.0800000000, 79.5300000000, NULL, 0), (364, 'Ranibennur', 17, 14.6200000000, 75.6200000000, NULL, 0), (365, 'Kadiri', 2, 14.1200000000, 78.1700000000, NULL, 0), (366, 'Shrirampur', 21, 19.6200000000, 74.6500000000, NULL, 0), (367, 'Rudrapur', 35, 22.6300000000, 88.1800000000, NULL, 0), (368, 'Parli', 21, 18.8400000000, 76.5100000000, NULL, 0), (369, 'Najibabad', 34, 29.6300000000, 78.3300000000, NULL, 0), (370, 'Nirmal', 32, 19.1000000000, 78.3500000000, NULL, 0), (371, 'Udhagamandalam', 31, 11.4000000000, 76.6900000000, NULL, 0), (372, 'Shikohabad', 34, 27.1000000000, 78.6000000000, NULL, 0), (373, '<NAME>', 16, 24.4200000000, 85.5300000000, NULL, 0), (374, 'Aruppukkottai', 31, 9.5200000000, 78.1000000000, NULL, 0), (375, 'Ponnani', 18, 10.7700000000, 75.9000000000, NULL, 0), (376, 'Jamui', 5, 24.9200000000, 86.2200000000, NULL, 0), (377, 'Sitamarhi', 5, 26.6000000000, 85.4800000000, NULL, 0), (378, 'Chirala', 2, 15.8200000000, 80.3500000000, NULL, 0), (379, 'Anjar', 12, 23.1300000000, 70.0200000000, NULL, 0), (380, 'Karaikal', 27, 10.9200000000, 79.8300000000, NULL, 0), (381, 'Hansi', 13, 29.1000000000, 75.9700000000, NULL, 0), (382, 'Anakapalle', 2, 17.6800000000, 83.0200000000, NULL, 0), (383, 'Mahasamund', 7, 21.1000000000, 82.1000000000, NULL, 0), (384, 'Faridkot', 28, 30.6700000000, 74.7500000000, NULL, 0), (385, 'Saunda', 16, 23.6500000000, 85.3400000000, NULL, 0), (386, 'Dhoraji', 12, 21.7300000000, 70.4500000000, NULL, 0), (387, 'Paramakudi', 31, 9.5400000000, 78.5900000000, NULL, 0), (388, 'Balaghat', 20, 21.7800000000, 80.2500000000, NULL, 0), (389, 'Sujangarh', 29, 27.7000000000, 74.4700000000, NULL, 0), (390, 'Khambhat', 12, 22.3000000000, 72.6200000000, NULL, 0), (391, 'Muktsar', 28, 30.4800000000, 74.5200000000, NULL, 0), (392, 'Rajpura', 28, 30.4800000000, 76.6000000000, NULL, 0), (393, 'Kavali', 2, 14.9200000000, 79.9800000000, NULL, 0), (394, 'Dhamtari', 7, 20.7100000000, 81.5500000000, NULL, 0), (395, '<NAME>', 20, 13.0400000000, 80.2100000000, NULL, 0), (396, 'Sardarshahar', 29, 28.4400000000, 74.4900000000, NULL, 0), (397, 'Mahuva', 12, 21.0800000000, 71.8000000000, NULL, 0), (398, 'Bargarh', 26, 21.3300000000, 83.6200000000, NULL, 0), (399, 'Kamareddy', 32, 18.3200000000, 78.3300000000, NULL, 0), (400, 'Sahibganj', 16, 25.2500000000, 87.6500000000, NULL, 0), (401, 'Kothagudem', 32, 17.5500000000, 80.6300000000, NULL, 0), (402, 'Ramanagaram', 17, 12.7900000000, 77.2800000000, NULL, 0), (403, 'Gokak', 17, 16.1700000000, 74.8300000000, NULL, 0), (404, 'Tikamgarh', 20, 24.7500000000, 78.8300000000, NULL, 0), (405, 'Araria', 5, 26.1500000000, 87.5200000000, NULL, 0), (406, 'Rishikesh', 35, 30.1200000000, 78.3200000000, NULL, 0), (407, 'Shahdol', 20, 23.2800000000, 81.3500000000, NULL, 0), (408, 'Medininagar (Daltonganj)', 16, 24.0400000000, 84.0900000000, NULL, 0), (409, 'Arakkonam', 31, 13.1000000000, 79.6700000000, NULL, 0), (410, 'Washim', 21, 20.1000000000, 77.1500000000, NULL, 0), (411, 'Sangrur', 28, 30.2300000000, 75.8300000000, NULL, 0), (412, 'Bodhan', 32, 18.6700000000, 77.9000000000, NULL, 0), (413, 'Fazilka', 28, 30.4000000000, 74.0300000000, NULL, 0), (414, 'Palacole', 2, 16.5100000000, 81.7200000000, NULL, 0), (415, 'Keshod', 12, 21.3000000000, 70.2500000000, NULL, 0), (416, 'Sullurpeta', 2, 13.7000000000, 80.0100000000, NULL, 0), (417, 'Wadhwan', 12, 22.7000000000, 71.6800000000, NULL, 0), (418, 'Gurdaspur', 28, 32.0300000000, 75.5200000000, NULL, 0), (419, 'Vatakara', 18, 11.6000000000, 75.5900000000, NULL, 0), (420, 'Tura', 23, 25.5200000000, 90.2200000000, NULL, 0), (421, 'Narnaul', 13, 28.0400000000, 76.1100000000, NULL, 0), (422, 'Kharar', 28, 30.7400000000, 76.6500000000, NULL, 0), (423, 'Yadgir', 17, 16.7700000000, 77.1300000000, NULL, 0), (424, 'Ambejogai', 21, 18.7300000000, 76.3800000000, NULL, 0), (425, 'Ankleshwar', 12, 21.6000000000, 73.0000000000, NULL, 0), (426, 'Savarkundla', 12, 21.3400000000, 71.3000000000, NULL, 0), (427, 'Paradip', 26, 20.3200000000, 86.6200000000, NULL, 0), (428, 'Virudhachalam', 31, 11.5200000000, 79.3300000000, NULL, 0), (429, 'Kanhangad', 18, 12.3200000000, 75.0700000000, NULL, 0), (430, 'Kadi', 12, 23.3000000000, 72.3300000000, NULL, 0), (431, 'Srivilliputhur', 31, 9.5200000000, 77.6300000000, NULL, 0), (432, 'Gobindgarh', 28, 30.6600000000, 76.3300000000, NULL, 0), (433, 'Tindivanam', 31, 12.2500000000, 79.6500000000, NULL, 0), (434, 'Mansa', 28, 29.9800000000, 75.3800000000, NULL, 0), (435, 'Taliparamba', 18, 12.0500000000, 75.3500000000, NULL, 0), (436, 'Manmad', 21, 20.2500000000, 74.4500000000, NULL, 0), (437, 'Tanuku', 2, 16.7500000000, 81.7000000000, NULL, 0), (438, 'Rayachoti', 2, 14.0500000000, 78.7500000000, NULL, 0), (439, 'Virudhunagar', 31, 9.5680000000, 77.9600000000, NULL, 0), (440, 'Koyilandy', 18, 11.4400000000, 75.6900000000, NULL, 0), (441, 'Jorhat', 4, 26.7500000000, 94.2200000000, NULL, 0), (442, 'Karur', 31, 10.9500000000, 78.0800000000, NULL, 0), (443, 'Valparai', 31, 10.3200000000, 76.9500000000, NULL, 0), (444, 'Srikalahasti', 2, 13.7500000000, 79.7000000000, NULL, 0), (445, 'Neyyattinkara', 18, 8.4000000000, 77.0800000000, NULL, 0), (446, 'Bapatla', 2, 15.9000000000, 80.4700000000, NULL, 0), (447, 'Fatehabad', 13, 29.5200000000, 75.4500000000, NULL, 0), (448, 'Malout', 28, 30.1800000000, 74.5000000000, NULL, 0), (449, 'Sankarankovil', 31, 9.1700000000, 77.5500000000, NULL, 0), (450, 'Tenkasi', 31, 8.9700000000, 77.3000000000, NULL, 0), (451, 'Ratnagiri', 21, 16.9800000000, 73.3000000000, NULL, 0), (452, '<NAME>', 17, 16.4800000000, 75.1200000000, NULL, 0), (453, 'Sikandrabad', 34, 28.4500000000, 77.7000000000, NULL, 0), (454, 'Chaibasa', 16, 22.5700000000, 85.8200000000, NULL, 0), (455, 'Chirmiri', 7, 23.1800000000, 82.3500000000, NULL, 0), (456, 'Palwancha', 32, 17.6000000000, 80.7000000000, NULL, 0), (457, 'Bhawanipatna', 26, 19.9000000000, 83.1700000000, NULL, 0), (458, 'Kayamkulam', 18, 9.1800000000, 76.5000000000, NULL, 0), (459, 'Pithampur', 20, 22.6100000000, 75.6700000000, NULL, 0), (460, 'Nabha', 28, 30.3700000000, 76.1500000000, NULL, 0), (461, 'Shahabad', 34, 27.6400000000, 79.9400000000, NULL, 0), (462, 'Dhenkanal', 26, 20.6700000000, 85.6000000000, NULL, 0), (463, '<NAME>', 21, 17.0500000000, 74.2600000000, NULL, 0), (464, 'Gopalganj', 5, 26.4700000000, 84.4300000000, NULL, 0), (465, 'Bongaigaon City', 4, 26.6500000000, 90.5300000000, NULL, 0), (466, 'Palani', 31, 10.4700000000, 77.5300000000, NULL, 0), (467, 'Pusad', 21, 19.9100000000, 77.5000000000, NULL, 0), (468, 'Sopore', 15, 34.2900000000, 74.4700000000, NULL, 0), (469, 'Pilkhuwa', 34, 28.7200000000, 77.6500000000, NULL, 0), (470, '<NAME>', 28, 31.4500000000, 74.9300000000, NULL, 0), (471, 'Renukoot', 34, 24.2000000000, 83.0300000000, NULL, 0), (472, 'Mandamarri', 32, 18.9800000000, 79.4700000000, NULL, 0), (473, 'Shahabad', 17, 30.1700000000, 76.8700000000, NULL, 0), (474, 'Barbil', 26, 21.6600000000, 85.6400000000, NULL, 0), (475, 'Koratla', 32, 18.8200000000, 78.7200000000, NULL, 0), (476, 'Madhubani', 5, 26.4600000000, 86.1600000000, NULL, 0), (477, 'Arambagh', 36, 22.8800000000, 87.7800000000, NULL, 0), (478, 'Gohana', 13, 29.1300000000, 76.7000000000, NULL, 0), (479, 'Ladnu', 29, 27.6400000000, 74.3800000000, NULL, 0), (480, 'Pattukkottai', 31, 10.4300000000, 79.3200000000, NULL, 0), (481, 'Sirsi', 17, 14.6200000000, 74.8500000000, NULL, 0), (482, 'Sircilla', 32, 18.3800000000, 78.8000000000, NULL, 0), (483, 'Tamluk', 36, 22.3000000000, 87.9200000000, NULL, 0), (484, 'Jagraon', 28, 30.7800000000, 75.4800000000, NULL, 0), (485, '<NAME>', 36, NULL, NULL, NULL, 0), (486, 'Alirajpur', 20, 22.3400000000, 74.4900000000, NULL, 0), (487, 'Tandur', 32, 17.2300000000, 77.5800000000, NULL, 0), (488, 'Naidupet', 2, 13.9000000000, 79.8900000000, NULL, 0), (489, 'Tirupathur', 31, 12.5000000000, 78.5700000000, NULL, 0), (490, 'Tohana', 13, 29.7000000000, 75.9000000000, NULL, 0), (491, 'Ratangarh', 29, 28.0800000000, 74.6200000000, NULL, 0), (492, 'Dhubri', 4, 26.0300000000, 89.9700000000, NULL, 0), (493, 'Masaurhi', 5, 25.3500000000, 85.0300000000, NULL, 0), (494, 'Visnagar', 12, 23.7000000000, 72.5500000000, NULL, 0), (495, 'Vrindavan', 34, 27.5800000000, 77.7000000000, NULL, 0), (496, 'Nokha', 29, 27.6000000000, 73.4200000000, NULL, 0), (497, 'Nagari', 2, 13.3200000000, 79.5800000000, NULL, 0), (498, 'Narwana', 13, 29.6200000000, 76.1200000000, NULL, 0), (499, 'Ramanathapuram', 31, 9.3800000000, 78.8300000000, NULL, 0), (500, 'Ujhani', 34, 28.0300000000, 79.0000000000, NULL, 0), (501, 'Samastipur', 5, 25.8500000000, 85.7800000000, NULL, 0), (502, 'Laharpur', 34, 27.7100000000, 80.9000000000, NULL, 0), (503, 'Sangamner', 21, 19.5700000000, 74.2200000000, NULL, 0), (504, 'Nimbahera', 29, 24.6200000000, 74.6800000000, NULL, 0), (505, 'Siddipet', 32, 18.1000000000, 78.8500000000, NULL, 0), (506, 'Suri', 36, 23.9200000000, 87.5300000000, NULL, 0), (507, 'Diphu', 4, 25.8300000000, 93.4300000000, NULL, 0), (508, 'Jhargram', 36, 22.4500000000, 86.9800000000, NULL, 0), (509, 'Shirpur-Warwade', 21, 21.3700000000, 74.8600000000, NULL, 0), (510, 'Tilhar', 34, 27.9600000000, 79.7300000000, NULL, 0), (511, 'Sindhnur', 17, 15.7800000000, 76.7700000000, NULL, 0), (512, 'Udumalaipettai', 31, 10.5800000000, 77.2500000000, NULL, 0), (513, 'Malkapur', 21, 20.8800000000, 76.2100000000, NULL, 0), (514, 'Wanaparthy', 32, 16.3600000000, 78.0600000000, NULL, 0), (515, 'Gudur', 2, 17.4800000000, 78.8200000000, NULL, 0), (516, 'Kendujhar', 26, 21.5100000000, 85.6800000000, NULL, 0), (517, 'Mandla', 20, 22.6000000000, 80.3800000000, NULL, 0), (518, 'Mandi', 14, 31.7200000000, 76.9200000000, NULL, 0), (519, 'Nedumangad', 18, 8.6000000000, 77.0000000000, NULL, 0), (520, '<NAME>', 4, 27.2300000000, 94.1200000000, NULL, 0), (521, 'Vinukonda', 2, 16.0500000000, 79.7500000000, NULL, 0), (522, 'Tiptur', 17, 13.2600000000, 76.4800000000, NULL, 0), (523, 'Gobichettipalayam', 31, 11.4700000000, 77.4500000000, NULL, 0), (524, 'Sunabeda', 26, 18.7300000000, 82.8300000000, NULL, 0), (525, 'Wani', 21, 20.0700000000, 78.9500000000, NULL, 0), (526, 'Upleta', 12, 21.7300000000, 70.2700000000, NULL, 0), (527, 'Narasapuram', 2, 16.4400000000, 81.6900000000, NULL, 0), (528, 'Nuzvid', 2, 16.7800000000, 80.8500000000, NULL, 0), (529, 'Tezpur', 4, 26.6300000000, 92.8000000000, NULL, 0), (530, 'Una', 12, 31.4800000000, 76.2800000000, NULL, 0), (531, 'Markapur', 2, 15.7300000000, 79.2800000000, NULL, 0), (532, 'Sheopur', 20, 25.6701074000, 76.6791842000, NULL, 0), (533, 'Thiruvarur', 31, 10.7700000000, 79.6500000000, NULL, 0), (534, 'Sidhpur', 12, 29.7600000000, 78.7400000000, NULL, 0), (535, 'Sahaswan', 34, 28.0700000000, 78.7500000000, NULL, 0), (536, 'Suratgarh', 29, 29.3200000000, 73.9000000000, NULL, 0), (537, 'Shajapur', 20, 23.4200000000, 76.2700000000, NULL, 0), (538, 'Rayagada', 26, 19.1700000000, 83.4200000000, NULL, 0), (539, 'Lonavla', 21, 18.7500000000, 73.4200000000, NULL, 0), (540, 'Ponnur', 2, 16.0700000000, 80.5500000000, NULL, 0), (541, 'Kagaznagar', 32, 19.3500000000, 79.4800000000, NULL, 0), (542, 'Gadwal', 32, 16.2300000000, 77.8000000000, NULL, 0), (543, 'Bhatapara', 7, 21.7300000000, 81.9300000000, NULL, 0), (544, 'Kandukur', 2, 13.7500000000, 78.1700000000, NULL, 0), (545, 'Sangareddy', 32, 17.6100000000, 78.0800000000, NULL, 0), (546, 'Unjha', 12, 23.8000000000, 72.4000000000, NULL, 0), (547, 'Lunglei', 24, 22.8800000000, 92.7300000000, NULL, 0), (548, 'Karimganj', 4, 24.8700000000, 92.3500000000, NULL, 0), (549, 'Kannur', 18, 11.8700000000, 75.3700000000, NULL, 0), (550, 'Bobbili', 2, 18.5700000000, 83.3700000000, NULL, 0), (551, 'Mokameh', 5, 25.3900000000, 85.9100000000, NULL, 0), (552, '<NAME>', 21, 18.7200000000, 73.6800000000, NULL, 0), (553, 'Anjangaon', 21, 21.1600000000, 77.3100000000, NULL, 0), (554, 'Mangrol', 12, 21.1200000000, 70.1200000000, NULL, 0), (555, 'Sunam', 28, 30.1300000000, 75.8000000000, NULL, 0), (556, 'Gangarampur', 36, 25.4000000000, 88.5200000000, NULL, 0), (557, 'Thiruvallur', 31, 13.2500000000, 80.0000000000, NULL, 0), (558, 'Tirur', 18, 10.9000000000, 75.9200000000, NULL, 0), (559, 'Rath', 34, 25.6000000000, 79.5600000000, NULL, 0), (560, 'Jatani', 26, 20.1700000000, 85.7000000000, NULL, 0), (561, 'Viramgam', 12, 23.1200000000, 72.0300000000, NULL, 0), (562, 'Rajsamand', 29, 25.0700000000, 73.8800000000, NULL, 0), (563, 'Yanam', 27, 16.7300000000, 82.2200000000, NULL, 0), (564, 'Kottayam', 18, 9.5800000000, 76.5200000000, NULL, 0), (565, 'Panruti', 31, 11.7700000000, 79.5500000000, NULL, 0), (566, 'Dhuri', 28, 30.3700000000, 75.8700000000, NULL, 0), (567, 'Namakkal', 31, 11.2300000000, 78.1700000000, NULL, 0), (568, 'Kasaragod', 18, 12.5000000000, 75.0000000000, NULL, 0), (569, 'Modasa', 12, 23.4700000000, 73.3000000000, NULL, 0), (570, 'Rayadurg', 2, 14.6900000000, 76.8500000000, NULL, 0), (571, 'Supaul', 5, 26.1200000000, 86.6000000000, NULL, 0), (572, 'Kunnamkulam', 18, 10.6500000000, 76.0800000000, NULL, 0), (573, 'Umred', 21, 20.8400000000, 79.3200000000, NULL, 0), (574, 'Bellampalle', 32, 19.0700000000, 79.4900000000, NULL, 0), (575, 'Sibsagar', 4, 26.9800000000, 94.6300000000, NULL, 0), (576, '<NAME>', 13, 29.9600000000, 74.7000000000, NULL, 0), (577, 'Ottappalam', 18, 10.7700000000, 76.3800000000, NULL, 0), (578, 'Dumraon', 5, 25.5500000000, 84.1500000000, NULL, 0), (579, 'Samalkot', 2, 17.0500000000, 82.1800000000, NULL, 0), (580, 'Jaggaiahpet', 2, 16.9000000000, 80.1000000000, NULL, 0), (581, 'Goalpara', 4, 26.1700000000, 90.6200000000, NULL, 0), (582, 'Tuni', 2, 17.3500000000, 82.5500000000, NULL, 0), (583, 'Lachhmangarh', 29, 27.8100000000, 75.0300000000, NULL, 0), (584, 'Bhongir', 32, 17.5100000000, 78.8900000000, NULL, 0), (585, 'Amalapuram', 2, 16.5800000000, 82.0200000000, NULL, 0), (586, '<NAME>.', 28, 30.9100000000, 74.6200000000, NULL, 0), (587, 'Vikarabad', 32, 17.3300000000, 77.9000000000, NULL, 0), (588, 'Thiruvalla', 18, 9.3800000000, 76.5700000000, NULL, 0), (589, 'Sherkot', 34, 29.3500000000, 78.5800000000, NULL, 0), (590, 'Palghar', 21, 19.6800000000, 72.7500000000, NULL, 0), (591, 'Shegaon', 21, 20.7800000000, 76.6800000000, NULL, 0), (592, 'Jangaon', 32, 17.6000000000, 78.8800000000, NULL, 0), (593, 'Bheemunipatnam', 2, 17.9000000000, 83.4200000000, NULL, 0), (594, 'Panna', 20, 24.7200000000, 80.2000000000, NULL, 0), (595, 'Thodupuzha', 18, 9.8900000000, 76.7200000000, NULL, 0), (596, '<NAME>', 0, NULL, NULL, NULL, 0), (597, 'Palitana', 12, 21.5200000000, 71.8300000000, NULL, 0), (598, 'Arwal', 5, 25.1600000000, 84.6600000000, NULL, 0), (599, 'Venkatagiri', 2, 13.9700000000, 79.5800000000, NULL, 0), (600, 'Kalpi', 34, 26.1200000000, 79.7400000000, NULL, 0), (601, 'Rajgarh (Churu)', 29, 23.8500000000, 76.7300000000, NULL, 0), (602, 'Sattenapalle', 2, 16.3900000000, 80.1500000000, NULL, 0), (603, 'Arsikere', 17, 13.3100000000, 76.2500000000, NULL, 0), (604, 'Ozar', 21, 20.1000000000, 73.9300000000, NULL, 0), (605, 'Thirumangalam', 31, 13.0900000000, 80.2100000000, NULL, 0), (606, 'Petlad', 12, 22.4700000000, 72.8000000000, NULL, 0), (607, 'Nasirabad', 29, 26.2900000000, 74.7300000000, NULL, 0), (608, 'Phaltan', 21, 17.9800000000, 74.4300000000, NULL, 0), (609, 'Rampurhat', 36, 24.1800000000, 87.7800000000, NULL, 0), (610, 'Nanjangud', 17, 12.1200000000, 76.6800000000, NULL, 0), (611, 'Forbesganj', 5, 26.2900000000, 87.2600000000, NULL, 0), (612, 'Tundla', 34, 27.2000000000, 78.2800000000, NULL, 0), (613, 'BhabUrban Agglomeration', 5, NULL, NULL, NULL, 0), (614, 'Sagara', 17, 14.6700000000, 75.0400000000, NULL, 0), (615, 'Pithapuram', 2, 17.1200000000, 82.2700000000, NULL, 0), (616, 'Sira', 17, 13.7500000000, 76.9100000000, NULL, 0), (617, 'Bhadrachalam', 32, 17.6700000000, 80.8800000000, NULL, 0), (618, '<NAME>', 13, 28.6000000000, 76.2700000000, NULL, 0), (619, 'Chatra', 16, 24.3800000000, 87.8500000000, NULL, 0), (620, '<NAME>', 2, 18.7600000000, 84.4300000000, NULL, 0), (621, 'Nohar', 29, 29.1700000000, 74.7600000000, NULL, 0), (622, 'Yevla', 21, 20.0400000000, 74.4800000000, NULL, 0), (623, '<NAME>', 28, 30.6200000000, 76.3800000000, NULL, 0), (624, 'Bhainsa', 32, 19.1000000000, 77.9700000000, NULL, 0), (625, 'Parvathipuram', 2, 18.7800000000, 83.4200000000, NULL, 0), (626, 'Shahade', 21, 21.5300000000, 74.4600000000, NULL, 0), (627, 'Chalakudy', 18, 10.3000000000, 76.3300000000, NULL, 0), (628, 'Narkatiaganj', 5, 27.1000000000, 84.4600000000, NULL, 0), (629, 'Kapadvanj', 12, 23.0200000000, 73.0700000000, NULL, 0), (630, 'Macherla', 2, 16.4800000000, 79.4300000000, NULL, 0), (631, 'Raghogarh-Vijaypur', 20, 24.4800000000, 77.1600000000, NULL, 0), (632, 'Rupnagar', 28, 30.9600000000, 76.5200000000, NULL, 0), (633, 'Naugachhia', 5, 25.3800000000, 87.0900000000, NULL, 0), (634, 'Sendhwa', 20, 21.6800000000, 75.1000000000, NULL, 0), (635, 'Byasanagar', 26, 20.9400000000, 86.1100000000, NULL, 0), (636, 'Sandila', 34, 27.0700000000, 80.5100000000, NULL, 0), (637, 'Gooty', 2, 15.1200000000, 77.6300000000, NULL, 0), (638, 'Salur', 2, 18.5100000000, 83.2000000000, NULL, 0), (639, 'Nanpara', 34, 27.8600000000, 81.4900000000, NULL, 0), (640, 'Sardhana', 34, 29.1500000000, 77.6200000000, NULL, 0), (641, 'Vita', 21, 17.2800000000, 74.5500000000, NULL, 0), (642, 'Gumia', 16, 23.8000000000, 85.8200000000, NULL, 0), (643, 'Puttur', 17, 12.7700000000, 75.2200000000, NULL, 0), (644, '<NAME>.', 28, 31.2800000000, 75.6200000000, NULL, 0), (645, 'Nehtaur', 34, 29.3200000000, 78.3800000000, NULL, 0), (646, 'Changanassery', 18, 9.4400000000, 76.5400000000, NULL, 0), (647, 'Mandapeta', 2, 16.8700000000, 81.9300000000, NULL, 0), (648, 'Dumka', 16, 24.2700000000, 87.2500000000, NULL, 0), (649, 'Seohara', 34, 29.2200000000, 78.5800000000, NULL, 0), (650, 'Umarkhed', 21, 19.5900000000, 77.6900000000, NULL, 0), (651, 'Madhupur', 16, 24.2500000000, 86.6500000000, NULL, 0), (652, 'Vikramasingapuram', 31, 8.7100000000, 77.3800000000, NULL, 0), (653, 'Punalur', 18, 9.0000000000, 76.9300000000, NULL, 0), (654, 'Kendrapara', 26, 20.5000000000, 86.4200000000, NULL, 0), (655, 'Sihor', 12, 21.7200000000, 71.9500000000, NULL, 0), (656, 'Nellikuppam', 31, 11.7700000000, 79.6600000000, NULL, 0), (657, 'Samana', 28, 30.1600000000, 76.1900000000, NULL, 0), (658, 'Warora', 21, 20.2300000000, 79.0000000000, NULL, 0), (659, 'Nilambur', 18, 11.2800000000, 76.2500000000, NULL, 0), (660, 'Rasipuram', 31, 11.4700000000, 78.1700000000, NULL, 0), (661, 'Ramnagar', 35, 29.4000000000, 79.1200000000, NULL, 0), (662, 'Jammalamadugu', 2, 14.8300000000, 78.4000000000, NULL, 0), (663, 'Nawanshahr', 28, 32.6100000000, 74.7300000000, NULL, 0), (664, 'Thoubal', 22, 24.6300000000, 94.0200000000, NULL, 0), (665, 'Athni', 17, 16.7200000000, 75.0600000000, NULL, 0), (666, 'Cherthala', 18, 9.6800000000, 76.3400000000, NULL, 0), (667, 'Sidhi', 20, 24.4200000000, 81.8800000000, NULL, 0), (668, 'Farooqnagar', 32, 17.0700000000, 78.1900000000, NULL, 0), (669, 'Peddapuram', 2, 17.0800000000, 82.1300000000, NULL, 0), (670, 'Chirkunda', 16, 23.7400000000, 86.7800000000, NULL, 0), (671, 'Pachora', 21, 20.6700000000, 75.3500000000, NULL, 0), (672, 'Madhepura', 5, 25.8600000000, 86.9400000000, NULL, 0), (673, 'Pithoragarh', 35, 29.5800000000, 80.2200000000, NULL, 0), (674, 'Tumsar', 21, 21.3800000000, 79.7300000000, NULL, 0), (675, 'Phalodi', 29, 27.1300000000, 72.3700000000, NULL, 0), (676, 'Tiruttani', 31, 13.1800000000, 79.6300000000, NULL, 0), (677, '<NAME>', 28, 30.2700000000, 75.2400000000, NULL, 0), (678, 'Perinthalmanna', 18, 10.9700000000, 76.2200000000, NULL, 0), (679, 'Padrauna', 34, 26.9000000000, 83.9800000000, NULL, 0), (680, 'Pipariya', 20, 21.8200000000, 77.6200000000, NULL, 0), (681, 'Dalli-Rajhara', 7, 20.5800000000, 81.0800000000, NULL, 0), (682, 'Punganur', 2, 13.3600000000, 78.5700000000, NULL, 0), (683, 'Mattannur', 18, 11.9200000000, 75.5700000000, NULL, 0), (684, 'Mathura', 34, 27.5000000000, 77.6800000000, NULL, 0), (685, 'Thakurdwara', 34, 29.1900000000, 78.8600000000, NULL, 0), (686, 'Nandivaram-Guduvancheri', 31, 12.8400000000, 80.0600000000, NULL, 0), (687, 'Mulbagal', 17, 13.1600000000, 78.3900000000, NULL, 0), (688, 'Manjlegaon', 21, 19.1800000000, 76.2200000000, NULL, 0), (689, 'Wankaner', 12, 22.6200000000, 70.9300000000, NULL, 0), (690, 'Sillod', 21, 20.3000000000, 75.6500000000, NULL, 0), (691, 'Nidadavole', 2, 16.9200000000, 81.6700000000, NULL, 0), (692, 'Surapura', 17, 16.5200000000, 76.7600000000, NULL, 0), (693, 'Rajagangapur', 26, 22.1900000000, 84.5700000000, NULL, 0), (694, 'Sheikhpura', 5, 25.0800000000, 85.8800000000, NULL, 0), (695, 'Parlakhemundi', 26, 18.7700000000, 84.0900000000, NULL, 0), (696, 'Kalimpong', 36, 27.0700000000, 88.4800000000, NULL, 0), (697, 'Siruguppa', 17, 15.6300000000, 76.9000000000, NULL, 0), (698, 'Arvi', 21, 20.9800000000, 78.2300000000, NULL, 0), (699, 'Limbdi', 12, 22.5700000000, 71.8000000000, NULL, 0), (700, 'Barpeta', 4, 26.3200000000, 91.0000000000, NULL, 0), (701, 'Manglaur', 35, 29.7900000000, 77.8000000000, NULL, 0), (702, 'Repalle', 2, 16.0200000000, 80.8500000000, NULL, 0), (703, 'Mudhol', 17, 16.3500000000, 75.2800000000, NULL, 0), (704, 'Shujalpur', 20, 23.4000000000, 76.7200000000, NULL, 0), (705, 'Mandvi', 12, 21.2500000000, 73.3000000000, NULL, 0), (706, 'Thangadh', 12, 22.5700000000, 71.2000000000, NULL, 0), (707, 'Sironj', 20, 24.0900000000, 77.6700000000, NULL, 0), (708, 'Nandura', 21, 20.8300000000, 76.4500000000, NULL, 0), (709, 'Shoranur', 18, 10.7700000000, 76.2800000000, NULL, 0), (710, 'Nathdwara', 29, 24.9300000000, 73.8200000000, NULL, 0), (711, 'Periyakulam', 31, 10.1100000000, 77.5400000000, NULL, 0), (712, 'Sultanganj', 5, 22.3500000000, 88.2200000000, NULL, 0), (713, 'Medak', 32, 18.0300000000, 78.2700000000, 'MDK', 1), (714, 'Narayanpet', 32, 16.7400000000, 77.4900000000, 'NRYPT', 1), (715, '<NAME>', 5, 26.9700000000, 84.8500000000, NULL, 0), (716, 'Rajouri', 15, 33.3700000000, 74.3100000000, NULL, 0), (717, 'Pernampattu', 31, 12.9300000000, 78.7100000000, NULL, 0), (718, 'Nainital', 35, 29.3800000000, 79.4500000000, NULL, 0), (719, 'Ramachandrapuram', 2, 16.8500000000, 82.0200000000, NULL, 0), (720, 'Vaijapur', 21, 19.9200000000, 74.7200000000, NULL, 0), (721, 'Nangal', 28, 28.5500000000, 75.6600000000, NULL, 0), (722, 'Sidlaghatta', 17, 13.3900000000, 77.8600000000, NULL, 0), (723, 'Punch', 15, 33.4600000000, 74.5000000000, NULL, 0), (724, 'Pandhurna', 20, 21.5900000000, 78.5200000000, NULL, 0), (725, '<NAME>', 21, 20.3700000000, 78.1000000000, NULL, 0), (726, 'Talcher', 26, 20.9500000000, 85.2200000000, NULL, 0), (727, 'Varkala', 18, 8.7300000000, 76.7200000000, NULL, 0), (728, 'Pilani', 29, 28.3700000000, 75.6000000000, NULL, 0), (729, 'Nowgong', 20, 25.0593539000, 79.4098657000, NULL, 0), (730, '<NAME>', 7, 22.0100000000, 82.5700000000, NULL, 0), (731, 'Mapusa', 11, 15.6000000000, 73.8100000000, NULL, 0), (732, 'Vellakoil', 31, 10.9400000000, 77.7100000000, NULL, 0), (733, '<NAME>', 29, 26.6400000000, 74.0300000000, NULL, 0), (734, 'Sivaganga', 31, 9.8700000000, 78.4800000000, NULL, 0), (735, 'Mandideep', 20, 23.0900000000, 77.5000000000, NULL, 0), (736, 'Sailu', 21, 19.4700000000, 76.4700000000, NULL, 0), (737, 'Vyara', 12, 21.1200000000, 73.4000000000, NULL, 0), (738, 'Kovvur', 2, 17.0200000000, 81.7300000000, NULL, 0), (739, 'Vadalur', 31, 11.5500000000, 79.5500000000, NULL, 0), (740, 'Nawabganj', 34, 26.9900000000, 81.2500000000, NULL, 0), (741, 'Padra', 12, 22.2300000000, 73.0800000000, NULL, 0), (742, 'Sainthia', 36, 23.9500000000, 87.6700000000, NULL, 0), (743, 'Siana', 34, 28.6200000000, 78.0600000000, NULL, 0), (744, 'Shahpur', 17, 29.3500000000, 77.5400000000, NULL, 0), (745, 'Sojat', 29, 25.9200000000, 73.6700000000, NULL, 0), (746, 'Noorpur', 34, 29.1500000000, 78.4100000000, NULL, 0), (747, 'Paravoor', 18, 8.7800000000, 76.7000000000, NULL, 0), (748, 'Murtijapur', 21, 20.7200000000, 77.3600000000, NULL, 0), (749, 'Ramnagar', 5, 29.4000000000, 79.1200000000, NULL, 0), (750, 'Sundargarh', 26, 22.1200000000, 84.0300000000, NULL, 0), (751, 'Taki', 36, 22.5800000000, 88.9000000000, NULL, 0), (752, 'Saundatti-Yellamma', 17, 15.7500000000, 75.1200000000, NULL, 0), (753, 'Pathanamthitta', 18, 9.2700000000, 76.7800000000, NULL, 0), (754, 'Wadi', 17, 17.0700000000, 76.9800000000, NULL, 0), (755, 'Rameshwaram', 31, 9.2800000000, 79.3100000000, NULL, 0), (756, 'Tasgaon', 21, 17.0300000000, 74.6000000000, NULL, 0), (757, '<NAME>', 34, 27.6800000000, 78.3700000000, NULL, 0), (758, 'Sihora', 20, 23.4800000000, 80.1000000000, NULL, 0), (759, 'Tiruvethipuram', 31, 12.6600000000, 79.5400000000, NULL, 0), (760, 'Tiruvuru', 2, 17.1000000000, 80.6000000000, NULL, 0), (761, 'Mehkar', 21, 20.1400000000, 76.5700000000, NULL, 0), (762, 'Peringathur', 18, 11.7100000000, 75.5800000000, NULL, 0), (763, 'Perambalur', 31, 11.2300000000, 78.8800000000, NULL, 0), (764, 'Manvi', 17, 16.1700000000, 77.0300000000, NULL, 0), (765, 'Zunheboto', 25, 26.0000000000, 94.5200000000, NULL, 0), (766, '<NAME>', 5, 25.6100000000, 85.4800000000, NULL, 0), (767, 'Attingal', 18, 8.6800000000, 76.8300000000, NULL, 0), (768, 'Shahbad', 13, 30.1600000000, 76.8600000000, NULL, 0), (769, 'Puranpur', 34, 28.5200000000, 80.1500000000, NULL, 0), (770, 'Nelamangala', 17, 13.1000000000, 77.3900000000, NULL, 0), (771, 'Nakodar', 28, 31.1300000000, 75.4700000000, NULL, 0), (772, 'Lunawada', 12, 23.1300000000, 73.6100000000, NULL, 0), (773, 'Murshidabad', 36, 24.1800000000, 88.2700000000, NULL, 0), (774, 'Mahe', 27, 11.7000000000, 75.5300000000, NULL, 0), (775, 'Lanka', 4, 19.2300000000, 80.7700000000, NULL, 0), (776, 'Rudauli', 34, 26.7500000000, 81.7500000000, NULL, 0), (777, 'Tuensang', 25, 26.2600000000, 94.8100000000, NULL, 0), (778, 'Lakshmeshwar', 17, 15.1200000000, 75.4700000000, NULL, 0), (779, 'Zira', 28, 30.9700000000, 74.9900000000, NULL, 0), (780, 'Yawal', 21, 21.1600000000, 75.6900000000, NULL, 0), (781, '<NAME>', 34, 29.5800000000, 77.4100000000, NULL, 0), (782, 'Ramdurg', 17, 15.9500000000, 75.2900000000, NULL, 0), (783, 'Pulgaon', 21, 20.7300000000, 78.3300000000, NULL, 0), (784, 'Sadasivpet', 32, 17.6200000000, 77.9500000000, NULL, 0), (785, 'Nargund', 17, 15.7200000000, 75.3800000000, NULL, 0), (786, 'Neem-Ka-Thana', 29, 27.7300000000, 75.7700000000, NULL, 0), (787, 'Memari', 36, 23.2000000000, 88.1200000000, NULL, 0), (788, 'Nilanga', 21, 18.1000000000, 76.7700000000, NULL, 0), (789, 'Naharlagun', 3, 27.1000000000, 93.7000000000, NULL, 0), (790, 'Pakaur', 16, 24.6300000000, 87.8500000000, NULL, 0), (791, 'Wai', 21, 17.9300000000, 73.9000000000, NULL, 0), (792, 'Tarikere', 17, 13.7200000000, 75.8200000000, NULL, 0), (793, 'Malavalli', 17, 12.3800000000, 77.0800000000, NULL, 0), (794, 'Raisen', 20, 23.3300000000, 77.8000000000, NULL, 0), (795, 'Lahar', 20, 26.1900000000, 78.9400000000, NULL, 0), (796, 'Uravakonda', 2, 14.9400000000, 77.2600000000, NULL, 0), (797, 'Savanur', 17, 14.9700000000, 75.3500000000, NULL, 0), (798, 'Sirohi', 29, 24.8800000000, 72.8700000000, NULL, 0), (799, 'Udhampur', 15, 32.9300000000, 75.1300000000, NULL, 0), (800, 'Umarga', 21, 17.8300000000, 76.6200000000, NULL, 0), (801, 'Pratapgarh', 29, 25.9300000000, 81.9800000000, NULL, 0), (802, 'Lingsugur', 17, 16.1500000000, 76.5100000000, NULL, 0), (803, 'Usilampatti', 31, 9.9700000000, 77.8000000000, NULL, 0), (804, '<NAME>', 34, 28.4300000000, 80.5700000000, NULL, 0), (805, 'Wokha', 25, 26.1000000000, 94.2700000000, NULL, 0), (806, 'Rajpipla', 12, 21.7800000000, 73.5700000000, NULL, 0), (807, 'Vijayapura', 17, 16.8300000000, 75.7100000000, NULL, 0), (808, 'Rawatbhata', 29, 24.9300000000, 75.5800000000, NULL, 0), (809, 'Sangaria', 29, 29.8000000000, 74.4500000000, NULL, 0), (810, 'Paithan', 21, 19.3500000000, 75.2300000000, NULL, 0), (811, 'Rahuri', 21, 19.3800000000, 74.6500000000, NULL, 0), (812, 'Patti', 28, 31.2800000000, 74.8600000000, NULL, 0), (813, 'Zaidpur', 34, 26.8300000000, 81.3300000000, NULL, 0), (814, 'Lalsot', 29, 26.5700000000, 76.3300000000, NULL, 0), (815, 'Maihar', 20, 24.2700000000, 80.7500000000, NULL, 0), (816, 'Vedaranyam', 31, 10.3700000000, 79.8500000000, NULL, 0), (817, 'Nawapur', 21, 21.1600000000, 73.7900000000, NULL, 0), (818, 'Solan', 14, 30.9200000000, 77.1200000000, NULL, 0), (819, 'Vapi', 12, 20.3700000000, 72.9000000000, NULL, 0), (820, 'Sanawad', 20, 22.1700000000, 76.0600000000, NULL, 0), (821, 'Warisaliganj', 5, 25.0100000000, 85.6300000000, NULL, 0), (822, 'Revelganj', 5, 25.7600000000, 84.6700000000, NULL, 0), (823, 'Sabalgarh', 20, 26.2400000000, 77.4000000000, NULL, 0), (824, 'Tuljapur', 21, 18.0000000000, 76.0800000000, NULL, 0), (825, 'Simdega', 16, 22.6200000000, 84.5200000000, NULL, 0), (826, 'Musabani', 16, 22.5000000000, 86.4500000000, NULL, 0), (827, 'Kodungallur', 18, 10.2200000000, 76.2000000000, NULL, 0), (828, 'Phulabani', 26, 20.4700000000, 84.2300000000, NULL, 0), (829, 'Umreth', 12, 22.7000000000, 73.1200000000, NULL, 0), (830, 'Narsipatnam', 2, 17.6700000000, 82.6200000000, NULL, 0), (831, 'Nautanwa', 34, 27.4300000000, 83.4200000000, NULL, 0), (832, 'Rajgir', 5, 25.0100000000, 85.4100000000, NULL, 0), (833, 'Yellandu', 32, 17.5900000000, 80.3200000000, NULL, 0); INSERT INTO `cities` (`cityid`, `cityname`, `state_id`, `latitude`, `longitude`, `short_code`, `status`) VALUES (834, 'Sathyamangalam', 31, 11.5100000000, 77.2400000000, NULL, 0), (835, 'Pilibanga', 29, 29.4800000000, 74.0700000000, NULL, 0), (836, 'Morshi', 21, 21.3200000000, 78.0100000000, NULL, 0), (837, 'Pehowa', 13, 29.9800000000, 76.5800000000, NULL, 0), (838, 'Sonepur', 5, 20.8400000000, 83.8900000000, NULL, 0), (839, 'Pappinisseri', 18, 11.9400000000, 75.3500000000, NULL, 0), (840, 'Zamania', 34, 25.4200000000, 83.5500000000, NULL, 0), (841, 'Mihijam', 16, 23.8600000000, 86.8600000000, NULL, 0), (842, 'Purna', 21, 19.1800000000, 77.0500000000, NULL, 0), (843, 'Puliyankudi', 31, 9.1700000000, 77.3900000000, NULL, 0), (844, 'Shikarpur', 34, 28.2700000000, 78.0100000000, NULL, 0), (845, 'Umaria', 20, 23.6000000000, 81.0700000000, NULL, 0), (846, 'Porsa', 20, 26.6700000000, 78.3600000000, NULL, 0), (847, '<NAME>', 34, 29.0000000000, 78.4000000000, NULL, 0), (848, '<NAME>', 34, 27.0900000000, 77.6600000000, NULL, 0), (849, 'Manuguru', 32, 17.9800000000, 80.7500000000, NULL, 0), (850, 'Udaipur', 33, 27.7200000000, 75.4800000000, NULL, 0), (851, '<NAME>', 29, 26.3800000000, 73.5300000000, NULL, 0), (852, 'Pattamundai', 26, 20.5800000000, 86.5600000000, NULL, 0), (853, 'Nanjikottai', 31, 10.7300000000, 79.1300000000, NULL, 0), (854, 'Taranagar', 29, 28.6700000000, 75.0400000000, NULL, 0), (855, 'Yerraguntla', 2, 14.6300000000, 78.5300000000, NULL, 0), (856, 'Satana', 21, 20.5900000000, 74.2000000000, NULL, 0), (857, 'Sherghati', 5, 24.5500000000, 84.7900000000, NULL, 0), (858, 'Sankeshwara', 17, 16.2500000000, 74.4800000000, NULL, 0), (859, 'Madikeri', 17, 12.4200000000, 75.7300000000, NULL, 0), (860, 'Thuraiyur', 31, 11.1400000000, 78.5900000000, NULL, 0), (861, 'Sanand', 12, 22.9800000000, 72.3800000000, NULL, 0), (862, 'Rajula', 12, 21.0500000000, 71.4300000000, NULL, 0), (863, 'Kyathampalle', 32, 18.9200000000, 79.4900000000, NULL, 0), (864, 'Shahabad', 34, 27.6400000000, 79.9400000000, NULL, 0), (865, '<NAME>', 7, 21.5500000000, 81.7800000000, NULL, 0), (866, 'Narsinghgarh', 20, 23.7100000000, 77.0800000000, NULL, 0), (867, 'Chittur-Thathamangalam', 18, 10.6700000000, 76.7100000000, NULL, 0), (868, '<NAME>', 20, 19.9800000000, 73.7600000000, NULL, 0), (869, 'Sarangpur', 20, 23.5600000000, 76.4700000000, NULL, 0), (870, 'Robertsganj', 34, 24.6800000000, 83.0600000000, NULL, 0), (871, 'Sirkali', 31, 11.2300000000, 79.7300000000, NULL, 0), (872, 'Radhanpur', 12, 23.8200000000, 71.6100000000, NULL, 0), (873, 'Tiruchendur', 31, 8.4800000000, 78.1200000000, NULL, 0), (874, 'Utraula', 34, 27.3100000000, 82.4100000000, NULL, 0), (875, 'Patratu', 16, 23.6700000000, 85.2800000000, NULL, 0), (876, 'Vijainagar', 29, 25.9200000000, 74.6500000000, NULL, 0), (877, 'Periyasemur', 31, 11.3600000000, 77.6800000000, NULL, 0), (878, 'Pathri', 21, 19.2500000000, 76.4500000000, NULL, 0), (879, 'Sadabad', 34, 27.4500000000, 78.0500000000, NULL, 0), (880, 'Talikota', 17, 16.4700000000, 76.3100000000, NULL, 0), (881, 'Sinnar', 21, 19.8500000000, 74.0000000000, NULL, 0), (882, 'Mungeli', 7, 22.0600000000, 81.6800000000, NULL, 0), (883, 'Sedam', 17, 17.1700000000, 77.2800000000, NULL, 0), (884, 'Shikaripur', 17, 14.2600000000, 75.3500000000, NULL, 0), (885, 'Sumerpur', 29, 26.5100000000, 79.9400000000, NULL, 0), (886, 'Sattur', 31, 9.3700000000, 77.9300000000, NULL, 0), (887, 'Sugauli', 5, 26.7500000000, 84.7200000000, NULL, 0), (888, 'Lumding', 4, 25.7500000000, 93.1700000000, NULL, 0), (889, 'Vandavasi', 31, 12.5000000000, 79.6200000000, NULL, 0), (890, 'Titlagarh', 26, 20.2800000000, 83.1400000000, NULL, 0), (891, 'Uchgaon', 21, 16.6900000000, 74.2700000000, NULL, 0), (892, 'Mokokchung', 25, 26.3300000000, 94.5300000000, NULL, 0), (893, '<NAME>', 36, 24.6000000000, 88.0400000000, NULL, 0), (894, 'Sagwara', 29, 23.6600000000, 74.0200000000, NULL, 0), (895, '<NAME>', 29, 24.6400000000, 75.9400000000, NULL, 0), (896, 'Tarakeswar', 36, 22.8900000000, 88.0200000000, NULL, 0), (897, 'Mahalingapura', 17, 13.0500000000, 80.2300000000, NULL, 0), (898, 'Dharmanagar', 33, 24.3700000000, 92.1700000000, NULL, 0), (899, 'Mahemdabad', 12, 22.8100000000, 72.7500000000, NULL, 0), (900, 'Manendragarh', 7, 23.2100000000, 82.2000000000, NULL, 0), (901, 'Uran', 21, 18.8800000000, 72.9400000000, NULL, 0), (902, 'Tharamangalam', 31, 11.6900000000, 77.9700000000, NULL, 0), (903, 'Tirukkoyilur', 31, 11.9600000000, 79.2000000000, NULL, 0), (904, 'Pen', 21, 18.7500000000, 73.0800000000, NULL, 0), (905, 'Makhdumpur', 5, 25.0600000000, 84.9700000000, NULL, 0), (906, 'Maner', 5, 25.6400000000, 84.8800000000, NULL, 0), (907, 'Oddanchatram', 31, 10.4800000000, 77.7400000000, NULL, 0), (908, 'Palladam', 31, 10.9800000000, 77.3000000000, NULL, 0), (909, 'Mundi', 20, 22.0700000000, 76.4700000000, NULL, 0), (910, 'Nabarangapur', 26, 19.5000000000, 82.3000000000, NULL, 0), (911, 'Mudalagi', 17, 16.3300000000, 74.9600000000, NULL, 0), (912, 'Samalkha', 13, 28.5300000000, 77.0800000000, NULL, 0), (913, 'Nepanagar', 20, 21.4600000000, 76.3900000000, NULL, 0), (914, 'Karjat', 21, 18.9200000000, 73.3300000000, NULL, 0), (915, 'Ranavav', 12, 21.6800000000, 69.7400000000, NULL, 0), (916, 'Pedana', 2, 16.2700000000, 81.1700000000, NULL, 0), (917, 'Pinjore', 13, 30.7900000000, 76.9100000000, NULL, 0), (918, 'Lakheri', 29, 25.6700000000, 76.1700000000, NULL, 0), (919, 'Pasan', 20, 23.1500000000, 81.9500000000, NULL, 0), (920, 'Puttur', 2, 12.7700000000, 75.2200000000, NULL, 0), (921, 'Vadakkuvalliyur', 31, 8.3800000000, 77.5900000000, NULL, 0), (922, 'Tirukalukundram', 31, 12.6000000000, 80.0600000000, NULL, 0), (923, 'Mahidpur', 20, 23.4800000000, 75.6500000000, NULL, 0), (924, 'Mussoorie', 35, 30.4500000000, 78.0800000000, NULL, 0), (925, 'Muvattupuzha', 18, 9.9800000000, 76.5700000000, NULL, 0), (926, 'Rasra', 34, 25.8500000000, 83.8500000000, NULL, 0), (927, 'Udaipurwati', 29, 27.7300000000, 75.4700000000, NULL, 0), (928, 'Manwath', 21, 19.3000000000, 76.4900000000, NULL, 0), (929, 'Adoor', 18, 9.1500000000, 76.7300000000, NULL, 0), (930, 'Uthamapalayam', 31, 9.8000000000, 77.3200000000, NULL, 0), (931, 'Partur', 21, 19.6000000000, 76.2200000000, NULL, 0), (932, 'Nahan', 14, 30.5500000000, 77.3000000000, NULL, 0), (933, 'Ladwa', 13, 29.9900000000, 77.0400000000, NULL, 0), (934, 'Mankachar', 4, 25.5300000000, 89.8600000000, NULL, 0), (935, 'Nongstoin', 23, 25.5200000000, 91.2700000000, NULL, 0), (936, 'Losal', 29, 27.3900000000, 74.9200000000, NULL, 0), (937, '<NAME>', 29, 27.4700000000, 75.5900000000, NULL, 0), (938, 'Ramngarh', 29, 23.6500000000, 85.5600000000, NULL, 0), (939, 'Mavelikkara', 18, 9.2300000000, 76.5300000000, NULL, 0), (940, 'Rawatsar', 29, 29.2500000000, 74.4000000000, NULL, 0), (941, 'Rajakhera', 29, 26.8900000000, 78.1700000000, NULL, 0), (942, 'Lar', 34, 26.2000000000, 83.9700000000, NULL, 0), (943, '<NAME>', 34, 25.6500000000, 81.6100000000, NULL, 0), (944, 'Muddebihal', 17, 16.3300000000, 76.1200000000, NULL, 0), (945, 'Sirsaganj', 34, 27.0500000000, 78.6800000000, NULL, 0), (946, 'Shahpura', 29, 27.3800000000, 75.9600000000, NULL, 0), (947, 'Surandai', 31, 8.9700000000, 77.4000000000, NULL, 0), (948, 'Sangole', 21, 17.4300000000, 75.1900000000, NULL, 0), (949, 'Pavagada', 17, 14.1000000000, 77.2800000000, NULL, 0), (950, 'Tharad', 12, 24.4000000000, 71.6300000000, NULL, 0), (951, 'Mansa', 12, 29.9800000000, 75.3800000000, NULL, 0), (952, 'Umbergaon', 12, 20.1700000000, 72.7600000000, NULL, 0), (953, 'Mavoor', 18, 11.2600000000, 75.9400000000, NULL, 0), (954, 'Nalbari', 4, 26.4200000000, 91.4300000000, NULL, 0), (955, 'Talaja', 12, 21.3500000000, 72.0500000000, NULL, 0), (956, 'Malur', 17, 13.0100000000, 77.9400000000, NULL, 0), (957, 'Mangrulpir', 21, 20.3100000000, 77.3400000000, NULL, 0), (958, 'Soro', 26, 21.2800000000, 86.6900000000, NULL, 0), (959, 'Shahpura', 29, 27.3800000000, 75.9600000000, NULL, 0), (960, 'Vadnagar', 12, 23.7800000000, 72.6300000000, NULL, 0), (961, 'Raisinghnagar', 29, 29.5400000000, 73.4500000000, NULL, 0), (962, 'Sindhagi', 17, 16.9100000000, 76.2300000000, NULL, 0), (963, 'Sanduru', 17, 15.0800000000, 76.5400000000, NULL, 0), (964, 'Sohna', 13, 28.2500000000, 77.0700000000, NULL, 0), (965, 'Manavadar', 12, 21.4900000000, 70.1300000000, NULL, 0), (966, 'Pihani', 34, 27.6200000000, 80.2000000000, NULL, 0), (967, 'Safidon', 13, 29.4200000000, 76.6700000000, NULL, 0), (968, 'Risod', 21, 19.9700000000, 76.7800000000, NULL, 0), (969, 'Rosera', 5, 25.7500000000, 86.0300000000, NULL, 0), (970, 'Sankari', 31, 11.4700000000, 77.8700000000, NULL, 0), (971, 'Malpura', 29, 26.3000000000, 75.3600000000, NULL, 0), (972, 'Sonamukhi', 36, 23.3000000000, 87.4100000000, NULL, 0), (974, 'Nokha', 5, 27.6000000000, 73.4200000000, NULL, 0), (975, 'PandUrban Agglomeration', 36, 47.5200000000, 6.8500000000, NULL, 0), (976, 'Mainaguri', 36, 26.5700000000, 88.8200000000, NULL, 0), (977, 'Afzalpur', 17, 17.2000000000, 76.3500000000, NULL, 0), (978, 'Shirur', 21, 18.8200000000, 74.3700000000, NULL, 0), (979, 'Salaya', 12, 22.3000000000, 69.6000000000, NULL, 0), (980, 'Shenkottai', 31, 8.9700000000, 77.2400000000, NULL, 0), (981, 'Pratapgarh', 33, 25.9300000000, 81.9800000000, NULL, 0), (982, 'Vadipatti', 31, 10.0800000000, 77.9600000000, NULL, 0), (983, 'Nagarkurnool', 32, 16.4900000000, 78.3100000000, NULL, 0), (984, 'Savner', 21, 21.3800000000, 78.9200000000, NULL, 0), (985, 'Sasvad', 21, 18.3400000000, 74.0300000000, NULL, 0), (986, 'Rudrapur', 34, 22.6300000000, 88.1800000000, NULL, 0), (987, 'Soron', 34, 27.8800000000, 78.7400000000, NULL, 0), (988, 'Sholingur', 31, 13.1100000000, 79.4300000000, NULL, 0), (989, 'Pandharkaoda', 21, 20.0200000000, 78.5400000000, NULL, 0), (990, 'Perumbavoor', 18, 10.1100000000, 76.4700000000, NULL, 0), (991, 'Maddur', 17, 12.6000000000, 77.0700000000, NULL, 0), (992, 'Nadbai', 29, 27.2300000000, 77.2000000000, NULL, 0), (993, 'Talode', 21, 21.5600000000, 74.2100000000, NULL, 0), (994, 'Shrigonda', 21, 18.6200000000, 74.6800000000, NULL, 0), (995, 'Madhugiri', 17, 13.6600000000, 77.2000000000, NULL, 0), (996, 'Tekkalakote', 17, 15.5300000000, 76.8700000000, NULL, 0), (997, 'Seoni-Malwa', 20, 22.4500000000, 77.4600000000, NULL, 0), (998, 'Shirdi', 21, 19.7700000000, 74.4800000000, NULL, 0), (999, '<NAME>', 34, -29.8500000000, 31.0200000000, NULL, 0), (1000, 'Terdal', 17, 16.4900000000, 75.0500000000, NULL, 0), (1001, 'Raver', 21, 21.2500000000, 76.0300000000, NULL, 0), (1002, 'Tirupathur', 31, 12.5000000000, 78.5700000000, NULL, 0), (1003, 'Taraori', 13, 29.7900000000, 76.9200000000, NULL, 0), (1004, 'Mukhed', 21, 18.7000000000, 77.3600000000, NULL, 0), (1005, 'Manachanallur', 31, 10.9100000000, 78.6900000000, NULL, 0), (1006, 'Rehli', 20, 23.6300000000, 79.0600000000, NULL, 0), (1007, 'Sanchore', 29, 24.7500000000, 71.7700000000, NULL, 0), (1008, 'Rajura', 21, 19.7700000000, 79.3600000000, NULL, 0), (1009, 'Piro', 5, 25.3200000000, 84.4000000000, NULL, 0), (1010, 'Mudabidri', 17, 13.0600000000, 74.9900000000, NULL, 0), (1011, '<NAME>', 21, 16.8300000000, 74.3100000000, NULL, 0), (1012, 'Nagar', 29, 27.4300000000, 77.1000000000, NULL, 0), (1013, 'Vijapur', 12, 23.5700000000, 72.7500000000, NULL, 0), (1014, 'Viswanatham', 31, 9.4200000000, 77.7900000000, NULL, 0), (1015, 'Polur', 31, 12.5000000000, 79.1300000000, NULL, 0), (1016, 'Panagudi', 31, 8.3100000000, 77.5600000000, NULL, 0), (1017, 'Manawar', 20, 22.2300000000, 75.0800000000, NULL, 0), (1018, 'Tehri', 35, 30.3800000000, 78.4800000000, NULL, 0), (1019, 'Samdhan', 34, 27.1300000000, 79.7000000000, NULL, 0), (1020, 'Pardi', 12, 20.5200000000, 72.9500000000, NULL, 0), (1021, 'Rahatgarh', 20, 23.7900000000, 78.3900000000, NULL, 0), (1022, 'Panagar', 20, 23.2900000000, 79.9900000000, NULL, 0), (1023, 'Uthiramerur', 31, 12.6100000000, 79.7500000000, NULL, 0), (1024, 'Tirora', 21, 21.4000000000, 79.9300000000, NULL, 0), (1025, 'Rangia', 4, 26.4700000000, 91.6300000000, NULL, 0), (1026, 'Sahjanwa', 34, 26.7500000000, 83.2100000000, NULL, 0), (1027, '<NAME>', 20, 21.7600000000, 80.0500000000, NULL, 0), (1028, 'Magadi', 17, 12.9700000000, 77.2300000000, NULL, 0), (1029, '<NAME>)', 29, 23.8500000000, 76.7300000000, NULL, 0), (1030, 'Rafiganj', 5, 24.8100000000, 84.6300000000, NULL, 0), (1031, 'Tarana', 20, -33.5200000000, 149.9000000000, NULL, 0), (1032, '<NAME>', 34, 29.8000000000, 77.4500000000, NULL, 0), (1033, 'Sheoganj', 29, 25.1400000000, 73.0600000000, NULL, 0), (1034, 'Raikot', 28, 30.6500000000, 75.6000000000, NULL, 0), (1035, 'Pauri', 35, 30.1500000000, 78.7800000000, NULL, 0), (1036, 'Sumerpur', 34, 26.5100000000, 79.9400000000, NULL, 0), (1037, 'Navalgund', 17, 15.5600000000, 75.3500000000, NULL, 0), (1038, 'Shahganj', 34, 24.7000000000, 82.9500000000, NULL, 0), (1039, 'Marhaura', 5, 25.9700000000, 84.8700000000, NULL, 0), (1040, 'Tulsipur', 34, 27.5200000000, 82.4100000000, NULL, 0), (1041, 'Sadri', 29, 25.1300000000, 73.4500000000, NULL, 0), (1042, 'Thiruthuraipoondi', 31, 10.5200000000, 79.6300000000, NULL, 0), (1043, 'Shiggaon', 17, 14.9900000000, 75.2200000000, NULL, 0), (1044, 'Pallapatti', 31, 10.7100000000, 77.8900000000, NULL, 0), (1045, 'Mahendragarh', 13, 28.2800000000, 76.1500000000, NULL, 0), (1046, 'Sausar', 20, 21.6500000000, 78.7900000000, NULL, 0), (1047, 'Ponneri', 31, 13.3200000000, 80.2000000000, NULL, 0), (1048, 'Mahad', 21, 18.0800000000, 73.4200000000, NULL, 0), (1049, 'Lohardaga', 16, 23.4300000000, 84.6800000000, NULL, 0), (1050, 'Tirwaganj', 34, 26.9500000000, 79.7800000000, NULL, 0), (1051, 'Margherita', 4, 27.2900000000, 95.6600000000, NULL, 0), (1052, 'Sundarnagar', 14, 31.5300000000, 76.8900000000, NULL, 0), (1053, 'Rajgarh', 20, 24.7300000000, 79.9500000000, NULL, 0), (1054, 'Mangaldoi', 4, 26.4400000000, 92.0300000000, NULL, 0), (1055, 'Renigunta', 2, 13.6500000000, 79.5200000000, NULL, 0), (1056, 'Longowal', 28, 30.2000000000, 75.6700000000, NULL, 0), (1057, 'Ratia', 13, 29.6700000000, 75.5700000000, NULL, 0), (1058, 'Lalgudi', 31, 10.8700000000, 78.8300000000, NULL, 0), (1059, 'Shrirangapattana', 17, 12.4200000000, 76.6900000000, NULL, 0), (1060, 'Niwari', 20, 25.3600000000, 78.7900000000, NULL, 0), (1061, 'Natham', 31, 10.2200000000, 78.2300000000, NULL, 0), (1062, 'Unnamalaikadai', 31, 8.3000000000, 77.2300000000, NULL, 0), (1063, '<NAME>', 34, NULL, NULL, NULL, 0), (1064, 'Shamsabad', 32, 17.2500000000, 78.4300000000, NULL, 0), (1065, 'Mirganj', 5, 28.5500000000, 79.2000000000, NULL, 0), (1066, 'Todaraisingh', 29, 26.0200000000, 75.4800000000, NULL, 0), (1067, 'Warhapur', 34, 29.5200000000, 78.5600000000, NULL, 0), (1068, 'Rajam', 2, 18.4500000000, 83.6400000000, NULL, 0), (1069, '<NAME>', 28, 31.6700000000, 75.6300000000, NULL, 0), (1070, 'Lonar', 21, 19.9700000000, 76.5000000000, NULL, 0), (1071, 'Powayan', 34, 28.0600000000, 80.0900000000, NULL, 0), (1072, 'P.N.Patti', 31, 11.7900000000, 77.8200000000, NULL, 0), (1073, 'Palampur', 14, 32.1200000000, 76.5300000000, NULL, 0), (1074, 'Srisailam Project (Right Flank Colony) Township', 2, 16.0800000000, 78.8900000000, NULL, 0), (1075, 'Sindagi', 17, 16.9100000000, 76.2300000000, NULL, 0), (1076, 'Sandi', 34, 21.4500000000, 82.0600000000, NULL, 0), (1077, 'Vaikom', 18, 9.7700000000, 76.4000000000, NULL, 0), (1078, 'Malda', 36, 25.0300000000, 88.1500000000, NULL, 0), (1079, 'Tharangambadi', 31, 11.0200000000, 79.8500000000, NULL, 0), (1080, 'Sakaleshapura', 17, 12.9400000000, 75.7800000000, NULL, 0), (1081, 'Lalganj', 5, 25.8700000000, 85.1800000000, NULL, 0), (1082, 'Malkangiri', 26, 18.1600000000, 81.9500000000, NULL, 0), (1083, 'Rapar', 12, 23.5700000000, 70.6400000000, NULL, 0), (1084, 'Mauganj', 20, 24.6600000000, 81.8800000000, NULL, 0), (1085, 'Todabhim', 29, 26.9100000000, 76.8100000000, NULL, 0), (1086, 'Srinivaspur', 17, 13.3300000000, 78.2200000000, NULL, 0), (1087, 'Murliganj', 5, 25.9000000000, 86.9900000000, NULL, 0), (1088, 'Reengus', 29, 27.3600000000, 75.5600000000, NULL, 0), (1089, 'Sawantwadi', 21, 15.9000000000, 73.8200000000, NULL, 0), (1090, 'Tittakudi', 31, 11.4000000000, 79.1100000000, NULL, 0), (1091, 'Lilong', 22, 24.7100000000, 93.9300000000, NULL, 0), (1092, 'Rajaldesar', 29, 28.0300000000, 74.4700000000, NULL, 0), (1093, 'Pathardi', 21, 19.1700000000, 75.1700000000, NULL, 0), (1094, 'Achhnera', 34, 27.1700000000, 77.7500000000, NULL, 0), (1095, 'Pacode', 31, 8.3300000000, 77.2200000000, NULL, 0), (1096, 'Naraura', 34, 28.1900000000, 78.3800000000, NULL, 0), (1097, 'Nakur', 34, 29.9100000000, 77.3000000000, NULL, 0), (1098, 'Palai', 18, 25.8800000000, 75.9500000000, NULL, 0), (1099, 'Morinda', 28, 30.7800000000, 76.4900000000, NULL, 0), (1100, 'Manasa', 20, 24.4700000000, 75.1400000000, NULL, 0), (1101, 'Nainpur', 20, 22.4200000000, 80.1000000000, NULL, 0), (1102, 'Sahaspur', 34, 30.3900000000, 77.8000000000, NULL, 0), (1103, 'Pauni', 21, 20.7900000000, 79.6300000000, NULL, 0), (1104, 'Prithvipur', 20, 25.2000000000, 78.7500000000, NULL, 0), (1105, 'Ramtek', 21, 21.3900000000, 79.3200000000, NULL, 0), (1106, 'Silapathar', 4, 27.5900000000, 94.7200000000, NULL, 0), (1107, 'Songadh', 12, 21.1600000000, 73.5600000000, NULL, 0), (1108, 'Safipur', 34, 26.7300000000, 80.3400000000, NULL, 0), (1109, 'Sohagpur', 20, 22.7000000000, 78.1900000000, NULL, 0), (1110, 'Mul', 21, 20.0600000000, 79.6700000000, NULL, 0), (1111, 'Sadulshahar', 29, 29.9000000000, 74.1700000000, NULL, 0), (1112, 'Phillaur', 28, 31.0300000000, 75.7800000000, NULL, 0), (1113, 'Sambhar', 29, 26.9200000000, 75.2000000000, NULL, 0), (1114, 'Prantij', 29, 23.4300000000, 72.8500000000, NULL, 0), (1115, 'Nagla', 35, 30.6300000000, 76.8500000000, NULL, 0), (1116, 'Pattran', 28, 29.9500000000, 76.0500000000, NULL, 0), (1117, '<NAME>', 29, 24.5900000000, 72.7100000000, NULL, 0), (1118, 'Reoti', 34, 25.8400000000, 84.3700000000, NULL, 0), (1119, '<NAME>', 16, 23.7600000000, 85.8600000000, NULL, 0), (1120, 'Panchla', 36, 22.5400000000, 88.1300000000, NULL, 0), (1121, 'Sitarganj', 35, 28.9300000000, 79.7000000000, NULL, 0), (1122, 'Pasighat', 3, 28.0600000000, 95.3200000000, NULL, 0), (1123, 'Motipur', 5, 26.2500000000, 85.1600000000, NULL, 0), (1124, '<NAME>', 31, 11.4400000000, 76.4600000000, NULL, 0), (1125, 'Raghunathpur', 36, 23.5300000000, 86.6600000000, NULL, 0), (1126, 'Suriyampalayam', 31, 11.3900000000, 77.6800000000, NULL, 0), (1127, 'Qadian', 28, 31.8200000000, 75.3900000000, NULL, 0), (1128, 'Rairangpur', 26, 22.2700000000, 86.1700000000, NULL, 0), (1129, 'Silvassa', 12, 20.2700000000, 73.0200000000, NULL, 0), (1130, 'Nowrozabad (Khodargama)', 20, 23.3500000000, 80.9800000000, NULL, 0), (1131, 'Mangrol', 29, 21.1200000000, 70.1200000000, NULL, 0), (1132, 'Soyagaon', 21, 20.5900000000, 75.6100000000, NULL, 0), (1133, 'Sujanpur', 28, 31.8300000000, 76.5000000000, NULL, 0), (1134, 'Manihari', 5, 25.3400000000, 87.6200000000, NULL, 0), (1135, 'Sikanderpur', 34, 26.0300000000, 84.0300000000, NULL, 0), (1136, 'Mangalvedhe', 21, 17.5100000000, 75.4500000000, NULL, 0), (1137, 'Phulera', 29, 26.8700000000, 75.2400000000, NULL, 0), (1138, 'Ron', 17, 15.6700000000, 75.7300000000, NULL, 0), (1139, 'Sholavandan', 31, 10.0200000000, 77.9700000000, NULL, 0), (1140, 'Saidpur', 34, 28.6200000000, 77.9200000000, NULL, 0), (1141, 'Shamgarh', 20, 24.1800000000, 75.6300000000, NULL, 0), (1142, 'Thammampatti', 31, 11.4400000000, 78.4800000000, NULL, 0), (1143, 'Maharajpur', 20, 26.3200000000, 80.4600000000, NULL, 0), (1144, 'Multai', 20, 21.7700000000, 78.2500000000, NULL, 0), (1145, 'Mukerian', 28, 31.9500000000, 75.6200000000, NULL, 0), (1146, 'Sirsi', 34, 14.6200000000, 74.8500000000, NULL, 0), (1147, 'Purwa', 34, 26.4500000000, 80.7700000000, NULL, 0), (1148, 'Sheohar', 5, 26.5100000000, 85.2900000000, NULL, 0), (1149, 'Namagiripettai', 31, 11.4500000000, 78.2600000000, NULL, 0), (1150, 'Parasi', 34, 27.5200000000, 83.6700000000, NULL, 0), (1151, 'Lathi', 12, 21.7200000000, 71.3900000000, NULL, 0), (1152, 'Lalganj', 34, 25.8700000000, 85.1800000000, NULL, 0), (1153, 'Narkhed', 21, 21.4600000000, 78.5200000000, NULL, 0), (1154, 'Mathabhanga', 36, 26.3400000000, 89.2100000000, NULL, 0), (1155, 'Shendurjana', 21, 21.5200000000, 78.2800000000, NULL, 0), (1156, 'Peravurani', 31, 10.2800000000, 79.2000000000, NULL, 0), (1157, 'Mariani', 4, 26.6700000000, 94.3300000000, NULL, 0), (1158, 'Phulpur', 34, 25.5500000000, 82.0800000000, NULL, 0), (1159, 'Rania', 13, 29.5300000000, 74.8300000000, NULL, 0), (1160, 'Pali', 20, 25.7700000000, 73.3300000000, NULL, 0), (1161, 'Pachore', 20, 23.7100000000, 76.7300000000, NULL, 0), (1162, 'Parangipettai', 31, 11.5000000000, 79.7500000000, NULL, 0), (1163, 'Pudupattinam', 31, 12.5000000000, 80.1400000000, NULL, 0), (1164, 'Panniyannur', 18, 11.7200000000, 75.5500000000, NULL, 0), (1165, 'Maharajganj', 5, 27.1300000000, 83.5700000000, NULL, 0), (1166, 'Rau', 20, 22.6400000000, 75.8000000000, NULL, 0), (1167, 'Monoharpur', 36, 22.6800000000, 88.2800000000, NULL, 0), (1168, 'Mandawa', 29, 28.0500000000, 75.1500000000, NULL, 0), (1169, 'Marigaon', 4, 26.2600000000, 92.2600000000, NULL, 0), (1170, 'Pallikonda', 31, 12.9000000000, 78.9400000000, NULL, 0), (1171, 'Pindwara', 29, 24.7900000000, 73.0500000000, NULL, 0), (1172, 'Shishgarh', 34, 28.7200000000, 79.3100000000, NULL, 0), (1173, 'Patur', 21, 20.4500000000, 76.9300000000, NULL, 0), (1174, '<NAME>', 22, 24.5900000000, 93.8700000000, NULL, 0), (1175, 'Mhowgaon', 20, 22.5700000000, 75.7300000000, NULL, 0), (1176, 'Guruvayoor', 18, 10.5900000000, 76.0300000000, NULL, 0), (1177, 'Mhaswad', 21, 17.6300000000, 74.7800000000, NULL, 0), (1178, 'Sahawar', 34, 27.7900000000, 78.8300000000, NULL, 0), (1179, 'Sivagiri', 31, 11.1200000000, 77.8000000000, NULL, 0), (1180, 'Mundargi', 17, 15.2200000000, 75.9000000000, NULL, 0), (1181, 'Punjaipugalur', 31, 11.0600000000, 77.9900000000, NULL, 0), (1182, 'Kailasahar', 33, 24.3200000000, 92.0100000000, NULL, 0), (1183, 'Samthar', 34, 25.8400000000, 78.9000000000, NULL, 0), (1184, 'Sakthi', 7, 22.0300000000, 82.9700000000, NULL, 0), (1185, 'Sadalagi', 17, 16.5500000000, 74.5300000000, NULL, 0), (1186, 'Silao', 5, 25.0800000000, 85.4200000000, NULL, 0), (1187, 'Mandalgarh', 29, 25.1900000000, 75.0900000000, NULL, 0), (1188, 'Loha', 21, 18.9400000000, 77.1100000000, NULL, 0), (1189, 'Pukhrayan', 34, 26.2200000000, 79.8300000000, NULL, 0), (1190, 'Padmanabhapuram', 31, 8.2400000000, 77.3300000000, NULL, 0), (1191, 'Belonia', 33, 23.2500000000, 91.4500000000, NULL, 0), (1192, 'Saiha', 24, 22.4800000000, 92.9700000000, NULL, 0), (1193, 'Srirampore', 36, 22.7400000000, 88.3300000000, NULL, 0), (1194, 'Talwara', 28, 31.9500000000, 75.8700000000, NULL, 0), (1195, 'Puthuppally', 18, 9.5600000000, 76.5600000000, NULL, 0), (1196, 'Khowai', 33, 24.0600000000, 91.6000000000, NULL, 0), (1197, 'Vijaypur', 20, 16.8300000000, 75.7100000000, NULL, 0), (1198, 'Takhatgarh', 29, 25.3200000000, 73.0000000000, NULL, 0), (1199, 'Thirupuvanam', 31, 10.9800000000, 79.4300000000, NULL, 0), (1200, 'Adra', 36, 23.4900000000, 86.6700000000, NULL, 0), (1201, 'Piriyapatna', 17, 12.3300000000, 76.0900000000, NULL, 0), (1202, 'Obra', 34, 24.4200000000, 82.9800000000, NULL, 0), (1203, 'Adalaj', 12, 23.1700000000, 72.5800000000, NULL, 0), (1204, 'Nandgaon', 21, 20.3000000000, 74.6600000000, NULL, 0), (1205, 'Barh', 5, 25.4800000000, 85.7200000000, NULL, 0), (1206, 'Chhapra', 12, 25.7700000000, 84.7400000000, NULL, 0), (1207, 'Panamattom', 18, 9.6000000000, 76.7400000000, NULL, 0), (1208, 'Niwai', 34, 26.3600000000, 75.9200000000, NULL, 0), (1209, 'Bageshwar', 35, 29.8500000000, 79.7700000000, NULL, 0), (1210, 'Tarbha', 26, 20.7300000000, 83.6700000000, NULL, 0), (1211, 'Adyar', 17, 13.0000000000, 80.2600000000, NULL, 0), (1212, 'Narsinghgarh', 20, 23.7100000000, 77.0800000000, NULL, 0), (1213, 'Warud', 21, 21.4700000000, 78.2600000000, NULL, 0), (1214, 'Asarganj', 5, 25.1400000000, 86.6800000000, NULL, 0), (1215, 'Sarsod', 13, 29.3200000000, 75.8300000000, NULL, 0), (1216, 'NALLASOPARA', 21, 19.4100000000, 72.7900000000, NULL, 0), (1217, 'Bidar', 17, 17.9000000000, 77.5500000000, NULL, 0), (1218, 'Gulbarga', 17, 17.3300000000, 76.8300000000, 'GR', 1), (1219, 'Gundlupet', 17, 11.8000000000, 76.6800000000, NULL, 0), (1220, 'Hassan', 17, 13.0000000000, 76.1000000000, NULL, 0), (1221, 'Miryalguda', 32, 16.8700000000, 79.5800000000, NULL, 0), (1222, 'Rajapalyam', 2, 9.4600000000, 77.5200000000, NULL, 0), (1223, 'Bagalkot', 17, 16.1800000000, 75.7000000000, NULL, 0), (1224, 'Anekal', 17, 12.7000000000, 77.7000000000, NULL, 0), (1225, 'Bantwal', 17, 12.8800000000, 75.0200000000, NULL, 0), (1226, 'Belgaum', 17, 15.8700000000, 74.5000000000, 'BLG', 1), (1227, 'Chitradurga', 17, 14.2300000000, 76.4000000000, NULL, 0), (1228, 'Kengeri', 17, 12.9000000000, 77.4800000000, NULL, 0), (1229, 'Kundapur', 17, 13.6300000000, 74.7000000000, NULL, 0), (1230, 'Shimoga', 17, 13.9200000000, 75.5700000000, 'SIGA', 1), (1231, 'Sullia', 17, 12.5500000000, 75.3900000000, NULL, 0), (1232, 'Thirthahalli', 17, 13.6800000000, 75.2400000000, NULL, 0), (1233, 'Ujire', 17, 12.9900000000, 75.3200000000, NULL, 0), (1234, 'Allepey', 18, 9.4900000000, 76.3300000000, NULL, 0), (1235, 'Alwaye', 18, 10.1100000000, 76.3600000000, NULL, 0), (1236, 'Calicut', 18, 11.2500000000, 75.7700000000, NULL, 0), (1237, 'AMBALA', 13, 30.3800000000, 76.7800000000, NULL, 0), (1238, 'ATHUR', 31, 12.7300000000, 79.9400000000, NULL, 0), (1239, 'BODINAYAKANUR', 31, 10.0200000000, 77.3500000000, NULL, 0), (1240, 'Chandrapur', 21, 19.9500000000, 79.3000000000, NULL, 0), (1241, 'Chengalpattu', 31, 12.7000000000, 79.9800000000, NULL, 0), (1242, 'ERNAKULAM', 18, 9.9800000000, 76.2800000000, NULL, 0), (1243, 'Hospet', 17, 15.2695400000, 76.3871000000, 'HPT', 1), (1244, 'Dharwad', 17, 15.4589049000, 75.0067057000, 'DHW', 1); -- -------------------------------------------------------- -- -- Table structure for table `ci_sessions` -- CREATE TABLE `ci_sessions` ( `id` varchar(128) NOT NULL, `ip_address` varchar(45) NOT NULL, `timestamp` int(10) UNSIGNED NOT NULL DEFAULT 0, `data` blob NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `ci_sessions` -- INSERT INTO `ci_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('p4ag0ij5qcpd6oeme0svtltfa4iio8h7', '::1', 1617796665, 0x5f5f63695f6c6173745f726567656e65726174657c693a313631373739363636353b6964656e746974797c733a32323a22737570657261646d696e40646f63746f7273732e696e223b656d61696c7c733a32323a22737570657261646d696e40646f63746f7273732e696e223b757365725f69647c733a313a2231223b6f6c645f6c6173745f6c6f67696e7c733a31303a2231363137343330343632223b6c6173745f636865636b7c693a313631373739363636353b), ('71kdngp292t17bgn664gtp47punv94cf', '::1', 1617797757, 0x5f5f63695f6c6173745f726567656e65726174657c693a313631373739363636353b6964656e746974797c733a32323a22737570657261646d696e40646f63746f7273732e696e223b656d61696c7c733a32323a22737570657261646d696e40646f63746f7273732e696e223b757365725f69647c733a313a2231223b6f6c645f6c6173745f6c6f67696e7c733a31303a2231363137343330343632223b6c6173745f636865636b7c693a313631373739363636353b757365726e616d657c733a31333a2261646d696e6973747261746f72223b6973737570657261646d696e7c623a313b757365725f726f6c65737c733a31313a2253757065722041646d696e223b757365725f6163636f756e745f726f6c65737c4e3b656e63727970745f69647c4e3b70726f66696c655f7069635f706174687c733a34303a226173736574732f75706c6f6164732f656d706c6f796565732f313735315f6661636532382e6a7067223b6e616d657c733a31313a2253757065722041646d696e223b), ('puvimtgeflv57ps4n11qgr27na4e9092', '::1', 1617793826, 0x5f5f63695f6c6173745f726567656e65726174657c693a313631373739323437363b6964656e746974797c733a31363a2276656e6b617440646f63746f722e696e223b656d61696c7c733a31363a2276656e6b617440646f63746f722e696e223b757365725f69647c733a323a223134223b6f6c645f6c6173745f6c6f67696e7c733a31303a2231363137373837393437223b6c6173745f636865636b7c693a313631373738383835373b757365726e616d657c733a383a224444343430383637223b6973737570657261646d696e7c623a303b757365725f726f6c65737c733a363a22446f63746f72223b757365725f6163636f756e745f726f6c65737c4e3b656e63727970745f69647c733a323a227832223b70726f66696c655f7069635f706174687c733a33393a226173736574732f75706c6f6164732f656d706c6f796565732f32363439325f666163652e706e67223b6e616d657c733a31323a2256656e6b6174205265646479223b617574685f6163636f756e745f69647c733a313a2232223b64626e616d65317c733a32303a22646f63746f7273735f6b696d73685f3432393734223b); -- -------------------------------------------------------- -- -- Table structure for table `custom_data` -- CREATE TABLE `custom_data` ( `id` int(11) NOT NULL, `content_type` varchar(100) DEFAULT NULL, `content` text DEFAULT NULL, `type` varchar(100) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `custom_data` -- INSERT INTO `custom_data` (`id`, `content_type`, `content`, `type`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 'NewRegistration', '\r\n<h1> Dear, {Name} </h1>\r\n<p>Thank you for the registation in Doctorss App</p>\r\n<p>User Id: {User_Id}</p>\r\n<p>Email: {Email_Id}</p>\r\n<p>Password: {Password}</p>\r\n<p>Click on the link below URL of doctorss app login.</p>\r\n<p><a href=\"{URL}\">Clike Here</a></p><br>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctors Support Team</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (2, 'PatientAppointmentBooking', '<h1> Dear, {Name} </h1>\r\n<p>Thank you for booking an Appointment with {Doctor_name} on {Date} at {Time} </p>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctors App Support Team</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (3, 'DoctorAppointmentBooking', '<h1> Dear, {Name} </h1>\r\n<p>Appointment For you with {Patient_name} on {Date} at {Time} </p>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctorsapp Support Team</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (4, 'PatientAppointmentConfimred', '<h1> Dear, {Name} </h1>\r\n<p>Your Appointment Confimred with {Doctor_name} on {Date} at {Time} </p>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctors App Support Team</p>', 'email_template', NULL, 0, '2021-03-29 09:18:19', NULL, NULL, NULL), (5, 'DoctorAppointmentConfirmed', '<h1> Dear, {Name} </h1>\r\n<p>Appointment Confirmed you with {Patient_name} on {Date} at {Time} </p>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctorsapp Support Team</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (6, 'PatientAppointmentCancelled', '<h1> Dear, {Name} </h1>\r\n<p>Your Appointment Cancelled with {Doctor_name} on {Date} at {Time} </p>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctors App Support Team</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (7, 'DoctorAppointmentCancelled', '<h1> Dear, {Name} </h1>\r\n<p>Appointment Cancelled you with {Patient_name} on {Date} at {Time} </p>\r\n<p>Our support team will help you further assistance. Thank you sir, Doctorsapp Support Team</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (8, 'PasswordReset', '<h1> Hi,{Name} </h1>\r\n<p> One last step is required </p>\r\n<p>Please click on the following link to forgot password your account</p>\r\n<p><a href=\"{URL}\">Click Here</a></p><br>\r\n\r\n<p>Thank You</p>', 'email_template', NULL, 0, '2021-03-25 08:53:08', NULL, NULL, NULL), (9, 'BillingReceipt', '<h1> Hi,{Name} </h1>\r\n<p>This is billing invoice </p>\r\n<p>Please click on the following attached file</p>\r\n<p>Thank You</p>', 'email_template', NULL, 0, '2021-03-30 07:09:30', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `groups` -- CREATE TABLE `groups` ( `id` mediumint(8) UNSIGNED NOT NULL, `name` varchar(20) NOT NULL, `description` varchar(100) NOT NULL, `designation` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `groups` -- INSERT INTO `groups` (`id`, `name`, `description`, `designation`) VALUES (1, 'Super Admin', 'Super Administrator', 'Super Administrator'), (2, 'Admin', 'Administrator', 'Administrator'), (3, 'MD', 'Managing Director', 'Managing Director'), (4, 'Doctor', 'Doctor', 'Doctor'), (5, 'Receptionist', 'Receptionist', 'Receptionist'), (6, 'Patient', 'Patient', 'Patient'), (7, 'Laboratory', 'Laboratory', 'Laboratory'), (8, 'Billing', 'Billing', 'Billing'); -- -------------------------------------------------------- -- -- Table structure for table `login_attempts` -- CREATE TABLE `login_attempts` ( `id` int(11) UNSIGNED NOT NULL, `ip_address` varchar(45) NOT NULL, `login` varchar(100) NOT NULL, `time` int(11) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `login_attempts` -- INSERT INTO `login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (5, '::1', '<EMAIL>', 1617776105); -- -------------------------------------------------------- -- -- Table structure for table `packages` -- CREATE TABLE `packages` ( `id` int(11) NOT NULL, `package_name` varchar(100) NOT NULL, `package_duration` varchar(150) DEFAULT NULL, `package_status` int(11) NOT NULL, `package_amount` decimal(10,2) NOT NULL, `created_ip` varchar(100) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(100) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `packages` -- INSERT INTO `packages` (`id`, `package_name`, `package_duration`, `package_status`, `package_amount`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 'Ugadhi Pack', '3 Months', 1, '15000.00', '::1', 1, '2021-04-01 06:41:02', NULL, NULL, NULL), (2, 'Summer Pack', '6 Months', 1, '25000.00', '::1', 1, '2021-04-01 11:28:45', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `patient_details` -- CREATE TABLE `patient_details` ( `id` int(11) NOT NULL, `user_id` int(11) UNSIGNED NOT NULL, `height` varchar(11) DEFAULT NULL, `weight` varchar(11) DEFAULT NULL, `blood_group` varchar(111) DEFAULT NULL, `blood_prusser` varchar(111) DEFAULT NULL, `pulse` varchar(111) DEFAULT NULL, `allergy` varchar(111) DEFAULT NULL, `diet` varchar(111) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `patient_details` -- INSERT INTO `patient_details` (`id`, `user_id`, `height`, `weight`, `blood_group`, `blood_prusser`, `pulse`, `allergy`, `diet`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 6, '156', '56', 'A-', '120', '96', 'no', 'no', '::1', 2, '2021-04-01 13:14:07', NULL, NULL, NULL), (2, 7, '156', '65', 'B-', '120', '96', '', '', '::1', 2, '2021-04-01 13:16:38', NULL, NULL, NULL), (3, 16, '165', '56', 'B+', '120', '90', 'no', 'on', '::1', 15, '2021-04-07 11:43:34', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `patient_documents` -- CREATE TABLE `patient_documents` ( `id` int(11) NOT NULL, `patient_id` int(100) DEFAULT NULL, `document_path` varchar(500) DEFAULT NULL, `document_type` varchar(100) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- -------------------------------------------------------- -- -- Table structure for table `payment_mode` -- CREATE TABLE `payment_mode` ( `id` int(11) NOT NULL, `paymentmode_name` varchar(111) NOT NULL, `created_ip` varchar(111) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(111) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `payment_mode` -- INSERT INTO `payment_mode` (`id`, `paymentmode_name`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 'Cash', '::1', 2, '2020-09-16 11:10:09', NULL, NULL, NULL), (2, 'Cheque', '::1', 2, '2020-09-16 11:10:24', NULL, NULL, NULL), (3, 'UPI', '::1', 2, '2020-09-16 11:10:41', NULL, NULL, NULL), (4, 'RazorPay', '::1', 2, '2020-09-16 11:10:56', '192.168.3.11', 1, '2020-09-28 11:08:50'), (5, 'NEFT', NULL, NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `payment_transactions` -- CREATE TABLE `payment_transactions` ( `id` int(11) NOT NULL, `subscription_id` int(11) DEFAULT NULL, `order_id` varchar(30) DEFAULT NULL, `razorpay_order_id` varchar(100) DEFAULT NULL, `razorpay_payment_id` varchar(100) DEFAULT NULL, `razorpay_signature` varchar(100) DEFAULT NULL, `transaction_amount` decimal(10,2) DEFAULT NULL, `transaction_status` varchar(50) DEFAULT NULL, `payment_mode_id` int(11) DEFAULT NULL, `upi` varchar(20) DEFAULT NULL, `phonepay` varchar(20) DEFAULT NULL, `amazonpay` varchar(20) DEFAULT NULL, `googlepay` varchar(20) DEFAULT NULL, `paytm` varchar(20) DEFAULT NULL, `cheque_number` varchar(15) DEFAULT NULL, `cheque_issue_date` date DEFAULT NULL, `cheque_bankname` varchar(50) DEFAULT NULL, `cheque_photo` varchar(512) DEFAULT NULL, `cash_amount` decimal(10,2) DEFAULT NULL, `cash_personname` varchar(100) DEFAULT NULL, `neft_number` varchar(120) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `payment_transactions` -- INSERT INTO `payment_transactions` (`id`, `subscription_id`, `order_id`, `razorpay_order_id`, `razorpay_payment_id`, `razorpay_signature`, `transaction_amount`, `transaction_status`, `payment_mode_id`, `upi`, `phonepay`, `amazonpay`, `googlepay`, `paytm`, `cheque_number`, `cheque_issue_date`, `cheque_bankname`, `cheque_photo`, `cash_amount`, `cash_personname`, `neft_number`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 1, 'BB_CASH_1617275015', NULL, NULL, NULL, '17700.00', 'SUCCESS', 1, '', '0', '0', '0', NULL, '0', NULL, '', NULL, '17700.00', 'Harish', '', '::1', 1, '2021-04-01 13:03:35', NULL, NULL, NULL), (2, 2, 'BB_CASH_1617275057', NULL, NULL, NULL, '29500.00', 'SUCCESS', 1, '', '0', '0', '0', NULL, '0', NULL, '', NULL, '29500.00', '<NAME>', '', '::1', 1, '2021-04-01 13:04:17', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `promocodes` -- CREATE TABLE `promocodes` ( `id` int(11) NOT NULL, `coupon_code` varchar(111) NOT NULL, `discount_amount` varchar(11) DEFAULT NULL, `discount_percentage` varchar(11) DEFAULT NULL, `valid_form` date NOT NULL, `valid_to` date NOT NULL, `created_date` datetime DEFAULT NULL, `created_ip` varchar(111) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(111) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `refer_a_doctor` -- CREATE TABLE `refer_a_doctor` ( `id` int(11) NOT NULL, `refered_by_doctor_id` int(11) NOT NULL, `refered_to_doctor_id` varchar(111) NOT NULL, `refered_patient_id` int(11) NOT NULL, `created_ip` varchar(111) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(111) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `refer_a_doctor` -- INSERT INTO `refer_a_doctor` (`id`, `refered_by_doctor_id`, `refered_to_doctor_id`, `refered_patient_id`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 4, '14', 6, '::1', 4, '2021-04-07 12:46:45', NULL, NULL, NULL), (2, 14, '4', 16, '::1', 14, '2021-04-07 12:59:06', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `specializations` -- CREATE TABLE `specializations` ( `id` int(11) NOT NULL, `specialization` varchar(111) NOT NULL, `created_ip` varchar(100) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(100) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `specializations` -- INSERT INTO `specializations` (`id`, `specialization`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 'Cardiologist', '::1', 1, '2021-04-01 06:37:20', NULL, NULL, NULL), (2, 'Neurologist', '::1', 1, '2021-04-01 06:37:58', NULL, NULL, NULL), (3, 'Ophthalmologist', '::1', 1, '2021-04-01 06:38:12', '::1', 1, '2021-04-01 06:38:23'), (4, 'Physiotherapist', '::1', 1, '2021-04-01 06:39:07', NULL, NULL, NULL), (5, 'Orthopedic', '::1', 1, '2021-04-01 06:39:30', '::1', 1, '2021-04-01 06:39:41'); -- -------------------------------------------------------- -- -- Table structure for table `states` -- CREATE TABLE `states` ( `state_id` int(11) NOT NULL, `state_name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `states` -- INSERT INTO `states` (`state_id`, `state_name`) VALUES (1, 'Andaman & Nicobar Islands'), (2, 'Andhra Pradesh'), (3, 'Arunachal Pradesh'), (4, 'Assam'), (5, 'Bihar'), (6, 'Chandigarh'), (7, 'Chattisgarh'), (8, 'Dadra & Nagar Haveli'), (9, 'Daman & Diu'), (10, 'Delhi'), (11, 'Goa'), (12, 'Gujarat'), (13, 'Haryana'), (14, 'Himachal Pradesh'), (15, 'Jammu & Kashmir'), (16, 'Jharkhand'), (17, 'Karnataka'), (18, 'Kerala'), (19, 'Lakshadweep'), (20, 'Madhya Pradesh'), (21, 'Maharashtra'), (22, 'Manipur'), (23, 'Meghalaya'), (24, 'Mizoram'), (25, 'Nagaland'), (26, 'Odisha'), (27, 'Poducherry'), (28, 'Punjab'), (29, 'Rajasthan'), (30, 'Sikkim'), (31, 'Tamil Nadu'), (32, 'Telangana'), (33, 'Tripura'), (34, 'Uttar Pradesh'), (35, 'Uttarakhand'), (36, 'West Bengal'); -- -------------------------------------------------------- -- -- Table structure for table `subscriptions_packages` -- CREATE TABLE `subscriptions_packages` ( `id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `package_id` int(11) NOT NULL, `subscription_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `subscriptions_packages` -- INSERT INTO `subscriptions_packages` (`id`, `account_id`, `package_id`, `subscription_id`) VALUES (1, 1, 1, 1), (2, 2, 2, 2), (3, 1, 1, 1), (4, 2, 2, 2); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) UNSIGNED NOT NULL, `ip_address` varchar(45) NOT NULL, `username` varchar(100) DEFAULT NULL, `password` varchar(255) NOT NULL, `email` varchar(254) NOT NULL, `activation_selector` varchar(255) DEFAULT NULL, `activation_code` varchar(255) DEFAULT NULL, `forgotten_password_selector` varchar(255) DEFAULT NULL, `forgotten_password_code` varchar(255) DEFAULT NULL, `forgotten_password_time` int(11) UNSIGNED DEFAULT NULL, `remember_selector` varchar(255) DEFAULT NULL, `remember_code` varchar(255) DEFAULT NULL, `created_on` int(11) UNSIGNED NOT NULL, `last_login` int(11) UNSIGNED DEFAULT NULL, `active` tinyint(1) UNSIGNED DEFAULT NULL, `first_name` varchar(50) DEFAULT NULL, `last_name` varchar(50) DEFAULT NULL, `company` varchar(100) DEFAULT NULL, `phone` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `ip_address`, `username`, `password`, `email`, `activation_selector`, `activation_code`, `forgotten_password_selector`, `forgotten_password_code`, `forgotten_password_time`, `remember_selector`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`) VALUES (1, '127.0.0.1', 'administrator', <PASSWORD>', '<EMAIL>', NULL, '', NULL, NULL, NULL, NULL, NULL, 1268889823, 1617796665, 1, 'Admin', 'istrator', 'ADMIN', '0'), (2, '::1', 'DD279296', '$2y$10$/GriVKXsByM2FdkNz3atiO9iLzgdLvI9jM0Tbza3UOHWCTygcnyU2', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617274807, 1617711845, 1, NULL, NULL, NULL, NULL), (3, '::1', 'DD233470', '$2y$10$B6iOMibhk9n1IFMuzB0i4.taKYsLblN9ZrA99Y1vQSN3Z2Ghyc3NO', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617274976, 1617776111, 1, NULL, NULL, NULL, NULL), (4, '::1', 'DD435904', '$2y$10$a9t4OevtcHfW12ZA6idkzeVPsTesca7BM6dogK.iBKDqrWTYdc5l2', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617275284, 1617769035, 1, 'Swamy', 'Reddy', NULL, NULL), (5, '::1', 'DD439672', '$2y$10$PUEMO419dCveuxzuHHg/2ej1hIqb56NfP/xGeKYFRYPhicEtj5ddy', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617275518, NULL, 1, 'Niranjana', 'Kumar', NULL, NULL), (6, '::1', 'DD663357', '$2y$10$YISDfpWmxrXugiOE50RLcep3A7hqEuywtkcjMvC5gPMDDkWmqEEay', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617275647, 1617342459, 1, 'Sanjay', 'Reddy', NULL, NULL), (7, '::1', 'DD63123', '$2y$10$gr.VfuhroYxTyl.m6/OgquUHahY7U2Qgh4sHn2He9C0ksLj1MtISu', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617275799, 1617787847, 1, 'Navya', 'Pinnela', NULL, NULL), (8, '::1', 'DD586762', '$2y$10$UZ2.pNvAvzA/VsEL7nkpi.gCuCkPA03HkG0TSTXX3C9wPFRAQ5so6', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617275992, 1617689291, 1, NULL, NULL, NULL, NULL), (9, '::1', 'DD57799', '$2y$10$N50kRQXtNH3Lp4Ss3UMYA.oXC27wpkDRQR7vzelr.YJSU7E1vCkU.', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617276270, NULL, 1, NULL, NULL, NULL, NULL), (10, '::1', 'DD882048', '$2y$10$X23IfqvbOOcSlVHFqGXkceDUaQfZge/Swm9y/.Tv02BSWGAlDzVZm', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617276444, 1617709771, 1, NULL, NULL, NULL, NULL), (11, '::1', 'DD82085', '$2y$10$KVsooswYvFpNapL2MfteBun/f7fYX80PbgKVJI/jKeg0G8yDBN376', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617276561, 1617613235, 1, NULL, NULL, NULL, NULL), (12, '::1', 'DD755147', '$2y$10$uFKqzu7KW6UHal4BYCAOhONEXr7XtBoXqb9RlJU.81KYF.kdlFJfu', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617276736, 1617605039, 1, NULL, NULL, NULL, NULL), (13, '::1', 'DD742037', '$2y$10$g5ndF6cJ5w81k8wbCVVayuZz9/oyM5AeLXkijuJhlTd9xiuy0WbHq', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617276879, NULL, 1, NULL, NULL, NULL, NULL), (14, '::1', 'DD440867', '$2y$10$5h8gM8rG3NFgA2W3vey0LuSX7M6ZM0NBiqNT363qpSunSdqVpqw1m', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617776217, 1617788857, 1, 'Venkat', 'Reddy', NULL, NULL), (15, '::1', 'DD542176', '$2y$10$gUzNXNWEikKZTj.rbFsBSe7IIJ8YgoXkn2JrTfFKGgR/u30V09K0a', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617788070, 1617788108, 1, NULL, NULL, NULL, NULL), (16, '::1', 'DD633311', '$2y$10$7/lNAbag5qeQqRd.MnC6eufyttpiLJNddtbE1xt.c/n6q5o5SWrtK', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617788614, NULL, 1, 'Sreenu', 'k', NULL, NULL), (17, '::1', 'DD250915', '$2y$10$1J54cRg01mPgA3zKfNbgXen/aBP9w.wfs4PIoTkyUv5DadWhm9k9C', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1617797533, NULL, 1, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `users_groups` -- CREATE TABLE `users_groups` ( `id` int(11) UNSIGNED NOT NULL, `user_id` int(11) UNSIGNED NOT NULL, `group_id` mediumint(8) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users_groups` -- INSERT INTO `users_groups` (`id`, `user_id`, `group_id`) VALUES (1, 1, 1), (2, 2, 2), (3, 3, 2), (4, 4, 4), (5, 5, 4), (6, 6, 6), (7, 7, 6), (8, 8, 5), (9, 9, 5), (10, 10, 8), (11, 11, 8), (12, 12, 7), (13, 13, 7), (14, 14, 4), (15, 15, 5), (16, 16, 6), (17, 17, 2); -- -------------------------------------------------------- -- -- Table structure for table `user_accounts` -- CREATE TABLE `user_accounts` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `role_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_accounts` -- INSERT INTO `user_accounts` (`id`, `user_id`, `account_id`, `role_id`) VALUES (1, 1, 0, 1), (2, 2, 1, 2), (3, 3, 2, 2), (4, 4, 1, 4), (5, 5, 1, 4), (6, 6, 1, 6), (7, 7, 1, 6), (8, 8, 1, 5), (9, 9, 1, 5), (10, 10, 1, 8), (11, 11, 1, 8), (12, 12, 1, 7), (13, 13, 1, 7), (14, 14, 2, 4), (15, 15, 2, 5), (16, 16, 2, 6), (17, 17, 3, 2); -- -------------------------------------------------------- -- -- Table structure for table `user_details` -- CREATE TABLE `user_details` ( `id` int(11) NOT NULL, `user_id` int(11) UNSIGNED NOT NULL, `address_id` int(11) NOT NULL, `first_name` varchar(100) CHARACTER SET utf8 NOT NULL, `last_name` varchar(100) CHARACTER SET utf8 DEFAULT NULL, `mobileno` varchar(15) DEFAULT NULL, `dob` date DEFAULT NULL, `gender` varchar(11) DEFAULT NULL, `age` varchar(11) DEFAULT NULL, `profile_pic_path` varchar(200) DEFAULT NULL, `device_token` varchar(255) DEFAULT NULL, `device_type` tinyint(2) DEFAULT NULL COMMENT '1 for android,2 for ios', `city_id` int(11) DEFAULT NULL, `created_ip` varchar(20) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `created_on` datetime DEFAULT NULL, `modified_ip` varchar(20) DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_on` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_details` -- INSERT INTO `user_details` (`id`, `user_id`, `address_id`, `first_name`, `last_name`, `mobileno`, `dob`, `gender`, `age`, `profile_pic_path`, `device_token`, `device_type`, `city_id`, `created_ip`, `created_by`, `created_on`, `modified_ip`, `modified_by`, `modified_on`) VALUES (1, 1, 1, 'Super', 'Admin', '9160687119', NULL, 'Male', '45', 'assets/uploads/employees/1751_face28.jpg', NULL, NULL, NULL, '::1', 2, '2020-09-10 12:03:58', '::1', 1, '2021-01-19 06:37:18'), (2, 2, 1, 'Ajay', 'Puvvada', '9685741230', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '::1', 1, '2021-04-01 13:00:07', NULL, NULL, NULL), (3, 3, 3, 'Kamala', 'Naidu', '9685741230', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '::1', 1, '2021-04-01 13:02:56', NULL, NULL, NULL), (4, 4, 5, 'Swamy', 'Reddy', '9160687119', NULL, 'Male', '56', 'assets/uploads/employees/23893_face.png', NULL, NULL, NULL, '::1', 2, '2021-04-01 13:08:04', NULL, NULL, NULL), (5, 5, 6, 'Niranjana', 'Kumar', '9160687119', NULL, 'Female', '45', 'assets/uploads/employees/99650_face.png', NULL, NULL, NULL, '::1', 2, '2021-04-01 13:11:58', NULL, NULL, NULL), (6, 6, 7, 'Sanjay', 'Reddy', '9160687119', NULL, 'Male', '45', NULL, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:14:07', NULL, NULL, NULL), (7, 7, 8, 'Navya', 'Pinnela', '8919649598', NULL, 'Female', '60', NULL, NULL, NULL, NULL, '::1', 2, '2021-04-01 13:16:38', NULL, NULL, NULL), (8, 8, 9, 'Nikkath', 'Shek', '8919649598', '1991-01-01', 'Female', NULL, 'assets/uploads/employees/36679_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (9, 9, 10, 'kalyan', 'N', '9550685788', '1990-01-01', 'Male', NULL, 'assets/uploads/employees/45548_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (10, 10, 11, 'Babu', 'Rao', '9652589420', '1990-01-01', 'Male', NULL, 'assets/uploads/employees/89281_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (11, 11, 12, 'Hari', 'Krishna', '8919649895', '2000-01-01', 'Male', NULL, 'assets/uploads/employees/99061_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (12, 12, 13, 'Gopi', 'D', '9876543210', '2000-01-01', 'Male', NULL, 'assets/uploads/employees/30105_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (13, 13, 14, 'sai', 'Teja', '9685741230', '1990-02-05', 'Male', NULL, 'assets/uploads/employees/89393_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (14, 14, 15, 'Venkat', 'Reddy', '9160687119', NULL, 'Male', '56', 'assets/uploads/employees/26492_face.png', NULL, NULL, NULL, '::1', 3, '2021-04-07 08:16:57', NULL, NULL, NULL), (15, 15, 16, 'Ramesh', 'K', '9160687119', '1989-01-01', 'Male', NULL, 'assets/uploads/employees/27742_face.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (16, 16, 17, 'Sreenu', 'k', '9160687199', NULL, 'Male', '62', NULL, NULL, NULL, NULL, '::1', 15, '2021-04-07 11:43:34', NULL, NULL, NULL), (17, 17, 18, 'Harish', 'Kumar', '9160687119', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '::1', 1, '2021-04-07 14:12:13', NULL, NULL, NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `accounts` -- ALTER TABLE `accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `accounts_subscriptions` -- ALTER TABLE `accounts_subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `activity_logs` -- ALTER TABLE `activity_logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `activity_request_mappings` -- ALTER TABLE `activity_request_mappings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `address` -- ALTER TABLE `address` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cities` -- ALTER TABLE `cities` ADD PRIMARY KEY (`cityid`); -- -- Indexes for table `ci_sessions` -- ALTER TABLE `ci_sessions` ADD PRIMARY KEY (`id`,`ip_address`), ADD KEY `ci_sessions_timestamp` (`timestamp`); -- -- Indexes for table `custom_data` -- ALTER TABLE `custom_data` ADD PRIMARY KEY (`id`); -- -- Indexes for table `groups` -- ALTER TABLE `groups` ADD PRIMARY KEY (`id`); -- -- Indexes for table `login_attempts` -- ALTER TABLE `login_attempts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `packages` -- ALTER TABLE `packages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `patient_details` -- ALTER TABLE `patient_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `patient_documents` -- ALTER TABLE `patient_documents` ADD PRIMARY KEY (`id`); -- -- Indexes for table `payment_mode` -- ALTER TABLE `payment_mode` ADD PRIMARY KEY (`id`); -- -- Indexes for table `payment_transactions` -- ALTER TABLE `payment_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `promocodes` -- ALTER TABLE `promocodes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refer_a_doctor` -- ALTER TABLE `refer_a_doctor` ADD PRIMARY KEY (`id`); -- -- Indexes for table `specializations` -- ALTER TABLE `specializations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `states` -- ALTER TABLE `states` ADD PRIMARY KEY (`state_id`); -- -- Indexes for table `subscriptions_packages` -- ALTER TABLE `subscriptions_packages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `uc_email` (`email`), ADD UNIQUE KEY `uc_activation_selector` (`activation_selector`), ADD UNIQUE KEY `uc_forgotten_password_selector` (`forgotten_password_selector`), ADD UNIQUE KEY `uc_remember_selector` (`remember_selector`); -- -- Indexes for table `users_groups` -- ALTER TABLE `users_groups` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `uc_users_groups` (`user_id`,`group_id`), ADD KEY `fk_users_groups_users1_idx` (`user_id`), ADD KEY `fk_users_groups_groups1_idx` (`group_id`); -- -- Indexes for table `user_accounts` -- ALTER TABLE `user_accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `user_details` -- ALTER TABLE `user_details` ADD PRIMARY KEY (`id`), ADD KEY `USER_FRKEY2` (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `accounts` -- ALTER TABLE `accounts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `accounts_subscriptions` -- ALTER TABLE `accounts_subscriptions` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `activity_logs` -- ALTER TABLE `activity_logs` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `activity_request_mappings` -- ALTER TABLE `activity_request_mappings` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `address` -- ALTER TABLE `address` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `cities` -- ALTER TABLE `cities` MODIFY `cityid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1245; -- -- AUTO_INCREMENT for table `custom_data` -- ALTER TABLE `custom_data` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `groups` -- ALTER TABLE `groups` MODIFY `id` mediumint(8) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `login_attempts` -- ALTER TABLE `login_attempts` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `packages` -- ALTER TABLE `packages` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `patient_details` -- ALTER TABLE `patient_details` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `patient_documents` -- ALTER TABLE `patient_documents` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payment_mode` -- ALTER TABLE `payment_mode` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `payment_transactions` -- ALTER TABLE `payment_transactions` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `promocodes` -- ALTER TABLE `promocodes` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refer_a_doctor` -- ALTER TABLE `refer_a_doctor` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `specializations` -- ALTER TABLE `specializations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `states` -- ALTER TABLE `states` MODIFY `state_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; -- -- AUTO_INCREMENT for table `subscriptions_packages` -- ALTER TABLE `subscriptions_packages` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `users_groups` -- ALTER TABLE `users_groups` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `user_accounts` -- ALTER TABLE `user_accounts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `user_details` -- ALTER TABLE `user_details` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- Constraints for dumped tables -- -- -- Constraints for table `users_groups` -- ALTER TABLE `users_groups` ADD CONSTRAINT `fk_users_groups_groups1` FOREIGN KEY (`group_id`) REFERENCES `groups` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, ADD CONSTRAINT `fk_users_groups_users1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Constraints for table `user_details` -- ALTER TABLE `user_details` ADD CONSTRAINT `USER_FRKEY2` FOREIGN KEY (`user_id`) REFERENCES `users` (`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>hofstede-matheus/trabalho_bd INSERT INTO perfis(id, id_usuario) values ('be9080f7-142c-4ba7-a20a-25144ab98648', '986f57c5-e042-41ad-9d34-f04a898eabad'), ('95cc06c1-e971-4c02-8c1c-46bb37525dda', '24c0ec6a-fc72-48bd-b6c7-53e6a5f235a8'), ('6d0e0706-27fe-49c3-8092-464adf3ae895', '8a567516-1f52-4d4f-a6ca-0421a5664ebf'), ('b273266d-1b90-4e81-9885-2bf0d201a6ce', '0c64b225-5b9a-4233-8950-49e8dcfd4eb5'), ('cdbbb409-d663-455a-9bb2-99be02666e5c', 'feaf1208-479b-40a2-ac7e-ad48717f2d61'), ('e3182252-8fad-494a-bb8f-e0869afafd5e', '6edea6dc-6711-4edb-ab35-94347f41542c'), ('5b7dca87-9a47-4d1f-a843-aca0743e602f', 'ef3cc9e4-d983-4186-b822-1223c7216c29'), ('01c2db71-f47e-4fa9-b4d8-45a83d103a8a', 'f7e818c8-0c52-42ec-b1d6-fc660f63b813'), ('69dc5552-8aff-424c-a174-7e73b9ba8521', 'b73bbe1a-ce34-4d95-8252-98ffed6eb2d2'), ('051aa701-20c4-4afa-aa77-904223577066', '47fa7743-8cb7-4c5c-b5c6-8e27816513fc'), ('1d24c15e-213b-44df-96d3-4131421ffffc', '11242ca0-3bd6-4c30-b172-d5e36a08edbb'), ('1b9fe409-a0bc-4aa7-9cab-4103d88038f4', '2a2c9c26-e19a-47df-8f14-d592cc059ffa'), ('f3806756-c485-4c60-a794-aa8654e7da50', 'fe338d1b-2585-4837-8e0d-975285ecbdb7'), ('cf247d7d-6b14-4042-ae6e-0e84db65aebb', '2b774e3b-7d76-432f-92f5-c47e87d0709f'), ('c9382a07-c351-49d6-a55a-63ebfd53da12', '8e896315-fb42-4c6a-867a-58669ae6946e'), ('f94f02dc-8e7c-4cc2-b94f-9a1efcdbc0b1', 'ab7890ff-13cf-4bab-9e33-2a9106e0ed63'), ('482e79ac-352b-4f8f-bca4-c7d9472fa971', 'd4c5d68c-8303-4be0-a777-5d1b2d8bfd14'), ('b1ccf0c5-b4e5-4e54-b1b2-2e20c056b21c', 'ec222ee3-973d-41fa-b4f7-8a22a07cde6c'), ('1a4eb92a-9401-4f19-8d23-c758b505e160', '087648ce-413f-4fbf-95af-288849cb699f'), ('f19ff79a-cf7f-4ebb-9409-afba42f1fba2', '2b9af8c5-e704-4a06-bfe1-41e42d961022'), ('64cee449-61dd-46c7-a096-6f1ee1163eb9', 'ac8f9761-bed0-430c-a026-00bbc12ea84d'), ('20295cee-18ea-40df-9d39-371b0ffe2529', 'ed3e0e41-6712-4b8d-81dd-3625413e64ee'), ('547b86e6-2e3f-4305-ac3b-1c304e1c0591', '279eeb7a-1b09-481c-9a73-3ecd255d31be'), ('6d3de70e-12ac-45cf-a8dc-c87166f0545e', '1a1e0796-893d-4dcf-ba28-be797a381ffc'), ('fbdd3301-afe7-4a06-99b1-f60eba4268aa', '07b207fc-31a1-4c29-9c0d-0ffa383cd053'), ('afd04575-a65d-4bc5-b5d5-2804210b6685', 'a132a634-8789-461a-b767-db241c234e79'), ('fa938a16-1a1c-42d4-8ee2-1cba2162ce1f', '3d6ccbed-3d73-4600-af41-1724891932dc'), ('81031e94-d2a1-4e78-8bc0-89759e1963a6', '5113abd9-7853-42b4-a3c9-59c8519557a7'), ('7aab036e-dc89-4f5e-be56-aaa9574d30ae', 'd55c2f2e-2d35-4891-8a10-a330f5bb4e5c'), ('5d581a61-c4e3-4b14-aae5-e8ee1b395dcc', 'd1428659-3cf5-4c80-b9f2-bb415c2a0fee'), ('9dd31f47-57c4-4071-9870-7eaff0fab368', '01adc4f5-6a29-43eb-89d2-2c792bcb5fb1'), ('0f673c1e-3aa4-4a23-b0bb-1bb6cbd104f3', 'c7c6aa50-dc5e-429d-ab5d-55a25226743d'), ('a18b48b3-821b-4134-a621-368c5554b221', '049b1caf-e260-4cbf-bf97-a9bc299148c8'), ('0383898f-9f57-4551-b301-417d3e3bf4c9', '3867a29c-ca0f-4af0-94bc-4d8a51bc8be7'), ('910bfe72-a64c-40f6-8acf-bd01c3337851', 'b7a81c59-7654-4094-bf20-4f905e992be6'), ('2b5a1d0b-a37c-41e8-863b-9445dfe3996d', '25b7e239-dcf5-46b4-95da-175dc636b423'), ('b958f92a-6891-4a23-93ab-1fe4640d55e1', '3f228c80-a469-4f51-945f-3cd171150c09'), ('5a82598d-a32e-4010-a26f-511afc7d4db9', '42945ae6-3e4e-4cce-b642-2dda2dcebd51'), ('495ddb2d-4e48-4cb3-942d-64aa043bbf63', '467080ba-d465-40a0-b09d-5cca80ab15c0'), ('1fd14c2e-2da3-415b-a17c-73dce39ef7e3', '5f4ede58-1a74-47fc-a7f3-03fe380e246b'), ('4da93200-9f7b-4364-85bb-7d77596a9b2a', 'a738bf61-9e53-43bb-909e-34db27e3fda5'), ('a09d9b18-d441-4192-ba1a-c71b1b186fe8', 'c0557c8b-9537-4fb3-a811-1fbf8ca898f9'), ('78f40546-639e-4322-8f0f-fae8d53255b3', '8ede3601-d282-4bac-9aed-e96bd218a583'), ('c9d99b2d-57f8-46fd-bec1-422b3c1fa418', '60e1260b-a5f2-472c-ae9e-95711011d6b3'), ('82fca0f7-dffc-4855-83cd-8a76441256cb', '8cc82426-605e-43c0-a2b5-e5295a9a3dd4'), ('46fe4548-1b31-4dd7-bb12-9711481a3d90', '0b8ce4e7-1f07-4058-80b5-22c04a032841'), ('3540da8c-3327-48e4-88c6-348aa3090b8c', 'd43fe218-b76e-494a-bbcb-639111783113'), ('26c62699-ae39-4ff4-8ae6-ffd961347768', '362e57b6-831e-4e5f-acf4-1237d55fbd95'), ('46971057-d99e-4fda-9ad2-836b18ccbe39', 'd2be3e16-e238-4f6c-9f80-d9a602b9a948'), ('83016d7a-fa8b-4016-a68f-41ba929340c3', 'eb317b70-9907-498b-9a5a-31e7a116d3e4'), ('f629914e-e31c-4bf0-b8f5-c26da8f02746', 'bd5001ca-f355-47af-94ee-160e4da4ff88'), ('c4fac429-4682-4599-a0db-36719c3a6d27', 'f67424e4-3c8d-4550-99a0-f9529e0145cf'), ('18da7798-e2ea-499c-9cf8-230da7a899d0', '74cfded6-68b8-46e7-9f94-2e9020025556'), ('0114b843-3258-4a63-9310-d08a539b496e', 'f881ea3f-87f4-4b50-a4f7-c0ed9dc10482'), ('ac17f3de-3684-42ef-83e0-7b2d1706f51f', 'a42b7019-258c-4988-81b5-d60accbe0a59'), ('cc4a4e8c-f440-4585-8eb9-8b94b6c5b012', 'c6794d36-d0e1-4781-ac4e-604ad5df082d'), ('7d839efc-7daf-4d88-876b-ff8a5d149796', '5ff28bf0-35f2-49dd-a3d6-2cebe7d3811d'), ('0d507567-cbab-4f23-96c6-3944ed1092f6', '9f993e97-310e-4617-99de-de929fb6e25d'), ('981b13cd-1724-4082-97d0-ed8f69928031', 'dce949df-bfef-4078-b0a7-c2dcd26a51ec'), ('7fb943b3-2f49-466d-ba82-a3c16a315530', '511e4426-01e4-4630-9c9d-4ca7ba8d53da'), ('d6e9e8f0-9386-4601-9c09-918f3a029776', '681345da-d1e1-465d-a4ef-d926354282fc'), ('30a9837c-c4b4-4368-82e1-66c4733cebdc', '40eba884-9ba7-4163-9888-b2ade9041b8d'), ('d83c56dc-afde-47c7-892a-a582c97810d4', '47d2838f-fe0d-438e-aa12-054627de5f02'), ('60d6319f-e1a9-4a2d-9c5e-dbc1345f2ca4', '62bbb388-98c5-4d5f-ba51-04c88df26e3f'), ('116e11f6-f24f-41cb-a416-e6a30b4faaf7', '398dcd99-d397-4f8c-93f8-9f44e6b16624'), ('4a54ad7a-d8af-4c32-a734-4af7a66dee08', '4725b3d9-c26d-4107-8724-ed1621f53114'), ('002fe8cc-c735-478a-b909-30da3eafba09', '70da063b-f776-4099-89da-bdd89ab9c23c'), ('597a3692-c9fb-4bb6-9097-ff876a515077', '60604261-2470-4b61-83c8-4ab7693242b6'), ('0bc473ac-1156-43f2-9cd6-1657abfdb022', '9c916f68-3691-4f5c-ac1e-8c8c5ae4a992'), ('8a74fce5-406d-4284-8dd9-53091b8d886c', '09dba15a-0d32-485e-a7d2-58f291f0dba4'), ('e8d9eca5-cc58-4ece-9edf-ce6a470bf618', '4c75fd1e-1008-4e47-85dc-ea694052e1b1'), ('44b46c40-309c-4f4a-be94-f48cd2e8a6b0', 'd993bb4b-fa24-4313-b3c9-d281e3930187'), ('5a4e1527-fa97-4191-8812-ea6f8dab34df', '95305d31-77a1-40f1-8d9a-349be6c2c207'), ('f4b46ccd-4946-4f09-847b-f3f0145bc38b', '0fab1314-fe07-49cf-9e76-7d5734d12027'), ('ea453f31-3c54-4cac-9fbc-2fbdb6d5a280', '7c38dfdc-b66d-4958-919c-de6a0e7eb464'), ('0f23e514-7134-45c8-b376-b0024be7c888', '31701b6c-d423-4c5d-b7b2-6f1e5416a913'), ('aa5b668e-b3d4-48ce-ae03-1e049686a04c', 'e0f9156b-859e-42ba-b379-75000759345d'), ('6e7b7c12-dec1-4b13-bf33-5e5e717c46bf', '3febf998-0c90-4506-9c44-21825289f557'), ('c703d091-64aa-4b76-93f3-acbb1113e475', '43da2898-c0db-4e2b-b711-051c579918c5'), ('44c396a5-273b-4be2-86d5-397cb32b260a', '3d58e85d-a4e9-401d-b5d6-690269f4e217'), ('20d2885e-c195-4e4a-b4df-306c029a5db5', '031c0150-165c-48b6-b490-ee2d782f583c'), ('efd19718-5d5b-45cb-8f48-f5150ced8806', 'c3146245-1868-4939-8e5d-5b87e778389d'), ('a875c3e5-9a01-405d-afab-a7692bec243f', '2428e368-20fd-4be8-99ee-47adf3902126'), ('977387eb-0e78-4249-9421-767ab3d03580', '0e86671c-4a30-47d4-8010-6877701fa006'), ('289ab944-af53-4e74-a53e-8370e8cca288', '55d2e61e-6d18-4e03-bc52-7013f3da21dd'), ('43cf38c3-50e5-4091-98dc-41945709eca8', '42d73ab0-6eea-40ac-82ec-e75606c62821'), ('f315a4b9-06ac-4731-b4c9-07a37936a689', '9648655e-7b90-4b01-b562-0773dd164af0'), ('026489f1-b830-4739-b085-4f99690c4403', 'accd86b8-d955-49a2-840c-305d0461b7bf'), ('fe0ecd20-f60a-49d6-a19c-227921704aa2', '5f0d513c-9358-4780-9699-6a981275749e'), ('15c9bbe4-3eb2-4d8b-8922-238e83ea5cd4', '3770d6a3-b662-4622-bf55-136cbec18057'), ('8a3dbd09-f4ae-4a50-8d40-56c043d92954', '72fa5b7e-91bd-41ee-aaa8-0372d54aa22f'), ('ff8b9d59-5c59-4e4b-849a-a13b4263d057', 'a988f5a6-5961-47ef-b554-4a48d645186e'), ('9c06b47a-8355-4e23-9847-08021a41edfc', 'b815ef99-32c9-4868-943c-22501f609092'), ('9b0bdf1f-5219-4b57-b005-a865105c929a', 'e80a38ff-4fb5-46d3-9057-57a532da2a5c'), ('684f433e-1f55-4a9b-ae31-09c09bd71cf6', 'a079e08d-94a4-4415-9b4c-a720f770ffb9'), ('dab43ea7-5eb4-4ef7-8a9d-0570982f8f0f', 'bb513d66-93b8-408c-8a20-3fc39c0756ea'), ('91937af6-d3b2-44b1-8678-42b17821e855', '5a94a18a-8a85-4fd7-b1e4-1d29f4cd54cd'), ('f3cb2871-666e-4108-9f3d-d0a1c6f74444', '100b129f-5f8d-40c5-af93-39c9d97eb7c2'), ('4e186068-0fb9-4bbd-9520-54e614c85a9e', 'd086ba7f-da01-430a-929c-a82e74092895'), ('c12cd028-4f4e-416c-bb10-9741d50eab7b', '91502c0d-6f41-49b0-8e1a-7f96567af1f4'), ('00aa3cbd-4252-4024-ace3-b65faad4c9db', '5db0ff9a-5276-4f70-9715-6cb2666b840b'), ('b6d4bb8a-a6cb-48b0-962d-20da1e9bc6ca', '9199c987-e6e6-4ff6-9383-f84406dbc1d2'), ('64dcdbd8-448d-4c5d-8b23-458027f4c180', '0e7177cd-89f3-4634-83cf-139b33f4c89a'), ('480a082b-21e9-4e23-9eab-5a2abea35863', '9a327f9c-39b7-466e-b0cb-76c974b53496'), ('74973db6-b218-4a04-bf41-0908cd0876cb', 'e1bd8211-f174-4533-829a-bf029233c9af');
<reponame>Raktim21/Zhivago -- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 17, 2021 at 08:37 PM -- Server version: 10.4.20-MariaDB -- PHP Version: 8.0.8 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: `zhivago` -- -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `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 (13, '2014_10_12_000000_create_users_table', 1), (14, '2014_10_12_100000_create_password_resets_table', 1), (15, '2014_10_12_200000_add_two_factor_columns_to_users_table', 1), (16, '2019_08_19_000000_create_failed_jobs_table', 1), (17, '2019_12_14_000001_create_personal_access_tokens_table', 1), (18, '2021_12_17_061859_create_sessions_table', 1), (19, '2021_12_17_085426_create_user_profile_images_table', 2); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sessions` -- CREATE TABLE `sessions` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, `last_activity` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sessions` -- INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('sgEcve4xAGNdBF1p1V29jDY4qEqM5cMUumwIlPAl', 8, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '<KEY>', 1639732890), ('<KEY>', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '<KEY>3M6Mjc6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9sb2dpbiI7fX0=', 1639728131); -- -------------------------------------------------------- -- -- Table structure for table `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, `two_factor_secret` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `two_factor_recovery_codes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_team_id` bigint(20) UNSIGNED DEFAULT NULL, `profile_photo_path` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `two_factor_secret`, `two_factor_recovery_codes`, `remember_token`, `current_team_id`, `profile_photo_path`, `created_at`, `updated_at`) VALUES (2, 'User', '<EMAIL>', NULL, '$2y$10$Wlr8Av6nx4eohwXXWl6VkedQBownn4bVT9/.ZL4WGIssgZMLMfgRm', NULL, NULL, NULL, NULL, NULL, '2021-12-17 01:30:58', '2021-12-17 01:30:58'), (8, '<NAME>', '<EMAIL>', NULL, '$2y$10$v1KmIhYGcD.n0sUqhuXr0e0Z5kZEoHVXB1fXqv0ClqSEgsQiVfiS6', NULL, NULL, NULL, NULL, NULL, '2021-12-17 03:11:23', '2021-12-17 03:11:23'); -- -------------------------------------------------------- -- -- Table structure for table `user_profile_images` -- CREATE TABLE `user_profile_images` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `user_profile_images` -- INSERT INTO `user_profile_images` (`id`, `user_id`, `image`, `created_at`, `updated_at`) VALUES (1, 8, '8.jpg', '2021-12-17 03:11:23', '2021-12-17 03:11:23'), (2, 2, '8.jpg', '2021-12-17 03:11:23', '2021-12-17 03:11:23'); -- -- Indexes for dumped tables -- -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `sessions` -- ALTER TABLE `sessions` ADD PRIMARY KEY (`id`), ADD KEY `sessions_user_id_index` (`user_id`), ADD KEY `sessions_last_activity_index` (`last_activity`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `user_profile_images` -- ALTER TABLE `user_profile_images` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `user_profile_images` -- ALTER TABLE `user_profile_images` MODIFY `id` bigint(20) UNSIGNED 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 */;
-- This file generates a second file which will be used to create the JSON output. set serveroutput on size 1000000 set feedback off set verify off set termout off set linesize 9999 define APP_ID = '&1' define CON_NAME = '&2' define SPOOL_FILENAME = '&3' spool &SPOOL_FILENAME. declare l_sql clob; l_sql_template clob; l_app_id apex_applications.application_id%type := &APP_ID.; type rec_apex_info is record( apex_view_name apex_dictionary.apex_view_name%type, custom_predicates varchar2(4000), -- Custom predicates cols varchar2(4000), order_by varchar2(4000), rn number, cnt number ); type tab_apex_info is table of rec_apex_info index by pls_integer; l_apex_info tab_apex_info; begin -- Templates l_sql_template := 'cursor(select %COLUMNS% from %APEX_VIEW_NAME% avn where 1=1 and avn.application_id = %APP_ID% %CUSTOM_PREDICATES% order by %ORDER_BY%) "%APEX_VIEW_NAME%"'; l_sql_template := replace(l_sql_template, '%APP_ID%', chr(38) || 'APP_ID.'); dbms_output.put_line('-- File genereted from apex-diff.sql'); dbms_output.put_line('-- DO NOT MODIFY THIS FILE'); dbms_output.put_line(''); dbms_output.put_line('set sqlformat json-formatted'); dbms_output.put_line('set feedback off'); dbms_output.put_line('set termout off'); dbms_output.put_line('set verify off'); -- Removes the old/new sub string dbms_output.put_line('set sqlblanklines on'); -- Allows for blank lines caused by CUSTOM_PREDICATES dbms_output.put_line(''); -- Variables (this is for the auto build file) dbms_output.put_line('define APP_ID = ''' || chr(38) || '1'''); dbms_output.put_line('define CON_NAME = ''' || chr(38) || '2'''); dbms_output.put_line(''); dbms_output.put_line('spool f' || chr(38) || 'APP_ID._' || chr(38) || 'CON_NAME..json'); -- Creating parent select statement dbms_output.put_line('select '); -- Get all the APEX views, and their columns select ad.apex_view_name, ad.custom_predicates, listagg(atc.column_name, ',') within group (order by adc.column_id) cols, -- order by columns will use APEX dictionary recommended list (ignore LOBs) listagg( case when atc.data_type like '%LOB' then null -- can't order by LOBs else atc.column_name end, ',') within group (order by adc.column_id) order_by, row_number() over (order by ad.apex_view_name) rn, count(1) over () cnt bulk collect into l_apex_info from ( select case -- #12 Save default (public) IR settings only -- Note: Query is forced to lower, so manually force items to upper when necessary when ad.apex_view_name = 'APEX_APPLICATION_PAGE_IR_RPT' then q'!and avn.status = upper('PUBLIC')!' when ad.apex_view_name in ('APEX_APPLICATION_PAGE_IR_COMP', 'APEX_APPLICATION_PAGE_IR_COND','APEX_APPLICATION_PAGE_IR_GRPBY','APEX_APPLICATION_PAGE_IR_PIVOT','APEX_APPLICATION_PAGE_IR_PVAGG','APEX_APPLICATION_PAGE_IR_PVSRT') then q'!and avn.report_id in ( select ir.report_id from apex_application_page_ir_rpt ir where 1=1 and ir.application_id = avn.application_id and ir.status = upper('PUBLIC'))!' else null end custom_predicates, ad.* from apex_dictionary ad where 1=1 and ad.column_id = 0 ) ad, all_tab_columns atc, ( -- For column ids (order by) select apex_view_name, column_name, column_id from apex_dictionary where column_id != 0) adc where 1=1 -- APEX views and ad.apex_view_name not like 'APEX_UI%' -- TODO mdsouza: exclude? and ad.apex_view_name not like 'APEX_TEAM%' and ad.apex_view_name not like 'APEX_WORKSPACE%' and ad.apex_view_name not like 'APEX_WS%' and ad.apex_view_name not like 'APEX_REST%' -- #20: APEX_REST queries don't have application_id and ad.apex_view_name not like 'APEX_WEBSERVICE%' and ad.apex_view_name not like 'APEX_ISSUE%' -- don't have application_id and ad.apex_view_name not in ( 'APEX_APPLICATIONS', 'APEX_APPLICATION_GROUPS', 'APEX_THEMES', -- These IR reports are for user level IRs 'APEX_APPLICATION_PAGE_IR_SUB', -- Remove debug messages 'APEX_DEBUG_MESSAGES' ) and ad.apex_view_name != 'APEX_APPLICATION_TRANS_MAP' -- doesn't contain application_id -- APEX dictionary columns and atc.table_name = adc.apex_view_name(+) and atc.column_name = adc.column_name(+) -- Columns and atc.table_name = upper(ad.apex_view_name) and atc.owner = apex_application.g_flow_schema_owner and atc.column_name not in ( 'WORKSPACE', 'WORKSPACE_DISPLAY_NAME', 'APPLICATION_ID', 'APPLICATION_NAME', 'COMPONENT_SIGNATURE' ) and atc.data_type not in ('BLOB') group by ad.apex_view_name, ad.custom_predicates order by rn; for i in 1 .. l_apex_info.count loop l_sql := replace(l_sql_template, '%COLUMNS%', l_apex_info(i).cols); l_sql := replace(l_sql, '%APEX_VIEW_NAME%', l_apex_info(i).apex_view_name); l_sql := replace(l_sql, '%ORDER_BY%', l_apex_info(i).order_by); l_sql := replace(l_sql, '%CUSTOM_PREDICATES%', l_apex_info(i).custom_predicates); l_sql := lower(l_sql); dbms_output.put_line(l_sql); if l_apex_info(i).rn != l_apex_info(i).cnt then dbms_output.put_line(','); -- Column/cursor delimeter end if; end loop; -- apex_dictionary -- Closing main query dbms_output.put_line('from dual;'); dbms_output.put_line(''); dbms_output.put_line('spool off'); dbms_output.put_line('set sqlformat default'); -- TODO mdsouza: make this an option dbms_output.put_line(''); dbms_output.put_line('exit'); exception when others then raise; end; / spool off @&SPOOL_FILENAME. &APP_ID. -- TODO mdsouza: add option to export APEX application as well (.sql file) exit
<gh_stars>0 # --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table privileges ( id integer not null, userfrom varchar(255), userto varchar(255), estimated_hours integer, constraint pk_privileges primary key (id) ); create sequence privileges_seq; create table request ( id integer not null, userfrom varchar(255), userto varchar(255), constraint pk_request primary key (id) ); create sequence request_seq; create table schedule ( id integer not null, login varchar(255), day varchar(255), begin time, end time, constraint pk_schedule primary key (id) ); create sequence schedule_seq; create table time ( id integer not null, login varchar(255), begin timestamp, end timestamp, state varchar(255), constraint pk_time primary key (id) ); create sequence time_seq; create table user ( id integer not null, login varchar(255), password <PASSWORD>(<PASSWORD>), name varchar(255), surname varchar(255), email varchar(255), constraint pk_user primary key (id) ); create sequence user_seq; # --- !Downs drop table if exists privileges; drop sequence if exists privileges_seq; drop table if exists request; drop sequence if exists request_seq; drop table if exists schedule; drop sequence if exists schedule_seq; drop table if exists time; drop sequence if exists time_seq; drop table if exists user; drop sequence if exists user_seq;