text
stringlengths
6
9.38M
-- phpMyAdmin SQL Dump -- version 4.0.4.2 -- http://www.phpmyadmin.net -- -- Máquina: localhost -- Data de Criação: 29-Set-2020 às 18:56 -- Versão do servidor: 5.6.13 -- versão do PHP: 5.4.17 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Base de Dados: `escolaex` -- CREATE DATABASE IF NOT EXISTS `escolaex` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `escolaex`; -- -------------------------------------------------------- -- -- Estrutura da tabela `aluno` -- CREATE TABLE IF NOT EXISTS `aluno` ( `prontuario` int(8) NOT NULL AUTO_INCREMENT, `nome` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `data_nasc` date NOT NULL, `sexo` varchar(1) NOT NULL, PRIMARY KEY (`prontuario`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Extraindo dados da tabela `aluno` -- INSERT INTO `aluno` (`prontuario`, `nome`, `email`, `data_nasc`, `sexo`) VALUES (1, 'Joao', 'joao@email.com ', '2000-01-01', 'M'), (2, 'Maria', 'maria@email.com ', '1999-02-02', 'F'), (3, 'Jose', 'jose@email.com ', '2000-03-01', 'M'), (4, 'Antonio', 'antonio@email.com ', '1999-05-02', 'M'); -- -------------------------------------------------------- -- -- Estrutura da tabela `disciplina` -- CREATE TABLE IF NOT EXISTS `disciplina` ( `id_disciplina` int(11) NOT NULL AUTO_INCREMENT, `nome` varchar(100) NOT NULL, `descricao` varchar(200) NOT NULL, `cod_prof` int(11) NOT NULL, PRIMARY KEY (`id_disciplina`), KEY `cod_prof` (`cod_prof`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Extraindo dados da tabela `disciplina` -- INSERT INTO `disciplina` (`id_disciplina`, `nome`, `descricao`, `cod_prof`) VALUES (1, 'Trigonometria', 'Estudo de triângulos', 1), (2, 'Química Analítica', 'quantificação de espécies ou elementos químicos\r\n', 2), (3, 'Aritmética', 'parte da matemática que lida com as operações numéricas', 1); -- -------------------------------------------------------- -- -- Estrutura da tabela `professor` -- CREATE TABLE IF NOT EXISTS `professor` ( `prontuario` int(8) NOT NULL AUTO_INCREMENT, `nome` varchar(100) NOT NULL, `formacao` varchar(100) NOT NULL, PRIMARY KEY (`prontuario`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Extraindo dados da tabela `professor` -- INSERT INTO `professor` (`prontuario`, `nome`, `formacao`) VALUES (1, 'Carlos', 'Matemática'), (2, 'Mariela', 'Química'); -- -------------------------------------------------------- -- -- Estrutura da tabela `turma` -- CREATE TABLE IF NOT EXISTS `turma` ( `id_ad` int(1) NOT NULL AUTO_INCREMENT, `cod_aluno` int(11) NOT NULL, `cod_disciplina` int(11) NOT NULL, PRIMARY KEY (`id_ad`), KEY `cod_aluno` (`cod_aluno`), KEY `cod_disciplina` (`cod_disciplina`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Extraindo dados da tabela `turma` -- INSERT INTO `turma` (`id_ad`, `cod_aluno`, `cod_disciplina`) VALUES (1, 1, 1), (2, 2, 1), (3, 1, 2), (4, 3, 2), (5, 4, 1); -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `disciplina` -- ALTER TABLE `disciplina` ADD CONSTRAINT `disciplina_ibfk_1` FOREIGN KEY (`cod_prof`) REFERENCES `professor` (`prontuario`) ON UPDATE CASCADE; -- -- Limitadores para a tabela `turma` -- ALTER TABLE `turma` ADD CONSTRAINT `turma_ibfk_2` FOREIGN KEY (`cod_disciplina`) REFERENCES `disciplina` (`id_disciplina`) ON UPDATE CASCADE, ADD CONSTRAINT `turma_ibfk_1` FOREIGN KEY (`cod_aluno`) REFERENCES `aluno` (`prontuario`) 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 */;
DROP DATABASE checkout; CREATE DATABASE checkout; USE checkout; CREATE TABLE id ( id INT AUTO_INCREMENT, name TEXT, email TEXT, password TEXT line1 TEXT, line2 TEXT, city TEXT, st TEXT, zip INT ccNumber INT, expDate INT, cvv INT, bzip INT );
create table users ( id bigint auto_increment primary key, email varchar(30) null, password varchar(100) null, create_at bigint null, update_at bigint null, constraint users_email_uindex unique (email) );
#用户表(管理员) DROP TABLE if exists `user`; CREATE TABLE `user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户ID', `user_name` varchar(50) NOT NULL DEFAULT '' COMMENT '管理员姓名', `mobile` varchar(11) NOT NULL DEFAULT '' COMMENT '手机号', `head_picture` varchar(128) NOT NULL DEFAULT '' COMMENT '用户头像', `password` VARCHAR (60) NOT NULL COMMENT '用户密码(md5加密)', `sex` int(2) unsigned NOT NULL DEFAULT '10' COMMENT '性别: 10-男;20-女', `role` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '角色: 0-普通的管理员(没有修改权限), 10-超级管理员, 20-商品管理员, 30-资讯管理员', `validity` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否有效, 0-无效,1-有效', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '信息更新时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `address` varchar(128) not null DEFAULT '' COMMENT '地址', `country` int(2) unsigned not null DEFAULT '1' COMMENT '国家', `province` int(2) unsigned not null DEFAULT '1' COMMENT '省份', `city` int(2) unsigned not null DEFAULT '1' COMMENT '城市', primary key (`id`), KEY `idx_username` (`user_name`), KEY `idx_user_mobile` (`mobile`) ) ENGINE=InnoDB AUTO_INCREMENT= 1 DEFAULT CHARSET=utf8 COMMENT='内部管理员表'; #客户表(会员) DROP TABLE if exists `customer`; CREATE TABLE `customer` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户ID', `customer_name` varchar(50) NOT NULL DEFAULT '' COMMENT '客户姓名', `mobile` varchar(11) NOT NULL DEFAULT '' COMMENT '手机号', `email` varchar(80) NOT NULL DEFAULT '' COMMENT '邮箱', `head_picture` varchar(128) NOT NULL DEFAULT '' COMMENT '用户头像', `password` VARCHAR (60) NOT NULL COMMENT '用户密码(md5加密)', `sex` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '性别: 0 女;1 男', `validity` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否有效, 0-无效,1-有效', `register_ip` varchar(50) NOT NULL DEFAULT '127.0.0.1' COMMENT '注册IP', `register_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '注册时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '信息更新时间', `points` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户积分', `last_logintime` timestamp NOT NULL DEFAULT '1971-01-01 00:00:00' COMMENT '最后登录时间', `update_id` varchar(30) NOT NULL DEFAULT 'sys' COMMENT '更新客户的userId', `customer_level` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '客户等级,0普通客户, 1种子客户, 2VIP客户', `address` varchar(128) not null DEFAULT '' COMMENT '地址', `country` int(2) unsigned not null DEFAULT '1' COMMENT '国家', `province` int(2) unsigned not null DEFAULT '1' COMMENT '省份', `city` int(2) unsigned not null DEFAULT '1' COMMENT '城市', PRIMARY KEY (`id`), KEY `idx_customername` (`customer_name`), KEY `idx_mobile` (`mobile`) ) ENGINE=InnoDB AUTO_INCREMENT = 10000 DEFAULT CHARSET=utf8 COMMENT='用户表'; #商品表 DROP TABLE if exists `product`; CREATE TABLE `product` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品ID', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '商品名字', `shop_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '卖家编号', `inventory` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '库存', `price` double(10, 2) NOT NULL DEFAULT '0.00' COMMENT'单价', `discount_price` double(10, 2) NOT NULL DEFAULT '0.00' COMMENT'打折价', `discount` int(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否打折: 0-否,1-是', `hot` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否热卖 1-是 0-不是', `recommend` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否推荐 1-是 0-不是', `sales` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `pic` varchar(120) NOT NULL DEFAULT '' COMMENT '商品图片', `price_region` int(3) unsigned NOT NULL DEFAULT '10' COMMENT '商品价格区间, 0-60 : 10, 61-100 : 20, 101-200 : 30, 201-400 : 40, 401-1000 : 50, 1000- : 60', `type` int(3) unsigned NOT NULL DEFAULT '1' COMMENT '商品大类型 1-婴儿, 2-妈妈', `sex` int(3) unsigned NOT NULL DEFAULT '1' COMMENT '商品适用的性别, 1-女, 2-男', `age_region` int(3) unsigned NOT NULL DEFAULT '10' COMMENT '商品适合的婴儿年龄区间(只有商品适用于婴儿时才有), 10 : 0-6个月宝宝, 20 : 6-12个月宝宝, 30 : 1-3岁, 40 : 4-6岁, 50 : 7-9岁, 60 : 10岁及以上', `category` int(5) unsigned NOT NULL DEFAULT '10' COMMENT '商品的小类型 10-纸尿裤, 20-婴儿车, 30-婴儿奶粉, 40-安全座椅, 50-玩具, 60-衣服, 70-童鞋, 80-婴儿食品, 90-喂养, 100-宝宝健康; 300-保健品, 310-个人护理, 320-卫生用品, 330-孕期/产后营养, 340-辣妈衣装', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COMMENT='商品表'; #商家表 DROP TABLE if exists `shop`; CREATE TABLE `shop` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商家ID', `name` varchar(60) NOT NULL DEFAULT '怪蜀黍母婴' COMMENT '商家名称', `country` int(2) unsigned not null DEFAULT '1' COMMENT '国家', `province` int(2) unsigned not null DEFAULT '1' COMMENT '省份', `city` int(2) unsigned not null DEFAULT '1' COMMENT '城市', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COMMENT='商家表'; #订单表 DROP TABLE if exists `order`; CREATE TABLE `order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单id', `customer_id` int(10) unsigned NOT NULL DEFAULT '10000' COMMENT '客户ID', `amount` double(12, 2) NOT NULL DEFAULT '0.00' COMMENT '订单总额', `number` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '订单商品总数', `freight` double(8, 2) NOT NULL DEFAULT '0.00' COMMENT '运费', `leave_message` varchar(60) NOT NULL DEFAULT '' COMMENT '买家留言', `logistics` int(10) unsigned NOT NULL DEFAULT '10' COMMENT '物流, 10-顺丰速递,20-EMS速递,30-德邦快运,40-任意物流', `address_id` int(10) unsigned NOT NULL DEFAULT '1000' COMMENT '收货地址id', `status` int(3) unsigned NOT NULL DEFAULT '10' COMMENT '订单状态: 10-待支付,20-待收货,30-待评价,40-完成,100-取消', `pay_way` int(3) unsigned NOT NULL DEFAULT '10' COMMENT '支付方式: 10-支付宝, 20-微信支付, 30-银行卡支付', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COMMENT='订单表'; #收货地址表 DROP TABLE if exists `address`; CREATE TABLE `address` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '地址id', `customer_id` int(10) unsigned NOT NULL DEFAULT '10000' COMMENT '客户ID', `address` varchar(80) NOT NULL DEFAULT '' COMMENT '收货地址', `country` int(2) unsigned not null DEFAULT '1' COMMENT '国家', `province` int(2) unsigned not null DEFAULT '1' COMMENT '省份', `city` int(2) unsigned not null DEFAULT '1' COMMENT '城市', `receive_name` varchar(40) NOT NULL DEFAULT '' COMMENT '收货人姓名', `mobile` varchar(11) NOT NULL DEFAULT '' COMMENT '联系手机', `zip` varchar(6) NOT NULL DEFAULT '' COMMENT '邮编', `default_address` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT ' 是否默认地址.1-默认 0-不默认', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COMMENT='收货地址表'; #订单项表 DROP TABLE if exists `order_line`; CREATE TABLE `order_line` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单项id', `item_id` int(10) unsigned NOT NULL DEFAULT '10000' COMMENT '商品id', `order_id` int(10) unsigned NOT NULL DEFAULT '10000' COMMENT '订单id', `amount` double(12, 2) NOT NULL DEFAULT '0.00' COMMENT '订单项总额', `number` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '订单项商品总数', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COMMENT='订单表'; #地区表 DROP TABLE if exists `region`; CREATE TABLE `region` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '地区id', `country` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '国家id', `province` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '省份id', `city` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '城市id', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 COMMENT='地区表'; #评论表 DROP TABLE if exists `comment`; CREATE TABLE `comment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '评论id', `customer_id` int(10) unsigned NOT NULL DEFAULT '10000' COMMENT '相关的客户id', `item_id` int(10) unsigned NOT NULL DEFAULT '10000' COMMENT '相关的商品id', `content` varchar(225) NOT NULL DEFAULT '' COMMENT '评论的内容', `star` int(3) unsigned NOT NULL DEFAULT '5' COMMENT '满意星级', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 COMMENT='评论表'; #资讯表 DROP TABLE if exists `information`; CREATE TABLE `information` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '资讯id', `content` varchar(250) NOT NULL DEFAULT '' COMMENT '咨询内容', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `create_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '创建人', `update_id` varchar(80) NOT NULL DEFAULT 'sys' COMMENT '修改人', `validity` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '有效性 1.有效 0. 无效', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 COMMENT='资讯表';
/*################################################################################ Migration script to replace STUDY_TRACKING_VIEW with new Publication table author: C Malangone date: March 2018 version: 2.2.0.044 ################################################################################ */ CREATE OR REPLACE VIEW STUDY_TRACKING_VIEW AS SELECT DISTINCT S.ID AS STUDY_ID, DECODE(SE.STUDY_ID, NULL, 0, 1) HAS_EVENT, CS.STATUS, P.PUBMED_ID, S.HOUSEKEEPING_ID, P.PUBLICATION_DATE, HK."LAST_UPDATE_DATE", HK."CATALOG_PUBLISH_DATE", HK."STUDY_ADDED_DATE", HK."CURATION_STATUS_ID", HK."CURATOR_ID", HK."CATALOG_UNPUBLISH_DATE", HK."UNPUBLISH_REASON_ID", HK."IS_PUBLISHED" FROM STUDY S LEFT JOIN PUBLICATION P ON (S.PUBLICATION_ID =P.ID) LEFT JOIN HOUSEKEEPING HK ON (HK.ID = S.HOUSEKEEPING_ID) JOIN CURATION_STATUS CS ON (HK.CURATION_STATUS_ID = CS.ID) LEFT JOIN STUDY_EVENT SE ON (SE.STUDY_ID = S.ID) ORDER BY S.ID ASC;
-- phpMyAdmin SQL Dump -- version 4.3.8 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Aug 18, 2016 at 02:00 AM -- Server version: 5.5.48-37.8 -- PHP Version: 5.4.31 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: `nadim33_ems` -- -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE IF NOT EXISTS `category` ( `c_id` int(11) NOT NULL, `type` text NOT NULL, `status` int(11) NOT NULL ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; -- -- Dumping data for table `category` -- INSERT INTO `category` (`c_id`, `type`, `status`) VALUES (1, 'ALLERGY', 0), (2, 'ANTIBIOTICS', 0), (3, 'ASTHMA', 0), (4, 'CANCER', 0), (5, 'CARDIAC', 1), (6, 'CENTRAL NERVOUS SYSTEM', 0), (7, 'CHOLESTEROL', 0), (8, 'COUGH ', 0), (9, 'FLU', 0), (10, 'DIABETICS', 0), (11, 'EYECARE', 0), (12, 'SKIN & HAIR', 0), (13, 'VITAMINS', 0); -- -------------------------------------------------------- -- -- Table structure for table `medicine` -- CREATE TABLE IF NOT EXISTS `medicine` ( `m_id` int(11) NOT NULL, `name` text NOT NULL, `c_id` int(11) NOT NULL, `issue_date` date NOT NULL, `exp_date` date NOT NULL, `type` int(11) NOT NULL, `mg` text NOT NULL, `descr` text NOT NULL, `price` text NOT NULL, `image` text NOT NULL, `datetime` datetime NOT NULL, `status` int(11) NOT NULL, `formula` text NOT NULL ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; -- -- Dumping data for table `medicine` -- INSERT INTO `medicine` (`m_id`, `name`, `c_id`, `issue_date`, `exp_date`, `type`, `mg`, `descr`, `price`, `image`, `datetime`, `status`, `formula`) VALUES (5, 'SOFTIN ', 1, '2016-01-01', '2016-12-23', 2, '10', ' Softin medicine ', '62', 'uploaded_files/softin.jpg', '2016-05-09 00:00:00', 0, ''), (6, 'DIFLUCAN ', 2, '2015-11-05', '2016-11-25', 2, '50', ' ', '120', 'uploaded_files/Diflucancap-Capsule50.jpg', '2016-05-03 00:00:00', 0, ''), (7, 'ATEM NEB', 3, '2015-06-03', '2017-06-14', 4, '', ' ', '60', 'uploaded_files/Atemnebulizer-Nebulizer0025.jpg', '2016-05-10 00:00:00', 0, ''), (8, 'ARIMIDEX ', 4, '2015-12-03', '2017-02-23', 2, '1', ' ', '238', 'uploaded_files/arimidex-1mg.jpg', '2016-05-09 00:00:00', 0, ''), (9, 'ANGISED ', 5, '2015-11-04', '2016-12-16', 2, '0.5', ' ', '0.80', 'uploaded_files/Angised-Tablet05.jpg', '2016-05-16 00:00:00', 0, ''), (10, 'SEROXAT ', 6, '2015-07-29', '2016-12-22', 2, '20', ' ', '43.34', 'uploaded_files/Seroxattab-Tablet20.jpg', '2016-05-25 00:00:00', 0, ''), (11, 'LIPIGET ', 7, '2015-02-10', '2017-06-22', 2, '10', ' ', '16.40', 'uploaded_files/Lipiget-Tablet10.jpg', '2016-05-05 00:00:00', 0, ''); -- -------------------------------------------------------- -- -- Table structure for table `order` -- CREATE TABLE IF NOT EXISTS `order` ( `o_id` int(11) NOT NULL, `u_id` int(11) NOT NULL, `date` datetime NOT NULL, `status` int(11) NOT NULL, `address` text NOT NULL, `town` text NOT NULL, `state` text NOT NULL, `zip` text NOT NULL, `phone` text NOT NULL, `reor` int(11) NOT NULL ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; -- -- Dumping data for table `order` -- INSERT INTO `order` (`o_id`, `u_id`, `date`, `status`, `address`, `town`, `state`, `zip`, `phone`, `reor`) VALUES (6, 1, '2016-05-10 13:05:59', 1, 'House # 123 ', 'Rawalpindi', 'Punjab', '46000', '03435551441', 0), (7, 1, '2016-05-07 18:33:38', 1, 'House # 123 ', 'Rawalpindi', 'Punjab', '46000', '03435551441', 0), (8, 1, '2016-05-09 06:41:06', 1, 'House # 123 ', 'Rawalpindi', 'Punjab', '46000', '03435551441', 0); -- -------------------------------------------------------- -- -- Table structure for table `store` -- CREATE TABLE IF NOT EXISTS `store` ( `s_id` int(11) NOT NULL, `name` text NOT NULL, `location` text NOT NULL, `status` int(11) NOT NULL ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `store` -- INSERT INTO `store` (`s_id`, `name`, `location`, `status`) VALUES (1, 'Shaheen Chemist', 'Sadar', 0); -- -------------------------------------------------------- -- -- Table structure for table `tblproduct` -- CREATE TABLE IF NOT EXISTS `tblproduct` ( `id` int(8) NOT NULL, `m_id` int(11) NOT NULL, `price` double(10,2) NOT NULL, `quantity` int(11) NOT NULL, `u_id` int(11) NOT NULL, `status` int(11) NOT NULL, `datetime` datetime NOT NULL, `o_id` int(11) NOT NULL ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tblproduct` -- INSERT INTO `tblproduct` (`id`, `m_id`, `price`, `quantity`, `u_id`, `status`, `datetime`, `o_id`) VALUES (11, 10, 86.68, 2, 1, 1, '2016-05-09 06:41:06', 8), (10, 9, 1.60, 2, 1, 1, '2016-05-07 18:33:38', 7), (9, 10, 86.68, 2, 1, 1, '2016-05-07 16:26:19', 6); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `u_id` int(11) NOT NULL, `firstname` text NOT NULL, `lastname` text NOT NULL, `email` text NOT NULL, `password` text NOT NULL, `status` int(11) NOT NULL ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`u_id`, `firstname`, `lastname`, `email`, `password`, `status`) VALUES (1, '', '', 'waleed_iiui@yahoo.com', '123', 0), (3, '', '', 'ahmedwaleeed17@yahoo.com', '123', 0), (4, '', '', 'ahmedwaleeedss17@yahoo.com', '123', 0), (5, '', '', 'ahmedwaleeessd17@yahoo.com', '123', 0), (6, '', '', 'admin@ems.com', 'admin', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`c_id`); -- -- Indexes for table `medicine` -- ALTER TABLE `medicine` ADD PRIMARY KEY (`m_id`); -- -- Indexes for table `order` -- ALTER TABLE `order` ADD PRIMARY KEY (`o_id`); -- -- Indexes for table `store` -- ALTER TABLE `store` ADD PRIMARY KEY (`s_id`); -- -- Indexes for table `tblproduct` -- ALTER TABLE `tblproduct` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`u_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `c_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `medicine` -- ALTER TABLE `medicine` MODIFY `m_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `order` -- ALTER TABLE `order` MODIFY `o_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `store` -- ALTER TABLE `store` MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `tblproduct` -- ALTER TABLE `tblproduct` MODIFY `id` int(8) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `u_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7; /*!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 */;
-- [tv_report] creat script. -- @author Hefei Li -- @since Jan 28, 2016 use tv_report; drop table if exists appinstall ; drop table if exists appuninstall ; drop table if exists avro_appstartup ; drop table if exists avro_bootstrap ; drop table if exists avro_bootstrap_20160120 ; drop table if exists avro_endplay ; drop table if exists avro_heartbeat ; drop table if exists avro_startplay ; drop table if exists boot_oversea ; drop table if exists browser_dur ; drop table if exists browser_ver ; drop table if exists browserbaidusrch ; drop table if exists browserbaiduvideosrch ; drop table if exists browserheartbeat ; drop table if exists browserlink ; drop table if exists browsernav ; drop table if exists browsernew ; drop table if exists browserplayvideo ; drop table if exists browserstartup ; drop table if exists cdndispatch ; drop table if exists devicetrace ; drop table if exists errlog ; drop table if exists geraction ; drop table if exists gerdur ; drop table if exists gerheartbeat ; drop table if exists gernew ; drop table if exists gerstartup ; drop table if exists iptv_box ; drop table if exists iptv_group ; drop table if exists iptv_mode ; drop table if exists iptv_upgrade ; drop table if exists letv_play_dur ; drop table if exists letvblock ; drop table if exists letvchswitch ; drop table if exists letvend ; drop table if exists letvenv ; drop table if exists letvinit ; drop table if exists letvplay ; drop table if exists letvplistshow ; drop table if exists letvtime ; drop table if exists mobileappboot ; drop table if exists mobileappinstall ; drop table if exists ott_box ; drop table if exists oversea_tv_ad ; drop table if exists oversea_tv_env ; drop table if exists oversea_tv_env_20150422 ; drop table if exists oversea_tv_env_20151112 ; drop table if exists oversea_tv_env_20160108 ; drop table if exists oversea_tv_er ; drop table if exists oversea_tv_hkanyplex ; drop table if exists oversea_tv_login ; drop table if exists oversea_tv_login_20150422 ; drop table if exists oversea_tv_login_20151112 ; drop table if exists oversea_tv_login_20160108 ; drop table if exists oversea_tv_new ; drop table if exists oversea_tv_op ; drop table if exists oversea_tv_op_20150422 ; drop table if exists oversea_tv_op_20151112 ; drop table if exists oversea_tv_op_20160108 ; drop table if exists oversea_tv_play ; drop table if exists oversea_tv_play_20150422 ; drop table if exists oversea_tv_play_20151112 ; drop table if exists oversea_tv_play_20160108 ; drop table if exists oversea_tv_pv ; drop table if exists oversea_tv_pv_20150422 ; drop table if exists oversea_tv_pv_20151112 ; drop table if exists oversea_tv_pv_20160108 ; drop table if exists oversea_tv_qy ; drop table if exists oversea_tv_qy_20150422 ; drop table if exists oversea_tv_qy_20151112 ; drop table if exists oversea_tv_qy_20160108 ; drop table if exists playblock ; drop table if exists playend ; drop table if exists playerror ; drop table if exists playinit ; drop table if exists playseek ; drop table if exists playstart ; drop table if exists playtime ; drop table if exists resource_app ; drop table if exists resource_channellist ; drop table if exists resource_country ; drop table if exists resource_province ; drop table if exists sdkappcrash ; drop table if exists sdkappdur ; drop table if exists sdkapppagejump ; drop table if exists sdkappstartup ; drop table if exists sdkcustomevent ; drop table if exists shutdown ; drop table if exists stag_appstartup_mac_pn ; drop table if exists stat_crash_daily ; drop table if exists stat_crash_total ; drop table if exists stat_dur_daily ; drop table if exists stat_dur_total ; drop table if exists stat_error_detail ; drop table if exists stat_error_total ; drop table if exists stat_new_daily ; drop table if exists stat_new_total ; drop table if exists stat_open_daily ; drop table if exists stat_open_monthly ; drop table if exists stat_open_total ; drop table if exists stat_open_weekly ; drop table if exists stat_pagejump_daily ; drop table if exists stat_pageview_daily ; drop table if exists stat_pageview_total ; drop table if exists stat_url_daily ; drop table if exists surf ; drop table if exists tvaction ; drop table if exists tvplusend ; drop table if exists tvplusinit ; drop table if exists tvplusplay ; drop table if exists tvplustime ; drop table if exists tvremoterbtn ; drop table if exists unicom_mac ; drop table if exists updownloadfinish ; drop table if exists updownloadstartup ; drop table if exists upfinish ;
INSERT INTO departments (name) VALUES ('Finance'), ('Marketing'), ('Supply Chain'), ('Accounting'), ('Data Analytics'); INSERT INTO roles (title, salary, department_id) VALUES ('Finance Manager', 125000, 1), ('Finance Employee', 70000, 1), ('Marketing Manager', 110000, 2), ('Marketing Employee', 60000, 2), ('Supply Chain Manager', 130000, 3), ('Supply Chain Employee', 75000, 3), ('Accounting Manager', 140000, 4), ('Accounting Employee', 80000, 4), ('Data Analytics Manager', 160000, 5), ('Data Analytics Employee', 100000, 5); INSERT INTO employees (first_name, last_name, role_id, manager_id) VALUES ('John', 'Smith', 1, NULL), ('Jane', 'Brown', 3, NULL), ('Thomas', 'Cruz', 5, NULL), ('Abby', 'Barberet', 7, NULL), ('David', 'Gravel', 9, NULL), ('Erin', 'Jorgenson', 2, 1), ('Clara', 'Painter', 4, 2), ('Joseph', 'Dawson', 6, 3), ('Erika', 'Alfaro', 8, 4), ('Patrick', 'Castillo', 10, 5);
-- phpMyAdmin SQL Dump -- version 4.0.4.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Oct 08, 2015 at 09:43 AM -- Server version: 5.5.32-log -- PHP Version: 5.5.28 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: `audioapp` -- CREATE DATABASE IF NOT EXISTS `audioapp` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `audioapp`; -- -------------------------------------------------------- -- -- Table structure for table `album` -- CREATE TABLE IF NOT EXISTS `album` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `album_name` varchar(200) DEFAULT NULL, `artist` varchar(200) DEFAULT NULL, `genre` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `song` -- CREATE TABLE IF NOT EXISTS `song` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `album` int(11) NOT NULL, `added` date DEFAULT NULL, `song` varchar(200) DEFAULT NULL, `duration` time NOT NULL, `played_times` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `song` (`song`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
INSERT INTO user (username, password, age, nickname, mail, memo) VALUES ('zhangsan', '123456', 18, '张三', '1111@qq.com', 'hahahah'); INSERT INTO user (username, password, age, nickname, mail, memo) VALUES ('lis', '123456', 19, '李四', '123131@qq.com', 'xixiixxi'); INSERT INTO user (username, password, age, nickname, mail, memo) VALUES ('wanger', '123456', 29, '王二', '12131984@qq.com', 'dqdh');
-- phpMyAdmin SQL Dump -- version 4.8.4 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Mar 09, 2019 at 03:19 PM -- Server version: 10.1.37-MariaDB -- PHP Version: 7.3.1 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: `bookshop-backend` -- -- -------------------------------------------------------- -- -- Table structure for table `cart` -- CREATE TABLE `cart` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `quantity` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `cart` -- INSERT INTO `cart` (`id`, `user_id`, `product_id`, `quantity`) VALUES (5, 0, 3, 1), (6, 0, 1, 1), (7, 0, 2, 1); -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE `category` ( `id` int(11) NOT NULL, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `cat_slug` varchar(150) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `category` -- INSERT INTO `category` (`id`, `name`, `cat_slug`) VALUES (1, 'Jack Vance', 'jack-vance'), (2, 'Stephen King ', 'stephen-king'), (3, 'J.K. Rowling ', 'j-k-rowling '); -- -------------------------------------------------------- -- -- Table structure for table `details` -- CREATE TABLE `details` ( `id` int(11) NOT NULL, `sales_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `quantity` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` int(11) NOT NULL, `category_id` int(11) NOT NULL, `name` mediumtext COLLATE utf8_unicode_ci NOT NULL, `description` mediumtext COLLATE utf8_unicode_ci NOT NULL, `slug` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `price` double NOT NULL, `photo` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `date_view` date NOT NULL, `counter` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `category_id`, `name`, `description`, `slug`, `price`, `photo`, `date_view`, `counter`) VALUES (1, 3, 'Harry Potter and the Chamber of Secrets', '<p>The Dursleys were so mean and hideous that summer that all Harry Potter wanted was to get back to the Hogwarts School for Witchcraft and Wizardry. But just as he\'s packing his bags, Harry receives a warning from a strange, impish creature named Dobby who says that if Harry Potter returns to Hogwarts, disaster will strike.\r\n</p>\r\n', 'Harry-Potter-and-the-Chamber-of-Secrets', 150, 'harry1.jpg', '2019-03-09', 13), (2, 2, 'Elevation', '<p>In the small town of Castle Rock, the setting of many of King’s most iconic stories, Scott is engaged in a low grade—but escalating—battle with the lesbians next door whose dog regularly drops his business on Scott’s lawn. One of the women is friendly; the other, cold as ice. Both are trying to launch a new restaurant, but the people of Castle Rock want no part of a gay married couple, and the place is in trouble. When Scott finally understands the prejudices they face–including his own—he tries to help. Unlikely alliances, the annual foot race, and the mystery of Scott’s affliction bring out the best in people who have indulged the worst in themselves and others.</p>\r\n', 'elevation', 799, 'King1.jpg', '2019-03-09', 54), (3, 1, 'Tales of the Dying Earth', '<p>Jack Vance is one of the most remarkable talents to ever grace the world of science fiction. His unique, stylish voice has been beloved by generations of readers. One of his enduring classics is his 1964 novel, The Dying Earth, and its sequels--a fascinating, baroque tale set on a far-future Earth, under a giant red sun that is soon to go out forever.\r\n\r\nThis omnibus volume comprised all four books in the series, The Dying Earth, The Eyes of the Overworld, Cugel\'s Saga and Rialto the Magnificent. It is a must-read for every sf fan.</p>\r\n', 'Tales-of-the-Dying-Earth', 79, 'jack1.jpg', '2019-03-09', 50); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `email` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `firstname` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `lastname` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `address` mediumtext COLLATE utf8_unicode_ci NOT NULL, `postcode` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `city` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `created_on` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `email`, `firstname`, `lastname`, `address`, `postcode`, `city`, `created_on`) VALUES (14, 'sureerat1988@gmail.com', 'Sureerat', 'Albertsson', '', '', '', '2019-03-09'), (15, 'mikael1988@gmail.com', 'Sureerat', 'Albertsson', '', '', '', '2019-03-09'), (16, 'b988@gmail.com', 'Sureerat', 'Albertsson', '', '', '', '2019-03-09'), (17, 'ssss@gmail.com', 'Sureerat', 'Albertsson', '', '', '', '2019-03-09'), (18, 'mm@gmail.com', 'Sureerat', 'Albertsson', 'Folköpingsvägen 13', '121 39', 'Johanneshov', '0000-00-00'), (19, 'test@gmail.com', 'Sureerat', 'Albertsson', 'Folköpingsvägen 13', '121 39', 'Johanneshov', '0000-00-00'), (20, 'test@gmail.se', 'Sureerat', 'Albertsson', 'Folköpingsvägen 13', '121 39', 'Johanneshov', '0000-00-00'), (21, 'test@gmail.se', 'Sureerat', 'Albertsson', 'Folköpingsvägen 13', '121 39', 'Johanneshov', '0000-00-00'), (22, 'test@gmail.se', 'Sureerat', 'Albertsson', 'Folköpingsvägen 13', '121 39', 'Johanneshov', '0000-00-00'); -- -- Indexes for dumped tables -- -- -- Indexes for table `cart` -- ALTER TABLE `cart` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`); -- -- Indexes for table `details` -- ALTER TABLE `details` 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`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `cart` -- ALTER TABLE `cart` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `details` -- ALTER TABLE `details` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23; 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 */;
with totalita as ( with fb as ( select LOWER(regexp_replace(unaccent(name), '[^a-zA-Z0-9]+|Boutique|Hotel|Penzion|Pension|Kosice' , '','g')) as name, count(*) nm_fb from afbplacetest group by name order by name ), goog as ( select LOWER(regexp_replace(unaccent(name), '[^a-zA-Z0-9]+|Boutique|Hotel|Penzion|Pension|Kosice' , '','g')) as name, count(*) nm_gp from googleplacestest group by name ), fq as ( select LOWER(regexp_replace(unaccent(name), '[^a-zA-Z0-9]+|Boutique|Hotel|Penzion|Pension|Kosice' , '','g')) as name, count(*) nm_fq from forsquaretest group by name ), ta as ( select LOWER(regexp_replace(unaccent(name), '[^a-zA-Z0-9]+|Boutique|Hotel|Penzion|Pension|Kosice' , '','g')) as name, count (*) nm_ta from tripadvisortest group by name ), book as ( select LOWER(regexp_replace(unaccent(name), '[^a-zA-Z0-9]+|Boutique|Hotel|Penzion|Pension|Kosice' , '','g')) as name, count(*) nm_bk from bookingtest group by name ), abb as ( select LOWER(regexp_replace(unaccent(name), '[^a-zA-Z0-9]+|Boutique|Hotel|Penzion|Pension|Kosice' , '','g')) as name, count(*) nm_abb from airbnbtest group by name ) select *, booking + google + tripadvisor + facebook + foursquare as total from (select name, SUM(Coalesce(book.nm_bk, 0)) booking, SUM(Coalesce(goog.nm_gp, 0)) google, SUM(Coalesce(ta.nm_ta, 0)) tripadvisor, SUM(Coalesce(fb.nm_fb, 0)) facebook, SUM(Coalesce(fq.nm_fq, 0)) foursquare, SUM(Coalesce(abb.nm_abb, 0)) airbnb from book full outer join goog using(name) full outer join ta using(name) full outer join fb using(name) full outer join fq using(name) full outer join abb using(name) group by name) t order by total desc )select * from totalita --select * from bookingtest where name like '%Maraton%'
-- phpMyAdmin SQL Dump -- version 3.3.9 -- http://www.phpmyadmin.net -- -- 主机: localhost -- 生成日期: 2016 年 01 月 15 日 09:43 -- 服务器版本: 5.5.8 -- PHP 版本: 5.3.5 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 */; -- -- 数据库: `amc` -- -- -------------------------------------------------------- -- -- 表的结构 `ci_admin` -- CREATE TABLE IF NOT EXISTS `ci_admin` ( `uid` smallint(6) NOT NULL AUTO_INCREMENT, `username` varchar(20) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '用户名称', `userpwd` varchar(32) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '密码', `status` tinyint(1) DEFAULT '1' COMMENT '是否锁定', `name` varchar(25) COLLATE utf8_unicode_ci DEFAULT '', `mobile` varchar(20) COLLATE utf8_unicode_ci DEFAULT '', `lever` text COLLATE utf8_unicode_ci COMMENT '权限', `roleid` tinyint(1) DEFAULT '1' COMMENT '角色ID', PRIMARY KEY (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='后台用户' AUTO_INCREMENT=8 ; -- -- 转存表中的数据 `ci_admin` -- INSERT INTO `ci_admin` (`uid`, `username`, `userpwd`, `status`, `name`, `mobile`, `lever`, `roleid`) VALUES (1, 'admin', '12b99e6b88f9d65b6b229c936702928d', 1, '罗经理', '', NULL, 0), (3, 'zhouquan', 'f6f4404156560e3edd6dac26c37b5cea', 1, '周全', '13245678901', '1,2,3,4,5,31,32,33,34,35,36,37,38,39', 1), (4, 'zangyize', '7b209910d2a43f9287e87b296a8f8af6', 1, '臧艺泽', '13245678909', '11,12,13,14,15,16,17,18,19,20,21,40,41,42,43,44,45,46,47,48', 1), (5, 'guanqinyu', '4908445a82478261f8e3055e69770c4a', 1, '关钦玉', '13245678908', '25,26,27,28,29,30,40,41,42,68,69,70,71,72', 1), (6, 'wangzhao', '3c28ddaf923edd1c01b78de62922abaa', 1, '王曌', '13245678907', '11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6,10,7,8,9,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83', 1), (7, 'yuanchunyu', '96b6f885ec7f802e6dfd07ee53b36c63', 1, '袁春宇', '13245678906', '1,2,3,4,5,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6,10,7,8,9,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83', 1); -- -------------------------------------------------------- -- -- 表的结构 `ci_category` -- CREATE TABLE IF NOT EXISTS `ci_category` ( `id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT '导航栏目', `name` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '栏目名称', `pid` smallint(6) DEFAULT '0' COMMENT '上级栏目ID', `path` varchar(100) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '栏目路径', `depth` tinyint(2) DEFAULT '1' COMMENT '层次', `ordnum` int(11) DEFAULT '0' COMMENT '排序', `status` tinyint(1) DEFAULT '1' COMMENT '状态', `type` varchar(25) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '区别', PRIMARY KEY (`id`), KEY `id` (`id`), KEY `pid` (`pid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='客户、商品、供应商类别' AUTO_INCREMENT=14 ; -- -- 转存表中的数据 `ci_category` -- INSERT INTO `ci_category` (`id`, `name`, `pid`, `path`, `depth`, `ordnum`, `status`, `type`) VALUES (1, '大', 0, '1', 1, 0, 1, 'trade'), (2, '中', 0, '2', 1, 0, 1, 'trade'), (3, '小', 0, '3', 1, 0, 1, 'trade'), (4, '高级信用', 0, '4', 1, 0, 1, 'supplytype'), (5, '中级信用', 0, '5', 1, 0, 1, 'supplytype'), (6, '低级信用', 0, '6', 1, 0, 1, 'supplytype'), (7, '新供应商', 0, '7', 1, 0, 1, 'supplytype'), (8, 'A', 0, '8', 1, 0, 1, 'customertype'), (9, 'AA', 0, '9', 1, 0, 1, 'customertype'), (10, 'AAA', 0, '10', 1, 0, 1, 'customertype'), (11, 'AAAA', 0, '11', 1, 0, 1, 'customertype'), (12, 'AAAAA', 0, '12', 1, 0, 1, 'customertype'); -- -------------------------------------------------------- -- -- 表的结构 `ci_category_type` -- CREATE TABLE IF NOT EXISTS `ci_category_type` ( `id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT '导航栏目', `name` varchar(20) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '栏目名称', `number` varchar(15) COLLATE utf8_unicode_ci DEFAULT '0' COMMENT '上级栏目ID', `status` tinyint(1) DEFAULT '1' COMMENT '状态', PRIMARY KEY (`id`), KEY `id` (`id`), KEY `pid` (`number`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='客户、商品、供应商类别' AUTO_INCREMENT=4 ; -- -- 转存表中的数据 `ci_category_type` -- INSERT INTO `ci_category_type` (`id`, `name`, `number`, `status`) VALUES (1, '商品类别', 'trade', 1), (2, '户类别', 'customertype', 1), (3, '供应商类别', 'supplytype', 1); -- -------------------------------------------------------- -- -- 表的结构 `ci_contact` -- CREATE TABLE IF NOT EXISTS `ci_contact` ( `id` smallint(6) NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '0' COMMENT '客户名称', `number` varchar(50) DEFAULT '0' COMMENT '客户编号', `categoryid` smallint(6) DEFAULT '0' COMMENT '客户类别', `categoryname` varchar(50) DEFAULT '' COMMENT '分类名称', `taxrate` double DEFAULT '0' COMMENT '税率', `amount` double DEFAULT '0' COMMENT '期初应付款', `periodmoney` double DEFAULT '0' COMMENT '期初预付款', `begindate` datetime DEFAULT NULL COMMENT '余额日期', `remark` varchar(100) DEFAULT '' COMMENT '备注', `linkmans` text COMMENT '客户联系方式', `status` tinyint(1) DEFAULT '1' COMMENT '状态', `type` tinyint(1) DEFAULT '1' COMMENT '1客户 2供应商', `contact` varchar(255) DEFAULT '', `credit` varchar(5) NOT NULL DEFAULT 'A', `contactaddress` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='客户、供应商管理' AUTO_INCREMENT=30 ; -- -- 转存表中的数据 `ci_contact` -- INSERT INTO `ci_contact` (`id`, `name`, `number`, `categoryid`, `categoryname`, `taxrate`, `amount`, `periodmoney`, `begindate`, `remark`, `linkmans`, `status`, `type`, `contact`, `credit`, `contactaddress`) VALUES (21, '爱信精机', 's000003', 5, '中级信用', 17, 0, 0, NULL, '', '[]', 1, 2, 's000003 爱信精机 []', 'AAA', ''), (19, '博世', 's000001', 4, '高级信用', 17, 0, 0, '2014-09-01 00:00:00', '', '[]', 1, 2, 's000001 博世 []', 'AAAAA', ''), (20, '大陆集团', 's000002', 5, '中级信用', 17, 0, 0, NULL, '', '[]', 1, 2, 's000002 大陆集团 []', 'AAAA', ''), (22, '佛吉亚', 's000004', 6, '低级信用', 17, 0, 0, NULL, '', '[]', 1, 2, 's000004 佛吉亚 []', 'AA', ''), (23, '江森自控', 's000005', 7, '新供应商', 17, 0, 0, NULL, '', '[]', 1, 2, 's000005 江森自控 []', 'A', ''), (24, '广汇汽车服务股份公司', 'c000001', 12, 'AAAAA', 0, 0, 0, '2014-09-01 00:00:00', '', '[]', 1, 1, 'c000001 广汇汽车服务股份公司 []', 'AAAAA', ''), (25, '国机汽车股份有限公司', 'c000002', 11, 'AAAA', 0, 0, 0, '2014-09-01 00:00:00', '', '[]', 1, 1, 'c000002 国机汽车股份有限公司 []', 'AAAA', ''), (26, '深圳东风南方实业有限公司', 'c000003', 10, 'AAA', 0, 0, 0, '2014-09-01 00:00:00', '', '[]', 1, 1, 'c000003 深圳东风南方实业有限公司 []', 'AAA', ''), (27, '浙江和诚汽车有限公司', 'c000004', 9, 'AA', 0, 0, 0, NULL, '', '[]', 1, 1, 'c000004 浙江和诚汽车有限公司 []', 'AA', ''), (28, '鸿粤汽车销售集团有限公司', 'c000005', 8, 'A', 0, 0, 0, NULL, '', '[]', 1, 1, 'c000005 鸿粤汽车销售集团有限公司 []', 'A', ''), (29, '广东前锋汽车修理厂', 'c000006', 8, 'A', 0, 0, 0, NULL, '', '[]', 1, 1, 'c000006 广东前锋汽车修理厂 []', 'A', ''); -- -------------------------------------------------------- -- -- 表的结构 `ci_goods` -- CREATE TABLE IF NOT EXISTS `ci_goods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8 DEFAULT '', `number` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '商品编号', `quantity` double DEFAULT '0' COMMENT '库存数量', `spec` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '规格', `unitid` smallint(6) DEFAULT '0' COMMENT '单位ID', `unitname` varchar(10) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单位名称', `categoryid` smallint(6) DEFAULT '0' COMMENT '商品分类ID', `categoryname` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '分类名称', `purprice` double DEFAULT '0' COMMENT '预计采购价', `saleprice` double DEFAULT '0' COMMENT '预计销售价', `unitcost` double DEFAULT '0' COMMENT '单位成本', `amount` double DEFAULT '0' COMMENT '期初总价', `remark` varchar(50) COLLATE utf8_unicode_ci DEFAULT '', `status` tinyint(1) DEFAULT '1' COMMENT '状态', `goods` varchar(100) COLLATE utf8_unicode_ci DEFAULT '', `safequantity` double NOT NULL DEFAULT '0' COMMENT '安全库存', `safelevel` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '安全库存' COMMENT '库存水平', PRIMARY KEY (`id`), KEY `number` (`number`), KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='商品管理' AUTO_INCREMENT=10 ; -- -- 转存表中的数据 `ci_goods` -- INSERT INTO `ci_goods` (`id`, `name`, `number`, `quantity`, `spec`, `unitid`, `unitname`, `categoryid`, `categoryname`, `purprice`, `saleprice`, `unitcost`, `amount`, `remark`, `status`, `goods`, `safequantity`, `safelevel`) VALUES (3, '钢板', 'g000001', 500, '', 2, '件', 1, '大', 400, 800, 500, 0, '', 1, 'g000001 钢板_', 100, '安全库存'), (4, '雨刮器', 'g000002', 100, '', 2, '件', 2, '中', 200, 400, 300, 0, '', 1, 'g000002 雨刮器_', 50, '危险库存'), (5, '方向盘锁', 'g000003', 0, '', 1, '个', 3, '小', 50, 100, 70, 0, '', 1, 'g000003 方向盘锁_', 200, '严重缺货'), (6, '胎压监视系统', 'g000004', 0, '', 7, '套', 1, '大', 800, 1500, 900, 0, '', 1, 'g000004 胎压监视系统_', 50, '严重缺货'), (7, '离合器', 'g000005', 500, '', 2, '件', 2, '中', 500, 800, 650, 0, '', 1, 'g000005 离合器_', 100, '安全库存'), (8, '火花塞', 'g000006', 400, '', 1, '个', 3, '小', 5, 10, 5, 0, '', 1, 'g000006 火花塞_', 800, '危险库存'), (9, '润滑油', 'g000007', 500, '', 8, '桶', 2, '中', 70, 100, 80, 0, '', 1, 'g000007 润滑油_', 100, '安全库存'); -- -------------------------------------------------------- -- -- 表的结构 `ci_invoi` -- CREATE TABLE IF NOT EXISTS `ci_invoi` ( `id` int(11) NOT NULL AUTO_INCREMENT, `contactid` smallint(6) DEFAULT '0' COMMENT '供应商ID', `contactname` varchar(50) DEFAULT '', `billno` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单据编号', `uid` smallint(6) DEFAULT '0', `username` varchar(50) DEFAULT '' COMMENT '制单人', `type` tinyint(1) DEFAULT '1' COMMENT '1其他入库 2盘盈 3其他出库 4盘亏', `typename` varchar(20) DEFAULT '', `totalamount` double DEFAULT '0' COMMENT '金额', `totalqty` double DEFAULT '0', `billdate` date DEFAULT NULL COMMENT '单据日期', `description` varchar(50) DEFAULT '' COMMENT '备注', `billtype` tinyint(1) DEFAULT '1' COMMENT '1入库 2出库', `status` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='其他入库、出库记录' AUTO_INCREMENT=3 ; -- -- 转存表中的数据 `ci_invoi` -- INSERT INTO `ci_invoi` (`id`, `contactid`, `contactname`, `billno`, `uid`, `username`, `type`, `typename`, `totalamount`, `totalqty`, `billdate`, `description`, `billtype`, `status`) VALUES (2, 21, 's000003 爱信精机', 'XS201601151553324', 1, '罗经理', 1, '', 500, 1, '2016-01-15', '', 1, 0), (1, 29, 'c000006 广东前锋汽车修理厂', 'XS201601151529471', 1, '罗经理', 1, '', 10000, 100, '2016-01-15', '', 2, 2); -- -------------------------------------------------------- -- -- 表的结构 `ci_invoi_info` -- CREATE TABLE IF NOT EXISTS `ci_invoi_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invoiid` int(11) DEFAULT '0', `contactno` varchar(50) DEFAULT '' COMMENT '供应商编号', `contactid` smallint(6) DEFAULT '0' COMMENT '供应商ID', `contactname` varchar(50) DEFAULT '' COMMENT '供应商名称', `billno` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单据编号', `type` tinyint(1) DEFAULT '1' COMMENT '1其他入库 2盘盈 3其他出库 4盘亏', `typename` varchar(20) DEFAULT '', `amount` double DEFAULT '0' COMMENT '购货金额', `billdate` date DEFAULT NULL COMMENT '单据日期', `description` varchar(50) DEFAULT '' COMMENT '备注', `goodsno` varchar(50) DEFAULT '' COMMENT '商品编号', `goodsid` int(11) DEFAULT '0' COMMENT '商品ID', `price` double DEFAULT '0' COMMENT '单价', `qty` double DEFAULT '0' COMMENT '数量', `billtype` tinyint(1) DEFAULT '1' COMMENT '1入库 2出库', PRIMARY KEY (`id`), KEY `goodsid` (`goodsid`), KEY `type` (`type`), KEY `billdate` (`billdate`), KEY `type,billdate` (`type`,`billdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='其他入库、出库明细' AUTO_INCREMENT=1 ; -- -- 转存表中的数据 `ci_invoi_info` -- -- -------------------------------------------------------- -- -- 表的结构 `ci_invoi_type` -- CREATE TABLE IF NOT EXISTS `ci_invoi_type` ( `id` smallint(6) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT '' COMMENT '名称', `inout` tinyint(1) DEFAULT '1' COMMENT '1 入库 -1出库', `status` tinyint(1) DEFAULT '1', `type` varchar(10) DEFAULT '', `default` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='其他入库类型' AUTO_INCREMENT=5 ; -- -- 转存表中的数据 `ci_invoi_type` -- INSERT INTO `ci_invoi_type` (`id`, `name`, `inout`, `status`, `type`, `default`) VALUES (1, '其他入库', 1, 1, 'in', 1), (2, '盘盈', 1, 1, 'in', 0), (3, '其他出库', -1, 1, 'out', 1), (4, '盘亏', -1, 1, 'out', 0); -- -------------------------------------------------------- -- -- 表的结构 `ci_invpu` -- CREATE TABLE IF NOT EXISTS `ci_invpu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `contactid` smallint(6) DEFAULT '0' COMMENT '供应商ID', `contactname` varchar(50) DEFAULT '' COMMENT '供应商名称', `billno` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单据编号', `uid` smallint(6) DEFAULT '0', `username` varchar(50) DEFAULT '' COMMENT '制单人', `type` tinyint(1) DEFAULT '1' COMMENT '1购货 2退货', `totalamount` double DEFAULT '0' COMMENT '购货总金额', `amount` double DEFAULT '0' COMMENT '折扣后金额', `rpamount` double DEFAULT '0' COMMENT '已付款金额', `billdate` date DEFAULT NULL COMMENT '单据日期', `description` varchar(100) DEFAULT '' COMMENT '备注', `arrears` double DEFAULT '0' COMMENT '本次欠款', `disrate` double DEFAULT '0' COMMENT '折扣率', `disamount` double DEFAULT '0' COMMENT '折扣金额', `totalqty` double DEFAULT '0' COMMENT '总数量', `totalarrears` double DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='采购记录' AUTO_INCREMENT=49 ; -- -- 转存表中的数据 `ci_invpu` -- INSERT INTO `ci_invpu` (`id`, `contactid`, `contactname`, `billno`, `uid`, `username`, `type`, `totalamount`, `amount`, `rpamount`, `billdate`, `description`, `arrears`, `disrate`, `disamount`, `totalqty`, `totalarrears`) VALUES (48, 21, 's000003 爱信精机', 'CG201601151553327', 1, '罗经理', 1, 500, 500, 0, '2016-01-15', '', 500, 0, 0, 1, 0); -- -------------------------------------------------------- -- -- 表的结构 `ci_invpu_info` -- CREATE TABLE IF NOT EXISTS `ci_invpu_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invpuid` int(11) DEFAULT '0' COMMENT '关联ID', `contactno` varchar(50) DEFAULT '' COMMENT '供应商编号', `contactid` smallint(6) DEFAULT '0' COMMENT '供应商ID', `contactname` varchar(50) DEFAULT '' COMMENT '供应商名称', `billno` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单据编号', `type` tinyint(1) DEFAULT '1' COMMENT '1采购 2退货', `amount` double DEFAULT '0' COMMENT '购货金额', `billdate` date DEFAULT NULL COMMENT '单据日期', `description` varchar(50) DEFAULT '' COMMENT '备注', `goodsno` varchar(50) DEFAULT '' COMMENT '商品编号', `goodsid` int(11) DEFAULT '0' COMMENT '商品ID', `price` double DEFAULT '0' COMMENT '单价', `deduction` double DEFAULT '0' COMMENT '折扣额', `discountrate` double DEFAULT '0' COMMENT '折扣率', `qty` double DEFAULT '0' COMMENT '数量', PRIMARY KEY (`id`), KEY `goodsid` (`goodsid`), KEY `type` (`type`), KEY `billdate` (`billdate`), KEY `type,billdate` (`type`,`billdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='采购明细' AUTO_INCREMENT=55 ; -- -- 转存表中的数据 `ci_invpu_info` -- INSERT INTO `ci_invpu_info` (`id`, `invpuid`, `contactno`, `contactid`, `contactname`, `billno`, `type`, `amount`, `billdate`, `description`, `goodsno`, `goodsid`, `price`, `deduction`, `discountrate`, `qty`) VALUES (54, 48, '', 21, 's000003 爱信精机', 'CG201601151553327', 1, 500, '2016-01-15', '', 'g000005', 7, 500, 0, 0, 1), (53, 47, '', 19, 's000001 博世', 'CG201601151437068', 1, 10000, '2016-01-15', '', 'g000003', 5, 50, 0, 0, 200), (52, 46, '', 19, 's000001 博世', 'CG201601151419119', 1, 10000, '2016-01-15', '', 'g000003', 5, 50, 0, 0, 200), (51, 45, '', 23, 's000005 江森自控', 'CG201601151408459', 1, 10000, '2016-01-15', '', 'g000003', 5, 50, 0, 0, 200); -- -------------------------------------------------------- -- -- 表的结构 `ci_invsa` -- CREATE TABLE IF NOT EXISTS `ci_invsa` ( `id` int(11) NOT NULL AUTO_INCREMENT, `contactid` smallint(6) unsigned zerofill DEFAULT NULL COMMENT '供应商ID', `contactname` varchar(50) DEFAULT '' COMMENT '供应商名称', `billno` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单据编号', `uid` smallint(6) DEFAULT '0', `username` varchar(50) DEFAULT '' COMMENT '制单人', `type` tinyint(1) DEFAULT '1' COMMENT '1销货 2退货', `totalamount` double DEFAULT '0' COMMENT '购货总金额', `amount` double DEFAULT '0' COMMENT '折扣后金额', `rpamount` double DEFAULT '0' COMMENT '已付款金额', `billdate` date DEFAULT NULL COMMENT '单据日期', `description` varchar(100) DEFAULT '' COMMENT '备注', `arrears` double DEFAULT '0' COMMENT '本次欠款', `disrate` double DEFAULT '0' COMMENT '折扣率', `disamount` double DEFAULT '0' COMMENT '折扣金额', `totalqty` double DEFAULT '0' COMMENT '总数量', `totalarrears` double DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='销售记录' AUTO_INCREMENT=32 ; -- -- 转存表中的数据 `ci_invsa` -- INSERT INTO `ci_invsa` (`id`, `contactid`, `contactname`, `billno`, `uid`, `username`, `type`, `totalamount`, `amount`, `rpamount`, `billdate`, `description`, `arrears`, `disrate`, `disamount`, `totalqty`, `totalarrears`, `status`) VALUES (31, 000029, 'c000006 广东前锋汽车修理厂', 'XS201601151529479', 1, '罗经理', 1, 10000, 10000, 0, '2016-01-15', '', 10000, 0, 0, 100, 0, 0); -- -------------------------------------------------------- -- -- 表的结构 `ci_invsa_info` -- CREATE TABLE IF NOT EXISTS `ci_invsa_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invsaid` int(11) DEFAULT '0' COMMENT '关联ID', `contactid` smallint(6) DEFAULT '0' COMMENT '客户ID', `contactno` varchar(50) DEFAULT '' COMMENT '客户编号', `contactname` varchar(50) DEFAULT '' COMMENT '客户名称', `billno` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '单据编号', `type` tinyint(1) DEFAULT '1' COMMENT '1销售 2退货', `amount` double DEFAULT '0' COMMENT '销货金额', `billdate` date DEFAULT NULL COMMENT '单据日期', `description` varchar(50) DEFAULT '' COMMENT '备注', `goodsid` int(11) DEFAULT '0' COMMENT '商品ID', `goodsno` varchar(50) DEFAULT '' COMMENT '商品编号', `price` double DEFAULT '0' COMMENT '单价', `deduction` double DEFAULT '0' COMMENT '折扣额', `discountrate` double DEFAULT '0' COMMENT '折扣率', `qty` double DEFAULT '0' COMMENT '数量', PRIMARY KEY (`id`), KEY `goodsid` (`goodsid`), KEY `type` (`type`), KEY `type,billdate` (`type`,`billdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='采购明细' AUTO_INCREMENT=40 ; -- -- 转存表中的数据 `ci_invsa_info` -- INSERT INTO `ci_invsa_info` (`id`, `invsaid`, `contactid`, `contactno`, `contactname`, `billno`, `type`, `amount`, `billdate`, `description`, `goodsid`, `goodsno`, `price`, `deduction`, `discountrate`, `qty`) VALUES (37, 1, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151433146', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (24, 3, 24, '', 'c000001 广汇汽车服务股份公司', 'XS201601150247011', 1, 1500, '2016-01-15', '', 6, 'g000004', 1500, 0, 0, 1), (25, 4, 25, '', 'c000002 国机汽车股份有限公司', 'XS201601150302518', 1, 100, '2016-01-15', '', 5, 'g000003', 100, 0, 0, 1), (26, 1, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601150305310', 1, 800, '2016-01-15', '', 3, 'g000001', 800, 0, 0, 1), (35, 0, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151428156', 1, 100, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 1), (36, 0, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151431042', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (27, 1, 28, '', 'c000005 鸿粤汽车销售集团有限公司', 'XS201601151213132', 1, 10, '2016-01-15', '', 8, 'g000006', 10, 0, 0, 1), (28, 1, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151220316', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (29, 1, 27, '', 'c000004 浙江和诚汽车有限公司', 'XS201601151340023', 1, 10000, '2016-01-15', '', 5, 'g000003', 100, 0, 0, 100), (30, 0, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151352303', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (31, 0, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151406593', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (32, 1, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151414492', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (33, 0, 27, '', 'c000004 浙江和诚汽车有限公司', 'XS201601151417491', 1, 100, '2016-01-15', '', 5, 'g000003', 100, 0, 0, 1), (34, 1, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151421556', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100), (38, 0, 27, '', 'c000004 浙江和诚汽车有限公司', 'XS201601151435576', 1, 100, '2016-01-15', '', 5, 'g000003', 100, 0, 0, 1), (39, 1, 29, '', 'c000006 广东前锋汽车修理厂', 'XS201601151529479', 1, 10000, '2016-01-15', '', 9, 'g000007', 100, 0, 0, 100); -- -------------------------------------------------------- -- -- 表的结构 `ci_lack_info` -- CREATE TABLE IF NOT EXISTS `ci_lack_info` ( `id` int(11) NOT NULL, `lackno` varchar(50) CHARACTER SET utf8mb4 NOT NULL, `contactorderid` int(11) NOT NULL, `goodsname` varchar(50) CHARACTER SET utf8 NOT NULL, `goodsno` varchar(50) CHARACTER SET utf8 NOT NULL, `lackqty` double NOT NULL, `contactdate` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='缺货信息'; -- -- 转存表中的数据 `ci_lack_info` -- INSERT INTO `ci_lack_info` (`id`, `lackno`, `contactorderid`, `goodsname`, `goodsno`, `lackqty`, `contactdate`) VALUES (1, 'XS201601151370023', 1, '方向盘锁', 'g000003', 100, '2016-01-15'); -- -------------------------------------------------------- -- -- 表的结构 `ci_log` -- CREATE TABLE IF NOT EXISTS `ci_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userid` smallint(6) DEFAULT '0' COMMENT '用户ID', `name` varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT '' COMMENT '姓名', `log` varchar(50) DEFAULT '' COMMENT '日志内容', `type` tinyint(1) DEFAULT '1' COMMENT ' ', `username` varchar(50) DEFAULT '' COMMENT '用户名', `modifytime` datetime DEFAULT NULL COMMENT '写入日期', `adddate` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='操作日志' AUTO_INCREMENT=261 ; -- -- 转存表中的数据 `ci_log` -- INSERT INTO `ci_log` (`id`, `userid`, `name`, `log`, `type`, `username`, `modifytime`, `adddate`) VALUES (260, 1, '罗经理', '新增购货单 单据编号:CG201601151553327', 1, 'admin', '2016-01-15 15:53:32', '2016-01-15'), (259, 1, '罗经理', '转为销售帐', 1, 'admin', '2016-01-15 15:52:50', '2016-01-15'), (258, 1, '罗经理', '确认出库', 1, 'admin', '2016-01-15 15:52:35', '2016-01-15'), (257, 1, '罗经理', '新增销货单 单据编号:XS201601151529479', 1, 'admin', '2016-01-15 15:29:47', '2016-01-15'), (255, 1, '罗经理', '确认入库', 1, 'admin', '2016-01-15 14:37:36', '2016-01-15'), (256, 1, '罗经理', '转为销售帐', 1, 'admin', '2016-01-15 14:37:55', '2016-01-15'), (254, 1, '罗经理', '新增购货单 单据编号:CG201601151437068', 1, 'admin', '2016-01-15 14:37:06', '2016-01-15'), (253, 1, '罗经理', '登陆成功 用户名:admin', 1, 'admin', '2016-01-15 14:36:35', '2016-01-15'), (252, 6, '王曌', '转为销售帐', 1, 'wangzhao', '2016-01-15 14:35:19', '2016-01-15'), (251, 6, '王曌', '确认出库', 1, 'wangzhao', '2016-01-15 14:35:01', '2016-01-15'), (245, 1, '罗经理', '登陆成功 用户名:admin', 1, 'admin', '2016-01-15 14:18:27', '2016-01-15'), (246, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 14:23:47', '2016-01-15'), (247, 6, '王曌', '确认出库', 1, 'wangzhao', '2016-01-15 14:24:07', '2016-01-15'), (248, 6, '王曌', '删除其他出库 单据编号:XS201601151421559', 1, 'wangzhao', '2016-01-15 14:31:53', '2016-01-15'), (249, 6, '王曌', '新增销货单 单据编号:XS201601151433146', 1, 'wangzhao', '2016-01-15 14:33:14', '2016-01-15'), (250, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 14:34:46', '2016-01-15'), (244, 6, '王曌', '转为销售帐', 1, 'wangzhao', '2016-01-15 14:17:16', '2016-01-15'), (243, 6, '王曌', '确认出库', 1, 'wangzhao', '2016-01-15 14:16:54', '2016-01-15'), (242, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 14:16:31', '2016-01-15'), (241, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 14:11:24', '2016-01-15'), (240, 1, '罗经理', '确认入库', 1, 'admin', '2016-01-15 14:09:18', '2016-01-15'), (239, 1, '罗经理', '新增购货单 单据编号:CG201601151408459', 1, 'admin', '2016-01-15 14:08:45', '2016-01-15'), (238, 1, '罗经理', '登陆成功 用户名:admin', 1, 'admin', '2016-01-15 14:08:07', '2016-01-15'), (237, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 14:02:30', '2016-01-15'), (236, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 14:01:09', '2016-01-15'), (235, 6, '王曌', '确认出库', 1, 'wangzhao', '2016-01-15 13:56:13', '2016-01-15'), (233, 1, '罗经理', '登陆成功 用户名:admin', 1, 'admin', '2016-01-15 13:51:16', '2016-01-15'), (234, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 13:55:48', '2016-01-15'), (232, 1, '罗经理', '删除销货单 单据编号:XS201601151220316', 1, 'admin', '2016-01-15 13:42:21', '2016-01-15'), (231, 1, '罗经理', '删除销货单 单据编号:XS201601151340023', 1, 'admin', '2016-01-15 13:42:17', '2016-01-15'), (230, 1, '罗经理', '登陆成功 用户名:admin', 1, 'admin', '2016-01-15 13:41:59', '2016-01-15'), (216, 1, '罗经理', '转为销售帐', 1, 'admin', '2016-01-15 12:12:18', '2016-01-15'), (217, 1, '罗经理', '新增销货单 单据编号:XS201601151213132', 1, 'admin', '2016-01-15 12:13:13', '2016-01-15'), (218, 1, '罗经理', '确认出库', 1, 'admin', '2016-01-15 12:14:21', '2016-01-15'), (219, 1, '罗经理', '新增购货单 单据编号:CG201601151216276', 1, 'admin', '2016-01-15 12:16:27', '2016-01-15'), (220, 1, '罗经理', '删除销货单 单据编号:XS201601151213132', 1, 'admin', '2016-01-15 12:19:39', '2016-01-15'), (221, 1, '罗经理', '新增销货单 单据编号:XS201601151220316', 1, 'admin', '2016-01-15 12:20:31', '2016-01-15'), (222, 1, '罗经理', '确认出库', 1, 'admin', '2016-01-15 12:20:47', '2016-01-15'), (223, 1, '罗经理', '转为销售帐', 1, 'admin', '2016-01-15 12:21:25', '2016-01-15'), (224, 3, '周全', '登陆成功 用户名:zhouquan', 1, 'zhouquan', '2016-01-15 12:48:44', '2016-01-15'), (225, 4, '臧艺泽', '登陆成功 用户名:zangyize', 1, 'zangyize', '2016-01-15 12:49:25', '2016-01-15'), (226, 5, '关钦玉', '登陆成功 用户名:guanqinyu', 1, 'guanqinyu', '2016-01-15 12:49:59', '2016-01-15'), (227, 6, '王曌', '登陆成功 用户名:wangzhao', 1, 'wangzhao', '2016-01-15 12:50:38', '2016-01-15'), (228, 7, '袁春宇', '登陆成功 用户名:yuanchunyu', 1, 'yuanchunyu', '2016-01-15 12:51:23', '2016-01-15'), (229, 1, '罗经理', '登陆成功 用户名:admin', 1, 'admin', '2016-01-15 12:51:45', '2016-01-15'); -- -------------------------------------------------------- -- -- 表的结构 `ci_menu` -- CREATE TABLE IF NOT EXISTS `ci_menu` ( `id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT '导航栏目', `title` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '栏目名称', `pid` smallint(5) DEFAULT '0' COMMENT '上级栏目ID', `path` varchar(100) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '栏目路径', `depth` tinyint(2) DEFAULT '1' COMMENT '层次', `ordnum` smallint(6) DEFAULT '0' COMMENT '排序', `url` varchar(100) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '外部链接', `status` tinyint(1) DEFAULT '1' COMMENT '状态', PRIMARY KEY (`id`), KEY `id` (`id`), KEY `pid` (`pid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='导航管理' AUTO_INCREMENT=85 ; -- -- 转存表中的数据 `ci_menu` -- INSERT INTO `ci_menu` (`id`, `title`, `pid`, `path`, `depth`, `ordnum`, `url`, `status`) VALUES (1, '购货单', 1, '1', 1, 99, '', 1), (2, '新增', 1, '1,2', 2, 99, '', 1), (3, '修改', 1, '1,3', 2, 99, '', 1), (4, '删除', 1, '1,4', 2, 99, '', 1), (5, '导出', 1, '1,5', 2, 99, '', 1), (6, '销货单', 6, '6', 1, 99, '', 1), (7, '新增', 6, '6,7', 2, 99, '', 1), (8, '修改', 6, '6,8', 2, 99, '', 1), (9, '删除', 6, '6,9', 2, 99, '', 1), (10, '导出', 6, '6,10', 2, 99, '', 1), (11, '盘点', 11, '11', 1, 99, '', 1), (12, '生成盘点记录', 11, '11,12', 2, 99, '', 1), (13, '导出', 11, '11,13', 2, 99, '', 1), (14, '其他入库', 14, '14', 1, 99, '', 1), (15, '新增', 14, '14,15', 2, 99, '', 1), (16, '修改', 14, '14,16', 2, 99, '', 1), (17, '删除', 14, '14,17', 2, 99, '', 1), (18, '其他出库', 18, '18', 1, 99, '', 1), (19, '新增', 18, '18,19', 2, 99, '', 1), (20, '修改', 18, '18,20', 2, 99, '', 1), (21, '删除', 18, '18,21', 2, 99, '', 1), (22, '采购明细表', 22, '22', 1, 99, '', 1), (23, '导出', 22, '22,23', 2, 99, '', 1), (24, '打印', 22, '22,24', 2, 99, '', 1), (25, '采购汇总表(按商品)', 25, '25', 1, 99, '', 1), (26, '导出', 25, '25,26', 2, 99, '', 1), (27, '打印', 25, '25,27', 2, 99, '', 1), (28, '采购汇总表(按供应商)', 28, '28', 1, 99, '', 1), (29, '导出', 28, '28,29', 2, 99, '', 1), (30, '打印', 28, '28,30', 2, 99, '', 1), (31, '销售明细表', 31, '31', 1, 99, '', 1), (32, '导出', 31, '31,32', 2, 99, '', 1), (33, '打印', 31, '31,33', 2, 99, '', 1), (34, '销售汇总表(按商品)', 34, '34', 1, 99, '', 1), (35, '导出', 34, '34,35', 2, 99, '', 1), (36, '打印', 34, '34,36', 2, 99, '', 1), (37, '销售汇总表(按客户)', 37, '37', 1, 99, '', 1), (38, '导出', 37, '37,38', 2, 99, '', 1), (39, '打印', 37, '37,39', 2, 99, '', 1), (40, '商品库存余额表', 40, '40', 1, 99, '', 1), (41, '导出', 40, '40,41', 2, 99, '', 1), (42, '打印', 40, '40,42', 2, 99, '', 1), (43, '商品收发明细表', 43, '43', 1, 99, '', 1), (44, '导出', 43, '43,44', 2, 99, '', 1), (45, '打印', 43, '43,45', 2, 99, '', 1), (46, '商品收发汇总表', 46, '46', 1, 99, '', 1), (47, '导出', 46, '46,47', 2, 99, '', 1), (48, '打印', 46, '46,48', 2, 99, '', 1), (49, '往来单位欠款表', 49, '49', 1, 99, '', 1), (50, '导出', 49, '49,50', 2, 99, '', 1), (51, '打印', 49, '49,51', 2, 99, '', 1), (52, '应付账款明细表', 52, '52', 1, 99, '', 1), (53, '导出', 52, '52,53', 2, 99, '', 1), (54, '打印', 52, '52,54', 2, 99, '', 1), (55, '应收账款明细表', 55, '55', 1, 99, '', 1), (56, '导出', 55, '55,56', 2, 99, '', 1), (57, '打印', 55, '55,57', 2, 99, '', 1), (58, '客户管理', 58, '58', 1, 99, '', 1), (59, '新增', 58, '58,59', 2, 99, '', 1), (60, '修改', 58, '58,60', 2, 99, '', 1), (61, '删除', 58, '58,61', 2, 99, '', 1), (62, '导出', 58, '58,62', 2, 99, '', 1), (63, '供应商管理', 63, '63', 1, 99, '', 1), (64, '新增', 63, '63,64', 2, 99, '', 1), (65, '修改', 63, '63,65', 2, 99, '', 1), (66, '删除', 63, '63,66', 2, 99, '', 1), (67, '导出', 63, '63,67', 2, 99, '', 1), (68, '商品管理', 68, '68', 1, 99, '', 1), (69, '新增', 68, '68,69', 2, 99, '', 1), (70, '修改', 68, '68,70', 2, 99, '', 1), (71, '删除', 68, '68,71', 2, 99, '', 1), (72, '导出', 68, '68,72', 2, 99, '', 1), (73, '客户类别', 73, '73', 1, 99, '', 1), (74, '新增', 73, '73,74', 2, 99, '', 1), (75, '修改', 73, '73,75', 2, 99, '', 1), (76, '删除', 73, '73,76', 2, 99, '', 1), (77, '计量单位', 77, '77', 1, 99, '', 1), (78, '新增', 77, '77,78', 2, 99, '', 1), (79, '修改', 77, '77,79', 2, 99, '', 1), (80, '删除', 77, '77,80', 2, 99, '', 1), (81, '系统参数', 81, '81', 1, 99, '', 1), (82, '权限设置', 82, '82', 1, 99, '', 1), (83, '操作日志', 83, '83', 1, 99, '', 1), (84, '数据备份', 84, '84', 1, 99, '', 0); -- -------------------------------------------------------- -- -- 表的结构 `ci_money` -- CREATE TABLE IF NOT EXISTS `ci_money` ( `id` int(11) NOT NULL, `moneyid` varchar(25) CHARACTER SET utf8 NOT NULL, `contanctid` smallint(6) DEFAULT NULL, `type` tinyint(1) NOT NULL, `needmoney` double DEFAULT NULL, `paidmoney` double DEFAULT NULL, `contactname` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `billdate` date DEFAULT NULL, `remark` varchar(50) CHARACTER SET utf8 DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- 转存表中的数据 `ci_money` -- INSERT INTO `ci_money` (`id`, `moneyid`, `contanctid`, `type`, `needmoney`, `paidmoney`, `contactname`, `billdate`, `remark`) VALUES (1, 'CG201601151553325', NULL, 3, 500, NULL, 's000003 爱信精机', '2016-01-15', NULL), (2, 'CG201601151529479', NULL, 2, 10000, NULL, 'c000006 广东前锋汽车修理厂', '2016-01-15', NULL); -- -------------------------------------------------------- -- -- 表的结构 `ci_unit` -- CREATE TABLE IF NOT EXISTS `ci_unit` ( `id` smallint(6) NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '客户名称', `status` tinyint(1) DEFAULT '1' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='计量单位' AUTO_INCREMENT=10 ; -- -- 转存表中的数据 `ci_unit` -- INSERT INTO `ci_unit` (`id`, `name`, `status`) VALUES (1, '个', 1), (2, '件', 1), (3, '斤', 1), (4, '包', 1), (5, '台', 1), (6, '箱', 1), (7, '套', 1), (8, '桶', 1), (9, '辆', 1);
 CREATE PROC [ERP].[Usp_Sel_Talonario_Borrador] @IdEmpresa INT AS BEGIN SELECT ID, (SELECT [ERP].[ObtenerNombreBancoMonedaTipo_By_IdCuenta](IdCuenta)) NombreBancoMonedaTipo, Inicio, Fin, FechaRegistro FROM ERP.Talonario WHERE IdEmpresa = @IdEmpresa AND FlagBorrador = 1 END
CREATE TABLE USER ( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(20), birthday DATE, money DOUBLE ); CREATE TABLE dept ( did INT PRIMARY KEY AUTO_INCREMENT, dname VARCHAR(20) ); CREATE TABLE emp ( eid INT PRIMARY KEY AUTO_INCREMENT, ename VARCHAR(20), hiredate DATE, sal DECIMAL(10,2), dept_id INT ); ALTER TABLE emp ADD CONSTRAINT FK FOREIGN KEY(dept_id) REFERENCES dept(did);
CREATE TABLE test.user ( ID INT(8) NOT NULL AUTO_INCREMENT, NAME VARCHAR(25) NOT NULL, AGE INT NOT NULL, ISADMIN BIT NOT NULL, CREATEDDATE TIMESTAMP NOT NULL, PRIMARY KEY (ID));
INSERT INTO user VALUES('Daisy');
-- phpMyAdmin SQL Dump -- version 4.4.15.9 -- https://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Sep 09, 2018 at 04:51 AM -- Server version: 5.6.37 -- PHP Version: 5.6.31 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `nhaan` -- -- -------------------------------------------------------- -- -- Table structure for table `kiemtrachinh` -- CREATE TABLE IF NOT EXISTS `kiemtrachinh` ( `ms` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `thoigian` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `kiemtrachinh` -- INSERT INTO `kiemtrachinh` (`ms`, `thoigian`) VALUES ('1027', '2018-09-08 12:32:26'), ('1028', '2018-09-08 12:32:27'), ('1003', '2018-09-09 12:08:20'), ('1005', '2018-09-09 12:08:27'), ('1133', '2018-09-09 12:08:31'), ('1133', '2018-09-09 12:08:34'), ('1133', '2018-09-09 12:08:35'), ('1133', '2018-09-09 12:08:37'), ('1133', '2018-09-09 12:08:38'), ('1133', '2018-09-09 12:08:39'), ('1133', '2018-09-09 12:08:40'), ('1133', '2018-09-09 12:08:41'), ('1133', '2018-09-09 12:08:42'), ('1028', '2018-09-09 12:08:47'), ('1028', '2018-09-09 12:08:49'), ('1028', '2018-09-09 12:08:51'), ('1028', '2018-09-09 12:08:52'), ('1028', '2018-09-09 16:35:14'), ('1028', '2018-09-09 16:35:16'), ('1028', '2018-09-09 16:35:17'), ('1003', '2018-09-09 16:35:18'), ('1005', '2018-09-09 16:35:22'), ('1028', '2018-09-09 16:35:30'), ('1028', '2018-09-09 16:35:31'), ('1028', '2018-09-09 16:35:33'), ('1028', '2018-09-09 16:35:35'), ('1028', '2018-09-09 16:35:46'), ('1028', '2018-09-09 16:35:50'), ('1133', '2018-09-09 16:35:56'), ('1003', '2018-09-09 17:24:31'), ('1003', '2018-09-09 17:24:34'), ('1028', '2018-09-09 17:24:39'), ('1028', '2018-09-09 17:24:41'), ('1003', '2018-09-09 17:24:42'), ('1003', '2018-09-09 11:50:05'), ('1003', '2018-09-09 11:50:07'), ('1003', '2018-09-09 11:50:08'), ('1028', '2018-09-09 11:50:11'), ('1028', '2018-09-09 11:50:12'); -- -------------------------------------------------------- -- -- Table structure for table `kiemtraphu` -- CREATE TABLE IF NOT EXISTS `kiemtraphu` ( `ms` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `thoigian` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `kiemtraphu` -- INSERT INTO `kiemtraphu` (`ms`, `thoigian`) VALUES ('1027', '2018-09-08 12:32:26'), ('1028', '2018-09-08 12:32:27'), ('1003', '2018-09-09 12:08:20'), ('1005', '2018-09-09 12:08:27'), ('1133', '2018-09-09 12:08:31'), ('1133', '2018-09-09 12:08:34'), ('1133', '2018-09-09 12:08:35'), ('1133', '2018-09-09 12:08:37'), ('1133', '2018-09-09 12:08:38'), ('1133', '2018-09-09 12:08:39'), ('1133', '2018-09-09 12:08:40'), ('1133', '2018-09-09 12:08:41'), ('1133', '2018-09-09 12:08:42'), ('1028', '2018-09-09 12:08:47'), ('1028', '2018-09-09 12:08:49'), ('1028', '2018-09-09 12:08:51'), ('1028', '2018-09-09 12:08:52'), ('1028', '2018-09-09 16:35:14'), ('1028', '2018-09-09 16:35:16'), ('1028', '2018-09-09 16:35:17'), ('1003', '2018-09-09 16:35:18'), ('1005', '2018-09-09 16:35:22'), ('1028', '2018-09-09 16:35:30'), ('1028', '2018-09-09 16:35:31'), ('1028', '2018-09-09 16:35:33'), ('1028', '2018-09-09 16:35:35'), ('1028', '2018-09-09 16:35:46'), ('1028', '2018-09-09 16:35:50'), ('1133', '2018-09-09 16:35:56'), ('1003', '2018-09-09 17:24:31'), ('1003', '2018-09-09 17:24:34'), ('1028', '2018-09-09 17:24:39'), ('1028', '2018-09-09 17:24:41'), ('1003', '2018-09-09 17:24:42'), ('1003', '2018-09-09 11:50:05'), ('1003', '2018-09-09 11:50:07'), ('1003', '2018-09-09 11:50:08'), ('1028', '2018-09-09 11:50:11'), ('1028', '2018-09-09 11:50:12'); -- -------------------------------------------------------- -- -- Table structure for table `nhanvien` -- CREATE TABLE IF NOT EXISTS `nhanvien` ( `ms` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `hoten` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `dep` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `subdep` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `maloai` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `tentochuc` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `start` date DEFAULT NULL, `finish` date DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `nhanvien` -- INSERT INTO `nhanvien` (`ms`, `hoten`, `dep`, `subdep`, `maloai`, `tentochuc`, `start`, `finish`) VALUES ('1003', 'HOANG THI THU LIEN', 'HR', 'HR', '1', NULL, NULL, NULL), ('1005', 'NGUYEN THI KIEU DIEM', 'SALES', 'SALES', '1', NULL, NULL, NULL), ('1006', 'PHAM HANG HAI', 'SALES', 'SALES', '1', NULL, NULL, NULL), ('1007', 'QUACH CHUNG THINH PHAT', 'SALES', 'SALES', '1', NULL, NULL, NULL), ('1011', 'DANG THI MY THIEN', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1012', 'NGUYEN MONG KY DUYEN', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1013', 'BUI QUANG TAN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1014', 'NGUYEN THI CONG DIEM', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1015', 'NGUYEN PHU THANH', 'PROJECT MANAGEMENT', 'PROJECT MANAGEMENT', '1', NULL, NULL, NULL), ('1016', 'LAM VAN VUONG', 'IT', 'IT', '1', NULL, NULL, NULL), ('1017', 'TRAN THANH TIEN', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1018', 'MAI HOANG ANH', 'PRODUCTION', 'assembly blokset', '1', NULL, NULL, NULL), ('1020', 'LE DUC LOI', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1023', 'DANG VAN SANG', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1024', 'LE QUANG KHANG', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1027', 'TRAN NHU NHAN', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1028', 'DANG PHUOC DUC', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1030', 'LE VAN TOAI', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1032', 'LE VAN CHUONG', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1036', 'TRUONG THI KIEU TRAM', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1039', 'HO MINH HOI', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1040', 'NGUYEN TAN THANH', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1042', 'HOANG VAN TRONG', 'R&D', 'Internship', '1', NULL, NULL, NULL), ('1047', 'LE THANH HIEN', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1052', 'TRUONG TRUNG DUC', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1053', 'LEONARDUS LUMBANTORUAN', 'CEO', 'CEO', '1', NULL, NULL, NULL), ('1054', 'NGUYEN THANH LUU', 'QC', 'QC', '1', NULL, NULL, NULL), ('1055', 'PHAN VAN BEO', 'PRODUCTION', 'assembly blokset', '1', NULL, NULL, NULL), ('1058', 'VO VAN DANH', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1059', 'LE MINH TAM', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1060', 'LE HUU TAI', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1063', 'TRAN CONG THANH', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1064', 'NGUYEN THI THUONG', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1066', 'TRINH VAN VINH', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1068', 'TRUONG VAN NGUU', 'QC', 'QC', '1', NULL, NULL, NULL), ('1070', 'NGUYEN NGOC TAN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1075', 'PHAN THI HONG', 'HR', 'Cleaner', '1', NULL, NULL, NULL), ('1079', 'TRAN VAN VIET', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1080', 'PHAM VAN THAM', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1090', 'HUYNH VAN HAN', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1102', 'NGUYEN THI PHUONG', 'PRODUCTION', 'Cleaner', '1', NULL, NULL, NULL), ('1104', 'NGUYEN THI BE NGOC', 'PRODUCTION', 'Cleaner', '1', NULL, NULL, NULL), ('1110', 'DO VAN THUONG', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1117', 'NGUYEN THI SUONG GIANG', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1118', 'NGUYEN VAN HIEU', 'SERVICE MANAGER', 'SERVICE MANAGER', '1', NULL, NULL, NULL), ('1123', 'TRAN THI THU THAO', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1125', 'LE DINH LINH', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1126', 'VU THANH PHA', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1131', 'PHUNG NGOC DE', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1133', 'LUU CONG THANH', 'GENERAL DIRECTOR', 'GENERAL DIRECTOR', '1', NULL, NULL, NULL), ('1134', 'NGUYEN THI TRUC MAI', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1135', 'NGUYEN THI NGOC THAO', 'PROJECT MANAGEMENT', 'PROJECT MANAGEMENT', '1', NULL, NULL, NULL), ('1137', 'LE QUANG TRUNG', 'PRODUCTION', 'Assistance - Electrical', '1', NULL, NULL, NULL), ('1140', 'PHAN NHAT NAM', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1144', 'DO THI TUYET NHUNG', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1147', 'NGUYEN THANH THUONG', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1149', 'PHAM XUAN HAN', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1156', 'LE VAN DAI', 'QC', 'QC', '1', NULL, NULL, NULL), ('1157', 'NGUYEN NGOC TOAN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1158', 'DOAN GIANG TINH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1159', 'DAO VIET LONG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1160', 'TRAN XUAN VINH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1162', 'TRAN QUOC QUAN', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1163', 'DANG MINH SANG', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1164', 'LE BA THINH', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1167', 'TRAN VAN HIEU', 'QC', 'QC', '1', NULL, NULL, NULL), ('1171', 'HO VI TINH', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1174', 'NGUYEN DUY THANG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1176', 'TONG TRUONG TU HAO', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1178', 'NGUYEN THI THANH TUYET', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1179', 'NGUYEN THANH TRI', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1189', 'BUI MAI DUNG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1191', 'NGUYEN NGOC TU', 'PRODUCTION', 'assembly DB', '1', NULL, NULL, NULL), ('1200', 'TRAN THI THU THUY', 'FINANCE', 'FINANCE', '1', NULL, NULL, NULL), ('1203', 'NGUYEN THI THUY HUONG', 'FINANCE', 'FINANCE', '1', NULL, NULL, NULL), ('1204', 'QUANG THI PHUOC THUYET', 'LOGISTIC', 'LOGISTIC', '1', NULL, NULL, NULL), ('1207', 'LUU HOAI NAM', 'TECH ADVISOR', 'Technician', '1', NULL, NULL, NULL), ('1209', 'VO THI THANH TRUC', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1211', 'VO THI MY HONG', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1212', 'LE VAN CHUC', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1214', 'NGUYEN CHANH TRUNG', 'Driver', 'Driver', '1', NULL, NULL, NULL), ('1217', 'PHAN THANH LAM', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1220', 'VO THANH KHIEM', 'QC', 'QC', '1', NULL, NULL, NULL), ('1221', 'HUYNH MINH TRI', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1222', 'LE HUU DUC', 'QC', 'QC', '1', NULL, NULL, NULL), ('1223', 'NGUYEN DUC NHA', 'PRODUCTION', 'TRaining in QC', '1', NULL, NULL, NULL), ('1225', 'NGUYEN VAN HAP', 'QC', 'QC', '1', NULL, NULL, NULL), ('1226', 'PHAN THI HA', 'QC', 'QC', '1', NULL, NULL, NULL), ('1229', 'NGUYEN THAI NHAT ANH', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1230', 'LAM VAN CONG', 'PRODUCTION', 'ELectrical', '1', NULL, NULL, NULL), ('1233', 'LE THANH TU', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1241', 'TRAN HA DUC', 'DEPUTY GENERAL DIRECTOR', 'DEPUTY GENERAL DIRECTOR', '1', NULL, NULL, NULL), ('1247', 'VU VAN KIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1249', 'VO TRUNG KIEN', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1250', 'TRINH VAN LANH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1253', 'NGUYEN THE VINH', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1256', 'HUYNH TU ANH', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1257', 'TRAN THI THU VAN', 'HR', 'RECEPTIONIST', '1', NULL, NULL, NULL), ('1259', 'PHAM THI TUYET NGAN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1260', 'LE VAN QUANG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1266', 'TRAN VAN QUI', 'PRODUCTION', 'Assistance', '1', NULL, NULL, NULL), ('1269', 'DANH THI THUY NGUYEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1274', 'THACH MINH TRUONG', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1275', 'NGUYEN KIM TU', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1276', 'VO VAN CHIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1277', 'HOANG KIM DINH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1278', 'VO VAN NGOC', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1279', 'NGUYEN HOANG THAI', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1283', 'TRUONG HOANG GIANG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1285', 'PHAM MINH PHUNG', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1288', 'HUYNH VAN QUOC TIN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1289', 'NGUYEN MINH KHOA', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1295', 'VU VAN BINH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1299', 'HUYNH KIM HUONG', 'FINANCE', 'FINANCE', '1', NULL, NULL, NULL), ('1302', 'NGUYEN NGOC XUAN', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1303', 'VAN THI THUC UYEN', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1304', 'NGUYEN THI THUY DUONG', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1306', 'HUYNH VAN NHO', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1315', 'VU LAM THIEN', 'PRODUCTION', 'Electrical ', '1', NULL, NULL, NULL), ('1316', 'PHAM DINH TUONG', 'PRODUCTION', 'Electrical ', '1', NULL, NULL, NULL), ('1317', 'MAI THANH TUAN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1319', 'BUI NGOC NIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1322', 'LE QUOC TOAN', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1323', 'BUI VAN THANH', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1324', 'LY THANH NHAN', 'PRODUCTION', 'assembly DB', '1', NULL, NULL, NULL), ('1325', 'TRAN VAN TINH', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1328', 'THAI VAN PHONG', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1329', 'LUONG THANH NHAN', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1330', 'TRAN VU CA', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1331', 'VAN HIEN QUI', 'PRODUCTION', 'Electrical Training for QC', '1', NULL, NULL, NULL), ('1332', 'CHU THE ANH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1333', 'TRAN THANH PHAT', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1339', 'HUYNH THI QUYNH NHU', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1341', 'LE HOANG MY', 'FINANCE', 'FINANCE', '1', NULL, NULL, NULL), ('1342', 'NGUYEN VAN VO', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1343', 'DANG NHU HOANG NGHIA', 'PRODUCTION', 'assembly', '1', NULL, NULL, NULL), ('1346', 'TRAN THI GAI', 'LOGISTIC', 'LOGISTIC', '1', NULL, NULL, NULL), ('1353', 'NGUYEN THI KIEU TRINH', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1354', 'NGUYEN VAN DUOC', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1355', 'HOANG VAN DUNG', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1356', 'VO HOANG THIEN', 'PRODUCTION MANAGER', 'PRODUCTION MANAGER', '1', NULL, NULL, NULL), ('1361', 'NGUYEN THANH VO', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1363', 'NGUYEN DOAN SANG', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1368', 'TRAN NGOC CUONG', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1369', 'TRAN ANH TUAN', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1370', 'PHAM NGOC TIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1371', 'DANG VAN VIET', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1372', 'VO TRONG DUC', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1373', 'NGUYEN CONG HUY', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1376', 'VY THI BE', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1377', 'TRAN QUOC CHIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1378', 'LE MANH HUNG', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1381', 'TRAN THI HONG THAM', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1382', 'NGUYEN THI NHAT TOI', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1384', 'VO THI DIEU HUYEN', 'PRODUCTION', 'Secretary', '1', NULL, NULL, NULL), ('1391', 'HUYNH THI THUY', 'PRODUCTION', 'Secretary', '1', NULL, NULL, NULL), ('1393', 'NGAN VAN BINH', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1394', 'HO THI HIEN', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1395', 'BACH VU SON', 'R&D', 'R&D', '1', NULL, NULL, NULL), ('1404', 'TRUONG MINH HAI', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1405', 'LUU VAN NHAT', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1409', 'MAY PHONE THIT', 'PROJECT MANAGEMENT', 'PROJECT MANAGEMENT', '1', NULL, NULL, NULL), ('1421', 'TRAN VAN GO', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1427', 'TRAN MINH TAM', 'PRODUCTION', 'Assembly DB', '1', NULL, NULL, NULL), ('1429', 'HO SI DUC', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1431', 'MAI THI THUY KIEU', 'HR', 'HR', '1', NULL, NULL, NULL), ('1440', 'TRAN THI UY', 'FINANCE', 'LAWS', '1', NULL, NULL, NULL), ('1441', 'NGUYEN PHUOC TOAN', 'PROJECT MANAGEMENT', 'PROJECT MANAGEMENT', '1', NULL, NULL, NULL), ('1442', 'NGUYEN AN PHU', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1443', 'BUI PHU CUONG', 'PRODUCTION', 'Packing', '1', NULL, NULL, NULL), ('1445', 'HOANG DUY TAN', 'QC', 'QC', '1', NULL, NULL, NULL), ('1451', 'NGUYEN CHI LINH', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1452', 'LE THI PHUONG', 'HR', 'Cleaner', '1', NULL, NULL, NULL), ('1455', 'PHAN THANH SANG', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1461', 'DANG XUAN GIANG', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1462', 'LE VAN PHONG', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1467', 'TO VAN DUC', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1474', 'DUONG THANH TRUNG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1480', 'PHAM MINH TIEN', 'QC', 'QC', '1', NULL, NULL, NULL), ('1486', 'PHYO WAI OO', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1487', 'ARKAR PHYO', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1488', 'VU DINH NAM', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1492', 'LY XUAN DAT', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1494', 'LE DINH DUNG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1501', 'NGUYEN DUC LENH', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1503', 'PHAN THANH HUY', 'PRODUCTION', 'Internship', '1', NULL, NULL, NULL), ('1504', 'HO VAN NAM', 'PRODUCTION', 'Internship', '1', NULL, NULL, NULL), ('1506', 'DANH BAL', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1507', 'PHAM VAN MUN', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1512', 'NGUYEN LAM QUOC HUY', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1514', 'TRAN THAI NGUYEN', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1516', 'NGUYEN VAN PHUNG', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1517', 'TRAN THI NHAN', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1520', 'NGUYEN VAN MANH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1521', 'DINH VAN TUAN EM', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1525', 'NGUYEN VAN NGOC', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1527', 'DOAN VAN HUE', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1528', 'LAC THI THANH NGA', 'HR', 'Cleaner', '1', NULL, NULL, NULL), ('1529', 'VU MINH HA', 'HR', 'Cleaner', '1', NULL, NULL, NULL), ('1530', 'TRAN THI OANH', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1538', 'VU NGOC HONG THY', 'PURCHASING', 'PURCHASING', '1', NULL, NULL, NULL), ('1540', 'NGUYEN HUU NHAN', 'PROJECT MANAGEMENT', 'PROJECT MANAGEMENT', '1', NULL, NULL, NULL), ('1541', 'PHAN XUAN LAP', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1542', 'VO THANH BACH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1543', 'NGUYEN THI THANH THUY', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1544', 'LE VAN CUONG', 'PRODUCTION', 'assembly', '1', NULL, NULL, NULL), ('1547', 'KHUC TUNG DUONG', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1548', 'NGUYEN HUY DANG', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1549', 'NGUYEN VAN CUONG', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1554', 'TRAN THI HONG THANH', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1555', 'QUACH THI HONG THUY', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1558', 'LAM HOANG', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1559', 'DANG VAN SEN', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1560', 'LE PHAM THI DUYEN', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1561', 'NGUYEN DUC TUAN', 'PRODUCTION', 'Mechanical Eng', '1', NULL, NULL, NULL), ('1562', 'LE MINH DE', 'PRODUCTION', 'Packing', '1', NULL, NULL, NULL), ('1565', 'LE MINH DUC', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1574', 'NGO THI SINH', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1576', 'NGUYEN NGOC LAN', 'SERVICE', 'Secretary', '1', NULL, NULL, NULL), ('1577', 'NGUYEN THI HONG KIM', 'PRODUCTION', 'Label', '1', NULL, NULL, NULL), ('1578', 'NGUYEN HOAI DUY', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1579', 'NGUYEN KHAC PHUC', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1581', 'LE VAN BAT', 'PRODUCTION', 'Busbar', '1', NULL, NULL, NULL), ('1584', 'TRINH DUC ANH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1585', 'NGUYEN BACH LONG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1586', 'LE VAN TIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1587', 'HO DINH THINH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1589', 'NGUYEN VAN RI', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1590', 'LE VAN HUYNH', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1592', 'NGUYEN VAN THANH', 'PRODUCTION', 'Welding', '1', NULL, NULL, NULL), ('1593', 'LE VAN NHAT', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1594', 'NGUYEN TRUONG GIANG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1595', 'LE VAN HIEP', 'QC', 'QC', '1', NULL, NULL, NULL), ('1596', 'LE HUU CHIEN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1597', 'LE HUU THANG', 'QC', 'QC', '1', NULL, NULL, NULL), ('1598', 'CAO QUANG CHAU', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1599', 'NGUYEN TUAN NGOC', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1601', 'LAM VAN PHUOC', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1602', 'TRUONG THANH THAO', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1603', 'TRAN VINH KY', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1604', 'TRAN HOANG THAI', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1607', 'DOAN TRUNG CAP', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1608', 'TRUONG LE MINH THUY', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1610', 'PHAN THIEN AN', 'DESIGN', 'DESIGN', '1', NULL, NULL, NULL), ('1613', 'PHAN VAN HAI', 'PRODUCTION', 'Assembly', '1', NULL, NULL, NULL), ('1614', 'LE THI NHU LIEN', 'SERVICE', 'Secretary', '1', NULL, NULL, NULL), ('1616', 'LE HIEU LIEM', 'PRODUCTION', 'CNC', '1', NULL, NULL, NULL), ('1617', 'LE QUY NHAN', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1620', 'NGO DO BAO KHANH', 'TENDER', 'TENDER', '1', NULL, NULL, NULL), ('1621', 'NGUYEN THANH TOAN', 'PRODUCTION', 'Warehouse', '1', NULL, NULL, NULL), ('1622', 'CAO VAN BI', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1624', 'NGUYEN THI TUONG VI', 'FINANCE', 'FINANCE', '1', NULL, NULL, NULL), ('1625', 'NGO TAN THAN', 'PRODUCTION', 'assembly', '1', NULL, NULL, NULL), ('1626', 'LE DINH NHON', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1627', 'LE THANH KY', 'PRODUCTION', 'assembly', '1', NULL, NULL, NULL), ('1628', 'CAO CHI PHUONG', 'PRODUCTION', 'Electrical', '1', NULL, NULL, NULL), ('1629', ' TRAN VAN MUONG', 'PRODUCTION', 'Painting', '1', NULL, NULL, NULL), ('1630', 'QUACH THAO TRANG', 'HR', 'RECEPTIONIST', '1', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `phanloai` -- CREATE TABLE IF NOT EXISTS `phanloai` ( `maloai` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `ten` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `phanloai` -- INSERT INTO `phanloai` (`maloai`, `ten`) VALUES ('1', 'nhanvien'), ('2', 'khach'), ('3', 'sinhvien'); -- -------------------------------------------------------- -- -- Table structure for table `quanly` -- CREATE TABLE IF NOT EXISTS `quanly` ( `msquanly` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `msloai` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `loai` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `ten` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `sdt` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `quanly` -- INSERT INTO `quanly` (`msquanly`, `password`, `msloai`, `loai`, `ten`, `sdt`) VALUES ('1', 'hainam', '1', 'admin', NULL, NULL), ('2', 'hainam', '2', 'tiep tan', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `quanlyngoaile` -- CREATE TABLE IF NOT EXISTS `quanlyngoaile` ( `ms` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `quanlyngoaile` -- INSERT INTO `quanlyngoaile` (`ms`) VALUES ('1028'), ('1042'), ('1053'), ('1133'), ('1241'), ('1356'); -- -- Indexes for dumped tables -- -- -- Indexes for table `kiemtrachinh` -- ALTER TABLE `kiemtrachinh` ADD KEY `kiemtrachinh_fk_idx` (`ms`); -- -- Indexes for table `kiemtraphu` -- ALTER TABLE `kiemtraphu` ADD KEY `kiemtraphu_fk_idx` (`ms`); -- -- Indexes for table `nhanvien` -- ALTER TABLE `nhanvien` ADD PRIMARY KEY (`ms`), ADD KEY `maloai_fk_idx` (`maloai`); -- -- Indexes for table `phanloai` -- ALTER TABLE `phanloai` ADD PRIMARY KEY (`maloai`); -- -- Indexes for table `quanly` -- ALTER TABLE `quanly` ADD PRIMARY KEY (`msquanly`); -- -- Indexes for table `quanlyngoaile` -- ALTER TABLE `quanlyngoaile` ADD KEY `quanlyngoaile_fk_idx` (`ms`); -- -- Constraints for dumped tables -- -- -- Constraints for table `kiemtrachinh` -- ALTER TABLE `kiemtrachinh` ADD CONSTRAINT `kiemtrachinh_fk` FOREIGN KEY (`ms`) REFERENCES `nhanvien` (`ms`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `kiemtraphu` -- ALTER TABLE `kiemtraphu` ADD CONSTRAINT `kiemtraphu_fk` FOREIGN KEY (`ms`) REFERENCES `nhanvien` (`ms`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `nhanvien` -- ALTER TABLE `nhanvien` ADD CONSTRAINT `maloai_fk` FOREIGN KEY (`maloai`) REFERENCES `phanloai` (`maloai`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `quanlyngoaile` -- ALTER TABLE `quanlyngoaile` ADD CONSTRAINT `quanlyngoaile_fk` FOREIGN KEY (`ms`) REFERENCES `nhanvien` (`ms`) ON DELETE CASCADE ON UPDATE CASCADE; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-------------------------------------------------------- -- File created - Thursday-March-01-2012 -------------------------------------------------------- REM INSERTING into EVENT_MESSAGETYPE Insert into CTUSR.EVENT_MESSAGETYPE (EVENTMESSAGETYPE_ID,EVENTMESSAGETYPE_NAME) values (1,'Not Started'); Insert into CTUSR.EVENT_MESSAGETYPE (EVENTMESSAGETYPE_ID,EVENTMESSAGETYPE_NAME) values (2,'In Progress'); Insert into CTUSR.EVENT_MESSAGETYPE (EVENTMESSAGETYPE_ID,EVENTMESSAGETYPE_NAME) values (3,'Successfully Completed'); Insert into CTUSR.EVENT_MESSAGETYPE (EVENTMESSAGETYPE_ID,EVENTMESSAGETYPE_NAME) values (4,'Non-Critical Error'); Insert into CTUSR.EVENT_MESSAGETYPE (EVENTMESSAGETYPE_ID,EVENTMESSAGETYPE_NAME) values (5,'Critical Error');
SELECT DISTINCT ID, UATB_SC_CUST_NAME, BOOKING_DATE FROM LS_MASTER_RPTS_NF LS_MASTER WHERE UATB_JS_IN_EVERGREEN = 'Y' AND UATB_SC_INVOICE_CODE <> 'N' order by BOOKING_DATE ASC
--//Self join --#How many stops are in the database. SELECT COUNT(*) FROM stops --#Find the id value for the stop 'Craiglockhart' SELECT id FROM stops WHERE name = 'Craiglockhart' --#Give the id and the name for the stops on the '4' 'LRT' service. SELECT id , name FROM stops JOIN route ON (id = stop) WHERE num = '4' AND company = 'LRT' --#Add a HAVING clause to restrict the output to these two routes. SELECT company, num, COUNT(*) FROM route WHERE stop=149 OR stop=53 GROUP BY company, num HAVING COUNT(*) = 2 --#Change the query so that it shows the services from Craiglockhart to London Road. SELECT a.company, a.num, a.stop, b.stop FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) WHERE a.stop=53 AND b.stop = 149 --#Change the query so that the services between 'Craiglockhart' and 'London Road' are shown. SELECT a.company, a.num, stopa.name, stopb.name FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) WHERE stopa.name='Craiglockhart' AND stopb.name='London Road' --#Give a list of all the services which connect stops 115 and 137 SELECT a.company, a.num FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) WHERE a.stop = 115 AND b.stop = 137 GROUP BY a.company, a.num; --#Give a list of the services which connect the stops 'Craiglockhart' and 'Tollcross' SELECT a.company, a.num FROM route a JOIN route b ON (a.company=b.company AND a.num=b.num) JOIN stops stopa ON (a.stop=stopa.id) JOIN stops stopb ON (b.stop=stopb.id) WHERE stopa.name='Craiglockhart' AND stopb.name='Tollcross'
-- MySQL Script generated by MySQL Workbench -- Monday 06 August 2018 01:20:11 PM IST -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema mydb -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema mydb -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `mydb` DEFAULT CHARACTER SET utf8 ; USE `mydb` ; -- ----------------------------------------------------- -- Table `mydb`.`Registration` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`Registration` ( `user_id` INT NOT NULL AUTO_INCREMENT, `type` VARCHAR(10) NOT NULL, `gender` VARCHAR(6) NOT NULL, `contact` VARCHAR(10) NOT NULL, `email_id` VARCHAR(40) NOT NULL, `password` VARCHAR(45) NOT NULL, `address` VARCHAR(45) NOT NULL, PRIMARY KEY (`user_id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`Books` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`Books` ( `book_id` INT NOT NULL AUTO_INCREMENT, `descp` VARCHAR(45) NOT NULL, `pattern` VARCHAR(45) NOT NULL, `image` TEXT(45) NOT NULL, `date` DATE NOT NULL, PRIMARY KEY (`book_id`), UNIQUE INDEX `book_id_UNIQUE` (`book_id` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`Advertisement` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`Advertisement` ( `ad_id` INT NOT NULL, `create_date` DATE NULL, `Advertisementcol` VARCHAR(45) NULL, PRIMARY KEY (`ad_id`), UNIQUE INDEX `ad_id_UNIQUE` (`ad_id` ASC)) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Hôte : 127.0.0.1 -- Généré le : ven. 26 oct. 2018 à 17:23 -- Version du serveur : 10.1.26-MariaDB -- Version de PHP : 7.1.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de données : `pizzastore` -- -- -- Déchargement des données de la table `address` -- INSERT INTO `address` (`id`, `name`, `address`, `zip`, `city`, `phone`, `user_id`) VALUES (1, 'Domicile', '26, rue de la Hulotais', '59430', 'SAINT-POL-SUR-MER', '03.64.96.48.15', 1), (2, 'Maison', '80, avenue de l\'Amandier', '33000', 'BORDEAUX', '05.40.88.00.57', 2), (3, 'Bureau', '55, rue Léon Dierx', '14100', 'LISIEUX', '02.10.91.36.62', 3), (4, 'Bureau', '8, Rue St Ferréol', '69330', 'MEYZIEU', '04.45.02.60.80', 4), (5, 'Maison', '31, Rue Joseph Vernet', '92220', 'BAGNEUX', '01.23.88.22.16', 5), (6, 'Bureau', '55, rue Léon Dierx', '14100', 'LISIEUX', '02.10.91.36.62', 2); -- -- Déchargement des données de la table `pizza` -- INSERT INTO `pizza` (`id`, `name`, `price`, `image`, `category`, `description`) VALUES (1, 'Reine', '8.00', 'assets/img/pizzas/reine.png', NULL, NULL), (2, 'Texan', '10.00', 'assets/img/pizzas/texan.png', NULL, NULL), (3, '4 fromages', '9.99', 'assets/img/pizzas/4-fromages.png', NULL, NULL), (4, 'Végétarienne', '11.00', 'assets/img/pizzas/vegetarienne.png', NULL, NULL), (5, 'Savoyarde', '13.00', 'assets/img/pizzas/savoyarde.png', NULL, NULL), (6, 'Bolognaise', '10.00', 'assets/img/pizzas/bolognaise.png', NULL, NULL), (7, 'Cannibale', '11.00', 'assets/img/pizzas/cannibale.png', NULL, NULL), (26, 'Margarita', '17.98', 'assets/img/pizzas/margarita.png', 'Classique', 'C\'est la plus succulente des pizzas !'); -- -- Déchargement des données de la table `pizza_has_size` -- INSERT INTO `pizza_has_size` (`pizza_id`, `size_id`) VALUES (1, 1), (1, 2), (1, 3), (1, 4), (2, 1), (2, 2), (3, 1), (3, 2), (3, 3), (4, 3), (4, 4); -- -- Déchargement des données de la table `size` -- INSERT INTO `size` (`id`, `name`, `price`) VALUES (1, 'S', '0.00'), (2, 'M', '0.99'), (3, 'L', '1.99'), (4, 'XL', '2.99'); -- -- Déchargement des données de la table `user` -- INSERT INTO `user` (`id`, `name`, `firstname`) VALUES (1, 'Veilleux', 'Marie'), (2, 'Rivard', 'Babette'), (3, 'Barjavel', 'Grégoire'), (4, 'De La Ronde', 'Brice'), (5, 'Crête', 'Fabrice'), (6, 'Christophe', 'Deguillage'); -- -------------------------------------------------------- COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE TABLE users ( id SERIAL PRIMARY KEY, name text NOT NULL, email text NOT NULL UNIQUE, password text NOT NULL ); CREATE TABLE posts ( id SERIAL PRIMARY KEY, title text NOT NULL, content text NOT NULL, published BOOLEAN NOT NULL DEFAULT FALSE, author_id INTEGER NOT NULL REFERENCES users (id) ON DELETE CASCADE ); CREATE TABLE comments ( user_id INTEGER NOT NULL REFERENCES users (id) ON DELETE CASCADE, post_id INTEGER NOT NULL REFERENCES posts (id) ON DELETE CASCADE, content text NOT NULL, PRIMARY KEY (user_id, post_id) );
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3307 -- Generation Time: Apr 17, 2021 at 04:24 AM -- Server version: 10.4.17-MariaDB -- PHP Version: 8.0.1 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: `pw_203040126` -- -- -------------------------------------------------------- -- -- Table structure for table `mahasiswa` -- CREATE TABLE `mahasiswa` ( `id` int(11) NOT NULL, `nama` varchar(100) NOT NULL, `nrp` varchar(20) NOT NULL, `email` varchar(100) NOT NULL, `jurusan` varchar(100) NOT NULL, `gambar` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `mahasiswa` -- INSERT INTO `mahasiswa` (`id`, `nama`, `nrp`, `email`, `jurusan`, `gambar`) VALUES (1, 'Mochamad Indra Wahyudi', '203040126', 'indrawahyudi@gmail.com', 'Mochamad Indra Wahyudi', '1.png'), (2, 'Kalam Mahardika', '203030115', 'kalammahardika@gmail.com', 'Teknik Mesin', '2.png'), (3, 'Aknbar Maulana', '203010028', 'akbarmau@gmail.com', 'Teknik Industri', '3.png'), (4, 'Fadhlan Maulana', '203040121', 'fadhlanmaul@gmail.com', 'Teknik Informatika', '4.png'), (5, 'Fresa Bayu', '203040131', 'fresabayu@gmail.com', 'Teknik Informatika', '5.png'); -- -- Indexes for dumped tables -- -- -- Indexes for table `mahasiswa` -- ALTER TABLE `mahasiswa` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `mahasiswa` -- ALTER TABLE `mahasiswa` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- Create DB in the project CREATE DATABASE IF NOT EXISTS hbtn_0c_0;
/*!50001 DROP TABLE IF EXISTS `v_em_mesg_context_object`*/; /*!50001 DROP VIEW IF EXISTS `v_em_mesg_context_object`*/; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `v_em_mesg_context_object` AS (select `em`.`id` AS `em_mesg_id`,`co`.`id` AS `context_object_id` from ((`context_object` `co` join `booking` `em`) join `context_level` `cl`) where ((`co`.`context_level_id` = `cl`.`id`) and (`cl`.`name` = _latin1'global') and (`em`.`priority` > 1))) union (select `em`.`id` AS `id`,`co`.`id` AS `id` from (`context_object` `co` join ((`booking` `em` join `account` `ac` on((`em`.`account_id` = `ac`.`id`))) join `context_object` `child` on((`child`.`id` = `ac`.`id`)))) where ((`child`.`context_object_id` = `co`.`id`) and (`em`.`priority` > 1))) union (select `em`.`id` AS `id`,`ac`.`id` AS `id` from (`booking` `em` join `account` `ac`) where ((`em`.`account_id` = `ac`.`id`) and (`em`.`priority` > 1))) order by `context_object_id`,`em_mesg_id` */;
create table comment ( id bigint auto_increment, parent_id bigint not null, parent_type int not null, commentator bigint not null, gmt_create bigint not null, gmt_modify bigint not null, like_count bigint default 0, description text, constraint comment_pk primary key (id) );
create view `view1_1` as select * from `view1` where date >= '2021-07-01'; select * from `view1_1`; drop view `view1_1`;
CREATE DATABASE ip; use ip; CREATE TABLE class(id INT(10) UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, nom VARCHAR(100) NOT NULL ); CREATE TABLE students(id INT(10) UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, nom VARCHAR(100) NOT NULL, prenom VARCHAR(100) NOT NULL, email VARCHAR(100) NOT NULL, class_id INT(10) NOT NULL, FOREIGN KEY (class_id) REFERENCES class(id) ); CREATE TABLE assessment(id INT(10) UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, matiere VARCHAR(100) NOT NULL, formateur VARCHAR(100) NOT NULL, jour DATE NOT NULL, class_id INT(10) UNSIGNED NOT NULL, FOREIGN KEY (class_id) REFERENCES class(id) ); CREATE TABLE absence(id INT(10) UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, jour DATE NOT NULL, student_id INT(10) UNSIGNED NOT NULL, FOREIGN KEY (student_id) REFERENCES students(id) ); CREATE TABLE grade( id INT(10) UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, note FLOAT(2) UNSIGNED, student_id INT(10) UNSIGNED NOT NULL, FOREIGN KEY (student_id) REFERENCES students(id), assessment_id INT(10) UNSIGNED NOT NULL, FOREIGN KEY (assessment_id) REFERENCES assessments(id) );
SELECT FichaPeso, TipoVenta, [Año-Semana], FechaEmision, ComprobanteNombre, Serie, Numero, DocAnticipo, ND, RazonSocial, Destino, Campaña, LoteNombre, Fruta, Variedad, KilosVendidos, Precio, Soles, Dolares, Total, Situacion, SaldoxCobrar FROM VF_VENTAS_R ORDER BY FechaEmision ASC, SERIE ASC, NUMERO ASC, ORD ASC
-- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; -- ----------------------------------------------------- -- Schema banco_bogota_db -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema banco_bogota_db -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `banco_bogota_db` ; USE `banco_bogota_db` ; -- ----------------------------------------------------- -- Table `banco_bogota_db`.`ciudad` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `banco_bogota_db`.`ciudad` ( `id` INT NOT NULL, `nombre` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `banco_bogota_db`.`cuenta` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `banco_bogota_db`.`cuenta` ( `num` INT NOT NULL, `cedula` VARCHAR(45) NOT NULL, `nombre` VARCHAR(45) NOT NULL, `telefono` VARCHAR(20) NOT NULL, `saldo` DOUBLE NOT NULL, `ciudad_id` INT(6) NOT NULL, PRIMARY KEY (`num`), INDEX `fk_cuenta_ciudad_idx` (`ciudad_id` ASC), CONSTRAINT `fk_cuenta_ciudad` FOREIGN KEY (`ciudad_id`) REFERENCES `banco_bogota_db`.`ciudad` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `banco_bogota_db`.`tipo_transaccion` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `banco_bogota_db`.`tipo_transaccion` ( `id` INT NOT NULL, `nombre` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `banco_bogota_db`.`transaccion` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `banco_bogota_db`.`transaccion` ( `id` INT(8) NOT NULL, `valor` DOUBLE NOT NULL, `fecha` DATETIME NOT NULL, `tipo` INT(6) NOT NULL, `cuenta` INT(6) NOT NULL, PRIMARY KEY (`id`), INDEX `fk_transaccion_cuenta1_idx` (`cuenta` ASC), INDEX `fk_transaccion_tipo_transaccion1_idx` (`tipo` ASC), CONSTRAINT `fk_transaccion_cuenta1` FOREIGN KEY (`cuenta`) REFERENCES `banco_bogota_db`.`cuenta` (`num`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_transaccion_tipo_transaccion1` FOREIGN KEY (`tipo`) REFERENCES `banco_bogota_db`.`tipo_transaccion` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
CREATE TABLE pictures ( "id" SERIAL PRIMARY KEY, "path" VARCHAR(300), "description" VARCHAR(500), "likes" INT DEFAULT 0 ); INSERT INTO pictures ("path", "description") VALUES ('images/andy8.jpg', 'Andy when he was a little guy'), ('images/andy7.jpg', 'A windy selfie of Andy taken in Tennessee'), ('images/andy4.jpg', 'Ominous photo of Andy in costume for a play'), ('images/andy5.jpg', 'Andy in his favorite jacket'), ('images/andy3.jpg', 'Andy when he was working at a call center'), ('images/andy1.jpg', 'Andy in Oregon doing a cute pose'), ('images/andy6.jpg', 'Andy in his favorite sweater'), ('images/andy9.jpg', 'Andy looking cool and gaming with a hat on'), ('images/andy2.jpg', 'Andy with his dog mean muggin');
INSERT INTO category (id,description,masterCategory) VALUES (1,'Computers',NULL); INSERT INTO category (id,description,masterCategory) VALUES (2,'Gadgets',NULL); INSERT INTO category (id,description,masterCategory) VALUES (3,'Software',NULL); INSERT INTO category (id,description,masterCategory) VALUES (4,'Books', NULL); INSERT INTO category (id,description,masterCategory) VALUES (5,'Others',NULL); INSERT INTO category (id,description,masterCategory) VALUES (6,'Desktop',1); INSERT INTO category (id,description,masterCategory) VALUES (7,'Laptop',1); INSERT INTO category (id,description,masterCategory) VALUES (8,'Printer',1); INSERT INTO category (id,description,masterCategory) VALUES (9,'Tablet',1); INSERT INTO category (id,description,masterCategory) VALUES (10,'SO',3); INSERT INTO category (id,description,masterCategory) VALUES (11,'Office Application',3); INSERT INTO category (id,description,masterCategory) VALUES (12,'Driver',3); INSERT INTO category (id,description,masterCategory) VALUES (13,'House Application',3); INSERT INTO category (id,description,masterCategory) VALUES (14,'Computer sciencie',4); INSERT INTO category (id,description,masterCategory) VALUES (15,'Biographical',4); INSERT INTO category (id,description,masterCategory) VALUES (16,'Adventure',4); INSERT INTO category (id,description,masterCategory) VALUES (17,'Science fiction',4); INSERT INTO category (id,description,masterCategory) VALUES (18,'Romance',4); INSERT INTO category (id,description,masterCategory) VALUES (19,'Science fiction',4); INSERT INTO category (id,description,masterCategory) VALUES (20,'Police',4);
CREATE TABLE IF NOT EXISTS authorization_codes ( authorization_code varchar(40) NOT NULL, user_id varchar(32) NOT NULL, client_id varchar(32) NOT NULL, expires_at timestamp NOT NULL, redirect_uri varchar(2048) NOT NULL, PRIMARY KEY (authorization_code), FOREIGN KEY (user_id) REFERENCES users(uid) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (client_id) REFERENCES clients(client_id) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE = innodb DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci
/** * SQL for getting 4 recently viewed shisetsu * @author PhuongTT7 * @version $Id: SukHeaderFooterInfoService_getFourRecentlyViewedShisetsu_Sel_01.sql 15047 2014-07-17 10:46:34Z p_chan_fuon $ */ SELECT TEMP.KAISHA_CD ,TEMP.SHISETSU_CD ,TEMP.SHISETSU_NAME ,TEMP.SHISETSU_TYPE ,TEMP.TENPO_ADDRESS_KEN_CD ,TEMP.TENPO_ADDRESS_SIKUGUN_CD ,TEMP.TODOFUKEN_NM ,TEMP.SHIKUGUN_NM ,TEMP.MIN_COST ,TEMP.MAX_COST ,TEMP.IMAGE_FILE_NAME FROM (SELECT FSK.KAISHA_CD ,FSK.SHISETSU_CD ,FSK.SHISETSU_NAME ,FSK.SHISETSU_TYPE ,FSK.TENPO_ADDRESS_KEN_CD ,FSK.TENPO_ADDRESS_SIKUGUN_CD ,MT.TODOFUKEN_NM ,MS.SHIKUGUN_NM ,(SELECT MIN (MLY_COST_MIN_SUM) FROM FR_SHISETSU_PLAN WHERE SHISETSU_CD = FSK.SHISETSU_CD ) AS MIN_COST ,(SELECT MAX (MLY_COST_MAX_SUM) FROM FR_SHISETSU_PLAN WHERE SHISETSU_CD = FSK.SHISETSU_CD ) AS MAX_COST ,(SELECT FSI.IMAGE_FILE_NAME FROM FR_SHISETSU_IMAGE FSI WHERE FSI.SHISETSU_CD = FSK.SHISETSU_CD AND FSI.IMAGE_TYPE = /*imageType*/'SLD' AND FSI.IMAGE_NO = (SELECT MIN(IMAGE_NO) FROM FR_SHISETSU_IMAGE WHERE SHISETSU_CD = FSK.SHISETSU_CD AND IMAGE_TYPE = /*imageType*/'SLD' ) )AS IMAGE_FILE_NAME FROM FR_CUSTOMER_VIEW_HISTORY FCVH INNER JOIN FR_SHISETSU_KIHON FSK ON FSK.SHISETSU_CD = FCVH.SHISETSU_CD INNER JOIN MA_CM_MA_TODOFUKEN MT ON FSK.TENPO_ADDRESS_KEN_CD = MT.TODOFUKEN_CD INNER JOIN MA_CM_MA_SHIKUGUN MS ON FSK.TENPO_ADDRESS_KEN_CD = MS.TODOFUKEN_CD AND FSK.TENPO_ADDRESS_SIKUGUN_CD = MS.SHIKUGUN_CD WHERE FCVH.CUSTOMER_IDENTIFY_ID = /*customerIdentifyId*/'4831d3967ec97966c445047fcb962d7e9e716c6b856e13db772313a04fae8da6' ORDER BY FCVH.VIEW_DATE DESC) TEMP WHERE ROWNUM <= 4
select * from roberto_salcido899.arrwondoq_sheet1
select * from shp_w01.shipment where site_id = 'MLB' and date_created > sysdate - 1/24 and status = 'ready_to_ship'; select count(*) from shp_w01.shipment where cost = 0 and site_id = 'MLB' and date_created > sysdate - 1; select * from shp_w01.shipment where id = 20710086692; -- Mi shipment id = 20710086692 select * from shp_w01.shipping_costs where order_id in ('786629289'); select * from shp_w01.shipment where order_id = '789158766';--'789167072'; select status from shp_w01.shipment where order_id in ('789195619','788776618','789229849','789223761','789221216','788789966'); select * from shp_w01.shipping_costs where order_id in ('789195619','788776618','789229849','789223761','789221216','788789966'); select * from shp_w01.shipment where id in (20707281940,20707250576); --MLB505457422 MLB508023438 select * from shp_w01.shipping_costs where order_id = '786965830'; select * from shp_w01.rules; where id = 34001071; select * from shp_w01.shipment where order_id = '784977571'; select * from shp_w01.shipment where status = 'ready_to_ship' and date_created > sysdate - 1 and site_id = 'MLB'; select * from shp_w01.shipment where status = 'pending' and date_created > sysdate -1 and site_id = 'MLA' order by date_created desc; select s.applied_shipping_rule_id, s.date_created, s.date_handling, s.last_updated, s.order_id, s.receiver_address, a.zip_code, s.status, s.shipping_method_id, s.service_id, s.item_id from shp_w01.shipment s, shp_w01.shipping_address a where s.id in (20707281940,20707250576) and s.receiver_address = a.id; --MLB505457422 MLB508023438 -- closed active select * from SHP_W01.zipcode_migration where zip_code = 49048523; select * from shp_w01.shipment where order_id = '789246455'; select * from shp_w01.shipping_costs where order_id = '789246455';
-- -- Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -- -- WSO2 Inc. licenses this file to you under the Apache License, -- Version 2.0 (the "License"); you may not use this file except -- in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, -- software distributed under the License is distributed on an -- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -- KIND, either express or implied. See the License for the -- specific language governing permissions and limitations -- under the License. -- -- MySQL Script generated by MySQL Workbench -- Mon Feb 1 17:54:10 2016 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema AppCloudDB -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema AppCloudDB -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `AppCloudDB` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ; USE `AppCloudDB` ; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_APP_TYPE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_APP_TYPE` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `description` VARCHAR(1000) NULL, `buildable` int(1) DEFAULT '1', PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Populate Data to `AppCloudDB`.`AC_APP_TYPE` -- ----------------------------------------------------- INSERT INTO `AC_APP_TYPE` (`id`, `name`, `description`) VALUES (1, 'war', 'Allows you to create dynamic websites using Servlets and JSPs and deploy web services.'), (2, 'mss', 'Allows you to create microservices in Java, using an annotation-based programming model. MSF4J stands for Microservices Framework for Java.'), (3, 'php', 'Allows you to create dynamic web pages and complete server applications using PHP web applications.'), (4, 'jaggery', 'Allows you to write all parts of web applications, services and APIs in a completely JavaScript way.'), (5, 'wso2dataservice', 'Allows you to deploy a data service that is supported in WSO2 Data Services Server.'), (6, 'wso2esb', 'Allows you to deploy an ESB configuration that is supported by WSO2 Enterprise Service Bus'), (7, 'custom', 'Allows you to deploy applications using custom Docker images'), (8, 'ballerina', 'Allows you to deploy Ballerina service. Ballerina is a general purpose, concurrent and strongly typed programming language with both textual and graphical syntaxes.'), (9, 'nodejs', 'Allows you to deploy Node.Js applications'); -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_RUNTIME` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_RUNTIME` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `image_name` VARCHAR(100) NULL, `tag` VARCHAR(45) NOT NULL, `description` VARCHAR(1000) NULL, PRIMARY KEY (`id`, `name`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Populate Data to `AppCloudDB`.`ApplicationRuntime` -- ----------------------------------------------------- INSERT INTO `AC_RUNTIME` (`id`, `name`, `image_name`, `tag`, `description`) VALUES (1, 'Apache Tomcat 8.0.28 / WSO2 Application Server 6.0.0-M1 - Deprecated', 'wso2as', '6.0.0-m1', 'OS:alpine-java, Oracle JDK:8u102'), (2, 'OracleJDK 8 + WSO2 MSF4J 1.0.0 - Deprecated', 'msf4j', '1.0.0', 'OS:alpine-java, Oracle JDK:8u102'), (3, 'Apache 2.4.10 (PHP Version 7.0.5)', 'php', '5.6', 'OS:Debian, PHP Version:5.6.20'), (4, 'Carbon 4.2.0', 'carbon','4.2.0', 'OS:alpine-java, Oracle JDK:8u102'), (5, 'Jaggery 0.11.0', 'jaggery', '0.11.0', 'OS:alpine-java, Oracle JDK:8u102'), (6, 'Apache Tomcat 8.0.28 / WSO2 Application Server 6.0.0-M2 - Deprecated', 'wso2as', '6.0.0-m2', 'OS:alpine-java, Oracle JDK:8u102'), (7, 'WSO2 Data Services Server - 3.5.0', 'wso2dataservice', '3.5.0', 'OS:alpine-java, Oracle JDK:8u102'), (8, 'OracleJDK 8 + WSO2 MSF4J 2.0.0', 'msf4j', '2.0.0', 'OS:alpine-java, Oracle JDK:8u102'), (9, 'WSO2 Enterprise Service Bus - 5.0.0', 'wso2esb', '5.0.0', 'OS:Debian, Oracle JDK:8u102'), (10, 'Apache Tomcat 8.0.36 / WSO2 Application Server 6.0.0-M3 - Deprecated', 'wso2as', '6.0.0-m3', 'OS:alpine-java, Oracle JDK:8u102'), (11, 'Custom Docker http-9763 https-9443', 'custom', 'customtag', 'OS:Custom, JAVA Version:custom'), (12, 'WSO2 Data Services Server - 3.5.1', 'wso2dataservice', '3.5.1', 'OS:alpine-java, Oracle JDK:8u102'), (13, 'Apache Tomcat 8.5.5 (Alpine 3.4/Oracle JDK 1.8.0_112)', 'tomcat', '8.5.5-alpine3.4-oracle-jdk1.8.0', 'OS:Alpine 3.4, Oracle JDK 1.8.0_112'), (14, 'Apache Tomcat 8.5.5 (Ubuntu 16.04/Oracle JDK 1.8.0_112)', 'tomcat', '8.5.5-ubuntu16.04-oracle-jdk1.8.0', 'OS:Ubuntu 16.04, Oracle JDK 1.8.0_112'), (15, 'Apache Tomcat 8.5.5 (Alpine 3.4/Open JDK 1.8.0_92)', 'tomcat', '8.5.5-alpine3.4-open-jdk1.8.0', 'OS:Alpine 3.4, Open JDK 1.8.0_92'), (16, 'Apache Tomcat 8.5.5 (Ubuntu 16.04/Open JDK 1.8.0_91)', 'tomcat', '8.5.5-ubuntu16.04-open-jdk1.8.0', 'OS:Ubuntu 16.04, Open JDK 1.8.0_91'), (17, 'OracleJDK 8 + WSO2 MSF4J 2.1.0', 'msf4j', '2.0.0', 'OS:alpine-java, Oracle JDK:8u102'), (18, 'Custom Docker http-8080 https-8443', 'custom', 'customtag', 'OS:Custom, JAVA Version:custom'), (19, 'Ballerina 0.8.0 (Alpine 3.4/Oracle JDK 1.8.0_112)', 'ballerina', '0.8.0', 'OS:Alpine 3.4, Oracle JDK 1.8.0_112'), (20, 'Node.JS 7.7.1 (Alpine 3.4/Node.JS 7.7.1)', 'nodejs', '7.7.1', 'OS:Alpine 3.4, Node.JS 7.7.1'); -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_APPLICATION` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_APPLICATION` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `hash_id` VARCHAR(24) NULL, `description` VARCHAR(1000) NULL, `tenant_id` INT NOT NULL, `default_version` varchar(24) DEFAULT NULL, `app_type_id` INT NULL, `custom_domain` VARCHAR(200) NULL, `cloud_id` VARCHAR(50) NOT NULL, PRIMARY KEY (`id`), CONSTRAINT uk_Application_NAME_TID_REV UNIQUE(`name`, `tenant_id`), CONSTRAINT `fk_Application_ApplicationType1` FOREIGN KEY (`app_type_id`) REFERENCES `AppCloudDB`.`AC_APP_TYPE` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_DEPLOYMENT` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_DEPLOYMENT` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NULL, `replicas` INT NULL, `tenant_id` INT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_VERSION` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_VERSION` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(60) NULL, `hash_id` VARCHAR(24) NULL, `application_id` INT NOT NULL, `runtime_id` INT NOT NULL, `status` VARCHAR(45) NULL, `deployment_id` INT NULL, `tenant_id` INT NULL, `con_spec_cpu` VARCHAR(10) NOT NULL, `con_spec_memory` VARCHAR(10) NOT NULL, `timestamp` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `is_white_listed` TINYINT unsigned NOT NULL DEFAULT 0, `exposure_level` varchar(24) NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `fk_AC_VERSION_AC_APPLICATION1` FOREIGN KEY (`application_id`) REFERENCES `AppCloudDB`.`AC_APPLICATION` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `fk_AC_VERSION_ApplicationRuntime1` FOREIGN KEY (`runtime_id`) REFERENCES `AppCloudDB`.`AC_RUNTIME` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_AC_VERSION_ApplicationDeployment1` FOREIGN KEY (`deployment_id`) REFERENCES `AppCloudDB`.`AC_DEPLOYMENT` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_TAG` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_TAG` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `value` VARCHAR(100) NULL, `version_id` INT NOT NULL, `description` VARCHAR(1000) NULL, `tenant_id` INT NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `fk_AC_TAG_AC_VERSION1` FOREIGN KEY (`version_id`) REFERENCES `AppCloudDB`.`AC_VERSION` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_RUNTIME_PROPERTY` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_RUNTIME_PROPERTY` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(200) NOT NULL, `value` VARCHAR(2000) NULL, `version_id` INT NOT NULL, `description` VARCHAR(1000) NULL, `tenant_id` INT NOT NULL, `is_secured` BIT(1) NULL, PRIMARY KEY (`id`), CONSTRAINT `fk_AC_RUNTIME_PROPERTY_AC_VERSION1` FOREIGN KEY (`version_id`) REFERENCES `AppCloudDB`.`AC_VERSION` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_TENANT_APP_TYPE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_TENANT_APP_TYPE` ( `tenant_id` INT NOT NULL, `app_type_id` INT NOT NULL, CONSTRAINT `fk_TenantAppType_ApplicationType1` FOREIGN KEY (`app_type_id`) REFERENCES `AppCloudDB`.`AC_APP_TYPE` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_APP_TYPE_RUNTIME` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_APP_TYPE_RUNTIME` ( `app_type_id` INT NOT NULL, `runtime_id` INT NOT NULL, CONSTRAINT `fk_ApplicationType_has_ApplicationRuntime_ApplicationType1` FOREIGN KEY (`app_type_id`) REFERENCES `AppCloudDB`.`AC_APP_TYPE` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_ApplicationType_has_ApplicationRuntime_ApplicationRuntime1` FOREIGN KEY (`runtime_id`) REFERENCES `AppCloudDB`.`AC_RUNTIME` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Populate Data to `AppCloudDB`.`ApplicationTypeRuntime` -- ----------------------------------------------------- INSERT INTO `AC_APP_TYPE_RUNTIME` (`app_type_id`, `runtime_id`) VALUES (1, 1), (2, 2), (3, 3), (4, 5), (1, 6), (5, 7), (2, 8), (6, 9), (1, 10), (4, 10), (7, 11), (5, 12), (1, 13), (1, 14), (1, 15), (1, 16), (2, 17), (7, 18), (8, 19), (9, 20); -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_TENANT_RUNTIME` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_TENANT_RUNTIME` ( `tenant_id` INT NOT NULL, `runtime_id` INT NOT NULL, CONSTRAINT `fk_TenanntRuntime_ApplicationRuntime1` FOREIGN KEY (`runtime_id`) REFERENCES `AppCloudDB`.`AC_RUNTIME` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_EVENT` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_EVENT` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `status` VARCHAR(45) NULL, `version_id` INT NOT NULL, `timestamp` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `description` VARCHAR(1000) NULL, `tenant_id` INT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_CONTAINER` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_CONTAINER` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NULL, `version` VARCHAR(100) NULL, `deployment_id` INT NOT NULL, `tenant_id` INT NULL, PRIMARY KEY (`id`), CONSTRAINT `fk_ApplicationContainer_ApplicationDeployment1` FOREIGN KEY (`deployment_id`) REFERENCES `AppCloudDB`.`AC_DEPLOYMENT` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_CONTAINER_SERVICE_PROXY` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_CONTAINER_SERVICE_PROXY` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NULL, `protocol` VARCHAR(20) NULL, `port` INT NULL, `backend_port` VARCHAR(45) NULL, `container_id` INT NOT NULL, `tenant_id` INT NULL, PRIMARY KEY (`id`), CONSTRAINT `fk_ApplicationServiceProxy_ApplicationContainer1` FOREIGN KEY (`container_id`) REFERENCES `AppCloudDB`.`AC_CONTAINER` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_APP_ICON` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_APP_ICON` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `icon` MEDIUMBLOB DEFAULT NULL, `application_id` INT NOT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `application_id_UNIQUE` (`application_id` ASC), CONSTRAINT `fk_AC_APPLICATION_ICON_AC_APPLICATION1` FOREIGN KEY (`application_id`) REFERENCES `AppCloudDB`.`AC_APPLICATION` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_TRANSPORT` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_TRANSPORT` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(20) NOT NULL, `port` INT NOT NULL, `protocol` VARCHAR(4) NOT NULL, `service_prefix` VARCHAR(3) NOT NULL, `description` VARCHAR(1000) NULL DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_RUNTIME_TRANSPORT` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_RUNTIME_TRANSPORT` ( `transport_id` INT NOT NULL, `runtime_id` INT NOT NULL, CONSTRAINT `fk_Service_id` FOREIGN KEY (`transport_id`) REFERENCES `AppCloudDB`.`AC_TRANSPORT` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_ApplicationRuntime_id` FOREIGN KEY (`runtime_id`) REFERENCES `AppCloudDB`.`AC_RUNTIME` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; CREATE TABLE IF NOT EXISTS AC_SUBSCRIPTION_PLANS ( PLAN_ID INTEGER NOT NULL AUTO_INCREMENT, PLAN_NAME VARCHAR(200) NOT NULL, MAX_APPLICATIONS INT NOT NULL, MAX_DATABASES INT NOT NULL, CLOUD_ID VARCHAR(50) NOT NULL, MAX_REPLICA_COUNT INT(11) NOT NULL, PRIMARY KEY (PLAN_ID), CONSTRAINT uk_SubscriptionPlans_PlanName_CloudId UNIQUE(PLAN_NAME, CLOUD_ID)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_TENANT_SUBSCRIPTION` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS AC_TENANT_SUBSCRIPTION ( `tenant_id` INT NOT NULL, `plan` VARCHAR(50) NOT NULL, `max_app_count` INT(11) NOT NULL DEFAULT -1, `max_database_count` INT(11) NOT NULL DEFAULT -1, `cloud_id` VARCHAR(50) NOT NULL, `max_replica_count` INT(11) NOT NULL DEFAULT -1, `max_memory` INT(11) NOT NULL DEFAULT -1, `max_cpu` INT(11) NOT NULL DEFAULT -1, `start_date`DATETIME NOT NULL, `end_date` DATETIME NOT NULL, `is_white_listed` TINYINT unsigned NOT NULL DEFAULT 0, `status` VARCHAR(50) NOT NULL, PRIMARY KEY (`tenant_id`, `cloud_id`)) ENGINE = InnoDB; CREATE TABLE IF NOT EXISTS AC_CONTAINER_SPECIFICATIONS ( CON_SPEC_ID INTEGER NOT NULL AUTO_INCREMENT, CON_SPEC_NAME VARCHAR(200) NOT NULL, CPU INT NOT NULL, MEMORY INT NOT NULL, COST_PER_HOUR INT NOT NULL, PRIMARY KEY (CON_SPEC_ID)) ENGINE = InnoDB; CREATE TABLE IF NOT EXISTS AC_RUNTIME_CONTAINER_SPECIFICATIONS ( id int(11) NOT NULL, CON_SPEC_ID int(11) NOT NULL, PRIMARY KEY (id,CON_SPEC_ID), KEY CON_SPEC_ID (CON_SPEC_ID)) ENGINE=InnoDB; CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_WHITE_LISTED_TENANTS` ( `id` INT NOT NULL AUTO_INCREMENT, `tenant_id` INT NOT NULL, `max_app_count` INT(11) DEFAULT -1, `max_database_count` INT(11) DEFAULT -1, `cloud_id` VARCHAR(50) NOT NULL, `max_replica_count` INT(11) NOT NULL DEFAULT 4, PRIMARY KEY (`id`, `tenant_id`), CONSTRAINT uk_WhiteListedTenants UNIQUE (tenant_id, cloud_id)) ENGINE = InnoDB; CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_APPLICAION_CONTEXTS` ( `id` INT NOT NULL AUTO_INCREMENT, `tenant_id` INT NOT NULL, `version_id` INT NOT NULL, `context` VARCHAR(200) NOT NULL, PRIMARY KEY (`id`), UNIQUE (`version_id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Populate Data to `AppCloudDB`.`ApplicationRuntime` -- ----------------------------------------------------- INSERT INTO `AC_TRANSPORT` (`id`, `name`, `port`, `protocol`, `service_prefix`, `description`) VALUES (1, 'http', 80, 'TCP', 'htp', 'HTTP Protocol'), (2, 'https', 443, 'TCP', 'hts', 'HTTPS Protocol'), (3, 'http-alt', 8080, 'TCP', 'htp', 'HTTP Alternate Protocol'), (4, 'https-alt', 8443, 'TCP', 'hts', 'HTTPS Alternate Protocol'), (5, 'http', 9763, 'TCP', 'htp', 'HTTP servlet transport for carbon products'), (6, 'https', 9443, 'TCP', 'hts', 'HTTPS servlet transport for carbon products'), (7, 'http', 8280, 'TCP', 'htp', 'HTTP Protocol'), (8, 'https', 8243, 'TCP', 'hts', 'HTTPS Protocol'), (9, 'http', 9090, 'TCP', 'htp', 'HTTPS Protocol for Ballerina'), (10, 'https', 9092, 'TCP', 'hts', 'HTTPS Protocol for Ballerina'); -- ----------------------------------------------------- -- Populate Data to `AppCloudDB`.`ApplicationRuntimeService` -- ----------------------------------------------------- INSERT INTO `AC_RUNTIME_TRANSPORT` (`transport_id`, `runtime_id`) VALUES (4, 1), (4, 2), (1, 3), (4, 4), (3, 1), (3, 2), (2, 3), (3, 4), (6, 5), (5, 5), (3, 6), (4, 6), (5, 7), (6, 7), (3, 8), (4, 8), (7, 9), (8, 9), (3, 10), (4, 10), (5, 11), (6, 11), (5, 12), (6, 12), (3, 13), (4, 13), (3, 14), (4, 14), (3, 15), (3, 16), (4, 15), (4, 16), (3, 17), (4, 17), (3, 18), (4, 18), (9, 19), (10, 19), (3, 20), (4, 20); INSERT INTO `AC_CONTAINER_SPECIFICATIONS` (`CON_SPEC_NAME`, `CPU`, `MEMORY`, `COST_PER_HOUR`) VALUES ('128MB RAM and 0.1x vCPU', 100, 128, 1), ('256MB RAM and 0.2x vCPU', 200, 256, 2), ('512MB RAM and 0.3x vCPU', 300, 512, 3), ('1024MB RAM and 0.5x vCPU', 500, 1024, 4), ('2048MB RAM and 1x vCPU', 1000, 2048, 5); INSERT INTO `AC_SUBSCRIPTION_PLANS` (`PLAN_ID`, `PLAN_NAME`, `MAX_APPLICATIONS`, `MAX_DATABASES`, `CLOUD_ID`, `MAX_REPLICA_COUNT`) VALUES (1, 'FREE', 3, 3, 'app_cloud', 2), (2, 'PAID', 10, 6, 'app_cloud', 4), (3, 'FREE', 3, 3, 'integration_cloud', 2), (4, 'PAID', 10, 6, 'integration_cloud', 4); INSERT INTO `AC_RUNTIME_CONTAINER_SPECIFICATIONS` (`id`, `CON_SPEC_ID`) VALUES (1, 3), (2, 2), (2, 3), (3, 1), (3, 2), (3, 3), (5, 3), (6, 3), (7, 3), (1, 4), (7, 4), (2, 4), (8, 2), (8, 3), (8, 4), (5, 4), (6, 4), (9, 4), (10, 3), (10, 4), (11, 3), (11, 4), (12, 3), (12, 4), (13, 3), (13, 4), (14, 3), (14, 4), (15, 3), (15, 4), (16, 3), (16, 4), (17, 2), (17, 3), (17, 4), (18, 4), (19, 5), (19, 7), (20, 3), (12 , 5); -- ----------------------------------------------------- -- Table `AppCloudDB`.`AC_CLOUD_APP_TYPE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AppCloudDB`.`AC_CLOUD_APP_TYPE` ( `cloud_id` VARCHAR(50) NOT NULL, `app_type_id` INT NOT NULL, CONSTRAINT `fk_cloud_has_cloudAppType_appType` FOREIGN KEY (`app_type_id`) REFERENCES `AppCloudDB`.`AC_APP_TYPE` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Populate Data to `AppCloudDB`.`AC_CLOUD_APP_TYPE` -- ----------------------------------------------------- INSERT INTO `AC_CLOUD_APP_TYPE` (`cloud_id`, `app_type_id`) VALUES ('app_cloud', 1), ('app_cloud', 2), ('app_cloud', 3), ('app_cloud', 4), ('app_cloud', 5), ('app_cloud', 6), ('app_cloud', 7), ('integration_cloud', 1), ('integration_cloud', 2), ('integration_cloud', 3), ('integration_cloud', 4), ('integration_cloud', 5), ('integration_cloud', 6), ('integration_cloud', 7), ('integration_cloud', 8), ('integration_cloud', 9); SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; -- -------------------------------------------------- -- CUSTOM DOCKER IMAGE TABLE -- -------------------------------------------------- CREATE TABLE IF NOT EXISTS AC_CUSTOM_DOCKER_IMAGES ( `image_id` VARCHAR(255) NOT NULL, `tenant_id` INT NOT NULL, `remote_url` VARCHAR(255) NULL, `test_results_json` VARCHAR(500) NULL, `status` VARCHAR(10) NULL, `last_updated` DATETIME NULL, PRIMARY KEY (`image_id`)) ENGINE = InnoDB;
SELECT product_id, product_name, product_type, unit, price_unit, wholesale, current_inventory FROM tutorial.excel_sql_inventory_data
CREATE TABLE [dashboard].[Resultados] ( [id] INT IDENTITY (1, 1) NOT NULL, [annio] INT NULL, [mes] INT NULL, [kpi] VARCHAR (50) NULL, [Unidad] VARCHAR (50) NULL, [Real] DECIMAL (38, 10) NULL, [planeado] DECIMAL (38, 10) NULL, [fecha] DATE NULL, CONSTRAINT [PK_resultados] PRIMARY KEY CLUSTERED ([id] ASC) );
PARAMETERS [@Motivo] Text ( 255 ); select MotivoNombre,MotivoID from TB_Motivos WHERE (MotivoNombre LIKE [@Motivo] OR [@Motivo] IS NULL)
/* Chapter 4: The WHERE Clause */ /* NOT EXISTS and NOT IN */ /* The following three queries all produce the same results. */ SELECT name FROM customers WHERE NOT EXISTS ( SELECT 1 FROM carts WHERE customer_id = customers.id ) ; SELECT name FROM customers WHERE NOT ( id IN ( SELECT customer_id FROM carts ) ) ; SELECT name FROM customers AS t WHERE NOT ( id IN ( SELECT customer_id FROM carts WHERE customer_id = t.id ) ) ; /* Results should look like this -- name F. Black */
SELECT MAX(ACCOUNT_CODE) FROM ACCOUNT_CODE_MST --勘定科目管理 WHERE 1=1 /*IF (agencyCustCode!=null)*/ AND AGENCY_CUST_CODE = /*agencyCustCode*/'' /*END*/ /*IF (customerCode!=null)*/ AND CUSTOMER_CODE = /*customerCode*/'' /*END*/ /*IF (parentsAccountCode!=null)*/ AND PARENTS_ACCOUNT_CODE = /*parentsAccountCode*/'' /*END*/ /*IF (accountCodeLevel!=null)*/ AND ACCOUNT_CODE_LEVEL = CAST(/*accountCodeLevel*/'' AS CHAR(1)) /*END*/
-- MySQL Script generated by MySQL Workbench -- Thu May 19 19:41:55 2016 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema messages -- ----------------------------------------------------- DROP SCHEMA IF EXISTS `messages` ; -- ----------------------------------------------------- -- Schema messages -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `messages` DEFAULT CHARACTER SET utf8 ; USE `messages` ; -- ----------------------------------------------------- -- Table `messages`.`users` -- ----------------------------------------------------- DROP TABLE IF EXISTS `messages`.`users` ; CREATE TABLE IF NOT EXISTS `messages`.`users` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) CHARACTER SET 'latin1' NULL, `salt` TEXT CHARACTER SET 'latin1' NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `messages`.`messages` -- ----------------------------------------------------- DROP TABLE IF EXISTS `messages`.`messages` ; CREATE TABLE IF NOT EXISTS `messages`.`messages` ( `id` INT NOT NULL AUTO_INCREMENT, `users_id` INT NOT NULL, `fromUserId` INT NOT NULL, `subject` TEXT NULL, `message` TEXT NULL, PRIMARY KEY (`id`), INDEX `fk_messages_users_idx` (`users_id` ASC), INDEX `fk_messages_users1_idx` (`fromUserId` ASC), CONSTRAINT `fk_messages_users` FOREIGN KEY (`users_id`) REFERENCES `messages`.`users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_messages_users1` FOREIGN KEY (`fromUserId`) REFERENCES `messages`.`users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
-- phpMyAdmin SQL Dump -- version 5.0.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 22, 2021 at 04:00 PM -- Server version: 10.4.14-MariaDB -- PHP Version: 7.4.11 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `db_lsi` -- -- -------------------------------------------------------- -- -- Table structure for table `admin_account` -- CREATE TABLE `admin_account` ( `admin_id` int(11) NOT NULL, `email` varchar(50) NOT NULL, `password` varchar(50) NOT NULL, `date_created` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `admin_account` -- INSERT INTO `admin_account` (`admin_id`, `email`, `password`, `date_created`) VALUES (1, 'admin@gmail.com', 'admin', '2021-01-22 09:08:02'); -- -------------------------------------------------------- -- -- Table structure for table `admin_register` -- CREATE TABLE `admin_register` ( `account_id` int(11) NOT NULL, `username` varchar(60) NOT NULL, `email` varchar(60) NOT NULL, `password` varchar(60) NOT NULL, `date_created` timestamp NOT NULL DEFAULT current_timestamp(), `date_modified` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `admin_register` -- INSERT INTO `admin_register` (`account_id`, `username`, `email`, `password`, `date_created`, `date_modified`) VALUES (11, 'racelle', 'admin@gmail.com', '123', '2021-01-22 09:24:11', '2021-01-22 14:59:23'); -- -------------------------------------------------------- -- -- Table structure for table `lsi` -- CREATE TABLE `lsi` ( `lsi_id` int(11) NOT NULL, `name` varchar(60) NOT NULL, `age` int(10) NOT NULL, `address` varchar(60) NOT NULL, `birthdate` date NOT NULL, `citizenship` varchar(60) NOT NULL, `mobile_number` varchar(60) NOT NULL, `place_from` varchar(60) NOT NULL, `date_of_arrival` date NOT NULL, `status` varchar(60) NOT NULL, `date_created` timestamp NOT NULL DEFAULT current_timestamp(), `date_modified` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `idx_name` varchar(60) NOT NULL, `account_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `lsi` -- INSERT INTO `lsi` (`lsi_id`, `name`, `age`, `address`, `birthdate`, `citizenship`, `mobile_number`, `place_from`, `date_of_arrival`, `status`, `date_created`, `date_modified`, `idx_name`, `account_id`) VALUES (12, 'LOL', 20, 'Male', '2021-01-22', 'ROOM 4', '1000.00', '3', '2021-01-23', 'Negative', '2021-01-18 16:00:00', '2021-01-22 14:47:53', '', 0), (20, 'Racelle', 20, 'Capoocan', '2020-01-01', 'Filipino', '09', 'Manila', '2020-01-01', 'Positive', '2021-01-22 08:16:19', '2021-01-22 09:22:02', '', 0), (27, 'Racelle', 20, 'Capoocan, Leyte', '2000-06-27', 'Filipino', '09676853559', 'Cebu City', '2021-01-20', 'DISCHARGED', '2021-01-22 09:58:08', '2021-01-22 14:58:40', '', 11); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin_account` -- ALTER TABLE `admin_account` ADD PRIMARY KEY (`admin_id`); -- -- Indexes for table `admin_register` -- ALTER TABLE `admin_register` ADD PRIMARY KEY (`account_id`); -- -- Indexes for table `lsi` -- ALTER TABLE `lsi` ADD PRIMARY KEY (`lsi_id`), ADD KEY `name` (`name`), ADD KEY `idx_name` (`idx_name`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin_account` -- ALTER TABLE `admin_account` MODIFY `admin_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_register` -- ALTER TABLE `admin_register` MODIFY `account_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `lsi` -- ALTER TABLE `lsi` MODIFY `lsi_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/* Navicat Premium Data Transfer Source Server : duodian Source Server Type : MySQL Source Server Version : 50634 Source Host : rds7b1n6yxdvko77nhv6o.mysql.rds.aliyuncs.com Source Database : admore Target Server Type : MySQL Target Server Version : 50634 File Encoding : utf-8 Date: 03/02/2018 19:20:42 PM */ SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for `sys_menu` -- ---------------------------- DROP TABLE IF EXISTS `sys_menu`; CREATE TABLE `sys_menu` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `pid` bigint(20) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `icon` varchar(255) DEFAULT NULL, `prefix` varchar(255) DEFAULT NULL, `status` int(11) DEFAULT NULL, `sorts` int(11) DEFAULT NULL, `domain` varchar(255) DEFAULT 'work.duodian.com', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=339 DEFAULT CHARSET=utf8mb4; SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO subscriber VALUES (1, 2, 1, '33610013386',123,1) INSERT INTO Subscriber VALUES (2, 1, 2, '35699002900',195,0) INSERT INTO Subscriber VALUES (3, 3, 1, '33610013388',129,0) INSERT INTO Subscriber VALUES (4, 2, 3, '33610017564',143,1)
CREATE DEFINER=`door`@`%` FUNCTION `get_class_term`(class varchar(20), someday date) RETURNS int(11) COMMENT '取得班级在某个时刻为第几个学期' BEGIN declare y, t, ret int; select c.year, c.term into y, t from calendar c where c.start <= someday and c.end >= someday; if y is not null and t is not null then select (y - cls.grade) * 2 + t into ret from class cls where cls.classno = class; if ret is not null then return ret; end if; end if; return -1; END
-- -------------------------------------------------------- -- Host: localhost -- Versión del servidor: 5.7.24 - MySQL Community Server (GPL) -- SO del servidor: Win64 -- HeidiSQL Versión: 10.2.0.5599 -- -------------------------------------------------------- /*!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' */; -- Volcando estructura de base de datos para negocios CREATE DATABASE IF NOT EXISTS `negocios` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `negocios`; -- Volcando estructura para tabla negocios.categorias CREATE TABLE IF NOT EXISTS `categorias` ( `NOMBRE` varchar(25) NOT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`NOMBRE`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.categorias: ~2 rows (aproximadamente) /*!40000 ALTER TABLE `categorias` DISABLE KEYS */; INSERT INTO `categorias` (`NOMBRE`, `ESTATUS`, `created_at`, `updated_at`) VALUES ('BOTONES', 'A', '2020-11-04 22:31:48', '2020-11-04 22:31:49'), ('Prueba', 'A', '2020-11-05 05:15:06', '2020-11-05 05:21:48'); /*!40000 ALTER TABLE `categorias` ENABLE KEYS */; -- Volcando estructura para tabla negocios.manodeobras CREATE TABLE IF NOT EXISTS `manodeobras` ( `CODIGO` varchar(50) NOT NULL, `ACTIVIDAD` varchar(50) DEFAULT NULL, `UNIDAD_MEDIDA` varchar(15) DEFAULT NULL, `COSTO` float DEFAULT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`CODIGO`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.manodeobras: ~1 rows (aproximadamente) /*!40000 ALTER TABLE `manodeobras` DISABLE KEYS */; INSERT INTO `manodeobras` (`CODIGO`, `ACTIVIDAD`, `UNIDAD_MEDIDA`, `COSTO`, `ESTATUS`, `created_at`, `updated_at`) VALUES ('MO-ARM', 'ARMADO', 'PIEZA', 15, 'A', '2020-11-04 19:50:12', '2020-11-05 02:59:56'), ('prueba1', 'prueba', 'Pz', 133, 'A', '2020-11-05 03:00:29', '2020-11-05 03:00:41'); /*!40000 ALTER TABLE `manodeobras` ENABLE KEYS */; -- Volcando estructura para tabla negocios.materiaprimas CREATE TABLE IF NOT EXISTS `materiaprimas` ( `CATEGORIA` varchar(25) DEFAULT NULL, `CODIGO` varchar(50) NOT NULL, `MATERIA_PRIMA` varchar(50) DEFAULT NULL, `UNIDAD_MEDIDA` varchar(25) DEFAULT NULL, `CANTIDAD` int(11) DEFAULT NULL, `PRECIO_VENTA` float DEFAULT NULL, `COSTO_COMPRA` float DEFAULT NULL, `COSTEO_PROMEDIO_RECIENTE` float DEFAULT NULL, `PRECIO_VENTA_ACTUALIZADO` float DEFAULT NULL, `INVENTARIO` int(11) DEFAULT NULL, `PUNTO_REORDEN` int(11) DEFAULT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`CODIGO`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.materiaprimas: ~1 rows (aproximadamente) /*!40000 ALTER TABLE `materiaprimas` DISABLE KEYS */; INSERT INTO `materiaprimas` (`CATEGORIA`, `CODIGO`, `MATERIA_PRIMA`, `UNIDAD_MEDIDA`, `CANTIDAD`, `PRECIO_VENTA`, `COSTO_COMPRA`, `COSTEO_PROMEDIO_RECIENTE`, `PRECIO_VENTA_ACTUALIZADO`, `INVENTARIO`, `PUNTO_REORDEN`, `ESTATUS`, `created_at`, `updated_at`) VALUES ('BOTONES', 'BOT-1', 'Botón CH', 'PIEZA', 30, 0.5, 1, 3, 2, 1, 10, 'A', '2020-11-02 16:25:51', '2020-11-05 01:25:31'); /*!40000 ALTER TABLE `materiaprimas` ENABLE KEYS */; -- Volcando estructura para tabla negocios.productocomercials CREATE TABLE IF NOT EXISTS `productocomercials` ( `CODIGO` varchar(50) NOT NULL DEFAULT '', `PRODUCTO` varchar(50) NOT NULL DEFAULT '', `CANTIDAD` int(11) DEFAULT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `PRECIOCOMP` float DEFAULT NULL, `PRECIOVENT` float DEFAULT NULL, `COSTACT` float DEFAULT NULL, `created_at` timestamp NOT NULL, `updated_at` timestamp NOT NULL, PRIMARY KEY (`CODIGO`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.productocomercials: ~11 rows (aproximadamente) /*!40000 ALTER TABLE `productocomercials` DISABLE KEYS */; INSERT INTO `productocomercials` (`CODIGO`, `PRODUCTO`, `CANTIDAD`, `ESTATUS`, `PRECIOCOMP`, `PRECIOVENT`, `COSTACT`, `created_at`, `updated_at`) VALUES ('adas', 'prueba', 1, 'A', 2, 3, 4, '2020-10-30 02:55:10', '2020-11-03 01:11:12'), ('CALTIN', 'Calceta', 5, 'A', 11, 50, 30, '2020-10-28 13:44:21', '2020-10-30 05:07:53'), ('CEL', 'celular', 0, 'B', 0, 0, 0, '2020-10-28 04:45:27', '2020-11-03 01:03:44'), ('CLATIN', 'calcetin', 0, 'A', 0, 0, 0, '2020-10-30 02:10:54', '2020-10-30 04:57:35'), ('CMSA', 'CAMISA', 10, 'A', 12, 23, 23, '2020-10-27 19:35:51', '2020-10-27 19:35:52'), ('COMI', 'COMIDa', 2, 'A', 2, 0, 0, '2020-10-28 04:48:41', '2020-10-29 03:05:06'), ('edwdq', 'dada', 0, 'A', 0, 0, 0, '2020-11-01 17:30:43', '2020-11-01 17:30:43'), ('GNTE', 'Guantes', 1, 'A', 40, 12, 30, '2020-10-28 04:44:01', '2020-10-28 04:44:01'), ('GRRA', 'Gorra', 11, 'A', 122, 14, 133, '2020-10-28 04:44:49', '2020-10-28 04:44:49'), ('perros', 'sdas', 2, 'A', 2, 2, 2, '2020-11-01 17:30:54', '2020-11-01 17:31:25'), ('Prueba', 'Prueba', 1, 'A', 2, 3, 4, '2020-10-29 03:16:40', '2020-10-29 03:17:52'), ('sdasd', '', 0, 'A', 0, 0, 0, '2020-10-30 03:08:40', '2020-10-30 03:08:40'), ('Tech', 'Tecnologia', 12, 'A', 23, 12, 13, '2020-10-30 01:56:05', '2020-10-30 01:56:48'), ('ZTO', 'Zapato', 22, 'A', 20, 40, 12, '2020-10-28 04:43:10', '2020-10-29 03:14:33'); /*!40000 ALTER TABLE `productocomercials` ENABLE KEYS */; -- Volcando estructura para tabla negocios.productofabricados CREATE TABLE IF NOT EXISTS `productofabricados` ( `CODIGO` varchar(50) NOT NULL, `PRODUCTO` varchar(50) DEFAULT NULL, `CANTIDAD` float DEFAULT NULL, `PRECIO_COMPRA` float DEFAULT NULL, `PRECIO_VENTA` float DEFAULT NULL, `COSTO_ACTUALIZADO` float DEFAULT NULL, `PRECIO_VENT_ACT` float DEFAULT NULL, `INVENTARIO` float DEFAULT NULL, `PUNTO_REORDEN` float DEFAULT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`CODIGO`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.productofabricados: ~3 rows (aproximadamente) /*!40000 ALTER TABLE `productofabricados` DISABLE KEYS */; INSERT INTO `productofabricados` (`CODIGO`, `PRODUCTO`, `CANTIDAD`, `PRECIO_COMPRA`, `PRECIO_VENTA`, `COSTO_ACTUALIZADO`, `PRECIO_VENT_ACT`, `INVENTARIO`, `PUNTO_REORDEN`, `ESTATUS`, `created_at`, `updated_at`) VALUES ('CAM', 'CAMISA', 12, 140, 170, 170, 180, 33, 5, 'A', '2020-11-01 13:31:17', '2020-11-03 01:11:35'), ('Prueba', 'prueba', 13, 3323, 133, 43, 53, 63, 73, 'A', '2020-11-02 19:50:59', '2020-11-02 20:08:33'), ('prueba2', 'prueba2', 8, 9, 44, 1, 2, 8, 9, 'A', '2020-11-02 19:52:38', '2020-11-02 21:48:30'), ('prueba3', 'qws', 1, 3, 0, 8, 9, 8, 9, 'A', '2020-11-02 19:53:16', '2020-11-02 19:53:16'); /*!40000 ALTER TABLE `productofabricados` ENABLE KEYS */; -- Volcando estructura para tabla negocios.servicios CREATE TABLE IF NOT EXISTS `servicios` ( `CODIGO` varchar(50) NOT NULL DEFAULT '', `ACTIVIDAD` varchar(50) DEFAULT '', `PRECIO_VENT` float DEFAULT NULL, `PRECIO_VENT_ACT` float DEFAULT NULL, `PAGO_EMPLEADO` float DEFAULT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`CODIGO`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.servicios: ~1 rows (aproximadamente) /*!40000 ALTER TABLE `servicios` DISABLE KEYS */; INSERT INTO `servicios` (`CODIGO`, `ACTIVIDAD`, `PRECIO_VENT`, `PRECIO_VENT_ACT`, `PAGO_EMPLEADO`, `ESTATUS`, `created_at`, `updated_at`) VALUES ('LAVADO', 'Lavar autos', 150, 150, 50, 'A', '2020-11-01 09:10:54', '2020-11-03 01:11:25'), ('nuevo Serv', 'ASDC', 0, 0, 0, 'A', '2020-11-02 21:53:30', '2020-11-02 21:53:37'), ('PruebaServicio', 'd', 1, 33, 44, 'A', '2020-11-01 17:40:35', '2020-11-01 18:05:56'); /*!40000 ALTER TABLE `servicios` ENABLE KEYS */; -- Volcando estructura para tabla negocios.unidaddemedidas CREATE TABLE IF NOT EXISTS `unidaddemedidas` ( `NOMBRE` varchar(25) NOT NULL, `ESTATUS` varchar(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`NOMBRE`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Volcando datos para la tabla negocios.unidaddemedidas: ~0 rows (aproximadamente) /*!40000 ALTER TABLE `unidaddemedidas` DISABLE KEYS */; INSERT INTO `unidaddemedidas` (`NOMBRE`, `ESTATUS`, `created_at`, `updated_at`) VALUES ('pieza', 'A', '2020-11-07 09:11:46', '2020-11-07 09:11:47'); /*!40000 ALTER TABLE `unidaddemedidas` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
connect meteor/meteor create table tasks ( user_id varchar2(20), name varchar2(50), description varchar2(250), due_date date, done varchar2(1) ); alter table tasks add constraint tasks_pk primary key (user_id, name); exit
create table passport( id serial primary key, series varchar(10), number varchar(10), expirydate date );
/*==============================================================*/ /* Table: PF_USER */ /*==============================================================*/ DROP TABLE IF EXISTS PF_USER; CREATE TABLE PF_USER ( USER_ID VARCHAR(64) NOT NULL COMMENT '用户ID', USER_NAME VARCHAR(64) COMMENT '用户名', AGE INTEGER COMMENT '年龄', SALARY DECIMAL(11,2) COMMENT '薪水', PRIMARY KEY (USER_ID) ); ALTER TABLE PF_USER COMMENT '用户表'; /*==============================================================*/ /* Table: PF_ROLE */ /*==============================================================*/ DROP TABLE IF EXISTS PF_ROLE; CREATE TABLE PF_ROLE ( ROLE_ID VARCHAR(64) NOT NULL COMMENT '角色ID', ROLE_NAME VARCHAR(200) NOT NULL COMMENT '角色名称', DES VARCHAR(200) COMMENT '备注', PRIMARY KEY (ROLE_ID) ); ALTER TABLE PF_ROLE COMMENT '角色表'; /*==============================================================*/ /* Table: PF_USER_ROLE */ /*==============================================================*/ DROP TABLE IF EXISTS PF_USER_ROLE; CREATE TABLE PF_USER_ROLE ( USER_ID VARCHAR(64) NOT NULL COMMENT '用户ID', ROLE_ID VARCHAR(64) NOT NULL COMMENT '角色ID', PRIMARY KEY (USER_ID, ROLE_ID) ); ALTER TABLE PF_USER_ROLE COMMENT '用户角色表';
INSERT INTO movies --다 추가할때는 컬럼명 일일히 추가할 필요 없음-- VALUES(20182530, '극한직업', '15세이상관람가', '이병헌', 20190123, 3138467, 111, '한국', '코미디'); SELECT * FROM movies WHERE 영화코드=20040521; DELETE FROM movies WHERE 영화코드=20040521; SELECT * FROM movies WHERE 영화코드=20185124; UPDATE movies SET 감독 = '없음' WHERE 영화코드=20185124; SELECT * FROM movies WHERE 영화코드=20185124;
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- ホスト: localhost -- 生成日時: 2021 年 2 月 11 日 04:05 -- サーバのバージョン: 10.4.17-MariaDB -- PHP のバージョン: 8.0.0 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 */; -- -- データベース: `gsacf_d07_32` -- -- -------------------------------------------------------- -- -- テーブルの構造 `diary_table` -- CREATE TABLE `diary_table` ( `id` int(11) NOT NULL, `title` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `diary` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `DateCreated` date NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `weather` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `diary_table` -- INSERT INTO `diary_table` (`id`, `title`, `diary`, `DateCreated`, `created_at`, `updated_at`, `weather`) VALUES (2, '', '水をあげる', '2021-01-07', '2021-01-07 01:08:20', '2021-01-07 01:08:20', '晴れ'), (3, '玉ねぎ植える', 'テスト 玉ねぎ植える', '2021-01-07', '2021-01-07 13:34:12', '2021-01-07 13:34:12', '晴れ'), (4, '枯れる', 'トマト枯れる', '2021-01-08', '2021-01-07 14:23:15', '2021-01-07 14:23:15', '雪'); -- -------------------------------------------------------- -- -- テーブルの構造 `file_db` -- CREATE TABLE `file_db` ( `id` int(11) NOT NULL, `file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `file_path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(140) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `insert_time` datetime NOT NULL DEFAULT current_timestamp(), `update_time` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- テーブルの構造 `like_table` -- CREATE TABLE `like_table` ( `id` int(12) NOT NULL, `user_id` int(12) NOT NULL, `todo_id` int(12) NOT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `like_table` -- INSERT INTO `like_table` (`id`, `user_id`, `todo_id`, `created_at`) VALUES (1, 0, 3, '2021-01-19 01:10:50'), (2, 0, 5, '2021-01-19 01:12:35'), (3, 0, 6, '2021-01-19 01:12:36'), (4, 0, 5, '2021-01-19 01:12:37'), (6, 3, 5, '2021-01-19 01:13:36'), (7, 3, 6, '2021-01-19 01:13:37'), (10, 3, 5, '2021-01-21 02:55:31'), (14, 3, 3, '2021-01-21 23:19:15'); -- -------------------------------------------------------- -- -- テーブルの構造 `like_table_orijinal` -- CREATE TABLE `like_table_orijinal` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `todo_id` int(11) NOT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `like_table_orijinal` -- INSERT INTO `like_table_orijinal` (`id`, `user_id`, `todo_id`, `created_at`) VALUES (3, 3, 3, '2021-01-21 23:39:06'), (4, 3, 4, '2021-01-21 23:39:07'), (5, 3, 2, '2021-01-21 23:39:08'); -- -------------------------------------------------------- -- -- テーブルの構造 `mst_staff` -- CREATE TABLE `mst_staff` ( `code` int(11) NOT NULL, `name` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `mst_staff` -- INSERT INTO `mst_staff` (`code`, `name`, `password`) VALUES (1, 'ろくまる', 'f1576406b382b7d1c8c2607f7c563d4f'), (2, '田中', '81dc9bdb52d04dc20036dbd8313ed055'), (3, 'okura', '76d80224611fc919a5d54f0ff9fba446'), (4, '', ''), (5, 'クリス', 'c8837b23ff8aaa8a2dde915473ce0991'), (6, 'きさらぎ', '827ccb0eea8a706c4c34a16891f84e7b'), (7, 'きさらぎ', '827ccb0eea8a706c4c34a16891f84e7b'), (8, '', ''); -- -------------------------------------------------------- -- -- テーブルの構造 `todo_table` -- CREATE TABLE `todo_table` ( `id` int(12) NOT NULL, `todo` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `deadline` date NOT NULL, `image` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `todo_table` -- INSERT INTO `todo_table` (`id`, `todo`, `deadline`, `image`, `created_at`, `updated_at`) VALUES (3, '買い物行くよ', '2020-12-21', NULL, '2020-12-19 17:40:51', '2020-12-19 17:40:51'), (5, '関数', '2020-12-27', NULL, '2020-12-27 01:27:12', '2020-12-27 01:27:12'), (6, 'test', '2021-01-20', NULL, '2021-01-18 22:40:04', '2021-01-18 22:40:04'), (7, 'test', '2021-02-04', 'upload/20210204150404f96a5ff54583afb941249dffef171dc1.jpeg', '2021-02-04 23:04:04', '2021-02-04 23:04:04'); -- -------------------------------------------------------- -- -- テーブルの構造 `users_table` -- CREATE TABLE `users_table` ( `id` int(12) NOT NULL, `username` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `is_admin` int(1) NOT NULL, `is_deleted` int(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `users_table` -- INSERT INTO `users_table` (`id`, `username`, `password`, `is_admin`, `is_deleted`, `created_at`, `updated_at`) VALUES (3, '斎藤', '123456', 0, 0, '2021-01-07 22:49:27', '2021-01-07 22:49:27'), (4, '田中', 'あああああ', 0, 0, '2021-01-07 22:49:35', '2021-01-07 22:49:35'), (5, '鈴木', 'mokumoku', 0, 0, '2021-01-07 22:54:11', '2021-01-07 22:54:11'), (6, 'saito', '12345', 0, 0, '2021-01-09 15:52:31', '2021-01-09 15:52:31'), (7, 'takahashi', '123', 0, 0, '2021-01-09 16:17:03', '2021-01-09 16:17:03'); -- -------------------------------------------------------- -- -- テーブルの構造 `users_table_orijinal` -- CREATE TABLE `users_table_orijinal` ( `id` int(12) NOT NULL, `username` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `is_admin` int(1) NOT NULL, `is_deleted` int(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- テーブルのデータのダンプ `users_table_orijinal` -- INSERT INTO `users_table_orijinal` (`id`, `username`, `password`, `is_admin`, `is_deleted`, `created_at`, `updated_at`) VALUES (1, '斎藤', '123456', 0, 0, '2021-01-09 23:27:51', '2021-01-09 23:27:51'); -- -- ダンプしたテーブルのインデックス -- -- -- テーブルのインデックス `diary_table` -- ALTER TABLE `diary_table` ADD PRIMARY KEY (`id`); -- -- テーブルのインデックス `file_db` -- ALTER TABLE `file_db` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `file_path` (`file_path`); -- -- テーブルのインデックス `like_table` -- ALTER TABLE `like_table` ADD PRIMARY KEY (`id`); -- -- テーブルのインデックス `like_table_orijinal` -- ALTER TABLE `like_table_orijinal` ADD PRIMARY KEY (`id`); -- -- テーブルのインデックス `mst_staff` -- ALTER TABLE `mst_staff` ADD PRIMARY KEY (`code`); -- -- テーブルのインデックス `todo_table` -- ALTER TABLE `todo_table` ADD PRIMARY KEY (`id`); -- -- テーブルのインデックス `users_table` -- ALTER TABLE `users_table` ADD PRIMARY KEY (`id`); -- -- テーブルのインデックス `users_table_orijinal` -- ALTER TABLE `users_table_orijinal` ADD PRIMARY KEY (`id`); -- -- ダンプしたテーブルの AUTO_INCREMENT -- -- -- テーブルの AUTO_INCREMENT `diary_table` -- ALTER TABLE `diary_table` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- テーブルの AUTO_INCREMENT `file_db` -- ALTER TABLE `file_db` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- テーブルの AUTO_INCREMENT `like_table` -- ALTER TABLE `like_table` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- テーブルの AUTO_INCREMENT `like_table_orijinal` -- ALTER TABLE `like_table_orijinal` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- テーブルの AUTO_INCREMENT `mst_staff` -- ALTER TABLE `mst_staff` MODIFY `code` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- テーブルの AUTO_INCREMENT `todo_table` -- ALTER TABLE `todo_table` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- テーブルの AUTO_INCREMENT `users_table` -- ALTER TABLE `users_table` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- テーブルの AUTO_INCREMENT `users_table_orijinal` -- ALTER TABLE `users_table_orijinal` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE TABLE da_patient ( umr_no varchar2(15) NOT NULL, patient_name varchar2(96), gender_cd char(1), dob date, age varchar2(4000), reg_no varchar2(15), reg_dt date, area_cd varchar2(8), city_cd varchar2(8), district_cd varchar2(8), state_cd varchar2(8), country_cd varchar2(8), loc_cd varchar2(15), org_cd varchar2(8) NOT NULL, grp_cd varchar2(8) NOT NULL, record_status char(1), dw_last_updated_dt date, dw_facility_cd varchar2(16), dw_job_run_no integer, dw_row_id varchar2(128) );
DELETE FROM Boek WHERE isbn = '8'
-- phpMyAdmin SQL Dump -- version 5.1.0 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1:3306 -- Время создания: Авг 31 2021 г., 16:00 -- Версия сервера: 5.7.33-log -- Версия PHP: 7.4.21 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 */; -- -- База данных: `animal_shelter` -- -- -------------------------------------------------------- -- -- Структура таблицы `animals` -- CREATE TABLE `animals` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `age` int(11) NOT NULL, `type` int(11) NOT NULL, `status` tinyint(1) DEFAULT '1', `created_dt` timestamp NOT NULL, `updated_dt` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `animals` -- INSERT INTO `animals` (`id`, `title`, `age`, `type`, `status`, `created_dt`, `updated_dt`) VALUES (1, 'Archi', 3, 3, 1, '2021-08-31 11:43:04', '2021-08-31 11:44:17'), (2, 'Jack', 5, 2, 1, '2021-08-31 11:43:22', '2021-08-31 11:43:30'), (3, 'Murka', 2, 1, 1, '2021-08-31 11:43:58', '2021-08-31 11:45:09'); -- -------------------------------------------------------- -- -- Структура таблицы `animals_types` -- CREATE TABLE `animals_types` ( `id` int(11) NOT NULL, `title` varchar(255) DEFAULT NULL, `created_dt` timestamp NOT NULL, `updated_dt` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `animals_types` -- INSERT INTO `animals_types` (`id`, `title`, `created_dt`, `updated_dt`) VALUES (1, 'Сat', '2021-08-31 07:03:07', NULL), (2, 'Dog', '2021-08-31 07:03:07', NULL), (3, 'Turtle', '2021-08-31 07:03:07', NULL); -- -------------------------------------------------------- -- -- Структура таблицы `migration` -- CREATE TABLE `migration` ( `version` varchar(180) NOT NULL, `apply_time` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `migration` -- INSERT INTO `migration` (`version`, `apply_time`) VALUES ('m000000_000000_base', 1630331927), ('m210830_135724_create_animals_types_table', 1630393387), ('m210830_135730_create_animals_table', 1630393387); -- -- Индексы сохранённых таблиц -- -- -- Индексы таблицы `animals` -- ALTER TABLE `animals` ADD PRIMARY KEY (`id`), ADD KEY `idx-animals-type` (`type`); -- -- Индексы таблицы `animals_types` -- ALTER TABLE `animals_types` ADD PRIMARY KEY (`id`); -- -- Индексы таблицы `migration` -- ALTER TABLE `migration` ADD PRIMARY KEY (`version`); -- -- AUTO_INCREMENT для сохранённых таблиц -- -- -- AUTO_INCREMENT для таблицы `animals` -- ALTER TABLE `animals` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT для таблицы `animals_types` -- ALTER TABLE `animals_types` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- Ограничения внешнего ключа сохраненных таблиц -- -- -- Ограничения внешнего ключа таблицы `animals` -- ALTER TABLE `animals` ADD CONSTRAINT `fk-animals-type` FOREIGN KEY (`type`) REFERENCES `animals_types` (`id`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- -- Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -- -- WSO2 Inc. licenses this file to you under the Apache License, -- Version 2.0 (the "License"); you may not use this file except -- in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, -- software distributed under the License is distributed on an -- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -- KIND, either express or implied. See the License for the -- specific language governing permissions and limitations -- under the License. -- -- -------------------------------------------------------- -- Migration - Adding PHP version -- -------------------------------------------------------- UPDATE `AC_RUNTIME` SET `name` = 'Apache 2.4.10 (PHP Version 7.0.5)' WHERE `id`= 3; -- --------------------------------------------------------- -- Migration - Removing old events -- --------------------------------------------------------- DELETE FROM `AC_EVENT`;
 CREATE PROC [ERP].[Usp_Sel_EstructuraDos_By_ID] @ID INT AS BEGIN SELECT ED.ID ,ED.IdEstructuraUno ,ED.Nombre ,ED.UsuarioRegistro ,ED.FechaRegistro ,ED.UsuarioModifico ,ED.FechaModificado ,ED.UsuarioActivo ,ED.FechaActivacion ,ED.UsuarioElimino ,ED.FechaEliminado ,ED.Flag FROM [ERP].[EstructuraDos] ED WHERE ED.ID = @ID END
-- Export BLOB with BCP bcp "QUERY TEXT" queryout "temp.png" -S server\instance -U username -P pw -- Import BLOB with OPENROWSET UPDATE [Table] SET [BlobValue] = (SELECT * FROM OPENROWSET(BULK 'temp.png', SINGLE_BLOB) AS x) WHERE [Id] = foo;
SELECT A.ProductoID, A.NombreComercial, A.IngredienteActivo, B.UnidadNombre, B.Unidad FROM Tb_Producto AS A LEFT JOIN TB_Unidades AS B ON A.UnidadID = B.UnidadID;
/** * * @author Hanln * @version $Id: ShisetsuTopService_getShisetsu_Sel_01.sql 21633 2014-08-19 03:06:59Z p_re_han $ */ SELECT SHIKIH.SHISETSU_NAME ,SHIKIH.SHISETSU_CD , SHIKIH.SHISETSU_LAST_KEISAI_DATE , SHIKIH.SHISETSU_TYPE , SHIKIH.NORMAL_OK_FLG , SHIKIH.NEED_ASSISTANCE_1_OK_FLG , SHIKIH.NEED_ASSISTANCE_2_OK_FLG , SHIKIH.NURSING_CARE_LV_1_OK_FLG , SHIKIH.NURSING_CARE_LV_2_OK_FLG , SHIKIH.NURSING_CARE_LV_3_OK_FLG , SHIKIH.NURSING_CARE_LV_4_OK_FLG , SHIKIH.NURSING_CARE_LV_5_OK_FLG , SHIKIH.NINCHISHO_LIVING_KBN , SHIKIH.SHISETSU_ADDRESS , SHIKIH.ACCESS_1_EKI_NAME , SHIKIH.SHISETSU_SPECIAL_TITLE , SHIKIH.SHISETSU_SPECIAL_COMMENT , SHIKIH.UNDER_65_COUNT , SHIKIH.OVER_65_UNDER_75_COUNT , SHIKIH.OVER_75_UNDER_85_COUNT , SHIKIH.OVER_85_COUNT , SHIKIH.AVERAGE_AGE , SHIKIH.MALE_RATIO , SHIKIH.FEMALE_RATIO , SHIKIH.NORMAL_COUNT , SHIKIH.NEED_ASSISTANCE_1_COUNT , SHIKIH.NEED_ASSISTANCE_2_COUNT , SHIKIH.NURSING_CARE_LV_1_COUNT , SHIKIH.NURSING_CARE_LV_2_COUNT , SHIKIH.NURSING_CARE_LV_3_COUNT , SHIKIH.NURSING_CARE_LV_4_COUNT , SHIKIH.NURSING_CARE_LV_5_COUNT , SHIKIH.UNKNOWN_COUNT , SHIKIH.SPECIFIED_CARE_TYPE , SHIKIH.CARE_TEAM_KBN , SHIKIH.CARE_ABL_KBN_DAYTIME , SHIKIH.CARE_ABL_KBN_NIGHT , SHIKIH.CARE_ABL_KBN_MIDNIGHT , SHIKIH.NURSE_ABL_KBN_DAYTIME , SHIKIH.NURSE_ABL_KBN_NIGHT , SHIKIH.NURSE_ABL_KBN_MIDNIGHT , SHIKIH.DAYTIME_CONSULT_COMMENT , SHIKIH.CARE_TEAM_OTHER_COMMENT , SHIKIH.TRIAL_LIVING_PERIOD , SHIKIH.TRIAL_LIVING_COST , SHIKIH.TRIAL_LIVING_CONDITION , SHIKIH.SHISETSU_IDO , SHIKIH.SHISETSU_KEIDO , SHISETSU_ADDRESS , SHIKIH.ACCESS_1_EKI_NAME , SHIKIH.ACCESS_1_DISTANCE , SHIKIH.ACCESS_1_WALK_MINUTE , SHIKIH.ACCESS_2_EKI_NAME , SHIKIH.ACCESS_2_DISTANCE , SHIKIH.ACCESS_2_WALK_MINUTE , SHIKIH.ACCESS_3_EKI_NAME , SHIKIH.ACCESS_3_DISTANCE , SHIKIH.ACCESS_3_WALK_MINUTE , SHIKIH.OTHER_ACCESS_COMMENT , SHIKIH.TENPO_ADDRESS_KEN_CD , SHIKIH.DAY_TIME_FROM_HHMM , SHIKIH.NIGHT_TIME_FROM_HHMM , SHIKIH.MIDNIGHT_TIME_FROM_HHMM , KAIKIH.KAISHA_NAME , KAIKIH.SHOGO_KBN , KAIKIH.SHOGO_PLACE_KBN , KAIKIH.GROUP_NAME , KAIKIH.GROUP_NAME_PLACE_KBN , KAIKIH.KAISHA_ADDRESS , KAIKIH.KAISHA_CD , KEN.TODOFUKEN_NM , JKN.SHIKUGUN_KUKURI3_CD , JKN.SHIKUGUN_KUKURI3_NM , JKN.SHIKUGUN_NM , OZA.OOAZA_NM , (SELECT count(VOI.CUSTOMER_VOICE_ID) FROM FR_SHISETSU_CUSTOMER_VOICE VOI WHERE VOI.SHISETSU_CD = /*shisetsuCd*/'000002095') AS COUNT_VOICE FROM FR_SHISETSU_KIHON SHIKIH INNER JOIN FR_KAISHA_KIHON KAIKIH ON SHIKIH.KAISHA_CD = KAIKIH.KAISHA_CD INNER JOIN MA_CM_MA_JUSHO_KUKURI_NET JKN ON SHIKIH.TENPO_ADDRESS_KEN_CD = JKN.TODOFUKEN_CD AND SHIKIH.TENPO_ADDRESS_SIKUGUN_CD = JKN.SHIKUGUN_CD INNER JOIN MA_CM_MA_TODOFUKEN KEN ON SHIKIH.TENPO_ADDRESS_KEN_CD = KEN.TODOFUKEN_CD LEFT JOIN MA_CM_MA_OOAZA OZA ON SHIKIH.TENPO_ADDRESS_KEN_CD = OZA.TODOFUKEN_CD AND SHIKIH.TENPO_ADDRESS_SIKUGUN_CD = OZA.SHIKUGUN_CD AND SHIKIH.TENPO_ADDRESS_CHOSON_CD = OZA.OOAZA_CD WHERE SHIKIH.SHISETSU_CD = /*shisetsuCd*/'000002095'
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Hôte : 127.0.0.1 -- Généré le : lun. 29 mars 2021 à 15:32 -- Version du serveur : 10.4.17-MariaDB -- Version de PHP : 7.4.13 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 */; -- -- Base de données : `sh_spaccio` -- -- -------------------------------------------------------- -- -- Structure de la table `bib_admin` -- CREATE TABLE `bib_admin` ( `ad_login` varchar(30) NOT NULL DEFAULT '', `ad_pass` varchar(100) NOT NULL DEFAULT '', `mdp` varchar(100) NOT NULL DEFAULT '', `ad_profil` tinyint(4) NOT NULL DEFAULT 0, `ad_status` varchar(10) NOT NULL DEFAULT '', `ad_email` varchar(100) NOT NULL DEFAULT '', `ad_registerdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_admin` -- INSERT INTO `bib_admin` (`ad_login`, `ad_pass`, `mdp`, `ad_profil`, `ad_status`, `ad_email`, `ad_registerdate`) VALUES ('Cicero', 'f354895ef5cdb830e7f389842de64014', 'Academicus', 10, 'validate', 'michel.tissier@laposte.net', '2011-09-07 11:00:30'), ('guest', '4fbb8a3613d96df96bd3b11308bb2ddc', 'creux@fp@', 1, 'new', 'j-cre.schibano@wanadoo.fr', '2009-07-31 00:00:00'), ('florence', '02baa60ef0802489713268a4e7149531', 'bretagne', 2, 'reader', 'mti.android@gmail.com', '2010-11-29 00:00:00'), ('marie', '224c0b12060d7b4e22089beca8f95b68', 'pepita', 3, 'new', '', '2010-10-25 11:15:03'), ('michel', '14ccb79aab36665fdf381af033789966', 'palatino', 2, 'reader', 'michel.tissier@laposte.net', '2011-01-21 09:23:36'), ('christelle', 'c14bff386459fa930978ba8baa3b1070', 'gouirandhestes', 2, 'reader', 'chri_go@yahoo.fr', '2011-02-23 13:29:11'), ('Marina', '7ccfb71a970c93e72050e5bb62ef1da2', 'delcher', 2, 'reader', 'marina.delcher@gmail.com', '2011-02-26 19:50:25'); -- -------------------------------------------------------- -- -- Structure de la table `bib_amazon` -- CREATE TABLE `bib_amazon` ( `amazonid` int(11) NOT NULL, `invbibid` int(11) NOT NULL, `amazon_links` mediumtext COLLATE utf8_unicode_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Déchargement des données de la table `bib_amazon` -- INSERT INTO `bib_amazon` (`amazonid`, `invbibid`, `amazon_links`) VALUES (1, 613, '<a href=\"http://www.amazon.fr/gp/product/2130438547/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130438547\">La philosophie critique de Kant</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130438547\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (2, 660, '<a href=\"http://www.amazon.fr/gp/product/2711611604/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2711611604\">Critique de la faculté de juger</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2711611604\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (3, 19, '<a href=\"http://www.amazon.fr/gp/product/2200102151/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2200102151\">Les Arts plastiques</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2200102151\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (4, 31, '<a href=\"http://www.amazon.fr/gp/product/209120580X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=209120580X\">Erreurs et creations en arts plastiques</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=209120580X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (5, 1340, '<a href=\"http://www.amazon.fr/gp/product/225313127X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=225313127X\">Histoire de l\'art dans l\'Antiquité</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=225313127X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (6, 1341, '<a href=\"http://www.amazon.fr/gp/product/2204079154/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2204079154\">L\'image à l\'époque gothique : (1140-1280)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2204079154\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (7, 1342, '<a href=\"http://www.amazon.fr/gp/product/2742772510/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2742772510\">L\'oeil révolté : Les Salons de Diderot</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2742772510\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (8, 1344, '<a href=\"http://www.amazon.fr/gp/product/2070313859/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070313859\">Salons</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070313859\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (9, 1343, '<a href=\"http://www.amazon.fr/gp/product/2081202778/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2081202778\">L\'art à ciel ouvert : Commandes publiques en France, 1983-2007</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2081202778\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (10, 1345, '<a href=\"http://www.amazon.fr/gp/product/2070343154/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070343154\">La galerie des Glaces : Chef-d\'oeuvre retrouvé</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070343154\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (11, 1346, '<a href=\"http://www.amazon.fr/gp/product/2754103201/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2754103201\">Jacques Villeglé : Oeuvres, écrits, entretiens</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2754103201\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (12, 662, '<a href=\"http://www.amazon.fr/gp/product/2070325377/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070325377\">Critique de la raison pratique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070325377\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (13, 663, '<a href=\"http://www.amazon.fr/gp/product/207032575X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=207032575X\">Critique de la raison pure</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=207032575X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (14, 664, '<a href=\"http://www.amazon.fr/gp/product/2253065145/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2253065145\">Fondements de la métaphysique des moeurs</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2253065145\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (15, 1180, '<a href=\"http://www.amazon.fr/gp/product/2729858377/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729858377\">Kant</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729858377\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (16, 1189, '<a href=\"http://www.amazon.fr/gp/product/B0000DPCUM/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=B0000DPCUM\">Pour connaître la pensée de kant bordas 1957</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=B0000DPCUM\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (17, 1190, '<a href=\"http://www.amazon.fr/gp/product/202058896X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=202058896X\">Juger : Sur la philosophie politique de Kant</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=202058896X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (18, 1191, '<a href=\"http://www.amazon.fr/gp/product/2711620433/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2711620433\">Problèmes kantiens</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2711620433\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (19, 1257, '<a href=\"http://www.amazon.fr/gp/product/2070109720/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070109720\">Kant : Oeuvres Philosophiques, tome 1</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070109720\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (20, 1287, '<a href=\"http://www.amazon.fr/gp/product/2130541895/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130541895\">Critique de la raison pratique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130541895\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (21, 1286, '<a href=\"http://www.amazon.fr/gp/product/221892708X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=221892708X\">Fondement pour la métaphysique des moeurs</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=221892708X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (22, 1287, '<a href=\"http://www.amazon.fr/gp/product/2130541895/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130541895\">Critique de la raison pratique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130541895\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (23, 1316, '<a href=\"http://www.amazon.fr/gp/product/2218927098/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2218927098\">Vers la paix perpétuelle</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2218927098\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (24, 1008, '<a href=\"http://www.amazon.fr/gp/product/2206010240/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2206010240\">Pour enseigner la philosophie : Guide pour la mise en oeuvre des nouveaux programmes (1Cédérom)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2206010240\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (25, 1009, '<a href=\"http://www.amazon.fr/gp/product/2729833773/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729833773\">Pratique de la dissertation et de l\'explication de texte en philosophie</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729833773\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />'), (26, 1010, '<a href=\"http://www.amazon.fr/gp/product/2200354967/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2200354967\">Les méthodes en philosophie</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2200354967\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (27, 1011, '<a href=\"http://www.amazon.fr/gp/product/2842740084/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2842740084\">Les concours de philosophie</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2842740084\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (28, 1012, '<a href=\"http://www.amazon.fr/gp/product/2729808159/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729808159\">Guide de préparation au CAPES et à l\'agrégation de philosophie</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729808159\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (29, 1117, '<a href=\"http://www.amazon.fr/gp/product/2842740556/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2842740556\">Le cours de philosophie : CAPES et agrégation</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2842740556\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (30, 1118, '<a href=\"http://www.amazon.fr/gp/product/2866232089/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2866232089\">La philosophie et sa pédagogie</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2866232089\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (31, 1187, '<a href=\"http://www.amazon.fr/gp/product/2253905372/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2253905372\">Les philosophies hellénistiques</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2253905372\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (32, 1205, '<a href=\"http://www.amazon.fr/gp/product/2251010491/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251010491\">Des termes extrêmes des Biens et des Maux, tome 1, livres I-II, 5e édition</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251010491\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (33, 1206, '<a href=\"http://www.amazon.fr/gp/product/2251010335/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251010335\">L\'Amitié</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251010335\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (34, 1207, '<a href=\"http://www.amazon.fr/gp/product/2251010831/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251010831\">Tusculanes, tome 1</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251010831\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (35, 1304, '<a href=\"http://www.amazon.fr/gp/product/2251010831/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251010831\">Tusculanes, tome 1</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251010831\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (36, 1305, '<a href=\"http://www.amazon.fr/gp/product/2251013814/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251013814\">De l\'invention</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251013814\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (37, 1306, '<a href=\"http://www.amazon.fr/gp/product/2251010785/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251010785\">La république</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251010785\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (38, 1307, '<a href=\"http://www.amazon.fr/gp/product/208122402X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=208122402X\">Les Académiques : Academica- Edition bilingue</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=208122402X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (39, 1308, '<a href=\"http://www.amazon.fr/gp/product/2251760547/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251760547\">Cicéron</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251760547\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (40, 1309, '<a href=\"http://www.amazon.fr/gp/product/2755505907/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2755505907\">Traité des devoirs</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2755505907\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (41, 1311, '<a href=\"http://www.amazon.fr/gp/product/2729824022/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729824022\">Le vocabulaire latin de la philosophie : De Cicéron à Heidegger</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729824022\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (42, 1317, '<a href=\"http://www.amazon.fr/gp/product/2711618137/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2711618137\">Les Stoïciens : La liberté et l\'ordre du monde</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2711618137\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (43, 1318, '<a href=\"http://www.amazon.fr/gp/product/2251760334/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2251760334\">Les Stoïciens</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2251760334\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (44, 1319, '<a href=\"http://www.amazon.fr/gp/product/2040182683/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2040182683\">DUVERNOY/EPICUR.TRAD.ANT (Ancienne Edition)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2040182683\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (45, 1321, '<a href=\"http://www.amazon.fr/gp/product/2080730142/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080730142\">Le scepticisme</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080730142\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (46, 1322, '<a href=\"http://www.amazon.fr/gp/product/2070740137/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070740137\">La république</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070740137\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (47, 1323, '<a href=\"http://www.amazon.fr/gp/product/2728302545/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2728302545\">Cicero Academicus. : Recherches sur les Académiques et sur la philosophie cicéronienne</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2728302545\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (48, 1324, '<a href=\"http://www.amazon.fr/gp/product/2020485214/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2020485214\">Contre les professeurs (bilingue grec-français)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2020485214\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (49, 1325, '<a href=\"http://www.amazon.fr/gp/product/2020262983/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2020262983\">Esquisses pyrrhoniennes</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2020262983\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (50, 1326, '<a href=\"http://www.amazon.fr/gp/product/2711617785/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2711617785\">Les Stoïciens</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2711617785\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (51, 1327, '<a href=\"http://www.amazon.fr/gp/product/2130495087/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130495087\">Philosophie grecque</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130495087\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (52, 215, '<a href=\"http://www.amazon.fr/gp/product/2070324133/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070324133\">Race et histoire</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070324133\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (53, 246, '<a href=\"http://www.amazon.fr/gp/product/2080101641/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080101641\">Sens et destin de l\'art Tome 2 : de l\'art gothique au XXe siècle</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080101641\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (54, 247, '<a href=\"http://www.amazon.fr/gp/product/2080101633/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080101633\">Sens et destin de l\'art, tome I : De la préhistoire à l\'art roman</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080101633\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (55, 630, '<a href=\"http://www.amazon.fr/gp/product/2070293351/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070293351\">Les Mots et les choses</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070293351\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (56, 682, '<a href=\"http://www.amazon.fr/gp/product/2070325105/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070325105\">Eloge de la philosophie et autres essais</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070325105\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (57, 686, '<a href=\"http://www.amazon.fr/gp/product/2070326896/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070326896\">Considérations inactuelles I et II</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070326896\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (58, 1183, '<a href=\"http://www.amazon.fr/gp/product/2729846557/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729846557\">L\'Histoire</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729846557\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (59, 1242, '<a href=\"http://www.amazon.fr/gp/product/2260005012/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2260005012\">La philosophie critique de l\'histoire</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2260005012\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (60, 1243, '<a href=\"http://www.amazon.fr/gp/product/2070757927/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070757927\">Histoire et salut : Les Présupposés théologiques de la philosophie de l\'histoire</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070757927\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (61, 1244, '<a href=\"http://www.amazon.fr/gp/product/2020314444/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2020314444\">Expérience de l\'histoire (l\')</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2020314444\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (62, 1245, '<a href=\"http://www.amazon.fr/gp/product/2020593289/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2020593289\">Régimes d\'historicité : Présentisme et expériences du temps</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2020593289\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (63, 1247, '<a href=\"http://www.amazon.fr/gp/product/2070337863/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070337863\">L\'Ange de l\'Histoire : Rosenzweig, Benjamin, Scholem</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070337863\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (64, 1248, '<a href=\"http://www.amazon.fr/gp/product/2070738442/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070738442\">Dits et écrits, 1954-1988</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070738442\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (65, 1249, '<a href=\"http://www.amazon.fr/gp/product/2700734858/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2700734858\">Cours d\'esthétique, tome 1</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2700734858\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (66, 1250, '<a href=\"http://www.amazon.fr/gp/product/2700735250/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2700735250\">Cours d\'esthetique-2</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2700735250\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (67, 1251, '<a href=\"http://www.amazon.fr/gp/product/2700735269/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2700735269\">Cours d\'esthetique III</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2700735269\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (68, 1252, '<a href=\"http://www.amazon.fr/gp/product/2080730215/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080730215\">L\'histoire</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080730215\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (69, 1253, '<a href=\"http://www.amazon.fr/gp/product/2763784410/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2763784410\">Les trois sources des philosophies de l\'histoire (1764-1798)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2763784410\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (70, 1254, '<a href=\"http://www.amazon.fr/gp/product/2020308053/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2020308053\">L\'Histoire d\'Homère à Augustin</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2020308053\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (71, 1269, '<a href=\"http://www.amazon.fr/gp/product/2253088528/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2253088528\">La philosophie de l\'histoire</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2253088528\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (72, 1296, '<a href=\"http://www.amazon.fr/gp/product/2070703185/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070703185\">Concepts fondamentaux</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070703185\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (73, 1297, '<a href=\"http://www.amazon.fr/gp/product/2070707393/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070707393\">Être et Temps</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070707393\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (74, 1299, '<a href=\"http://www.amazon.fr/gp/product/2130429548/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130429548\">Heidegger et la question du temps</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130429548\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (75, 1313, '<a href=\"http://www.amazon.fr/gp/product/235821020X/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=235821020X\">Rédemption et utopie : Le judaïsme libertaire en Europe centrale, Une étude d\'affinité élective</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=235821020X\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (76, 572, '<a href=\"http://www.amazon.fr/gp/product/2252034912/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2252034912\">Théorie esthétique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2252034912\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (77, 649, '<a href=\"http://www.amazon.fr/gp/product/2080810677/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080810677\">Esthétique. Introduction a l\'esthétique - Le Beau, volume 1</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080810677\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (78, 776, '<a href=\"http://www.amazon.fr/gp/product/2070725375/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070725375\">L\'art de l\'âge moderne</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070725375\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (79, 996, '<a href=\"http://www.amazon.fr/gp/product/2853996719/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2853996719\">L\'artiste ou la toute-puissance des idées : Six chapitres d\'esthétique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2853996719\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (80, 1019, '<a href=\"http://www.amazon.fr/gp/product/2804138046/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2804138046\">Esthétique et philosophie de l\'art. Repères historiques et thématiques</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2804138046\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (81, 1101, '<a href=\"http://www.amazon.fr/gp/product/2130491472/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130491472\">Questions d\'esthétique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130491472\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (82, 1181, '<a href=\"http://www.amazon.fr/gp/product/2729849300/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729849300\">L\'esthétique expérimentale</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729849300\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (83, 1182, '<a href=\"http://www.amazon.fr/gp/product/2729808949/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2729808949\">Leçons d\'esthétique (Les formes artistiques), Hegel</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2729808949\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (84, 109, '<a href=\"http://www.amazon.fr/gp/product/2070714012/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070714012\">Art et technique aux XIXe et XXe siècles</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070714012\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (85, 210, '<a href=\"http://www.amazon.fr/gp/product/2226017283/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2226017283\">Le Geste et la Parole, tome 1 : Technique et Langage</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2226017283\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (86, 211, '<a href=\"http://www.amazon.fr/gp/product/2226023240/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2226023240\">Le Geste et la Parole, tome 2 : La Mémoire et les Rythmes</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2226023240\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (87, 648, '<a href=\"http://www.amazon.fr/gp/product/2070719421/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070719421\">La technique et la science comme \"idéologie\"</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070719421\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (88, 911, '<a href=\"http://www.amazon.fr/gp/product/2700734149/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2700734149\">Du mode d\'existence des objets techniques</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2700734149\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (89, 983, '<a href=\"http://www.amazon.fr/gp/product/2804116824/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2804116824\">Simondon et la philosophie de la \"culture technique\"</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2804116824\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (90, 1188, '<a href=\"http://www.amazon.fr/gp/product/2711600599/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2711600599\">La technologie introuvable</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2711600599\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (91, 1193, '<a href=\"http://www.amazon.fr/gp/product/2130460348/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130460348\">La Technique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130460348\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (92, 617, '<a href=\"http://www.amazon.fr/gp/product/2707300675/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2707300675\">Capitalisme et schizophrénie. L\'anti-Oedipe</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2707300675\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (93, 618, '<a href=\"http://www.amazon.fr/gp/product/2707313866/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2707313866\">Qu\'est-ce que la philosophie?</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2707313866\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (94, 669, '<a href=\"http://www.amazon.fr/gp/product/2080705822/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080705822\">Nouveaux essais sur l\'entendement humain</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080705822\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (95, 673, '<a href=\"http://www.amazon.fr/gp/product/2080709933/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2080709933\">De la nature - de rerum natura</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2080709933\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (96, 683, '<a href=\"http://www.amazon.fr/gp/product/2070322904/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2070322904\">L\'oeil et l\'esprit</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2070322904\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (97, 728, '<a href=\"http://www.amazon.fr/gp/product/B0000DQSSS/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=B0000DQSSS\">Ethique oeuvres 3</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=B0000DQSSS\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (98, 1349, '<a href=\"http://www.amazon.fr/gp/product/2130559085/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2130559085\">Arts plastiques : Eléments d\'une didactique-critique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2130559085\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (99, 1350, '<a href=\"http://www.amazon.fr/gp/product/2747574202/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2747574202\">Emprunts et citations dans le champ artistique</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2747574202\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (100, 1351, '<a href=\"http://www.amazon.fr/gp/product/2210719941/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2210719941\">Carnets de dessins : Une pratique des arts plastiques et visuels à l\'école</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2210719941\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (101, 1352, '<a href=\"http://www.amazon.fr/gp/product/2701120411/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2701120411\">Les arts plastiques au college</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2701120411\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (102, 1353, '<a href=\"http://www.amazon.fr/gp/product/2701130409/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2701130409\">L\'image au collège</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2701130409\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (103, 1354, '<a href=\"http://www.amazon.fr/gp/product/2701133572/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2701133572\">L\'image au collège (Livre du professeur)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2701133572\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (104, 36, '<a href=\"http://www.amazon.fr/gp/product/2210422744/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2210422744\">Petite fabrique de l\'image</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2210422744\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (105, 1355, '<a href=\"http://www.amazon.fr/gp/product/2011350018/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2011350018\">Histoire de l\'art</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2011350018\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'), (106, 1356, '<a href=\"http://www.amazon.fr/gp/product/2725629276/ref=as_li_ss_tl?ie=UTF8&tag=philosophez-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=2725629276\">Histoire des arts et arts visuels : 40 exploitations pédagogiques Cycle 3 (1Cédérom)</a><img src=\"http://www.assoc-amazon.fr/e/ir?t=&l=as2&o=8&a=2725629276\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" />\r\n'); -- -------------------------------------------------------- -- -- Structure de la table `bib_artmvt` -- CREATE TABLE `bib_artmvt` ( `mvt_id` int(11) NOT NULL, `mvt_alpha` varchar(1) NOT NULL, `mvt_name` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_artmvt` -- INSERT INTO `bib_artmvt` (`mvt_id`, `mvt_alpha`, `mvt_name`) VALUES (1, 'A', 'Abstraction lyrique'), (2, 'A', 'Abstraction-Création'), (3, 'A', 'Action Painting'), (4, 'A', 'Actionnisme viennois'), (5, 'A', 'Anti-form'), (6, 'A', 'Appropriationnisme'), (7, 'A', 'Architecture futuriste'), (8, 'A', 'Architecture utopique'), (9, 'A', 'Art brut'), (10, 'A', 'Art conceptuel'), (11, 'A', 'Art concret'), (12, 'A', 'Art corporel'), (13, 'A', 'Art Déco'), (14, 'A', 'Art informel'), (15, 'A', 'Art métaphysique'), (16, 'A', 'Art minimal'), (17, 'A', 'Art naïf'), (18, 'A', 'Art nègre'), (19, 'A', 'Art non-figuratif'), (20, 'A', 'Art Nouveau'), (21, 'A', 'Art primitif'), (22, 'A', 'Art relationnel'), (23, 'A', 'Art sociologique'), (24, 'A', 'Arte Nucleare'), (25, 'A', 'Arte Povera'), (26, 'B', 'Bad Painting'), (27, 'B', 'Bauhaus'), (28, 'B', 'Beat Generation'), (29, 'B', 'BMPT'), (30, 'C', 'Cercle et Carré'), (31, 'C', 'Cinétisme'), (32, 'C', 'Cobra'), (33, 'C', 'Colorfield Painting'), (34, 'C', 'Constructivisme'), (35, 'C', 'Cool Art'), (36, 'C', 'Cubisme'), (37, 'C', 'Cubo-Futurisme'), (38, 'D', 'Dada'), (39, 'D', 'De Stijl'), (40, 'D', 'Der Blaue Reiter'), (41, 'D', 'Die Brücke'), (42, 'D', 'Divisionnisme'), (43, 'E', 'Ecole de Londres'), (44, 'E', 'Ecole de New York'), (45, 'E', 'Ecole de Nice'), (46, 'E', 'Ecole de Paris'), (47, 'E', 'Expressionnisme'), (48, 'E', 'Expressionnisme abstrait'), (49, 'F', 'Fauvisme'), (50, 'F', 'Fictionnalisme'), (51, 'F', 'Figuration Libre'), (52, 'F', 'Figuration narrative'), (53, 'F', 'Fluxus'), (54, 'F', 'Forces Nouvelles'), (55, 'F', 'Funk Art'), (56, 'F', 'Futurisme'), (57, 'G', 'Groupe de recherche d\'art visuel'), (58, 'G', 'Groupe Espace'), (59, 'G', 'Groupe Panique'), (60, 'G', 'Gutaï'), (61, 'H', 'Hypergraphisme'), (62, 'H', 'Hyperréalisme'), (63, 'J', 'Japonisme'), (64, 'N', 'La Nouvelle Vision'), (65, 'L', 'Land Art'), (66, 'L', 'Lettrisme'), (67, 'L', 'Light and Space'), (68, 'M', 'Madi'), (69, 'M', 'Mail Art'), (70, 'M', 'Merz'), (71, 'M', 'Musicalisme'), (72, 'N', 'Nabis'), (73, 'N', 'Narrative Art'), (74, 'N', 'Néo-Dada'), (75, 'N', 'Néo-Géo'), (76, 'N', 'Néo-romantisme'), (77, 'N', 'Néoplasticisme'), (78, 'N', 'Neue Sachlichkeit'), (79, 'N', 'Nouveau réalisme'), (80, 'N', 'Novecento'), (81, 'O', 'Optical Art'), (82, 'O', 'Orphisme'), (83, 'P', 'Peinture métaphysique'), (84, 'P', 'Photographie pure'), (85, 'P', 'Pop Art'), (86, 'P', 'Post Painting Abstraction'), (87, 'P', 'Post-minimalisme'), (88, 'P', 'Post-modernisme'), (89, 'P', 'Précisionnisme'), (90, 'P', 'Primitivisme'), (91, 'P', 'Process Art'), (92, 'P', 'Purisme'), (93, 'R', 'Rayonnisme'), (94, 'R', 'Réalisme socialiste'), (95, 'S', 'Sécession'), (96, 'S', 'Section d\'Or'), (97, 'S', 'Simulationnisme'), (98, 'S', 'Situationnisme'), (99, 'S', 'Spatialisme'), (100, 'S', 'Supports-Surfaces'), (101, 'S', 'Suprématisme'), (102, 'S', 'Surréalisme'), (103, 'S', 'Synchromisme'), (104, 'T', 'Tachisme'), (105, 'T', 'Trans-Avant-Garde'), (106, 'V', 'Valet de Carreau'), (107, 'V', 'Vorticisme'), (108, 'Z', 'Zéro (groupe)'); -- -------------------------------------------------------- -- -- Structure de la table `bib_arttype` -- CREATE TABLE `bib_arttype` ( `atp-id` int(11) NOT NULL, `atp_alpha` varchar(1) NOT NULL, `atp_name` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_arttype` -- INSERT INTO `bib_arttype` (`atp-id`, `atp_alpha`, `atp_name`) VALUES (1, '', 'Architecture'), (2, '', 'Architecture intérieure'), (3, '', 'Autre (Architecture)'), (4, '', 'Cahier'), (5, '', 'Cinéma'), (6, '', 'Design graphique'), (7, '', 'Dessin'), (8, '', 'Dessin d\'architecture'), (9, '', 'Dessin design'), (10, '', 'Elément d\'architecture'), (11, '', 'Estampe'), (12, '', 'Maquette d\'architecture'), (13, '', 'Musique'), (14, '', 'Nouveaux médias'), (15, '', 'Objet'), (16, '', 'Objet/Design'), (17, '', 'Peinture'), (18, '', 'Peinture d\'architecture'), (19, '', 'Photographie'), (20, '', 'Photographie d\'architecture'), (21, '', 'Publication, livre, reliure'), (22, '', 'Reproduction photomécanique'), (23, '', 'Sans domaine déterminé'), (24, '', 'Sculpture'), (25, '', 'Oeuvre en 3 dimensions'), (26, '', 'Oeuvre textile'); -- -------------------------------------------------------- -- -- Structure de la table `bib_auteur` -- CREATE TABLE `bib_auteur` ( `idauteur` bigint(20) NOT NULL, `nom_auteur` varchar(100) NOT NULL DEFAULT '', `prenom_auteur` varchar(100) NOT NULL DEFAULT '', `pseudo` varchar(50) DEFAULT NULL, `birth` int(4) DEFAULT NULL, `death` int(4) DEFAULT NULL, `genre` char(1) NOT NULL DEFAULT 'M' COMMENT 'Male/Female', `traducteur` char(1) NOT NULL DEFAULT 'N', `wikipedia` text DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_auteur` -- INSERT INTO `bib_auteur` (`idauteur`, `nom_auteur`, `prenom_auteur`, `pseudo`, `birth`, `death`, `genre`, `traducteur`, `wikipedia`) VALUES (1, 'ADES', '', '', 0, 0, 'M', 'N', ''), (2, 'ADORNO', 'Theodor W.', '', 1903, 1969, 'M', 'N', 'https://fr.wikipedia.org/wiki/Theodor_W._Adorno'), (3, 'AIBA', 'Hidenobu', '', 0, 0, 'M', 'N', ''), (4, 'AILLAGON', 'Jean-jacques', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Jacques_Aillagon'), (5, 'AKUTAGAWA', 'Ryūnosuke ', '', 1892, 1927, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ry%C5%ABnosuke_Akutagawa'), (6, 'CHARTIER', 'Émile-Auguste', 'ALAIN', 1868, 1951, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_(philosophe)'), (7, 'ALAIN', 'Michel', '', 0, 0, 'M', 'N', ''), (8, 'ALBECK', 'Raymond', '', 0, 0, 'M', 'N', ''), (9, 'ALBERTI', 'Leon Battista', '', 1404, 1472, 'M', 'N', 'https://fr.wikipedia.org/wiki/Leon_Battista_Alberti'), (10, 'ALBERTINI', '', '', 0, 0, 'M', 'N', ''), (11, 'ALECHINSKY', 'Pierre', '', 1927, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Alechinsky'), (12, 'ALLENSON', 'Andrew', '', 0, 0, 'M', 'N', ''), (13, 'AMSONEIT', 'Wolfgang', '', 0, 0, 'M', 'N', ''), (14, 'APULEE', '', '', 123, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Apul%C3%A9e'), (15, 'ARASSE', 'Daniel', '', 1944, 2003, 'M', 'N', 'https://fr.wikipedia.org/wiki/Daniel_Arasse'), (16, 'ARCHIMBAUD', 'Michel', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Archimbaud'), (17, 'ARCHONTAKIS', 'Philippe', '', 0, 0, 'M', 'N', ''), (18, 'ARGAN', 'Giulio Carlo', '', 1909, 1992, 'M', 'N', 'https://en.wikipedia.org/wiki/Giulio_Carlo_Argan'), (19, 'ARIES', 'Philippe', '', 1914, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Ari%C3%A8s'), (20, 'ARISTOTE', '', '', -384, -322, 'M', 'N', 'https://fr.wikipedia.org/wiki/Aristote'), (21, 'ARNAUD', 'Jean', '', 0, 0, 'M', 'N', ''), (22, 'ARROUYE', 'Jean', '', 0, 0, 'M', 'N', ''), (23, 'ASHISH', 'Wilfred', '', 0, 0, 'M', 'N', ''), (24, 'ASLAN', 'Carlo', '', 0, 0, 'M', 'N', ''), (25, 'ATKINSON', 'James', '', 0, 0, 'M', 'N', ''), (26, 'AUBENQUE', 'Pierre', '', 1929, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Aubenque'), (27, 'AUBRAL', 'François', '', 0, 0, 'M', 'N', ''), (28, 'AURELE', 'Marc', '', 121, 180, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Aur%C3%A8le'), (29, 'AYME', 'Marcel', '', 1902, 1967, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Aym%C3%A9'), (30, 'BACHELARD', 'Gaston', '', 1884, 1962, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gaston_Bachelard'), (31, 'BACON', 'Francis', '', 1909, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/Francis_Bacon_(peintre)'), (32, 'BALLASI', 'Christiane', '', 0, 0, 'F', 'N', ''), (33, 'BALTRUSAITIS', 'Jurgis', '', 1903, 1988, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jurgis_Baltru%C5%A1aitis'), (34, 'BARETT', 'Dan', '', 0, 0, 'M', 'N', ''), (35, 'BARONI', 'Danièle', '', 0, 0, 'F', 'N', ''), (36, 'BARRALIALTET', 'Xavier', '', 0, 0, 'M', 'N', ''), (37, 'BARTHES', 'Rolland', '', 1915, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roland_Barthes'), (38, 'BASCHET', 'Claudine', '', 0, 0, 'F', 'N', ''), (39, 'BATAILLE', 'Georges', '', 1897, 1962, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Bataille'), (40, 'BATICLE', 'Jannine', '', 0, 0, 'F', 'N', ''), (41, 'BAUDELAIRE', 'Charles', '', 1821, 1867, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Baudelaire'), (42, 'BAUDRILLARD', 'Jean', '', 1927, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Baudrillard'), (43, 'BEAUD', 'Michel', '', 1935, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Beaud'), (44, 'BEAUVOIS', 'Jean-Léon', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-L%C3%A9on_Beauvois'), (45, 'BECKETT', 'Samuel', '', 1906, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Samuel_Beckett'), (46, 'BEHAR', '', '', 0, 0, 'M', 'N', ''), (47, 'BELTING', 'Hans', '', 1935, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hans_Belting'), (48, 'BLED', 'Edouard', '', 1899, 1996, 'M', 'N', 'https://fr.wikipedia.org/wiki/Odette_et_%C3%89douard_Bled'), (49, 'BENICHI', '', '', 0, 0, 'M', 'N', ''), (50, 'BENJAMIN', 'Walter', '', 1892, 1940, 'M', 'N', 'https://fr.wikipedia.org/wiki/Walter_Benjamin'), (51, 'BENTRAME', 'Pierre', '', 0, 0, 'M', 'N', ''), (52, 'BERENGER', '', '', 0, 0, 'M', 'N', ''), (53, 'BERLAND-DELEPINE', '', '', 0, 0, 'M', 'N', ''), (54, 'BERNADAC', 'Marie-louise', '', 0, 0, 'F', 'N', ''), (55, 'BERNARD', '', '', 0, 0, 'M', 'N', ''), (56, 'BERRY', 'Barbara', '', 0, 0, 'F', 'N', ''), (57, 'BERTI', 'Luciano', '', 0, 0, 'M', 'N', ''), (58, 'BERTIN-MAGHIT', '', '', 0, 0, 'M', 'N', ''), (59, 'BESCHERELLE', 'Louis Nicolas', '', 1802, 1883, 'M', 'N', 'https://fr.wikipedia.org/wiki/Louis-Nicolas_Bescherelle'), (60, 'BESLEY', 'Kristian', '', 0, 0, 'M', 'N', ''), (61, 'BETTELHEIM', 'Bruno', '', 1903, 1990, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bruno_Bettelheim'), (62, 'BHOM-DUCHEN', 'Monica', '', 0, 0, 'F', 'N', ''), (63, 'BIAGGI', 'Vladimir', '', 0, 0, 'M', 'N', ''), (64, 'BIAKOLUR', '', '', 0, 0, 'M', 'N', ''), (65, 'BIALES', '', '', 0, 0, 'M', 'N', ''), (66, 'BIANCHERI', 'Alain', '', 0, 0, 'M', 'N', ''), (67, 'BIZOT', '', '', 0, 0, 'M', 'N', ''), (68, 'BLED', 'Odette', '', 1907, 1991, 'F', 'N', 'https://fr.wikipedia.org/wiki/Odette_et_%C3%89douard_Bled'), (69, 'BLOCH', 'Ernst', '', 1885, 1977, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ernst_Bloch'), (70, 'BLUM', 'Geneviève', '', 0, 0, 'F', 'N', ''), (71, 'BLUNT', 'Anthony (Sir)', '', 1907, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/Anthony_Blunt'), (72, 'BOE', '', '', 0, 0, 'M', 'N', ''), (73, 'BOISSET', 'Jean-François', '', 0, 0, 'M', 'N', ''), (74, 'BONAFOUX', 'Pascal', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pascal_Bonafoux'), (75, 'BONGIANNI', 'Maurizo', '', 0, 0, 'M', 'N', ''), (76, 'BONNEFOY', 'Yves', '', 1923, 2016, 'M', 'N', 'https://fr.wikipedia.org/wiki/Yves_Bonnefoy'), (77, 'BOSCO', 'Henri', '', 1888, 1976, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Bosco'), (78, 'BOUBLI', 'Lizzie', '', 0, 0, 'F', 'N', ''), (79, 'BOULTON', 'Susie', '', 0, 0, 'F', 'N', ''), (80, 'BOURDIER', 'Fernand', '', 0, 0, 'M', 'N', ''), (81, 'BOUREL', 'Michel', '', 0, 0, 'M', 'N', ''), (82, 'BOUSCAREN', '', '', 0, 0, 'M', 'N', ''), (83, 'BOUSTANI', 'C.', '', 0, 0, 'M', 'N', ''), (84, 'BRAUDEL', 'Fernand', '', 1902, 1985, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fernand_Braudel'), (85, 'BREHIER', 'Emile', '', 1876, 1952, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89mile_Br%C3%A9hier'), (86, 'BRETON', 'André', '', 1896, 1966, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Breton'), (87, 'BRION', 'Marcel', '', 1895, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Brion'), (88, 'BRISSON', 'Luc', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Luc_Brisson'), (89, 'BROCKMEIER', 'Ralf', '', 0, 0, 'M', 'N', ''), (90, 'BROWN', 'Micah', '', 0, 0, 'M', 'N', ''), (91, 'BRUNO', 'Giordano', '', 1548, 1600, 'M', 'N', 'https://fr.wikipedia.org/wiki/Giordano_Bruno'), (92, 'BUCKEL', 'Herbert', '', 0, 0, 'M', 'N', ''), (93, 'BUISINE', '', '', 0, 0, 'M', 'N', ''), (94, 'BURKARD', 'Franz-Peter', '', 1958, 0, 'M', 'N', ''), (95, 'BURKARDT', 'François', '', 0, 0, 'M', 'N', ''), (96, 'Buro destruct', '', '', 0, 0, 'M', 'N', ''), (97, 'BUYDENS', 'Mireille', '', 0, 0, 'F', 'N', ''), (98, 'BUYENS', 'Jim', '', 0, 0, 'M', 'N', ''), (99, 'BUZAN', 'Tony', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Tony_Buzan'), (100, 'CABANNE', 'Pierre', '', 1921, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Cabanne'), (101, 'CACALY', 'Serge', '', 0, 0, 'M', 'N', ''), (102, 'CACHIN', 'Françoise', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7oise_Cachin'), (103, 'CAHN', 'Isabelle', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Isabelle_Cahn'), (104, 'CAILLAT', 'Carleen', '', 0, 0, 'F', 'N', ''), (105, 'CALAIS', '', '', 0, 0, 'M', 'N', ''), (106, 'CALDERON DE LA BARCA', 'Pedro', '', 1600, 1681, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pedro_Calder%C3%B3n_de_la_Barca'), (107, 'CAMUS', 'Albert', '', 1913, 1960, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albert_Camus'), (108, 'CANEVA', 'Caterina', '', 0, 0, 'F', 'N', ''), (109, 'CANGUILHEM', 'Georges', '', 1904, 1995, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Canguilhem'), (110, 'CARASSOU', 'Michel', '', 0, 0, 'M', 'N', ''), (111, 'CARBONE', 'Geneviève', '', 0, 0, 'F', 'N', ''), (112, 'CARLIER', '', '', 0, 0, 'M', 'N', ''), (113, 'CASSAGNEAU', 'Pascale', '', 0, 0, 'F', 'N', ''), (114, 'CASSIRER', 'Ernst', '', 1874, 1945, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ernst_Cassirer'), (115, 'CASTANT', 'Alexandre', '', 0, 0, 'M', 'N', ''), (116, 'CASTELLAN', 'Yvonne', '', 0, 0, 'F', 'N', ''), (117, 'CASTEX', 'Gérard', '', 0, 0, 'M', 'N', ''), (118, 'CASTRO', 'Elizabeth', '', 0, 0, 'F', 'N', ''), (119, 'CATLING', 'Christopher', '', 0, 0, 'M', 'N', ''), (120, 'CAUQUELIN', 'Anne', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Anne_Cauquelin'), (121, 'CECCHI', 'Alessandro', '', 0, 0, 'M', 'N', ''), (122, 'CERONI', 'Ambrogio', '', 0, 0, 'M', 'N', ''), (123, 'CHALUMEAU', 'Jean-Luc', '', 1939, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Luc_Chalumeau'), (124, 'CHAR', 'René', '', 1907, 1988, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Char'), (125, 'CHARVOLEN', 'Max', '', 0, 0, 'M', 'N', ''), (126, 'CHASE', 'Nicholas', '', 0, 0, 'M', 'N', ''), (127, 'CHASTEL', 'André', '', 1912, 1990, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Chastel'), (128, 'CHATEAU', 'Dominique', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dominique_Chateau'), (129, 'CHATELLIER', 'Philippe', '', 0, 0, 'M', 'N', ''), (130, 'CHAUMIER', 'Jacques', '', 0, 0, 'M', 'N', ''), (131, 'CHAZAL', 'G', '', 0, 0, 'M', 'N', ''), (132, 'CHELLI', 'Moncef', '', 1936, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Moncef_Chelli'), (133, 'CHEVALIER', 'Jean', '', 1906, 1993, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Chevalier'), (134, 'CHEVALLIER', 'Jean-Jacques', '', 1900, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Jacques_Chevallier'), (135, 'CHAREYRE-MEJAN', 'Alain', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Chareyre-M%C3%A9jan'), (136, 'CHILDS', 'Matt', '', 0, 0, 'M', 'N', ''), (137, 'CHIRAC', 'Jacques', '', 1932, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Chirac'), (138, 'CHIROLLET', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (139, 'CHIROUZE-LACOURT', '', '', 0, 0, 'M', 'N', ''), (140, 'CHOLLEY', '', '', 0, 0, 'M', 'N', ''), (141, 'CHUEN', 'Lam Kam', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lam_Kam_Chuen'), (142, 'CIORAN', 'Emil', '', 1911, 1995, 'M', 'N', 'https://fr.wikipedia.org/wiki/Emil_Cioran'), (143, 'CLAIR', 'Jean', '', 1940, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Clair'), (144, 'CLAUDEL', 'Paul', '', 1868, 1855, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Claudel'), (145, 'CLAVIEZ', 'Jacques', '', 0, 0, 'M', 'N', ''), (146, 'CLEVENOT', 'Dominique', '', 0, 0, 'M', 'N', ''), (147, 'COCTEAU', 'Jean', '', 1889, 1963, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Cocteau'), (148, 'COEFFE', 'Michel', '', 0, 0, 'M', 'N', ''), (149, 'COLAS', 'Dominique', '', 1944, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dominique_Colas'), (150, 'COLAS-ADLER', 'Marie-Hélène', '', 0, 0, 'F', 'N', ''), (151, 'COMAR', 'Philippe', '', 1955, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Comar'), (152, 'COMETTI', 'Jean-Pierre', '', 1944, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Cometti'), (153, 'COMPAGNON', 'Antoine', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Antoine_Compagnon'), (154, 'COMTE', 'Hubert', '', 1933, 2009, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hubert_Comte'), (155, 'CORNEILLE', 'Pierre', '', 1606, 1684, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Corneille'), (156, 'CORTI', 'Laura', '', 0, 0, 'F', 'N', ''), (157, 'COUCHOT', 'Edmond', '', 1932, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Edmond_Couchot'), (158, 'COUPRIE', '', '', 0, 0, 'M', 'N', ''), (159, 'COURTE', 'Jean-Christophe', '', 0, 0, 'M', 'N', ''), (160, 'COUWENBERGH', 'Jean-Pierre', '', 0, 0, 'M', 'N', ''), (161, 'CROWDER', 'Rhonda', '', 0, 0, 'F', 'N', ''), (162, 'CROWDER', 'Davir', '', 0, 0, 'M', 'N', ''), (163, 'DACHY', 'Marc', '', 1952, 2015, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Dachy'), (164, 'DAGOGNET', 'François', '', 1924, 2015, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Dagognet'), (165, 'DALAI LAMA', '', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dala%C3%AF-lama'), (166, 'DALIN', '', '', 0, 0, 'M', 'N', ''), (167, 'DAMISCH', 'Hubert', '', 1928, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hubert_Damisch'), (168, 'DANTE', 'Alighieri', '', 1265, 1321, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dante_Alighieri'), (169, 'DANTEC', 'Maurice Georges', '', 1959, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurice_G._Dantec'), (170, 'DANTO', 'Arthur', '', 1924, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Arthur_Danto'), (171, 'DARMESTETER', 'James', '', 1849, 1894, 'M', 'N', 'https://fr.wikipedia.org/wiki/James_Darmesteter'), (172, 'DARWIN', 'Charles', '', 1809, 1882, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Darwin'), (173, 'DASTUR', 'François', '', 0, 0, 'M', 'N', ''), (174, 'DAUDET', 'Alphonse', '', 1840, 1897, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alphonse_Daudet'), (175, 'DAVID', 'Matthew', '', 0, 0, 'M', 'N', ''), (176, 'DAVVETAS', 'D', '', 0, 0, 'M', 'N', ''), (177, 'De CASTRIS', 'Pierluigi Leone', '', 0, 0, 'M', 'N', ''), (178, 'de DUVE', 'Thierry', '', 1944, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thierry_de_Duve'), (179, 'de LIBERA', 'Alain', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_de_Libera'), (180, 'de LUMLEY', 'Henri', '', 1934, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henry_de_Lumley'), (181, 'de MAUPASSANT', 'Guy', '', 1850, 1893, 'M', 'N', 'https://fr.wikipedia.org/wiki/Guy_de_Maupassant'), (182, 'de MEREDIEU', 'Florence', '', 1944, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Florence_de_M%C3%A8redieu'), (183, 'de NERCIAT', 'André-Robert Andréa', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9-Robert_Andr%C3%A9a_de_Nerciat'), (184, 'de NERVAL', 'Gérard', '', 1808, 1855, 'M', 'N', 'https://fr.wikipedia.org/wiki/G%C3%A9rard_de_Nerval'), (185, 'de PILES', 'Roger', '', 1635, 1709, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roger_de_Piles'), (186, 'DEBAREDE', 'Anne', '', 0, 0, 'F', 'N', ''), (187, 'DEBRAY', 'Régis', '', 1940, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/R%C3%A9gis_Debray'), (188, 'DEGOUD', 'Noël', '', 0, 0, 'M', 'N', ''), (189, 'DELEUZE', 'Gilles', '', 1925, 1995, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilles_Deleuze'), (190, 'DEMURGER', 'Alain', '', 1939, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Demurger'), (191, 'DEPOTTE', '', '', 0, 0, 'M', 'N', ''), (192, 'DERRIDA', 'Jacques', '', 1930, 2004, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Derrida'), (193, 'DESCAMPS', 'Christian', '', 0, 0, 'M', 'N', ''), (194, 'DESCARTES', 'René', '', 1596, 1650, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Descartes'), (195, 'DEVOS', 'Raymond', '', 1922, 2006, 'M', 'N', 'https://fr.wikipedia.org/wiki/Raymond_Devos'), (196, 'DIDEROT', 'Denis', '', 1713, 1784, 'M', 'N', 'https://fr.wikipedia.org/wiki/Denis_Diderot'), (197, 'DIDI-HUBERMAN', 'Georges', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Didi-Huberman'), (198, 'DIONISI', 'Dominique', '', 0, 0, 'M', 'N', ''), (199, 'DOBBELS', '', '', 0, 0, 'M', 'N', ''), (200, 'DOLECKI', 'Eric', '', 0, 0, 'M', 'N', ''), (201, 'DOMENACH', 'Jean-Marie', '', 1922, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Marie_Domenach'), (202, 'DONVEZ', 'Jacques', '', 0, 0, 'M', 'N', ''), (203, 'DOPAGNE', 'Jacques', '', 1921, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Dopagne'), (204, 'DOUCET', '', '', 0, 0, 'M', 'N', ''), (205, 'DROSTE', 'Magdalena', '', 0, 0, 'F', 'N', ''), (206, 'DROUOT', 'Patrick', '', 0, 0, 'M', 'N', ''), (207, 'DROZ', 'Geneviève', '', 0, 0, 'F', 'N', ''), (208, 'DSU YAO', 'Chang', '', 1918, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/Chang_Dsu_Yao'), (209, 'DUBOIS', 'Philippe', '', 0, 0, 'M', 'N', ''), (210, 'DUBUFFET', 'Jean', '', 1901, 1985, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Dubuffet'), (211, 'DUBY', 'Georges', '', 1919, 1996, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Duby'), (212, 'DUCHER', 'Robert', '', 0, 0, 'M', 'N', ''), (213, 'DUFFRENNE', 'Mikel', '', 1910, 1995, 'M', 'N', 'https://fr.wikipedia.org/wiki/Mikel_Dufrenne'), (214, 'DUMAZEDIER', 'Joffre', '', 1915, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Joffre_Dumazedier'), (215, 'DUNOYER', 'Avril', '', 0, 0, 'M', 'N', ''), (216, 'DUPLESSIS', '', '', 0, 0, 'M', 'N', ''), (217, 'DURAND', 'François', '', 0, 0, 'M', 'N', ''), (218, 'DURANTON', 'Laurent', '', 0, 0, 'M', 'N', ''), (219, 'DUROZOI', 'Gérard', '', 1942, 0, 'M', 'N', ''), (220, 'DUTHEIL', 'Régis', '', 0, 0, 'M', 'N', ''), (221, 'DUTHEIL', 'Brigitte', '', 0, 0, 'F', 'N', ''), (222, 'DUTHEL', 'G', '', 0, 0, 'M', 'N', ''), (223, 'DUVIOLS, VILLEGIER', '', '', 0, 0, 'M', 'N', ''), (224, 'ECK', '', '', 0, 0, 'M', 'N', ''), (225, 'ECO', 'Umberto', '', 1932, 2016, 'M', 'N', 'https://fr.wikipedia.org/wiki/Umberto_Eco'), (226, 'EGGUM', '', '', 0, 0, 'M', 'N', ''), (227, 'EHRENZWEIG', 'Anton', '', 1908, 1966, 'M', 'N', 'https://en.wikipedia.org/wiki/Anton_Ehrenzweig'), (228, 'ELGER', 'Dietmar', '', 0, 0, 'M', 'N', ''), (229, 'ELIADE', 'Mircea', '', 1907, 1986, 'M', 'N', 'https://fr.wikipedia.org/wiki/Mircea_Eliade'), (230, 'ELLIS', 'W. Andrew', '', 0, 0, 'M', 'N', ''), (231, 'EPICURE', '', '', -342, -270, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89picure'), (232, 'EPSTEIN', 'Lionel', '', 0, 0, 'M', 'N', ''), (233, 'ESCHER', 'Maurits Cornelis', '', 1898, 1972, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurits_Cornelis_Escher'), (234, 'ESCOUBAS', 'Eliane', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/%C3%89liane_Escoubas'), (235, 'FAGES', 'Jean-Baptiste', '', 0, 0, 'M', 'N', ''), (236, 'FASSI', 'Roberto', '', 0, 0, 'M', 'N', ''), (237, 'FAUCHE', 'Xavier', '', 0, 0, 'M', 'N', ''), (238, 'FAURE', 'Elie', '', 1873, 1937, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89lie_Faure'), (239, 'FAURE', 'Paul', '', 1916, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Faure_(arch%C3%A9ologue)'), (240, 'FERREOL', 'Gilles', '', 0, 0, 'M', 'N', ''), (241, 'FERRER', 'Mathilde', '', 0, 0, 'F', 'N', ''), (242, 'FERRIER', 'Jean-louis', '', 0, 0, 'M', 'N', ''), (243, 'FIEUX', 'Loic', '', 0, 0, 'M', 'N', ''), (244, 'FIGUIER', 'Richard', '', 0, 0, 'M', 'N', ''), (245, 'FLANAGAN', 'David', '', 0, 0, 'M', 'N', ''), (246, 'FLECK', 'Robert', '', 0, 0, 'M', 'N', ''), (247, 'FOCILLON', 'Henri', '', 1881, 1943, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Focillon'), (248, 'FOGGI', 'Rossella', '', 0, 0, 'F', 'N', ''), (249, 'FOLSCHEID', 'dominique', '', 0, 0, 'M', 'N', ''), (250, 'FOUCAULT', 'Michel', '', 1926, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Foucault'), (251, 'FOURCADE', 'Dominique', '', 1938, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dominique_Fourcade'), (252, 'FOURNET', '', '', 0, 0, 'M', 'N', ''), (253, 'FOURNIER', 'Pierre-Simon', '', 1712, 1768, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre-Simon_Fournier'), (254, 'FOZZA', '', '', 0, 0, 'M', 'N', ''), (255, 'FRALA', 'Bernard', '', 0, 0, 'M', 'N', ''), (256, 'FRANCASTEL', 'Pierre', '', 1900, 1970, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Francastel'), (257, 'FRANKE', 'Matthias', '', 0, 0, 'M', 'N', ''), (258, 'FRANKLIN', 'Derek', '', 0, 0, 'M', 'N', ''), (259, 'FRANTZ', 'G', '', 0, 0, 'M', 'N', ''), (260, 'FREEDBERG', 'Sydney', '', 1914, 1997, 'M', 'N', 'https://en.wikipedia.org/wiki/Sydney_Joseph_Freedberg'), (261, 'FREGE', 'Gottlob', '', 1848, 1925, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gottlob_Frege'), (262, 'FRESNAULT-DERUELLE', 'Pierre', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Fresnault-Deruelle'), (263, 'FREUD', 'Sigmund', '', 1856, 1939, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sigmund_Freud'), (264, 'FRIED', 'Michael', '', 1939, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michael_Fried'), (265, 'FRIEDLAENDER', 'Walter', '', 1873, 1966, 'M', 'N', 'https://fr.wikipedia.org/wiki/Walter_Friedlaender'), (266, 'FROISSARD', 'François', '', 0, 0, 'M', 'N', ''), (267, 'FROMENT', '', '', 0, 0, 'M', 'N', ''), (268, 'GADAMER', 'Hans Georg', '', 1900, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hans-Georg_Gadamer'), (269, 'GAGNEBIN', 'Muriel', '', 0, 0, 'F', 'N', ''), (270, 'GAILLARD', 'Jean-Michel', '', 0, 0, 'M', 'N', ''), (271, 'GALLO', 'Max', '', 1932, 2017, 'M', 'N', 'https://fr.wikipedia.org/wiki/Max_Gallo'), (272, 'GALLOIS', 'Pierre Marie', '', 1911, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Marie_Gallois'), (273, 'GARAT', '', '', 0, 0, 'M', 'N', ''), (274, 'GARAT', 'Anne-Marie', '', 1946, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Anne-Marie_Garat'), (275, 'GARCIA', 'Bernard', '', 0, 0, 'M', 'N', ''), (276, 'GARROS', 'Louis', '', 0, 0, 'M', 'N', ''), (277, 'GENETTE', 'Gérard', '', 1930, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/G%C3%A9rard_Genette'), (278, 'GEORGIN', '', '', 0, 0, 'M', 'N', ''), (279, 'GERARD', 'André-Marie', '', 1918, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9-Marie_Gerard'), (280, 'GERARD père et fils', '', '', 0, 0, 'M', 'N', ''), (281, 'GEVART', 'Pierre', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_G%C3%A9vart'), (282, 'GHEERBRANT', 'Alain', '', 1920, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Gheerbrant'), (283, 'GHIGILIONE & RICHARD', '', '', 0, 0, 'M', 'N', ''), (284, 'GIAMPAOLO', 'Mario', '', 0, 0, 'M', 'N', ''), (285, 'GIDE', 'André', '', 1869, 1951, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Gide'), (286, 'GIEDION', 'Siegfried', '', 1888, 1968, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sigfried_Giedion'), (287, 'GIFFORD', 'Hoss', '', 0, 0, 'M', 'N', ''), (288, 'GILLIATT', 'Mary', '', 0, 0, 'F', 'N', ''), (289, 'GINOUVES', 'René', '', 1926, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Ginouv%C3%A8s'), (290, 'GIONO', 'Jean', '', 1895, 1970, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Giono'), (291, 'GODFRYD', '', '', 0, 0, 'M', 'N', ''), (292, 'GOELZER', 'Henri', '', 1853, 1929, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Goelzer'), (293, 'GOETHE', 'Johann Wolfgang von', '', 1749, 1832, 'M', 'N', 'https://fr.wikipedia.org/wiki/Johann_Wolfgang_von_Goethe'), (294, 'GOLDBERG', 'Itzhak', '', 0, 0, 'M', 'N', ''), (295, 'GOMBRICH', 'Ernst', '', 1909, 2001, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ernst_Gombrich'), (296, 'GONTIER', 'Thierry', '', 1960, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thierry_Gontier'), (297, 'GOODMAN', 'Nelson', '', 1998, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nelson_Goodman'), (298, 'GOSSIN', 'Dani', '', 0, 0, 'M', 'N', ''), (299, 'GOURINAT', 'Michel', '', 0, 0, 'M', 'N', ''), (300, 'GRADIAS', 'Michael', '', 0, 0, 'M', 'N', ''), (301, 'GRAF', 'Alain', '', 0, 0, 'M', 'N', ''), (302, 'GRAND', 'Toni', '', 1935, 2005, 'M', 'N', 'https://fr.wikipedia.org/wiki/Toni_Grand'), (303, 'GRANEL', 'G.', '', 0, 0, 'M', 'N', ''), (304, 'GREEN', 'André', '', 1927, 2012, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Green'), (305, 'GREENBERG', 'Clément', '', 1909, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Clement_Greenberg'), (306, 'GRENIER', 'Hubert', '', 0, 0, 'M', 'N', ''), (307, 'GREVISSE', 'Maurice', '', 1895, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurice_Grevisse'), (308, 'GRIGORIEFF', 'Vladimir', '', 1931, 2017, 'M', 'N', 'https://fr.wikipedia.org/wiki/Vladimir_Grigorieff'), (309, 'GRIMAL', 'Pierre', '', 1912, 1996, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Grimal'), (310, 'GRIMALDI', 'Nicolas', '', 1933, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Grimaldi'), (311, 'GRIMM', '', '', 0, 0, 'M', 'N', ''), (312, 'GROMAIRE', 'Marcel', '', 1892, 1971, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Gromaire'), (313, 'GROS', 'C.', '', 0, 0, 'M', 'N', ''), (314, 'GROSJEAN', '', '', 0, 0, 'M', 'N', ''), (315, 'GROSS', 'Mike', '', 0, 0, 'M', 'N', ''), (316, 'GROSS', 'Phil', '', 0, 0, 'M', 'N', ''), (317, 'GUATTARI', 'Felix', '', 1930, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/F%C3%A9lix_Guattari'), (318, 'GUEDON', 'Laurent', '', 0, 0, 'M', 'N', ''), (319, 'GUERIN', 'Michel', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Gu%C3%A9rin'), (320, 'GU', '', '', 0, 0, 'M', 'N', ''), (321, 'GUIN', 'Pierre', '', 0, 0, 'M', 'N', ''), (322, 'GUITRY', 'Sacha', '', 1885, 1957, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sacha_Guitry'), (323, 'GUPTA', 'Meeta', '', 0, 0, 'M', 'N', ''), (324, 'GUTHRIE', 'William Keith Chambers', '', 1906, 1981, 'M', 'N', 'https://en.wikipedia.org/wiki/W._K._C._Guthrie'), (325, 'HAAR', 'Michel', '', 1937, 2003, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Haar'), (326, 'HABERMAS', 'Jürgen', '', 1929, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/J%C3%BCrgen_Habermas'), (327, 'HANDKE', 'Peter', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Peter_Handke'), (328, 'de HASS', '', '', 0, 0, 'M', 'N', ''), (329, 'HASSOUN', 'Jacques', '', 1936, 1999, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Hassoun'), (330, 'HAWKING', 'Stephen', '', 1942, 2018, 'M', 'N', 'https://en.wikipedia.org/wiki/Stephen_Hawking'), (331, 'HECQUARD', 'Françoise', '', 0, 0, 'F', 'N', ''), (332, 'HEDGECOE', 'John /Berger', '', 0, 0, 'M', 'N', ''), (333, 'HEGEL', 'Georg Wilhelm Friedrich', '', 1770, 1831, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georg_Wilhelm_Friedrich_Hegel'), (334, 'HEIDEGGER', 'Martin', '', 1889, 1976, 'M', 'N', 'https://fr.wikipedia.org/wiki/Martin_Heidegger'), (335, 'HEMINGWAY', 'Ernest', '', 1899, 1961, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ernest_Hemingway'), (336, 'HESTER', 'Nolan', '', 0, 0, 'M', 'N', ''), (337, 'HEUTE', 'Thomas', '', 0, 0, 'M', 'N', ''), (338, 'HEUTE', 'Damien', '', 0, 0, 'M', 'N', ''), (339, 'HIGOUNET', 'Charles', '', 1911, 1988, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Higounet'), (340, 'HILLAIRE', 'Norbert', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Norbert_Hillaire'), (341, 'HONNEF', 'Klaus', '', 0, 0, 'M', 'N', ''), (342, 'HUANG', 'Yong Ping', '', 1954, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Huang_Yong_Ping'), (343, 'HUGO', 'Victor', '', 1802, 1885, 'M', 'N', 'https://fr.wikipedia.org/wiki/Victor_Hugo'), (344, 'HUISMAN', 'Denis', '', 1929, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Denis_Huisman'), (345, 'HUIZINGA', 'Johan', '', 1872, 1945, 'M', 'N', 'https://fr.wikipedia.org/wiki/Johan_Huizinga'), (346, 'HULTEN', 'Pontus', '', 1924, 2006, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pontus_Hult%C3%A9n'), (347, 'HUME', 'David', '', 1711, 1776, 'M', 'N', 'https://fr.wikipedia.org/wiki/David_Hume'), (348, 'HUMFREY', 'Peter', '', 0, 0, 'M', 'N', ''), (349, 'HUNTER', 'David', '', 0, 0, 'M', 'N', ''), (350, 'HUXLEY', 'Adlous', '', 1894, 1963, 'M', 'N', 'https://fr.wikipedia.org/wiki/Aldous_Huxley'), (351, 'HUYGHE', 'René', '', 1906, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Huyghe'), (352, 'IDEENREICH', '', '', 0, 0, 'M', 'N', ''), (353, 'IONESCO', 'Eugène', '', 1909, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Eug%C3%A8ne_Ionesco'), (354, 'ISAAC', 'Jules', '', 1877, 1963, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jules_Isaac'), (355, 'ISRAEL', 'Marc', '', 0, 0, 'M', 'N', ''), (356, 'ITTEN', 'Johannes', '', 1888, 1967, 'M', 'N', 'https://fr.wikipedia.org/wiki/Johannes_Itten'), (357, 'JACCARD', 'Roland', '', 1941, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roland_Jaccard'), (358, 'JANKELEVITCH', 'Vladimir', '', 1903, 1985, 'M', 'N', 'https://fr.wikipedia.org/wiki/Vladimir_Jank%C3%A9l%C3%A9vitch'), (359, 'JAVARY', 'Cyrile', '', 1947, 1975, 'M', 'N', 'https://fr.wikipedia.org/wiki/Cyrille_Javary'), (360, 'JIMENEZ', 'Juan Ramon', '', 1881, 1958, 'M', 'N', 'https://fr.wikipedia.org/wiki/Juan_Ram%C3%B3n_Jim%C3%A9nez'), (361, 'JOUETTE', 'André', '', 0, 0, 'M', 'N', ''), (362, 'JOULE', 'Robert-Vincent', '', 0, 0, 'M', 'N', ''), (363, 'JOYCE', 'James', '', 1882, 1941, 'M', 'N', 'https://fr.wikipedia.org/wiki/James_Joyce'), (364, 'JULIET', 'Charles', '', 1934, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Juliet'), (365, 'JULLIEN', 'Michelle', '', 0, 0, 'F', 'N', ''), (366, 'JULLIER', 'Laurent', '', 1960, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Laurent_Jullier'), (367, 'JUMEAU-LAFOND', 'Jacques', '', 0, 0, 'M', 'N', ''), (368, 'JUNG', 'Karl Gustav', '', 1875, 1961, 'M', 'N', 'https://fr.wikipedia.org/wiki/Carl_Gustav_Jung'), (369, 'KAFU', '', '', 0, 0, 'M', 'N', ''), (370, 'KANDINSKY', 'Wassily', '', 1866, 1944, 'M', 'N', 'https://fr.wikipedia.org/wiki/Vassily_Kandinsky'), (371, 'KANT', 'Emmanuel', '', 1724, 1804, 'M', 'N', 'https://fr.wikipedia.org/wiki/Emmanuel_Kant'), (372, 'KARDAS', '', '', 0, 0, 'M', 'N', ''), (373, 'KAUFFMAN', 'John', '', 0, 0, 'M', 'N', ''), (374, 'KAY', 'Michael', '', 0, 0, 'M', 'N', ''), (375, 'KEATING', 'Jody', '', 0, 0, 'F', 'N', ''), (376, 'KENNEDY', 'Angus J', '', 0, 0, 'M', 'N', ''), (377, 'KENNEDY', 'Bill', '', 0, 0, 'M', 'N', ''), (378, 'KERVIEL', 'Sylvie', '', 0, 0, 'F', 'N', ''), (379, 'KESSEL', 'Joseph', '', 1898, 1979, 'M', 'N', 'https://fr.wikipedia.org/wiki/Joseph_Kessel'), (380, 'KIENAST', '', '', 0, 0, 'M', 'N', ''), (381, 'KLEIN', 'Yves', '', 1928, 1962, 'M', 'N', 'https://fr.wikipedia.org/wiki/Yves_Klein'), (382, 'KLOSSOWSKY', 'Pierre', '', 1905, 2001, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Klossowski'), (383, 'KNEISSLER', '', '', 0, 0, 'M', 'N', ''), (384, 'KOCH', 'Martin', '', 0, 0, 'M', 'N', ''), (385, 'KOCHELEFF', 'Tamara', '', 0, 0, 'F', 'N', ''), (386, 'KOFMAN', 'Sarah', '', 1934, 1994, 'F', 'N', 'https://fr.wikipedia.org/wiki/Sarah_Kofman'), (387, 'KOLNAI', 'Aurel', '', 1900, 1973, 'M', 'N', 'https://en.wikipedia.org/wiki/Aurel_Kolnai'), (388, 'KOONS', 'Jeff', '', 1955, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Jeff_Koons'), (389, 'KOYRE', 'Alexandre', '', 1892, 1964, 'M', 'N', 'https://en.wikipedia.org/wiki/Alexandre_Koyr%C3%A9'), (390, 'KRAUSS', 'Rosalind', '', 1941, 0, 'F', 'N', 'https://en.wikipedia.org/wiki/Rosalind_E._Krauss'), (391, 'KUNZMANN', 'Peter', '', 0, 0, 'M', 'N', ''), (392, 'LA FONTAINE', 'Jean de', '', 1621, 1695, 'M', 'N', 'https://en.wikipedia.org/wiki/Jean_de_La_Fontaine'), (393, 'LABARRE', 'Albert', '', 1927, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albert_Labarre'), (394, 'LABBE', 'Pierre', '', 0, 0, 'M', 'N', ''), (395, 'LABORIT', 'Henri', '', 1914, 1995, 'M', 'N', 'https://en.wikipedia.org/wiki/Henri_Laborit'), (396, 'LACAN', 'Jacques', '', 1901, 1981, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Lacan'), (397, 'LACAZE', 'Pierre', '', 0, 0, 'M', 'N', ''), (398, 'LACOSTE', '', '', 0, 0, 'M', 'N', ''), (399, 'LAFARGUE', 'Bernard', '', 0, 0, 'M', 'N', ''), (400, 'LAGARDE', 'André', '', 1912, 2001, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Lagarde'), (401, 'LAGOUTTE', 'Daniel', '', 0, 0, 'M', 'N', ''), (402, 'LALA', '', '', 0, 0, 'M', 'N', ''), (403, 'LALANDE', 'André', '', 1867, 1963, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Lalande_(philosophe)'), (404, 'LAMONTAGNE', 'Michèle', '', 0, 0, 'F', 'N', ''), (405, 'LAMY', 'Julien', '', 0, 0, 'M', 'N', ''), (406, 'LASCAULT', 'Gilbert', '', 1934, 0, 'M', 'N', 'Gilbert Lascault'), (407, 'Le BOHEC', '', '', 0, 0, 'M', 'N', ''), (408, 'Le BOT', 'Marc', '', 1921, 2001, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Le_Bot'), (409, 'Le COADIC', 'Yves', '', 0, 0, 'M', 'N', ''), (410, 'Le CORBUSIER', '', '', 1887, 1965, 'M', 'N', 'https://en.wikipedia.org/wiki/Le_Corbusier'), (411, 'Le DIBERDER', '', '', 0, 0, 'M', 'N', ''), (412, 'Le GLAY', '', '', 0, 0, 'M', 'N', ''), (413, 'Le GOFF', 'Jacques', '', 1924, 2014, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Le_Goff'), (414, 'LE GUERINEL', 'Pierre', '', 0, 0, 'M', 'N', ''), (415, 'LE QUINTREC', '', '', 0, 0, 'M', 'N', ''), (416, 'LEAPMAN', 'Michael', '', 0, 0, 'M', 'N', ''), (417, 'LEBENSZTEJN', 'Jean-Claude', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Claude_Lebensztejn'), (418, 'LEBRAS', 'Florence', '', 0, 0, 'F', 'N', ''), (419, 'LEBRUN', 'François', '', 1923, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Lebrun'), (420, 'LEDORF', 'Rasmus', '', 0, 0, 'M', 'N', ''), (421, 'LEGER', 'Fernand', '', 1881, 1955, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fernand_L%C3%A9ger'), (422, 'LEGRAND', '', '', 0, 0, 'M', 'N', ''), (423, 'LEIBNIZ', 'Gottfried Wilhelm', '', 1646, 1716, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gottfried_Wilhelm_Leibniz'), (424, 'LEIERER', 'G.A.', '', 0, 0, 'M', 'N', ''), (425, 'LEMA', '', '', 0, 0, 'M', 'N', ''), (426, 'LENNART', 'Nilsson', '', 1922, 2017, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lennart_Nilsson'), (427, 'LEPAGE', 'François', '', 1796, 1871, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Lepage'), (428, 'LEROI-GOURHAN', 'André', '', 1911, 1986, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Leroi-Gourhan'), (429, 'LEVY-STRAUSS', 'Claude', '', 1908, 2009, 'M', 'N', 'https://fr.wikipedia.org/wiki/Claude_L%C3%A9vi-Strauss'), (430, 'LEVY', 'Pierre', '', 1956, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_L%C3%A9vy_(philosophe)'), (431, 'LICHTENBERG', 'Roger', '', 0, 0, 'M', 'N', ''), (432, 'LIGER', 'François', '', 0, 0, 'M', 'N', ''), (433, 'LINDENBERG', '', '', 0, 0, 'M', 'N', ''), (434, 'LITOLFF', '', '', 0, 0, 'M', 'N', ''), (435, 'LIVINGSTONE', 'Dan', '', 0, 0, 'M', 'N', ''), (436, 'LOILIER', 'Hervé', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Herv%C3%A9_Loilier'), (437, 'LOISEAU', 'Laurent', '', 0, 0, 'M', 'N', ''), (438, 'LOMAX', 'Paul', '', 0, 0, 'M', 'N', ''), (439, 'LORIES', 'Danielle', '', 0, 0, 'F', 'N', ''), (440, 'LOTT', 'Joey', '', 0, 0, 'M', 'N', ''), (441, 'LUCRECE', '', '', -98, -55, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lucr%C3%A8ce'), (442, 'LUCR', '', '', 0, 0, 'M', 'N', ''), (443, 'LYOTARD', 'Jean-François', '', 1924, 1998, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Fran%C3%A7ois_Lyotard'), (444, 'MACHIAVEL', 'Nicolas', '', 1469, 1527, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Machiavel'), (445, 'Mac MILLAN', 'Simon', '', 0, 0, 'M', 'N', ''), (446, 'Mac MILLAN', 'Shuster', '', 0, 0, 'M', 'N', ''), (447, 'MAKAR', 'Jobe', '', 0, 0, 'M', 'N', ''), (448, 'MALDINEY', 'H.', '', 0, 0, 'M', 'N', ''), (449, 'MALET', 'Albert', '', 1864, 1915, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albert_Malet_(historien)'), (450, 'MALLET-POUJOL', 'Nathalie', '', 0, 0, 'F', 'N', ''), (451, 'MALRAUX', 'André', '', 1901, 1976, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Malraux'), (452, 'MARANI', 'Pietro', '', 0, 0, 'M', 'N', ''), (453, 'MARIN', 'Louis', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Louis_Marin_(philosophe)'), (454, 'MARKALE', 'Jean', '', 1928, 2008, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Markale'), (455, 'MARKO-GEENEN', 'Suzette', '', 0, 0, 'F', 'N', ''), (456, 'MARKS', 'Todd', '', 0, 0, 'M', 'N', ''), (457, 'MARSON', 'Eric', '', 0, 0, 'M', 'N', ''), (458, 'MARTIN', 'Robert', '', 0, 0, 'M', 'N', ''), (459, 'MARTIN', 'Jean-Hubert', '', 1944, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Hubert_Martin'), (460, 'MARTIN', 'Gérard', '', 0, 0, 'M', 'N', ''), (461, 'MARTIN-BAGNAUDEZ', 'Jacqueline', '', 0, 0, 'F', 'N', ''), (462, 'MASLO', 'Andreas', '', 0, 0, 'M', 'N', ''), (463, 'MASLO', 'Pias', '', 0, 0, 'M', 'N', ''), (464, 'MASSAERT', 'Luc', '', 0, 0, 'M', 'N', ''), (465, 'MASSON', '', '', 0, 0, 'M', 'N', ''), (466, 'MASSON', 'Nicole', '', 0, 0, 'F', 'N', ''), (467, 'MATHIEX', '', '', 0, 0, 'M', 'N', ''), (468, 'MATISSE', 'Henri', '', 1869, 1954, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Matisse'), (469, 'MATSIK', 'Kevin', '', 0, 0, 'M', 'N', ''), (470, 'MATSIK', 'Brian', '', 0, 0, 'M', 'N', ''), (471, 'MATTEI', 'Jean-François', '', 1941, 2014, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Fran%C3%A7ois_Matt%C3%A9i'), (472, 'MAYEUR', '', '', 0, 0, 'M', 'N', ''), (473, 'McCUE', 'Camille', '', 0, 0, 'F', 'N', ''), (474, 'MELOT', 'Michel', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Melot'), (475, 'MENEGAUX', 'Odile', '', 0, 0, 'F', 'N', ''), (476, 'MENIL', 'Alain', '', 1958, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_M%C3%A9nil'), (477, 'MERIMEE', 'Prosper', '', 1803, 1870, 'M', 'N', 'https://fr.wikipedia.org/wiki/Prosper_M%C3%A9rim%C3%A9e'), (478, 'MERLEAU-PONTY', 'Maurice', '', 1908, 1961, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurice_Merleau-Ponty'), (479, 'MESSIANE', 'Eric', '', 0, 0, 'M', 'N', ''), (480, 'MESTERS', 'Jean-Paul', '', 0, 0, 'M', 'N', ''), (481, 'MEYER', 'Laure', '', 0, 0, 'F', 'N', ''), (482, 'MICHARD', 'Laurent', '', 1915, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Laurent_Michard'), (483, 'MICHAUD', 'Yves', '', 1944, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Yves_Michaud_(philosophe)'), (484, 'MICHEL', 'R', '', 0, 0, 'M', 'N', ''), (485, 'MILIC', 'Branislav', '', 0, 0, 'M', 'N', ''), (486, 'MILIER', 'Jean', '', 0, 0, 'M', 'N', ''), (487, 'MILLER', 'Henry', '', 1891, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henry_Miller'), (488, 'MILLET', 'Catherine', '', 1948, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Catherine_Millet'), (489, 'MILNER', 'Marion', '', 1900, 1988, 'F', 'N', 'https://fr.wikipedia.org/wiki/Marion_Milner'), (490, 'MISSET', '', '', 0, 0, 'M', 'N', ''), (491, 'MITRY', 'Jean', '', 1904, 1988, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Mitry'), (492, 'MOLES', 'Abraham', '', 1920, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/Abraham_Moles'), (493, 'MOLIERE', '', '', 1622, 1673, 'M', 'N', 'https://fr.wikipedia.org/wiki/Moli%C3%A8re'), (494, 'MOLIMARD', 'Pierre', '', 0, 0, 'M', 'N', ''), (495, 'MONDZAIN', 'Marie-Josée', '', 1942, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Marie-Jos%C3%A9_Mondzain'), (496, 'MONIZ', 'Steven', '', 0, 0, 'M', 'N', ''), (497, 'MONNIER', 'Guylaine', '', 1970, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Guylaine_Monnier'), (498, 'MONNONE', 'Brian', '', 0, 0, 'M', 'N', ''), (499, 'MOOCK', 'Colin', '', 0, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Colin_Moock'), (500, 'MOREL', '', '', 0, 0, 'M', 'N', ''), (501, 'MORGAINE', 'Manuela', '', 0, 0, 'F', 'N', ''), (502, 'MOSSE', 'Claude', '', 1924, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Claude_Moss%C3%A9_(historienne)'), (503, 'MOULIN', 'Raymonde', '', 0, 0, 'F', 'N', ''), (504, 'MOULONOU', '', '', 0, 0, 'M', 'N', ''), (505, 'MOURIER', '', '', 0, 0, 'M', 'N', ''), (506, 'MOURRIER', 'Gérard', '', 0, 0, 'M', 'N', ''), (507, 'MULLER', 'Pierre-Emmanuel', '', 0, 0, 'M', 'N', ''), (508, 'MUNIER', 'Roger', '', 1923, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roger_Munier'), (509, 'Muntaner', 'Bernard', '', 0, 0, 'M', 'N', ''), (510, 'MURDOCK', 'Kelly L.', '', 0, 0, 'M', 'N', ''), (511, 'MUSASHI', 'Miyamoto', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Miyamoto_Musashi'), (512, 'MUSCIANO', 'Chuck', '', 0, 0, 'M', 'N', ''), (513, 'MYSS', 'Caroline', '', 1952, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Caroline_Myss'), (514, 'NADEAU', 'Maurice', '', 1911, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurice_Nadeau'), (515, 'NANCY', 'Jean-luc', '', 1940, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Luc_Nancy'), (516, 'NATALI', 'Antonio', '', 0, 0, 'M', 'N', ''), (517, 'NERET', 'Gilles', '', 1933, 2005, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilles_N%C3%A9ret'), (518, 'NERVAL', 'Gérard de', '', 1808, 1855, 'M', 'N', 'https://fr.wikipedia.org/wiki/G%C3%A9rard_de_Nerval'), (519, 'JOSE', 'Pierre', '', 1927, 1999, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jos%C3%A9_Pierre'), (520, 'NICOLIER', 'Eric', '', 0, 0, 'M', 'N', ''), (521, 'NIELSEN', 'Jacob', '', 0, 0, 'M', 'N', ''), (522, 'NIEMETZKY', 'G', '', 0, 0, 'M', 'N', ''), (523, 'NIETZSCHE', 'Friedrich', '', 1844, 1900, 'M', 'N', 'https://fr.wikipedia.org/wiki/Friedrich_Nietzsche'), (524, 'NOËL', 'Bernard', '', 1930, 0, 'M', 'N', ''), (525, 'NOUSCHI', '', '', 0, 0, 'M', 'N', ''), (526, 'NYQUIST', 'Jhon R.', '', 0, 0, 'M', 'N', ''), (527, 'ONFRAY', 'Michel', '', 1959, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Michel_Onfray'), (528, 'ORDINE', 'Nuccio', '', 1958, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Nuccio_Ordine'), (529, 'ORRIEUX', 'Claude', '', 1928, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Claude_Orrieux'), (530, 'OSTERWOLD', 'Tilman', '', 0, 0, 'M', 'N', ''), (531, 'OTTINGER', 'Didier', '', 1957, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Didier_Ottinger'), (532, 'OVIDE', '', '', -43, 18, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ovide'), (533, 'PAIREAU', 'François', '', 0, 0, 'M', 'N', ''), (534, 'PANOFSKY', 'Erwin', '', 1892, 1968, 'M', 'N', 'https://fr.wikipedia.org/wiki/Erwin_Panofsky'), (535, 'PAPAIOANNOU', 'Kostas', '', 1925, 1981, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kostas_Papa%C3%AFoannou'), (536, 'PARFAIT', '', '', 0, 0, 'M', 'N', ''), (537, 'PARRENS', 'Louis', '', 0, 0, 'M', 'N', ''), (538, 'PATERNOTTE', 'Jean', '', 0, 0, 'M', 'N', ''), (539, 'PASCAL', 'Blaise', '', 1623, 1662, 'M', 'N', 'https://fr.wikipedia.org/wiki/Blaise_Pascal'), (540, 'PASDELOUP', '', '', 0, 0, 'M', 'N', ''), (541, 'PASSERON', 'René', '', 1920, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Passeron'), (542, 'PAUWELS', 'Louis', '', 1920, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Louis_Pauwels'), (543, 'PAYOT', 'D.', '', 0, 0, 'M', 'N', ''), (544, 'PEDROCCO', 'Filippo', '', 1950, 0, 'M', 'N', ''), (545, 'PEETERS', 'Benao', '', 0, 0, 'M', 'N', ''), (546, 'PELLETIER', 'Michel', '', 0, 0, 'M', 'N', ''), (547, 'PENNER', 'Robert', '', 0, 0, 'M', 'N', ''), (548, 'PEQUIGNOT', 'Bruno', '', 0, 0, 'M', 'N', ''), (549, 'PERLAIN', '', '', 0, 0, 'M', 'N', ''), (550, 'PERNOUD', 'R', '', 0, 0, 'M', 'N', ''), (551, 'PEROUSE de MONTCLOS', 'Jean-Marie', '', 1936, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Marie_P%C3%A9rouse_de_Montclos'), (552, 'PERRAULT', 'Charles', '', 1628, 1703, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Perrault'), (553, 'PERRIER', 'Vincent', '', 0, 0, 'M', 'N', ''), (554, 'PERSIDSKY', 'Andre', '', 0, 0, 'M', 'N', ''), (555, 'PETRUSHBA', 'Ron', '', 0, 0, 'M', 'N', ''), (556, 'PICOCHE', 'Jacqueline', '', 0, 0, 'F', 'N', ''), (557, 'PIGNATTI', 'Terisio', '', 0, 0, 'M', 'N', ''), (558, 'PIGNET', 'Christophe', '', 0, 0, 'M', 'N', ''), (559, 'PIGNON', 'Edouard', '', 1905, 1993, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89douard_Pignon'), (560, 'PINGET', 'Robert', '', 1919, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Robert_Pinget'), (561, 'PIVONKA', 'Elysabeth', '', 0, 0, 'F', 'N', ''), (562, 'PLATON', '', '', -428, -348, 'M', 'N', 'https://fr.wikipedia.org/wiki/Platon'), (563, 'PLEW', 'Ronald R.', '', 0, 0, 'M', 'N', ''), (564, 'PLEYNET', 'Marcelin', '', 1933, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcelin_Pleynet'), (565, 'PLINE L\'ANCIEN', '', '', 23, 79, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pline_l\'Ancien'), (566, 'POE', 'Edgard Allan', '', 1809, 1849, 'M', 'N', 'https://fr.wikipedia.org/wiki/Edgar_Allan_Poe'), (567, 'POISSON', '', '', 0, 0, 'M', 'N', ''), (568, 'POLEVO', 'Vadim', '', 0, 0, 'M', 'N', ''), (569, 'POUYANNE', '', '', 0, 0, 'M', 'N', ''), (570, 'PRATELLI & ZIELLA', '', '', 0, 0, 'M', 'N', ''), (571, 'PREVERT', 'Jacques', '', 1900, 1977, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Pr%C3%A9vert'), (572, 'PRIGENT', 'Olivier', '', 0, 0, 'M', 'N', ''), (573, 'PRIGOGINE', 'Ilya', '', 1917, 2003, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ilya_Prigogine'), (574, 'PROUST', 'Marcel', '', 1871, 1922, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Proust'), (575, 'PROUVE', 'Jean', '', 1901, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Prouv%C3%A9'), (576, 'QUEAU', 'Philippe', '', 0, 0, 'M', 'N', ''), (577, 'QUIGNARD', 'Pascal', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pascal_Quignard'), (578, 'RACINE', 'Jean', '', 1639, 1699, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Racine'), (579, 'RAGIONIERI', 'Giovanna', '', 0, 0, 'F', 'N', ''), (580, 'RAILLARD', '', '', 0, 0, 'M', 'N', ''), (581, 'RAPETTI', '', '', 0, 0, 'M', 'N', ''), (582, 'RAVIER', '', '', 0, 0, 'M', 'N', ''), (583, 'RAVOUX RALLO', 'Elisabeth', '', 0, 0, 'F', 'N', ''), (584, 'REMOND', 'René', '', 1918, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_R%C3%A9mond'), (585, 'RENSSELAER', 'W. Lee', '', 1898, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Rensselaer_W._Lee'), (586, 'REUTHER', '', '', 0, 0, 'M', 'N', ''), (587, 'REY', '', '', 0, 0, 'M', 'N', ''), (588, 'REYES', 'Alina', '', 1956, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Alina_Reyes'), (589, 'RICHIR', 'Marc', '', 1943, 2015, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Richir'), (590, 'Richir', 'L.', '', 0, 0, 'M', 'N', ''), (591, 'RICOEUR', 'Paul', '', 1913, 2005, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Ric%C5%93ur'), (592, 'RIEGL', 'Alois', '', 1858, 1905, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alo%C3%AFs_Riegl'), (593, 'RIGAUX', 'Philippe', '', 0, 0, 'M', 'N', ''), (594, 'RILKE', 'Rainer Maria', '', 1875, 1926, 'M', 'N', 'https://fr.wikipedia.org/wiki/Rainer_Maria_Rilke'), (595, 'RIMBAUD', 'Arthur', '', 1854, 1891, 'M', 'N', 'https://fr.wikipedia.org/wiki/Arthur_Rimbaud'), (596, 'RISACHER', 'Vincent', '', 0, 0, 'M', 'N', ''), (597, 'RISPAIL', 'Jean-luc', '', 0, 0, 'M', 'N', ''), (598, 'RISSET', 'Jacqueline', '', 1936, 2014, 'F', 'N', 'https://fr.wikipedia.org/wiki/Jacqueline_Risset'), (599, 'RIVIERE', 'Claude', '', 0, 0, 'M', 'N', ''), (600, 'ROBAULT', 'Ad', '', 0, 0, 'M', 'N', ''), (601, 'ROBBE', 'Philippe', '', 0, 0, 'M', 'N', ''), (602, 'ROCHFELD', 'Arnold', '', 0, 0, 'M', 'N', ''), (603, 'ROCHLITZ', 'Rainer', '', 1946, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Rainer_Rochlitz'), (604, 'ROGERS', 'Jenny', '', 0, 0, 'M', 'N', ''), (605, 'ROMAINS', 'Jules', '', 1885, 1972, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jules_Romains'), (606, 'ROMAN', 'Steven', '', 0, 0, 'M', 'N', ''), (607, 'ROQUE', 'Paul', '', 0, 0, 'M', 'N', ''), (608, 'ROSENBERG', 'Harold', '', 1906, 1978, 'M', 'N', 'https://fr.wikipedia.org/wiki/Harold_Rosenberg'), (609, 'ROSENZWEIG', 'Gary', '', 0, 0, 'M', 'N', ''), (610, 'ROSSET', 'Clément', '', 1939, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Cl%C3%A9ment_Rosset'), (611, 'ROUAULT', 'Georges', '', 1871, 1958, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Rouault'), (612, 'ROUCAS', 'Jean', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Roucas'), (613, 'ROUDAUT', 'G', '', 0, 0, 'M', 'N', ''), (614, 'ROUGE', 'Daniel', '', 0, 0, 'M', 'N', ''), (615, 'ROUSSEAU', 'Jean-Jacques', '', 1712, 1778, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Jacques_Rousseau'), (616, 'RUGGIERI', 'Eve', '', 1939, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%88ve_Ruggi%C3%A9ri'), (617, 'RUSS', 'Jacqueline', '', 1934, 1999, 'F', 'N', 'https://fr.wikipedia.org/wiki/Jacqueline_Russ'), (618, 'RUSU', 'Val', '', 0, 0, 'M', 'N', ''), (619, 'RUSU', 'Romanita', '', 0, 0, 'F', 'N', ''), (620, 'RYU', 'Murakami', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ry%C5%AB_Murakami'), (621, 'de SADE', 'Donatien Alphonse François', '', 1740, 1814, 'M', 'N', 'https://fr.wikipedia.org/wiki/Donatien_Alphonse_Fran%C3%A7ois_de_Sade'), (622, 'SAGAN', 'Françoise', '', 1935, 2004, 'F', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7oise_Sagan'), (623, 'SAHEL', 'Claude', '', 0, 0, 'M', 'N', ''), (624, 'SAHUT', 'Marie-catherine', '', 0, 0, 'F', 'N', ''), (625, 'de SAINT-EXUPERY', 'Antoine', '', 1900, 1944, 'M', 'N', 'https://fr.wikipedia.org/wiki/Antoine_de_Saint-Exup%C3%A9ry'), (626, 'SAINT-LOUP', 'Margot', '', 0, 0, 'F', 'N', ''), (627, 'SALUDEN', 'François', '', 0, 0, 'M', 'N', ''), (628, 'SANTIVERI', 'Jean-Jacques', '', 0, 0, 'M', 'N', ''), (629, 'SARABIANOV', 'Dimitri', '', 0, 0, 'M', 'N', ''), (630, 'SARTRE', 'Jean-Paul', '', 1905, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Paul_Sartre'), (631, 'SAVIER', '', '', 0, 0, 'M', 'N', ''), (632, 'SCHAEFFER', 'Jean-Marie', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Marie_Schaeffer'), (633, 'SCHAER', 'Roland', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roland_Schaer'), (634, 'SCHAPIRO', 'Meyer', '', 1904, 1996, 'M', 'N', 'https://fr.wikipedia.org/wiki/Meyer_Schapiro'), (635, 'SCHMID', 'H.', '', 0, 0, 'M', 'N', ''), (636, 'SCHMIDT FRIDERICHS', 'Bertram', '', 1959, 0, 'M', 'N', 'https://de.wikipedia.org/wiki/Bertram_Schmidt-Friderichs'), (637, 'SCHMITT', 'Jean-Claude', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Claude_Schmitt'), (638, 'SCHMITT PANTEL', 'Pauline', '', 1947, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Pauline_Schmitt-Pantel'), (639, 'SCHOLEM', 'Gershom', '', 1897, 1982, 'F', 'N', 'https://fr.wikipedia.org/wiki/Gershom_Scholem'), (640, 'SCHWITTERS', 'Kurt', '', 1887, 1948, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kurt_Schwitters'), (641, 'SCOT-VILA', '', '', 0, 0, 'M', 'N', ''), (642, 'SCOTT', 'Mitchell', '', 1932, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Scott_Mitchell'), (643, 'de SEREVILLE', 'Chantal', '', 0, 0, 'F', 'N', ''), (644, 'SERRES', 'Michel', '', 1930, 1990, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Serres'), (645, 'SERULLAZ', 'Maurice', '', 0, 0, 'M', 'N', ''), (646, 'SERVANT-SCHREIBER', 'Jean Louis', '', 0, 0, 'M', 'N', ''), (647, 'SEZNEC', 'Jean', '', 1905, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Seznec'), (648, 'SHAKESPEARE', 'William', '', 1564, 1616, 'M', 'N', 'https://fr.wikipedia.org/wiki/William_Shakespeare'), (649, 'SHUITEN', 'François', '', 1956, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Schuiten'), (650, 'SIEGEL', 'David', '', 0, 0, 'M', 'N', ''), (651, 'SILEM', '', '', 0, 0, 'M', 'N', ''), (652, 'SIMPSON', 'Alan', '', 0, 0, 'M', 'N', ''), (653, 'SKAR', 'David', '', 0, 0, 'M', 'N', ''), (654, 'SMITH', 'Robert', '', 0, 0, 'M', 'N', ''), (655, 'SOMVILLE', 'Pierre', '', 0, 0, 'M', 'N', ''), (656, 'SOPHOCLE', '', '', -495, -406, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sophocle'), (657, 'SORAL', 'Alain', '', 1958, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Soral'), (658, 'SOUTOU', 'Christian', '', 0, 0, 'M', 'N', ''), (659, 'SPINOZA', 'Baruch', '', 1632, 1677, 'M', 'N', 'https://fr.wikipedia.org/wiki/Baruch_Spinoza'), (660, 'STEINMETZ', 'Rusy', '', 0, 0, 'M', 'N', ''), (661, 'STENGERS', 'Isabelle', '', 1946, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Isabelle_Stengers'), (662, 'STEPHENS', 'Ryan K.', '', 0, 0, 'M', 'N', ''), (663, 'STERLING', 'David', '', 0, 0, 'M', 'N', ''), (664, 'STOCKTON', 'James', '', 0, 0, 'M', 'N', ''), (665, 'STOETZEL', 'Jean', '', 1910, 1987, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Stoetzel'), (666, 'Collectif', '', '', 0, 0, 'M', 'N', ''), (667, 'STOLL', 'R.', '', 0, 0, 'M', 'N', ''), (668, 'SU', '', '', 0, 0, 'M', 'N', ''), (669, 'SUPERVIELLE', 'Jules', '', 1884, 1960, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jules_Supervielle'), (670, 'SURIANU', 'Horia', '', 0, 0, 'M', 'N', ''), (671, 'SUSSEL', '', '', 0, 0, 'M', 'N', ''), (672, 'SUSSMAN', 'David', '', 0, 0, 'M', 'N', ''), (673, 'TACITE', '', '', 58, 120, 'M', 'N', 'https://fr.wikipedia.org/wiki/Tacite'), (674, 'TAILLANDIER', 'Yvon', '', 1926, 2018, 'M', 'N', 'https://fr.wikipedia.org/wiki/Yvon_Taillandier'), (675, 'TAPIE', 'Victor-Lucien', '', 1900, 1974, 'M', 'N', 'https://fr.wikipedia.org/wiki/Victor-Lucien_Tapi%C3%A9'); INSERT INTO `bib_auteur` (`idauteur`, `nom_auteur`, `prenom_auteur`, `pseudo`, `birth`, `death`, `genre`, `traducteur`, `wikipedia`) VALUES (676, 'TARDIVEAU', 'David', '', 0, 0, 'M', 'N', ''), (677, 'TEMPESTINI', 'Anchise', '', 0, 0, 'M', 'N', ''), (678, 'TERRERAN', '', '', 0, 0, 'M', 'N', ''), (679, 'TERRIER', 'C.', '', 0, 0, 'M', 'N', ''), (680, 'THATCHER', 'Margaret', '', 1925, 2013, 'F', 'N', 'https://fr.wikipedia.org/wiki/Margaret_Thatcher'), (681, 'THERON', 'Michel', '', 1945, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Th%C3%A9ron'), (682, 'THEVOZ', 'Michel', '', 1936, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Th%C3%A9voz'), (683, 'TISSERON', 'Serge', '', 1948, 2015, 'M', 'N', 'https://fr.wikipedia.org/wiki/Serge_Tisseron'), (684, 'TOMASO', '', '', 0, 0, 'M', 'N', ''), (685, 'TOURNIER', 'Michel', '', 1924, 2016, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Tournier'), (686, 'TRACHTENBERG', 'Adam', '', 0, 0, 'M', 'N', ''), (687, 'TRANOY', '', '', 0, 0, 'M', 'N', ''), (688, 'TRIKI', 'Rachida', '', 1949, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Rachida_Triki'), (689, 'TULARD', 'Jean', '', 1933, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Tulard'), (690, 'ULYSSE', 'Georges', '', 0, 0, 'M', 'N', ''), (691, 'ULYSSE', 'Odette', '', 0, 0, 'F', 'N', ''), (692, 'VALERY', 'Paul', '', 1871, 1945, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Val%C3%A9ry'), (693, 'VALLIER', 'Dora', '', 1921, 1997, 'F', 'N', 'https://fr.wikipedia.org/wiki/Dora_Vallier'), (694, 'VARENNE', '', '', 0, 0, 'M', 'N', ''), (695, 'VATSYANA', '', '', 0, 0, 'M', 'N', ''), (696, 'VENET', 'Bernar', '', 1941, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bernar_Venet'), (697, 'VENTO', '', '', 0, 0, 'M', 'N', ''), (698, 'VERGELY', 'Bertrand', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bertrand_Vergely'), (699, 'VERGEZ', '', '', 0, 0, 'M', 'N', ''), (700, 'VERLAINE', 'Paul', '', 1844, 1896, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Verlaine'), (701, 'VERNANT', 'Jean-Pierre', '', 1914, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Vernant'), (702, 'VERSTRATEN', 'Pierre', '', 0, 0, 'M', 'N', ''), (703, 'VEYSSET-PUIJALON', '', '', 0, 0, 'M', 'N', ''), (704, 'VIARD', 'Henri', '', 1921, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Viard'), (705, 'VILLEMINOT', 'Vincent', '', 1972, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Vincent_Villeminot'), (706, 'VITALI', '', '', 0, 0, 'M', 'N', ''), (707, 'VOILQUIN', 'Jean', '', 0, 0, 'M', 'Y', 'https://fr.wikipedia.org/wiki/Jean_Voilquin'), (708, 'VOISIN', '', '', 0, 0, 'M', 'N', ''), (709, 'VOLTAIRE', '', '', 1694, 1778, 'M', 'N', 'https://fr.wikipedia.org/wiki/Voltaire'), (710, 'VOS de', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (711, 'VOS de', 'Ma', '', 0, 0, 'M', 'N', ''), (712, 'WARNCKE', 'Carsten-Peter', '', 0, 0, 'M', 'N', ''), (713, 'WATTERSON', 'Bill', '', 1958, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bill_Watterson'), (714, 'WEBER', 'Max', '', 1864, 1920, 'M', 'N', 'https://fr.wikipedia.org/wiki/Max_Weber'), (715, 'WEBSTER', 'Steve', '', 1960, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Steve_Webster'), (716, 'WEILL', 'Alain', '', 1961, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Weill'), (717, 'WESTHEIMER', 'Ruth', '', 0, 0, 'F', 'N', ''), (718, 'WHITE', 'Kenneth', '', 1936, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kenneth_White'), (719, 'WIEDEMANN', 'Julius', '', 0, 0, 'M', 'N', ''), (720, 'WIEDMANN', 'Franz', '', 0, 0, 'M', 'N', ''), (721, 'WILDE', 'Johannes', '', 1891, 1970, 'M', 'N', 'https://en.wikipedia.org/wiki/Johannes_Wilde'), (722, 'WILDE', 'Oscar', '', 1854, 1900, 'M', 'N', 'https://en.wikipedia.org/wiki/Oscar_Wilde'), (723, 'WILTON', 'Paul', '', 0, 0, 'M', 'N', ''), (724, 'WINCKELMANN', 'Johann Joachim', '', 1717, 1768, 'M', 'N', 'https://fr.wikipedia.org/wiki/Johann_Joachim_Winckelmann'), (725, 'WITTKOWER', 'Rudolf', '', 1901, 1971, 'M', 'N', 'https://en.wikipedia.org/wiki/Rudolf_Wittkower'), (726, 'WITTKOWER', 'Margot', '', 0, 0, 'F', 'N', ''), (727, 'WÖLFFLIN', 'Heinrich', '', 1864, 1945, 'M', 'N', 'https://fr.wikipedia.org/wiki/Heinrich_W%C3%B6lfflin'), (728, 'WOLLHEIM', 'Richard', '', 1923, 2003, 'M', 'N', 'https://fr.wikipedia.org/wiki/Richard_Wollheim'), (729, 'WRIGHT', 'Peter', '', 0, 0, 'M', 'N', ''), (730, 'WUNENBURGER', 'Jean-Jacques', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Jacques_Wunenburger'), (731, 'YAMADA', 'Eimi', '', 1959, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Eimi_Yamada'), (732, 'YAMAMOTA', 'Jocho', '', 0, 0, 'M', 'N', ''), (733, 'YOUNG', 'J. Michael', '', 0, 0, 'M', 'N', ''), (734, 'YOURCENAR', 'Marguerite', '', 1903, 1987, 'F', 'N', 'https://fr.wikipedia.org/wiki/Marguerite_Yourcenar'), (735, 'YVINEC', 'Henry', '', 0, 0, 'M', 'N', ''), (736, 'ZERBST', 'Rainer', '', 0, 0, 'M', 'N', ''), (737, 'ZOLA', 'Emile', '', 1840, 1902, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89mile_Zola'), (738, 'ZYLBERSTEIN', 'Jean-Claude', '', 1938, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Claude_Zylberstein'), (740, 'MAEDA', 'John', '', 1966, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/John_Maeda'), (741, 'FOURMENTRAUX', 'Jean-Paul', '', 0, 0, 'M', 'N', ''), (742, 'SERRATS', 'Marta', '', 0, 0, 'F', 'N', ''), (743, 'KOZAK', 'Gisela', '', 0, 0, 'F', 'N', ''), (744, 'STALLABRASS', 'Julian', '', 0, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Julian_Stallabrass'), (745, 'WORMS', 'Anne-C', '', 0, 0, 'F', 'N', ''), (746, 'URVOY', 'Jean-Jacques', '', 0, 0, 'M', 'N', ''), (747, 'SANCHEZ', 'Sophie', '', 0, 0, 'F', 'N', ''), (748, 'EDWARDS', 'Betty', '', 1926, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Betty_Edwards'), (749, 'REMECHIDO', 'C', '', 0, 0, 'M', 'N', ''), (750, 'ROXIN', 'Ioan', '', 0, 0, 'M', 'N', ''), (751, 'MERCIER', 'Daniel', '', 0, 0, 'M', 'N', ''), (752, 'BLISTENE', 'Bernard', '', 1955, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bernard_Blist%C3%A8ne'), (753, 'STEYERT', 'André', '', 1830, 1904, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Steyert'), (754, 'SPIKE', 'John', '', 1951, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/John_Spike'), (755, 'SMEYERS', 'Maurits', '', 1937, 1999, 'M', 'N', 'https://nl.wikipedia.org/wiki/Maurits_Smeyers'), (756, 'CHARBONNEAUX', 'Anne-Marie', '', 0, 0, 'F', 'N', ''), (757, 'KALLIR', 'Jane', '', 1954, 0, 'F', 'N', 'https://en.wikipedia.org/wiki/Jane_Kallir'), (758, 'SCHMID', 'Holder', '', 0, 0, 'M', 'N', ''), (759, 'STOICHITA', 'Victor', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Victor_Stoichita'), (760, 'BACHELOT', 'Luc', '', 0, 0, 'M', 'N', ''), (761, 'KAKU', 'Michio', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michio_Kaku'), (762, 'HERRINGTON', 'Jack D.', '', 0, 0, 'M', 'N', ''), (763, 'WORSLEY', 'John', '', 0, 0, 'M', 'N', ''), (764, 'DRAKE', 'Joshua', '', 0, 0, 'M', 'N', ''), (765, 'DIENG', 'Rose', '', 0, 0, 'F', 'N', ''), (766, 'CORBY', 'Olivier', '', 0, 0, 'M', 'N', ''), (767, 'GANDON', 'Fabien', '', 0, 0, 'M', 'N', ''), (768, 'GIBOIN', 'Alain', '', 0, 0, 'M', 'N', ''), (769, 'PRAX', 'Jean-Yves', '', 0, 0, 'M', 'N', ''), (770, 'LARCHER', 'Simon', '', 0, 0, 'M', 'N', ''), (771, 'NIEMEYER', 'Patrick', '', 0, 0, 'M', 'N', ''), (772, 'KNUDSEN', 'Jonathan', '', 0, 0, 'M', 'N', ''), (773, 'PERRY', 'Bruce W.', '', 0, 0, 'M', 'N', ''), (774, 'AMANN', 'Bernd', '', 0, 0, 'M', 'N', ''), (775, 'HOLDENER', 'Anthony T.', '', 0, 0, 'M', 'N', ''), (776, 'SARRION', 'Eric', '', 0, 0, 'M', 'N', ''), (777, 'MOLINARO', 'Anthony', '', 0, 0, 'M', 'N', ''), (778, 'JACOBONI', 'Eric', '', 0, 0, 'M', 'N', ''), (779, 'MORVILLE', 'Peter', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Peter_Morville'), (780, 'ROSENFELD', 'Louis', '', 0, 0, 'M', 'N', ''), (781, 'SI ALIHIR', 'Sinan', '', 0, 0, 'M', 'N', ''), (782, 'GACHET', 'Alexandre', '', 0, 0, 'M', 'N', ''), (783, 'WALSH', 'Norman', '', 0, 0, 'M', 'N', ''), (784, 'MUELLNER', 'L', '', 0, 0, 'M', 'N', ''), (785, 'BARRER', 'Patrick', '', 0, 0, 'M', 'N', ''), (786, 'FUCHS', 'Philippe', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Fuchs'), (787, 'REIX', 'Robert', '', 0, 0, 'M', 'N', ''), (788, 'ALEXANDRE', 'J', '', 0, 0, 'M', 'N', ''), (789, 'BUCI-GLUCKSMANN', 'Christine', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Christine_Buci-Glucksmann'), (790, 'COHEN', 'François', '', 0, 0, 'M', 'N', ''), (791, 'GRENIER', 'Catherine', '', 1950, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Catherine_Grenier'), (792, 'CASTANEDA', 'Carlos', '', 1925, 1998, 'M', 'N', 'https://fr.wikipedia.org/wiki/Carlos_Castaneda'), (793, 'BACCINO', 'Thierry', '', 0, 0, 'M', 'N', ''), (794, 'BELLINO', 'Catherine', '', 0, 0, 'F', 'N', ''), (795, 'COLOMBANI', 'Teresa', '', 0, 0, 'F', 'N', ''), (796, 'BALPE', 'Jean-Pierre', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Balpe'), (797, 'NATKIN', 'St', '', 0, 0, 'M', 'N', ''), (798, 'LELU', 'Alain', '', 0, 0, 'M', 'N', ''), (799, 'SALEH', 'Imad', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Imad_Saleh'), (800, 'STOCKINGER', 'Peter', '', 1956, 0, 'M', 'N', ''), (801, 'ELISSEEFF', 'Danielle', '', 1938, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Danielle_Elisseeff'), (802, 'ZIEGLER', 'Christiane', '', 1942, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Christiane_Ziegler'), (803, 'BOVOT', 'Jean-Luc', '', 0, 0, 'M', 'N', ''), (804, 'BENOIT', 'Agn', '', 0, 0, 'M', 'N', ''), (805, 'TALADOIRE', 'Eric', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89ric_Taladoire'), (806, 'FAUGERE-KALFON', 'Brigitte', '', 0, 0, 'F', 'N', ''), (807, 'HOTZMANN', 'Bernard', '', 0, 0, 'M', 'N', ''), (808, 'PASQUIER', 'Alain', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Pasquier'), (809, 'BRUNON', 'Hervé', '', 0, 0, 'M', 'N', ''), (810, 'MOSSER', 'Monique', '', 1947, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Monique_Mosser'), (811, 'RABREAU', 'Daniel', '', 1945, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Daniel_Rabreau'), (812, 'BAXANDALL', 'Michael', '', 1933, 2008, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michael_Baxandall'), (813, 'de FRANCE', 'Claudine', '', 0, 0, 'F', 'N', ''), (814, 'MICHAUD', 'Philippe-Alain', '', 0, 0, 'M', 'N', ''), (815, 'DETIENNE', 'Marcel', '', 1935, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Detienne'), (816, 'SAEMMER', 'Alexandra', '', 0, 0, 'F', 'N', ''), (817, 'SIMONDON', 'Gilbert', '', 1924, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilbert_Simondon'), (818, 'CHARLET', 'Jean', '', 0, 0, 'M', 'N', ''), (819, 'LAUBLET', 'Philippe', '', 0, 0, 'M', 'N', ''), (820, 'REYNAUD', 'Chantal', '', 0, 0, 'F', 'N', ''), (821, 'BAILLY', 'Jean-Christophe', '', 0, 0, 'M', 'N', ''), (822, 'DOMECQ', 'Jean-Philippe', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Philippe_Domecq'), (823, 'SOBIESZCZANSKI', 'Marcin', '', 0, 0, 'M', 'N', ''), (824, 'LACROIX', 'C', '', 0, 0, 'M', 'N', ''), (825, 'ANIORTE', 'Philippe', '', 0, 0, 'M', 'N', ''), (826, 'GOUARDERES', 'Sophie', '', 0, 0, 'F', 'N', ''), (827, 'HOUDE', 'Olivier', '', 1963, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Olivier_Houd%C3%A9'), (828, 'DUGUET', 'Anne-Marie', '', 1947, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Anne-Marie_Duguet'), (829, 'LOUIS XIV', '', '', 1938, 1715, 'M', 'N', 'https://fr.wikipedia.org/wiki/Louis_XIV'), (830, 'PAOLUCCI', 'Antonio', '', 0, 0, 'M', 'N', ''), (831, 'PARK', 'Chong soo', '', 0, 0, 'M', 'N', ''), (832, 'STIEGLER', 'Bernard', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bernard_Stiegler'), (833, 'LARRIEU', 'Jacques', '', 0, 0, 'M', 'N', ''), (834, 'PIOTROWSKI', 'David', '', 0, 0, 'M', 'N', ''), (835, 'POGGESI', 'Marta', '', 0, 0, 'F', 'N', ''), (836, 'Von DURING', 'Monika', '', 0, 0, 'F', 'N', ''), (837, 'JANKOWSKI', 'Christian', '', 0, 0, 'M', 'N', ''), (838, 'LELOUP', 'Jean-Yves', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Yves_Leloup'), (839, 'LACARRIERE', 'Jacques', '', 1925, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Lacarri%C3%A8re_(%C3%A9crivain)'), (840, 'DORESSE', 'Jean', '', 0, 0, 'M', 'N', ''), (841, 'SUN TZU', '', '', -544, -496, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sun_Tzu'), (842, 'EDOGAWA', 'Ranpo', '', 1894, 1965, 'M', 'N', 'https://fr.wikipedia.org/wiki/Edogawa_Ranpo'), (843, 'DESHIMARU', 'Taisen', '', 1914, 1982, 'M', 'N', 'https://fr.wikipedia.org/wiki/Taisen_Deshimaru'), (844, 'RINPOCHE', 'Sogyal', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sogyal_Rinpoch%C3%A9'), (845, 'CYRULNIK', 'Boris', '', 1937, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Boris_Cyrulnik'), (846, 'JAQ', 'Christian', '', 0, 0, 'M', 'N', ''), (847, 'PASTOUREAU', 'Michel', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Pastoureau'), (848, 'ASIMOV', 'Isaac', '', 1920, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/Isaac_Asimov'), (849, 'EDELMAN', 'Gerald Maurice', '', 1929, 2014, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gerald_Edelman'), (850, 'MORIN', 'Edgar', '', 1921, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Edgar_Morin'), (851, 'ZERI', 'Federico', '', 1921, 1998, 'M', 'N', 'https://fr.wikipedia.org/wiki/Federico_Zeri'), (852, 'VARELA', 'Francisco Javier', '', 1946, 2001, 'M', 'N', 'https://fr.wikipedia.org/wiki/Francisco_Varela'), (853, 'POTOCKI', 'Jean', '', 1761, 1815, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jan_Potocki'), (854, 'AGAMBEN', 'Giorgio', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Giorgio_Agamben'), (855, 'THOM', 'René', '', 1923, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Thom'), (856, 'BOUGNOUX', 'Daniel', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Daniel_Bougnoux'), (857, 'AUTHIER', 'Michel', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Authier'), (858, 'BEAU', 'Dominique', '', 0, 0, 'M', 'N', ''), (859, 'COURAU', 'Sophie', '', 0, 0, 'F', 'N', 'http://sophiecourau.com/'), (860, 'PRINCE', 'Violaine', '', 1958, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Violaine_Prince'), (861, 'NITOBE', 'Inazo', '', 1862, 1933, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nitobe_Inaz%C5%8D'), (862, 'MATOSSIAN', 'Chaké', '', 0, 0, 'M', 'N', ''), (863, 'HOPKINS', 'David', '', 0, 0, 'M', 'N', ''), (864, 'BRUNEL', 'Henri', '', 0, 0, 'M', 'N', ''), (865, 'GOARNISSON', 'Lena', '', 0, 0, 'F', 'N', ''), (866, 'QUILLOT', 'Roland', '', 0, 0, 'M', 'N', ''), (867, 'HOTTOIS', 'Gilbert', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilbert_Hottois'), (868, 'SOULAGES', 'François', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Soulages'), (869, 'HULOT', 'Nicolas', '', 1955, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Hulot'), (870, 'FAYOLLE', 'Claire', '', 0, 0, 'F', 'N', ''), (871, 'GIBSON', 'William', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/William_Gibson'), (872, 'CLARKE', 'Arthur Charles', '', 1917, 2008, 'M', 'N', 'https://fr.wikipedia.org/wiki/Arthur_C._Clarke'), (873, 'BRADBURY', 'Ray', '', 1920, 2012, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ray_Bradbury'), (874, 'CARROUGES', 'Michel', '', 1910, 1988, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Carrouges'), (875, 'BATET', 'Francisco', '', 0, 0, 'M', 'N', ''), (876, 'BEAUDRAN', 'Philippe', '', 0, 0, 'M', 'N', ''), (877, 'BRADFIELD', 'Nancy', '', 0, 0, 'F', 'N', ''), (878, 'D\'AQUIN', 'Thomas', '', 1224, 1274, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thomas_d%27Aquin'), (879, 'WITTGENSTEIN', 'Ludwig', '', 1889, 1951, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ludwig_Wittgenstein'), (880, 'CHAUVIRE', 'Christiane', '', 1945, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Christiane_Chauvir%C3%A9'), (881, 'SACKUR', 'J', '', 0, 0, 'M', 'N', ''), (882, 'MEHL', 'Edouard', '', 0, 0, 'M', 'N', ''), (883, 'GENS', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (1013, 'PAGES', 'Alain', '', 0, 0, 'M', 'N', ''), (885, 'CLEMENT', 'Elysabeth', '', 0, 0, 'F', 'N', ''), (886, 'DEMONQUE', 'Chantal', '', 0, 0, 'F', 'N', ''), (887, 'HANSEN-LOVE', 'Laurence', '', 1948, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Laurence_Hansen-L%C3%B8ve'), (888, 'KAHN', 'Pierre', '', 1939, 2006, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Kahn'), (889, 'RAFFIN', 'Françoise', '', 0, 0, 'F', 'N', ''), (890, 'PERRIN', 'André', '', 1903, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Perrin_(%C3%A9crivain)'), (891, 'FARAGO', 'France', '', 0, 0, 'M', 'N', ''), (892, 'GODIN', 'Christian', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Christian_Godin'), (893, 'TINLAND', 'Olivier', '', 0, 0, 'M', 'N', ''), (894, 'TALBOT', 'Michael', '', 1953, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michael_Talbot'), (895, 'KAMBOUCHNER', 'Denis', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Denis_Kambouchner'), (896, 'GREENE', 'Rachel', '', 0, 0, 'M', 'N', ''), (897, 'HIRST', 'Damien', '', 1965, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Damien_Hirst'), (898, 'RAJNEESH', 'Bagwan Shree', '', 0, 0, 'M', 'N', ''), (899, 'FANTE', 'John', '', 1909, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/John_Fante'), (900, 'EASTON ELLIS', 'Bret', '', 1964, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bret_Easton_Ellis'), (901, 'LEMOINE', 'Serge', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Serge_Lemoine'), (902, 'BEDARD', 'Catherine', '', 0, 0, 'F', 'N', ''), (903, 'SCHAUER', 'Thomas', '', 0, 0, 'M', 'N', ''), (904, 'CASPARI', 'Claus', '', 0, 0, 'M', 'N', ''), (905, 'ATKINS', 'Beryl T.', '', 0, 0, 'M', 'N', ''), (906, 'DUVAL', 'Alain', '', 0, 0, 'M', 'N', ''), (907, 'LEWIS', 'H', '', 0, 0, 'M', 'N', ''), (908, 'MILNE', 'Rosemary C.', '', 0, 0, 'F', 'N', ''), (909, 'VAN EERSEL', 'Patrice', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Patrice_Van_Eersel'), (910, 'GROF', 'Stanislav', '', 1931, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Stanislav_Grof'), (911, 'KARDEC', 'Allan', '', 1804, 1869, 'M', 'N', 'https://fr.wikipedia.org/wiki/Allan_Kardec'), (912, 'AMBELAIN', 'R.', '', 0, 0, 'M', 'N', ''), (913, 'MANASSE', 'Benjamin', '', 0, 0, 'M', 'N', ''), (914, 'ELPHICK', 'Jonathan', '', 0, 0, 'M', 'N', ''), (915, 'MEYER', 'Eric-A', '', 0, 0, 'M', 'N', ''), (916, 'REESE', 'George', '', 0, 0, 'M', 'N', ''), (917, 'LOMAX', 'Peter', '', 0, 0, 'M', 'N', ''), (918, 'PETRUSHA', 'Ron', '', 0, 0, 'M', 'N', ''), (920, 'BRISSAUD', 'St', '', 0, 0, 'M', 'N', ''), (921, 'HERELLIER', 'Jean-Marc', '', 0, 0, 'M', 'N', ''), (922, 'BIGAND', 'Michel', '', 0, 0, 'M', 'N', ''), (923, 'BOUREY', 'Jean-Pierre', '', 0, 0, 'M', 'N', ''), (924, 'CAMUS', 'Hervé', '', 0, 0, 'M', 'N', ''), (925, 'CORBEEL', 'Didier', '', 0, 0, 'M', 'N', ''), (926, 'SCHWENDIMAN', 'Blake', '', 0, 0, 'M', 'N', ''), (927, 'AFCHAIN', 'Alexandre', '', 0, 0, 'M', 'N', ''), (928, 'LANCERAUX', 'Julien', '', 0, 0, 'M', 'N', ''), (929, 'DELCLOS', 'Marie', '', 0, 0, 'F', 'N', ''), (930, 'CARADEAU', 'Jean-Luc', '', 0, 0, 'M', 'N', ''), (931, 'LECOINTRE', 'Guillaume', '', 1964, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Guillaume_Lecointre'), (932, 'Le GUYADER', 'Hervé', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Herv%C3%A9_Le_Guyader'), (933, 'VISSET', 'Dominique', '', 0, 0, 'M', 'N', ''), (934, 'BUZAN', 'Barry', '', 1946, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Barry_Buzan'), (935, 'GOOD', 'Nathan A.', '', 0, 0, 'M', 'N', ''), (936, 'KENT', 'Allan', '', 0, 0, 'M', 'N', ''), (937, 'HADOT', 'Pierre', '', 1922, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Hadot'), (938, 'RUSSEL', 'Stuart', '', 1962, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Stuart_Russell'), (939, 'NORVIG', 'Peter', '', 1956, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Peter_Norvig'), (940, 'MICLET', 'Laurent', '', 0, 0, 'M', 'N', ''), (941, 'POPINEAU', 'Fabrice', '', 0, 0, 'M', 'N', ''), (942, 'BALAND', 'Marie-C', '', 0, 0, 'F', 'N', ''), (943, 'GOTO', 'Kelly', '', 0, 0, 'M', 'N', ''), (944, 'COTLER', 'Emily', '', 0, 0, 'M', 'N', ''), (945, 'ZELDMAN', 'Jeffrey', '', 1955, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jeffrey_Zeldman'), (946, 'BOUCHER', 'Amélie', '', 0, 0, 'F', 'N', ''), (947, 'BEER', 'Gunter', '', 0, 0, 'M', 'N', ''), (948, 'RENNARD', 'Jean-Philippe', '', 0, 0, 'M', 'N', ''), (949, 'WILDBUR', 'Peter', '', 0, 0, 'M', 'N', ''), (950, 'BURKE', 'Michael', '', 0, 0, 'M', 'N', ''), (951, 'ATZERI', 'Laurent', '', 0, 0, 'M', 'N', ''), (952, 'VILLERMANT', 'Claire', '', 0, 0, 'F', 'N', ''), (953, 'BLACHOT', 'Philippe', '', 0, 0, 'M', 'N', ''), (954, 'MOREAUX', 'Arnould', '', 0, 0, 'M', 'N', ''), (955, 'BORDAGE', 'St', '', 0, 0, 'M', 'N', ''), (956, 'WALL', 'David', '', 0, 0, 'M', 'N', ''), (957, 'KEITH', 'Jeremy', '', 0, 0, 'M', 'N', ''), (958, 'CONTENSIN', 'Magalie', '', 0, 0, 'F', 'N', ''), (959, 'HAINAUT', 'Jean-Luc', '', 0, 0, 'M', 'N', ''), (960, 'PORTENEUVE', 'Christophe', '', 0, 0, 'M', 'N', ''), (961, 'NITOT', 'Tristan', '', 1966, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Tristan_Nitot'), (962, 'DASPET', 'Eric', '', 0, 0, 'M', 'N', ''), (963, 'PIERRE de GEYER', 'Cyril', '', 0, 0, 'M', 'N', ''), (964, 'PONCON', 'Guillaume', '', 0, 0, 'M', 'N', ''), (965, 'MAESANO', 'Libero', '', 0, 0, 'M', 'N', ''), (966, 'DRIX', 'Philippe', '', 0, 0, 'M', 'N', ''), (967, 'SINGODIWIRJO', 'Hermantino', '', 0, 0, 'M', 'N', ''), (968, 'BOUISSOU', 'Michel', '', 0, 0, 'M', 'N', ''), (969, 'THOMAS', 'Jean-Marie', '', 0, 0, 'M', 'N', ''), (970, 'JEANMOUGIN', 'François', '', 0, 0, 'M', 'N', ''), (971, 'GUENEAU', 'Gregory', '', 0, 0, 'M', 'N', ''), (972, 'SALVATORI', 'Olivier', '', 0, 0, 'M', 'N', ''), (973, 'CARON', 'Vincent', '', 0, 0, 'M', 'N', ''), (974, 'FORGERIT', 'Tann', '', 0, 0, 'M', 'N', ''), (975, 'ROQUES', 'Pascal', '', 0, 0, 'M', 'N', ''), (976, 'GIL', 'Thomas', '', 0, 0, 'M', 'N', ''), (977, 'PROTZENKO', 'Jonathan', '', 0, 0, 'M', 'N', ''), (978, 'PICAUD', 'Beno', '', 0, 0, 'M', 'N', ''), (979, 'STIERLIN', 'Henri', '', 1928, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Stierlin'), (980, 'GOETTER', 'Raphaël', '', 0, 0, 'M', 'N', ''), (981, 'LINDSAY', 'Jeff', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jeff_Lindsay'), (982, 'POURRIOL', 'Olivier', '', 1971, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ollivier_Pourriol'), (983, 'SERCEAU', 'Daniel', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Daniel_Serceau'), (984, 'BRET', 'Jean-Noël', '', 0, 0, 'M', 'N', ''), (985, 'JIMENEZ', 'Marc', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Jimenez'), (986, 'COLLET', 'François', '', 0, 0, 'M', 'N', ''), (987, 'TSE BARTHOLOMEW', 'Terese', '', 0, 0, 'F', 'N', ''), (988, 'JOHNSTON', 'Joan', '', 0, 0, 'F', 'N', ''), (989, 'BERLANDINI-KELLER', 'Jocelyne', '', 0, 0, 'M', 'N', ''), (990, 'GASSE', 'Annie', '', 0, 0, 'F', 'N', ''), (991, 'GABOLDE', 'Luc', '', 1957, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Luc_Gabolde'), (992, 'BAUD', 'Michel', '', 1963, 2012, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Baud'), (993, 'ETIENNE', 'Marc', '', 1971, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_%C3%89tienne'), (994, 'ZIVIE-COCHE', 'Christiane', '', 0, 0, 'F', 'N', ''), (995, 'RAVIER', 'Pierre', '', 0, 0, 'M', 'N', ''), (996, 'REUTHER', 'Werner', '', 0, 0, 'M', 'N', ''), (997, 'NADEAU', 'Laurence', '', 0, 0, 'F', 'N', ''), (998, 'CALVEZ', 'Jean-Paul', '', 0, 0, 'M', 'N', ''), (999, 'BALLADUR', 'Edouard', '', 1929, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89douard_Balladur'), (1000, 'LEOTARD', 'François', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_L%C3%A9otard'), (1001, 'DE SMEDT', 'Marc', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_de_Smedt'), (1002, 'ORAISON', 'Marc', '', 1914, 1979, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Oraison'), (1003, 'BAUDIFFIER', 'Serge', '', 0, 0, 'M', 'N', ''), (1004, 'DEBENEDETTI', 'Jean-Marc', '', 0, 0, 'M', 'N', ''), (1005, 'BRUSILOVSKY', 'Peter', '', 0, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Peter_Brusilovsky'), (1006, 'POPPER', 'Karl', '', 1902, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Karl_Popper'), (1007, 'PECK', 'Newton', '', 0, 0, 'M', 'N', ''), (1008, 'LA BRUYERE', 'Jean de', '', 1645, 1696, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_de_La_Bruy%C3%A8re'), (1009, 'HAINE', 'Paul', '', 0, 0, 'M', 'N', ''), (1010, 'HOVE', 'Sue', '', 0, 0, 'F', 'N', ''), (1011, 'CROOKS', 'Robert', '', 0, 0, 'M', 'N', ''), (1012, 'KELLETT', 'Jay', '', 0, 0, 'M', 'N', ''), (1014, 'DOURNON', '', '', 0, 0, 'M', 'N', ''), (1015, 'DUTOURD', 'Jean', '', 1920, 2011, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Dutourd'), (1016, 'LACOSTE', 'Jean', '', 0, 0, 'M', 'N', ''), (1017, 'HORACE', '', '', -65, -27, 'M', 'N', 'https://fr.wikipedia.org/wiki/Horace'), (1018, 'GAUCHON', 'Pascal', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pascal_Gauchon'), (1019, 'BURON', 'Thierry', '', 0, 0, 'M', 'N', ''), (1020, 'ROGER', 'Anne', '', 0, 0, 'F', 'N', ''), (1021, 'TOUCHARD', 'Patrice', '', 0, 0, 'M', 'N', ''), (1022, 'BONNET', 'Marguerite', '', 0, 0, 'F', 'N', ''), (1023, 'HULAK', 'Fabienne', '', 0, 0, 'F', 'N', ''), (1024, 'MAILLARD', 'Catherine', '', 0, 0, 'F', 'N', ''), (1025, 'PAYEN DE LA GARANDERIE', 'Antoine', '', 1920, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Antoine_de_La_Garanderie'), (1026, 'LECLECQ', 'Bruno', '', 0, 0, 'M', 'N', ''), (1027, 'BENMAKHLOUF', 'Ali', '', 1959, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ali_Benmakhlouf'), (1028, 'COULOUBARITSIS', 'Lambros', '', 1941, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lambros_Couloubaritsis'), (1029, 'RESTLOF', '', '', 0, 0, 'M', 'N', ''), (1030, 'HANCKE', 'Johan Christian', '', 0, 0, 'M', 'N', ''), (1031, 'SHARPE', 'Pamela', '', 0, 0, 'F', 'N', ''), (1032, 'TITONEL-ASPERI', '', '', 0, 0, 'M', 'N', ''), (1033, 'DESNOS', 'Pierre', '', 0, 0, 'M', 'N', ''), (1034, 'COMBES', 'Claude', '', 1935, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Claude_Combes'), (1035, 'SIMENON', 'Georges', '', 1903, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Simenon'), (1036, 'BEGNIS', 'Camille', '', 0, 0, 'F', 'N', ''), (1037, 'REVARDEAUX', 'François', '', 0, 0, 'M', 'N', ''), (1038, 'PARAIRE', 'Micha', '', 0, 0, 'M', 'N', ''), (1039, 'TERRERAN', '', '', 0, 0, 'M', 'N', ''), (1040, 'PIERRE', 'José', '', 1927, 1999, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jos%C3%A9_Pierre'), (1041, 'IMMLER', 'Christian', '', 0, 0, 'M', 'N', ''), (1042, 'BAYER', 'Martin', '', 0, 0, 'M', 'N', ''), (1043, 'PHILIBERT', 'Guy', '', 0, 0, 'M', 'N', ''), (1044, 'MARQUAND', 'Ed', '', 0, 0, 'M', 'N', ''), (1045, 'BOUVERESSE', 'Jacques', '', 1940, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Bouveresse'), (1046, 'DICK', 'Philip Kindred', '', 1928, 1982, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philip_K._Dick'), (1047, 'MARTIN', 'Michel', '', 0, 0, 'M', 'N', ''), (1048, 'SCHMITT', 'Christopher', '', 0, 0, 'M', 'N', ''), (1049, 'HARRISSON', 'Martin', '', 1935, 1992, 'M', 'N', 'https://fr.wikipedia.org/wiki/Martin_Harrison'), (1050, 'SEGARAN', 'Toby', '', 0, 0, 'M', 'N', ''), (1051, 'MORLEY', 'Chantal', '', 0, 0, 'F', 'N', ''), (1052, 'RICHARDSON', 'Leonard', '', 0, 0, 'M', 'N', ''), (1053, 'RUBY', 'Sam', '', 0, 0, 'M', 'N', ''), (1054, 'DESESQUELLES', 'Anne-Claire', '', 0, 0, 'F', 'N', ''), (1055, 'DUCAT', 'Philippe', '', 0, 0, 'M', 'N', ''), (1056, 'SERON', 'Denis', '', 0, 0, 'M', 'N', ''), (1057, 'DUPOND', 'Pascal', '', 0, 0, 'M', 'N', ''), (1058, 'COURNARIE', 'Laurent', '', 0, 0, 'M', 'N', ''), (1059, 'POUIVET', 'Roger', '', 1958, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roger_Pouivet'), (1060, 'MORIZOT', 'Jacques', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Morizot'), (1061, 'WILFERT', 'Jo', '', 0, 0, 'M', 'N', ''), (1062, 'BOUVERESSE', 'Renée', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9e_Bouveresse'), (1063, 'GUIBET LAFAYE', 'Caroline', '', 0, 0, 'F', 'N', ''), (1064, 'GENS', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (1065, 'LEVINAS', 'Emmanuel', '', 1906, 1995, 'M', 'N', 'https://fr.wikipedia.org/wiki/Emmanuel_Levinas'), (1066, 'Le DOEUFF', 'Michèle', '', 1948, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Mich%C3%A8le_Le_D%C5%93uff'), (1067, 'LEVY', 'Carlos', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Carlos_L%C3%A9vy'), (1068, 'BEAUNE', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (1069, 'GEORGES', 'Pascal', '', 0, 0, 'M', 'N', ''), (1070, 'ARENDT', 'Hannah', '', 1906, 1975, 'F', 'N', 'https://fr.wikipedia.org/wiki/Hannah_Arendt'), (1071, 'WEIL', '', '', 0, 0, 'M', 'N', ''), (1072, 'SERIS', 'Jean-Pierre', '', 1941, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_S%C3%A9ris'), (1073, 'GUELTON', 'Bernard', '', 0, 0, 'M', 'N', ''), (1074, 'BOURIAU', 'Christophe', '', 0, 0, 'M', 'N', ''), (1075, 'VAYSSE', 'Jean-Marie', '', 1950, 2011, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Marie_Vaysse'), (1076, 'CARR', 'Edward Hallet', '', 1892, 1982, 'M', 'N', 'https://fr.wikipedia.org/wiki/Edward_Hallett_Carr'), (1077, 'CICERON', '', '', -106, -43, 'M', 'N', 'https://fr.wikipedia.org/wiki/Cic%C3%A9ron'), (1078, 'MARTHA', 'Jules', '', 1853, 1932, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jules_Martha'), (1079, 'COMB', 'Robert', '', 0, 0, 'M', 'N', ''), (1080, 'FOHLEN', 'Georges', '', 0, 0, 'M', 'N', ''), (1081, 'HUMBERT', 'Jules', '', 0, 0, 'M', 'N', ''), (1082, 'ALQUIE', 'Ferdinand', '', 1906, 1985, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ferdinand_Alqui%C3%A9'), (1083, 'ARON', 'Raymond', '', 1905, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/Raymond_Aron'), (1084, 'BENZ', 'Ernst', '', 0, 0, 'M', 'N', ''), (1085, 'DOSSE', 'François', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Dosse'), (1086, 'DELACROIX', 'Christian', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Christian_Delacroix'), (1087, 'GARCIA', 'Patrick', '', 1958, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Patrick_Garcia'), (1088, 'FERRY', 'Luc', '', 1951, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Luc_Ferry'), (1089, 'FISCHBACH', 'Franck', '', 1967, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Franck_Fischbach'), (1090, 'GOURINAT', 'Jean-Baptiste', '', 1964, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Baptiste_Gourinat'), (1091, 'LACROIX', 'Jean', '', 1900, 1986, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Lacroix_(philosophe)'), (1092, 'LEBRUN', 'Gérard', '', 1930, 1999, 'M', 'N', 'https://fr.wikipedia.org/wiki/G%C3%A9rard_Lebrun'), (1093, 'LEQUAN', 'Mai', '', 0, 0, 'F', 'N', ''), (1094, 'MARROU', 'Henri-Ir', '', 0, 0, 'M', 'N', ''), (1095, 'PHILONENKO', 'Alexis', '', 1932, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alexis_Philonenko'), (1096, 'THOUARD', 'Denis', '', 0, 0, 'M', 'N', ''), (1097, 'YOVEL', 'Irmiyahu', '', 0, 0, 'M', 'N', ''), (1098, 'HORKHEIMER', 'Max', '', 1895, 1973, 'M', 'N', 'https://fr.wikipedia.org/wiki/Max_Horkheimer'), (1099, 'GUILLERMIT', 'Louis', '', 1919, 1982, 'M', 'N', 'https://fr.wikipedia.org/wiki/Louis_Guillermit'), (1100, 'MERLINI', 'Fabio', '', 0, 0, 'M', 'N', ''), (1101, 'BENOIST', 'Jocelyn', '', 1968, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Jocelyn_Benoist'), (1102, 'CHARTIER', 'Roger', '', 1945, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roger_Chartier'), (1103, 'CAPEILLERES', 'Fabien', '', 0, 0, 'M', 'N', ''), (1104, 'FURET', 'François', '', 1927, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Furet'), (1105, 'MEYER', 'Michel', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Meyer_(philosophe)'), (1106, 'EISLER', 'Rudolf', '', 1873, 1926, 'M', 'N', 'https://en.wikipedia.org/wiki/Rudolf_Eisler'), (1107, 'GAUCHET', 'Marcel', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Gauchet'), (1108, 'MESURE', 'Sylvie', '', 0, 0, 'F', 'N', ''), (1109, 'LÖWITH', 'Karl', '', 1897, 1973, 'M', 'N', 'https://fr.wikipedia.org/wiki/Karl_L%C3%B6with'), (1110, 'KOSELLECK', 'Reinhart', '', 1923, 2006, 'M', 'N', 'https://fr.wikipedia.org/wiki/Reinhart_Koselleck'), (1111, 'HARTOG', 'François', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Hartog'), (1112, 'MOS', 'St', '', 0, 0, 'M', 'N', ''), (1113, 'PIQUE', 'Nicolas', '', 1966, 0, 'M', 'N', ''), (1114, 'BINOCHE', 'Bertrand', '', 0, 0, 'M', 'N', ''), (1115, 'CASEVITZ', 'Michel', '', 1937, 0, 'M', 'N', ''), (1116, 'BAJAC', 'Quentin', '', 1965, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Quentin_Bajac'), (1117, 'SEFRIOUI', 'Anne', '', 0, 0, 'F', 'N', ''), (1118, 'JOVER', 'Manuel', '', 1960, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Manuel_Jover'), (1119, 'GEOFFROY-SCHNEITER', 'Bérénice', '', 0, 0, 'F', 'N', ''), (1120, 'SOURIAU', 'Anne', '', 1920, 2016, 'F', 'N', ''), (1121, 'SOURIAU', 'Etienne', '', 1892, 1979, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89tienne_Souriau'), (1122, 'AZIOSMANOFF', 'Florent', '', 0, 0, 'M', 'N', ''), (1123, 'GEISSELHART', 'Roland', '', 0, 0, 'M', 'N', ''), (1124, 'HOFMANN', 'Christiane', '', 0, 0, 'F', 'N', ''), (1125, 'NAVARRO', 'Pascal', '', 0, 0, 'M', 'N', ''), (1126, 'CHRETIEN', 'Jean-Louis', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Louis_Chr%C3%A9tien'), (1127, 'VIGNEAULT', 'Luc', '', 0, 0, 'M', 'N', ''), (1128, 'BLAIS', 'René', '', 0, 0, 'M', 'N', ''), (1129, 'CLANCY', 'Geneviève', '', 1937, 2005, 'F', 'N', 'https://fr.wikipedia.org/wiki/Genevi%C3%A8ve_Clancy'), (1130, 'TANCELILN', 'Philippe', '', 0, 0, 'M', 'N', ''), (1131, 'ARRAULT', 'Val', '', 0, 0, 'M', 'N', ''), (1132, 'BOURRIAULT', 'Nicolas', '', 0, 0, 'M', 'N', ''), (1133, 'CHAPOUTHIER', 'George', '', 1945, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Chapouthier'), (1134, 'PICAVET', 'François', '', 1851, 1921, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Picavet'), (1135, 'BOISSIER', 'Jean-Louis', '', 1945, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Louis_Boissier'), (1136, 'BRUGERE', 'Fabienne', '', 1964, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Fabienne_Brug%C3%A8re'), (1137, 'PEKER', 'Julia', '', 0, 0, 'F', 'N', ''), (1138, 'LIESER', 'Wolf', '', 0, 0, 'M', 'N', ''), (1139, 'BAUMGARTEL', 'Tilman', '', 0, 0, 'M', 'N', ''), (1140, 'DEHLINGER', 'Hans', '', 1939, 0, 'M', 'N', 'https://de.wikipedia.org/wiki/Hans_Dehlinger'), (1141, 'BENOZIO', 'Michel', '', 0, 0, 'M', 'N', ''), (1142, 'BEIS-FILLERON', 'Anne-Marie', '', 0, 0, 'F', 'N', ''), (1143, 'BACCONNIER', 'Brigitte', '', 0, 0, 'F', 'N', ''), (1144, 'DUSSOLIN', 'Jacqueline', '', 0, 0, 'F', 'N', ''), (1145, 'FRUCTUS', 'Isabelle', '', 0, 0, 'F', 'N', ''), (1146, 'MARTIN', 'Robert', '', 0, 0, 'M', 'N', ''), (1147, 'FONDANECHE', 'Daniel', '', 0, 0, 'M', 'N', ''), (1148, 'HANSEN-LOVE', 'Ole', '', 0, 0, 'M', 'N', ''), (1149, 'TALON-HUGON', 'Carole', '', 1959, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Carole_Talon-Hugon'), (1150, 'SHUSTERMAN', 'Richard', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Richard_Shusterman'), (1151, 'BARATTE', 'François', '', 0, 0, 'M', 'N', ''), (1152, 'JAEGER', 'Petra', '', 0, 0, 'F', 'N', ''), (1153, 'DAGEN', 'Philippe', '', 1959, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Dagen'), (1154, 'ACHARD', 'Guy', '', 1936, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Guy_Achard'), (1155, 'BRIQUET', 'Esther', '', 0, 0, 'F', 'N', ''), (1156, 'PELLEGRIN', 'Pierre', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Pellegrin'), (1157, 'KANY-TURPIN', 'José', '', 0, 0, 'M', 'N', ''), (1158, 'AUVRAY-ASSAYAS', 'Clara', '', 0, 0, 'F', 'N', ''), (1159, 'L\'APOSTAT', 'Julien', '', 0, 0, 'M', 'N', ''), (1160, 'FONTANIER', 'Jean-Michel', '', 0, 0, 'M', 'N', ''), (1161, 'SAM LAN', 'Kim', '', 0, 0, 'M', 'N', ''), (1162, 'D\'HUISSIER', 'Oliver', '', 0, 0, 'M', 'N', ''), (1163, 'LÖWY', 'Michael', '', 1938, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michael_L%C3%B6wy'), (1164, 'HAZARD', 'Paul', '', 1878, 1944, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Hazard'), (1165, 'DEUTSCH', 'Lorànt', '', 1975, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lor%C3%A0nt_Deutsch'), (1166, 'MULLER', 'Robert', '', 0, 0, 'M', 'N', ''), (1167, 'ILDEFONSE', 'Fred', '', 0, 0, 'M', 'N', ''), (1168, 'DUVERNOY', 'Jean-François', '', 0, 0, 'M', 'N', ''), (1169, 'SALEM', 'Jean', '', 1952, 2018, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Salem'), (1170, 'BENATOUIL', 'Thomas', '', 0, 0, 'M', 'N', ''), (1171, 'EMPIRICUS', 'Sextus', '', 160, 210, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sextus_Empiricus'), (1172, 'ROMEYER DHERBEY', 'Gilbert', '', 1934, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilbert_Romeyer-Dherbey'), (1173, 'CANTO SPERBER', 'Monique', '', 1954, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Monique_Canto-Sperber'), (1174, 'BARNES', 'Jonathan', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jonathan_Barnes'), (1175, 'BRUNSCHWIG', 'Jacques', '', 1929, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Brunschwig'), (1176, 'VLASTOS', 'Gregory', '', 1907, 1991, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gregory_Vlastos'), (1177, 'VASARI', 'Giorgio', '', 1511, 1574, 'M', 'N', 'https://fr.wikipedia.org/wiki/Giorgio_Vasari'), (1178, 'GERARD-POWELL', 'Véronique', '', 0, 0, 'F', 'N', ''), (1179, 'LECLANCHE', 'Leopold', '', 1839, 1882, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georges_Leclanch%C3%A9'), (1180, 'WEISS', 'Charles', '', 0, 0, 'M', 'N', ''), (1181, 'SAUZEAU', 'Dominique', '', 0, 0, 'M', 'N', ''), (1182, 'CARLOT', 'Maryline', '', 0, 0, 'F', 'N', ''), (1183, 'D', 'Pascal', '', 0, 0, 'M', 'N', ''), (1184, 'LELY', 'Martine', '', 0, 0, 'F', 'N', ''), (1185, 'DUCRET', 'André', '', 0, 0, 'M', 'N', ''), (1186, 'FAUX', 'Monique', '', 0, 0, 'F', 'N', ''), (1187, 'CARERI', 'Giovanni', '', 0, 0, 'M', 'N', ''), (1188, 'RINUY', 'Paul Louis', '', 0, 0, 'M', 'N', ''), (1189, 'GENTIL', 'Geneviève', '', 0, 0, 'F', 'N', ''), (1190, 'POIRRIER', 'Philippe', '', 0, 0, 'M', 'N', ''), (1191, 'DONNEDIEU DE VABRE', 'Renaud', '', 1954, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Renaud_Donnedieu_de_Vabres'), (1192, 'RINGBOM', 'Sixten', '', 0, 0, 'M', 'N', ''), (1193, 'FALLAY D\'ESTE', 'Laurianne', '', 0, 0, 'F', 'N', ''), (1194, 'BAUER', 'Nathalie', '', 1964, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Nathalie_Bauer'), (1195, 'SIGURET', 'Françoise', '', 0, 0, 'F', 'N', ''), (1196, 'PREVOST', 'Bertrand', '', 0, 0, 'M', 'N', ''), (1197, 'WIRTH', 'Jean', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Wirth'), (1198, 'LOJKINE', 'St', '', 0, 0, 'M', 'N', ''), (1199, 'CROS', 'Caroline', '', 0, 0, 'F', 'N', ''), (1200, 'LE BON', 'Laurent', '', 1969, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Laurent_Le_Bon'), (1201, 'ARDENNE', 'Paul', '', 1956, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Ardenne'), (1202, 'THUILLIER', 'Jacques', '', 1928, 2011, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Thuillier'), (1203, 'LAVALLE', 'Denis', '', 0, 0, 'M', 'N', ''), (1204, 'PAUCARD', 'Alain', '', 1945, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Paucard'), (1205, 'DELACROIX', 'Eugène', '', 1798, 1863, 'M', 'N', 'https://fr.wikipedia.org/wiki/Eug%C3%A8ne_Delacroix'), (1206, 'GAILLOT', 'Bernard-André', '', 0, 0, 'M', 'N', ''), (1207, 'BEYLOT', 'Pierre', '', 1920, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Beylot'), (1208, 'LUGAND', 'Sylviane', '', 0, 0, 'F', 'N', ''), (1209, 'MARGALEJO', 'Dani', '', 0, 0, 'M', 'N', ''), (1210, 'WATEAU', 'Fr', '', 0, 0, 'M', 'N', ''), (1211, 'COLZY', 'Alain', '', 0, 0, 'M', 'N', ''), (1212, 'MARCHAL', 'Rapha', '', 0, 0, 'M', 'N', ''), (1213, 'DEBICKI', 'Jacek', '', 0, 0, 'M', 'N', ''), (1214, 'SAEY', 'Alain', '', 0, 0, 'M', 'N', ''), (1215, 'PENISSON', 'Yves', '', 0, 0, 'M', 'N', ''), (1216, 'MASBOUNGI', 'Ariella', '', 0, 0, 'F', 'N', ''), (1217, 'de GRAVELAINE', 'Frédérique', '', 0, 0, 'F', 'N', ''), (1218, 'SECONDE', 'Aline', '', 0, 0, 'F', 'N', ''), (1219, 'DESVOIGNES', 'Olivier', '', 0, 0, 'M', 'N', ''), (1220, 'LAFARGUE de GRANGENEUVE', 'Loïc', '', 0, 0, 'M', 'N', ''), (1221, 'RISTER', 'Emmanuel', '', 0, 0, 'M', 'N', ''), (1222, 'BOUILLOT', 'René', '', 1930, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Bouillot'), (1223, 'REGENT', 'Emmanuel', '', 1973, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Emmanuel_R%C3%A9gent'), (1224, 'DUFAU', 'Alain', '', 0, 0, 'M', 'N', ''), (1225, 'VENTURINO', 'Marie-Eve', '', 0, 0, 'F', 'N', ''), (1226, 'Krishnamurti', '', '', 0, 0, 'M', 'N', ''), (1227, 'MAKARIUS', 'Michel', '', 0, 0, 'M', 'N', ''), (1228, 'SANCEY', 'Elysabeth', '', 0, 0, 'F', 'N', ''), (1229, 'AMAR', 'Muriel', '', 0, 0, 'F', 'N', ''), (1230, 'MESGUICH', 'V', '', 0, 0, 'M', 'N', ''), (1231, 'COLANTONIO', 'Fred', '', 0, 0, 'M', 'N', ''), (1232, 'HERELLIER', 'Jean-Marc', '', 0, 0, 'M', 'N', ''), (1233, 'ZUKOWSKI', 'Shea', '', 0, 0, 'M', 'N', ''), (1234, 'GUILLOT de SUDUIRAUT', 'Sophie', '', 0, 0, 'F', 'N', ''), (1235, 'LAFABRIE', 'Michèle', '', 0, 0, 'F', 'N', ''), (1236, 'FORD', 'Rob', '', 0, 0, 'M', 'N', ''), (1237, 'VESALE', 'André', '', 1514, 1564, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_V%C3%A9sale'), (1238, 'CARA', 'Marie-Aude', '', 0, 0, 'F', 'N', ''), (1239, 'MARCHAND-ZANARTU', 'Nicole', '', 0, 0, 'F', 'N', ''), (1240, 'LARTIGAUD', 'David-Olivier', '', 0, 0, 'M', 'N', ''), (1241, 'MARCINIAK', 'Barbara', '', 0, 0, 'F', 'N', ''), (1242, 'SIMON', 'Lewis', '', 0, 0, 'M', 'N', ''), (1243, 'ARNSTEIN', 'Bennett', '', 0, 0, 'M', 'N', ''), (1244, 'GURKEVITZ', 'Rona', '', 0, 0, 'M', 'N', ''), (1245, 'KEPEKLIAN', 'Gabriel', '', 0, 0, 'M', 'N', ''), (1246, 'LEQUEUX', 'Jean-Louis', '', 0, 0, 'M', 'N', ''), (1247, 'ACCART', 'Jean-Philippe', '', 0, 0, 'M', 'N', ''), (1248, 'AUBER', 'Emmanuel', '', 0, 0, 'M', 'N', ''), (1249, 'CERVELLE', 'Delphine', '', 0, 0, 'F', 'N', ''), (1250, 'BANAT-BERGER', 'Françoise', '', 1962, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7oise_Banat-Berger'), (1251, 'DUPLOUY', 'Laurent', '', 0, 0, 'M', 'N', ''), (1252, 'HUC', 'Claude', '', 0, 0, 'M', 'N', ''), (1253, 'Archives de France', '', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Service_interminist%C3%A9riel_des_Archives_de_France'), (1254, 'BAUB', 'Jean', '', 0, 0, 'M', 'N', ''), (1255, 'BAUDELOT', 'Christian', '', 1938, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Christian_Baudelot'), (1256, 'CARTIER', 'Marie', '', 0, 0, 'F', 'N', ''), (1257, 'DETREZ', 'Christine', '', 1969, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Christine_D%C3%A9trez'), (1258, 'BENHAMOU', 'Françoise', '', 1952, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7oise_Benhamou'), (1259, 'BERTRAND', 'Anne-Marie', '', 1951, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Anne-Marie_Bertrand_(historienne)'), (1260, 'BOULOGNE', 'Arlette', '', 0, 0, 'F', 'N', ''), (1261, 'BOUQUILLON', 'Philippe', '', 0, 0, 'M', 'N', ''), (1262, 'MATTHEWS', 'Jacob T.', '', 0, 0, 'M', 'N', ''), (1263, 'BROUDOUX', 'Evelyne', '', 0, 0, 'F', 'N', ''), (1264, 'CHARTRON', 'Ghislaine', '', 1961, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Ghislaine_Chartron'), (1265, 'CALENGE', 'Bertrand', '', 1952, 2016, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bertrand_Calenge'), (1266, 'CARON', 'Estelle', '', 1926, 2010, 'F', 'N', 'https://fr.wikipedia.org/wiki/Estelle_Caron'), (1267, 'CHANTEREAU', 'Danielle', '', 0, 0, 'F', 'N', ''), (1268, 'CHARLE', 'Christophe', '', 1951, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Christophe_Charle'), (1269, 'VERGER', 'Jacques', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Verger'), (1270, 'CHEVALLIER', 'Jacques', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Chevallier_(enseignant)'), (1271, 'POCHET', 'Bernard', '', 0, 0, 'M', 'N', ''), (1272, 'CHEVILLOTE', 'Sylvie', '', 0, 0, 'F', 'N', ''), (1273, 'NO', 'Elysabeth', '', 0, 0, 'F', 'N', ''), (1274, 'CLAERR', 'Thierry', '', 0, 0, 'M', 'N', ''), (1275, 'WESTEEL', 'Isabelle', '', 0, 0, 'F', 'N', ''), (1276, 'DARROBERS', 'Martine', '', 0, 0, 'F', 'N', ''), (1277, 'Le POTTIER', 'Nicole', '', 0, 0, 'F', 'N', ''), (1278, 'DESRICHERD', 'Yves', '', 0, 0, 'M', 'N', ''), (1279, 'ELBEKRI-DINOIRD', 'Carine', '', 0, 0, 'F', 'N', ''), (1280, 'GAUDET', 'François', '', 0, 0, 'M', 'N', ''), (1281, 'LIEBER', 'Claudine', '', 0, 0, 'F', 'N', ''), (1282, 'GICQUEL', 'Florence', '', 0, 0, 'F', 'N', ''), (1283, 'JDEY', 'Aref', '', 0, 0, 'M', 'N', ''), (1284, 'DIALLO', 'Alpha', '', 0, 0, 'M', 'N', ''), (1285, 'HORELLOU-LAFARGE', 'Chantal', '', 0, 0, 'F', 'N', ''), (1286, 'SEGR', 'Monique', '', 0, 0, 'F', 'N', ''), (1287, 'JACQUESSON', 'Alain', '', 0, 0, 'M', 'N', ''), (1288, 'RIVIER', 'Alexis', '', 0, 0, 'M', 'N', ''), (1289, 'JEANNENEY', 'Jean-Noël', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-No%C3%ABl_Jeanneney'), (1290, 'KATTNIG', 'C', '', 0, 0, 'M', 'N', ''), (1291, 'LABARRE', 'Albert', '', 1927, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albert_Labarre'), (1292, 'LENEPVEU', 'Philippe', '', 0, 0, 'M', 'N', ''), (1293, 'MANIEZ', 'Jacques', '', 0, 0, 'M', 'N', ''), (1294, 'MANIEZ', 'Dominique', '', 0, 0, 'M', 'N', ''), (1295, 'MARTIN', 'Chloé', '', 0, 0, 'F', 'N', ''), (1296, 'FAUCHIE', 'Michel', '', 0, 0, 'M', 'N', ''), (1297, 'MAUREL', 'Lionel', '', 1976, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lionel_Maurel'), (1298, 'THOMAS', 'Armelle', '', 0, 0, 'F', 'N', ''), (1299, 'MOUREN', 'Raphaële', '', 1966, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Rapha%C3%ABle_Mouren'), (1300, 'PEIGNET', 'Dominique', '', 0, 0, 'M', 'N', ''), (1301, 'Association des Bibliothèques', '', '', 0, 0, 'M', 'N', ''), (1302, 'PALLIER', 'Denis', '', 0, 0, 'M', 'N', ''), (1303, 'PAYEN', 'Emanu', '', 0, 0, 'M', 'N', ''), (1304, 'PR', 'Marie-H', '', 0, 0, 'F', 'N', ''), (1305, 'UTARD', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (1306, 'RIETSCH', 'Jean-Marie', '', 0, 0, 'M', 'N', ''), (1307, 'CHABIN', 'Marie-Anne', '', 1959, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Marie-Anne_Chabin'), (1308, 'CAPRIOLI', '', '', 0, 0, 'M', 'N', ''), (1309, 'ROUET', 'Fran', '', 0, 0, 'M', 'N', ''), (1310, 'SCOPSI', 'Claire', '', 0, 0, 'F', 'N', ''), (1311, 'SOUAL', 'Laurent', '', 0, 0, 'M', 'N', ''), (1312, 'FERAILLE', 'Jean-Fran', '', 0, 0, 'M', 'N', ''), (1313, 'MACHEFERT', 'Sylvain', '', 0, 0, 'M', 'N', ''), (1314, 'TAESCH-F', 'Dani', '', 0, 0, 'M', 'N', ''), (1315, 'TRAVIER', 'Val', '', 0, 0, 'M', 'N', ''), (1316, 'WOLTON', 'Dominique', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dominique_Wolton'), (1317, 'DORL', 'Laurence Bertrand', '', 0, 0, 'F', 'N', ''), (1318, 'LAHIRE', 'Bernard', '', 1963, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bernard_Lahire'), (1319, 'LAERCE', 'Diog', '', 0, 0, 'M', 'N', ''), (1320, 'GENAILLE', 'Robert', '', 0, 0, 'M', 'N', ''), (1321, 'BLONDEL', 'Eric', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89ric_Blondel_(philosophe)'), (1322, 'FRICK', 'Jean-Paul', '', 0, 0, 'M', 'N', ''), (1323, 'POUSSEUR', 'Jean-Marie', '', 0, 0, 'M', 'N', ''), (1324, 'SCHOPENHAUER', 'Arthur', '', 1788, 1860, 'M', 'N', 'https://fr.wikipedia.org/wiki/Arthur_Schopenhauer'), (1325, 'CHABOT', 'Alexis', '', 0, 0, 'M', 'N', ''), (1326, 'MEROT', 'Alain', '', 0, 0, 'M', 'N', ''), (1327, 'COMAS', 'Jos', '', 0, 0, 'M', 'N', ''), (1328, 'MASSE', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (1329, 'CAZABOND', 'Marie-Renée', '', 0, 0, 'F', 'N', ''), (1330, 'POLASTRON', 'Lucien-X', '', 1944, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lucien_X._Polastron'), (1331, 'HUYGHE', 'Pierre-Damien', '', 0, 0, 'M', 'N', ''), (1332, 'DEMORAND', 'S', '', 0, 0, 'M', 'N', ''), (1333, 'SOREL', 'Vincent', '', 1985, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Vincent_Sorel'), (1334, 'CLAIS', 'Jean-Baptiste', '', 0, 0, 'M', 'N', ''), (1335, 'DUBOIS', 'Philippe', '', 0, 0, 'M', 'N', ''), (1336, 'OLIVIER', 'Sylvie', '', 0, 0, 'F', 'N', ''), (1337, 'CIRY', 'Guillaume', '', 0, 0, 'M', 'N', ''), (1338, 'AUMARD', 'C', '', 0, 0, 'M', 'N', ''), (1339, 'D\'ALMEIDA', 'Fabrice', '', 1963, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fabrice_d%27Almeida'), (1340, 'DELAPORTE', 'Christian', '', 0, 0, 'M', 'N', ''), (1341, 'LE MERCIER', 'Jean-Luc', '', 0, 0, 'M', 'N', ''), (1342, 'MARON', 'Jean-Luc', '', 0, 0, 'M', 'N', ''), (1343, 'MAILLOT', 'Jean-Marc', '', 0, 0, 'M', 'N', ''), (1344, 'NOISETTE', 'Thierry', '', 0, 0, 'M', 'N', ''), (1345, 'NOISETTE', 'Perline', '', 0, 0, 'F', 'N', ''), (1346, 'LEVY', 'Maurice', '', 0, 0, 'M', 'N', ''), (1347, 'DACOS', 'Marin', '', 1971, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marin_Dacos'), (1348, 'MOUNIER', 'Pierre', '', 1970, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Mounier'), (1349, 'RACINE', 'Bruno', '', 1951, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bruno_Racine'), (1350, 'TESSIER', 'Marc', '', 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Tessier'), (1351, 'SALA', 'Jean-Michel', '', 0, 0, 'M', 'N', ''), (1352, 'ARSENAULT', 'Clément', '', 0, 0, 'M', 'N', ''), (1353, 'POISSENOT', 'Claude', '', 0, 0, 'M', 'N', ''), (1354, 'ZWIKKER', 'Roelie', '', 0, 0, 'M', 'N', ''), (1355, 'WILLEMSTEIN', 'Denise', '', 0, 0, 'F', 'N', ''), (1356, 'Bernasconi', 'C', '', 0, 0, 'M', 'N', ''), (1357, 'SZYMUSIAK ', 'Dominique', '', 0, 0, 'M', 'N', ''), (1358, 'FEREY', 'Sylvie', '', 0, 0, 'F', 'N', ''), (1359, 'SURLAPIERRE', 'Nicolas', '', 0, 0, 'M', 'N', ''), (1360, 'MONERY', 'Jean-Paul', '', 0, 0, 'M', 'N', ''), (1361, 'GOUPIL', 'Frédéric Auguste Antoine', '', 0, 0, 'M', 'N', ''), (1362, 'MANGUIN', 'Jean-Pierre', '', 0, 0, 'M', 'N', ''), (1363, 'SAINSAULIEU', 'Marie-Caroline', '', 0, 0, 'F', 'N', ''), (1364, 'DEROSIER', 'Bernard', '', 1939, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bernard_Derosier'), (1365, 'CARNEROLI', 'Sandrine', '', 0, 0, 'F', 'N', ''), (1366, 'D\'oreye', 'Patricia', '', 0, 0, 'F', 'N', ''), (1367, 'de WINNE', 'Ann', '', 0, 0, 'F', 'N', ''), (1368, 'Fauchereau', 'Serge', '', 0, 0, 'M', 'N', ''), (1369, 'Marlot', 'Franck', '', 0, 0, 'M', 'N', ''), (1370, 'ANDRAL', 'Jean-Louis', '', 0, 0, 'M', 'N', ''), (1371, 'ARGOD', 'Pascale', '', 0, 0, 'F', 'N', ''), (1372, 'MARCHAND', 'Patrick', '', 0, 0, 'M', 'N', ''), (1373, 'MOUTEL', 'Christianne', '', 0, 0, 'F', 'N', ''), (1374, 'WILLAERT', 'Philip', '', 0, 0, 'M', 'N', ''), (1375, 'ACTON', 'David', '', 0, 0, 'M', 'N', ''), (1376, 'LAMARRE', 'Fran', '', 0, 0, 'M', 'N', ''), (1377, 'DUPORT', 'Jean-Pierre', '', 0, 0, 'M', 'N', ''), (1378, 'PELI', 'Audrey', '', 0, 0, 'F', 'N', ''), (1379, 'JOEL', 'Guillermina', '', 0, 0, 'F', 'N', ''), (1380, 'MAKARIOU', 'Sophie', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Sophie_Makariou'), (1381, 'LOYRETTE', 'Henri', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Loyrette'), (1382, 'COSTE', 'Xavier', '', 1989, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Xavier_Coste'), (1383, 'DAMASIO', 'Alain', '', 1969, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Damasio'), (1384, 'de VINCENTE', 'José', '', 0, 0, 'M', 'N', ''), (1385, 'GALAUP', 'Xavier', '', 0, 0, 'M', 'N', ''), (1386, 'CHAFFER', 'Jonathan', '', 0, 0, 'M', 'N', ''), (1387, 'SWEDBERG', 'Karl', '', 0, 0, 'M', 'N', ''), (1388, 'CASARIO', 'Marco', '', 0, 0, 'M', 'N', ''), (1389, 'ELST', 'Peter', '', 0, 0, 'M', 'N', ''), (1390, 'BROWN', 'Charles', '', 0, 0, 'M', 'N', ''), (1391, 'WORMSER', 'Nathalie', '', 0, 0, 'F', 'N', ''), (1392, 'HANQUEZ', 'Cyril', '', 0, 0, 'M', 'N', ''), (1393, 'GLAZMAN', 'Daniel', '', 1967, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Daniel_Glazman'), (1394, 'Sainte-Marie', 'Alain', '', 0, 0, 'M', 'N', ''), (1395, 'SHAN', 'Kwong Kuen', '', 0, 0, 'M', 'N', ''), (1396, 'DANTZIG', 'Charles', '', 1961, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Dantzig'), (1397, 'MARREY', 'Baptiste', '', 0, 0, 'M', 'N', ''), (1398, 'BETHERY', 'Annie', '', 0, 0, 'F', 'N', ''), (1399, 'BON', 'François', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Bon'), (1400, 'BORGES', 'Jorge Luis', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jorge_Luis_Borges'), (1401, 'BURGOS', 'Martine', '', 0, 0, 'F', 'N', ''); INSERT INTO `bib_auteur` (`idauteur`, `nom_auteur`, `prenom_auteur`, `pseudo`, `birth`, `death`, `genre`, `traducteur`, `wikipedia`) VALUES (1402, 'HEDJERASSI', 'Nassira', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Nassira_Hedjerassi'), (1403, 'PEREZ', 'Patrick', '', 0, 0, 'M', 'N', ''), (1404, 'SOLDINI', 'Fabienne', '', 0, 0, 'F', 'N', ''), (1405, 'VITALE', 'Philippe', '', 0, 0, 'M', 'N', ''), (1406, 'CHARLOT', 'Bernard', '', 0, 0, 'M', 'N', ''), (1407, 'EVANS', 'Christophe', '', 0, 0, 'M', 'N', ''), (1408, 'GUINCHAT', 'Claire', '', 0, 0, 'F', 'N', ''), (1409, 'MENOU', 'Michel', '', 0, 0, 'M', 'N', ''), (1410, 'MANGUEL', 'Alberto', '', 0, 0, 'M', 'N', ''), (1411, 'MARESCA', 'Bruno', '', 0, 0, 'M', 'N', ''), (1412, 'PEDAUQUE', 'Roger T.', '', 0, 0, 'M', 'N', ''), (1413, 'RANJARD', 'Sophie', '', 0, 0, 'F', 'N', ''), (1414, 'POULAIN', 'Martine', '', 1948, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Martine_Poulain'), (1415, 'RENOULT', 'Daniel', '', 0, 0, 'M', 'N', ''), (1416, 'MELET-SAMSON', 'Jacqueline', '', 0, 0, 'F', 'N', ''), (1417, 'VENTRE', 'Daniel', '', 0, 0, 'M', 'N', ''), (1418, 'KLEIN', 'Naomi', '', 1970, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Naomi_Klein'), (1419, 'CHABOT', 'Pascal', '', 1973, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pascal_Chabot'), (1420, 'EUSEBE', 'Fr', '', 0, 0, 'M', 'N', ''), (1421, 'KENYON', 'Tom', '', 0, 0, 'M', 'N', ''), (1422, 'SION', 'Judi', '', 0, 0, 'M', 'N', ''), (1423, 'MURPHY', 'Joseph', '', 0, 0, 'M', 'N', ''), (1424, 'MANIGLIER', 'Patrice', '', 1973, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Patrice_Maniglier'), (1425, 'ZABUNYAN', 'Dork', '', 0, 0, 'M', 'N', ''), (1426, 'TARKOVSKI', 'Andreï', '', 1932, 1986, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andre%C3%AF_Tarkovski'), (1427, 'DESBOIS', 'Henri', '', 0, 0, 'M', 'N', ''), (1428, 'GUICHARD', 'Eric', '', 0, 0, 'M', 'N', ''), (1429, 'HERRENSCHMIDT', 'Clarisse', '', 1946, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Clarisse_Herrenschmidt'), (1430, 'MATHIAS', 'Paul', '', 0, 0, 'M', 'N', ''), (1431, 'RYGIEL', 'Philippe', '', 0, 0, 'M', 'N', ''), (1432, 'CHAMPAIGNE', 'Philippe de', '', 1602, 1674, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_de_Champaigne'), (1433, 'EPRON', 'Beno', '', 0, 0, 'M', 'N', ''), (1434, 'MAHE', 'Anna', '', 0, 0, 'F', 'N', ''), (1435, 'BABELON', 'Jean-Pierre', '', 1931, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Babelon'), (1436, 'Di MILIA', 'Gabriella', '', 0, 0, 'F', 'N', ''), (1437, 'PAQUOT', 'Thierry', '', 1952, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thierry_Paquot'), (1438, 'LARDELLIER', 'Pascal', '', 1964, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pascal_Lardellier'), (1439, 'ROUBAUD', 'Jacques', '', 1932, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Roubaud'), (1440, 'BONNET', 'Jacques', '', 0, 0, 'M', 'N', ''), (1441, 'FINKIELKRAUT', 'Alain', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Finkielkraut'), (1442, 'SORIANO', 'Paul', '', 0, 0, 'M', 'N', ''), (1443, 'BAILLET', 'Thibault', '', 0, 0, 'M', 'N', ''), (1444, 'BEAUDRY', 'Guylaine', '', 0, 0, 'F', 'N', ''), (1445, 'BOURDIEU', 'Pierre', '', 1930, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Bourdieu'), (1446, 'COULANGEON', 'Philippe', '', 1968, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Coulangeon'), (1447, 'GAILLEMIN', 'Jean-Louis', '', 0, 0, 'M', 'N', ''), (1448, 'DESCHARNES', 'Robert', '', 1926, 2014, 'M', 'N', 'https://fr.wikipedia.org/wiki/Robert_Descharnes'), (1449, 'DUCHET-SUCHAUX', 'Gaston', '', 0, 0, 'M', 'N', ''), (1450, 'COBAST', '', '', 0, 0, 'M', 'N', ''), (1451, 'CLARK', 'Kenneth', '', 1903, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kenneth_Clark'), (1452, 'VINCENT', 'Catherine', '', 1957, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Catherine_Vincent'), (1453, 'GAUTIER', 'Michel', '', 0, 0, 'M', 'N', ''), (1454, 'de VILLEPIN', 'Dominique', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Dominique_de_Villepin'), (1455, 'LEBRUN', 'Charles', '', 1619, 1690, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Le_Brun'), (1456, 'ALPERS', 'Svetlana', '', 1936, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Svetlana_Alpers'), (1457, 'WAT', 'Pierre', '', 1965, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Wat'), (1458, 'CHEVALIER', 'Aline', '', 0, 0, 'F', 'N', ''), (1459, 'PINCHON', 'Pierre', '', 0, 0, 'M', 'N', ''), (1460, 'ERTZSCHEID', 'Catherine', '', 0, 0, 'F', 'N', ''), (1461, 'FAVERIAL', 'Beno', '', 0, 0, 'M', 'N', ''), (1462, 'GUEGUEN', 'Sylvain', '', 0, 0, 'M', 'N', ''), (1463, 'PRAT', 'Marie', '', 0, 0, 'F', 'N', ''), (1464, 'PARKS', 'Anton', '', 0, 0, 'M', 'N', ''), (1465, 'BENRAOUANE ', 'Sit Ahmed', '', 0, 0, 'M', 'N', ''), (1466, 'BETRO', 'Maria Carmela', '', 0, 0, 'F', 'N', ''), (1467, 'TALAYESVA', 'Don C.', '', 0, 0, 'M', 'N', ''), (1468, 'FISCH', 'André', '', 1951, 0, 'M', 'N', ''), (1469, 'WATERS', 'Franck', '', 0, 0, 'M', 'N', ''), (1470, 'KNIGHT JADCZYK', 'laura', '', 0, 0, 'F', 'N', ''), (1471, 'MARTIN', 'Jason', '', 0, 0, 'M', 'N', ''), (1472, 'RIVIERE', 'Patrick', '', 0, 0, 'M', 'N', ''), (1473, 'PARRAMON', 'José Maria', '', 0, 0, 'M', 'N', ''), (1474, 'ROBERTS', 'Jane', '', 1929, 1984, 'F', 'N', 'https://fr.wikipedia.org/wiki/Jane_Roberts'), (1475, 'SEELIGER-CHATELAIN', 'Michka', '', 0, 0, 'M', 'N', ''), (1476, 'DELACAMPAGNE', 'Ariane', '', 0, 0, 'F', 'N', ''), (1477, 'DELACAMPAGNE', 'Christian', '', 1949, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Christian_Delacampagne'), (1478, 'RAYNAUD', 'Agnès', '', 0, 0, 'F', 'N', ''), (1479, 'YVEL', 'Claude', '', 1930, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Claude_Yvel'), (1480, 'DOWLING', 'Faye', '', 0, 0, 'M', 'N', ''), (1481, 'VUILLEMIN', 'Jules', '', 1920, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jules_Vuillemin'), (1482, 'RENOUX', 'Alain', '', 0, 0, 'M', 'N', ''), (1483, 'BACON', 'Francis', '', 1561, 1626, 'M', 'N', 'https://fr.wikipedia.org/wiki/Francis_Bacon_(philosophe)'), (1484, 'LELU', 'Alain', '', 0, 0, 'M', 'N', ''), (1485, 'NATKIN', 'St', '', 0, 0, 'M', 'N', ''), (1486, 'EISLER', 'Georg', '', 1928, 1998, 'M', 'N', 'https://en.wikipedia.org/wiki/Georg_Eisler'), (1487, 'BONNEFOI', 'Marielle', '', 0, 0, 'M', 'N', ''), (1488, 'VINCENOT', 'Henri', '', 1912, 1985, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Vincenot'), (1489, 'BAKER', 'Robin', '', 0, 0, 'M', 'N', ''), (1490, 'SERVAN-SCHREIBER', 'Emile', '', 1888, 1967, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89mile_Servan-Schreiber'), (1491, 'SERVAN-SCHREIBER', 'Edouard', '', 0, 0, 'M', 'N', ''), (1492, 'SIMMEL', 'Georg', '', 1858, 1918, 'M', 'N', 'https://fr.wikipedia.org/wiki/Georg_Simmel'), (1493, 'FAYOLLE', 'Claire', '', 0, 0, 'F', 'N', ''), (1494, 'HULOT', 'Jean François', '', 0, 0, 'M', 'N', ''), (1495, 'COQ', 'Dominique', '', 0, 0, 'M', 'N', ''), (1496, 'MEISS', 'Millard', '', 1904, 1975, 'M', 'N', 'https://fr.wikipedia.org/wiki/Millard_Meiss'), (1497, 'NORA', 'Pierre', '', 1931, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Nora'), (1498, 'GAILLARD', 'B', '', 0, 0, 'M', 'N', ''), (1499, 'IWEN', 'Kessani', '', 0, 0, 'M', 'N', ''), (1500, 'IWEN', 'Chris', '', 0, 0, 'M', 'N', ''), (1501, 'DELOUMEAU-PRIGENT', 'Kaelig', '', 0, 0, 'M', 'N', ''), (1502, 'SCHILINGER', 'Corinne', '', 0, 0, 'F', 'N', ''), (1503, 'SLOIM', 'Elie', '', 0, 0, 'M', 'N', ''), (1504, 'DENIS', 'Laurent', '', 0, 0, 'M', 'N', ''), (1505, 'THUILLIER', 'Victor', '', 0, 0, 'M', 'N', ''), (1506, 'BORDERIE', 'Xavier', '', 0, 0, 'M', 'N', ''), (1507, 'CHOUQUET', 'Francis', '', 0, 0, 'M', 'N', ''), (1508, 'BALMER', 'Amaury', '', 0, 0, 'M', 'N', ''), (1509, 'MATHIOT', 'Ginette', '', 1907, 1998, 'F', 'N', 'https://fr.wikipedia.org/wiki/Ginette_Mathiot'), (1510, 'WEYL', 'Estelle', '', 0, 0, 'F', 'N', ''), (1511, 'SIMPSON', 'Kyle', '', 0, 0, 'M', 'N', ''), (1512, 'MEANS', 'Garann', '', 0, 0, 'M', 'N', ''), (1513, 'CHENG', 'François', '', 1929, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fran%C3%A7ois_Cheng'), (1514, 'NIEDER ROBBINS', 'Jennifer', '', 0, 0, 'F', 'N', ''), (1515, 'LANGLAIS', 'Xavier de', '', 1906, 1975, 'M', 'N', 'https://fr.wikipedia.org/wiki/Xavier_de_Langlais'), (1516, 'RAY', 'Man', '', 1890, 1976, 'M', 'N', 'https://fr.wikipedia.org/wiki/Man_Ray'), (1517, 'STEINBERG', 'Leo', '', 0, 0, 'M', 'N', ''), (1518, 'THIBAUDAT', 'Jean-Pierre', '', 0, 0, 'M', 'N', ''), (1519, 'ZERNER', 'Henri', '', 0, 0, 'M', 'N', ''), (1520, 'ROGER', 'Alain', '', 1936, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alain_Roger'), (1521, 'SCHLEGEL', 'Friedrich', '', 1772, 1829, 'M', 'N', 'https://fr.wikipedia.org/wiki/Friedrich_Schlegel'), (1522, 'STEINER', 'Michael', '', 0, 0, 'M', 'N', ''), (1523, 'PICARD', 'Marcel', '', 0, 0, 'M', 'N', ''), (1524, 'WACKER', 'Nicolas', '', 1897, 1987, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Wacker'), (1525, 'EISENSTEIN', 'Sergueï', '', 1898, 1948, 'M', 'N', 'https://fr.wikipedia.org/wiki/Sergue%C3%AF_Eisenstein'), (1526, 'SIMON', 'Sylvie', '', 0, 0, 'F', 'N', ''), (1527, 'DUPONT', 'Odile', '', 0, 0, 'F', 'N', ''), (1528, 'RANCI', 'Jacques', '', 0, 0, 'M', 'N', ''), (1529, 'AUDI', 'Paul', '', 1963, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Audi'), (1530, 'FERRARI', 'J', '', 0, 0, 'M', 'N', ''), (1531, 'ISNARD', 'Patrick', '', 0, 0, 'M', 'N', ''), (1532, 'CHAPELLE', 'Pierrette', '', 0, 0, 'F', 'N', ''), (1533, 'GELY', 'Gilbert', '', 0, 0, 'M', 'N', ''), (1534, 'DEWEY', 'John', '', 1859, 1952, 'M', 'N', 'https://fr.wikipedia.org/wiki/John_Dewey'), (1535, 'GERIDAN', 'Jean-Michel', '', 0, 0, 'M', 'N', ''), (1536, 'LORIES', 'Danielle', '', 0, 0, 'F', 'N', ''), (1537, 'FROGIER', 'Larys', '', 0, 0, 'M', 'N', ''), (1538, 'POINSOT', 'Jean-Marc', '', 0, 0, 'M', 'N', ''), (1539, 'THELY', 'Nicolas', '', 1973, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Th%C3%A9ly'), (1540, 'GILLE', 'Bertrand', '', 1920, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bertrand_Gille_(historien)'), (1541, 'HUTCHESON', 'Francis', '', 1694, 1746, 'M', 'N', 'https://fr.wikipedia.org/wiki/Francis_Hutcheson_(philosophe)'), (1543, 'MORANO', 'Guillaume', '', 0, 0, 'M', 'N', ''), (1544, 'PLOTIN', '', '', 205, 270, 'M', 'N', 'https://fr.wikipedia.org/wiki/Plotin'), (1545, 'SAINT-GIRON', 'Baldine', '', 1945, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Baldine_Saint_Girons'), (1546, 'SAL', 'Christophe', '', 0, 0, 'M', 'N', ''), (1547, 'NAUMAN', 'Bruce', '', 1941, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bruce_Nauman'), (1548, 'POINSOT', 'Jean-Marc', '', 0, 0, 'M', 'N', ''), (1549, 'CAYE', 'Pierre', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Caye'), (1550, 'BROGOWSKI', 'Leszek', '', 0, 0, 'M', 'N', ''), (1551, 'CHOAY', 'Fran', '', 0, 0, 'M', 'N', ''), (1553, 'BLAY', 'Michel', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Blay'), (1554, 'GODFREY', 'Tony', '', 0, 0, 'M', 'N', ''), (1555, 'MARTIN', 'George R.R.', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/George_R._R._Martin'), (1556, 'ANGELINI', 'C', '', 0, 0, 'M', 'N', ''), (1557, 'WHITE', 'John', '', 0, 0, 'M', 'N', ''), (1558, 'CHAMAGNE', 'Cathy', '', 0, 0, 'F', 'N', ''), (1559, 'BERTRAND', 'Pascale', '', 0, 0, 'F', 'N', ''), (1560, 'BORSOTTI', 'Annie', '', 0, 0, 'F', 'N', ''), (1561, 'LAURENT', 'B', '', 0, 0, 'M', 'N', ''), (1562, 'GUILHOT', 'Claudine', '', 0, 0, 'F', 'N', ''), (1563, 'GUITTON', 'Michèle', '', 0, 0, 'F', 'N', ''), (1564, 'LAVAL', 'Laurence', '', 0, 0, 'F', 'N', ''), (1565, 'LALLIAS', 'Jean-Claude', '', 0, 0, 'M', 'N', ''), (1566, 'ARNAULT', 'Jean-Jacques', '', 0, 0, 'M', 'N', ''), (1567, 'HARRISON', 'Charles', '', 0, 0, 'M', 'N', ''), (1568, 'WOOD', 'Paul', '', 0, 0, 'M', 'N', ''), (1569, 'CUSSET', 'Yves', '', 1972, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Yves_Cusset'), (1570, 'DROIT', 'Roger-Pol', '', 1949, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Roger-Pol_Droit'), (1571, 'GALARD', 'Jean', '', 0, 0, 'M', 'N', ''), (1572, 'HENRY', 'Michel', '', 1922, 2002, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Henry'), (1573, 'JAUSS', 'Hans Robert', '', 1921, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hans_Robert_Jauss'), (1574, 'MASSIN', 'Marianne', '', 0, 0, 'F', 'N', ''), (1575, 'MAUREL-INDART', 'H', '', 0, 0, 'M', 'N', ''), (1576, 'SIMON', 'G', '', 0, 0, 'M', 'N', ''), (1577, 'PIGEAUD', 'Jackie', '', 1937, 2016, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jackie_Pigeaud'), (1578, 'SHERRINGHAM', 'Marc', '', 0, 0, 'M', 'N', ''), (1579, 'TROTTEIN', 'Serge', '', 0, 0, 'M', 'N', ''), (1580, 'WARBURG', 'Aby', '', 1866, 1929, 'M', 'N', 'https://fr.wikipedia.org/wiki/Aby_Warburg'), (1581, 'FALGUIERES', 'Patricia', '', 0, 0, 'F', 'N', ''), (1582, 'JEANNERET', 'Michel', '', 1940, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Jeanneret_(historien)'), (1583, 'JOLLET', 'Etienne', '', 0, 0, 'M', 'N', ''), (1584, 'KLIBANSKY', 'Raymond', '', 1905, 2005, 'M', 'N', 'https://fr.wikipedia.org/wiki/Raymond_Klibansky'), (1585, 'SAXL', 'Fritz', '', 1890, 1948, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fritz_Saxl'), (1586, 'DURANT-BOGAERT', 'Fabienne', '', 0, 0, 'F', 'N', ''), (1587, 'KRIS', 'Ernst', '', 1900, 1957, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ernst_Kris'), (1588, 'LAROQUE', 'Didier', '', 1956, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Didier_Laroque'), (1589, 'MOREL', 'Philippe', '', 1940, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Morel'), (1590, 'LIPPINCOTT', 'Kriten', '', 0, 0, 'M', 'N', ''), (1591, 'BORNORONI', 'Marina', '', 0, 0, 'F', 'N', ''), (1592, 'PÄTCH', 'Otto', '', 1902, 1988, 'M', 'N', 'https://fr.wikipedia.org/wiki/Otto_P%C3%A4cht'), (1593, 'POMMIER', 'Edouard', '', 1925, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89douard_Pommier'), (1594, 'MOLDERINGS', 'Herbert', '', 1948, 0, 'M', 'N', 'https://de.wikipedia.org/wiki/Herbert_Molderings'), (1595, 'SCHLOSSER (von)', 'julius', '', 1866, 1938, 'M', 'N', 'https://fr.wikipedia.org/wiki/Julius_von_Schlosser'), (1596, 'DU FRESNOY', 'Charles-Alphonse', '', 1611, 1668, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles-Alphonse_Du_Fresnoy'), (1597, 'DUCHAMP', 'Marcel', '', 1887, 1968, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcel_Duchamp'), (1598, 'FEUILLIE', 'Nicolas', '', 0, 0, 'M', 'N', ''), (1599, 'BEAUVAIS', 'Yann', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Yann_Beauvais'), (1600, 'MANOVICH', 'Lev', '', 0, 0, 'M', 'N', ''), (1601, 'CREVIER', 'Richard', '', 0, 0, 'M', 'N', ''), (1602, 'RICHTER', 'Gerhard', '', 1932, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gerhard_Richter'), (1603, 'SANOUILLET', 'Michel', '', 1924, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_Sanouillet'), (1604, 'MATISSE', 'Paul', '', 1933, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Matisse'), (1605, 'SNOW', 'Michael', '', 1929, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michael_Snow'), (1606, 'BOUHOURS', 'Jean-Michel', '', 1956, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Michel_Bouhours'), (1607, 'LAGEIRA', 'Jacinto', '', 0, 0, 'M', 'N', ''), (1608, 'TIBERGHIEN', 'Gilles', '', 1953, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilles_A._Tiberghien'), (1609, 'WARHOL', 'Andy', '', 1928, 1987, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andy_Warhol'), (1610, 'TRETIAK', 'Philippe', '', 0, 0, 'M', 'N', ''), (1611, 'BUSSAGLI', 'Marco', '', 0, 0, 'M', 'N', ''), (1612, 'CURTIS', 'William J.R.', '', 1948, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/William_J._R._Curtis'), (1613, 'de BURE', 'Gilles', '', 1940, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gilles_de_Bure'), (1614, 'FARRELLY', 'Lorraine', '', 0, 0, 'F', 'N', ''), (1615, 'FICHET', 'François', '', 0, 0, 'M', 'N', ''), (1616, 'FRAMPTON', 'Kenneth', '', 1930, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kenneth_Frampton'), (1617, 'GYMPEL', 'Jan', '', 0, 0, 'M', 'N', ''), (1618, 'KAUFMANN', 'Emil', '', 0, 0, 'M', 'N', ''), (1619, 'MIGNOT', 'Claude', '', 1943, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Claude_Mignot'), (1620, 'VENTURI', 'Robert', '', 1925, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Robert_Venturi'), (1621, 'VITRUVE', '', '', -90, -20, 'M', 'N', 'https://fr.wikipedia.org/wiki/Vitruve'), (1622, 'WINES', 'James', '', 1932, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/James_Wines'), (1623, 'ZEVI', 'Bruno', '', 1918, 2000, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bruno_Zevi'), (1624, 'DURAND', 'Régis', '', 1941, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/R%C3%A9gis_Durand_(critique_d\'art)'), (1625, 'FEDIER', 'Fran', '', 0, 0, 'M', 'N', ''), (1626, 'PRINA', 'Francesca', '', 0, 0, 'F', 'N', ''), (1627, 'VENTURI', 'Lionello', '', 1885, 1961, 'M', 'N', 'https://fr.wikipedia.org/wiki/Lionello_Venturi'), (1628, 'OLALQUIAGA', 'C', '', 0, 0, 'M', 'N', ''), (1629, 'PHILIPPOT', 'Paul', '', 0, 0, 'M', 'N', ''), (1630, 'TÖNNESMANN', 'Andreas', '', 1953, 2014, 'M', 'N', 'https://de.wikipedia.org/wiki/Andreas_T%C3%B6nnesmann'), (1631, 'RUIZ', 'Raoul', '', 1941, 2011, 'M', 'N', 'https://fr.wikipedia.org/wiki/Raoul_Ruiz'), (1632, 'ANTOINE', 'Jean-Philippe', '', 0, 0, 'M', 'N', ''), (1633, 'SALEM', 'Lionel', '', 0, 0, 'M', 'N', ''), (1634, 'MORTENSEN', 'John Kenn', '', 0, 0, 'M', 'N', ''), (1635, 'FEYERABEND', 'Paul', '', 1924, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Feyerabend'), (1636, 'STROSBERG', 'Eliane', '', 0, 0, 'F', 'N', ''), (1637, 'BENICHOU', 'Anne', '', 0, 0, 'F', 'N', ''), (1639, 'MACEY', 'Glyn', '', 0, 0, 'M', 'N', ''), (1640, 'STELLA', 'Jacques', '', 0, 0, 'M', 'N', ''), (1641, 'SHEPPARD', 'Joseph', '', 0, 0, 'M', 'N', ''), (1642, 'DODSON', 'Bert', '', 0, 0, 'M', 'N', ''), (1643, 'Nicol', 'Jean-Pierre', '', 0, 0, 'M', 'N', ''), (1644, 'ELUARD', 'Paul', '', 1895, 1952, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_%C3%89luard'), (1645, 'Van Der KELEN', 'Denise', '', 0, 0, 'F', 'N', ''), (1646, 'KANTOR', 'Tadeusz', '', 1915, 1990, 'M', 'N', 'https://fr.wikipedia.org/wiki/Tadeusz_Kantor'), (1647, 'DALI', 'Salvador', '', 1904, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Salvador_Dal%C3%AD'), (1648, 'MORRISON', 'Donald', '', 0, 0, 'M', 'N', ''), (1649, 'COMPAGNON', 'Antoine', '', 1950, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Antoine_Compagnon'), (1650, 'GAGNON', 'Claude', '', 0, 0, 'M', 'N', ''), (1651, 'FLAMEL', 'Nicolas', '', 1330, 1418, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Flamel'), (1652, 'HAVEL', 'Marc', '', 0, 0, 'M', 'N', ''), (1653, 'GAWAIN', 'Shakti', '', 1948, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Shakti_Gawain'), (1654, 'CAMERON', 'Julia', '', 0, 0, 'F', 'N', ''), (1655, 'OBALK', 'Hector', '', 1960, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hector_Obalk'), (1656, 'TONNESMANN', 'Andreas', '', 0, 0, 'M', 'N', ''), (1657, 'ANDREW', 'Morton', '', 0, 0, 'M', 'N', ''), (1658, 'DUCKETT', 'Jon', '', 0, 0, 'M', 'N', ''), (1659, 'KANDINSKIJ', 'Vassilij', '', 0, 0, 'M', 'N', ''), (1660, 'RAYNES', 'john', '', 0, 0, 'M', 'N', ''), (1661, 'GRENIER', 'Catherine', '', 1960, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Catherine_Grenier'), (1662, 'TESTORI', 'Giovanni', '', 0, 0, 'M', 'N', ''), (1663, 'ARRIGONI', 'Luisa', '', 0, 0, 'F', 'N', ''), (1664, 'ROSENBERG', 'Pierre', '', 1936, 1995, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Rosenberg'), (1665, 'PERISSA TORRINI', 'Annalisa', '', 0, 0, 'F', 'N', ''), (1666, 'NORBU RINPOCHE', 'Namkha', '', 0, 0, 'M', 'N', ''), (1667, 'POZIN', 'Arnaud', '', 0, 0, 'M', 'N', ''), (1668, 'KATZ', 'Michael', '', 0, 0, 'M', 'N', ''), (1669, 'NERSSELRATH', 'Arnold', '', 0, 0, 'M', 'N', ''), (1670, 'CEDERHOLM', 'Dan', '', 0, 0, 'M', 'N', ''), (1671, 'MARCOTTE', 'Ethan', '', 0, 0, 'M', 'N', ''), (1672, 'WROBLEWSKI', 'Luke', '', 0, 0, 'M', 'N', ''), (1673, 'CLARK', 'Josh', '', 0, 0, 'M', 'N', ''), (1674, 'WALTER', 'Aaron', '', 0, 0, 'M', 'N', ''), (1675, 'MONTEIRO', 'Mike', '', 0, 0, 'M', 'N', ''), (1676, 'McGRANE', 'Karen', '', 0, 0, 'M', 'N', ''), (1677, 'SANTA MARIA', 'Jason', '', 0, 0, 'M', 'N', ''), (1678, 'HALL', 'Erika', '', 0, 0, 'F', 'N', ''), (1679, 'KISSANE', 'Erin', '', 0, 0, 'M', 'N', ''), (1680, 'JEHL', 'Scott', '', 0, 0, 'M', 'N', ''), (1681, 'DUMOULIN', 'Laurent', '', 0, 0, 'M', 'N', ''), (1682, 'CHIFLET', 'Jean-Loup', '', 1942, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Loup_Chiflet'), (1683, 'CLARKE', 'Andy', '', 1984, 0, 'M', 'N', ''), (1684, 'KOCH', 'Peter-Paul', '', 0, 0, 'M', 'N', ''), (1685, 'CROCKFORD', 'Douglas', '', 1955, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Douglas_Crockford'), (1686, 'CLOUSE', 'Wendy', '', 0, 0, 'F', 'N', ''), (1687, 'SELIGMAN', 'Patricia', '', 0, 0, 'F', 'N', ''), (1688, 'MONAHAN', 'Patricia', '', 0, 0, 'F', 'N', ''), (1689, 'KONDO', 'Marie', '', 0, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Marie_Kond%C5%8D'), (1690, 'PICKERING', 'Heydon', '', 0, 0, 'M', 'N', ''), (1691, 'BALZE', 'Raymond', '', 1818, 1909, 'M', 'N', 'https://fr.wikipedia.org/wiki/Raymond_Balze'), (1692, 'ZOLLNER', 'Franck', '', 0, 0, 'M', 'N', ''), (1693, 'THOENES', 'Christof', '', 0, 0, 'M', 'N', ''), (1694, 'POPPER', 'Thomas', '', 0, 0, 'M', 'N', ''), (1695, 'CAPPONI', 'Niccolo', '', 0, 0, 'M', 'N', ''), (1696, 'NAFFIS-SAHELY', 'Andre', '', 0, 0, 'M', 'N', ''), (1697, 'HAMOU', 'Philippe', '', 0, 0, 'M', 'N', ''), (1698, 'PLINE LE JEUNE', '', '', 61, 113, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pline_le_Jeune'), (1699, 'REINACH', 'Adolphe', '', 1887, 1914, 'M', 'N', 'https://fr.wikipedia.org/wiki/Adolphe_Reinach'), (1700, 'THEOPHILUS', '', '', 0, 0, 'M', 'N', ''), (1701, 'CENNINI', 'Cennino', '', 1370, 1440, 'M', 'N', 'https://fr.wikipedia.org/wiki/Cennino_Cennini'), (1702, 'COUSIN (l\'ancien)', 'Jean', '', 1490, 1560, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Cousin_l\'Ancien'), (1703, 'PEIFFER', 'Jeanne', '', 0, 0, 'F', 'N', ''), (1704, 'DÜRER', 'Albrecht', '', 1471, 1528, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albrecht_D%C3%BCrer'), (1705, 'MacCURDY', 'Edward', '', 0, 0, 'M', 'N', ''), (1706, 'de VINCI', 'Léonard', '', 1452, 1519, 'M', 'N', 'https://fr.wikipedia.org/wiki/L%C3%A9onard_de_Vinci'), (1707, 'LOMAZZO', 'Giovanni Paolo', '', 1538, 1592, 'M', 'N', 'https://fr.wikipedia.org/wiki/Giovanni_Paolo_Lomazzo'), (1708, 'DUCHESNE', 'Germaine', '', 0, 0, 'F', 'N', ''), (1709, 'GIRAUD', 'Madeleine', '', 0, 0, 'F', 'N', ''), (1710, 'PACIOLI', 'Luca', '', 1445, 1517, 'M', 'N', 'https://fr.wikipedia.org/wiki/Luca_Pacioli'), (1711, 'PELERIN', 'Jean', '', 0, 0, 'M', 'N', ''), (1712, 'Della FRANCESCA', 'Piero', '', 1412, 1492, 'M', 'N', 'https://fr.wikipedia.org/wiki/Piero_della_Francesca'), (1713, 'VELIZ', 'Zahara', '', 0, 0, 'M', 'N', ''), (1714, 'BOSSE', 'Abraham', '', 1602, 1676, 'M', 'N', 'https://fr.wikipedia.org/wiki/Abraham_Bosse'), (1715, 'CAUS', 'Salomon de', '', 1576, 1626, 'M', 'N', 'https://fr.wikipedia.org/wiki/Salomon_de_Caus'), (1716, 'CHAPERON', 'Paul-Romain', '', 1808, 1879, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul-Romain_Chaperon'), (1717, 'DANDRE-BARDON', 'Michel François', '', 1700, 1783, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel-Fran%C3%A7ois_Dandr%C3%A9-Bardon'), (1718, 'GAUTIER', 'Henri', '', 0, 0, 'M', 'N', ''), (1719, 'GAUTIER D\'AGOTY', 'Jacques Fabien', '', 1711, 1785, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Gautier_d\'Agoty'), (1720, 'GRAVESANDE', 'Willem Jacob', '', 1688, 1742, 'M', 'N', 'https://fr.wikipedia.org/wiki/Willem_Jacob_\'s_Gravesande'), (1721, 'HOGARTH', 'William', '', 1697, 1764, 'M', 'N', 'https://fr.wikipedia.org/wiki/William_Hogarth'), (1722, 'JEAURAT', 'Edmé-Sébastien', '', 1725, 1803, 'M', 'N', 'https://fr.wikipedia.org/wiki/Edme-S%C3%A9bastien_Jeaurat'), (1723, 'LAIRESSE', 'Gérard de', '', 1641, 1711, 'M', 'N', 'https://fr.wikipedia.org/wiki/G%C3%A9rard_de_Lairesse'), (1724, 'NICERON', 'Jean-François', '', 1613, 1646, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Fran%C3%A7ois_Niceron'), (1725, 'POUSSIN', 'Nicolas', '', 1594, 1665, 'M', 'N', 'https://fr.wikipedia.org/wiki/Nicolas_Poussin'), (1726, 'VAULEZARD', 'Jean-Louis', '', 0, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Louis_Vaulezard'), (1727, 'WATIN', 'Jean-Félix', '', 1728, 0, 'M', 'N', ''), (1728, 'BLANC', 'Charles', '', 1813, 1882, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Blanc'), (1729, 'BLANCHARD', 'Emile Théophole', '', 1795, 1860, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89mile-Th%C3%A9ophile_Blanchard'), (1730, 'BLOCKX', 'Jacques', '', 0, 0, 'M', 'N', ''), (1731, 'BRACQUEMOND', 'Félix', '', 1833, 1914, 'M', 'N', 'https://fr.wikipedia.org/wiki/F%C3%A9lix_Bracquemond'), (1732, 'CHEVREUL', 'Eugène', '', 1786, 1889, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel-Eug%C3%A8ne_Chevreul'), (1733, 'DUROZIEZ', 'A-M', '', 0, 0, 'M', 'N', ''), (1734, 'GRATRY', 'J B', '', 0, 0, 'M', 'N', ''), (1735, 'HELMHOLTZ', 'Hermann von', '', 1821, 1894, 'M', 'N', 'https://fr.wikipedia.org/wiki/Hermann_von_Helmholtz'), (1736, 'LANGLOIS de LONGUEVILLE', 'F-P', '', 0, 0, 'M', 'N', ''), (1737, 'CONSTANT-VIGUIER', 'S-F', '', 0, 0, 'M', 'N', ''), (1738, 'LA GOURNERIE', 'Jules de', '', 1814, 1883, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jules_de_La_Gournerie'), (1739, 'ROOD', 'Ogden Nicholas', '', 1831, 1902, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ogden_Rood'), (1740, 'SOEHNEE', 'Charles-Frédéric', '', 1789, 1878, 'M', 'N', 'https://en.wikipedia.org/wiki/Charles-Fr%C3%A9d%C3%A9ric_Soehn%C3%A9e'), (1741, 'LESSING', 'Gotthold Ephraim', '', 1729, 1781, 'M', 'N', 'https://fr.wikipedia.org/wiki/Gotthold_Ephraim_Lessing'), (1742, 'STEVENS', 'Alfred', '', 1823, 1906, 'M', 'N', 'https://fr.wikipedia.org/wiki/Alfred_Stevens_(peintre_belge)'), (1743, 'VALENCIENNES', 'Pierre-Henri de', '', 1750, 1819, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre-Henri_de_Valenciennes'), (1744, 'VERGNAUD', 'Amand-Denis', '', 1791, 1885, 'M', 'N', ''), (1745, 'VIBERT', 'Jehan-Georges ', '', 1840, 1902, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Georges_Vibert'), (1746, 'ALBERS', 'Josef', '', 1888, 1976, 'M', 'N', 'https://fr.wikipedia.org/wiki/Josef_Albers'), (1747, 'HAREUX', 'Ernest Victor', '', 1847, 1909, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ernest_Victor_Hareux'), (1748, 'KLEE', 'Paul', '', 1879, 1940, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Klee'), (1749, 'LHOTE', 'André', '', 1885, 1962, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Lhote'), (1750, 'KARL', 'Robert', '', 1848, 0, 'M', 'N', ''), (1751, 'ROSENSTIEHL', 'Auguste', '', 1839, 1916, 'M', 'N', ''), (1752, 'BOREL', 'France', '', 1952, 0, 'M', 'N', ''), (1753, 'BRETTELL', 'Richard Robson', '', 0, 0, 'M', 'N', ''), (1754, 'CASSANELLI', 'Roberto', '', 0, 0, 'M', 'N', ''), (1755, 'BEGUIN', 'Sylvie', '', 1919, 2010, 'F', 'N', 'https://fr.wikipedia.org/wiki/Sylvie_B%C3%A9guin'), (1756, 'DELORME', 'Jean-Claude', '', 1934, 2006, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Claude_Delorme'), (1757, 'DUBOIS', 'Anne-Marie', '', 0, 0, 'F', 'N', ''), (1758, 'GAUSSEN', 'Frédéric', '', 1937, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fr%C3%A9d%C3%A9ric_Gaussen'), (1759, 'GREGOIRE', 'Stéphanie', '', 0, 0, 'F', 'N', ''), (1760, 'LANEYRIE-DAGEN', 'Nadeije', '', 0, 0, 'F', 'N', ''), (1761, 'MARTIN-FUGIER', 'Anne', '', 0, 0, 'F', 'N', ''), (1762, 'MICUCCI', 'Dana', '', 0, 0, 'F', 'N', ''), (1763, 'FAUST', 'Marina', '', 0, 0, 'F', 'N', ''), (1764, 'SEIDNER', 'David', '', 0, 0, 'M', 'N', ''), (1765, 'EDKINS', 'Diana', '', 0, 0, 'F', 'N', ''), (1766, 'BEGUIN', 'André', '', 1927, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_B%C3%A9guin'), (1767, 'BOSSEUR', 'Jean-Yves', '', 1947, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Yves_Bosseur'), (1768, 'BRACHERT', 'Thomas', '', 0, 0, 'M', 'N', ''), (1769, 'CARR', 'Dawson William', '', 0, 0, 'M', 'N', ''), (1770, 'LEONARD', 'Mark William', '', 0, 0, 'M', 'N', ''), (1771, 'WARD', 'Gerald W. R. ', '', 0, 0, 'M', 'N', ''), (1772, 'PEACOCK', 'Henry Wilson', '', 0, 0, 'M', 'N', ''), (1773, 'PIZON', 'Pierre', '', 0, 0, 'M', 'N', ''), (1774, 'RANCILLAC', 'Bernard', '', 1931, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Bernard_Rancillac'), (1775, 'RUDEL', 'Jean', '', 0, 0, 'M', 'N', ''), (1776, 'BOURRIOT', 'Audrey', '', 0, 0, 'F', 'N', ''), (1777, 'BRIT', 'Elysabeth', '', 0, 0, 'F', 'N', ''), (1778, 'COSTA', 'Sandra', '', 0, 0, 'F', 'N', ''), (1779, 'PIGUET', 'Philippe', '', 0, 0, 'M', 'N', ''), (1780, 'ABRAHAMS', 'Philippa', '', 0, 0, 'M', 'N', ''), (1781, 'DOERNER', 'Max', '', 1870, 1939, 'M', 'N', 'https://en.wikipedia.org/wiki/Max_Doerner_(artist)'), (1782, 'FUGA', 'Antonella', '', 0, 0, 'F', 'N', ''), (1783, 'PEREGO', 'François', '', 0, 0, 'M', 'N', ''), (1784, 'THOMPSON', 'Daniel V.', '', 0, 0, 'M', 'N', ''), (1785, 'BOMFORD', 'David', '', 0, 0, 'M', 'N', ''), (1786, 'BRUSATIN', 'Manlio', '', 1943, 0, 'M', 'N', 'https://es.wikipedia.org/wiki/Manlio_Brusatin'), (1787, 'LAVALLEE', 'Pierre', '', 0, 0, 'M', 'N', ''), (1788, 'LEYMARIE', 'Jean', '', 1919, 2006, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Leymarie_(historien_d%27art)'), (1789, 'MONNIER', 'Geneviève', '', 0, 0, 'F', 'N', ''), (1790, 'ROSE', 'Bernice', '', 0, 0, 'F', 'N', ''), (1791, 'CALLEN', 'Anthea', '', 0, 0, 'F', 'N', ''), (1792, 'COLLINS', 'Judith', '', 0, 0, 'M', 'N', ''), (1793, 'WELCHMAN', 'John', '', 0, 0, 'M', 'N', ''), (1794, 'CHANDLER', 'David', '', 0, 0, 'M', 'N', ''), (1795, 'ANFAM', 'David A.', '', 0, 0, 'M', 'N', ''), (1796, 'DAVAL', 'Jean-Luc', '', 0, 0, 'M', 'N', ''), (1797, 'DELCROIX', 'Gilbert', '', 0, 0, 'M', 'N', ''), (1798, 'EASTLAKE', 'Charles Lock', '', 1793, 1865, 'M', 'N', 'https://fr.wikipedia.org/wiki/Charles_Lock_Eastlake'), (1799, 'GRANDOU', 'Pierre', '', 0, 0, 'M', 'N', ''), (1800, 'PASTOUR', 'Paul', '', 0, 0, 'M', 'N', ''), (1801, 'LOS LLANOS', 'José-Luis de', '', 0, 0, 'M', 'N', ''), (1802, 'MERIMEE', 'Jean-Fraçois-Léonor', '', 1757, 1836, 'M', 'N', 'https://fr.wikipedia.org/wiki/L%C3%A9onor_M%C3%A9rim%C3%A9e'), (1803, 'PROCACCI', 'Ugo', '', 1905, 1991, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ugo_Procacci'), (1804, 'RONCHETTI', 'Giuseppe', '', 0, 0, 'M', 'N', ''), (1805, 'SCHAEFER', 'Iris', '', 0, 0, 'M', 'N', ''), (1806, 'SAINT-GEORGE', 'Caroline von', '', 0, 0, 'F', 'N', ''), (1807, 'LEWERENTZ', 'Katja', '', 0, 0, 'M', 'N', ''), (1808, 'TAFT', 'W. Stanley Jr.', '', 0, 0, 'M', 'N', ''), (1809, 'MAYER', 'James W.', '', 0, 0, 'M', 'N', ''), (1810, 'KUNIHOLM', 'Peter Ian', '', 0, 0, 'M', 'N', ''), (1811, 'WALLERT', 'Arie', '', 0, 0, 'M', 'N', ''), (1812, 'OOSTERHOUT', 'Carlo van', '', 0, 0, 'M', 'N', ''), (1813, 'BARBILLON', 'Claire', '', 1960, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Claire_Barbillon'), (1814, 'BROCK', 'Maurice', '', 0, 0, 'M', 'N', ''), (1815, 'GHYKA', 'Matila Costiescu', '', 0, 0, 'F', 'N', ''), (1816, 'LACAS', 'Martine', '', 0, 0, 'F', 'N', ''), (1817, 'NEVEUX', 'Marguerite', '', 0, 0, 'F', 'N', ''), (1818, 'HUNTLEY', 'H E', '', 0, 0, 'M', 'N', ''), (1819, 'ANDERSEN', 'Kirsti', '', 1941, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Kirsti_Andersen'), (1820, 'DALAI EMILIANI', 'Marisa', '', 0, 0, 'F', 'N', ''), (1821, 'BARRE', 'André', '', 1878, 1970, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Barre'), (1822, 'FLOCON', 'Albert', '', 1909, 1994, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albert_Flocon'), (1823, 'ELKINS', 'James', '', 1955, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/James_Elkins_(art_historian)'), (1824, 'TATON', 'René', '', 1915, 2004, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Taton'), (1825, 'HOCKNEY', 'David', '', 1937, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/David_Hockney'), (1826, 'INVIS', 'William Mills Jr', '', 0, 0, 'M', 'N', ''), (1827, 'PEREZ GOMEZ', 'Alberto', '', 0, 0, 'M', 'N', ''), (1828, 'POUDRA', 'Noël-Germinal', '', 0, 0, 'M', 'N', ''), (1829, 'VINCIGUERRA', 'Lucien', '', 0, 0, 'M', 'N', ''), (1830, 'PELLETIER', 'Louise', '', 0, 0, 'F', 'N', ''), (1831, 'WILLIATS', 'John', '', 0, 0, 'M', 'N', ''), (1832, 'MORAN', 'Robert', '', 0, 0, 'M', 'N', ''), (1833, 'BALL', 'Philip', '', 0, 0, 'M', 'N', ''), (1834, 'FELLER', 'Robert L.', '', 0, 0, 'M', 'N', ''), (1835, 'VARICHON', 'Anne', '', 0, 0, 'F', 'N', ''), (1836, 'ALISON', 'Jane', '', 0, 0, 'F', 'N', ''), (1837, 'BALLAS', 'Guila', '', 0, 0, 'F', 'N', ''), (1838, 'BARGNA', 'Ivan', '', 0, 0, 'M', 'N', ''), (1839, 'CURATOLA', 'Giovanni', '', 0, 0, 'M', 'N', ''), (1840, 'BEERLI', 'Conrad André', '', 0, 0, 'M', 'N', ''), (1841, 'BURCHETT', 'Kenneth E.', '', 0, 0, 'M', 'N', ''), (1842, 'DERIBERE', 'Maurice', '', 1907, 1997, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurice_D%C3%A9rib%C3%A9r%C3%A9'), (1843, 'GAGE', 'John', NULL, NULL, NULL, 'M', 'N', NULL), (1844, 'GERRITSEN', 'Frans', NULL, NULL, NULL, 'M', 'N', NULL), (1845, 'GERSTNER', 'Karl', NULL, NULL, NULL, 'M', 'N', NULL), (1846, 'HILLS', 'Paul', NULL, NULL, NULL, 'M', 'N', NULL), (1847, 'IMDAHL', 'Max', NULL, NULL, NULL, 'M', 'N', NULL), (1848, 'LAMB', 'Trevor', NULL, 0, 0, 'M', 'N', NULL), (1849, 'BOURRIAU', 'Janine', NULL, 0, 0, 'F', 'N', NULL), (1850, 'LEMAIRE', 'Gérard-Georges', NULL, NULL, NULL, 'M', 'N', NULL), (1851, 'LICHTENSTEIN', 'Jacqueline', NULL, 0, 0, 'F', 'N', NULL), (1852, 'ROUVERET', 'Agnès', NULL, NULL, NULL, 'F', 'N', NULL), (1853, 'DUBEL', 'Sandrine', NULL, 0, 0, 'F', 'N', NULL), (1854, 'NAAS', 'Valérie', NULL, 0, 0, 'F', 'N', NULL), (1855, 'ROQUE', 'Georges', NULL, NULL, NULL, 'M', 'N', NULL), (1856, 'TEMKIN', 'Ann', NULL, NULL, NULL, 'F', 'N', NULL), (1857, 'TEYSSEDRE', 'Bernard', NULL, NULL, NULL, 'M', 'N', NULL), (1858, 'ANSCOMBE', 'Gertrude Elizabeth Margaret', NULL, 0, 0, 'F', 'N', NULL), (1859, 'ZELANSKI', 'Paul', NULL, NULL, NULL, 'M', 'N', NULL), (1860, 'FISCHER', 'Mary Pat', NULL, 0, 0, 'F', 'N', NULL), (1861, 'ZOLLINGER', 'Heinrich', NULL, 0, 0, 'M', 'N', NULL), (1862, 'RIOUT', 'Denys', NULL, 0, 0, 'M', 'N', NULL), (1863, 'VARAS', 'Valeria', NULL, 0, 0, 'F', 'N', NULL), (1864, 'RISPA MARQUEZ', 'Raul', NULL, NULL, NULL, 'M', 'N', NULL), (1865, 'CHONEE', 'Paulette', NULL, 0, 0, 'F', 'N', NULL), (1866, 'BOYER', 'Jean-Claude', NULL, NULL, NULL, 'M', 'N', NULL), (1867, 'SPEAR', 'Richard', NULL, 1940, 0, 'M', 'N', 'https://en.wikipedia.org/wiki/Richard_E._Spear'), (1868, 'LANTHONY', 'Philippe', NULL, NULL, NULL, 'M', 'N', NULL), (1869, 'HERRING', 'Sarah', NULL, 0, 0, 'F', 'N', NULL), (1870, 'ASHOK', 'Roy', NULL, 0, 0, 'M', 'N', NULL), (1871, 'JO', 'Kirby', NULL, NULL, NULL, 'M', 'N', NULL), (1872, 'MROCZKOWSKI', 'Stéphane', NULL, 0, 0, 'M', 'N', NULL), (1873, 'TOWNSEND', 'joyce', NULL, NULL, NULL, 'M', 'N', NULL), (1874, 'DENIS', 'Maurice', NULL, 1870, 1943, 'M', 'N', 'https://fr.wikipedia.org/wiki/Maurice_Denis'), (1875, 'GARCIA', 'Pierre', NULL, 1928, NULL, 'M', 'N', NULL), (1876, 'GUERLIN', 'Henri', NULL, NULL, NULL, 'M', 'N', NULL), (1877, 'WICK', 'Rainer', NULL, NULL, NULL, 'M', 'N', NULL), (1878, 'LAUTREC', 'Lucien', NULL, NULL, NULL, 'M', 'N', NULL), (1879, 'LIOTARD', 'Jean-Etienne', NULL, 1702, 1789, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-%C3%89tienne_Liotard'), (1880, 'MALEVIC', 'Kazimir Severinovic', NULL, 1878, 1935, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kasimir_Malevitch'), (1881, 'MARCADE', 'Jean-Claude', NULL, NULL, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Claude_Marcad%C3%A9'), (1882, 'TURQUET DE MAYERNE', 'Théodore', NULL, NULL, NULL, 'M', 'N', NULL), (1883, 'VERSINI', 'Camille', NULL, 0, 0, 'F', 'N', NULL), (1884, 'POZZO', 'Andrea', NULL, 1642, 1709, 'F', 'N', 'https://fr.wikipedia.org/wiki/Andrea_Pozzo'), (1885, 'REYNOLDS', 'Joshua', NULL, 1723, 1792, 'M', 'N', 'https://fr.wikipedia.org/wiki/Joshua_Reynolds'), (1886, 'RUSKIN', 'John', NULL, 1819, 1900, 'M', 'N', 'https://fr.wikipedia.org/wiki/John_Ruskin'), (1887, 'SERUSIER', 'Paul', NULL, 1864, 1927, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_S%C3%A9rusier'), (1888, 'BOUTARIC', 'Henriette', NULL, NULL, NULL, 'F', 'N', NULL), (1889, 'DALBON', 'Charles', NULL, NULL, NULL, 'M', 'N', NULL), (1890, 'HERBERTS', 'Kurt', NULL, 1901, 1989, 'M', 'N', 'https://de.wikipedia.org/wiki/Kurt_Herberts'), (1891, 'LOUMYER', 'Guy', NULL, NULL, NULL, 'M', 'N', NULL), (1892, 'MAROGER', 'Jacques', NULL, NULL, NULL, 'M', 'N', NULL), (1893, 'LEIGHTON', 'John', NULL, NULL, NULL, 'M', 'N', NULL), (1894, 'PUTTFARKEN', 'Thomas', NULL, NULL, NULL, 'M', 'N', NULL), (1895, 'RAWSON', 'Philip Stanley', NULL, NULL, NULL, 'M', 'N', NULL), (1896, 'SCHÖNE', 'Wolfgang', NULL, NULL, NULL, 'M', 'N', NULL), (1897, 'ZILOTY', 'Alexandre', NULL, NULL, NULL, 'M', 'N', NULL), (1898, 'BRAZS', 'Jean-Pierre', NULL, 1947, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Brazs'), (1899, 'ADAM', 'Edouard', NULL, 1847, 1929, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89douard_Adam'), (1900, 'PRACONTAL', 'Patrice de', NULL, 0, 0, 'M', 'N', NULL), (1901, 'BERGEAUD', 'Claire', NULL, 0, 0, 'F', 'N', NULL), (1902, 'ROCHE', 'Alain', NULL, NULL, NULL, 'M', 'N', NULL), (1903, 'PETIT', 'Jean', NULL, NULL, NULL, 'M', 'N', NULL), (1904, 'ROIRE', 'Jacques', NULL, NULL, NULL, 'M', 'N', NULL), (1905, 'VALOT', 'Henri', NULL, NULL, NULL, 'M', 'N', NULL), (1906, 'ZIBAWI', 'Mahmoud', NULL, NULL, NULL, 'M', 'N', NULL), (1907, 'RAMOS-POQUI', 'Guillem', NULL, NULL, NULL, 'M', 'N', NULL), (1908, 'MASSCHELEIN-KLEINER', 'Liliane', NULL, 0, 0, 'F', 'N', NULL), (1909, 'WOLFTHAL', 'Diane', NULL, 0, 0, 'M', 'N', NULL), (1910, 'SMITH', 'Ray', NULL, NULL, NULL, 'M', 'N', NULL), (1911, 'COTER', 'Colyn de', NULL, 1450, 1522, 'M', 'N', 'https://fr.wikipedia.org/wiki/Colijn_de_Coter'), (1912, 'KRUG', 'Grégoire (moine)', NULL, NULL, NULL, 'M', 'N', NULL), (1913, 'SENDLER', 'Egon', NULL, NULL, NULL, 'M', 'N', NULL), (1914, 'EMILE-MÂLE', 'Gilberte', NULL, 1912, 2008, 'F', 'N', NULL), (1915, 'CHARPIER', 'J', NULL, NULL, NULL, 'M', 'N', NULL), (1916, 'SEGHERS', 'Pierre', NULL, 1906, 1987, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Seghers'), (1917, 'DROUANT', 'Armand', NULL, 1998, 1978, 'M', 'N', NULL), (1918, 'BUSSET', 'Maurice', NULL, 1881, 1936, 'M', 'N', NULL), (1919, 'DINET', 'Etienne', NULL, NULL, NULL, 'M', 'N', NULL), (1920, 'BERTHELOT', 'Marcelin', NULL, 1827, 1907, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marcellin_Berthelot'), (1921, 'CADIOU', 'Henri', NULL, 1906, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Henri_Cadiou'), (1922, 'GILOU', 'Thomas', NULL, 1955, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thomas_Gilou'), (1923, 'DENIS', 'Jean-Marc', NULL, NULL, NULL, 'M', 'N', NULL), (1924, 'DENIS', 'Faustine', NULL, 0, 0, 'F', 'N', NULL), (1925, 'CHIRICO', 'Giorgio de', NULL, 1888, 1978, 'M', 'N', 'https://fr.wikipedia.org/wiki/Giorgio_De_Chirico'), (1926, 'DEON', 'Horsin', NULL, NULL, NULL, 'M', 'N', NULL), (1927, 'MISSET', 'Jean-Claude', NULL, NULL, NULL, 'M', 'N', NULL), (1928, 'PELLETIER', 'Jean-Claude', NULL, NULL, NULL, 'M', 'N', NULL), (1929, 'PINCAS', 'Abraham', NULL, NULL, NULL, 'M', 'N', NULL), (1930, 'RODIN', 'Auguste', NULL, 1840, 1917, 'M', 'N', 'RODIN Auguste, L’art'), (1931, 'ROTGANS', 'Henk', NULL, 0, 0, 'M', 'N', NULL), (1932, 'SHITAO', '', NULL, NULL, NULL, 'M', 'N', NULL), (1933, 'VIOLLET LE DUC', 'Eugène', NULL, 1814, 1879, 'M', 'N', 'https://fr.wikipedia.org/wiki/Eug%C3%A8ne_Viollet-le-Duc'), (1934, 'BRIDGMAN', 'George B.', NULL, 1865, 1943, 'M', 'N', 'https://en.wikipedia.org/wiki/George_Bridgman'), (1935, 'CIVARDI', 'Giovanni', NULL, NULL, NULL, 'M', 'N', NULL), (1936, 'CALAIS-GERMAIN', 'Blandine', NULL, 0, 0, 'F', 'N', NULL), (1937, 'MUYBRIDGE', 'Eadweard', NULL, 1830, 1904, 'M', 'N', 'https://fr.wikipedia.org/wiki/Eadweard_Muybridge'), (1938, 'PEHOURCQ', 'Guy', NULL, NULL, NULL, 'M', 'N', NULL), (1939, 'RICHER', 'Paul', NULL, 1849, 1933, 'M', 'N', 'https://fr.wikipedia.org/wiki/Paul_Richer'), (1940, 'SIMBLET', 'Sarah', NULL, 0, 0, 'F', 'N', NULL), (1941, 'SZUNYOGHY', 'Andreas', NULL, NULL, NULL, 'M', 'N', NULL), (1942, 'HOGARTH', 'Burne', NULL, NULL, NULL, 'M', 'N', NULL), (1943, 'DELAVIER', 'Frédéric', NULL, 0, 0, 'M', 'N', NULL), (1944, 'GUNDILL', 'Michael', NULL, NULL, NULL, 'M', 'N', NULL), (1945, 'PHILO', 'Ronald', NULL, NULL, NULL, 'M', 'N', NULL), (1946, 'FINKELSTEIN', 'Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (1947, 'NADAÏ', 'Michel', NULL, NULL, NULL, 'M', 'N', NULL), (1948, 'GUEGAN', 'Yannick', NULL, NULL, NULL, 'M', 'N', NULL), (1949, 'LE PUIL', 'Roger', NULL, NULL, NULL, 'M', 'N', NULL), (1950, 'TRIPARD', 'Vincent', NULL, 0, 0, 'M', 'N', NULL), (1951, 'AUGUSTE', 'Catherine', NULL, 0, 0, 'F', 'N', NULL), (1952, 'RENAUX', 'Florence', NULL, 0, 0, 'F', 'N', NULL), (1953, 'DADDIS', 'Jamal', NULL, NULL, NULL, 'M', 'N', NULL), (1954, 'ADAM', 'Jean-Pierre', NULL, 1937, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Adam'), (1955, 'WATSON', 'David', NULL, NULL, NULL, 'M', 'N', NULL), (1956, 'SEBA', 'Alin', NULL, NULL, NULL, 'M', 'N', NULL), (1957, 'KEMP', 'Martin', NULL, 1961, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Martin_Kemp_(historien)'), (1958, 'COTTE', 'Pascal', NULL, 0, 0, 'M', 'N', NULL), (1959, 'NOGIER', 'Jean-François', NULL, NULL, NULL, 'M', 'N', NULL), (1960, 'LECLERC', 'Jules', NULL, 0, 0, 'M', 'N', NULL), (1961, 'GARRETT', 'Jesse James', NULL, NULL, NULL, 'M', 'N', 'https://en.wikipedia.org/wiki/Jesse_James_Garrett'), (1962, 'SIDRO', 'Annie', NULL, 0, 0, 'F', 'N', NULL), (1963, 'HONGZHI', 'Li', NULL, 1951, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Li_Hongzhi'), (1964, 'ALLEN', 'Jon', NULL, NULL, NULL, 'M', 'N', NULL), (1965, 'BOAG', 'Paul', NULL, NULL, NULL, 'M', 'N', NULL), (1966, 'CHATEL', 'Audrey', NULL, 0, 0, 'F', 'N', NULL), (1967, 'MARQUIS', 'Mat', NULL, 0, 0, 'M', 'N', NULL), (1968, 'TARTAKOVER', 'Xavier', NULL, NULL, NULL, 'M', 'N', NULL), (1969, 'Van SETERS', 'Frits', NULL, 0, 0, 'M', 'N', NULL), (1970, 'WOLF', 'Patrick', NULL, NULL, NULL, 'M', 'N', NULL), (1971, 'PECHIODAT', 'Amandine', NULL, NULL, NULL, 'F', 'N', NULL), (1972, 'KUNO', 'Kanako', NULL, NULL, NULL, 'M', 'N', NULL), (1973, 'HERMES D ARTIGNE', 'Salazius', NULL, NULL, NULL, 'M', 'N', NULL), (1974, 'FREON', 'Bernard', NULL, NULL, NULL, 'M', 'N', NULL), (1975, 'JODOROWSKY', 'Alexandro', NULL, NULL, NULL, 'M', 'N', NULL), (1976, 'Van LENNEP', 'Jacques', NULL, NULL, NULL, 'M', 'N', NULL), (1977, 'PAHLAVI', 'Axel', NULL, NULL, NULL, 'M', 'N', NULL), (1978, 'FLORENSKI', 'Pavel A.', NULL, NULL, NULL, 'M', 'N', NULL), (1979, 'KHOLMATOVA', 'Alla', NULL, NULL, NULL, 'M', 'N', NULL), (1980, 'Von FRANZ', 'Marie-Louise', NULL, NULL, NULL, 'F', 'N', NULL), (1981, 'GOULARD', 'Eric', NULL, NULL, NULL, 'M', 'N', NULL), (1982, 'BAXTER', 'Craig james', NULL, NULL, NULL, 'M', 'N', NULL), (1983, 'BOUSSA', 'Félix', NULL, NULL, NULL, 'M', 'N', NULL), (1984, 'CIALDINI', 'Robert', NULL, NULL, NULL, 'M', 'N', NULL), (1985, 'MIDAL', 'Fabrice', NULL, 0, 0, 'M', 'N', NULL), (1986, 'GUYON', 'Marie-Christine', NULL, 0, 0, 'F', 'N', NULL), (1987, 'MESSINGER', 'Joseph', NULL, NULL, NULL, 'M', 'N', NULL), (1988, 'GAYFORD', 'Martin', NULL, 0, 0, 'M', 'N', NULL), (1989, 'COUZINOU', 'Véronique', NULL, 0, 0, 'F', 'N', NULL), (1990, 'FERGUSON', 'Will', NULL, NULL, NULL, 'M', 'N', NULL), (1991, 'MAUDUIT', 'Xavier', NULL, 1974, NULL, 'M', 'N', NULL), (1992, 'LEMAGNENT', 'Cédric', NULL, 0, NULL, 'M', 'N', NULL), (1993, 'TUFTE', 'Edward R.', NULL, NULL, NULL, 'M', 'N', NULL), (1994, 'COLBURN', 'Kerry', NULL, NULL, NULL, 'M', 'N', NULL), (1995, 'SORENSEN', 'Rob', NULL, 0, 0, 'M', 'N', NULL), (1996, 'IRVING', 'Mark', NULL, 0, 0, 'M', 'N', NULL), (1997, 'FARTHING', 'Stephen', NULL, 0, 0, 'M', 'N', NULL), (1998, 'DEFOE', 'Daniel', NULL, NULL, NULL, 'M', 'N', NULL), (1999, 'JOLY', 'Bernard', NULL, NULL, NULL, 'M', 'N', NULL), (2000, 'SCALA', 'Laura', NULL, 0, 0, 'F', 'N', NULL), (2001, 'ALLRICH', 'Steve', NULL, 0, 0, 'M', 'N', NULL), (2002, 'HINDLE', 'John V.', NULL, NULL, NULL, 'M', 'N', NULL), (2003, 'FONKENELL', 'Guillaume', NULL, NULL, NULL, 'M', 'N', NULL), (2004, 'NAUDEIX', 'Hubert', NULL, NULL, NULL, 'M', 'N', NULL), (2005, 'WILLMERDING', 'John', NULL, NULL, NULL, 'M', 'N', NULL), (2006, 'CLASSEN KNUTSON', 'Anne', NULL, 0, 0, 'F', 'N', NULL), (2007, 'LEVY', 'Patrick', NULL, NULL, NULL, 'M', 'N', NULL), (2008, 'WILSON', 'Michael', NULL, NULL, NULL, 'M', 'N', NULL), (2009, 'LAYTON', 'Marc C.', NULL, NULL, NULL, 'M', 'N', NULL), (2010, 'EOUZAN', 'Guillaume', NULL, NULL, NULL, 'M', 'N', NULL), (2011, 'GUISSANI', 'Arnaud', NULL, NULL, NULL, 'M', 'N', NULL), (2012, 'DEMAREE', 'David', NULL, NULL, NULL, 'M', 'N', NULL), (2013, 'STIOUI', 'Jérôme', NULL, NULL, NULL, 'M', 'N', NULL), (2014, 'PIRES', 'Thierry', NULL, NULL, NULL, 'M', 'N', NULL), (2015, 'HAN', 'Byung-Chul', NULL, NULL, NULL, 'M', 'N', NULL), (2016, 'GRAY', 'Henry', NULL, NULL, NULL, 'M', 'N', NULL), (2017, 'MIQUEL', 'Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (2018, 'RINGARD', 'Julien', NULL, NULL, NULL, 'M', 'N', NULL), (2019, 'THIERS', 'Benjamin', NULL, NULL, NULL, 'M', 'N', NULL), (2020, 'MARTIN', 'Alexandra', NULL, NULL, NULL, 'F', 'N', NULL), (2021, 'CHARTIER', 'Mathieu', NULL, 0, 0, 'M', 'N', NULL), (2022, 'PARMELIN', 'Hélène', NULL, 0, 0, 'F', 'N', NULL), (2023, 'ELLUL', 'Jacques', NULL, NULL, NULL, 'M', 'N', NULL), (2024, 'LAURENT', 'Jeanne', NULL, 0, 0, 'F', 'N', NULL), (2025, 'MULLER', 'Joseph-Emile', NULL, NULL, NULL, 'M', 'N', NULL), (2026, 'PLUNKETT', 'Patrice de', NULL, 0, 0, 'M', 'N', NULL), (2027, 'LIPOVETSKY', 'Gilles', NULL, NULL, NULL, 'M', 'N', NULL), (2028, 'ARON', 'Jean-Paul', NULL, NULL, NULL, 'M', 'N', NULL), (2029, 'CLOT', 'René-Jean', NULL, 0, 0, 'M', 'N', NULL), (2030, 'GAUDIBERT', 'Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (2031, 'CUECO', 'Henri', NULL, NULL, NULL, 'M', 'N', NULL), (2032, 'GUILBAUT', 'Serge', NULL, NULL, NULL, 'M', 'N', NULL), (2033, 'MESCHONNIC', 'Henri', NULL, 0, 0, 'M', 'N', NULL), (2034, 'DANCHIN', 'Laurent', NULL, 1946, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Laurent_Danchin'), (2035, 'RIVIERE', 'Philippe', NULL, NULL, NULL, 'M', 'N', NULL), (2036, 'HUGONOT', 'Marie-Christine', NULL, 0, 0, 'F', 'N', NULL), (2037, 'HUNTER', 'Mark', NULL, 0, 0, 'M', 'N', NULL), (2038, 'MOURLET', 'Michel', NULL, NULL, NULL, 'M', 'N', NULL), (2039, 'RIGAUD', 'Jacques', NULL, NULL, NULL, 'M', 'N', NULL), (2040, 'SIMMONOT', 'Philippe', NULL, 1941, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Philippe_Simonnot'), (2041, 'DURET-ROBERT', 'François', NULL, NULL, NULL, 'M', 'N', NULL), (2042, 'FUMAROLI', 'Marc', NULL, 1932, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Marc_Fumaroli'), (2043, 'WALLON', 'Emmanuel', NULL, NULL, NULL, 'M', 'N', NULL), (2044, 'DURCA', 'Daniel', NULL, NULL, NULL, 'M', 'N', NULL), (2045, 'SCHNEIDER', 'Michel', NULL, NULL, NULL, 'M', 'N', NULL), (2046, 'COLIN', 'Jean-Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (2047, 'DONNAT', 'Olivier', NULL, NULL, NULL, 'M', 'N', NULL), (2048, 'FRECHURET', 'Maurice', NULL, NULL, NULL, 'M', 'N', NULL), (2050, 'DUTEURTRE', 'Benoît', NULL, NULL, NULL, 'M', 'N', NULL), (2051, 'URFALINO', 'Philippe', NULL, NULL, NULL, 'M', 'N', NULL), (2052, 'VILKAS', 'Catherine', NULL, 0, 0, 'F', 'N', NULL), (2053, 'MATHIEU', 'Georges', NULL, NULL, NULL, 'M', 'N', NULL), (2054, 'SERANE', 'Hervé', NULL, NULL, NULL, 'M', 'N', NULL), (2055, 'FOREST', 'Fred', NULL, 1933, 0, 'M', 'N', 'https://fr.wikipedia.org/wiki/Fred_Forest'), (2056, 'HAROUEL', 'Jean-Louis', NULL, NULL, NULL, 'M', 'N', NULL), (2057, 'HEINICH', 'Nathalie', NULL, 0, 0, 'F', 'N', NULL), (2058, 'CYVOCT', 'Colin', NULL, NULL, NULL, 'M', 'N', NULL), (2059, 'MARREY', 'Gilles', NULL, NULL, NULL, 'M', 'N', NULL), (2060, 'SALLANTIN', 'Marie', NULL, 0, 0, 'F', 'N', NULL), (2061, 'SOUCHAUD', 'Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (2062, 'RUBY', 'Christian', NULL, 0, 0, 'M', 'N', NULL), (2063, 'DERIVERY', 'François', NULL, NULL, NULL, 'M', 'N', NULL), (2064, 'DESCARGUES', 'Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (2065, 'EDELMAN', 'Bernard', NULL, NULL, NULL, 'M', 'N', NULL), (2066, 'EDELMAN', 'Gérard', NULL, NULL, NULL, 'M', 'N', NULL), (2067, 'LEVY', 'Elisabeth', NULL, 0, 0, 'F', 'N', NULL), (2068, 'QUEMIN', 'Alain', NULL, NULL, NULL, 'M', 'N', NULL), (2069, 'LIOT', 'Françoise', NULL, NULL, NULL, 'F', 'N', NULL), (2070, 'RANCIERE', 'Jacques', NULL, 1940, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Ranci%C3%A8re'), (2071, 'SOURGINS', 'Christine', NULL, 0, 0, 'F', 'N', NULL), (2072, 'PERROT', 'Raymond', NULL, 0, 0, 'M', 'N', NULL), (2073, 'NAULLEAU', 'Eric', NULL, 1961, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89ric_Naulleau'), (2074, 'MARTEL', 'Frédéric', NULL, 0, 0, 'M', 'N', NULL), (2075, 'MAVRAKIS', 'Kostas', NULL, NULL, NULL, 'M', 'N', NULL), (2076, 'KERROS', 'Aude de', NULL, 1947, 0, 'F', 'N', 'https://fr.wikipedia.org/wiki/Aude_de_Kerros'), (2077, 'PEKIN', 'Amélie', NULL, NULL, NULL, 'F', 'N', NULL), (2078, 'BAECQUE', 'Antoine de', NULL, NULL, NULL, 'M', 'N', NULL), (2079, 'THORNTON', 'Sarah', NULL, 0, 0, 'F', 'N', NULL), (2080, 'CHEVALLIER', 'Francois', NULL, NULL, NULL, 'M', 'N', NULL), (2081, 'NEMO', 'Philippe', NULL, NULL, NULL, 'M', 'N', NULL), (2082, 'CRAMOISAN', 'Jean-Pierre', NULL, NULL, NULL, 'M', 'N', NULL), (2083, 'ESTEROLLE', 'Nicole', NULL, 0, 0, 'F', 'N', NULL), (2084, 'TROYAS', 'Alain', NULL, NULL, NULL, 'M', 'N', NULL), (2085, 'LAUDE', 'Jean', NULL, 1922, 1984, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Laude'), (2086, 'EINSTEIN', 'Carl', NULL, 1885, 1940, 'M', 'N', 'https://fr.wikipedia.org/wiki/Carl_Einstein'), (2087, 'RENGER-PATZSCH', 'Albert', NULL, 1897, 1966, 'M', 'N', 'https://fr.wikipedia.org/wiki/Albert_Renger-Patzsch'), (2088, 'CASSOU', 'Jean', NULL, 1897, 1986, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Cassou'), (2089, 'DIX', 'Otto', NULL, 1891, 1969, 'M', 'N', 'https://fr.wikipedia.org/wiki/Otto_Dix'), (2090, 'LEBEER', 'Irmeline', NULL, 0, 0, 'M', 'N', NULL), (2091, 'MAGRITTE', 'René', NULL, 1898, 1967, 'M', 'N', 'https://fr.wikipedia.org/wiki/Ren%C3%A9_Magritte'), (2092, 'HOFMANN', 'Wener', NULL, 1928, 2013, 'M', 'N', 'https://fr.wikipedia.org/wiki/Werner_Hofmann'), (2093, 'VIATTE', 'Germain', NULL, 1939, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Germain_Viatte'), (2094, 'NEWMANN', 'Barnett', NULL, 1905, 1970, 'M', 'N', 'https://fr.wikipedia.org/wiki/Barnett_Newman'), (2095, 'SECKEL', 'Hélène', NULL, 0, 0, 'F', 'N', NULL), (2096, 'MEFFRE', 'Liliane', NULL, 0, 0, 'F', 'Y', NULL), (2097, 'MARCADE', 'Jean-Claude', NULL, NULL, NULL, 'M', 'N', NULL), (2098, 'DOUGLAS', 'Charlotte', NULL, 0, 0, 'F', 'N', NULL), (2099, 'COMPTON', 'Susan', NULL, 0, 0, 'F', 'N', NULL), (2100, 'BOWLT', 'John', NULL, 1946, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/John_Ellis_Bowlt'), (2101, 'ZADOVA', '', NULL, NULL, NULL, 'M', 'N', NULL), (2102, 'KRUTIKOV', 'Georgij', NULL, NULL, NULL, 'M', 'N', NULL), (2103, 'STANIC', 'Milovan', NULL, NULL, NULL, 'M', 'N', NULL), (2104, 'MAJAREVIVC', 'Igor', NULL, NULL, NULL, 'M', 'N', NULL), (2105, 'NOGUEZ', 'Dominique', NULL, 0, 0, 'M', 'N', NULL), (2106, 'BURLJUK', 'Derid', NULL, 0, 0, 'M', 'N', NULL), (2107, 'MATJDSIN', 'Mikajl Vasil\'evise', NULL, NULL, NULL, 'M', 'N', NULL), (2108, 'SEVCENKO', 'Alirksandr', NULL, NULL, NULL, 'M', 'N', NULL), (2109, 'KUL\'BIN', 'Nikolaj', NULL, 0, 0, 'M', 'N', NULL), (2110, 'PUNIN', 'Nikolaj', NULL, 0, 0, 'M', 'N', NULL), (2111, 'MALEVIC', 'Kazimir', NULL, NULL, NULL, 'M', 'N', NULL), (2112, 'MARKOV', 'Vladimir', NULL, NULL, NULL, 'M', 'N', NULL), (2113, 'PASSUTH', 'Krisztina', NULL, 1937, NULL, 'F', 'N', 'https://fr.wikipedia.org/wiki/Krisztina_Passuth'), (2114, 'MASON', 'Raymond', NULL, 1922, 2010, 'M', 'N', 'https://fr.wikipedia.org/wiki/Raymond_Mason'), (2115, 'PEIPER', 'Tadeusz', NULL, 1891, 1969, 'M', 'N', 'https://en.wikipedia.org/wiki/Tadeusz_Peiper'), (2116, 'MALEVIC', 'Kazimir', NULL, NULL, NULL, 'M', 'N', NULL), (2117, 'FEDOROV-DAVYDOV', 'German', NULL, 1931, 2000, 'M', 'N', 'https://en.wikipedia.org/wiki/German_Fedorov-Davydov'); INSERT INTO `bib_auteur` (`idauteur`, `nom_auteur`, `prenom_auteur`, `pseudo`, `birth`, `death`, `genre`, `traducteur`, `wikipedia`) VALUES (2118, 'STRIGALEV', 'A. A.', NULL, NULL, NULL, 'M', 'N', NULL), (2119, 'CAIZERGUES', 'Pierre', NULL, 1947, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Caizergues'), (2120, 'DERYNG', 'Xavier', NULL, NULL, NULL, 'M', 'N', NULL), (2121, 'ABADIE', 'Daniel', NULL, NULL, NULL, 'M', 'N', NULL), (2122, 'BREUNIG', 'Leroy C.', NULL, 1915, 1996, 'M', 'N', NULL), (2123, 'DECAUDIN', 'Michel', NULL, 1919, 2004, 'M', 'N', 'https://fr.wikipedia.org/wiki/Michel_D%C3%A9caudin'), (2124, 'LACAMBRE', 'Jean', NULL, NULL, NULL, 'M', 'N', NULL), (2125, 'DREUZY', 'Myriam de', NULL, NULL, NULL, 'F', 'N', NULL), (2126, 'LIONEL-MARIE', 'Annick', NULL, NULL, NULL, 'F', 'N', NULL), (2127, 'LINHARTOVA', 'Véra', NULL, 1938, NULL, 'F', 'N', 'https://fr.wikipedia.org/wiki/V%C4%9Bra_Linhartov%C3%A1'), (2128, 'LUMINET', 'Jean-Pierre', NULL, 1951, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean-Pierre_Luminet'), (2129, 'ICKE', 'David', NULL, 1952, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/David_Icke'), (2130, 'GORZ', 'André', NULL, 1923, 2007, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Gorz'), (2131, 'HERBERT', 'Josette', NULL, NULL, NULL, 'F', 'Y', NULL), (2132, 'HERBERT', 'Jean', NULL, 1897, 1980, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jean_Herbert'), (2133, 'ORLOV', 'Dmitry', NULL, 1962, NULL, 'M', 'N', 'https://en.wikipedia.org/wiki/Dmitry_Orlov_(writer)'), (2134, 'BREDEL', 'Thierry', NULL, NULL, NULL, 'M', 'N', NULL), (2135, 'SHEARMAN', 'John', NULL, 1931, 2003, 'M', 'N', 'https://en.wikipedia.org/wiki/John_Shearman'), (2136, 'KUHN', 'Thomas Samuel', NULL, 1922, 1996, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thomas_Samuel_Kuhn'), (2137, 'MEYER', 'Laure', NULL, NULL, NULL, 'F', 'Y', NULL), (2138, 'de VORAGINE', 'Jacques', NULL, 1228, 1298, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_de_Voragine'), (2139, 'THONDUP', 'Tulku', NULL, 1939, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Tulku_Thondup'), (2140, 'ROUANET', 'Virginie', NULL, NULL, NULL, 'M', 'N', NULL), (2141, 'CORNU', 'Virginie', NULL, NULL, NULL, 'M', 'N', NULL), (2142, 'FRY', 'Ben', NULL, 1975, NULL, 'M', 'N', 'https://en.wikipedia.org/wiki/Ben_Fry'), (2143, 'REAS', 'Casey', NULL, 1972, NULL, 'M', 'N', 'https://en.wikipedia.org/wiki/Casey_Reas'), (2144, 'KOESTLER', 'Arthur', NULL, 1905, 1983, 'M', 'N', 'https://fr.wikipedia.org/wiki/Arthur_Koestler'), (2145, 'McCarthy', 'Lauren', NULL, NULL, NULL, 'M', 'N', NULL), (2146, 'Parrish', 'Allison', NULL, NULL, NULL, 'M', 'N', NULL), (2147, 'WANGYAL RINPOCHE', 'Tenzin', NULL, 1961, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Tenzin_Wangyal_Rinpoch%C3%A9'), (2148, 'VIGREUX', 'Georges', NULL, NULL, NULL, 'M', 'N', NULL), (2149, 'CORNU', 'Philippe', NULL, 1957, NULL, 'M', 'Y', 'https://fr.wikipedia.org/wiki/Philippe_Cornu'), (2150, 'ELIZABETH', 'Laura', NULL, NULL, NULL, 'M', 'N', NULL), (2151, 'SUTTON', 'Marcy', NULL, NULL, NULL, 'M', 'N', NULL), (2152, 'ANDREW', 'Rachel', NULL, NULL, NULL, 'M', 'N', NULL), (2153, 'RIETHMUELLER', 'Mike', NULL, NULL, NULL, 'M', 'N', NULL), (2154, 'GARDNER', 'Lyza', NULL, NULL, NULL, 'M', 'N', NULL), (2155, 'WEISS', 'Yoav', NULL, NULL, NULL, 'M', 'N', NULL), (2156, 'ZUMBRUNNEN', 'Adrian', NULL, NULL, NULL, 'M', 'N', NULL), (2157, 'NUDELMAN', 'Greg', NULL, NULL, NULL, 'M', 'N', NULL), (2158, 'CANNON', 'Rose', NULL, NULL, NULL, 'F', 'N', NULL), (2159, 'FRIEDMAN', 'Vitaly', NULL, NULL, NULL, 'M', 'N', NULL), (2160, 'RIMPOCHE', 'Kalou', NULL, 1905, 1989, 'M', 'N', 'https://fr.wikipedia.org/wiki/Kalou_Rinpoch%C3%A9'), (2161, 'TREUNDROP LAMA', 'Denis', NULL, 1949, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Denys_Rinpoch%C3%A9'), (2162, 'VEROU', 'Lea', NULL, 1986, NULL, 'F', 'N', 'http://lea.verou.me/'), (2163, 'CROSSMAN', 'Sylvie', NULL, NULL, NULL, 'F', 'N', NULL), (2164, 'GAZAILLE', 'Marie-Pierre', NULL, NULL, NULL, 'F', 'N', NULL), (2165, 'GUEVIN', 'Marie-Lou', NULL, NULL, NULL, 'F', 'N', NULL), (2166, 'ARMANGE', 'Claire', NULL, NULL, NULL, 'F', 'N', NULL), (2167, 'PANNAFINO', 'James', NULL, NULL, NULL, 'M', 'N', 'http://jamespannafino.com/'), (2168, 'NIEDERST ROBBINS', 'Jennifer', NULL, 1950, NULL, 'F', 'N', NULL), (2169, 'SILVER', 'Adam', NULL, NULL, NULL, 'M', 'N', NULL), (2170, 'LOMAS', 'Rik', NULL, NULL, NULL, 'M', 'N', NULL), (2171, 'SAMARA', 'Tymothy', NULL, NULL, NULL, 'M', 'N', NULL), (2172, 'Bitmap Books', '', NULL, NULL, NULL, 'M', 'N', NULL), (2173, 'Design 360°', '', NULL, NULL, NULL, 'M', 'N', NULL), (2174, 'ZEMMOUR', 'Eric', NULL, 1958, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/%C3%89ric_Zemmour'), (2175, 'LEMAITRE', 'Denis', NULL, NULL, NULL, 'M', 'N', NULL), (2176, 'MAGER', 'Robert Frank', NULL, 1923, NULL, 'M', 'N', 'https://en.wikipedia.org/wiki/Robert_F._Mager'), (2177, 'CORMEN', 'Thomas H.', NULL, 1956, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Thomas_H._Cormen'), (2178, 'FAYER', 'L', NULL, NULL, NULL, 'M', 'N', NULL), (2179, 'DELAAGE', 'Guillaume', NULL, NULL, NULL, 'M', 'N', NULL), (2180, 'DELEDICQ', 'André', NULL, 1943, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andr%C3%A9_Deledicq'), (2181, 'KIPLING', 'Rudyard', NULL, 1865, 1936, 'M', 'N', 'https://fr.wikipedia.org/wiki/Rudyard_Kipling'), (2182, 'TSELENTIS', 'Jason', NULL, NULL, NULL, 'M', 'N', NULL), (2183, 'MARIAT', 'Benoît', NULL, NULL, NULL, 'M', 'N', NULL), (2184, 'BEN REBAT', 'Hassen', NULL, NULL, NULL, 'M', 'N', NULL), (2185, 'PINCHI', 'Dominique', NULL, NULL, NULL, 'M', 'N', NULL), (2186, 'STEER', 'John', NULL, NULL, NULL, 'M', 'N', NULL), (2187, 'GRIGSBY', 'Jason', NULL, NULL, NULL, 'M', 'N', NULL), (2188, 'PICKERING', 'Heydon', NULL, NULL, NULL, 'M', 'N', NULL), (2189, 'CARLI', 'Félicien', NULL, NULL, NULL, 'M', 'N', NULL), (2190, 'SAPKOWSKI', 'Andrzej', NULL, 1948, NULL, 'M', 'N', 'https://fr.wikipedia.org/wiki/Andrzej_Sapkowski'), (2191, 'DUNN', 'Christopher', NULL, 1956, NULL, 'M', 'N', NULL), (2192, 'VINCENT', 'Robert', NULL, 1925, NULL, 'M', 'N', NULL), (2193, 'RICE TUCKER', 'Catlin', NULL, NULL, NULL, 'F', 'N', NULL), (2194, 'WYCOFF', 'Tiffany', NULL, NULL, NULL, 'F', 'N', NULL), (2195, 'GREEN', 'Jason T.', NULL, NULL, NULL, 'M', 'N', NULL), (2196, 'SYDO', '', NULL, NULL, NULL, 'M', 'N', NULL), (2197, 'BOUCHUT', 'Fabienne', NULL, NULL, NULL, 'F', 'N', NULL), (2198, 'CAUDEN', 'Isabelle', NULL, NULL, NULL, 'F', 'N', NULL), (2199, 'MUSIAL', 'Manuel', NULL, NULL, NULL, 'M', 'N', NULL), (2200, 'PRADERE', 'Fabienne', NULL, NULL, NULL, 'F', 'N', NULL), (2201, 'POTTIEZ', 'Jonathan', NULL, NULL, NULL, 'M', 'N', NULL), (2202, 'LACROIX', 'Philippe', NULL, NULL, NULL, 'M', 'N', NULL), (2203, 'MEDJAD', 'Nadia', NULL, NULL, NULL, 'F', 'N', NULL), (2204, 'GIL', 'Philippe', NULL, NULL, NULL, 'M', 'N', NULL), (2205, 'JOVANOVIC', 'Pierre', NULL, 1960, NULL, 'M', 'N', NULL), (2206, 'VAILLANT', 'André', NULL, 1890, 1977, 'M', 'N', 'https://fr.wikipedia.org/wiki/André_Vaillant'), (2207, 'CINAMAR', 'Radu', NULL, NULL, NULL, 'M', 'N', NULL), (2208, 'GILOU', 'Pierre', NULL, 1938, 2019, 'M', 'N', 'https://fr.wikipedia.org/wiki/Pierre_Gilou'), (2210, 'GARNIER-MALET', 'Lucile', NULL, NULL, NULL, 'M', 'N', NULL), (2211, 'GARNIER-MALET', 'Jean-Pierre', NULL, 1940, NULL, 'F', 'N', NULL), (2212, 'PARKER', 'James R.', NULL, NULL, NULL, 'M', 'N', NULL), (2213, 'DIAMOND', 'Sarah L.', NULL, NULL, NULL, 'F', 'N', NULL), (2214, 'BOHNACKER', 'Hartmut', NULL, NULL, NULL, 'M', 'N', NULL), (2215, 'SHIFFMAN', 'Daniel', NULL, NULL, NULL, 'M', 'N', NULL), (2216, 'RUNBERG', 'Derek', NULL, NULL, NULL, 'M', 'N', NULL), (2217, 'PEARSON', 'Matt', NULL, NULL, NULL, 'M', 'N', NULL), (2218, 'TERZIDIS', 'Kostas', NULL, NULL, NULL, 'M', 'N', NULL), (2219, 'MONFORT', 'Nick', NULL, NULL, NULL, 'M', 'N', NULL), (2220, 'BAUDOIN', 'Patsy', NULL, NULL, NULL, 'M', 'N', NULL), (2221, 'BELL', 'John', NULL, NULL, NULL, 'M', 'N', NULL), (2222, 'BOGOST', 'Ian', NULL, NULL, NULL, 'M', 'N', NULL), (2223, 'DOUGLAS', 'Jeremy', NULL, NULL, NULL, 'M', 'N', NULL), (2224, 'MARINO', 'Mark C.', NULL, NULL, NULL, 'M', 'N', NULL), (2225, 'MATEAS', 'Michael', NULL, NULL, NULL, 'M', 'N', NULL), (2226, 'SAMPLE', 'Mark', NULL, NULL, NULL, 'M', 'N', NULL), (2227, 'VAWTER', 'Noah', NULL, NULL, NULL, 'M', 'N', NULL), (2228, 'COLLIN', 'Jacques', NULL, 1933, NULL, 'M', 'N', NULL), (2229, 'ALBINET', 'Marc', NULL, NULL, NULL, 'M', 'N', NULL), (2230, 'SOULIE', 'Daniel', NULL, NULL, NULL, 'M', 'N', NULL), (2231, 'ZAVAN', 'Laura', NULL, NULL, NULL, 'F', 'N', NULL), (2232, 'MEDECIN', 'Jacques', NULL, 1928, 1998, 'M', 'N', 'https://fr.wikipedia.org/wiki/Jacques_Médecin'), (2233, 'SCHEID', 'François', NULL, NULL, NULL, 'M', 'N', NULL), (2234, 'MONTAIGU de', 'Grégoire', NULL, NULL, NULL, 'M', 'N', NULL), (2235, 'VAILLANT', 'Renaud', NULL, NULL, NULL, 'M', 'N', NULL), (2236, 'LE BRETON', 'Ronan', NULL, NULL, NULL, 'M', 'N', NULL), (2237, 'TRICLOT', 'Mathieu', NULL, NULL, NULL, 'M', 'N', NULL), (2238, 'PEZONE', 'Alba', NULL, NULL, NULL, 'F', 'N', NULL), (2239, 'SCHREIER', 'Jason', NULL, NULL, NULL, 'M', 'N', NULL); -- -------------------------------------------------------- -- -- Structure de la table `bib_bibliotheques` -- CREATE TABLE `bib_bibliotheques` ( `bib_id` int(11) NOT NULL, `bib_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `bib_adresse` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `bib_ville` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_bibliotheques` -- INSERT INTO `bib_bibliotheques` (`bib_id`, `bib_name`, `bib_adresse`, `bib_ville`) VALUES (1, 'Malraux', '112 rue de Rennes,75006 Paris', 'Paris'), (2, 'Clignancourt', '29 rue Hermel,75018 Paris', 'Paris'), (3, 'Melville', '79 rue Nationale,75013 Paris', 'Paris'), (4, 'Parmentier', '20 avenue Parmentier,75011 Paris', 'Paris'), (5, 'Rochechouard', '', 'Paris'), (6, 'Buffon', '15 Bis rue Buffon,75005 Paris', 'Paris'), (7, 'Faidherbe', '18 rue Faidherbe,75011 PARIS', 'Paris'), (8, 'Margurerite Yourcenar', '41, rue d\'Alleray,75015 Paris', 'Paris'), (9, 'Villa Arson', '', 'Nice'), (10, 'Louis Nucera', '', 'Nice'), (11, 'Romain Gary', '', 'Nice'), (12, 'BPI Pompidou', '', 'Paris'); -- -------------------------------------------------------- -- -- Structure de la table `bib_collections` -- CREATE TABLE `bib_collections` ( `idediteurs` int(11) NOT NULL DEFAULT 0, `idcollections` int(11) NOT NULL, `nom_coll` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `annee_coll` varchar(10) CHARACTER SET utf8 DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -- -- Déchargement des données de la table `bib_collections` -- INSERT INTO `bib_collections` (`idediteurs`, `idcollections`, `nom_coll`, `annee_coll`) VALUES (2, 1, 'Mini Carte', '2004'), (2, 2, 'Romans et nouvelles', '2003'), (3, 3, 'Héros d\'aventures', '1942–1944'), (4, 4, 'Nouvelles nouvelles', '2004'), (6, 5, 'Babel', '1992'), (6, 6, 'Domaine français', '2000'), (6, 7, 'Le Génie du philosophe', '1988'), (6, 8, 'Lettres hispaniques', '2004'), (6, 9, 'Lettres japonaises', '2002'), (6, 10, 'Lettres scandinaves', '1990'), (6, 11, 'Les Mondes connus et inconnus', '2004'), (7, 12, 'Babel', '1989'), (8, 13, 'Les trois souhaits', '2005'), (9, 14, 'La feuille de la compagnie', '2003'), (10, 15, 'Star Trek – Deep space neuf', '1999-2002'), (10, 16, 'Star Trek voyageur', '1999-2002'), (11, 17, 'Livres jeunesse', '1996'), (12, 18, 'Ciel & Espace', '2006'), (13, 19, 'Bibliothèque l\'âge d\'homme', '1977-1990'), (13, 20, 'Classiques slaves', '1993'), (13, 21, 'Mobiles', '1980'), (13, 22, 'Petite bibliothèque slave', '1993'), (13, 23, 'Petite Bibliothèque Slavica', '1972'), (13, 24, 'Poche Suisse', '1988'), (13, 25, 'Romantiques', '1979'), (15, 26, 'Marginales', '2004'), (16, 27, 'Les Œuvres de Jules Vernes', '1981'), (16, 28, 'Palme d\'or jeunesse', '1985'), (17, 29, 'Dossiers Z', '1981'), (18, 30, 'Bibliothèque du Merveilleux', '2003'), (23, 31, 'La guerre infernale', '1908'), (23, 32, 'Les récits mystérieux', '1912-1914'), (23, 33, 'Le roman d\'aventure', '1908'), (24, 34, 'La phalange', '1929'), (25, 35, 'Albin\'poche', '1987-1988'), (25, 36, 'Les Belles aventures', '1931-1949'), (25, 37, 'Les Belles aventures', '1950'), (25, 38, 'Bibliothèque Albin Michel Histoire', '1995'), (25, 39, 'Bibliothèque Albin Michel Idées', '2002'), (25, 40, 'Bibliothèque Albin Michel Poche', '2000'), (25, 41, 'Bibliothèque de l\'Évolution de l\'Humanité', '1995'), (25, 42, 'Blême', '1989-1992'), (25, 43, 'Cahiers de l\'hermétisme', '1986'), (25, 44, 'Epées et dragons', '1987-1989'), (25, 45, 'Fantastique', '1968'), (25, 46, 'Les Grandes traductions', '2000'), (25, 47, 'Les Grands mythes fondateurs de l\'Occident', '1984'), (25, 48, 'Mes belles histoires', '1922-1925'), (25, 49, 'Nouvelles nouvelles', '1966'), (25, 50, 'Le Roman littéraire', '1919-1924'), (25, 51, 'Romans étrangers', '1973'), (25, 52, 'Romans français', '1984'), (25, 53, 'SF (1ère série)', '1968-1969'), (25, 54, 'SF (2ème série)', '1972-1974'), (25, 55, 'Spécial fantastique', '1987-1988'), (25, 56, 'Spécial suspense', '1982'), (25, 57, 'Super + fiction', '1977-1984'), (25, 58, 'Super fiction', '1975-1983'), (26, 59, 'Albums illustrés', '2006'), (26, 60, 'Beaux Livres Jeunesse', '2001'), (26, 61, 'Les Grandes aventures racontées aux enfants', '2005'), (26, 62, 'Recueil de contes et histoires', '2005'), (26, 63, 'Romans - Les Compagnons de la peur', '1998-2000'), (26, 64, 'Wiz', '2002'), (29, 65, 'Essais', '1997-2005'), (29, 66, 'Recueils', '2000'), (29, 67, 'Romans', '1992'), (32, 68, 'Le Nouveau signe de piste', '1976-1981'), (32, 69, 'Safari signe de piste', '1971-1973'), (32, 70, 'Signe de piste', '1955-1956'), (33, 71, 'Fu Manchu ou le Défi de l\'Asie', '1978-1979'), (38, 72, 'Présence du futur', '1956'), (39, 73, 'd\'ailleurs', '1988'), (40, 74, 'SF', '2004'), (41, 75, 'Bibliothèque de l\'amitié', '1975'), (41, 76, 'Ma première amitié', '1978'), (41, 77, 'Les maîtres de l\'aventure', '1983-1988'), (42, 78, 'Sciences fiction', '1966'), (46, 79, 'Bob Morane en poche', '2001-2006'), (46, 80, 'Volumes', '2000'), (48, 81, 'Start', ''), (49, 82, 'Les Cahiers d\'Andromède', '1981-1985'), (49, 83, 'Proxima \"série Maison de la Fiction\"', '1988-1989'), (49, 84, 'Proxima (revue)', '1983-1985'), (49, 85, 'Proxima spécial (revue)', '1986-1988'), (49, 86, 'Visions de l\'étrange', '1985-1988'), (53, 87, 'La vagabonde', '2004'), (55, 88, 'Antarès (revue)', '1981-1996'), (55, 89, 'Les Mémoires des Ténèbres', '1982'), (55, 90, 'Les Mémoires du futur', '1982-1993'), (55, 91, 'l\'Or du temps', '1991'), (55, 92, 'Orion', ''), (57, 93, 'Médias et histoire', '2002'), (58, 94, 'Apex internationnal', '1995'), (58, 95, 'Hors-série (sciences fiction)', '1995'), (58, 96, 'Periodica', '1993-1995'), (61, 97, 'Lunes blafardes', '2006'), (63, 98, 'Espions de demain', '1954-1969'), (65, 99, 'Les champs magnétiques', '1954'), (66, 100, 'Essais', '2001'), (67, 101, 'Encyclopédie de la Terre du Milieu', '2002'), (68, 102, 'Star Trek', '1989'), (72, 103, 'Anticipations', '2006'), (72, 104, 'Fantastiques', '2003'), (74, 105, 'Arléa-poche', '2003'), (76, 106, 'Le crépuscule', '1952'), (77, 107, 'Levriou skol al louarn', '1992'), (80, 108, 'Amis des jeunes', '1950'), (81, 109, 'Traductologie', '1999'), (82, 110, 'Phénix (revue)', '1986-1991'), (84, 111, 'Gamme Nightprowler', '1996-1997'), (85, 112, 'Répliques pour le théâtre', '2002'), (86, 113, 'Nouvelles nouvelles', '1984'), (88, 114, 'Bibliothèque de l\'évasion', '1988-2001'), (88, 115, 'La Dentelle du Cygne', '1999'), (88, 116, 'Insomniaques et ferroviaires', '2000'), (88, 117, 'Romans', '2002'), (91, 118, 'Esse-Effe', '1988'), (93, 119, 'Pique rouge', '2001'), (95, 120, 'Avis de Tempête', '1996'), (95, 121, 'Jeunesse', '2000'), (95, 122, 'Légendaire', '2002'), (95, 123, 'Légendes de Faerie', '2006'), (97, 124, 'Originale illustrée', '1926'), (98, 125, 'Les populaires', '2006'), (98, 126, 'Regards croisés', '1997'), (100, 127, 'Collection U.S.A.', '1984'), (101, 128, 'Bilingue', '1968-1979'), (102, 129, 'USA', '1972'), (104, 130, 'Futurs / Sciences fiction', '1998-1991'), (107, 131, 'Figures mythiques', '1997'), (107, 132, 'Série Mutations', '2005'), (108, 133, 'Temps romanesque', '1996'), (111, 134, 'Le boudoir des gorgones', '2001'), (112, 135, 'Ouroboros - Les Terres Fantastiques Illustrées', '1969-1971'), (115, 136, 'Macno', '1998-2000'), (115, 137, 'Le Poulpe', '2001'), (116, 138, 'Nouvelles angleterres', '2000'), (118, 139, 'Autres rives', '2006'), (118, 140, 'Train jaune', '2005'), (119, 141, 'Les guides de l\'imaginaire', '2002'), (122, 142, 'Collection populaire d\'aujourd\'hui', '1978'), (122, 143, 'Grands romans d\'aventures modernes', '1926'), (122, 144, 'Les maîtres de la plume', '1931'), (123, 145, 'Bayard Culture', '2001'), (123, 146, 'Bayard jeunesse', '2002'), (123, 147, 'Bayard poche', '1996'), (123, 148, 'Bayard poche hors-série', '2000'), (123, 149, 'Les Belles histoires', '1990'), (123, 150, 'Chair de poule', '1995'), (123, 151, 'Les Imaginaires Hors Collection', '2000'), (123, 152, 'J\'Aime Lire', '1988'), (123, 153, 'Je bouquine', '1991'), (123, 154, 'Je bouquine (revue)', '1989'), (123, 155, 'Mes premiers J\'aime Lire', '1999'), (123, 156, 'Les Mondes Imaginaires', '2001'), (123, 157, 'Les Romans de Je bouquine', '1997'), (125, 158, 'Dracula-pocket', '1966'), (126, 159, 'Prémices', '2004'), (127, 160, 'Domaine fantastique', '1969-1975'), (127, 161, 'Littératures étrangères', '1988'), (127, 162, 'Micro-romans Belfond', '1988'), (127, 163, 'Nuits noires', '1988-1998'), (127, 164, 'Poche-club fantastique', '1966'), (127, 165, 'Les Portes de la nuit', '1987'), (128, 166, 'Etoiles vives (revue)', '1997-2002'), (128, 167, 'Fantasy', '1998'), (128, 168, 'Psychoses', '1997-1999'), (128, 169, 'Sciences fiction', '1997'), (128, 170, 'Yellow submarine', '1998'), (129, 171, 'Regard sur le science', '2005'), (129, 172, 'Sujets', '2001-2005'), (130, 173, 'Le cabinet noir', '1997-2003'), (130, 174, 'Le grand cabinet noir', '1998'), (130, 175, 'Histoire', '2005'), (130, 176, 'Sortilèges', '1998-1999'), (130, 177, 'Universités de France', '1960-1969'), (130, 178, 'Vérités des mythes', '1998'), (131, 179, 'Mercuria', '2003'), (133, 180, 'La Licorne', '1987'), (133, 181, 'Ma première bibliothèque', '1950-1952'), (134, 182, 'Les billets de la bibliothèque', '2002'), (137, 183, 'Magic', '2007'), (137, 184, 'Warhammer', '2005'), (137, 185, 'Warhammer 40.000', '2005'), (140, 186, 'l\'Impression du voyage - catalogus d\'exposition', '1997'), (141, 187, 'Littérature', '1988'), (142, 188, 'Babel library', '2004'), (142, 189, 'Rivière blanche', '2004'), (142, 190, 'Rivière blanche – dimension', '2006'), (147, 191, 'Etoiles', '1946'), (147, 192, 'Roman populaire', '1936'), (149, 193, 'Classiques français', '1994-1996'), (151, 194, 'Aux quatre coins du temps', '1982-1987'), (151, 195, 'Bordas Connaissance', '1971'), (151, 196, 'Classiques Junior Bordas', '1979'), (151, 197, 'Les Compacts', '1993-1994'), (151, 198, 'Les Imaginaires', '1946'), (151, 199, 'Thèmes littéraires', '1992'), (153, 200, 'Documents et anticipations', '1932'), (153, 201, 'Veillées de bohêmes', '1927'), (154, 202, 'Junior', '1963'), (157, 203, 'Essais', '2005'), (157, 204, 'l\'Ombre', '2006'), (157, 205, 'Sciences-fiction', '2005'), (159, 206, 'Brèves – Anthologie de la nouvelle (revue)', '1997'), (164, 207, 'Fantasy', '1997'), (165, 208, 'Runes', '1996'), (166, 209, 'Redviva', '1993'), (167, 210, 'Guillaume (éditions du Figaro)', '1989'), (168, 211, 'Science-fiction', '2005'), (169, 212, 'Espace(s)', '2005'), (170, 213, 'Sélections fantastiques', '1954-1955'), (173, 214, 'Les chefs d\'oeuvre de la science fiction et du fantastique', '1973-1975'), (174, 215, 'Dimensions SF', '1973-1984'), (174, 216, 'Fantasy', '2005'), (174, 217, 'Interstices', '2006'), (174, 218, 'Nouvelle collection illustrée', '1912-1917'), (174, 219, 'Suspense', '1997-1999'), (174, 220, 'La Tulipe Noire', '1955'), (174, 221, 'Le Zodiaque', '1908'), (175, 222, 'Revolver', '1995'), (176, 223, 'Classique', '1998'), (176, 224, 'Jeunesse', '1994-1995'), (177, 225, 'Lancedragon', '1987'), (179, 226, 'Littératures', '1999'), (182, 227, 'Les Albums Duculot', '1997-2002'), (182, 228, 'l\'Ami de poche', '1980-1983'), (182, 229, 'Autres temps, autres mondes - Anthologies', '1963-1983'), (182, 230, 'Autres temps, autres mondes - Romans', '1975-1983'), (182, 231, 'Bibliothèque bleue', '1994-1994'), (182, 232, 'Dix & Plus', '1998-2001'), (182, 233, 'Hors-Série Nature', '1993-1993'), (182, 234, 'Huit & Plus', '1997-1997'), (182, 235, 'La Palme d\'or', '1973-1973'), (182, 236, 'Plaisir des comptes', '1964-1964'), (183, 237, 'Idées reçues', '2005'), (184, 238, 'Futur fiction fantastique', '1997-2002'), (185, 239, 'Les Nouvelles nouvelles', '1985-1987'), (186, 240, 'Bibliothèque des Paralittératures', '1996'), (187, 241, 'Textes et documents pour la classe', '1996'), (190, 242, '7ème art', '1958-1970'), (191, 243, 'Mini-Phénix (revue)', '2004'), (193, 244, 'Chute libre', '1974-1978'), (196, 245, 'Classique pour jeunes lecteurs', '1981'), (197, 246, 'Librairie d\'éducation pour la jeunesse', '1987'), (198, 247, 'l\'incroyable', '1946'), (199, 248, 'Bien lire', '1997'), (201, 249, 'Voyages imaginaires, songes, visions et romans cabalistiques', '1787-1789'), (202, 250, 'Lecture et loisir', '1960-1961'), (204, 251, 'La merveille', '2005'), (204, 252, 'Rouge et noir', '2002'), (207, 253, 'Ailleurs', '2004'), (207, 254, 'La bilbiothèque Verne', '1989-1993'), (207, 255, 'Lot 49', '2006'), (207, 256, 'NéO', '2004'), (208, 257, 'Dans l\'épouvante', '1970-1972'), (212, 258, 'Archipels', '1988-1988'), (212, 259, 'Au troisième œil', '1983-1987'), (212, 260, 'Azimut', '1987-1987'), (212, 261, 'Facettes du roman policier et du roman noir', '1982-1983'), (212, 262, 'Polar', '1981-1984'), (212, 263, 'Série 33', ' 1988-1988'), (213, 264, 'Traits de plume', '2004'), (214, 265, 'Lectures clé en français facile', '1997-1998'), (215, 266, 'Le club Diogène', '2002'), (215, 267, 'KnThOn', '1999'), (215, 268, 'Spiritus mundi', '1990'), (215, 269, 'Ténèbres et Cie', '1999'), (216, 270, 'l\'éclaircie', '2002'), (217, 271, 'Les balèzes', '1994'), (218, 272, 'Pour la jeunesse', '1939-1942'), (219, 273, 'Bibliothèque de culture littéraire', '1964'), (220, 274, 'Les beaux romans', '1955'), (221, 275, 'La bibliothèque de l\'honnête homme', '1955'), (223, 276, 'Grand livre du mois', '1969'), (223, 277, 'Récits', '1943'), (224, 278, 'CNRS Littérature', '2004'), (226, 279, 'Les romans romanesques', '1942-1943'), (231, 280, 'Beaux livres', '1980'), (232, 281, 'Bibliothèque complexe', '1995'), (232, 282, 'l\'heure furtive', '2003'), (235, 283, 'Conférence (revue)', '2005'), (242, 284, 'Contes de l\'univers connu', '1998'), (242, 285, 'Fantastiques', '1990'), (242, 286, 'Harry Dickson', '1983-1985'), (243, 287, 'Collection du lecteur', '1931'), (246, 288, 'Sombre crapule', '1988'), (247, 289, 'Les voyages extraordinaires', '1990'), (250, 290, 'Conte philosophique', ' 1997'), (250, 291, 'Fantastique', '1997'), (250, 292, 'Fantasy', '2003'), (250, 293, 'Littérature générale', '2001'), (250, 294, 'Policier', ' 1998'), (250, 295, 'Science-Fiction', '1998'), (251, 296, 'Furies', '1994'), (253, 297, 'Sciences fiction suspense', '1960-1961'), (254, 298, 'Dapper littérature', '2000'), (255, 299, 'L\'élan', '1947'), (256, 300, 'L\'Archet vert', '1983-1985'), (256, 301, 'Lecture et loisir', '1980'), (256, 302, 'Lecture et loisir jeunesse', '1982'), (257, 303, 'Univers des sciences humaines', '1976'), (260, 304, 'Culte fictions', '2003'), (260, 305, 'Enquêtes', '1996'), (260, 306, 'Fictions', '1985-1987'), (260, 307, 'Pulp fictions', '2004'), (261, 308, 'Le cadran bleu – Fantastique', '2000-2004'), (261, 309, 'Le cadrant bleu – légende', '2000-2004'), (261, 310, 'Le cadran bleu – SF', '2000-2004'), (261, 311, 'Grand format', '2002-2004'), (262, 312, 'Aventure et jeunesse', '1956-1961'), (262, 313, 'Bouton d\'or', '1964-1965'), (262, 314, 'Les enfants à travers L\'histoire', '1917'), (263, 315, 'Sèrie B', '2002'), (265, 316, 'Esso (hors commerce)', '1981'), (266, 317, '& d\'ailleurs', ' 1999'), (266, 318, 'Arc-en-ciel', '1980-1980'), (266, 319, 'Catalogue analytique', '1986-2000'), (266, 320, 'Les Chefs d\'Œuvre de la Science Fiction et du Fantastique', '1973-1973'), (266, 321, 'Des heures durant', '2003'), (266, 322, 'Empreinte', '1993'), (266, 323, 'Etoile Double', '1984-1985'), (266, 324, 'Graphic', '2004'), (266, 325, 'L\'Infini', '1986-1986'), (266, 326, 'Jaune', '1959-1959'), (266, 327, 'Lettres nouvelles', '1970-1970'), (266, 328, 'Lunes d\'Encre', '1999'), (266, 329, 'Présence du fantastique', '1989-1998'), (266, 330, 'Présence du futur', '1954-2000'), (266, 331, 'Présences', '1991-1998'), (266, 332, 'Redécouvertes', '1973-1973'), (266, 333, 'Relire', '1977-1977'), (266, 334, 'Romans français', '1962-1962'), (266, 335, 'Science-fiction revue', '1984-1986'), (266, 336, 'Serial Thriller', ' 2001-2001'), (266, 337, 'Sueurs froides', '1976-1998'), (266, 338, 'X-trême', ' 2004'), (267, 339, 'Bibliothèque Médiations', '1981'), (269, 340, 'Changez de fiction', '1997-1978'), (270, 341, 'Cahiers de L\'Hermétisme', '2002'), (273, 342, 'La bibliothèque solarienne', '1995-1996'), (274, 343, 'Étoile d\'or / Aventures dans L\'espace', '1959-1967'), (274, 344, 'Étoile d\'or / Aventures dans L\'espace - grand format', '1958-1959'), (274, 345, 'Mot de passe : évasion', '1995-1995'), (274, 346, 'Mot de passe : fantastique', '1995-1995'), (274, 347, 'Les Romans du Livre d\'Or', '1981-1981'), (275, 348, 'Lumières interdites', '1955-1957'), (278, 349, 'Lattitudes', '1997'), (281, 350, 'Cantos', '1978'), (282, 351, 'La ligne de temps', '2004'), (284, 352, 'La chouette', '1956-1960'), (284, 353, 'Sciences-S-fiction', '1960'), (285, 354, 'Agence Arkham', ' 1997-199'), (285, 355, 'Cyberdreams, la collection', ' 1995-1998'), (285, 356, 'CyberDreams, la revue', '1994-1998'), (285, 357, 'Le Guide du téléfan', '1992-1998'), (285, 358, 'Minipoche', '1999-1999'), (286, 359, 'Ecrits de L\'ombre', '1972'), (289, 360, 'Ciné Films', '2002'), (290, 361, '100tinelles', '2004'), (290, 362, 'Différentes visions', '2006'), (294, 363, 'Travelling', '1989'), (294, 364, 'Travelling sur le futur', '1977-1981'), (295, 365, 'Inconscient et culture', '1986'), (297, 366, 'Collection verte – Aventures', '1937'), (297, 367, 'Spirou sélection', '1944-1952'), (299, 368, 'L\'Eternel retour', '2002'), (302, 369, 'L\'autre côté', '2006'), (302, 370, 'Aventures et mystères', '2004'), (302, 371, 'Histoire', '2000-2001'), (303, 372, 'Spéciales', '2007'), (305, 373, 'Albums', ' 1982-2002'), (305, 374, 'Classiques abrégés', ' 1982-2005'), (305, 375, 'Majeur', '1989-1989'), (305, 376, 'Médium', '1988-2005'), (305, 377, 'Médium poche', '1986'), (305, 378, 'Neuf', ' 1982-2001'), (305, 379, 'Neuf en poche', '1988-1988'), (305, 380, 'Nouvelles et romans de L\'école des loisirs', '1982-1982'), (305, 381, 'Pastel', '2003'), (306, 382, 'Le livre de prix', '1939'), (307, 383, 'Grands classiques', '1996'), (308, 384, 'Agendas', '1998'), (308, 385, 'Fictions', '2003'), (311, 386, 'Enigme autour du monde', '1963'), (312, 387, 'Collection littéraire des romans d\'aventure', '1920'), (313, 388, 'Les oeuvres complètes d\'Edgar Rice Burroughs – Mars', '1970-1971'), (313, 389, 'Les oeuvres complètes d\'Edgar Rice Burroughs – Pellucidar', '1971'), (313, 390, 'Les oeuvres complètes d\'Edgar Rice Burroughs – Tarzan', '1970-1971'), (315, 391, 'Vie et aventures', '1945'), (316, 392, 'Succès du livre', '1988-2003'), (322, 393, 'Ailleurs et demain', '1996'), (323, 394, 'Pao Tchéou, le maître de L\'invisible', '1945-1947'), (325, 395, 'Le demi-siècle de la science', '1960'), (325, 396, 'Galaxie', '1951'), (328, 397, 'La petite librairie', '1991'), (330, 398, 'Signe de piste', '1986-1987'), (321, 399, 'Figures', '2002'), (321, 400, 'U21', '2003'), (332, 401, 'Mini poche jeunesse', '1994'), (334, 402, 'Anticipation', '1983-1984'), (334, 403, 'Les Chefs-d\'oeuvre de la science-fiction', '1974-1976'), (334, 404, 'Jeunesse', '1995-1995'), (335, 405, 'Bulles de sciences', '2003'), (337, 406, 'Sâr Dubnotal', '1909'), (339, 407, 'Demain est là', '1963'), (340, 408, 'Réseau', '2006'), (341, 409, 'Ateleier de L\'imaginaire', '2004'), (345, 410, 'Jacques de Saint-Paul', '1979-1980'), (346, 411, 'Classique', '1996-1996'), (346, 412, 'Effrois', '1988-1993'), (346, 413, 'Interface', '1995'), (346, 414, 'Lettres Science-Fiction', '1996-1999'), (346, 415, 'Portraits', '1987-1988'), (346, 416, 'Pulps', ' 1987-1990'), (346, 417, 'Pulsar', '1995-1995'), (346, 418, 'Références', ' 1996'), (346, 419, 'Revue Jules Verne', '2002-2002'), (346, 420, 'Le Rocambole revue', '1999'), (346, 421, 'Romans', '1996-1996'), (346, 422, 'Travaux', ' 1989'), (346, 423, 'Travaux bis', '1998'), (347, 424, 'L\'utopie tout de suite – H.C.', '1979-1980'), (347, 425, 'L\'utopie tout de suite _ Romans', '1979'), (349, 426, 'Ailleurs', ' 2004'), (349, 427, 'Anticipations', '2006'), (349, 428, 'Fantasy', '2006'), (349, 429, 'Futurs', '2004'), (349, 430, 'Lunatique', '2005'), (349, 431, 'Rétrofuturs', '2004'), (349, 432, 'Séries', '2005'), (350, 433, 'Renews', '2005'), (351, 434, 'E.L./science-fiction', ' 1968-1968'), (351, 435, 'Le Second degré', '1960-1960'), (351, 436, 'Le Second rayon', '1976-1976'), (351, 437, 'Textes insolites', '1966-1966'), (356, 438, 'Domaine russe', '2002'), (358, 439, 'Médiéval fantastique', '2004'), (359, 440, 'l\'aviateur de Bonaparte', '1994'), (361, 441, 'Flash Gordon', '1981'), (361, 442, 'Melchior', '1980'), (361, 443, 'Playboy', '1984-1985'), (362, 444, 'Europe (revue)', '1977-2001'), (365, 445, 'Editions snake', '1980'), (366, 446, 'Bibliothèque de l\'aventure', '1996'), (368, 447, 'Grands romans contemporains', '1974'), (371, 448, '1000 épisodes', '1979'), (371, 449, 'Document', '1981'), (371, 450, 'Prélude', '1957-1979'), (372, 451, 'Bibliothèque Charpentier', '1929-1935'), (374, 452, 'l\'Aventure', '1929-1930'), (374, 453, 'l\'Aventure criminelle', '1959-1959'), (374, 454, 'Bibliothèque Bernard Grasset', '1951-1951'), (374, 455, 'Cahiers de l\'Herne', '1998-1998'), (374, 456, 'De l\'Italie', '1988-1988'), (374, 457, 'Le Livre populaire', '1931-1931'), (374, 458, 'Le Roman policier', '1945-1945'), (374, 459, 'Le Saint', '1956-1959'), (374, 460, 'Voyages scientifiques extraordinaires', '1892-1894'), (376, 461, 'Fiction', '2003'), (377, 462, 'Les hypermondes', '1935-1937'), (379, 463, '20000 lieues à travers le monde', '1923-1924'), (379, 464, 'Les Aventuriers du ciel 2ème édition', '1950-1951'), (379, 465, 'Les Aventuriers du ciel', '1935-1937'), (379, 466, 'Le Corsaire sous-marin - 2ème édition', '1936-1937'), (379, 467, 'Le Corsaire sous-marin', '1912-1913'), (379, 468, 'Les Grandes aventures d\'un boy-scout', '1926-1926'), (379, 469, 'Le Livre de l\'aventure', '1929-1931'), (379, 470, 'Le Livre moderne illustré', '1928-1942'), (379, 471, 'Mon roman d\'aventures', '1942-1957'), (379, 472, 'Mon roman policier', '1946-1953'), (379, 473, 'Les Mystères de demain', '1923-1923'), (379, 474, 'Le Petit roman d\'aventures', '1936-1941'), (379, 475, 'Police et mystère', '1932-1940'), (379, 476, 'Police et mystère', '1952-1952'), (379, 477, 'Les Robinsons de l\'île volante', '1937-1938'), (379, 478, 'Les Romans d\'aventure 1ère serie', '1921-1923'), (379, 479, 'Les Romans d\'aventure 2ème serie', '1925-1929'), (379, 480, 'Les Romans de Jean De La Hire', '1921-1921'), (379, 481, 'Les Voyages aériens d\'un petit parisien à travers le monde - 2eme édition', '1933-1935'), (379, 482, 'Voyages et aventures', '1933-1941'), (381, 483, 'Roman', '1997'), (382, 484, 'l\'Oeuvre complète', ''), (383, 485, 'Intermondes', '1976'), (383, 486, 'Les quatre Vents', '1988-1991'), (389, 487, 'l\'Âge d\'or', '1992-1992'), (389, 488, 'Bibliothèque Anglaise', '1984-1984'), (389, 489, 'Bibliothèque du Chat Perché', '1979-1982'), (389, 490, 'Climats', '2007'), (389, 491, 'Etat de choc', '1996-1996'), (389, 492, 'Étonnants classiques', '1996'), (389, 493, 'Les Grandes aventures', '1892-1892'), (389, 494, 'Grandes biographies', '1996'), (389, 495, 'Guillaume', '1912-1912'), (389, 496, 'Imagine', '1999-2004'), (389, 497, 'Ma lanterne magique', '1981-1981'), (389, 498, 'Quark Noir', '1999-2000'), (389, 499, 'Les Romans d\'aventures', '1922-1922'), (389, 500, 'Sciences humaines', '2004'), (389, 501, 'Textes', '1986-1986'), (389, 502, 'Tribal', '1999'), (391, 503, 'Black out', '1953'), (391, 504, 'Visions futures', '1952-1953'), (392, 505, 'Caravelles', '1958-1958'), (392, 506, 'Euréka', '1958-1958'), (392, 507, 'Jeunesse', '1997'), (392, 508, 'Z\'Azimut', '2000'), (392, 509, 'Zeste', '2006'), (393, 510, 'Angel', '2000-2004'), (393, 511, 'Angoisse', '1954-1974'), (393, 512, 'Angoisses', '1993-1994'), (393, 513, 'Anticipation', '1951-1997'), (393, 514, 'Les Aventures de Perry Rhodan', '1980-1983'), (393, 515, 'Aventures et mystères', '1995-1996'), (393, 516, 'Aventures sans frontières', '1995-1997'), (393, 517, 'Battletech', '1996-1997'), (393, 518, 'Les Best-sellers', '1982-1985'), (393, 519, 'Bibliothèque du Fantastique', '1997-1999'), (393, 520, 'Birthright', '1997-1998'), (393, 521, 'Bob Morane', '1988-1991'), (393, 522, 'Buffy contre les vampires', '1999-'), (393, 523, 'Charmed', '2001-'), (393, 524, 'Les Chevaliers de lumière', '1987-1991'), (393, 525, 'Cinéma', '2002-'), (393, 526, 'Collection noire', '1988-1989'), (393, 527, 'Compagnie des glaces - Chroniques glaciaires', '1999-2000'), (393, 528, 'Compagnie des glaces - l\'intégrale', '1996-2000'), (393, 529, 'La Compagnie des glaces - nouvelle époque', '2001-2005'), (393, 530, 'La Compagnie des glaces', '1988-1992'), (393, 531, 'Conan', '1993-1995'), (393, 532, 'Dark Angel', '2002-2003'), (393, 533, 'Diablo', '2003-2003'), (393, 534, 'Double', '1969-1969'), (393, 535, 'EarthDawn', '1997-1999'), (393, 536, 'Espionnage', '1978-1978'), (393, 537, 'F.A.U.S.T.', '1996-1997'), (393, 538, 'Fearless', '2002-2002'), (393, 539, 'Frayeur', '1994-1995'), (393, 540, 'Gore', '1985-1989'), (393, 541, 'Grand format - Fantastique', '2000-2001'), (393, 542, 'Grand format - Fantasy', '1998-2004'), (393, 543, 'Grand format - SF', '1998-2001'), (393, 544, 'Grand succès', '1985-1985'), (393, 545, 'Halo', '2004-2005'), (393, 546, 'Lancedragon', '1996-'), (393, 547, 'Magic', '1996-1998'), (393, 548, 'Les Maîtres français de la Science-Fiction', '1988-1991'), (393, 549, 'Marc Stone', '1998-1998'), (393, 550, 'Perry Rhodan', '1989-'), (393, 551, 'Perry Rhodan : Atlan', '2002-'), (393, 552, 'Polar', '1998-1998'), (393, 553, 'Ravenloft', '1995-1998'), (393, 554, 'Rendez-vous ailleurs', '2002-'), (393, 555, 'Resident Evil', '2002-2005'), (393, 556, 'Robert E. Howard', '1991-1993'), (393, 557, 'Roswell', '2001-2004'), (393, 558, 'Les Royaumes Oubliés - Double Diamant', '1998-1998'), (393, 559, 'Les Royaumes Oubliés', '1994-'), (393, 560, 'SF', '1997-1999'), (393, 561, 'Shadowrun', '1994-2001'), (393, 562, 'Smallville', '2003-'), (393, 563, 'Star Trek', '1993-2001'), (393, 564, 'Star wars', '1999-'), (393, 565, 'StarCraft', '2003-2003'), (393, 566, 'Super héros', '1994-1995'), (393, 567, 'Super poche', '1993-1997'), (393, 568, 'Super-luxe', '1974-1997'), (393, 569, 'Thraxas', '2002-2002'), (393, 570, 'Thriller Fantastique', '2003-'), (393, 571, 'Titan', '2000-2000'), (393, 572, 'Tomb Raider', '2004-2005'), (393, 573, 'Vampire', '1998'), (393, 574, 'La Vampire', '2000-2001'), (393, 575, 'Virtuel', '1996-1996'), (393, 576, 'WarCraft', '2003-'), (394, 577, 'Grands romans romanesques', '1949'), (395, 578, 'Espace infini', '2002'), (396, 579, 'Fantasy', '1998'), (396, 580, 'Poche revolver fantastique', '1996-1997'), (396, 581, 'Poche révolver science-fiction', '1997-1998'), (397, 582, 'La bibliothèque de Babel', '2006-2007'), (399, 583, 'Arpège junior', '1996'), (402, 584, 'Les écrivains du monde', '1947'), (405, 585, 'Bibliothèque des utopies', '1977'), (406, 586, 'Bibliothèque littéraire', '1909'), (408, 587, 'Cerise jaune', '1990'), (409, 588, 'Fantasy', '2004'), (409, 589, 'Jeunes', '1992-1992'), (409, 590, 'Piment', '2000'), (409, 591, 'Présences', '2000-2000'), (409, 592, 'Suspense', '2005'), (409, 593, 'Thriller', '2004'), (412, 594, 'Star ciné cosmos', '1961-1962'), (413, 595, 'Conter utopie', '2004'), (414, 596, 'Temps futurs', '1953'), (415, 597, 'Espionnage fantastique', '1972'), (416, 598, 'Futur (revue, 1ère série)', '1978'), (417, 599, 'Angila', '1925'), (420, 600, 'Grand angle', ' 1974-1977'), (420, 601, 'Olympic', '1973-1973'), (420, 602, 'Pop-hop', '1969-1969'), (420, 603, 'Rouge et Bleue', '1954-1954'), (420, 604, 'Rouge et Or - Grands Succès', '1980-1980'), (420, 605, 'Rouge et Or - Souveraine', ' 1954-1996'), (420, 606, 'Rouge et Or album T.V.', ' 1981-1981'), (420, 607, 'Rouge et Or Dauphine', ' 1959-1981'), (420, 608, 'Rouge et Or Pictural Films A2', '1978-1978'), (420, 609, 'Spirale', '1961-1979'), (420, 610, 'Super-1000', '1963-1965'), (420, 611, 'Super-biliothèque', '1974-1974'), (423, 612, 'Asphodale revue', ' 2002-2003'), (423, 613, 'Galaxies revue', '1996'), (423, 614, 'Hors-séries de la revue Galaxies', ' 1998'), (424, 615, 'Lignes fictives', '2004'), (425, 616, 'Adams', '1972-1973'), (425, 617, 'Bibliothèque de l\'étrange', '1972-1973'), (426, 618, 'Arcades', ' 1987-198'), (426, 619, 'l\'Aube des peuples', '1992-1992'), (426, 620, 'La Bibliothèque', '2005'), (426, 621, 'Bibliothèque de la Pléiade', '1943'), (426, 622, 'La Bibliothèque Gallimard', '2002-2002'), (426, 623, 'La Blanche', '1958'), (426, 624, 'Cahiers Renaud Barrault', '1966-1966'), (426, 625, 'Carré noir', '1972-1985'), (426, 626, 'Le Chemin', '1970-1970'), (426, 627, 'Connaissance de l\'Orient', '1956'), (426, 628, 'Connaissance de l\'Orient Format poche', '1985-1987'), (426, 629, 'La Croix du sud', '1952-1967'), (426, 630, 'Découvertes Gallimard', '1991'), (426, 631, 'Détective', '1937-1937'), (426, 632, 'Du monde entier', '1950'), (426, 633, 'Écrits sur la mer', '1978-1978'), (426, 634, 'Enfantimages', '1979-1979'), (426, 635, 'Folio', '1972'), (426, 636, 'Folio bilingue', '1990-2000'), (426, 637, 'Folio Classique', '1974'), (426, 638, 'Folio policier', '1998'), (426, 639, 'Folio SF', '2000'), (426, 640, 'Folio2€', '2002'), (426, 641, 'l\'Imaginaire', '1977'), (426, 642, 'Les Jeunes Russes', '1937-1937'), (426, 643, 'l\'un et l\'autre', '2005'), (426, 644, 'Le Manteau d\'Arlequin', ' 1959-1959'), (426, 645, 'La Noire', '1999'), (426, 646, 'NRF', '1926'), (426, 647, 'NRF Poésie', ' 1980-1999'), (426, 648, 'Phase deux', '2005'), (426, 649, 'Poche noire', '1968-1968'), (426, 650, 'Le Promeneur', '2005-2005'), (426, 651, 'Série Blême', '1949-1949'), (426, 652, 'Série noire 1948', ''), (427, 653, '1000 soleils', ' 1972-1993'), (427, 654, 'Albums cartonnés', '1983'), (427, 655, 'Chefs-d\'Œuvre Universels', '1995'), (427, 656, 'Folio Benjamin', '1988'), (427, 657, 'Folio cadet', '1983'), (427, 658, 'Folio junior', '1977'), (427, 659, 'Folio junior Edition Spéciale', '1980-2004'), (427, 660, 'Folio junior énigmes', '1982'), (427, 661, 'Folio junior légendes', '1982-1982'), (427, 662, 'Folio junior piranha', '1986-1987'), (427, 663, 'Folio junior science-fiction', '1980-1990'), (427, 664, 'Hors-piste', '2003'), (427, 665, 'Lecture junior', '1992-1992'), (427, 666, 'Mondes et Héros', '1998-1998'), (427, 667, 'Page blanche', '1987'), (427, 668, 'Scripto', ' 2002'), (429, 669, 'Bibliothèque de poche', '1947'), (430, 670, 'Aventures fantastiques', '1985-1987'), (430, 671, 'Docteur Who', '1987'), (432, 672, 'Classiques Garnier', '1865-1955'), (433, 673, 'GF-Flammarion', '1965'), (433, 674, 'GF-Flammarion Corpus', '2006'), (433, 675, 'Nouveaux bibliophiles', '1978'), (434, 676, 'Mémoires d\'outre-ciel', ''), (435, 677, 'Jean-François', '1953-1959'), (435, 678, 'Nouvelle bibliothèque de Suzette', '1959-1959'), (435, 679, 'Série 15', '1976-1986'), (436, 680, 'La comète', '1958-1960'), (436, 681, 'Grand Pavois', '1959-1959'), (438, 682, 'Opus international (revue)', '1977'), (440, 683, 'Les introuvables de Serge Brussolo', '1991-1993'), (440, 684, 'Serge Brussolo / Epouvante', '1990-1992'), (440, 685, 'Serial Thriller', '2000'), (443, 686, 'Le labyrinthe', '1995-1998'), (443, 687, 'Marginalia', '1975-1979'), (443, 688, 'Train d\'enfer – sciences fiction', '1980'), (443, 689, 'Vivre le cinéma', '1978'), (444, 690, 'Imaginaires', '2007'), (444, 691, 'Les plumes d\'Hyppocrate', '2006'), (445, 692, 'Noir venin', '2000'), (446, 693, 'Le passé du futur', '1994-1995'), (447, 694, 'Encyclopédie alpha du cinéma', '1979'), (449, 695, 'Cosmos', '1955-1957'), (450, 696, 'Best-sellers', '1998'), (450, 697, 'Intégrales jeunesse', '1992-1992'), (450, 698, 'Les trésors de le littérature', '1994'), (453, 699, 'Les cahiers rouges', '1983-2002'), (453, 700, 'Les cahiers verts', '1926-1961'), (453, 701, 'Le Roman', ''), (454, 702, 'Hantises', '1989-'), (455, 703, 'Anthologies', '2007'), (455, 704, 'Novella', '2007'), (455, 705, 'Recueil', '2007'), (456, 706, 'La bibliothèque précieuse', '1957'), (456, 707, 'Trésors des jeunes', '1961'), (457, 708, 'Azimut', '1977'), (461, 709, 'Les nuits blanches', '1945'), (466, 710, 'Les Albums Roses', '1971-1971'), (466, 711, 'Bibliothèque de la jeunesse', '1923-1963'), (466, 712, 'Bibliothèque des écoles et des familles', '1906-1913'), (466, 713, 'Bibliothèque Hachette', '2001-2001'), (466, 714, 'Bibliothèque illustrée du dimanche', '1929-1930'), (466, 715, 'Bibliothèque rouge', '1974-1976'), (466, 716, 'Chefs-d\'œuvre pour les jeunes', '1977-1977'), (466, 717, 'Le Cherche-midi', '1994-1995'), (466, 718, 'Ciné book', '1993-1993'), (466, 719, 'Classiques Hachette', '1992-2005'), (466, 720, 'Contours littéraires', '1992-1992'), (466, 721, 'Courts toujours !', '1998-1998'), (466, 722, 'Eclipse', '1999-1999'), (466, 723, 'l\'Énigme - Romans extraordinaires', '1951-1951'), (466, 724, 'Feuilles d\'acanthes - rouge', '1916-1940'), (466, 725, 'La Galaxie', '1972-1979'), (466, 726, 'Les Grandes Aventures Scientifiques', '1922-1922'), (466, 727, 'Grands Albums Hachette', '1966-1966'), (466, 728, 'Les Grands livres Hachette', '1969-1971'), (466, 729, 'Idéal-bibliothèque', '1923-1995'), (466, 730, 'Les Intégrales Jules Verne', '1977-1998'), (466, 731, 'Jeunesse', '2002-'), (466, 732, 'Jeunesse du monde', '1952-1952'), (466, 733, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à l\'éléphant\"', '1919-1919'), (466, 734, 'Lecture facile', '1995-1996'), (466, 735, 'Lectures pour les collèges', '1978-1979'), (466, 736, 'Le Livre de Poche - Copain', '1989-1989'), (466, 737, 'Le Livre du Jeudi - l\'aviateur de Bonaparte', '1926-1926'), (466, 738, 'Les Meilleurs romans étrangers', '1936-1936'), (466, 739, 'Nouvelle collection illustrée des œuvres de Jules Verne', '1928-1940'), (466, 740, 'Poche rouge', '1976-1976'), (466, 741, 'Point rouge', '1972-1972'), (466, 742, 'Psyché-romans', '1957-1957'), (466, 743, 'Tarzan', '1948-1951'), (466, 744, 'Textes en français facile', '1990-1991'), (466, 745, 'La Vie quotidienne', '2003-'), (466, 746, 'Voies libres', '1977-1979'), (469, 747, 'Le rayon fantastique', '1951-1964'), (470, 748, 'Bibliothèque rose', '1949-2003'), (470, 749, 'Bibliothèque verte', '1937-1996'), (470, 750, 'Bibliothèque verte Bob Morane', '1982-1985'), (470, 751, 'Bibliothèque verte senior', '1977-1979'), (470, 752, 'Bibliothèque verte série', '1992-1992'), (470, 753, 'Black Moon', '2007-'), (470, 754, 'Les Conquérants de l\'impossible', '1971-1996'), (470, 755, 'Copain', '1992-1992'), (470, 756, 'Les Dames, de Roger Hargreavers', '1996-1996'), (470, 757, 'Les Évadés du temps', '1977-1989'), (470, 758, 'Masque jeunesse', '1984-1986'), (470, 759, 'Les Patrouilleurs de l\'an 4003', '1988-1989'), (470, 760, 'Trésors', '1994-1994'), (470, 761, 'Verte aventure', '1981-1997'), (470, 762, 'Vertige Cauchemar', '1997-2000'), (470, 763, 'Vertige Fantastique', '1996-2002'), (470, 764, 'Vertige S-F', '1996-2001'), (472, 765, 'Club de lecture des jeunes', '1960'), (473, 766, 'Luna – Aux portes de l\'imaginaire', '2005'), (473, 767, 'Mira', '2005'), (473, 768, 'Sixième sens', '2000'), (474, 769, 'Cahiers de la nouvelle Europe', '2004'), (474, 770, 'Ecritures', '1997'), (474, 771, 'Logiques Socialers', '1997'), (474, 772, 'Ouverture Philosophique', '2003'), (475, 773, 'Confluences', '1994'), (475, 774, 'Etoile', '1970'), (475, 775, 'Regards sur l\'espace', '1992'), (476, 776, 'Jeunesse-poche anticipation', '1971-1974'), (477, 777, 'Aventures', '1956'), (479, 778, 'Hemma poche', '1994'), (479, 779, 'Livre club jeunesse', '1993-2001'), (479, 780, 'Notre livre club pour la jeunesse', '1979-1980'), (480, 781, 'Collection française', '1931'), (481, 782, 'Off', '1978'), (482, 783, 'Les écrits du Nord', '2003'), (484, 784, 'Pour lire avec toi', '1984'), (485, 785, 'Savoirs', '1996'), (486, 786, 'Fiction', '2004'), (487, 787, 'Confidences', '1995'), (489, 788, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Bouquets de roses - grecque\"', '1872-1873'), (489, 789, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Bouquets de roses\"', '1865-1872'), (489, 790, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Feuilles d\'acanthes - doré\"', '1905-1907'), (489, 791, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Feuilles d\'acanthes - rouge\"', '1905-1912'), (489, 792, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Fleur de lys\"', '1875-1877'), (489, 793, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Grenade\"', '1875-1875'), (489, 794, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Initiales JV-JH\"', '1873-1901'), (489, 795, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Steamer - doré\"', '1892-1905'), (489, 796, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Steamer - rouge\"', '1891-1896'), (489, 797, 'Jules Verne - Voyages extraordinaires - Cartonnage dit \"Tulipes\"', '1874-1875'), (489, 798, 'Jules Verne - Voyages Extraordinaires - Cartonnage double \"personnalisé\"', ''), (489, 799, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à 1 éléphant, titre dans le cartouche\"', ''), (489, 800, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à 1 éléphant, titre dans l\'éventail\"', ''), (489, 801, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à la bannière\"', '1874-1885'), (489, 802, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à la grenade\"', '1877-1878'), (489, 803, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à la sphère armillaire\"', '1878-1880'), (489, 804, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"à l\'obus\"', ''), (489, 805, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"au dos à l\'ancre\"', ''), (489, 806, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"au globe doré\"', ''), (489, 807, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"au portrait collé\"', ''), (489, 808, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"au portrait imprimé\"', ''), (489, 809, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"aux 2 éléphants\"', ''), (489, 810, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"aux fleurs de lys\"', '1875-1875'), (489, 811, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"aux initiales JV-JH, jumeaux, argentés\"', ''), (489, 812, 'Jules Verne - Voyages Extraordinaires - Cartonnage double dit \"aux initiales JV-JH, jumeaux, dorés\"', ''), (489, 813, 'Romans d\'aventures - grand format', '1884-1905'), (489, 814, 'Romans d\'aventures - petit format', '1884-1905'), (490, 815, 'Vampire, le requiem', '2005'), (491, 816, 'Typo', '1988-2001'), (493, 817, 'Récit initiatique', '1989-'), (494, 818, 'Bibliothèque elfique', '2000'), (495, 819, 'Bibliothèque de littérature général et comparée', '2003'), (497, 820, 'Hors bleu', '1996-2002'), (498, 821, 'Les dossiers du 8ème art', '1995'), (499, 822, '30x30', '1979-1981'), (499, 823, 'Bibliothèque aérienne', '1977-1980'), (499, 824, 'Folles images', '1983-1983'), (499, 825, 'Harlan Ellison : oeuvres', '1979-1980'), (499, 826, 'Horizons illimités', '1977-1977'), (499, 827, 'Métal Hurlant hors série', '1979-1979'), (499, 828, 'Les Yeux de la Tête', '1988-1988'), (500, 829, 'l\'arbre', '1984'), (500, 830, 'Cahiers du Québec – textes et documents littéraires', '1984'), (500, 831, 'Plus', '1992'), (501, 832, 'Le message caché', '1945'), (503, 833, 'Domaine tchèque', '1996'), (504, 834, 'Arches (revue)', '2004'), (505, 835, 'Futurs (revue, 2ème série)', '1981'), (507, 836, 'La petite illustration', '1924-1935'), (508, 837, 'Gauche d\'auteurs', '2007'), (509, 838, 'Courts récits imaginaires', '1994'), (510, 839, 'Inventeur de formes', '2004'), (511, 840, 'Visions futures', '2001-'), (512, 841, 'Imagine... (revue)', '1979-1997'), (520, 842, 'Archives de l\'imaginaire', '2000'), (520, 843, 'Nous les martiens', '1992-1993'), (521, 844, 'Initiales (revue)', '2003'), (523, 845, 'Griffures', '1989'), (524, 846, 'Cinemascopes', '2005'), (527, 847, 'Des livres pour la jeunesse', '1931'), (527, 848, 'Le feu de camp', '1933'), (527, 849, 'La France vivante', '1936'), (533, 850, 'La loupe série épouvante', '1952'), (534, 851, 'Collection fantastic', '1954-1955'), (534, 852, 'Fantastic', '1952-1955'), (534, 853, 'Les grandes aventures du Nyctalope', '1953-1955'), (534, 854, 'Jean de la Hire', '1953-1955'), (535, 855, '40ème anniversaire', '1998-2001'), (535, 856, 'Aventure secrète', '1998-1998'), (535, 857, 'Aventures et passions', '1997-1997'), (535, 858, 'Baam !', '2007'), (535, 859, 'Cinéma', '1987'), (535, 860, 'Les Classiques', '1993-1997'), (535, 861, 'Comédie', '2002-2002'), (535, 862, 'Epouvante', '1982-1999'), (535, 863, 'Érotique', '1987-1989'), (535, 864, 'Evado', '1996-1996'), (535, 865, 'Fantastique', '2001'), (535, 866, 'Fantasy', '1998 - 200'), (535, 867, 'Fantasy', '2001'), (535, 868, 'Grand format', '2004'), (535, 869, 'Grand Format Jeunesse', '2002'), (535, 870, 'Jeunes Adultes', '1998'), (535, 871, 'Jeunesse', '2001-2004'), (535, 872, 'Littérature générale', '1981-'), (535, 873, 'Millénaires', '1998-2004'), (535, 874, 'Nouvelle génération', '1999-2006'), (535, 875, 'Peur Bleue', '1997'), (535, 876, 'Polar', '1989-2001'), (535, 877, 'Policier', '1969-2006'), (535, 878, 'Pour elle - Mondes mystérieux', '2005'), (535, 879, 'Pulps', '2006-'), (535, 880, 'Science-Fiction', '1ère série'), (535, 881, 'Science-Fiction', '2001 -'), (535, 882, 'Science-Fiction', '2ème série'), (535, 883, 'Science-Fiction', '3ème série'), (535, 884, 'Séries TV', '1996'), (535, 885, 'Stephen King', '1993'), (535, 886, 'Suspense', '1988-1989'), (535, 887, 'Ténèbres', '1996-2000'), (535, 888, 'Thriller', '2007'), (535, 889, 'Voyages excentriques', '1982-1984'), (537, 890, 'Fictions et témoignages', '2002'), (539, 891, 'Roman jeunesse', '2003'), (539, 892, 'Signes de vie', ''), (543, 893, 'Les romans fantastiques', '1942-1943'), (544, 894, 'A micro fermé', '1977'), (545, 895, 'Collection Gaston Leroux', '1929'), (548, 896, 'Gustave Le Rouge', '1966'), (550, 897, 'Démons et merveilles', '2004'), (552, 898, 'Arcanes', '2000'), (552, 899, 'Le visage vert', '1997-2003'), (554, 900, 'Merveilleux', '1998'), (554, 901, 'Romantique', '1948-2005'), (557, 902, 'La vie d\'aventure', '1907'), (559, 903, 'La bibliothèque criminelle', '1991'), (559, 904, 'Capricorne', '1947'), (560, 905, 'Bibliothèque fémina', ''), (560, 906, 'Librairie d\'éducation pour la jeunesse', '1900'), (561, 907, 'Les exotiques', '2001'), (564, 908, 'Ici et maintenant - Alerte', '1977-1979'), (564, 909, 'Ici et maintenant – Collectif', '1977-1979'), (564, 910, 'Ici et maintenant – Romans', '1977-1980'), (565, 911, 'Gamme Polaris', '1997-1998'), (565, 912, 'Gamme Shaan', '1998'), (566, 913, 'Otrante (revue)', '2002'), (567, 914, '50 questions', '2006'), (568, 915, 'Petite bibliothèque diamant', '1895'), (569, 916, 'Bibliothèque métropolitaine', '1908'), (570, 917, 'Roman pour la jeunesse', '1955'), (571, 918, 'Espace Nord', '2004'), (571, 919, 'Espace Nord repères', '2003'), (571, 920, 'Un livre, une oeuvre', '1986-1987'), (573, 921, 'Hors collection', '2003'), (574, 922, 'Le dé', '1946'), (575, 923, 'Bilingues', '2005'), (576, 924, 'Roman jeunesse', '2003'), (578, 925, 'Classiques juniors', '1986-1986'), (577, 926, 'Classiques Larousse', '1987-1987'), (578, 927, 'Contes et romans pour tous', '1927-1933'), (578, 928, 'Guide Totem', '1999-1999'), (578, 929, 'Idéologies et sociétés', '1975-1975'), (578, 930, 'In Extenso', '2006-'), (578, 931, 'Petits classiques Larousse', '1999-2000'), (578, 932, 'Les Référents', '2002-2002'), (578, 933, 'Textes pour aujourd\'hui', '1974-1974'), (579, 934, 'Bibliothèque Lattès', '1987'), (579, 935, 'Science-fiction', '1972-1978'), (579, 936, 'Suspense et Cie', '1992-1999'), (579, 937, 'Titres/SF', '1979-1983'), (580, 938, 'Slash', '1997-1998'), (586, 939, 'Attitudes', '1991-1998'), (586, 940, 'Bob Morane', '1992-1999'), (586, 941, 'D\'aventure', '1991-1991'), (586, 942, 'Doc Savage', '1995-1997'), (586, 943, 'Les Dossiers de Phénix', '1995-1996'), (586, 944, 'Épouvante', '1999-1999'), (586, 945, 'Lefrancq en poche', '1996-1997'), (586, 946, 'Lefrancq en poche - SF', '1996-1997'), (586, 947, 'Phénix', 'revue'), (586, 948, 'Les Princes de la nature', '1996-1996'), (586, 949, 'Thriller', '1999-1999'), (586, 950, 'Volumes', '1992-1999'), (590, 951, 'Les enfants peuvent lire aussi', '1981'), (592, 952, 'La Revue des lettres modernes', '1994'), (595, 953, 'Triangle jaune', '1986'), (597, 954, 'Nos futurs', '2005'), (601, 955, 'Caribou', '1963'), (604, 956, 'Abysses', '1998-1999'), (604, 957, 'Bob Morane', '1978-1980'), (604, 958, 'Club des masques', '1982-1982'), (604, 959, 'Les Grands Contes Fantastiques', '1980-1984'), (604, 960, 'Harry Dickson', '1980-1981'), (604, 961, 'Histoires fantastiques', '1978-1981'), (604, 962, 'Le Masque - Les Maîtres du roman policier', '1938-2001'), (604, 963, 'Le Masque de l\'Avenir', '1980-1980'), (604, 964, 'Le Masque Fantastique - 2ème série', '1978-1980'), (604, 965, 'Le Masque Fantastique', '1976-1977'), (604, 966, 'Le Masque Science-Fiction', '1974-1981'), (605, 967, 'Fascinax', '1921'), (606, 968, 'Les chefs d\'oeuvres des lettres', '1973-1974'), (610, 969, 'Chefs d\'oeuvre de tous les temps', '1991'), (613, 970, 'Imaginaire', '2003'), (613, 971, 'Littérature classique', '1988'), (613, 972, 'Littérature contemporaine', '1994'), (613, 973, 'Policier', '1994'), (613, 974, 'SF-fantastique', '1994'), (614, 975, 'LIDEC aventures', '1965-1968'), (615, 976, 'Le grand Jules Verne illustré', '1964-1966'), (615, 977, 'Les voyages extraordinaires', '1958'), (617, 978, 'L\'histoire et l\'épopée', '1996'), (619, 979, 'Carré droit', '2005'), (620, 980, 'Bibliothèque LITO', '1997'), (620, 981, 'Club 10-15', '1978-1986'), (620, 982, 'Moi, j\'aime les romans', '2003'), (623, 983, 'Club pour vous Hachette', '1977'), (624, 984, '20ème anniversaire', 'avec Elf/A'), (624, 985, 'Biblio', '1982-'), (624, 986, 'Classique', '1959-'), (624, 987, 'Les Classiques d\'aujourd\'hui', '1995-1995'), (624, 988, 'Classiques de poche', '1973-20004'), (624, 989, 'Club', '1987-1988'), (624, 990, 'Fantasy', '2007'), (624, 991, 'La Grande anthologie de la science fiction', '1974-2001'), (624, 992, 'La Grande anthologie de la science fiction française', '1988-1999'), (624, 993, 'Jules Verne', '1966-1990'), (624, 994, 'Les Langues Modernes / Bilingue', '1993'), (624, 995, 'Lettres gothiques', '2005'), (624, 996, 'Libretti', '1997'), (624, 997, 'Lire en anglais', '2004'), (624, 998, 'Les Maîtres de la science-fiction', '1997-1997'), (624, 999, 'Nouvelle Approche', '1991-1992'), (624, 1000, 'Pluriel', '1971-1971'), (624, 1001, 'La Pochotèque', '2004'), (624, 1002, 'Policier', '1978-2006'), (624, 1003, 'Policiers', '1967-'), (624, 1004, 'SF', '1977'), (624, 1005, 'Thrillers', '1984'), (625, 1006, 'Fantasy', '2006'), (625, 1007, 'Jeunesse', '1977'), (625, 1008, 'Sciences fiction', '2007'), (626, 1009, 'Sciences & fiction', '1984-1987'), (631, 1010, 'Show Effroi', '1996'), (631, 1011, 'Ténèbres (revue)', '1998-2001'), (634, 1012, 'Le monde de', '1987'), (635, 1013, '8-12 ans', '1992-1992'), (635, 1014, 'Fantasia', '1958-1971'), (635, 1015, 'Fantasia rouge', '1970-1977'), (635, 1016, 'Grand Carré', '1977-1977'), (635, 1017, 'Lanceur de lecture', '1989-1989'), (635, 1018, 'Lecture en liberté', '1972-1972'), (635, 1019, 'Le Livre des Jeunes', '1961-1961'), (635, 1020, 'Science et aventures', '1945-1963'), (635, 1021, 'Le Temps d\'un livre', '1976-1982'), (635, 1022, 'Tire-lire poche', '1983-1989'), (636, 1023, 'Les Fantastiques', '1996'), (636, 1024, 'Grand format', '2002'), (636, 1025, 'Ma petite sœur a des super-pouvoirs', '2002'), (636, 1026, 'Les P\'tits fantastiques', '1998'), (636, 1027, 'Les P\'tits intrépides', '2001'), (636, 1028, 'Tipik benjamin', '2004'), (636, 1029, 'Tipik cadet', '2004'), (636, 1030, 'Tipik junior', '2004'), (636, 1031, 'Tipik littérature', '2005'), (636, 1032, 'Tire-lire poche', '1984-1984'), (639, 1033, 'Bayard', '1935'), (641, 1034, 'Esope', '1929'), (645, 1035, 'Bibliothèque du hérisson', '1921-1935'), (647, 1036, 'Absinthes, éthers, opiums', '2007'), (647, 1037, 'Brouillards', '2007'), (647, 1038, 'Lovecrafttiana', '2007'), (648, 1039, 'Collection pour Tous', ''), (648, 1040, 'Repères - Sciences Humaines - Idéologies', '1974-1974'), (648, 1041, 'Succès anticipation', '1955-1958'), (648, 1042, 'Succès de la Jeunesse', '1954-1954'), (649, 1043, 'Autres Mondes', '2000'), (649, 1044, 'Biblio Mango', '2002'), (649, 1045, 'Le Cercle magique', '2002'), (649, 1046, 'Mango Poche - Rougemuraille', '1998'), (652, 1047, 'Souvenirs', '1993'), (653, 1048, 'Bibliothèque marabout', '1953-1983'), (653, 1049, 'Bibliothèque marabout - Fantastique', '1963-1982'), (653, 1050, 'Bibliothèque marabout - Géant', '1962-1973'), (653, 1051, 'Bibliothèque marabout - Science fiction', '1964-1981'), (653, 1052, 'Bibliothèque Marabout Jules Verne', '1966-1966'), (653, 1053, 'Marabout collection', '1951-1962'), (653, 1054, 'Marabout Junior', '1955-1964'), (653, 1055, 'Marabout Junior / Bob Morane', '1953-1967'), (653, 1056, 'Marabout université', '1972-1972'), (653, 1057, 'Poche 2000', '1972-1975'), (653, 1058, 'Pocket / Bob Morane', '1967-1977'), (653, 1059, 'Pocket / Doc Savage', '1967-1976'), (654, 1060, 'Edgar Poe', '1945-1946'), (657, 1061, 'La mangeuse de lune', '1998'), (659, 1062, 'Les grandes aventures', '1888'), (661, 1063, 'Doc en stock', '2006'), (663, 1064, 'Fondations', '1982-'), (664, 1065, 'Collection de romans d\'aventures', '1929-1929'), (664, 1066, 'Jeunesse', '2002'), (664, 1067, 'Labyrinthes', '2001-2001'), (664, 1068, 'Les Maîtres du roman policier', '1993-1993'), (665, 1069, 'Adrénalines', '2005'), (665, 1070, 'Fantamasques', '2004'), (665, 1071, 'Supernova', '2004'), (666, 1072, 'Les romans du mystère', '1993'), (668, 1073, 'Classiques étrangers', '1996'), (668, 1074, 'Classiques français', '1993'), (668, 1075, 'Fantastique', '2005'), (669, 1076, 'Cercle Maxi-Livres', '1993-1994'), (669, 1077, 'Classiques jeunesse', '1992-1992'), (669, 1078, 'Maxi-poches romans', '2002-2003'), (669, 1079, 'Un livre, un euro', '2001-2001'), (671, 1080, 'Les bouquineurs', '2002'), (671, 1081, 'Jeunesse sélection', '1964'), (672, 1082, 'Apocalypse', '1987'), (672, 1083, 'Le Commandeur', '1988'), (673, 1084, 'Jeunesse-Plus', '2002'), (673, 1085, 'Jeunesse-pop', '1994'), (676, 1086, 'Transparences', '2000'), (677, 1087, 'Destins', '2005'), (679, 1088, 'Collection d\'auteurs étrangers', '1905-1910'), (679, 1089, 'Les libertés françaises', '1937'), (679, 1090, 'Mille pages', '1988'), (682, 1091, 'LF romans', '1986'), (682, 1092, 'Sciences humaines / littérature', '1991'), (683, 1093, 'Bibliothèque anglo-saxonne', '1993'), (683, 1094, 'Bibliothèque écossaise', '2000'), (683, 1095, 'Bibliothèque hispano-américaine', '1985'), (683, 1096, 'Bibliothèque italienne', '1995'), (683, 1097, 'Suites', '1997'), (688, 1098, 'Jeunesse', '2001'), (689, 1099, 'Nuance', '1984'), (691, 1100, 'Albums', '1991'), (691, 1101, 'Contes traditionnels', '1991'), (691, 1102, 'Les Essentiels Milan', '1996-2005'), (691, 1103, 'Les Essentiels Milan Junior', '2002'), (691, 1104, 'Grands Formats', '2002'), (691, 1105, 'Macadam', '2007'), (691, 1106, 'Milan Poche Benjamin', '2000'), (691, 1107, 'Milan Poche Cadet', '1999'), (691, 1108, 'Milan Poche Junior', '1999'), (691, 1109, 'Mille ans de contes', '1991'), (691, 1110, 'Mille et un contes', '1999'), (691, 1111, 'Les Romans de Julie', '2004'), (691, 1112, 'Zanzibar', '1988-1995'), (691, 1113, 'Zénon', '2000-2000'), (692, 1114, 'Lunes', '1999'), (692, 1115, 'La petite collection', '1993-2006'), (693, 1116, 'Cahiers JEB', '1978'), (694, 1117, 'Propositions', '1985'), (696, 1118, 'Angle-mort', '1997-1997'), (696, 1119, 'Daemonicon', '1997-1998'), (696, 1120, 'Icares', '1999'), (696, 1121, 'Icares SF', '2004'), (696, 1122, 'Légendaire', '1995-2003'), (696, 1123, 'Science-fiction', '1997-1998'), (696, 1124, 'Surnaturel', '1995-1998'), (696, 1125, 'Univers', '2002-2004'), (697, 1126, 'Le monde 2', '2006'), (698, 1127, 'Terrific', '1974-1978'), (699, 1128, 'La Bibliothèque des Jeunes, collection Pierrot', '1945'), (701, 1129, 'Biblithèque de science-fiction', '1961-1961'), (702, 1130, 'Monographies', '2000'), (704, 1131, 'Beaux Livres', '2004'), (704, 1132, 'La Bibliothèque rouge', '2005'), (704, 1133, 'Études et Essais', '2005'), (704, 1134, 'Fiction', '2005'), (704, 1135, 'Fiction Spécial', '2006'), (704, 1136, 'Nouvelles et Romans', '2004'), (707, 1137, 'Lectures brèves', '1984'), (708, 1138, 'Les grands romans étrangers', '1945'), (709, 1139, 'Albums nathan', '2000'), (709, 1140, 'Arc-en-Poche / Deux', '1981-1992'), (709, 1141, 'Aventures et voyages', '1927-1945'), (709, 1142, 'Bibliothèque des Grands Classiques', '1998'), (709, 1143, 'Bibliothèque internationale', '1969-1985'), (709, 1144, 'Comète', '2002'), (709, 1145, 'Contes et Légendes', '1997'), (709, 1146, 'Contes et Légendes Blanche-Or', '1996'), (709, 1147, 'Contes et légendes de tous les pays', '1961-1979'), (709, 1148, 'Demi-Lune', '1996'), (709, 1149, 'Fac', '2001'), (709, 1150, 'Grand A', '1979-1981'), (709, 1151, 'Les Grands classiques Nathan', '1991'), (709, 1152, 'Grands Formats', '2003'), (709, 1153, 'Histoires noires de la mythologie', '2003-2004'), (709, 1154, 'Lecture aventure', '1988-1993'), (709, 1155, 'Lune Noire', '1997'), (709, 1156, 'Mégascope', '2004'), (709, 1157, 'Monde en poche', '1989-1989'), (709, 1158, 'Les Petits cailloux', '1997'), (709, 1159, 'Les Petits Romans des 7-8 Ans', '2003-2003'), (709, 1160, 'Pleine Lune', '1991'), (709, 1161, 'Poche', '1984-2006'), (709, 1162, 'Poche nouvelle collection', '1984'), (709, 1163, 'Première Lune', '1996'), (709, 1164, 'Récits du Monde', '1998-1999'), (709, 1165, 'Rouge et or', '1995-1995'); INSERT INTO `bib_collections` (`idediteurs`, `idcollections`, `nom_coll`, `annee_coll`) VALUES (709, 1166, 'S.F.', '1980-1981'), (709, 1167, 'Texte à l\'oeuvre', '1993-1993'), (710, 1168, '2000.com', '2000-2002'), (710, 1169, 'Fictions', '1997-2003'), (710, 1170, 'Forces obscures', '1999-2000'), (710, 1171, 'Forces obscures / Anthologie', '1999-2000'), (710, 1172, 'Les Introuvables', '2000-2002'), (710, 1173, 'Phénix (revue)', '2001-2003'), (710, 1174, 'Sfmag présente', '2001-2001'), (710, 1175, 'Témoins', '2002-2002'), (712, 1176, 'Sous le vent', '2006'), (712, 1177, 'Sous le vent classiques', '2006'), (717, 1178, 'Fantasy', '2000'), (717, 1179, 'Fractales / Fantastique', '2003'), (717, 1180, 'Horizons Fantastiques', '1999-1999'), (717, 1181, 'Horizons Fantasy', '1998-2007'), (717, 1182, 'Horizons Futurs', '1998-1999'), (717, 1183, 'Jour de l\'an', '1999-2000'), (717, 1184, 'Nestiveqnen Jeunesse', '2002'), (717, 1185, 'Nouvelle donne', '2002'), (717, 1186, 'SF', '2000'), (720, 1187, 'Anticipation', '2002'), (722, 1188, 'La biblothèque précieuse', '1932'), (725, 1189, 'Littératures', '1999'), (726, 1190, 'Les nouveaux romans', '1922'), (726, 1191, 'Les petits illustrés', '2005'), (728, 1192, 'Chamois', '1945'), (731, 1193, 'Le livre à succès', '1927-1932'), (733, 1194, 'Fantastique / SF / Aventure', '1979-1989'), (733, 1195, 'Grands Romans du merveilleux fantastique', '1989-1990'), (733, 1196, 'Le Miroir obscur', '1979-1989'), (733, 1197, 'NéO / Hors Série', '1986-1990'), (733, 1198, 'NéO Club : Conan Doyle', '1986-1989'), (733, 1199, 'NéO Club : Harry Dickson', '1984-1986'), (733, 1200, 'NéO Plus policier / thriller ou fantastique / horreur', '1986-1990'), (733, 1201, 'NéOmnibus', '1990-1990'), (733, 1202, 'Les Oiseaux de nuit', '1981-1981'), (733, 1203, 'Orbites (revue)', '1982'), (733, 1204, 'Tarzan', '1986-1990'), (735, 1205, 'Bibliographie des Cahiers du Centre de recherche en littérature québécoise (CRELIQ, Université Laval)', '1992-1992'), (736, 1206, 'Nouvelles', '2003'), (1085, 1207, 'Galaxie (1ère série) (revue)', '1953-1959'), (738, 1208, 'J', '1959-1962'), (739, 1209, 'Croix des fées', '2004'), (742, 1210, 'Les Archives de l\'Université de Nouvelle-Souabe', '2005'), (742, 1211, 'La Bibliothèque d\'Abdul Alhazred', '2001'), (742, 1212, 'Le Bulletin de l\'Université de Miskatonic', '2004'), (742, 1213, 'Les Cahiers d\' études Tolkienienne', '2001'), (742, 1214, 'Dragon & Microchips (revue)', '1999'), (742, 1215, 'Les Etudes du Dr. Armitage', '1997'), (742, 1216, 'Les Manuscrits d\'Edward Derby', '2000'), (747, 1217, 'Fantastic fiction', '2003'), (749, 1218, 'Marges', '2000'), (749, 1219, 'Petite bibliothèque de l\'olivier', '2003'), (752, 1220, 'Bibliothèque ombres', '2004'), (752, 1221, 'Petite bibliothèque ombres', '1992'), (753, 1222, 'Carnets', '2000'), (753, 1223, 'Omnibus', '1993'), (754, 1224, 'Fantastic fiction', '2003'), (755, 1225, 'Des romans à suivre', '2001'), (756, 1226, 'Anti-mondes', '1972-1977'), (756, 1227, 'Aventures fantastiques', '1968-1986'), (756, 1228, 'Club du livre d\'anticipation', '1965-1987'), (756, 1229, 'Fiction (revue)', '1953-1990'), (756, 1230, 'Fiction Spécial', '1959-1984'), (756, 1231, 'Galaxie (2ème série) (revue)', '1964-1977'), (756, 1232, 'Galaxie-bis', '1965-1987'), (756, 1233, 'Marginal', '1973-1977'), (756, 1234, 'Mystère magazine', '1962-1962'), (756, 1235, 'Nebula', '1975-1977'), (759, 1236, 'Nocturnes', '1998-2000'), (759, 1237, 'Terres anciennes', '2000'), (761, 1238, 'Le corbeau', '1946'), (763, 1239, 'Beau livre', '2004'), (763, 1240, 'Bibilothèque de poche', '1998'), (765, 1241, 'SF', '2000'), (765, 1242, 'Les vagabonds du rêve', '2000-2001'), (766, 1243, 'Comme des Ozalids', '1999-2005'), (766, 1244, 'Emblèmes', '2001-2005'), (766, 1245, 'Emblemythiques', '1999-2004'), (766, 1246, 'Épreuves', '2003-2005'), (766, 1247, 'Fission', '2000-2005'), (766, 1248, 'Gemmail', '2002-2002'), (766, 1249, 'Manières noires', '2000-2005'), (766, 1250, 'Moirages', '2001-2006'), (767, 1251, 'Science-Fiction Magazine (revue - deuxième saison)', '1999-2000'), (767, 1252, 'Science-Fiction Magazine (revue)', '1998'), (770, 1253, 'Carnets roses', '1984'), (771, 1254, 'Intégrale de l\'oeuvre de fiction de François Bordes', '1983'), (776, 1255, 'Parchemins et traverses', '2005'), (778, 1256, 'Littératures', '1994'), (779, 1257, 'Bibliothèque des littératures policières', '1999'), (780, 1258, 'Fiction med', '2002'), (781, 1259, 'Les géants', '1970'), (782, 1260, 'Les muses inconnues', '2003'), (784, 1261, 'Essais', '1993'), (784, 1262, 'Pure fiction', '1995'), (786, 1263, 'Maniac', '1988'), (786, 1264, 'Sciences fiction', '1988'), (788, 1265, 'Romans populaires', '1916'), (790, 1266, 'Jeunesse-pop', '1971-1994'), (791, 1267, 'Les indes noires', '1965'), (794, 1268, 'Documents', '1997'), (794, 1269, 'Petite bibliothèque Payot', '1962-2004'), (794, 1270, 'SF', '1999'), (797, 1271, 'La marche du monde', '1956'), (799, 1272, 'Albums cartonnés', '1998-2002'), (799, 1273, 'Albums du Père Castor Flammarion', '1993-2002'), (799, 1274, 'Bibliothèque de l\'Univers', '1991-1991'), (799, 1275, 'Castor Poche', '1980'), (799, 1276, 'Mini castor', '2002-2002'), (799, 1277, 'Les Trois Loups', '1997-2002'), (803, 1278, 'D\'ailleurs', '1987'), (803, 1279, 'D\'aujourd\'hui', '1998'), (803, 1280, 'Domaine romanesque', '1988-2004'), (803, 1281, 'Libretto', '1998'), (803, 1282, 'Verso', '1979-2004'), (804, 1283, 'Chimère', '1987-1992'), (804, 1284, 'Les Moustaches de Baalmoloch', '1988-1990'), (804, 1285, 'Pégase', '1990-1992'), (804, 1286, 'Super Phénix', '1988-1993'), (807, 1287, 'Picquier jeunesse', '2004'), (807, 1288, 'Picquier juenesse – Les contes du Mandarin', '2004'), (807, 1289, 'Picquier poche', '1994'), (809, 1290, 'Pschitt', '1957'), (810, 1291, 'Idéal bibliothèque', '1923'), (810, 1292, 'Liliput bibliothèque', '1925'), (811, 1293, 'Chacal', '2000-2006'), (811, 1294, 'Conquêtes', '1984-1993'), (811, 1295, 'Papillon', '1995-1995'), (815, 1296, 'Fantasy', '1983-1983'), (816, 1297, 'L\'Aventurier des étoiles', '1986-1987'), (816, 1298, 'La Bibliothèque Plon', '1926-1953'), (816, 1299, 'Bibliothèque reliée Plon', '1920-1930'), (816, 1300, 'Blade', '1976-1987'), (816, 1301, 'Feux Croisés', '1949-1998'), (816, 1302, 'Frissons', '1994-1996'), (816, 1303, 'Jag', '1985-1987'), (816, 1304, 'Jeunesse', '2001'), (816, 1305, 'Science-fiction Jimmy Guieu', '1979-1987'), (816, 1306, 'Le Survivant', '1985'), (819, 1307, 'Agora', '1998'), (819, 1308, 'Blanche', '1977-1992'), (819, 1309, 'Cinéma', '1989'), (819, 1310, 'Classiques', '1989'), (819, 1311, 'Fantasy', '2000-2007'), (819, 1312, 'Le Grand Temple de la S-F', '1979-1999'), (819, 1313, 'La Grande anthologie du fantastique', '1977-1988'), (819, 1314, 'Les Guides Pocket Classiques', '2005'), (819, 1315, 'Langues pour tous', '1996'), (819, 1316, 'Littérature - Best', '1974'), (819, 1317, 'Le Livre d\'or de la science-fiction', '1978-1987'), (819, 1318, 'Mondes mystérieux', '1971-1981'), (819, 1319, 'Noir', '1989'), (819, 1320, 'Rendez-Vous Ailleurs', '1996-2001'), (819, 1321, 'Science-Fiction & Fantasy', '2006'), (819, 1322, 'Science-Fiction (1ère série – Noir)', '1977-1988'), (819, 1323, 'Science-Fiction (2ème série - Argent avec texte)', '1988-2000'), (819, 1324, 'Science-Fiction (3ème série)', '1999-2007'), (819, 1325, 'Terreur', '1979-2003'), (819, 1326, 'Thriller', '1993'), (820, 1327, 'Jeunes Adultes', '2003'), (820, 1328, 'Kid Pocket', '1994-2006'), (820, 1329, 'Pocket jeunesse', '1997'), (820, 1330, 'Pocket jeunesse Albums', '2005'), (820, 1331, 'Pocket jeunesse Fantasy', '2004-2004'), (820, 1332, 'Pocket jeunesse Littérature', '2005-2006'), (820, 1333, 'Pocket Junior', '1995'), (820, 1334, 'Pocket Junior c\'est çà la vie', '1996'), (820, 1335, 'Pocket Junior Cinéma', '1997'), (820, 1336, 'Pocket Junior Contes', '1994'), (820, 1337, 'Pocket Junior Fantastique', '1997'), (820, 1338, 'Pocket Junior Frissons', '1994'), (820, 1339, 'Pocket Junior Grand Format', '2001'), (820, 1340, 'Pocket Junior Mythologie', '1994'), (820, 1341, 'Pocket Junior Policier', '2000'), (820, 1342, 'Pocket Junior Références', '1994-1999'), (820, 1343, 'Pocket Junior Rigolo', '2000'), (820, 1344, 'Pocket Junior Roman', '1997'), (820, 1345, 'Pocket Junior SF', '1994-2004'), (820, 1346, 'Pocket Junior SOS Planète', '1997'), (821, 1347, 'Points de suspense', '2003'), (822, 1348, 'Le roman scientifique', '1913'), (823, 1349, 'Le collège de la cité', '2005'), (823, 1350, 'Romans & plus', '2002-2002'), (824, 1351, 'Balades ballades', '1979-1979'), (824, 1352, 'Ecrits possibles', '1978-1980'), (824, 1353, 'Espaces mondes', '1979-1980'), (825, 1354, 'Le coffret de l\'âge heureux', '1928-1928'), (825, 1355, 'Les coffret des histoires extraordinaires', '1928-1928'), (827, 1356, 'Le cabinet fantastique', '2007'), (827, 1357, 'Fantasy', '2002'), (828, 1358, 'Chroniques du futur', '1980-1987'), (828, 1359, 'Paralittératures. Études et références', '1988-1988'), (830, 1360, 'L\'Aventurier des étoiles', '1988-1989'), (830, 1361, 'Blade', '1988-1989'), (830, 1362, 'Captain Johns', '1954-1963'), (830, 1363, 'Cercle du Bibliophile', '1963-1963'), (830, 1364, 'Les Dossiers de l\'étrange', '1994-1994'), (830, 1365, 'Futurama 1er série', '1974-1976'), (830, 1366, 'Futurama 2e série', '1976-1982'), (830, 1367, 'Futurama 3e série - Superlights', '1982-1986'), (830, 1368, 'Jag', '1988'), (830, 1369, 'Omnibus', '1990-1993'), (830, 1370, 'Paniques', '1983-2002'), (830, 1371, 'Ranger', '1987-1987'), (830, 1372, 'Science-fiction Jimmy Guieu', '1987-1989'), (830, 1373, 'Star Wars', '1992'), (830, 1374, 'Le Survivant', '1988-1993'), (830, 1375, 'Télé-mystère', '1967-1967'), (830, 1376, 'Univers sans limites', '1988-1991'), (831, 1377, 'Autrepart', '1977-1977'), (831, 1378, 'Les nouvelles étrangères', '1989-1989'), (832, 1379, 'Les collections de la république des lettres', '2005-2005'), (833, 1380, 'Imago Mundi', '2003'), (834, 1381, 'Genres et discours', '1977-1977'), (836, 1382, 'Bibliothèque des prodiges', '2002-2002'), (838, 1383, 'Aventures', '1995-1996'), (839, 1384, 'Inter-espions', '1963-1963'), (840, 1385, 'Ecriture', '1982-1992'), (840, 1386, 'Ecrivains', '1989-'), (840, 1387, 'Perspectives littéraires', '2002-2002'), (840, 1388, 'Que sais-je ?', '1948-2005'), (840, 1389, 'Sociologie d\'aujourd\'hui', '2000-2002'), (842, 1390, 'Littérature jeunesse', '1994-1994'), (842, 1391, 'Textes oubliés', '1984-1984'), (843, 1392, 'Cycnos', '2003'), (843, 1393, 'Métaphores (revue)', '1983-1999'), (844, 1394, 'Interférences', '1995'), (845, 1395, 'Lez Valenciennes', '2003'), (845, 1396, 'Parcours', '2004-2004'), (846, 1397, 'Interlangues – civilisations', '2003-2003'), (848, 1398, 'Les Cent un chefs-d\'oeuvre du genre humain', '1979-1979'), (851, 1399, 'Outrepart', '1971-1980'), (852, 1400, 'Science-Fiction', '2001-2006'), (853, 1401, 'Regards sur le fantastique', '1991-2005'), (853, 1402, 'Textuelles littérature', '2007'), (858, 1403, 'Fantasy', '2006'), (858, 1404, 'Grands Romans', '1986'), (858, 1405, 'Multipages', '2000-2000'), (858, 1406, 'Univers Féerique', '1999-2001'), (858, 1407, 'Univers insolite', '1975-1976'), (861, 1408, 'Erotic-fiction', '1971-1972'), (862, 1409, 'La petite collection bleue', '1994-1994'), (864, 1410, 'La vie romancière', '1945-1945'), (866, 1411, 'Clip', '1994-1994'), (866, 1412, 'Gulliver', '1993-1993'), (866, 1413, 'Jeunesse', '1990-1990'), (866, 1414, 'Littérature d\'Amérique', '1991-1992'), (866, 1415, 'Sextant', '1994-1995'), (870, 1416, 'Voyager avec...', '2004'), (871, 1417, 'Prose entière', '1980-1980'), (872, 1418, 'La voile', '1939-1939'), (875, 1419, 'Aventure et sciences fiction', '1987-1989'), (876, 1420, 'Arc-en-ciel Cascade', '1993'), (876, 1421, 'Cascade 7/9', '2004'), (876, 1422, 'Cascade 9/11', '2001'), (876, 1423, 'Cascade Aventure', '1997'), (876, 1424, 'Cascade Contes', '1999'), (876, 1425, 'Cascade Pluriel Fantastique', '1990'), (876, 1426, 'Cascade policier', '1988'), (876, 1427, 'Cascade Romans', '1993'), (876, 1428, 'Drôles de monstres', '2002'), (876, 1429, 'Grands Formats', '2003'), (876, 1430, 'Heure Noire', '2004'), (876, 1431, 'Métis', '2003'), (877, 1432, 'Mots', '1987-1987'), (877, 1433, 'Reliefs', '1977-1977'), (877, 1434, 'Terra incognita', '2003'), (878, 1435, 'ORTF', '1967-1967'), (879, 1436, 'Bibliothèque Jules Verne', '2003'), (880, 1437, 'Sélection du livre', '1962-1968'), (880, 1438, 'Trésors des grands écrivains', '1987-1987'), (881, 1439, 'Bibliographie latino-américaine', '1982-1983'), (881, 1440, 'Contribution à une bibliographie', '1980-1989'), (881, 1441, 'Ides et Autres', '1973-1994'), (881, 1442, 'Ides et Autres (hors commerce )', '1986-1998'), (881, 1443, 'La Machine à lire dans le passé', '1983-1987'), (882, 1444, 'Equinoxe (revue)', '1994-1994'), (884, 1445, 'Fantasy', '1999-2001'), (886, 1446, 'Le Disque Rouge', '1932-1933'), (886, 1447, 'In extenso', ''), (886, 1448, 'Les Maîtres de l\'imaginaire', '2000'), (886, 1449, 'Revue de France', '1923-1923'), (886, 1450, 'Les Romans-cinémas', '1922-1922'), (888, 1451, 'Chefs-d\'oeuvre de la science-fiction', '1970-1970'), (888, 1452, 'Les Œuvres de Jules Verne', '1967-1971'), (889, 1453, 'L\'amour des livres', '1927-1927'), (890, 1454, 'Géante rouge (fanzine)', '2005-2007'), (891, 1455, 'Les chefs d\'oeuvres de la sciences fiction et du fantastique', '1975-1977'), (892, 1456, 'Bibliothèque de babel', '1977-1977'), (898, 1457, 'Bibliothèque étrangère', '1989'), (898, 1458, 'Fantasy', '1994'), (898, 1459, 'Futur', '1995-1996'), (898, 1460, 'Mystère', '1988-1996'), (898, 1461, 'Noir', '1999'), (898, 1462, 'Suspense / Effroi', '1995-1997'), (898, 1463, 'Thriller', '1996-2005'), (899, 1464, 'Les cents livres', '1980-1980'), (901, 1465, 'L\'Âge des étoiles', '1977-1979'), (901, 1466, 'Ailleurs et demain', '1969'), (901, 1467, 'Ailleurs et demain - Classiques', '1970-2007'), (901, 1468, 'Ailleurs et demain - Essais', '1973-1984'), (901, 1469, 'Ailleurs et demain - La bibliothèque', '2003'), (901, 1470, 'Ailleurs et demain - L\'écart', '1979-1979'), (901, 1471, 'Best-sellers', '1963'), (901, 1472, 'Bibliothèque Pavillons', '2004-2005'), (901, 1473, 'Bouquins', '1980'), (901, 1474, 'Les Énigmes de l\'univers', '1973-1974'), (901, 1475, 'L\'Étrange', '1956-1956'), (901, 1476, 'Pavillons', '1955'), (901, 1477, 'Plein vent', '1967-1978'), (901, 1478, 'Les Portes de l\'étrange', '1972-1976'), (903, 1479, 'Chat de gouttière', '2005-2006'), (903, 1480, 'Graffiti', '2003-2004'), (904, 1481, 'Bibliothèque du mystère', '2001-2001'), (904, 1482, 'Fantasy', '2004'), (904, 1483, 'Les Grands classiques', '1994-1994'), (904, 1484, 'Grands romans', '1990-2004'), (904, 1485, 'Les Infréquentables', '1999-2005'), (904, 1486, 'Mondes virtuels', '1994-1997'), (904, 1487, 'novella SF', '2004'), (904, 1488, 'La Pierre philosophale', '1994-1995'), (904, 1489, 'Science et fiction', '1983-1984'), (904, 1490, 'Suspense', '1995-1996'), (904, 1491, 'Terres étrangères', '2005-2005'), (904, 1492, 'Thriller', '2000'), (904, 1493, 'Volumes', '1994-1994'), (906, 1494, 'Faux titre', '1994-1994'), (908, 1495, 'Bibliothèque du temps présent', '1972-1980'), (908, 1496, 'Les grandes aventures de la mer', '1973-1973'), (910, 1497, 'Romans pour la jeunesse', '1934-1935'), (911, 1498, 'Première lecture', '1989-1989'), (913, 1499, 'Repère', '1993-1993'), (914, 1500, 'Héros d\'aventures', '1949-1949'), (915, 1501, 'Le bandeau noir', '1944-1949'), (915, 1502, 'Lecture de Paris', '1947-1947'), (916, 1503, 'Merle blanc', '1922-1922'), (917, 1504, 'Œil-de-faucon', '1942-1942'), (918, 1505, 'Les quatre dimensions', '1995-1997'), (920, 1506, 'Aventure et mystère', '1978-1979'), (921, 1507, 'Les cahiers nouveaux', '1927-1927'), (921, 1508, 'Conter-coup', '1975-1977'), (922, 1509, 'Grands romans contemporains', '1975-1975'), (1086, 1510, 'Jeunesse', '2006'), (1087, 1511, 'Feux', '1987-1987'), (924, 1512, 'Les Cahiers de la science-fiction (revue)', '1958-1960'), (924, 1513, 'Satellite (revue)', '1958-1963'), (924, 1514, 'Satellite sélection (revue)', ''), (927, 1515, 'Editions spéciales', '2002-2002'), (931, 1516, 'Alternance', '1961-1961'), (933, 1517, 'La condition de l\'homme', '1966-1966'), (934, 1518, 'Lecture en tête', '2001-2001'), (935, 1519, 'Clefs', '1976-1976'), (935, 1520, 'Constellations', '1975-1977'), (935, 1521, 'Les Fenêtres de la nuit', '1980-1983'), (935, 1522, 'Les Maîtres modernes', '1972-1972'), (935, 1523, 'Les Visages de l\'avenir', '1986-1986'), (936, 1524, 'Change (revue)', '1981-1981'), (942, 1525, 'Septimus-sciences-fiction', '1977-1977'), (944, 1526, 'Essais et documents', '2005'), (944, 1527, 'Motifs', '2001'), (944, 1528, 'Serpent noir', '2003'), (944, 1529, 'Serpentaire', '2002-2002'), (946, 1530, 'Bibliothèque Calvino', '2001-2001'), (946, 1531, 'Cadre vert', '1968'), (946, 1532, 'La Couleur des idées', '2006'), (946, 1533, 'La Dérivée', '1994-1994'), (946, 1534, 'L\'École des lettres', '1992-1994'), (946, 1535, 'Les Empêcheurs de penser en rond', '2001-2001'), (946, 1536, 'Fiction & Cie', '1982-2005'), (946, 1537, 'La Librairie du XXIe siècle', '2006'), (946, 1538, 'Mémo', '2000-2000'), (945, 1539, 'Points', '1995'), (945, 1540, 'Points Essais', '2005'), (945, 1541, 'Points fantasy', '2006'), (945, 1542, 'Points policier', '2006'), (945, 1543, 'Points virgule', '1986'), (945, 1544, 'Points Littératures', '1989'), (945, 1545, 'Points Romans', '1980-1994'), (946, 1546, 'Science ouverte', '1988-1988'), (946, 1547, 'Seuil policiers', '1994-1994'), (949, 1548, 'Grand format', '2001'), (955, 1549, 'Les horizons fantastiques', '1949-1954'), (957, 1550, 'Au-delà du ciel (revue)', '1958-1961'), (963, 1551, 'Les Films de UFO - S.H.A.D.O.', ''), (964, 1552, 'Fleuron', '1995-1997'), (964, 1553, 'Ressources', '1980-1981'), (967, 1554, 'Les classiques du peuple', '1974-1974'), (969, 1555, 'Le maître de l\'invisible', '1953-1956'), (971, 1556, 'Bibliothèque du hérisson', '1930-1930'), (974, 1557, 'Le temps perdu', '1943-1943'), (977, 1558, 'Solaris (revue)', '1974'), (980, 1559, 'La Littérature jeunesse, pour qui, pour quoi ?', '2003-2003'), (1088, 1560, 'Collection vagabonde', '2007'), (982, 1561, 'Jamboree', '1952-1963'), (982, 1562, 'Jamboree-ainé', '1962-1962'), (985, 1563, 'Québec 10/10', '1978-1978'), (985, 1564, 'Roman 10/10', '1985-1999'), (986, 1565, '20001', '1976-1976'), (987, 1566, 'Bibliothèque cosmopolite', '1992-1999'), (987, 1567, 'Cabinet cosmopolite', '1926-1996'), (987, 1568, 'La Cosmopolite', '2001'), (987, 1569, 'Dire', '1978-1978'), (987, 1570, 'Nouveau Cabinet cosmopolite', '1980'), (987, 1571, 'Science-fiction, le roman des temps futurs', '1950-1950'), (987, 1572, 'Stock - evasion', '1971-1971'), (990, 1573, 'Littérature gothique', '2001-2003'), (992, 1574, 'Parchemins & traverses', '2004-2005'), (993, 1575, 'Romanesques', '1984-1984'), (994, 1576, 'Le présent avenir', '1995-1995'), (996, 1577, 'Chauve souris', '2000'), (996, 1578, 'Contes nomades', '2001'), (996, 1579, 'Paroles de conteurs', '1999'), (996, 1580, 'Souris noire', '2002-2002'), (996, 1581, 'Les Uns les autres', '2001'), (426, 1582, 'TEL', '1976'), (839, 1583, 'Quadrige', '1981'), (151, 1584, 'Les fleurons de l\'art', '1991'), (1127, 1585, 'A book apart', '2011'), (708, 1586, 'Les intégrales de Philo', '1900'), (340, 1587, 'Philo', '1990'), (839, 1588, 'Que sais-je ?', '1900'), (1178, 1589, 'Manuels de l\'Ecole du Louvre', '2000'), (839, 1590, 'Premier cycle', '1900'), (1104, 1591, 'Arts & esthétique', '1900'), (1138, 1592, 'Bibliothèque Hazan', '1900'), (151, 1593, 'Lagarde et Michard', '1900'), (389, 1594, 'Champs', '1900'), (389, 1595, 'Les Classiques de l\'art', '1900'), (945, 1596, 'Points Histoire', '1900'), (945, 1597, 'Points Sciences', '1900'), (945, 1598, 'Points Sagesse', '1900'), (945, 1599, 'Seuil Beaux Livres', '1900'), (267, 1600, 'Documents Actualité', '1980'), (693, 1601, 'Collection Critique', '1900'), (693, 1602, 'Arguments', '1900'), (945, 1603, 'Seuil / Poétique', '1900'), (945, 1604, 'Seuil / L\'ordre philosophique', '1900'), (426, 1605, 'NRF-essais', NULL), (426, 1606, 'Art et artistes', NULL), (426, 1607, 'NRF Bibliothèque des histoires', NULL), (426, 1608, 'NRF Bibliothèque illustrée des Histoires', NULL), (426, 1609, 'Connaissance de l\'inconscient', NULL), (1105, 1610, 'Rayon art', NULL), (1105, 1611, 'Legs', NULL), (426, 1616, 'NRF Bibliothèque des idées', NULL), (1153, 1613, 'VUES', NULL), (1153, 1614, 'La littérature artistique', NULL), (1153, 1615, 'Histoire de l\'art', NULL), (566, 1617, 'L\'université des arts', NULL), (566, 1618, 'Collection d\'esthétique', NULL), (257, 1619, 'Le point philosophique', NULL), (389, 1620, 'Tout l\'art', NULL), (389, 1621, 'Idées et Recherches', NULL), (1105, 1622, 'Rayon photo', NULL), (1278, 1623, 'Art & Idées', NULL), (566, 1624, 'Théorie et critique à l\'âge classique', NULL), (484, 1625, 'Collection savoir sur l\'art', NULL), (494, 1626, 'Lettre numériques', NULL), (852, 1627, 'Théorie et pratique des arts', NULL), (852, 1628, 'Histoire des arts', NULL), (340, 1629, 'Vocabulaire de', NULL), (623, 1630, 'Littérature é Documents', NULL), (623, 1631, 'Policier / Thriller', NULL), (623, 1632, 'Classiques', NULL), (623, 1633, 'Vie pratique', NULL), (623, 1634, 'Biblio Romans', NULL), (623, 1635, 'Biblio Essais', NULL), (271, 1636, 'Art & Esthétique', NULL), (1147, 1637, 'Littéraire', NULL), (1147, 1638, 'Perceptions', NULL), (1147, 1639, 'Relectures', NULL), (1147, 1640, 'L\'écart absolu', NULL), (1153, 1641, 'Histoire et théorie de la photographie', NULL), (426, 1642, 'Quarto', NULL), (426, 1643, 'Folio essais', NULL), (1105, 1644, 'Critiques d\'art', '1900'), (1125, 1645, 'Expert IT', NULL), (577, 1646, 'Micro dico', NULL), (577, 1647, 'Comprendre & reconnaître', NULL), (1138, 1648, 'Guide des arts', NULL), (1178, 1649, 'Louvre', NULL), (1396, 1650, 'Le métier de l\'artiste', NULL), (1138, 1651, 'Beaux Arts', NULL), (945, 1652, 'Des travaux', NULL), (1233, 1653, 'Gnose', NULL), (1245, 1654, 'Points Sciences', NULL), (839, 1655, 'Lignes d\'art', NULL), (392, 1656, 'Les secrets de l\'artiste', NULL), (1094, 1657, 'Collection \"Essais\"', NULL), (389, 1658, 'Champs Arts', NULL), (1208, 1659, 'L\'univers de l\'art', NULL), (1425, 1660, 'Collection aspects de l\'art', NULL), (1426, 1661, 'Msh Hors Collection', NULL), (1388, 1662, 'Darwin College Lectures', NULL), (1429, 1663, 'Etudes de littérature ancienne', NULL), (1432, 1664, 'Initiation à l\'art', NULL), (473, 1665, 'Esthétiques', NULL), (1138, 1666, 'Essais/Ecrits sur l\'art', NULL), (13, 1667, 'Ecrits Sur L\'art', NULL), (1434, 1668, 'Art in the Making', NULL), (652, 1669, 'Easy book', NULL), (1087, 1670, 'Livre d\'art', NULL), (1467, 1671, 'La fontaine de pierre', NULL), (1407, 1672, 'A Closer Look', NULL), (164, 1673, 'Essais Document', NULL), (1470, 1674, 'Dictionnaire insolite', '2008'), (1476, 1675, 'PITTORESQUES', '2017'), (1479, 1676, 'LES ALBUMS', '2017'), (1645, 1677, 'Marketing book', NULL), (1129, 1678, 'Pour les Nuls', NULL), (1483, 1679, 'EFF. PROFESSION', NULL), (25, 1680, 'Spiritualités vivantes', '1946'), (424, 1681, 'Débats', NULL), (424, 1682, 'L\'espace critique', NULL), (424, 1683, 'Incises ', NULL), (424, 1684, 'Écritures / Figures', NULL), (424, 1685, 'La philosophie en effet', NULL), (1188, 1686, 'MON CAHIER', NULL), (1171, 1687, 'Penguin Art & Architecture', NULL), (130, 1688, 'Le goût des idées', NULL), (1245, 1689, 'Points Sagesses', NULL), (1127, 1690, 'Blanche', NULL), (1226, 1691, 'Formation permanente', NULL), (818, 1692, 'Agora', NULL), (1511, 1693, 'L\'autre Venise', ''), (157, 1694, 'Fantasy', NULL), (1516, 1695, 'Corwin Teaching Essentials', NULL), (295, 1696, 'BàO La Boîte à Outils', NULL), (1519, 1697, 'OVNIS', NULL), (1009, 1698, 'Mieux-être', NULL), (1009, 1699, 'Mutation', NULL), (1418, 1700, 'Design briefs', NULL), (1345, 1701, 'Software Studies', NULL), (1304, 1702, 'ENTREPRENDRE', NULL); -- -------------------------------------------------------- -- -- Structure de la table `bib_cote` -- CREATE TABLE `bib_cote` ( `idcote` int(11) NOT NULL, `cote` char(3) NOT NULL DEFAULT '', `title` varchar(25) NOT NULL DEFAULT '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_cote` -- INSERT INTO `bib_cote` (`idcote`, `cote`, `title`) VALUES (1, 'ADM', 'Administration'), (2, 'APL', 'Arts plastiques'), (3, 'ARC', 'Architecture'), (4, 'ART', 'Art'), (5, 'BD', 'Bande dessinée'), (6, 'BIB', 'Bibliothèque'), (7, 'CUI', 'Cuisine'), (8, 'CUL', 'Culture'), (9, 'DES', 'Design'), (10, 'DIC', 'Dictionnaire'), (11, 'DRO', 'Droit'), (12, 'ECO', 'Economie'), (13, 'ETH', 'Ethnologie'), (14, 'FRA', 'Français'), (15, 'GUI', 'Guide'), (16, 'HIS', 'Histoire'), (17, 'INF', 'Informatique'), (18, 'JOB', 'Travail Emploi'), (19, 'LE', 'Littérature étrangère'), (20, 'LIT', 'Littérature'), (21, 'LOI', 'Loisir'), (22, 'MAT', 'Math'), (23, 'MED', 'Médical Santé'), (24, 'MET', 'Méthodologie'), (25, 'PHI', 'Philosophie'), (26, 'PHO', 'Photographie'), (27, 'PSY', 'Psychologie'), (28, 'PUB', 'Publicité'), (29, 'SCP', 'Science politique'), (30, 'SCI', 'Sciences'), (31, 'SOC', 'Sociologie'), (32, 'SPO', 'Sport'), (33, 'SPR', 'Spiritualité religion'), (34, 'LEA', 'Langues étrangères'), (35, 'COM', 'InfoCom'), (36, 'EDU', 'Education'); -- -------------------------------------------------------- -- -- Structure de la table `bib_data` -- CREATE TABLE `bib_data` ( `dataid` int(11) NOT NULL, `idinv` int(11) NOT NULL DEFAULT 0, `dataname` varchar(200) CHARACTER SET utf8 NOT NULL DEFAULT '', `datasize` int(11) NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_data` -- INSERT INTO `bib_data` (`dataid`, `idinv`, `dataname`, `datasize`) VALUES (1, 1188, 'BEAUNE_-_La_technique_introuvable_1980.pdf', 10743), (2, 1193, 'SERIS_Jean-pierre_-_La_technique_1994.pdf', 13307), (3, 1189, 'PASCAL_Georges_-_la_pensee_de_Kant_1966.pdf', 10314), (4, 1187, 'LEVY_Carlos_-_La_philosophie_hellenistique_1997-.pdf', 11270), (5, 668, 'Lalande_Andre_-_Vocabulaire_technique_et_critique_de_la_philosophie_vol1.pdf', 37257), (6, 980, 'Lalande_Andre_-_Vocabulaire_technique_et_critique_de_la_philosophie_vol2.pdf', 36046), (7, 1194, 'Deleuze_-_Logique_du_sens_(itext).pdf', 31454), (8, 1018, 'DELEUZE_Gilles_-_Difference_et_repetition_1968_(img).pdf', 34759), (9, 572, 'ADORNO_-_Theorie_esthetique_1974.pdf', 16011), (10, 1242, 'Aron_-_La_philosophie_critique_de_l-histoire.pdf', 14625), (11, 1209, 'Aron_-_introduction_a_la_philosophie_de_l-histoire.pdf', 19293), (12, 585, 'Belting_-_L-histoire_de_l-art_est_t_telle_finie(img).pdf', 6408), (13, 1210, 'Benz_-_Les_sources_mystiques_de_la_philosophie_romantique_allemande.pdf', 55216), (14, 1207, 'CICERON_-_Tusculanes_T2.pdf', 19140), (15, 1205, 'CICERON_-_de_finibus_T1.pdf', 8070), (16, 1206, 'CICERON_-_de_l-amitie.pdf', 5730), (17, 604, 'COMETTI_Jean-Pierre_-_Philosopher_avec_Wittgenstein.pdf', 10982), (18, 1204, 'Carr_-_Qu-est-ce_que_l-histoire.pdf', 7029), (19, 1234, 'Cassirer_-_L-idee_de_l-histoire.pdf', 8905), (20, 1233, 'Chartier_-_Au_bord_de_la_falaise.pdf', 11607), (21, 1101, 'Cometti_Morizot_Pouivret_-_Questions_d-esthetique.pdf', 7777), (22, 613, 'Deleuze_-_La_philosophie_critique_de_Kant.pdf', 8250); -- -------------------------------------------------------- -- -- Structure de la table `bib_dewey` -- CREATE TABLE `bib_dewey` ( `iddewey` int(11) NOT NULL, `index` varchar(10) NOT NULL DEFAULT '', `wording` text NOT NULL, `class` char(1) NOT NULL DEFAULT '', `subclass` char(2) NOT NULL DEFAULT '', `section` char(3) NOT NULL DEFAULT '', `subsection` varchar(5) NOT NULL DEFAULT '', `notdewey` char(1) NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_dewey` -- INSERT INTO `bib_dewey` (`iddewey`, `index`, `wording`, `class`, `subclass`, `section`, `subsection`, `notdewey`) VALUES (1, '0', 'Généralités (Ouvrages généraux (encyclopédies, bibliographies, etc.) et informatique)', '0', '', '', '', '1'), (2, '00', 'Savoir et communication', '0', '0', '', '', '1'), (3, '001.42', 'Collecte, agencement, analyse des données', '0', '0', '1', '001.4', '1'), (4, '3', 'Systémique, systèmes', '0', '0', '3', '', '1'), (5, '003.1', 'Identification de système (détermination d\'un modèle mathématique par observation des entrées- sorties)', '0', '0', '3', '003.1', '1'), (6, '003.2', 'Prévisions. Futurologie', '0', '0', '3', '003.2', '1'), (7, '003.3', 'Modélisation par ordinateur', '0', '0', '3', '003.3', '1'), (8, '003.5', 'Théorie de la communication et du contrôle. Cybernétique. Stabilité des systèmes', '0', '0', '3', '003.5', '1'), (9, '003.52', 'Théorie de la perception ', ' ', ' 0', ' 3 ', ' 003.', '1'), (10, '003.54', 'Théorie de l\'information. Théorie du codage', '0', '0', '3', '003.5', '1'), (11, '003.56', 'Théorie de la décision', '0', '0', '3', '003.5', '1'), (12, '003.7', 'Types de systèmes', '0', '0', '3', '003.7', '1'), (13, '003.71', 'Systèmes à grande échelle', '0', '0', '3', '003.7', '1'), (14, '003.74', 'Systèmes linéaires', '0', '0', '3', '003.7', '1'), (15, '003.75', 'Systèmes non linéaires', '0', '0', '3', '003.7', '1'), (16, '003.76', 'Systèmes stochastiques', '0', '0', '3', '003.7', '1'), (17, '003.78', 'Systèmes à paramètres distribués', '0', '0', '3', '003.7', '1'), (18, '003.8', 'Systèmes selon leur relation avec le temps', '0', '0', '3', '003.8', '1'), (19, '003.83', 'Systèmes utilisant des unités de temps discrètes', '0', '0', '3', '003.8', '1'), (20, '003.85', 'Systèmes dynamiques', '0', '0', '3', '003.8', '1'), (21, '003.857', 'Systèmes chaotiques. Théorie du chaos.', '0', '0', '3', '003.8', '1'), (22, '4', 'Informatique, traitement des données : principes, matériel, architecture, traitements, réseaux, périphériques.', '0', '0', '4', '', '1'), (23, '004.015 1', 'Principes mathématiques', '0', '0', '4', '004.0', '1'), (24, '004.019', 'Interaction homme-machine', '0', '0', '4', '004.0', '1'), (25, '004.026', 'Droit de l\'informatique', '0', '0', '4', '004.0', '1'), (26, '004.1', 'Types spécifiques d\'ordinateurs : généralités', '0', '0', '4', '004.1', '1'), (27, '004.16', 'Micro-ordinateurs', '0', '0', '4', '004.1', '1'), (28, '004.165', 'Micro-ordinateurs (sous-classement alphabétique par nom).', '0', '0', '4', '004.1', '1'), (29, '004.19', 'Calculatrices électroniques', '0', '0', '4', '004.1', '1'), (30, '004.2', 'Analyse et conception des systèmes. Architecture des ordinateurs. Évaluation des performances', '0', '0', '4', '004.2', '1'), (31, '004.21', 'Analyse et conception des systèmes. Conduite de projets', '0', '0', '4', '004.2', '1'), (32, '004.22', 'Architecture des ordinateurs', '0', '0', '4', '004.2', '1'), (33, '004.24', 'Évaluation des performances', '0', '0', '4', '004.2', '1'), (34, '004.25', 'Analyse et conception des systèmes, architecture des ordinateurs, évaluation des performances d\'ordinateurs spécifiques', '0', '0', '4', '004.2', '1'), (35, '004.3', 'Modes de traitement', '0', '0', '4', '004.3', '1'), (36, '004.33', 'Traitement en temps réel', '0', '0', '4', '004.3', '1'), (37, '004.35', 'Multitraitement ; traitement en parallèle', '0', '0', '4', '004.3', '1'), (38, '004.36', 'Traitement réparti. Client-serveur', '0', '0', '4', '004.3', '1'), (39, '004.5', 'Stockage des données', '0', '0', '4', '004.5', '1'), (40, '004.53', 'Mémoire interne (dont ROM et RAM)', '0', '0', '4', '004.5', '1'), (41, '004.56', 'Mémoire externe', '0', '0', '4', '004.5', '1'), (42, '004.563', 'Disques magnétiques', '0', '0', '4', '004.5', '1'), (43, '004.565', 'Mémoires optiques (CD-ROM)', '0', '0', '4', '004.5', '1'), (44, '004.6', 'Interfaçage et communications. Télématique', '0', '0', '4', '004.6', '1'), (45, '004.61', 'Interfaçage et communications pour des types particuliers d\'ordinateurs', '0', '0', '4', '004.6', '1'), (46, '004.62', 'Protocoles d\'interfaçage et communications (p. ex. TCP/IP)', '0', '0', '4', '004.6', '1'), (47, '004.64', 'Équipements (à bande de base, à bande large, modems, câbles en fibre optique, contrôleurs de périphériques en général)', '0', '0', '4', '004.6', '1'), (48, '004.65', 'Architecture et conception des réseaux de communication', '0', '0', '4', '004.6', '1'), (49, '004.66', 'Mode transmission des données, modes de communication des données (par paquets, multiplexage, ..)', '0', '0', '4', '004.6', '1'), (50, '004.67', 'Réseaux étendus (WAN)', '0', '0', '4', '004.6', '1'), (51, '004.678', 'Internet', '0', '0', '4', '004.6', '1'), (52, '004.68', 'Réseaux locaux (LAN). Intranet.', '0', '0', '4', '004.6', '1'), (53, '004.69', 'Télématique', '0', '0', '4', '004.6', '1'), (54, '004.692', 'Courrier électronique', '0', '0', '4', '004.6', '1'), (55, '004.696', 'Vidéotex', '0', '0', '4', '004.6', '1'), (56, '004.7', 'Périphériques', '0', '0', '4', '004.7', '1'), (57, '004.71', 'Périphériques pour des types particuliers d\'ordinateurs', '0', '0', '4', '004.7', '1'), (58, '004.716', 'Périphériques pour micro-ordinateurs', '0', '0', '4', '004.7', '1'), (59, '004.75', 'Périphériques combinant entrée et sortie (terminaux)', '0', '0', '4', '004.7', '1'), (60, '004.76', 'Périphériques d\'entrée (claviers, lecteurs de cartes)', '0', '0', '4', '004.7', '1'), (61, '004.77', 'Périphériques de sortie (COM, moniteur, imprimantes)', '0', '0', '4', '004.7', '1'), (62, '5', 'Informatique : programmation, logiciels, données, sécurité, ORGANISATION DES DONNÉEs', '0', '0', '5', '', '1'), (63, '005.1', 'Algorithmique. Programmation', '0', '0', '5', '005.1', '1'), (64, '005.11', 'Méthodes de programmation', '0', '0', '5', '005.1', '1'), (65, '005.112', 'Programmation modulaire', '0', '0', '5', '005.1', '1'), (66, '005.113', 'Programmation structurée', '0', '0', '5', '005.1', '1'), (67, '005.114', 'Programmation fonctionnelle', '0', '0', '5', '005.1', '1'), (68, '005.115', 'Programmation logique', '0', '0', '5', '005.1', '1'), (69, '005.117', 'Programmation orientée objet', '0', '0', '5', '005.1', '1'), (70, '005.12', 'Analyse et conception de logiciels', '0', '0', '5', '005.1', '1'), (71, '005.13', 'Langages de programmation', '0', '0', '5', '005.1', '1'), (72, '005.133', 'Langages de programmation particuliers', '0', '0', '5', '005.1', '1'), (73, '005.136', 'Langages machine, assembleur', '0', '0', '5', '005.1', '1'), (74, '005.14', 'Vérification, test, mesures, mise au point (débogage)', '0', '0', '5', '005.1', '1'), (75, '005.16', 'Maintenance des programmes et des logiciels', '0', '0', '5', '005.1', '1'), (76, '005.2', 'Programmation par types d\'ordinateurs', '0', '0', '5', '005.2', '1'), (77, '005.3', 'Logiciels. Génie logiciel', '0', '0', '5', '005.3', '1'), (78, '005.368 4', 'Logiciels pour interfaces utilisateurs particulières', '0', '0', '5', '005.3', '1'), (79, '005.369', 'Progiciels', '0', '0', '5', '005.3', '1'), (80, '005.37', 'Logiciels pour systèmes d\'exploitation particuliers', '0', '0', '5', '005.3', '1'), (81, '005.376', 'Logiciels pour applications clients-serveurs, groupware', '0', '0', '5', '005.3', '1'), (82, '005.4', 'Programmation et logiciels de systèmes', '0', '0', '5', '005.4', '1'), (83, '005.42', 'Programmation des systèmes', '0', '0', '5', '005.4', '1'), (84, '005.43', 'Logiciels de systèmes. Systèmes d\'exploitation', '0', '0', '5', '005.4', '1'), (85, '005.434', 'Programmation du traitement', '0', '0', '5', '005.4', '1'), (86, '005.435', 'Programmation de la mémoire virtuelle', '0', '0', '5', '005.4', '1'), (87, '005.44', 'Logiciels de systèmes, systèmes d\'exploitation pour différents types d\'ordinateurs', '0', '0', '5', '005.4', '1'), (88, '005.45', 'Traducteurs de langages de programmation', '0', '0', '5', '005.4', '1'), (89, '005.452', 'Interpréteurs', '0', '0', '5', '005.4', '1'), (90, '005.453', 'Compilateurs', '0', '0', '5', '005.4', '1'), (91, '005.456', 'Assembleurs', '0', '0', '5', '005.4', '1'), (92, '005.6', 'Microprogrammation et microprogrammes. Microprocesseurs', '0', '0', '5', '005.6', '1'), (93, '005.7', 'Organisation des données', '0', '0', '5', '005.7', '1'), (94, '005.71', 'Transmission des données', '0', '0', '5', '005.7', '1'), (95, '005.713', 'Logiciels de transmission', '0', '0', '5', '005.7', '1'), (96, '005.713 6', 'Logiciels de transmission pour micro-ordinateurs', '0', '0', '5', '005.7', '1'), (97, '005.72', 'Préparation des données. Formats d\'enregistrement. Codes numériques (ASCII). Codes correcteurs', '0', '0', '5', '005.7', '1'), (98, '005.73', 'Structure des données', '0', '0', '5', '005.7', '1'), (99, '005.74', 'Fichiers et bases de données', '0', '0', '5', '005.7', '1'), (100, '005.740 65', 'Gestion électronique de documents, édition électronique', '0', '0', '5', '005.7', '1'), (101, '005.741', 'Organisation, modes d\'accès. Tri et fusion', '0', '0', '5', '005.7', '1'), (102, '005.742', 'Index. Répertoires', '0', '0', '5', '005.7', '1'), (103, '005.746', 'Compression de données', '0', '0', '5', '005.7', '1'), (104, '005.75', 'Types de bases de données', '0', '0', '5', '005.7', '1'), (105, '005.8', 'Sécurité des données', '0', '0', '5', '005.8', '1'), (106, '005.82', 'Cryptage des données', '0', '0', '5', '005.8', '1'), (107, '005.84', 'Virus', '0', '0', '5', '005.8', '1'), (108, '005.86', 'Restauration des données', '0', '0', '5', '005.8', '1'), (109, '6', 'Méthodes particulières et application de l\'informatique, intelligence artificielle, multimédia', '0', '0', '6', '', '1'), (110, '006.3', 'Intelligence artificielle', '0', '0', '6', '006.3', '1'), (111, '006.31', 'Apprentissage par ordinateur (EAO).', '0', '0', '6', '006.3', '1'), (112, '006.32', 'Réseaux neuronaux.', '0', '0', '6', '006.3', '1'), (113, '006.33', 'Systèmes experts', '0', '0', '6', '006.3', '1'), (114, '006.35', 'Traitement du langage naturel', '0', '0', '6', '006.3', '1'), (115, '006.37', 'Vision artificielle', '0', '0', '6', '006.3', '1'), (116, '006.4', 'Reconnaissance de formes', '0', '0', '6', '006.4', '1'), (117, '006.42', 'Reconnaissance optique de formes', '0', '0', '6', '006.4', '1'), (118, '006.424', 'Reconnaissance optique de caractères', '0', '0', '6', '006.4', '1'), (119, '006.425', 'Reconnaissance optique de l\'écriture', '0', '0', '6', '006.4', '1'), (120, '006.45', 'Reconnaissance acoustique de formes', '0', '0', '6', '006.4', '1'), (121, '006.454', 'Reconnaissance de la parole', '0', '0', '6', '006.4', '1'), (122, '006.5', 'Synthèse de sons par ordinateur', '0', '0', '6', '006.5', '1'), (123, '006.54', 'Synthèse de la parole', '0', '0', '6', '006.5', '1'), (124, '006.6', 'Infographie', '0', '0', '6', '006.6', '1'), (125, '006.62', 'sortie en infographie', '0', '0', '6', '006.6', '1'), (126, '006.66', 'Programmation (langages, logiciels)', '0', '0', '6', '006.6', '1'), (127, '006.67', 'Programmation pour ordinateurs particuliers', '0', '0', '6', '006.6', '1'), (128, '006.676', 'Programmation pour micro-ordinateurs', '0', '0', '6', '006.6', '1'), (129, '006.68', 'Programmes', '0', '0', '6', '006.6', '1'), (130, '006.693', 'Graphisme en 3 dimensions', '0', '0', '6', '006.6', '1'), (131, '006.696', 'Animation. Morphing', '0', '0', '6', '006.6', '1'), (132, '006.7', 'Multimédias', '0', '0', '6', '006.7', '1'), (133, '006.76', 'Programmation (langages, logiciels)', '0', '0', '6', '006.7', '1'), (134, '006.77', 'Programmation pour ordinateurs particuliers', '0', '0', '6', '006.7', '1'), (135, '006.78', 'Programmes', '0', '0', '6', '006.7', '1'), (136, '1', 'Bibliographies', '0', '1', '', '', '1'), (137, '2', 'économie et science de l\'information', '0', '2', '', '', '1'), (138, '3', 'Encyclopédies générales', '0', '3', '', '', '1'), (139, '4', 'La vingtième édition n\'attribue aucun sujet à ces indices', '0', '4', '', '', '1'), (140, '5', 'Publications en série et périodiques généraux et leurs index', '0', '5', '', '', '1'), (141, '6', 'Organisations générales et muséologie', '0', '6', '', '', '1'), (142, '7', 'Médias d\'information: journalisme et édition', '0', '7', '', '', '1'), (143, '8', 'Recueils généraux et collections générales', '0', '8', '', '', '1'), (144, '9', 'Manuscrits et livres rares', '0', '9', '', '', '1'), (145, '1', 'Philosophie, parapsychologie et occultisme, psychologie', '1', '', '', '', '1'), (146, '10', 'Généralités', '1', '10', '', '', '1'), (147, '101', 'Nature et méthode de la philosophie', '1', '10', '101', '', '1'), (148, '11', 'Métaphysique', '1', '11', '', '', '1'), (149, '111', 'Métaphysique générale, ontologie', '1', '11', '111', '', '1'), (150, '113', 'Création, cosmologie', '1', '11', '113', '', '1'), (151, '114', 'Espace', '1', '11', '114', '', '1'), (152, '115', 'Temps', '1', '11', '115', '', '1'), (153, '116', 'Mouvement', '1', '11', '116', '', '1'), (154, '117', 'Matière', '1', '11', '117', '', '1'), (155, '118', 'Force', '1', '11', '118', '', '1'), (156, '119', 'Quantité, nombre', '1', '11', '119', '', '1'), (157, '12', 'Épistémologie, causalité, genre humain', '1', '12', '', '', '1'), (158, '122', 'Causalité', '1', '12', '122', '', '1'), (159, '123', 'Liberté et nécessité', '1', '12', '123', '', '1'), (160, '124', 'Téléologie', '1', '12', '124', '', '1'), (161, '125', 'Finitude', '1', '12', '125', '', '1'), (162, '128', 'Âme', '1', '12', '128', '', '1'), (163, '129', 'Destinée de l\'âme. Immortalité', '1', '12', '129', '', '1'), (164, '13', 'Phénomènes paranormaux, parapsychologie, vie de l\'esprit, philosophie de la culture', '1', '13', '', '', '1'), (165, '133', 'Sciences occultes', '1', '13', '133', '', '1'), (166, '14', 'Écoles et courants philosophiques, les divers systèmes philosophiques, typologie des systèmes philosophiques', '1', '14', '', '', '1'), (167, '141', 'Systèmes philosophiques', '1', '14', '141', '', '1'), (168, '15', 'Psychologie', '1', '15', '', '', '1'), (169, '159', 'Psychologie. Sciences cognitives. Psychopathologie', '1', '15', '159', '', '1'), (170, '16', 'Logique', '1', '16', '', '', '1'), (171, '161', 'Logique', '1', '16', '161', '', '1'), (172, '162', 'Raisonnement', '1', '16', '162', '', '1'), (173, '164', 'Logique symbolique', '1', '16', '164', '', '1'), (174, '165', 'Épistémologie', '1', '16', '165', '', '1'), (175, '167', 'Méthodologie de la recherche', '1', '16', '167', '', '1'), (176, '168', 'Méthode scientifique', '1', '16', '168', '', '1'), (177, '17', 'Éthique (philosophie morale)', '1', '17', '', '', '1'), (178, '171', 'Morale individuelle', '1', '17', '171', '', '1'), (179, '172', 'Morale sociale', '1', '17', '172', '', '1'), (180, '173', 'Morale familiale', '1', '17', '173', '', '1'), (181, '174', 'Morale professionnelle. Déontologie', '1', '17', '174', '', '1'), (182, '175', 'Morale des divertissements', '1', '17', '175', '', '1'), (183, '176', 'Morale sexuelle', '1', '17', '176', '', '1'), (184, '177', 'Moralité et relations humaines', '1', '17', '177', '', '1'), (185, '178', 'Morale et tempérance', '1', '17', '178', '', '1'), (186, '179', 'Questions diverses', '1', '17', '179', '', '1'), (187, '18', 'Philosophie ancienne, médiévale, orientale', '1', '18', '', '', '1'), (188, '181', 'Philisophie orientale', '1', '18', '181', '', '1'), (189, '19', 'Philosophie occidentale moderne', '1', '19', '', '', '1'), (190, '2', 'Religion', '2', '', '', '', '1'), (191, '20', 'Généralités', '2', '20', '', '', '1'), (192, '200', 'Généralités sur les religions (200.1 à 200.9)', '2', '20', '200', '', '1'), (193, '201', 'Christianisme : généralités (201 à 209)', '2', '20', '201', '', '1'), (194, '21', 'Religion naturelle', '2', '21', '', '', '1'), (195, '211', 'Dieu. Déisme, théisme, athéisme', '2', '21', '211', '', '1'), (196, '212', 'Panthéisme', '2', '21', '212', '', '1'), (197, '213', 'Création', '2', '21', '213', '', '1'), (198, '214', 'Providence. Prédétermination', '2', '21', '214', '', '1'), (199, '215', 'Religion et science, raison et révélation. L\'Église et la science', '2', '21', '215', '', '1'), (200, '216', 'Bien et mal', '2', '21', '216', '', '1'), (201, '217', 'Devoirs de l\'homme envers Dieu', '2', '21', '217', '', '1'), (202, '218', 'Immortalité. Au-delà', '2', '21', '218', '', '1'), (203, '219', 'Anthropomorphisme. Analogies et correspondances', '2', '21', '219', '', '1'), (204, '22', 'Bible', '2', '22', '', '', '1'), (205, '221', 'Ancien testament (canon juif)', '2', '22', '221', '', '1'), (206, '222', 'Ancien testament (canon chrétien) : livres historiques', '2', '22', '222', '', '1'), (207, '223', 'Ancien testament (canon chrétien) : livres poétiques', '2', '22', '223', '', '1'), (208, '224', 'Ancien testament (canon chrétien) : Prophètes', '2', '22', '224', '', '1'), (209, '225', 'Nouveau testament', '2', '22', '225', '', '1'), (210, '226', 'Évangiles. Actes des apôtres', '2', '22', '226', '', '1'), (211, '227', 'Épîtres', '2', '22', '227', '', '1'), (212, '228', 'Apocalypse', '2', '22', '228', '', '1'), (213, '229', 'Livres deutérocanoniques. Apocryphes. Pseudépigraphes', '2', '22', '229', '', '1'), (214, '23', 'Théologie dogmatique : bases philosophiques. La Foi. Théologie chrétienne', '2', '23', '', '', '1'), (215, '231', 'Dieu', '2', '23', '231', '', '1'), (216, '232', 'Christologie', '2', '23', '232', '', '1'), (217, '233', 'Anthropologie religieuse', '2', '23', '233', '', '1'), (218, '234', 'Sotériologie. Doctrine du salut, grâce, foi', '2', '23', '234', '', '1'), (219, '235', 'Anges. Pneumatologie. Saints', '2', '23', '235', '', '1'), (220, '236', 'Eschatologie', '2', '23', '236', '', '1'), (221, '237', 'Vie future', '2', '23', '237', '', '1'), (222, '238', 'Symboles de la Foi : catéchismes, credos, confessions de foi', '2', '23', '238', '', '1'), (223, '239', 'Théologie polémique. Défense de la Foi', '2', '23', '239', '', '1'), (224, '24', 'Théologie morale et dévotion chrétiennes', '2', '24', '', '', '1'), (225, '241', 'Théologie morale. Morale chrétienne', '2', '24', '241', '', '1'), (226, '242', 'Méditations', '2', '24', '242', '', '1'), (227, '243', 'Prière. Lecture de la Bible', '2', '24', '243', '', '1'), (228, '244', 'Lectures religieuses', '2', '24', '244', '', '1'), (229, '245', 'Hymnes chrétiens', '2', '24', '245', '', '1'), (230, '246', 'Art et symbolisme chrétiens', '2', '24', '246', '', '1'), (231, '247', 'Mobilier ecclésiastique', '2', '24', '247', '', '1'), (232, '248', 'Théologie ascétique et mystique. Piété, spiritualité', '2', '24', '248', '', '1'), (233, '249', 'Culte domestique, dévotions familiales', '2', '24', '249', '', '1'), (234, '25', 'Église locale et ordres religieux chrétiens', '2', '25', '', '', '1'), (235, '251', 'Homilétique. Histoire et théorie de la prédication', '2', '25', '251', '', '1'), (236, '252', 'Sermons', '2', '25', '252', '', '1'), (237, '253', 'Visites pastorales. Direction d\'âmes', '2', '25', '253', '', '1'), (238, '254', 'État et condition des prêtres', '2', '25', '254', '', '1'), (239, '255', 'Confréries et congrégations laïques', '2', '25', '255', '', '1'), (240, '256', 'Oeuvres paroissiales', '2', '25', '256', '', '1'), (241, '257', 'Enseignement', '2', '25', '257', '', '1'), (242, '258', 'Bienfaisance', '2', '25', '258', '', '1'), (243, '259', 'Autres oeuvres', '2', '25', '259', '', '1'), (244, '26', 'Théologie sociale chrétienne, ecclésiologie', '2', '26', '', '', '1'), (245, '261', 'Relations de l\'Église chrétienne avec le monde', '2', '26', '261', '', '1'), (246, '262', 'Organisation ecclésiastique', '2', '26', '262', '', '1'), (247, '263', 'Dimanche', '2', '26', '263', '', '1'), (248, '264', 'Liturgie chrétienne', '2', '26', '264', '', '1'), (249, '265', 'Sacrements chrétiens', '2', '26', '265', '', '1'), (250, '266', 'Missions chrétiennes', '2', '26', '266', '', '1'), (251, '267', 'Associations et communautés religieuses chrétiennes', '2', '26', '267', '', '1'), (252, '268', 'Catéchisation', '2', '26', '268', '', '1'), (253, '269', 'Retraites, conversions, réveils, prosélytisme', '2', '26', '269', '', '1'), (254, '27', 'Histoire et géographie de l\'église chrétienne', '2', '27', '', '', '1'), (255, '271', 'Ordres religieux. Vie monastique', '2', '27', '271', '', '1'), (256, '272', 'Persécutions des chrétiens', '2', '27', '272', '', '1'), (257, '273', 'Hérésies et schismes', '2', '27', '273', '', '1'), (258, '276', 'Patrologie', '2', '27', '276', '', '1'), (259, '28', 'Confessions et sectes chrétiennes', '2', '28', '', '', '1'), (260, '281', 'Églises primitives et Églises orientales', '2', '28', '281', '', '1'), (261, '282', 'Église catholique romaine', '2', '28', '282', '', '1'), (262, '283', 'Églises épiscopaliennes nationales (anglicanisme)', '2', '28', '283', '', '1'), (263, '284', 'Églises protestantes continentales', '2', '28', '284', '', '1'), (264, '285', 'Églises protestantes britanniques (puritains, presbytériens, etc.)', '2', '28', '285', '', '1'), (265, '286', 'Anabaptistes, mennonites, baptistes, aventistes', '2', '28', '286', '', '1'), (266, '287', 'Méthodistes', '2', '28', '287', '', '1'), (267, '288', 'Antitrinitaires, sociniens', '2', '28', '288', '', '1'), (268, '289', 'Autres sectes et églises chrétiennes', '2', '28', '289', '', '1'), (269, '29', 'Autres religions et religion comparée', '2', '29', '', '', '1'), (270, '291', 'Histoire comparée des religions', '2', '29', '291', '', '1'), (271, '292', 'Religion des Grecs et des Romains anciens. Mythologie classique', '2', '29', '292', '', '1'), (272, '293', 'Religions anciennes des Scandinaves, Baltes et Slaves', '2', '29', '293', '', '1'), (273, '294', 'Bouddhisme, brahmanisme, hindouïsme', '2', '29', '294', '', '1'), (274, '295', 'Religions perses', '2', '29', '295', '', '1'), (275, '296', 'Judaïsme', '2', '29', '296', '', '1'), (276, '297', 'Islam', '2', '29', '297', '', '1'), (277, '298', 'Mouvements religieux récents et contemporains', '2', '29', '298', '', '1'), (278, '299', 'Autres religions', '2', '29', '299', '', '1'), (279, '3', 'Sciences humaines et sociales', '3', '', '', '', '1'), (280, '30', 'Sociologie et anthropologie (301 à 307)', '3', '30', '', '', '1'), (281, '300', 'Généralités (300.1 à 300.9)', '3', '30', '300', '', '1'), (282, '303', 'Méthode des sciences sociales', '3', '30', '303', '', '1'), (283, '304', 'Questions sociales en général. Critique sociale', '3', '30', '304', '', '1'), (284, '308', 'Sociographie', '3', '30', '308', '', '1'), (285, '31', 'Statistiques générales', '3', '31', '', '', '1'), (286, '311', 'Statistique', '3', '31', '311', '', '1'), (287, '312', 'Statistique de la population', '3', '31', '312', '', '1'), (288, '314', 'Démographie', '3', '31', '314', '', '1'), (289, '316', 'Sociologie', '3', '31', '316', '', '1'), (290, '32', 'Science politique', '3', '32', '', '', '1'), (291, '321', 'Formes de l\'organisation politique', '3', '32', '321', '', '1'), (292, '322', 'Clergés et États', '3', '32', '322', '', '1'), (293, '323', 'Politique intérieure (mouvements minoritaires et nationalistes, guerre civile, lutte des classes)', '3', '32', '323', '', '1'), (294, '324', 'Élections', '3', '32', '324', '', '1'), (295, '325', 'Migrations et colonisations', '3', '32', '325', '', '1'), (296, '326', 'Esclavage, travail forcé', '3', '32', '326', '', '1'), (297, '327', 'Relations internationales', '3', '32', '327', '', '1'), (298, '328', 'Parlements. Gouvernement représentatif', '3', '32', '328', '', '1'), (299, '329', 'Partis politiques', '3', '32', '329', '', '1'), (300, '33', 'Économie', '3', '33', '', '', '1'), (301, '331', 'Économie du travail', '3', '33', '331', '', '1'), (302, '332', 'Économie de la terre et de la propriété. Économie du logement. Économie régionale', '3', '33', '332', '', '1'), (303, '334', 'Entreprises. Systèmes coopératifs', '3', '33', '334', '', '1'), (304, '336', 'Économie financière. Systèmes monétaire et bancaire', '3', '33', '336', '', '1'), (305, '338', 'Politique économique. Planification. Conjoncture. Secteurs de l\'économie', '3', '33', '338', '', '1'), (306, '339', 'Commerce. Économie mondiale', '3', '33', '339', '', '1'), (307, '34', 'Droit', '3', '34', '', '', '1'), (308, '341', 'Droit international', '3', '34', '341', '', '1'), (309, '342', 'Droit public, constitutionnel et administratif', '3', '34', '342', '', '1'), (310, '343', 'Droit pénal', '3', '34', '343', '', '1'), (311, '344', 'Droit pénal militaire', '3', '34', '344', '', '1'), (312, '347', 'Droit civil', '3', '34', '347', '', '1'), (313, '348', 'Droit canonique et ecclésiastique', '3', '34', '348', '', '1'), (314, '349', 'Autres branches du droit (droit du travail, droit social, droit foncier, droit de l\'environnement)', '3', '34', '349', '', '1'), (315, '35', 'Administration publique. Science militaire', '3', '35', '', '', '1'), (316, '351', 'Missions et activités de l\'administration publique', '3', '35', '351', '', '1'), (317, '352', 'Administration locale', '3', '35', '352', '', '1'), (318, '353', 'Administrations départementales, provinciales', '3', '35', '353', '', '1'), (319, '354', 'Gouvernement central', '3', '35', '354', '', '1'), (320, '355', 'Art militaire. Polémologie. Organisation des forces armées', '3', '35', '355', '', '1'), (321, '356', 'Infanterie et logistique', '3', '35', '356', '', '1'), (322, '357', 'Cavalerie', '3', '35', '357', '', '1'), (323, '358', 'Artillerie. Forces aériennes', '3', '35', '358', '', '1'), (324, '359', 'Forces navales', '3', '35', '359', '', '1'), (325, '36', 'Problèmes et services sociaux', '3', '36', '', '', '1'), (326, '364', 'Problèmes sociaux. Aide sociale', '3', '36', '364', '', '1'), (327, '365', 'Droit au logement', '3', '36', '365', '', '1'), (328, '366', 'Droit de la consommation', '3', '36', '366', '', '1'), (329, '368', 'Assurances', '3', '36', '368', '', '1'), (330, '369', 'Assurance sociale', '3', '36', '369', '', '1'), (331, '37', 'Éducation', '3', '37', '', '', '1'), (332, '371', 'Organisation des systèmes éducatifs', '3', '37', '371', '', '1'), (333, '372', 'Éducation pré-scolaire et enseignement du premier degré', '3', '37', '372', '', '1'), (334, '373', 'Enseignement général', '3', '37', '373', '', '1'), (335, '374', 'Formation permanente', '3', '37', '374', '', '1'), (336, '376', 'Écoles spéciales (handicapés, groupes sociaux particuliers, etc.)', '3', '37', '376', '', '1'), (337, '377', 'Enseignement technique', '3', '37', '377', '', '1'), (338, '378', 'Enseignement supérieur', '3', '37', '378', '', '1'), (339, '379', 'Loisirs éducatifs', '3', '37', '379', '', '1'), (340, '38', 'Commerce, communications, transports', '3', '38', '', '', '1'), (341, '39', 'Coutumes et folklore et étiquette', '3', '39', '', '', '1'), (342, '391', 'Costume, parures, ornements', '3', '39', '391', '', '1'), (343, '392', 'Coutumes relatives à la vie privée (naissance, mariage, cuisine, etc.)', '3', '39', '392', '', '1'), (344, '393', 'Rites funéraires', '3', '39', '393', '', '1'), (345, '394', 'Vie publique', '3', '39', '394', '', '1'), (346, '395', 'Cérémonial, étiquette, savoir-vivre', '3', '39', '395', '', '1'), (347, '396', 'Condition féminine', '3', '39', '396', '', '1'), (348, '398', 'Folklore', '3', '39', '398', '', '1'), (349, '4', 'Langues (langues parlées et écrites, les grammaires, les dictionnaires, etc.)', '4', '', '', '', '1'), (350, '40', 'Généralités', '4', '40', '', '', '1'), (351, '41', 'Linguistique', '4', '41', '', '', '1'), (352, '42', 'Anglais', '4', '42', '', '', '1'), (353, '43', 'Allemand et autres langues germaniques', '4', '43', '', '', '1'), (354, '44', 'Français et autres langues romanes', '4', '44', '', '', '1'), (355, '45', 'Italien, roumain et langues rhéto-romanes', '4', '45', '', '', '1'), (356, '46', 'Espagnol et portugais', '4', '46', '', '', '1'), (357, '47', 'Latin et autres langues italiques', '4', '47', '', '', '1'), (358, '48', 'Grec et autres langues helléniques', '4', '48', '', '', '1'), (359, '49', 'Autres langues', '4', '49', '', '', '1'), (360, '5', 'Sciences de la nature et mathématiques', '5', '', '', '', '1'), (361, '50', 'Généralités', '5', '50', '', '', '1'), (362, '51', 'Mathématiques', '5', '51', '', '', '1'), (363, '510.1', 'Fondements des mathématiques. Philosophie des mathématiques.', '5', '51', '510', '510.1', '1'), (364, '510.246 2', 'Mathématiques pour l\'ingénieur.', '5', '51', '510', '510.2', '1'), (365, '511', 'Principes généraux', '5', '51', '511', '', '1'), (366, '511.2', 'Systèmes mathématiques.', '5', '51', '511', '511.2', '1'), (367, '511.3', 'Logique mathématique. Théorie mathématique des automates. Théorie mathématique des machines. Langages formels. Théorie de la récurrence. Décidabilité. Opérateurs logiques.', '5', '51', '511', '511.3', '1'), (368, '511.32', 'Ensembles. Algèbre de Boole.', '5', '51', '511', '511.3', '1'), (369, '511.322', 'Nombres transfinis', '5', '51', '511', '511.3', '1'), (370, '511.33', 'Relations, treillis, systèmes et structures ordonnés.', '5', '51', '511', '511.3', '1'), (371, '511.35', 'Théorie de la récursivité. Fonctions récursives.', '5', '51', '511', '511.3', '1'), (372, '511.4', 'Approximation et développements.', '5', '51', '511', '511.4', '1'), (373, '511.5', 'Théorie des graphes. Construction des graphes.', '5', '51', '511', '511.5', '1'), (374, '511.6', 'Analyse combinatoire.', '5', '51', '511', '511.6', '1'), (375, '511.8', 'Modèles mathématiques et simulation. Algorithmes.', '5', '51', '511', '511.8', '1'), (376, '512', 'Algèbre, théorie des nombres', '5', '51', '512', '', '1'), (377, '512.2', 'Groupes et théorie des groupes.', '5', '51', '512', '512.2', '1'), (378, '512.3', 'Corps : théorie des corps, théorie de Galois.', '5', '51', '512', '512.3', '1'), (379, '512.4', 'Anneaux, domaines d\'intégrité, idéaux. Théorie de la dilatation. Modules. Théorie des radicaux.', '5', '51', '512', '512.4', '1'), (380, '512.5', 'Algèbres linéaire, multilinéaire, multidimensionnelle', '5', '51', '512', '512.5', '1'), (381, '512.52', 'Espaces vectoriels.', '5', '51', '512', '512.5', '1'), (382, '512.55', 'Algèbres et groupes topologiques, algèbres et groupes connexes', '5', '51', '512', '512.5', '1'), (383, '512.56', 'Algèbres différentielles et des différences', '5', '51', '512', '512.5', '1'), (384, '512.57', 'Algèbres-quotients (p. ex. algèbres de Clifford, extérieure, spineurs, algèbre tensorielle)', '5', '51', '512', '512.5', '1'), (385, '512.7', 'Théorie des nombres. Treillis.', '5', '51', '512', '512.7', '1'), (386, '512.72', 'Théorie des nombres de fractions continuées', '5', '51', '512', '512.7', '1'), (387, '512.9', 'Fondements de l\'algèbre.', '5', '51', '512', '512.9', '1'), (388, '512.94', 'Théorie des équations', '5', '51', '512', '512.9', '1'), (389, '512.943', 'Déterminants et matrices .', '5', '51', '512', '512.9', '1'), (390, '512.944', 'Théorie des formes. Théorie des invariants algébriques.', '5', '51', '512', '512.9', '1'), (391, '512.96', 'Algèbre des fonctions sans équation. Fonctions rationnelles', '5', '51', '512', '512.9', '1'), (392, '512.97', 'Inégalités.', '5', '51', '512', '512.9', '1'), (393, '514', 'Topologie', '5', '51', '514', '', '1'), (394, '514.2', 'Topologie algébrique.', '5', '51', '514', '514.2', '1'), (395, '514.3', 'Topologie des espaces. Topologie métrique.', '5', '51', '514', '514.3', '1'), (396, '514.7', 'Topologie analytique.', '5', '51', '514', '514.7', '1'), (397, '514.72', 'Topologie différentielle. Foliations.', '5', '51', '514', '514.7', '1'), (398, '514.74', 'Analyse globale.', '5', '51', '514', '514.7', '1'), (399, '514.742', 'Fractales.', '5', '51', '514', '514.7', '1'), (400, '515', 'Analyse', '5', '51', '515', '', '1'), (401, '515.2', 'Généralités.', '5', '51', '515', '515.2', '1'), (402, '515.24', 'Suites et séries. Processus infinis.', '5', '51', '515', '515.2', '1'), (403, '515.243', 'Séries. Séries infinies. Sommabilité.', '5', '51', '515', '515.2', '1'), (404, '515.243 2', 'Séries de puissances.', '5', '51', '515', '515.2', '1'), (405, '515.243 3', 'Analyse de Fourier, analyse harmonique. Analyse par ondelettes.', '5', '51', '515', '515.2', '1'), (406, '515.25', 'Équations et fonctions.', '5', '51', '515', '515.2', '1'), (407, '515.3', 'Calcul différentiel. Équations différentielles.', '5', '51', '515', '515.3', '1'), (408, '515.33', 'Calcul différentiel. Différentiation ordinaire, partielle, totale. Dérivées totales et directionnelles. Théorèmes de la valeur moyenne. Différentielles.', '5', '51', '515', '515.3', '1'), (409, '515.35', 'Équations différentielles. Problème de Cauchy. Ordres et degrés. Problèmes aux limites (généralités). Théories de la bifurcation, de la perturbation, de la stabilité', '5', '51', '515', '515.3', '1'), (410, '515.352', 'Équations différentielles ordinaires. Équations différentielles linéaires ordinaires. Équations différentielles non linéaires ordinaires. Systèmes dynamiques.', '5', '51', '515', '515.3', '1'), (411, '515.353', 'Équations différentielles aux dérivées partielles (p. ex. équations elliptiques, hyperboliques, paraboliques). Équations différentielles linéaires aux dérivées partielles. Équations différentielles non linéaires aux dérivées partielles.', '5', '51', '515', '515.3', '1'), (412, '515.354', 'Équations différentielles linéaires.', '5', '51', '515', '515.3', '1'), (413, '515.355', 'Équations différentielles non linéaires.', '5', '51', '515', '515.3', '1'), (414, '515.4', 'Calcul intégral. Équations intégrales.', '5', '51', '515', '515.4', '1'), (415, '515.42', 'Théorie de la mesure et de l\'intégration. Théorie ergodique.', '5', '51', '515', '515.4', '1'), (416, '515.43', 'Calcul intégral. Intégration. Sommabilité.', '5', '51', '515', '515.4', '1'), (417, '515.45', 'Équations intégrales.', '5', '51', '515', '515.4', '1'), (418, '515.46', 'Inégalités intégrales.', '5', '51', '515', '515.4', '1'), (419, '515.5', 'Fonctions spéciales.', '5', '51', '515', '515.5', '1'), (420, '515.52', 'Intégrales eulériennes (p. ex. fonctions gamma, fonctions bêta).', '5', '51', '515', '515.5', '1'), (421, '515.53', 'Fonctions harmoniques', '5', '51', '515', '515.5', '1'), (422, '515.54', 'Fonctions de Mathieu.', '5', '51', '515', '515.5', '1'), (423, '515.55', 'Polynômes orthogonaux.', '5', '51', '515', '515.5', '1'), (424, '515.56', 'Fonction zêta.', '5', '51', '515', '515.5', '1'), (425, '515.6', 'Autres méthodes analytiques.', '5', '51', '515', '515.6', '1'), (426, '515.62', 'Calcul des différences finies. Problèmes aux limites définies par des valeurs numériques.', '5', '51', '515', '515.6', '1'), (427, '515.623', 'Différentiation numérique.', '5', '51', '515', '515.6', '1'), (428, '515.624', 'Intégration numérique.', '5', '51', '515', '515.6', '1'), (429, '515.625', 'Équations de la différence.', '5', '51', '515', '515.6', '1'), (430, '515.63', 'Analyse vectorielle, tensorielle, spinorielle. Calcul vectoriel et tensoriel.', '5', '51', '515', '515.6', '1'), (431, '515.64', 'Calcul des variations. Théorie mathématique de la commande', '5', '51', '515', '515.6', '1'), (432, '515.7', 'Analyse fonctionnelle.', '5', '51', '515', '515.7', '1'), (433, '515.72', 'Calcul opérationnel.', '5', '51', '515', '515.7', '1'), (434, '515.723', 'Transformées (opérateurs intégraux) (p. ex. transformées de Fourier, de Hilbert, de Laplace, de Legendre, transformées Z).', '5', '51', '515', '515.7', '1'), (435, '515.724', 'Théorie de l\'opérateur.', '5', '51', '515', '515.7', '1'), (436, '515.724 2', 'Opérateurs différentiels', '5', '51', '515', '515.7', '1'), (437, '515.73', 'Espaces vectoriels topologiques. Espaces linéaires topologiques.', '5', '51', '515', '515.7', '1'), (438, '515.74', 'Fonctionnelles.', '5', '51', '515', '515.7', '1'), (439, '515.782', 'Théorie de la distribution. Dualité. Espaces de distribution. Espaces de Sobolev. Fonctions généralisées.', '5', '51', '515', '515.7', '1'), (440, '515.784', 'Théorie de la valorisation.', '5', '51', '515', '515.7', '1'), (441, '515.785', 'Analyse harmonique abstraite. Analyse des groupes de Fourier.', '5', '51', '515', '515.7', '1'), (442, '515.8', 'Fonctions de variables réelles.', '5', '51', '515', '515.8', '1'), (443, '515.83', 'Fonctions d\'une variable réelle.', '5', '51', '515', '515.8', '1'), (444, '515.84', 'Fonctions de plusieurs variables réelles.', '5', '51', '515', '515.8', '1'), (445, '515.9', 'Fonctions de variables complexes. Théorie abstraite du potentiel. Fonctions automorphiques. Projections conformes.', '5', '51', '515', '515.9', '1'), (446, '515.93', 'Fonctions d\'une variable complexe. Surfaces de Riemann.', '5', '51', '515', '515.9', '1'), (447, '515.94', 'Fonctions de plusieurs variables complexes. Espaces analytiques, espaces à n-dimensions. Espaces de Teichmüller.', '5', '51', '515', '515.9', '1'), (448, '515.983', 'Fonctions elliptiques', '5', '51', '515', '515.9', '1'), (449, '515.984', 'Fonction thêta.', '5', '51', '515', '515.9', '1'), (450, '516', 'Géométrie.', '5', '51', '516', '', '1'), (451, '516.1', 'Généralités. Géométrie métrique. Transformations. Automorphismes.', '5', '51', '516', '516.1', '1'), (452, '516.2', 'Géométrie euclidienne.', '5', '51', '516', '516.2', '1'), (453, '516.3', 'Géométries analytiques.', '5', '51', '516', '516.3', '1'), (454, '516.35', 'Géométrie algébrique (fondée sur l\'algèbre linéaire). Géométrie algébrique abstraite. Transformations birationnelle et conforme. Intersections. Connexions. Géométries duales. Formes bilinéaires et sesquilinéaires. Polytopes. Multiplications complexes.', '5', '51', '516', '516.3', '1'), (455, '516.352', 'Courbes et surfaces sur des plans projectifs et affines. Théorie des courbes.', '5', '51', '516', '516.3', '1'), (456, '516.353', 'Variétés algébriques de grandes dimensions.', '5', '51', '516', '516.3', '1'), (457, '516.36', 'Géométrie différentielle et intégrale. Surfaces. Courbes. Variétés différentiables.', '5', '51', '516', '516.3', '1'), (458, '516.362', 'Géométrie intégrale (géométrie globalement différentielle).', '5', '51', '516', '516.3', '1'), (459, '516.363', 'Géométrie différentielle locale et intrinsèque.', '5', '51', '516', '516.3', '1'), (460, '516.37', 'Géométries différentielles métriques(géométries euclidienne, riemannienne, de Sasakian, de Minkowski, de Finsler, de Cartan).', '5', '51', '516', '516.3', '1'), (461, '516.4', 'Géométrie affine.', '5', '51', '516', '516.4', '1'), (462, '516.5', 'Géométrie projective.', '5', '51', '516', '516.5', '1'), (463, '516.6', 'Géométrie descriptive abstraite.', '5', '51', '516', '516.6', '1'), (464, '516.9', 'Géométries non euclidiennes (p. ex. géométries de Bolyai, de Gauss, hyperboliques, inversives, de Lobatchevski).', '5', '51', '516', '516.9', '1'), (465, '519', 'Probabilités, Statistiques mathématiques, Mathématiques appliquées', '5', '51', '519', '', '1'), (466, '519.2', 'Probabilités. Processus aléatoires (stochastiques), probabilités géométriques, jeux de hasard. Probabilités sur des anneaux, des algèbres et d\'autres structures algébriques.', '5', '51', '519', '519.2', '1'), (467, '519.23', 'Processus stochastiques (processus stationnaires, séries temporelles, processus de Markov, processus de branchement).', '5', '51', '519', '519.2', '1'), (468, '519.24', 'Distributions de probabilités. Probabilités descriptives.', '5', '51', '519', '519.2', '1'), (469, '519.28', 'Sujets particuliers.', '5', '51', '519', '519.2', '1'), (470, '519.282', 'Trajets aléatoires. Méthode de Monte-Carlo.', '5', '51', '519', '519.2', '1'), (471, '519.287', 'Attentes et prédictions : martingales, risques de Markov, théories de la fiabilité, du renouvellement, de l\'estimation.', '5', '51', '519', '519.2', '1'), (472, '519.3', 'Théorie des jeux. Optimisation mathématique.', '5', '51', '519', '519.3', '1'), (473, '519.4', 'Analyse numérique appliquée..', '5', '51', '519', '519.4', '1'), (474, '519.5', 'Mathématiques statistiques. Méthodes paramétriques et non paramétriques.', '5', '51', '519', '519.5', '1'), (475, '519.502 46', 'Statistiques pour ingénieurs.', '5', '51', '519', '519.5', '1'), (476, '519.52', 'Théorie de l\'échantillonnage.', '5', '51', '519', '519.5', '1'), (477, '519.53', 'Statistique descriptive. Analyse de population.', '5', '51', '519', '519.5', '1'), (478, '519.532', 'Distribution par fréquence.', '5', '51', '519', '519.5', '1'), (479, '519.533', 'Mesure de tendance centrale. Médiane, moyenne, mode.', '5', '51', '519', '519.5', '1'), (480, '519.534', 'Mesure de déviation.', '5', '51', '519', '519.5', '1'), (481, '519.535', 'Analyse multivariée. Analyse de la structure latente.', '5', '51', '519', '519.5', '1'), (482, '519.535 4', 'Analyse factorielle.', '5', '51', '519', '519.5', '1'), (483, '519.536', 'Analyse de régression.', '5', '51', '519', '519.5', '1'), (484, '519.537', 'Analyse de corrélation.', '5', '51', '519', '519.5', '1'), (485, '519.538', 'Analyse de variance et de covariance.', '5', '51', '519', '519.5', '1'), (486, '519.54', 'Inférence statistique. Espérance statistique, statistiques non paramétriques, prédiction. Analyse séquentielle.', '5', '51', '519', '519.5', '1'), (487, '519.542', 'Théorie de la décision. Théorie bayésienne de la décision.', '5', '51', '519', '519.5', '1'), (488, '519.544', 'Théorie de l\'estimation.', '5', '51', '519', '519.5', '1'), (489, '519.55', 'Séries chronologiques.', '5', '51', '519', '519.5', '1'), (490, '519.56', 'Vérification des hypothèses (p. ex. vérification de c ²).', '5', '51', '519', '519.5', '1'), (491, '519.7', 'Programmation.', '5', '51', '519', '519.7', '1'), (492, '519.8', 'Sujets particuliers.', '5', '51', '519', '519.8', '1'), (493, '519.82', 'Théorie des files d\'attente. Embouteillage. Réservation.', '5', '51', '519', '519.8', '1'), (494, '519.83', 'Inventaire. Gestion des stocks et des approvisionnements.', '5', '51', '519', '519.8', '1'), (495, '519.84', 'Succès des parcours.', '5', '51', '519', '519.8', '1'), (496, '519.85', 'Modélisation des phénomènes biologiques, écologiques ou sociologiques. Épidémies, fluctuations.', '5', '51', '519', '519.8', '1'), (497, '519.86', 'Contrôle de la qualité. Autres ajustements statistiques.', '5', '51', '519', '519.8', '1'), (498, '52', 'Astronomie, Astrophysique, Recherche spatiale, Géodésie', '5', '52', '', '', '1'), (499, '520.9', 'Histoire de l\'astronomie.', '5', '52', '520', '520.9', '1'), (500, '521', 'Mécanique céleste.', '5', '52', '521', '', '1'), (501, '521.1', 'Gravitation.', '5', '52', '521', '521.1', '1'), (502, '521.3', 'Orbites.', '5', '52', '521', '521.3', '1'), (503, '522', 'Observation.', '5', '52', '522', '', '1'), (504, '523', 'Les corps célestes.', '5', '52', '523', '', '1'), (505, '523.01', 'Astrophysique.', '5', '52', '523', '523.0', '1'), (506, '523.1', 'L\'univers : l\'espace, les galaxies, les quasars.', '5', '52', '523', '523.1', '1'), (507, '523.111', 'L\'espace.', '5', '52', '523', '523.1', '1'), (508, '523.112', 'Les galaxies.', '5', '52', '523', '523.1', '1'), (509, '523.113', 'La Voie lactée. La matière interstellaire.', '5', '52', '523', '523.1', '1'), (510, '523.115', 'Les quasars.', '5', '52', '523', '523.1', '1'), (511, '523.12', 'Cosmogonie.', '5', '52', '523', '523.1', '1'), (512, '523.2', 'Le système solaire (généralités).', '5', '52', '523', '523.2', '1'), (513, '523.3', 'La lune.', '5', '52', '523', '523.3', '1'), (514, '523.4', 'Les planètes et leurs satellites.', '5', '52', '523', '523.4', '1'), (515, '523.44', 'Les astéroïdes.', '5', '52', '523', '523.4', '1'), (516, '523.5', 'Les météorites. Le vent solaire.', '5', '52', '523', '523.5', '1'), (517, '523.6', 'Les comètes.', '5', '52', '523', '523.6', '1'), (518, '523.7', 'Le soleil.', '5', '52', '523', '523.7', '1'), (519, '523.8', 'Les étoiles.', '5', '52', '523', '523.8', '1'), (520, '523.9', 'Éclipses, conjonctions, occultations (en général).', '5', '52', '523', '523.9', '1'), (521, '525', 'La Terre.', '5', '52', '525', '', '1'), (522, '525.1', 'Constantes et dimensions.', '5', '52', '525', '525.1', '1'), (523, '525.3', 'Orbite et mouvements.', '5', '52', '525', '525.3', '1'), (524, '526', 'Géodésie. Topographie. Arpentage. Photogrammétrie. Cartographie.', '5', '52', '526', '', '1'), (525, '526.1', 'Géodésie. (généralités).', '5', '52', '526', '526.1', '1'), (526, '526.8', 'Cartographie.', '5', '52', '526', '526.8', '1'), (527, '526.9', 'Observation de la Terre.', '5', '52', '526', '526.9', '1'), (528, '526.982', 'Photogrammétrie.', '5', '52', '526', '526.9', '1'), (529, '528', 'Éphémérides.', '5', '52', '528', '', '1'), (530, '529', 'Chronologie. Calendriers. Horloge.', '5', '52', '529', '', '1'), (531, '529.3', 'Calendriers.', '5', '52', '529', '529.3', '1'), (532, '529.7', 'Mesure du temps.', '5', '52', '529', '529.7', '1'), (533, '53', 'Physique', '5', '53', '', '', '1'), (534, '530.1', 'Physique théorique. Physique mathématique.', '5', '53', '530', '530.1', '1'), (535, '530.11', 'Théorie de la relativité.', '5', '53', '530', '530.1', '1'), (536, '530.12', 'Mécanique quantique.', '5', '53', '530', '530.1', '1'), (537, '530.13', 'Mécanique statistique.', '5', '53', '530', '530.1', '1'), (538, '530.14', 'Théories des champs et théories ondulatoires. Théorie électromagnétique. Théorie unifiée des champs. Théorie de la grande unification. Théorie quantique des champs. Champs de jauge. Problèmes à N corps.', '5', '53', '530', '530.1', '1'), (539, '530.141', 'Théories électromagnétiques de la matière', '5', '53', '530', '530.1', '1'), (540, '530.15', 'Physique mathématique.', '5', '53', '530', '530.1', '1'), (541, '530.4', 'États de la matières.', '5', '53', '530', '530.4', '1'), (542, '530.41', 'Physique de l\'état solide. Physique de la matière condensée.', '5', '53', '530', '530.4', '1'), (543, '530.42', 'Physique de l\'état liquide. Superfluidité.', '5', '53', '530', '530.4', '1'), (544, '530.43', 'Physique de l\'état gazeux.', '5', '53', '530', '530.4', '1'), (545, '530.44', 'Physique des plasmas.', '5', '53', '530', '530.4', '1'), (546, '530.47', 'États de la matière : généralités. Changements de phase. Phénomènes critiques. Phénomènes de diffusion et de transport de masses.', '5', '53', '530', '530.4', '1'), (547, '530.8', 'Mesures.', '5', '53', '530', '530.8', '1'), (548, '531', 'Mécanique générale, Mécanique des corps solides et rigides', '5', '53', '531', '', '1'), (549, '531.1', 'Dynamique, statique, physique des particules.', '5', '53', '531', '531.1', '1'), (550, '531.11', 'Dynamique (p. ex. écoulement, rhéologie).', '5', '53', '531', '531.1', '1'), (551, '531.112', 'Cinématique (p. ex. mouvement relatif et linéaire, vitesse, accélération, quantités vectorielles).', '5', '53', '531', '531.1', '1'), (552, '531.113', 'Cinétique (p. ex. effets des forces centrifuges et centripètes).', '5', '53', '531', '531.1', '1'), (553, '531.113 3', 'Ondes (p. ex. ondes de choc).', '5', '53', '531', '531.1', '1'), (554, '531.113 4', 'Rhéologie. Friction et viscosité.', '5', '53', '531', '531.1', '1'), (555, '531.14', 'Masse et gravité. Densité.', '5', '53', '531', '531.1', '1'), (556, '531.16', 'Mécanique des particules', '5', '53', '531', '531.1', '1'), (557, '531.163', 'Dynamique des particules', '5', '53', '531', '531.1', '1'), (558, '531.2', 'Statique des solides. Inertie.', '5', '53', '531', '531.2', '1'), (559, '531.3', 'Dynamique des solides.', '5', '53', '531', '531.3', '1'), (560, '531.32', 'Vibrations. Oscillations. Mouvement pendulaire.', '5', '53', '531', '531.3', '1'), (561, '531.33', 'Ondes (p. ex. ondes de choc).', '5', '53', '531', '531.3', '1'), (562, '531.35', 'Forces centrifuges et centripètes.', '5', '53', '531', '531.3', '1'), (563, '531.38', 'Déformation et contraintes (p. ex. élasticité, plasticité, flexion, compression, cisaillement, tension, torsion).', '5', '53', '531', '531.3', '1'), (564, '531.4', 'Friction et viscosité des solides.', '5', '53', '531', '531.4', '1'), (565, '531.5', 'Masse et gravité des solides. Projectiles. Loi de la chute des corps.', '5', '53', '531', '531.5', '1'), (566, '531.6', 'Énergie. Moment. Travail.', '5', '53', '531', '531.6', '1'), (567, '532', 'Mécaniques des fluides et des liquides', '5', '53', '532', '', '1'), (568, '532.02', 'Statique (p. ex. poussée, transmission de la pression). Inertie.', '5', '53', '532', '532.0', '1'), (569, '532.05', 'Dynamique (p . ex. forces centrifuges et centripètes, vibrations).', '5', '53', '532', '532.0', '1'), (570, '532.051', 'Écoulement. Vitesse, viscosité.', '5', '53', '532', '532.0', '1'), (571, '532.059', 'Ondes. Mouvement tourbillonnaire. Cavitation.', '5', '53', '532', '532.0', '1'), (572, '532.2', 'Hydrostatique.', '5', '53', '532', '532.2', '1'), (573, '532.4', 'Masse, densité, poids spécifique.', '5', '53', '532', '532.4', '1'), (574, '532.5', 'Hydrodynamique.', '5', '53', '532', '532.5', '1'), (575, '532.51', 'Écoulement.', '5', '53', '532', '532.5', '1'), (576, '532.57', 'Vitesse.', '5', '53', '532', '532.5', '1'), (577, '532.58', 'Viscosité et friction. Élasticité et compressibilité.', '5', '53', '532', '532.5', '1'), (578, '532.59', 'Ondes. Mouvement tourbillonnaire. Cavitation.', '5', '53', '532', '532.5', '1'), (579, '533', 'Mécanique des gaz', '5', '53', '533', '', '1'), (580, '533.1', 'Statique. Masse, densité, poids spécifique.', '5', '53', '533', '533.1', '1'), (581, '533.2', 'Dynamique.', '5', '53', '533', '533.2', '1'), (582, '533.21', 'Écoulement.', '5', '53', '533', '533.2', '1'), (583, '533.27', 'Vitesse.', '5', '53', '533', '533.2', '1'), (584, '533.28', 'Viscosité. Friction. Élasticité et compressibilité.', '5', '53', '533', '533.2', '1'), (585, '533.29', 'Ondes. Mouvement tourbillonnaire. Cavitation.', '5', '53', '533', '533.2', '1'), (586, '533.5', 'Vide.', '5', '53', '533', '533.5', '1'), (587, '533.6', 'Aéromécanique', '5', '53', '533', '533.6', '1'), (588, '533.7', 'Théorie cinétique des gaz.', '5', '53', '533', '533.7', '1'), (589, '534', 'Acoustique, Vibration', '5', '53', '534', '', '1'), (590, '534.1', 'Génération du son.', '5', '53', '534', '534.1', '1'), (591, '534.2', 'Transmission du son.', '5', '53', '534', '534.2', '1'), (592, '534.3', 'Caractéristiques du son. Effet Doppler.', '5', '53', '534', '534.3', '1'), (593, '534.5', 'Vibrations sonores.', '5', '53', '534', '534.5', '1'), (594, '535', 'Lumière, Optique', '5', '53', '535', '', '1'), (595, '535.01', 'Régions spectrales (rayonnements infrarouge, visible, ultraviolet).', '5', '53', '535', '535.0', '1'), (596, '535.1', 'Théories.', '5', '53', '535', '535.1', '1'), (597, '535.2', 'Optique physique.', '5', '53', '535', '535.2', '1'), (598, '535.22', 'Intensité lumineuse.', '5', '53', '535', '535.2', '1'), (599, '535.24', 'Vitesse de la lumière.', '5', '53', '535', '535.2', '1'), (600, '535.3', 'Transmission, absorption, émission de la lumière.', '5', '53', '535', '535.3', '1'), (601, '535.32', 'Optique géométrique.', '5', '53', '535', '535.3', '1'), (602, '535.323', 'Réflexion.', '5', '53', '535', '535.3', '1'), (603, '535.324', 'Réfraction.', '5', '53', '535', '535.3', '1'), (604, '535.326', 'Absorption', '5', '53', '535', '535.3', '1'), (605, '535.35', 'Luminescence.', '5', '53', '535', '535.3', '1'), (606, '535.4', 'Dispersion, interférence, diffraction de la lumière.', '5', '53', '535', '535.4', '1'), (607, '535.5', 'Faisceaux lumineux.', '5', '53', '535', '535.5', '1'), (608, '535.52', 'Polarisation.', '5', '53', '535', '535.5', '1'), (609, '535.6', 'Couleur.', '5', '53', '535', '535.6', '1'), (610, '535.8', 'Spectroscopie.', '5', '53', '535', '535.8', '1'); INSERT INTO `bib_dewey` (`iddewey`, `index`, `wording`, `class`, `subclass`, `section`, `subsection`, `notdewey`) VALUES (611, '535.84', 'Spectroscopie infrarouge, chromatique, ultraviolette,. Raman.', '5', '53', '535', '535.8', '1'), (612, '536', 'Thermodynamique, Chaleur', '5', '53', '536', '', '1'), (613, '536.1', 'Théories.', '5', '53', '536', '536.1', '1'), (614, '536.2', 'Transfert de chaleur.', '5', '53', '536', '536.2', '1'), (615, '536.3', 'Rayonnement.', '5', '53', '536', '536.3', '1'), (616, '536.4', 'Effets de la chaleur sur la matière.', '5', '53', '536', '536.4', '1'), (617, '536.41', 'Dilatation. Contraction. Coefficients de dilatation. Relations pression-volume-température.', '5', '53', '536', '536.4', '1'), (618, '536.42', 'Fusion. Solidification. Point de fusion. Surfusion.', '5', '53', '536', '536.4', '1'), (619, '536.44', 'Vaporisation et condensation. Liquéfaction des gaz. Point d\'ébullition. Point de condensation. Température d\'évaporation. Sublimation. Incandescence.', '5', '53', '536', '536.4', '1'), (620, '536.5', 'Température.', '5', '53', '536', '536.5', '1'), (621, '536.6', 'Capacité thermique et chaleur spécifique. Calorimétrie.', '5', '53', '536', '536.6', '1'), (622, '536.7', 'Thermodynamique.', '5', '53', '536', '536.7', '1'), (623, '536.71', 'Théories (cycle de Carnot, loi de Joule, équations de Maxwell).', '5', '53', '536', '536.7', '1'), (624, '536.73', 'Entropie.', '5', '53', '536', '536.7', '1'), (625, '537', 'Electricité, Electronique, Electromagnétisme, Electrodynamique', '5', '53', '537', '', '1'), (626, '537.1', 'Théories.', '5', '53', '537', '537.1', '1'), (627, '537.12', 'Théories des ondes.', '5', '53', '537', '537.1', '1'), (628, '537.123', 'Théories des micro-ondes.', '5', '53', '537', '537.1', '1'), (629, '537.125', 'Théories des guides d\'ondes.', '5', '53', '537', '537.1', '1'), (630, '537.14', 'Théorie corpusculaire.', '5', '53', '537', '537.1', '1'), (631, '537.2', 'Électrostatique.', '5', '53', '537', '537.2', '1'), (632, '537.21', 'Charge et potentiel électriques. Triboélectricité.', '5', '53', '537', '537.2', '1'), (633, '537.24', 'Diélectricité (p. ex. électrocapillarité, électrostriction). Électrets.', '5', '53', '537', '537.2', '1'), (634, '537.5', 'Électronique. Électronique quantique.', '5', '53', '537', '537.5', '1'), (635, '537.52', 'Décharges disruptives (p. ex. arcs électriques, couronnes).', '5', '53', '537', '537.5', '1'), (636, '537.53', 'Décharges d\'électrons dans des tubes à gaz raréfiés et à vide.', '5', '53', '537', '537.5', '1'), (637, '537.532', 'Ionisation des gaz. Balistique des électrons.', '5', '53', '537', '537.5', '1'), (638, '537.534', 'Électronique des ondes radio et des micro-ondes. Spectroscopie.', '5', '53', '537', '537.5', '1'), (639, '537.535', 'Rayons X et rayons gamma (plus de 1017 Hz).', '5', '53', '537', '537.5', '1'), (640, '537.535 7', 'Spectroscopie. Spectroscopie Mössbauer.', '5', '53', '537', '537.5', '1'), (641, '537.54', 'Phénomènes photoélectriques (p. ex. photoconductivité, photoémissivité, photovoltaïsme).', '5', '53', '537', '537.5', '1'), (642, '537.56', 'Optique électronique et ionique.', '5', '53', '537', '537.5', '1'), (643, '537.6', 'Électrodynamique. Thermoélectricité.', '5', '53', '537', '537.6', '1'), (644, '537.62', 'Conduction. Résistance. Conductivité. Résistivité.', '5', '53', '537', '537.6', '1'), (645, '537.622', 'Semiconductivité. Semi-conducteurs.', '5', '53', '537', '537.6', '1'), (646, '537.623', 'Supraconductivité et supraconducteurs.', '5', '53', '537', '537.6', '1'), (647, '537.624', 'Effets thermiques des courants.', '5', '53', '537', '537.6', '1'), (648, '537.65', 'Thermoélectricité.', '5', '53', '537', '537.6', '1'), (649, '537.67', 'Électrodynamique quantique.', '5', '53', '537', '537.6', '1'), (650, '538', 'Magnétisme', '5', '53', '538', '', '1'), (651, '538.3', 'Propriétés magnétiques. Phénomènes magnétiques.', '5', '53', '538', '538.3', '1'), (652, '538.36', 'Résonance magnétique. Résonance magnétique nucléaire. NQR, ENDOR. Résonance paramagnétique de l\'électron. EPR.', '5', '53', '538', '538.3', '1'), (653, '538.4', 'Substances magnétiques. Phénomènes caractéristiques. Aimants naturels. Induction magnétique.', '5', '53', '538', '538.4', '1'), (654, '538.7', 'Géomagnétisme.', '5', '53', '538', '538.7', '1'), (655, '539', 'Nature physique de la matière, Physique moderne', '5', '53', '539', '', '1'), (656, '539.1', 'Structure de la matière.', '5', '53', '539', '539.1', '1'), (657, '539.12', 'Structure moléculaire (sans référence aux caractéristiques chimiques, sinon : 541.22).', '5', '53', '539', '539.1', '1'), (658, '539.14', 'Structure atomique.', '5', '53', '539', '539.1', '1'), (659, '539.2', 'Rayonnement. Spectre électromagnétique. Ondes et radiations électromagnétiques.', '5', '53', '539', '539.2', '1'), (660, '539.6', 'Physique moléculaire. Relations atome-atome, molécule-molécule. Spectre moléculaire et vibratoire.', '5', '53', '539', '539.6', '1'), (661, '539.7', 'Physique atomique et nucléaire.', '5', '53', '539', '539.7', '1'), (662, '539.72', 'Physique des particules. Rayonnement ionisant. Antiparticules, particules relativistes.', '5', '53', '539', '539.7', '1'), (663, '539.721 67', 'Quarks.', '5', '53', '539', '539.7', '1'), (664, '539.721 7', 'Photons.', '5', '53', '539', '539.7', '1'), (665, '539.722', 'Radiations ionisantes.', '5', '53', '539', '539.7', '1'), (666, '539.722 2', 'Rayons X et gamma.', '5', '53', '539', '539.7', '1'), (667, '539.722 3', 'Rayons cosmiques.', '5', '53', '539', '539.7', '1'), (668, '539.723', 'Noyau et atome considéré comme des particules.', '5', '53', '539', '539.7', '1'), (669, '539.723 2', 'Noyaux. Deutérons. Particules a.', '5', '53', '539', '539.7', '1'), (670, '539.723 4', 'Ions lourds.', '5', '53', '539', '539.7', '1'), (671, '539.725', 'Caractéristiques des particules.', '5', '53', '539', '539.7', '1'), (672, '539.73', 'Accélération des particules. Bombardement, faisceaux de particules', '5', '53', '539', '539.7', '1'), (673, '539.737', 'Accélération de particules particulières', '5', '53', '539', '539.7', '1'), (674, '539.74', 'Structure nucléaire. Structure des isotopes et des nucléides. Modèles nucléaires.', '5', '53', '539', '539.7', '1'), (675, '539.744', 'Interprétation spectroscopique.', '5', '53', '539', '539.7', '1'), (676, '539.75', 'Réactions et interactions nucléaires.', '5', '53', '539', '539.7', '1'), (677, '539.752', 'Radioactivité naturelle.', '5', '53', '539', '539.7', '1'), (678, '539.753', 'Radioactivité artificielle.', '5', '53', '539', '539.7', '1'), (679, '539.754', 'Interactions fondamentales (p. ex. interaction gravitationnelle).', '5', '53', '539', '539.7', '1'), (680, '539.756', 'Réactions photonucléaires.', '5', '53', '539', '539.7', '1'), (681, '539.757', 'Collision.', '5', '53', '539', '539.7', '1'), (682, '539.758', 'Diffusion.', '5', '53', '539', '539.7', '1'), (683, '539.76', 'Physique des hautes énergies. Réaction en chaîne.', '5', '53', '539', '539.7', '1'), (684, '539.762', 'Fission nucléaire.', '5', '53', '539', '539.7', '1'), (685, '539.764', 'Fusion nucléaire (réaction thermonucléaire).', '5', '53', '539', '539.7', '1'), (686, '539.77', 'Détection et mesure de particules et de la radioactivité.', '5', '53', '539', '539.7', '1'), (687, '54', 'Chimie, Cristallographie, Mineralogie', '5', '54', '', '', '1'), (688, '540.11', 'Théories antiques et médiévales. Alchimie. Théorie du phlogistique.', '5', '54', '540', '540.1', '1'), (689, '541', 'Chimie physique et théorique', '5', '54', '541', '', '1'), (690, '541.042', 'États de la matière.', '5', '54', '541', '541.0', '1'), (691, '541.042 1', 'Chimie de l\'état solide.', '5', '54', '541', '541.0', '1'), (692, '541.042 2', 'Chimie de l\'état liquide.', '5', '54', '541', '541.0', '1'), (693, '541.042 3', 'Chimie de l\'état gazeux.', '5', '54', '541', '541.0', '1'), (694, '541.042 4', 'Chimie des plasmas.', '5', '54', '541', '541.0', '1'), (695, '541.2', 'Chimie théorique.', '5', '54', '541', '541.2', '1'), (696, '541.22', 'Structure moléculaire', '5', '54', '541', '541.2', '1'), (697, '541.24', 'Structure atomique. Organisation spatiale. Loi de périodicité des éléments (tables périodiques : 546.8).', '5', '54', '541', '541.2', '1'), (698, '541.26', 'Stoechiométrie.', '5', '54', '541', '541.2', '1'), (699, '541.28', 'Chimie quantique. Orbitales moléculaires et atomiques. Spectroscopie à résonance magnétique.', '5', '54', '541', '541.2', '1'), (700, '541.3', 'Chimie physique.', '5', '54', '541', '541.3', '1'), (701, '541.33', 'Chimie des surfaces (p. ex. absorption, adhésion, adsorption, bulles, capillarité, , cohésion, tension superficielle).', '5', '54', '541', '541.3', '1'), (702, '541.34', 'Chimie des solutions.', '5', '54', '541', '541.3', '1'), (703, '541.345', 'Chimie des colloïdes. Gels, mousses, hydrosols, aérosols', '5', '54', '541', '541.3', '1'), (704, '541.348', 'Composants des solutions (solvants, solutés, précipités).', '5', '54', '541', '541.3', '1'), (705, '541.35', 'Photochimie et chimiluminescence.', '5', '54', '541', '541.3', '1'), (706, '541.351', 'Transformations de l\'énergie.', '5', '54', '541', '541.3', '1'), (707, '541.353', 'Réactions photochimiques dues à des radiations particulières. Rayonnement infrarouge. Lumière visible. Rayonnement ultraviolet.', '5', '54', '541', '541.3', '1'), (708, '541.36', 'Thermochimie et thermodynamique.', '5', '54', '541', '541.3', '1'), (709, '541.37', 'Électrochimie. Électrolyse. Magnétochimie.', '5', '54', '541', '541.3', '1'), (710, '541.38', 'Radiochimie (chimie nucléaire).', '5', '54', '541', '541.3', '1'), (711, '541.39', 'Réactions et synthèses chimiques. Équilibres chimiques. Cinétique des réactions. Catalyse.', '5', '54', '541', '541.3', '1'), (712, '542', 'Chimie expérimentale.', '5', '54', '542', '', '1'), (713, '543', 'Chimie analytique.', '5', '54', '543', '', '1'), (714, '544', 'Analyse qualitative.', '5', '54', '544', '', '1'), (715, '545', 'Analyse quantitative.', '5', '54', '545', '', '1'), (716, '546', 'Chimie minérale et inorganique', '5', '54', '546', '', '1'), (717, '546.2', 'L\'hydrogène et ses composés.', '5', '54', '546', '546.2', '1'), (718, '546.22', 'L\'eau.', '5', '54', '546', '546.2', '1'), (719, '546.24', 'Les acides.', '5', '54', '546', '546.2', '1'), (720, '546.3', 'Les métaux, leurs composés et leurs mélanges. Les alliages.', '5', '54', '546', '546.3', '1'), (721, '546.31', 'Les éléments métalliques.', '5', '54', '546', '546.3', '1'), (722, '546.32', 'Les bases.', '5', '54', '546', '546.3', '1'), (723, '546.34', 'Les sels.', '5', '54', '546', '546.3', '1'), (724, '546.38', 'Métaux alcalins (groupe 1A ; p. ex. sodium, potassium).', '5', '54', '546', '546.3', '1'), (725, '546.39', 'Métaux alcalino-terreux (groupe 2A ; p. ex. magnésium, calcium, radium).', '5', '54', '546', '546.3', '1'), (726, '546.4', 'Groupe 3B (Terres rares (lanthanides), actinides, uranium, neptunium, plutonium, éléments transuraniens).', '5', '54', '546', '546.4', '1'), (727, '546.5', 'Groupe 4B (titane), 5B (vanadium), 6B (chrome), 7B (manganèse).', '5', '54', '546', '546.5', '1'), (728, '546.6', 'Groupe 8 (Fer, cobalt, nickel, platine), 1B (cuivre, argent, or), 2B (zinc, cadmium, mercure), 3A (bore, aluminium), 4A (carbone, silicium, étain, plomb).', '5', '54', '546', '546.6', '1'), (729, '546.7', 'Groupe 5A (azote, phosphore, arsenic, antimoine, bismuth), 6A (oxygène, soufre), 7A (halogènes), O (gaz rares).', '5', '54', '546', '546.7', '1'), (730, '546.8', 'Table périodique.', '5', '54', '546', '546.8', '1'), (731, '547', 'Chimie organique', '5', '54', '547', '', '1'), (732, '547.01', 'Hydrocarbures.', '5', '54', '547', '547.0', '1'), (733, '547.02', 'Composés halogènes (halogénation : 547.223).', '5', '54', '547', '547.0', '1'), (734, '547.03', 'Composés oxygénés et hydroxylés.', '5', '54', '547', '547.0', '1'), (735, '547.031', 'Alcools', '5', '54', '547', '547.0', '1'), (736, '547.035', 'Éthers.', '5', '54', '547', '547.0', '1'), (737, '547.036', 'Aldéhydes et cétones', '5', '54', '547', '547.0', '1'), (738, '547.037', 'Acides', '5', '54', '547', '547.0', '1'), (739, '547.038', 'Esters .', '5', '54', '547', '547.0', '1'), (740, '547.04', 'Composés azotés.', '5', '54', '547', '547.0', '1'), (741, '547.05', 'Composés organométalliques.', '5', '54', '547', '547.0', '1'), (742, '547.06', 'Composés sulfurés.', '5', '54', '547', '547.0', '1'), (743, '547.07', 'Composés phosphorés.', '5', '54', '547', '547.0', '1'), (744, '547.08', 'Composés siliciés.', '5', '54', '547', '547.0', '1'), (745, '547.1', 'Chimie organique physique et théorique.', '5', '54', '547', '547.1', '1'), (746, '547.2', 'Synthèse et réactions classiques.', '5', '54', '547', '547.2', '1'), (747, '547.21', 'Alkylation, acylation, aromatisation (p. ex. réactions de Friedel-Crafts, de Würtz-Fittig)', '5', '54', '547', '547.2', '1'), (748, '547.22', 'Addition et substitution halogénées et hydroxylées', '5', '54', '547', '547.2', '1'), (749, '547.223', 'Halogénation.', '5', '54', '547', '547.2', '1'), (750, '547.225', 'Hydrolyse et saponification.', '5', '54', '547', '547.2', '1'), (751, '547.23', 'Oxydation et réduction (p. ex. hydrogénation, déshydrogénation, peroxydation, quinonisation).', '5', '54', '547', '547.2', '1'), (752, '547.24', 'Estérification.', '5', '54', '547', '547.2', '1'), (753, '547.25', 'Amination et diazotisation.', '5', '54', '547', '547.2', '1'), (754, '547.26', 'Nitration et nitrosation.', '5', '54', '547', '547.2', '1'), (755, '547.27', 'Sulfonation.', '5', '54', '547', '547.2', '1'), (756, '547.28', 'Polymérisation et condensation.', '5', '54', '547', '547.2', '1'), (757, '547.29', 'Fermentation.', '5', '54', '547', '547.2', '1'), (758, '547.3', 'Chimie organique analytique.', '5', '54', '547', '547.3', '1'), (759, '547.4', 'Composés aliphatiques.', '5', '54', '547', '547.4', '1'), (760, '547.41', 'Hydrocarbures (paraffines, oléfines, acétylènes, ...).', '5', '54', '547', '547.4', '1'), (761, '547.5', 'Composés cycliques.', '5', '54', '547', '547.5', '1'), (762, '547.59', 'Composés hétérocycliques.', '5', '54', '547', '547.5', '1'), (763, '547.6', 'Composés aromatiques.', '5', '54', '547', '547.6', '1'), (764, '547.61', 'Hydrocarbures.', '5', '54', '547', '547.6', '1'), (765, '547.62', 'Composés halogénés.', '5', '54', '547', '547.6', '1'), (766, '547.63', 'Composés oxygénés et hydroxylés (alcools, phénols, aromates, éthers, aldéhydes, acides, esters).', '5', '54', '547', '547.6', '1'), (767, '547.7', 'Composés macromoléculaires et composés connexes.', '5', '54', '547', '547.7', '1'), (768, '547.71', 'Terpènes et huiles essentielles. Camphres.', '5', '54', '547', '547.7', '1'), (769, '547.72', 'Alcaloïdes', '5', '54', '547', '547.7', '1'), (770, '547.73', 'Stéroïdes et hormones.', '5', '54', '547', '547.7', '1'), (771, '547.74', 'Vitamines.', '5', '54', '547', '547.7', '1'), (772, '547.75', 'Protéines. Acides aminés.', '5', '54', '547', '547.7', '1'), (773, '547.76', 'Antibiotiques.', '5', '54', '547', '547.7', '1'), (774, '547.77', 'Lipides.', '5', '54', '547', '547.7', '1'), (775, '547.78', 'Hydrates de carbone.', '5', '54', '547', '547.7', '1'), (776, '547.79', 'Acides nucléiques', '5', '54', '547', '547.7', '1'), (777, '547.8', 'Autres substances organiques.', '5', '54', '547', '547.8', '1'), (778, '547.82', 'Substances fossiles.', '5', '54', '547', '547.8', '1'), (779, '547.83', 'Pétrole.', '5', '54', '547', '547.8', '1'), (780, '547.84', 'Polymères, élastomères.', '5', '54', '547', '547.8', '1'), (781, '547.86', 'Colorants et pigments.', '5', '54', '547', '547.8', '1'), (782, '547.869', 'Pigments.', '5', '54', '547', '547.8', '1'), (783, '548', 'Cristallographie', '5', '54', '548', '', '1'), (784, '548.3', 'Cristallographie chimique. Isomorphisme, polymorphisme, pseudomorphisme.', '5', '54', '548', '548.3', '1'), (785, '548.5', 'Cristallisation et croissance des cristaux.', '5', '54', '548', '548.5', '1'), (786, '548.7', 'Cristallographie mathématique.', '5', '54', '548', '548.7', '1'), (787, '548.8', 'Cristallographie physique et structurale.', '5', '54', '548', '548.8', '1'), (788, '548.81', 'Cristallographie structurale. Cristallographie géométrique, réseaux de cristaux.', '5', '54', '548', '548.8', '1'), (789, '548.83', 'Cristallographie de la diffraction.', '5', '54', '548', '548.8', '1'), (790, '548.84', 'Propriétés mécaniques des cristaux.', '5', '54', '548', '548.8', '1'), (791, '548.85', 'Propriétés électriques, électroniques, magnétiques des cristaux.', '5', '54', '548', '548.8', '1'), (792, '548.86', 'Propriétés thermiques des cristaux.', '5', '54', '548', '548.8', '1'), (793, '548.9', 'Cristallographie optique.', '5', '54', '548', '548.9', '1'), (794, '549', 'Minéralogie', '5', '54', '549', '', '1'), (795, '549.1', 'Identification minéralogique.', '5', '54', '549', '549.1', '1'), (796, '549.11', 'Formations minéralogiques (météorites, gisements, veines, blocs compacts, ...)', '5', '54', '549', '549.1', '1'), (797, '549.12', 'Minéralogie physique (Propriétés mécaniques, optiques, électriques, électroniques, magnétiques).', '5', '54', '549', '549.1', '1'), (798, '549.13', 'Minéralogie chimique.', '5', '54', '549', '549.1', '1'), (799, '549.18', 'Minéralogie cristallographique.', '5', '54', '549', '549.1', '1'), (800, '549.2', 'Éléments naturels.', '5', '54', '549', '549.2', '1'), (801, '549.3', 'Sulfures, sulfosels, minéraux connexes.', '5', '54', '549', '549.3', '1'), (802, '549.4', 'Halogénures.', '5', '54', '549', '549.4', '1'), (803, '549.5', 'Oxydes.', '5', '54', '549', '549.5', '1'), (804, '549.6', 'Silicates.', '5', '54', '549', '549.6', '1'), (805, '549.7', 'Autres minéraux (phosphates, vanadates, arséniates ; nitrates, borates ; tungstates, molybdates ; sulfates, chromates ; carbonates).', '5', '54', '549', '549.7', '1'), (806, '549.9', 'Répartition géographique des minéraux (549.944', '5', '54', '549', '549.9', '1'), (807, '55', 'Sciences de la terre, Géologie, Météorologie', '5', '55', '', '', '1'), (808, '550.22', 'Coupes et cartes géologiques.', '5', '55', '550', '550.2', '1'), (809, '551', 'Géologie générale', '5', '55', '551', '', '1'), (810, '551.028', 'Télédétection.', '5', '55', '551', '551.0', '1'), (811, '551.1', 'Géophysique.', '5', '55', '551', '551.1', '1'), (812, '551.11', 'Géophysique interne.', '5', '55', '551', '551.1', '1'), (813, '551.112', 'Le noyau terrestre.', '5', '55', '551', '551.1', '1'), (814, '551.116', 'Le manteau terrestre.', '5', '55', '551', '551.1', '1'), (815, '551.12', 'Géophysique interne.', '5', '55', '551', '551.1', '1'), (816, '551.13', 'L\'écorce terrestre. Le magma.', '5', '55', '551', '551.1', '1'), (817, '551.136', 'La tectonique des plaques.', '5', '55', '551', '551.1', '1'), (818, '551.2', 'Géodynamique interne. Processus endogènes : volcans, séismes, phénomènes thermiques.', '5', '55', '551', '551.2', '1'), (819, '551.21', 'Volcanisme : phénomènes volcaniques, volcans, éruptions.', '5', '55', '551', '551.2', '1'), (820, '551.22', 'Sismologie.', '5', '55', '551', '551.2', '1'), (821, '551.23', 'Phénomènes thermiques. Gaz. (p. ex. fumerolles, geysers).', '5', '55', '551', '551.2', '1'), (822, '551.3', 'Phénomènes de surfaces, processus exogènes et leurs agents.', '5', '55', '551', '551.3', '1'), (823, '551.302', 'Érosion.', '5', '55', '551', '551.3', '1'), (824, '551.303', 'Transport et dépôts de matière. Sédimentation.', '5', '55', '551', '551.3', '1'), (825, '551.304', 'Les sédiments.', '5', '55', '551', '551.3', '1'), (826, '551.305', 'Formation du sol.', '5', '55', '551', '551.3', '1'), (827, '551.307', 'Mouvements de masses (avalanches, coulées, glissements de terrains, éboulements). Subsidence.', '5', '55', '551', '551.3', '1'), (828, '551.31', 'Action de la glace, glaciologie', '5', '55', '551', '551.3', '1'), (829, '551.35', 'Action des eaux', '5', '55', '551', '551.3', '1'), (830, '551.36', 'Action des eaux marines', '5', '55', '551', '551.3', '1'), (831, '551.37', 'Action du vent', '5', '55', '551', '551.3', '1'), (832, '551.4', 'Géomorphologie.', '5', '55', '551', '551.4', '1'), (833, '551.415', 'Géomorphologie des zones arides.', '5', '55', '551', '551.4', '1'), (834, '551.42', 'Géomorphologie des îles.', '5', '55', '551', '551.4', '1'), (835, '551.43', 'Géomorphologie des zones élevées.', '5', '55', '551', '551.4', '1'), (836, '551.45', 'Géomorphologie des régions planes et des côtes.', '5', '55', '551', '551.4', '1'), (837, '551.453', 'Géomorphologie des régions planes.', '5', '55', '551', '551.4', '1'), (838, '551.457', 'Géomorphologie des littoraux.', '5', '55', '551', '551.4', '1'), (839, '551.46', 'Océanographie. Hydrographie marine. Topographie sous-marine. Fonds marins.', '5', '55', '551', '551.4', '1'), (840, '551.460 8', 'Géologie et géomorphologie sous-marines.', '5', '55', '551', '551.4', '1'), (841, '551.48', 'Hydrologie. Hydrographie des eaux douces. Cycle hydrologique.', '5', '55', '551', '551.4', '1'), (842, '551.49', 'Hydrologie souterraine.', '5', '55', '551', '551.4', '1'), (843, '551.5', 'Météorologie.', '5', '55', '551', '551.5', '1'), (844, '551.56', 'Électricité et optique atmosphériques. Phénomènes optiques.', '5', '55', '551', '551.5', '1'), (845, '551.6', 'Climatologie.', '5', '55', '551', '551.6', '1'), (846, '551.7', 'Géologie historique. Paléogéographie. Stratigraphie.', '5', '55', '551', '551.7', '1'), (847, '551.701', 'Méthodes de datation.', '5', '55', '551', '551.7', '1'), (848, '551.71', 'Précambrien.', '5', '55', '551', '551.7', '1'), (849, '551.712', 'Archéen.', '5', '55', '551', '551.7', '1'), (850, '551.72', 'Paléozoïque.', '5', '55', '551', '551.7', '1'), (851, '551.723', 'Cambrien.', '5', '55', '551', '551.7', '1'), (852, '551.75', 'Carbonifère. Permien.', '5', '55', '551', '551.7', '1'), (853, '551.76', 'Mésozoïque (ère secondaire).', '5', '55', '551', '551.7', '1'), (854, '551.762', 'Trias.', '5', '55', '551', '551.7', '1'), (855, '551.766', 'Jurassique.', '5', '55', '551', '551.7', '1'), (856, '551.77', 'Crétacé.', '5', '55', '551', '551.7', '1'), (857, '551.78', 'Cénozoïque (ère tertiaire).', '5', '55', '551', '551.7', '1'), (858, '551.782', 'Paléogène.', '5', '55', '551', '551.7', '1'), (859, '551.783', 'Paléocène.', '5', '55', '551', '551.7', '1'), (860, '551.784', 'Éocène.', '5', '55', '551', '551.7', '1'), (861, '551.785', 'Oligocène.', '5', '55', '551', '551.7', '1'), (862, '551.786', 'Néogène.', '5', '55', '551', '551.7', '1'), (863, '551.787', 'Miocène.', '5', '55', '551', '551.7', '1'), (864, '551.788', 'Pliocène.', '5', '55', '551', '551.7', '1'), (865, '551.79', 'Ère quaternaire.', '5', '55', '551', '551.7', '1'), (866, '551.792', 'Pléistocène', '5', '55', '551', '551.7', '1'), (867, '551.793', 'Postglaciaire', '5', '55', '551', '551.7', '1'), (868, '551.8', 'Géologie structurale. Tectonique', '5', '55', '551', '551.8', '1'), (869, '551.81', 'Stratification', '5', '55', '551', '551.8', '1'), (870, '551.82', 'Orogénie', '5', '55', '551', '551.8', '1'), (871, '551.86', 'Synclinaux et anticlinaux', '5', '55', '551', '551.8', '1'), (872, '551.87', 'Failles, dislocations', '5', '55', '551', '551.8', '1'), (873, '551.88', 'Intrusions', '5', '55', '551', '551.8', '1'), (874, '551.9', 'Géochimie', '5', '55', '551', '551.9', '1'), (875, '552', 'Pétrologie, Lithologie, Pétrographie', '5', '55', '552', '', '1'), (876, '552.002', 'Atlas', '5', '55', '552', '552.0', '1'), (877, '552.1', 'Roches éruptives ou ignées', '5', '55', '552', '552.1', '1'), (878, '552.2', 'Roches volcaniques', '5', '55', '552', '552.2', '1'), (879, '552.3', 'Roches plutoniques', '5', '55', '552', '552.3', '1'), (880, '552.4', 'Roches métamorphiques', '5', '55', '552', '552.4', '1'), (881, '552.5', 'Roches sédimentaires', '5', '55', '552', '552.5', '1'), (882, '552.58', 'Roches carbonatées', '5', '55', '552', '552.5', '1'), (883, '552.8', 'Pétrologie microscopique (lames minces)', '5', '55', '552', '552.8', '1'), (884, '553', 'Géologie économique, Minéraux, Formation et gisements de minerais', '5', '55', '553', '', '1'), (885, '553.2', 'Matières carbonées', '5', '55', '553', '553.2', '1'), (886, '553.25', 'Charbon', '5', '55', '553', '553.2', '1'), (887, '553.28', 'Pétrole et gaz naturel', '5', '55', '553', '553.2', '1'), (888, '553.3', 'Fer', '5', '55', '553', '553.3', '1'), (889, '553.4', 'Métaux non ferreux', '5', '55', '553', '553.4', '1'), (890, '553.5', 'Pierres à bâtir', '5', '55', '553', '553.5', '1'), (891, '553.8', 'Pierres précieuses', '5', '55', '553', '553.8', '1'), (892, '554', 'Géologie de l\'Europe', '5', '55', '554', '', '1'), (893, '554.4', 'Géologie de la France', '5', '55', '554', '554.4', '1'), (894, '555', 'Géologie des autres continents. (555 à 559)', '5', '55', '555', '', '1'), (895, '559', 'Géologie des autres continents. (555 à 559)', '5', '55', '559', '', '1'), (896, '559.8', 'Géologie de l\'Arctique et de l\'Antarctique', '5', '55', '559', '559.8', '1'), (897, '559.9', 'Géologie extra-terrestre', '5', '55', '559', '559.9', '1'), (898, '559.92', 'Géologie des planètes', '5', '55', '559', '559.9', '1'), (899, '56', 'Paléonthologie, Paléozoologie', '5', '56', '', '', '1'), (900, '560', 'Paléontologie. Fossiles', '5', '56', '560', '', '1'), (901, '560.12', 'Classification des fossiles', '5', '56', '560', '560.1', '1'), (902, '560.17', 'Paléontologie stratigraphique', '5', '56', '560', '560.1', '1'), (903, '560.171', 'Archéen et précambrien', '5', '56', '560', '560.1', '1'), (904, '560.172', 'Ère primaire', '5', '56', '560', '560.1', '1'), (905, '560.176', 'Ère secondaire', '5', '56', '560', '560.1', '1'), (906, '560.178', 'Ères tertiaire et quaternaire', '5', '56', '560', '560.1', '1'), (907, '560.45', 'Paléoécologie', '5', '56', '560', '560.4', '1'), (908, '560.9', 'Aspects historiques et géographiques', '5', '56', '560', '560.9', '1'), (909, '560.944', 'Paléontologie de la France', '5', '56', '560', '560.9', '1'), (910, '561', 'Paléobotanique', '5', '56', '561', '', '1'), (911, '562', 'Paléozoologie systématique : invertébrés', '5', '56', '562', '', '1'), (912, '563', 'Paléozoologie systématique : protozoaires, parazoaires, coelentérés, échinodermes, phylums apparentés', '5', '56', '563', '', '1'), (913, '564', 'Paléozoologie systématique : mollusques', '5', '56', '564', '', '1'), (914, '565', 'Paléozoologie systématique : autres invertébrés', '5', '56', '565', '', '1'), (915, '566', 'Paléozoologie systématique : vertébrés', '5', '56', '566', '', '1'), (916, '567', 'Paléozoologie systématique : vertébrés à sang froid, poissons fossiles', '5', '56', '567', '', '1'), (917, '567.9', 'Reptiles', '5', '56', '567', '567.9', '1'), (918, '567.91', 'Dinosaures', '5', '56', '567', '567.9', '1'), (919, '568', 'Paléozoologie systématique : oiseaux fossiles', '5', '56', '568', '', '1'), (920, '569', 'Mammifères fossiles', '5', '56', '569', '', '1'), (921, '569.9', 'Hominiens', '5', '56', '569', '569.9', '1'), (922, '57', 'Sciences de la vie, Biologie', '5', '57', '', '', '1'), (923, '570', 'Généralités. Manuels en plusieurs volumes', '5', '57', '570', '', '1'), (924, '571', 'Physiologie générale', '5', '57', '571', '', '1'), (925, '572', 'Biochimie', '5', '57', '572', '', '1'), (926, '573', 'Physiologie animale', '5', '57', '573', '', '1'), (927, '575', 'Physiologie végétale', '5', '57', '575', '', '1'), (928, '576', 'Génétique. Évolution', '5', '57', '576', '', '1'), (929, '577', 'Écologie', '5', '57', '577', '', '1'), (930, '578', 'Histoire naturelle des organismes', '5', '57', '578', '', '1'), (931, '579', 'Micro-organismes. Champignons. Algues', '5', '57', '579', '', '1'), (932, '58', 'Botanique', '5', '58', '', '', '1'), (933, '580', 'Généralités', '5', '58', '580', '', '1'), (934, '581', 'Botanique générale.', '5', '58', '581', '', '1'), (935, '582', 'Botanique non taxonomique', '5', '58', '582', '', '1'), (936, '583', 'Angiospermes dicotylédones', '5', '58', '583', '', '1'), (937, '584', 'Angiospermes monocotylédones', '5', '58', '584', '', '1'), (938, '585', 'Gymnospermes', '5', '58', '585', '', '1'), (939, '587', 'Cryptogames vasculaires', '5', '58', '587', '', '1'), (940, '588', 'Bryophytes', '5', '58', '588', '', '1'), (941, '59', 'Zoologie', '5', '59', '', '', '1'), (942, '590', 'Généralités. Manuels en plusieurs volumes', '5', '59', '590', '', '1'), (943, '591', 'Zoologie générale', '5', '59', '591', '', '1'), (944, '592', 'Invertébrés', '5', '59', '592', '', '1'), (945, '593', 'Invertébrés marins et des zones littorales', '5', '59', '593', '', '1'), (946, '594', 'Mollusques. Molluscoïdes', '5', '59', '594', '', '1'), (947, '595', 'Arthropodes', '5', '59', '595', '', '1'), (948, '596', 'Chordés', '5', '59', '596', '', '1'), (949, '597', 'Poissons. Vertébrés à sang froid', '5', '59', '597', '', '1'), (950, '598', 'Oiseaux', '5', '59', '598', '', '1'), (951, '599', 'Mammifères', '5', '59', '599', '', '1'), (952, '599,2', 'Primates', '5', '59', '599', '599,2', '1'), (953, '6', 'Sciences appliquées', '6', '', '', '', '1'), (954, '60', 'Généralités', '6', '60', '', '', '1'), (955, '61', 'Sciences médicales. Médecine', '6', '61', '', '', '1'), (956, '611', 'Anatomie humaine, Cytologie, Histologie', '6', '61', '611', '', '1'), (957, '611.01', 'Anatomie générale.', '6', '61', '611', '611.0', '1'), (958, '611.013', 'Embryologie. Développement du foetus.', '6', '61', '611', '611.0', '1'), (959, '611.018', 'Cytologie. Histologie.', '6', '61', '611', '611.0', '1'), (960, '611.1', 'Anatomie systématique. Étude des organes. (611.1 à 611.8)', '6', '61', '611', '611.1', '1'), (961, '611.3', 'Organes de l\'appareil digestif', '6', '61', '611', '611.3', '1'), (962, '611.34', 'Intestins', '6', '61', '611', '611.3', '1'), (963, '611.347', 'Gros intestin', '6', '61', '611', '611.3', '1'), (964, '611.8', 'Système nerveux. Organes des sens.', '6', '61', '611', '611.8', '1'), (965, '612', 'Physiologie humaine', '6', '61', '612', '', '1'), (966, '612.1', 'Sang. Système circulatoire.', '6', '61', '612', '612.1', '1'), (967, '612.2', 'Respiration. Système respiratoire.', '6', '61', '612', '612.2', '1'), (968, '612.3', 'Alimentation. Digestion. Nutrition', '6', '61', '612', '612.3', '1'), (969, '612.4', 'Sécrétion. Excrétion.', '6', '61', '612', '612.4', '1'), (970, '612.6', 'Reproduction. Croissance. Développement.', '6', '61', '612', '612.6', '1'), (971, '612.7', 'Fonctions motrices. Organes locomoteurs. Voix. Peau.', '6', '61', '612', '612.7', '1'), (972, '612.8', 'Système nerveux. Organes des sens.', '6', '61', '612', '612.8', '1'), (973, '613', 'Santé', '6', '61', '613', '', '1'), (974, '613.04', 'Santé des divers groupes de population.', '6', '61', '613', '613.0', '1'), (975, '613.1', 'Facteurs dus à l\'environnement.', '6', '61', '613', '613.1', '1'), (976, '613.2', 'Diététique.', '6', '61', '613', '613.2', '1'), (977, '613.8', 'Alcoolisme, usage de stupéfiants, tabagisme', '6', '61', '613', '613.8', '1'), (978, '613.9', 'Hygiène sexuelle et contraception.', '6', '61', '613', '613.9', '1'), (979, '614', 'Hygiène publique', '6', '61', '614', '', '1'), (980, '614.5', 'Politique de prévention des épidémies.', '6', '61', '614', '614.5', '1'), (981, '614.547', 'Maladies sexuellement transmissibles.', '6', '61', '614', '614.5', '1'), (982, '614.599 3', 'Maladies du système immunitaire.', '6', '61', '614', '614.5', '1'), (983, '614.599 39', 'Sida.', '6', '61', '614', '614.5', '1'), (984, '614.599 94', 'Cancers.', '6', '61', '614', '614.5', '1'), (985, '615', 'Thérapeutique, Pharmacologie, Toxicologie', '6', '61', '615', '', '1'), (986, '615.1', 'Pharmacologie.', '6', '61', '615', '615.1', '1'), (987, '615.2', 'Médicaments d\'origine inorganique.', '6', '61', '615', '615.2', '1'), (988, '615.3', 'Médicaments d\'origine organique.', '6', '61', '615', '615.3', '1'), (989, '615.328', 'Vitamines.', '6', '61', '615', '615.3', '1'), (990, '615.329', 'Antibiotiques.', '6', '61', '615', '615.3', '1'), (991, '615.36', 'Hormones.', '6', '61', '615', '615.3', '1'), (992, '615.39', 'Gammaglobulines.', '6', '61', '615', '615.3', '1'), (993, '615.5', 'Thérapeutique.', '6', '61', '615', '615.5', '1'), (994, '615.531', 'Allopathie', '6', '61', '615', '615.5', '1'), (995, '615.532', 'Homéopathie.', '6', '61', '615', '615.5', '1'), (996, '615.535', 'Naturopathie.', '6', '61', '615', '615.5', '1'), (997, '615.542', 'Pédiatrie.', '6', '61', '615', '615.5', '1'), (998, '615.547', 'Gériatrie.', '6', '61', '615', '615.5', '1'), (999, '615.58', 'Chimiothérapie.', '6', '61', '615', '615.5', '1'), (1000, '615.7', 'Pharmacodynamique.', '6', '61', '615', '615.7', '1'), (1001, '615.8', 'Thérapies particulières.', '6', '61', '615', '615.8', '1'), (1002, '615.9', 'Toxicologie générale.', '6', '61', '615', '615.9', '1'), (1003, '616', 'Pathologie, Médecine clinique.', '6', '61', '616', '', '1'), (1004, '616.071', 'Étiologie.', '6', '61', '616', '616.0', '1'), (1005, '616.1', 'Pathologie spéciale (616.1 à 616.9)', '6', '61', '616', '616.1', '1'), (1006, '616.9', 'Maladies infectieuses.', '6', '61', '616', '616.9', '1'), (1007, '62', 'Génie et activités connexes', '6', '62', '', '', '1'), (1008, '620', 'Généralités', '6', '62', '620', '', '1'), (1009, '620.004', 'Conception, essais, mesures, qualité, maintenance, entretien.', '6', '62', '620', '620.0', '1'), (1010, '620.004 6', 'Maintenance, entretien.', '6', '62', '620', '620.0', '1'), (1011, '620.1', 'Mécanique et matériaux.', '6', '62', '620', '620.1', '1'), (1012, '620.11', 'Matériaux.', '6', '62', '620', '620.1', '1'), (1013, '620.112', 'Résistance des matériaux.', '6', '62', '620', '620.1', '1'), (1014, '620.112 7', 'Essais non destructifs.', '6', '62', '620', '620.1', '1'), (1015, '620.112 9', 'Autres propriétés : mécaniques, acoustiques, optiques, thermiques, électriques, électroniques, magnétiques, microphysiques.', '6', '62', '620', '620.1', '1'), (1016, '620.116', 'Mécanique appliquée aux divers types de matériaux. (620.116 à 620.199)', '6', '62', '620', '620.1', '1'), (1017, '620.118', 'Mécanique appliquée aux Matériaux composites.', '6', '62', '620', '620.1', '1'), (1018, '620.16', 'Mécanique appliquée aux divers types de métaux. (620.16 à 620.18)', '6', '62', '620', '620.1', '1'), (1019, '620.192', 'Polymères', '6', '62', '620', '620.1', '1'), (1020, '620.2', 'Acoustique appliquée', '6', '62', '620', '620.2', '1'), (1021, '620.23', 'Bruit et lutte contre le bruit.', '6', '62', '620', '620.2', '1'), (1022, '620.3', 'Vibrations mécaniques.', '6', '62', '620', '620.3', '1'), (1023, '620.37', 'Effets des vibrations. Lutte contre les vibrations.', '6', '62', '620', '620.3', '1'), (1024, '620.4', 'Technologie de types particuliers.', '6', '62', '620', '620.4', '1'), (1025, '620.43', 'Technologie des particules fines (poudres, spray).', '6', '62', '620', '620.4', '1'), (1026, '620.44', 'Technologie de surface.', '6', '62', '620', '620.4', '1'), (1027, '620.46', 'Télécontrôle.', '6', '62', '620', '620.4', '1'), (1028, '621', 'Ingénierie appliquée, Physique appliquée, Génie mécanique, Électrotechnique, Génie civil', '6', '62', '621', '', '1'), (1029, '621.3', 'Électronique. Généralités, manuels en plusieurs volumes.', '6', '62', '621', '621.3', '1'), (1030, '621.31', 'Machines électriques. Production, transformation, stockage, distribution de l\'énergie électrique.', '6', '62', '621', '621.3', '1'), (1031, '621.312', 'Production, transformation, stockage de l\'énergie électrique', '6', '62', '621', '621.3', '1'), (1032, '621.319', 'Distribution de l\'énergie et lignes de télécommunication.', '6', '62', '621', '621.3', '1'), (1033, '621.319 2', 'Circuits électriques.', '6', '62', '621', '621.3', '1'), (1034, '621.319 3', 'Composants et équipements électriques.', '6', '62', '621', '621.3', '1'), (1035, '621.34', 'Électromagnétisme. Electroaimants.', '6', '62', '621', '621.3', '1'), (1036, '621.366', 'Laser.', '6', '62', '621', '621.3', '1'), (1037, '621.367', 'Photo-optique. Traitement de l\'image. Traitement des données optiques.', '6', '62', '621', '621.3', '1'), (1038, '621.369 2', 'Fibre optique.', '6', '62', '621', '621.3', '1'), (1039, '621.37', 'Tests et mesures électriques', '6', '62', '621', '621.3', '1'), (1040, '621.38', 'Électronique. Technologie des communications.', '6', '62', '621', '621.3', '1'), (1041, '621.381 3', 'Électronique des micro-ondes.', '6', '62', '621', '621.3', '1'), (1042, '621.381 31', 'Propagation et transmission.', '6', '62', '621', '621.3', '1'), (1043, '621.381 5', 'Composants et circuits électroniques.', '6', '62', '621', '621.3', '1'), (1044, '621.381 51', 'Tubes à électrons.', '6', '62', '621', '621.3', '1'), (1045, '621.381 52', 'Semi-conducteurs : diodes, transistors.', '6', '62', '621', '621.3', '1'), (1046, '621.381 53', 'Circuits imprimés', '6', '62', '621', '621.3', '1'), (1047, '621.381 53', 'Convertisseurs, filtres.', '6', '62', '621', '621.3', '1'), (1048, '621.381 53', 'Oscillateurs.', '6', '62', '621', '621.3', '1'), (1049, '621.381 53', 'Amplificateurs.', '6', '62', '621', '621.3', '1'), (1050, '621.381 53', 'Modulateurs, démodulateurs (modems).', '6', '62', '621', '621.3', '1'), (1051, '621.382', 'Télécommunications. Téléphonie. Radiocommunication. Télévision. Vidéo.', '6', '62', '621', '621.3', '1'), (1052, '621.382 1', 'Réseaux de communication (cf. 004.65).', '6', '62', '621', '621.3', '1'), (1053, '621.382 2', 'Théorie de l\'information. Traitement du signal.', '6', '62', '621', '621.3', '1'), (1054, '621.382 23', 'Analyse et théorie du signal.', '6', '62', '621', '621.3', '1'), (1055, '621.382 24', 'Bruit et interférence.', '6', '62', '621', '621.3', '1'), (1056, '621.382 4', 'Antennes.', '6', '62', '621', '621.3', '1'), (1057, '621.382 7', 'Communications optiques (laser).', '6', '62', '621', '621.3', '1'), (1058, '621.382 75', 'Communications par fibres optiques.', '6', '62', '621', '621.3', '1'), (1059, '621.384', 'Radiocommunication.', '6', '62', '621', '621.3', '1'), (1060, '621.384 11', 'Propagation et transmission des ondes. Interférences.', '6', '62', '621', '621.3', '1'), (1061, '621.384 5', 'Radiotéléphonie.', '6', '62', '621', '621.3', '1'), (1062, '621.384 56', 'Téléphones cellulaires.', '6', '62', '621', '621.3', '1'), (1063, '621.384 8', 'Radar.', '6', '62', '621', '621.3', '1'), (1064, '621.385', 'Téléphonie.', '6', '62', '621', '621.3', '1'), (1065, '621.388', 'Ingéniérie de la télévision.', '6', '62', '621', '621.3', '1'), (1066, '621.388 1', 'Propagation et transmission des ondes.', '6', '62', '621', '621.3', '1'), (1067, '621.388 33', 'Vidéo : technologie, enregistrement.', '6', '62', '621', '621.3', '1'), (1068, '621.389', 'Enregistrement du son.', '6', '62', '621', '621.3', '1'), (1069, '621.395', 'Circuits logiques informatiques (VLSI).', '6', '62', '621', '621.3', '1'), (1070, '621.397', 'Stockage des données.', '6', '62', '621', '621.3', '1'), (1071, '621.397 3', 'Mémoires internes.', '6', '62', '621', '621.3', '1'), (1072, '621.397 32', 'Mémoires à semi-conducteurs (mémoire bipolaire, MOS, semi-conducteurs à couches minces).', '6', '62', '621', '621.3', '1'), (1073, '621.397 6', 'Mémoires externes.', '6', '62', '621', '621.3', '1'), (1074, '621.398', 'Matériels d\'interfaces et de communication. Périphériques.', '6', '62', '621', '621.3', '1'), (1075, '621.48', 'Ingénierie nucléaire.', '6', '62', '621', '621.4', '1'), (1076, '621.483', 'centrales nucléaires', '6', '62', '621', '621.4', '1'), (1077, '621.8', 'Conversion et transmission de l\'énergie mécanique.', '6', '62', '621', '621.8', '1'), (1078, '624', 'Génie civil', '6', '62', '624', '', '1'), (1079, '624.17', 'Analyse et conception des structures.', '6', '62', '624', '624.1', '1'), (1080, '628.5', 'Lutte contre les nuisances industrielles.', '6', '62', '628', '628.5', '1'), (1081, '629', 'Autres branches de la technologie', '6', '62', '629', '', '1'), (1082, '629.11', 'Technologie du transport aérien.', '6', '62', '629', '629.1', '1'), (1083, '629.2', 'Technologie des véhicules motorisés. Automobiles.', '6', '62', '629', '629.2', '1'), (1084, '629.8', 'Automatique.', '6', '62', '629', '629.8', '1'), (1085, '629.801', 'Principes. Conception logique.', '6', '62', '629', '629.8', '1'), (1086, '629.82', 'Systèmes à boucle ouverte.', '6', '62', '629', '629.8', '1'), (1087, '629.83', 'Systèmes à boucle fermée (feed-back).', '6', '62', '629', '629.8', '1'), (1088, '629.831 2', 'Théorie de l\'automation. Commande optimale. Stabilité. Commande robuste.', '6', '62', '629', '629.8', '1'), (1089, '629.832', 'Systèmes de contrôle et de régulation automatiques linéaires.', '6', '62', '629', '629.8', '1'), (1090, '629.832 3', 'Systèmes asservis. Servosystèmes.', '6', '62', '629', '629.8', '1'), (1091, '629.836', 'Systèmes de contrôle et de régulation automatiques non linéaires.', '6', '62', '629', '629.8', '1'), (1092, '629.89', 'Commande informatisée.', '6', '62', '629', '629.8', '1'), (1093, '629.892', 'Robots.', '6', '62', '629', '629.8', '1'), (1094, '629.895', 'Commande informatisée de processus. Système de commande optimale. Système de commande à entrée stochastique.', '6', '62', '629', '629.8', '1'), (1095, '63', 'Agriculture, Exploitation de la faune et de la flore', '6', '63', '', '', '1'), (1096, '630', 'Généralités', '6', '63', '630', '', '1'), (1097, '631', 'Techniques agricoles.', '6', '63', '631', '', '1'), (1098, '631.4', 'Science du sol. Pédologie.', '6', '63', '631', '631.4', '1'), (1099, '631.42', 'Fertilité, acidité, alcalinité.', '6', '63', '631', '631.4', '1'), (1100, '631.8', 'Fertilisants. Amendements du sol.', '6', '63', '631', '631.8', '1'), (1101, '632', 'Maladies et ennemis des plantes. Pathologie et parasitologie des plantes.', '6', '63', '632', '', '1'), (1102, '632.1', 'Dommages dus à l\'environnement.', '6', '63', '632', '632.1', '1'), (1103, '632.19', 'Pollution.', '6', '63', '632', '632.1', '1'), (1104, '632.32', 'Maladies bactériennes.', '6', '63', '632', '632.3', '1'), (1105, '632.4', 'Maladies fongiques.', '6', '63', '632', '632.4', '1'), (1106, '632.5', 'Plantes nuisibles aux autres plantes.', '6', '63', '632', '632.5', '1'), (1107, '632.6', 'Animaux nuisibles aux plantes (sauf insectes).', '6', '63', '632', '632.6', '1'), (1108, '632.7', 'Insectes nuisibles aux plantes.', '6', '63', '632', '632.7', '1'), (1109, '632.8', 'Maladies virales.', '6', '63', '632', '632.8', '1'), (1110, '632.9', 'Lutte contre les maladies et les ennemis des plantes.', '6', '63', '632', '632.9', '1'), (1111, '633', 'Plantes de culture.', '6', '63', '633', '', '1'), (1112, '633.1', 'Céréales.', '6', '63', '633', '633.1', '1'), (1113, '633.3', 'Légumes.', '6', '63', '633', '633.3', '1'), (1114, '633.5', 'Plantes textiles.', '6', '63', '633', '633.5', '1'), (1115, '633.6', 'Plantes à sucre, à sirop, à fécule.', '6', '63', '633', '633.6', '1'), (1116, '633.7', 'Plantes alcaloïdes.', '6', '63', '633', '633.7', '1'), (1117, '633.8', 'Plantes à usage industriel. Plantes médicinales.', '6', '63', '633', '633.8', '1'), (1118, '634', 'Arboriculture. Sylviculture. Vergers, fruits, forêts.', '6', '63', '634', '', '1'), (1119, '634.9', 'Sylviculture.', '6', '63', '634', '634.9', '1'), (1120, '635', 'Horticulture.', '6', '63', '635', '', '1'), (1121, '635.051', 'Plantes à fleurs en général.', '6', '63', '635', '635.0', '1'), (1122, '635.1', 'Légumes. Potagers. (635.1 à 635.8)', '6', '63', '635', '635.1', '1'), (1123, '635.9', 'Plantes ornementales et décoratives.', '6', '63', '635', '635.9', '1'), (1124, '638', 'Élevage d\'insectes : apiculture, sériciculture.', '6', '63', '638', '', '1'), (1125, '638.1', 'Apiculture.', '6', '63', '638', '638.1', '1'), (1126, '639', 'Chasse, pêche, aquaculture.', '6', '63', '639', '', '1'), (1127, '639.3', 'Aquaculture.', '6', '63', '639', '639.3', '1'), (1128, '64', 'Économie domestique et vie familiale', '6', '64', '', '', '1'), (1129, '65', 'Gestion des entreprises et services connexes', '6', '65', '', '', '1'), (1130, '66', 'Génie chimique et techniques connexes, chimie industrielle', '6', '66', '', '', '1'), (1131, '660', 'Généralités', '6', '66', '660', '', '1'), (1132, '660.6', 'Biotechnologies.', '6', '66', '660', '660.6', '1'), (1133, '660.63', 'Génie biochimique.', '6', '66', '660', '660.6', '1'), (1134, '660.65', 'Génie génétique.', '6', '66', '660', '660.6', '1'), (1135, '661', 'Technologie chimique industrielle.', '6', '66', '661', '', '1'), (1136, '661.03', 'Composés inorganiques', '6', '66', '661', '661.0', '1'), (1137, '661.2', 'Acides', '6', '66', '661', '661.2', '1'), (1138, '661.3', 'Bases.', '6', '66', '661', '661.3', '1'), (1139, '661.4', 'Sels.', '6', '66', '661', '661.4', '1'), (1140, '661.8', 'Chimie organique.', '6', '66', '661', '661.8', '1'), (1141, '662', 'Technologie des explosifs et des combustibles.', '6', '66', '662', '', '1'), (1142, '662.62', 'Charbon.', '6', '66', '662', '662.6', '1'), (1143, '663', 'Industrie des boissons.', '6', '66', '663', '', '1'), (1144, '664', 'Aliments et conserves.', '6', '66', '664', '', '1'), (1145, '665', 'Huiles, graisses, cires, gaz industriels.', '6', '66', '665', '', '1'), (1146, '665.5', 'Technologie du pétrole.', '6', '66', '665', '665.5', '1'), (1147, '665.7', 'Gaz naturel.', '6', '66', '665', '665.7', '1'), (1148, '666', 'Verre, céramiques.', '6', '66', '666', '', '1'), (1149, '667', 'Nettoyage, couleurs, revêtements de surface.', '6', '66', '667', '', '1'), (1150, '667.2', 'Colorants et pigments.', '6', '66', '667', '667.2', '1'), (1151, '667.6', 'Peintures.', '6', '66', '667', '667.6', '1'), (1152, '667.7', 'Vernis, laques.', '6', '66', '667', '667.7', '1'), (1153, '667.9', 'Revêtements et enduits.', '6', '66', '667', '667.9', '1'), (1154, '668', 'Autres produits organiques.', '6', '66', '668', '', '1'), (1155, '668.1', 'Agents tensioactifs', '6', '66', '668', '668.1', '1'), (1156, '668.14', 'Détergents et agents mouillants.', '6', '66', '668', '668.1', '1'), (1157, '668.3', 'Adhésifs', '6', '66', '668', '668.3', '1'), (1158, '668.4', 'Matières plastiques.', '6', '66', '668', '668.4', '1'), (1159, '668.416', 'Plastiques renforcés.', '6', '66', '668', '668.4', '1'), (1160, '668.42', 'Plastiques polymères (polyesters, silicones, acryliques, styrènes, polyamides, vinyles, polyuréthannes).', '6', '66', '668', '668.4', '1'), (1161, '668.5', 'Parfums et cosmétiques.', '6', '66', '668', '668.5', '1'), (1162, '668.9', 'Polymères.', '6', '66', '668', '668.9', '1'), (1163, '669', 'Métallurgie.', '6', '66', '669', '', '1'), (1164, '67', 'Fabrication industrielle, Industries de transformation', '6', '67', '', '', '1'), (1165, '672', 'Fer, acier, alliages ferreux.', '6', '67', '672', '', '1'), (1166, '672.3', 'Traitement des fer, acier et alliages ferreux.', '6', '67', '672', '672.3', '1'), (1167, '673', 'Métaux non ferreux.', '6', '67', '673', '', '1'), (1168, '676', 'Pâte à papier et papier.', '6', '67', '676', '', '1'), (1169, '677', 'Textiles.', '6', '67', '677', '', '1'), (1170, '678', 'Élastomères.', '6', '67', '678', '', '1'), (1171, '678.2', 'Caoutchouc.', '6', '67', '678', '678.2', '1'), (1172, '678.7', 'Élastomères synthétiques.', '6', '67', '678', '678.7', '1'), (1173, '68', 'Fabrication de produits à usages particuliers, industries de produits finis ou assemblés', '6', '68', '', '', '1'), (1174, '681.2', 'Autres appareils de mesure', '6', '68', '681', '681.2', '1'), (1175, '69', 'Bâtiments, Construction', '6', '69', '', '', '1'), (1176, '7', 'Arts et loisirs', '7', '', '', '', '1'), (1177, '70', 'Généralités', '7', '70', '', '', '1'), (1178, '71', 'Urbanisme et aménagement paysager', '7', '71', '', '', '1'), (1179, '711', 'Aménagement du territoire. Urbanisme. Planifictaion régionale urbaine et rurale', '7', '71', '711', '', '1'), (1180, '712', 'Architecture paysagère. Dessins et aménagements des parcs et jardins', '7', '71', '712', '', '1'), (1181, '718', 'Cimetières', '7', '71', '718', '', '1'), (1182, '719', 'Protection de la nature et des paysages', '7', '71', '719', '', '1'), (1183, '72', 'Architecture', '7', '72', '', '', '1'), (1184, '721', 'Programmation. Dessin. Projet', '7', '72', '721', '', '1'), (1185, '725', 'Constructions publiques', '7', '72', '725', '', '1'), (1186, '726', 'Architecture religieuse', '7', '72', '726', '', '1'), (1187, '727', 'Édifices et constructions à but éducatifs, scientifiques et culturels', '7', '72', '727', '', '1'), (1188, '728', 'Architecture domestique. Habitat', '7', '72', '728', '', '1'), (1189, '73', 'Sculpture et autres arts plastiques. Statuaire', '7', '73', '', '', '1'), (1190, '736', 'Glyptique. Sigillographie', '7', '73', '736', '', '1'), (1191, '737', 'Numismatique', '7', '73', '737', '', '1'), (1192, '738', 'Céramique et poterie d\'art', '7', '73', '738', '', '1'), (1193, '739', 'Arts des métaux', '7', '73', '739', '', '1'), (1194, '74', 'Dessin et arts décoratifs et arts mineurs', '7', '74', '', '', '1'), (1195, '741', 'Dessin en général', '7', '74', '741', '', '1'), (1196, '742', 'Perspective', '7', '74', '742', '', '1'), (1197, '743', 'Dessin anatomique', '7', '74', '743', '', '1'), (1198, '744', 'Dessin linéaire et technique. Lettrage. Inscriptions', '7', '74', '744', '', '1'), (1199, '745', 'Arts décoratifs. Artisanat (tissage, cuir, papier, bois, etc.)', '7', '74', '745', '', '1'), (1200, '746', 'Travaux d\'aiguille. Broderie', '7', '74', '746', '', '1'), (1201, '747', 'Décoration intérieure', '7', '74', '747', '', '1'), (1202, '748', 'Art du verre', '7', '74', '748', '', '1'), (1203, '749', 'Mobilier d\'art', '7', '74', '749', '', '1'), (1204, '75', 'Peinture (Pas de subdivision de la peinture. Regroupement par artistes)', '7', '75', '', '', '1'), (1205, '76', 'Gravure et arts graphiques et estampes', '7', '76', '', '', '1'), (1206, '761', 'Techniques en relief', '7', '76', '761', '', '1'), (1207, '762', 'Techniques en creux', '7', '76', '762', '', '1'), (1208, '763', 'Techniques à plat. Lithographie', '7', '76', '763', '', '1'), (1209, '766', 'Arts graphiques appliqués. Publicité', '7', '76', '766', '', '1'), (1210, '77', 'Photographie et photographies', '7', '77', '', '', '1'), (1211, '771', 'Équipement photographique', '7', '77', '771', '', '1'), (1212, '772', 'Procédés photographiques : substances inorganiques et phénomènes physiques', '7', '77', '772', '', '1'), (1213, '773', 'Procédés photographiques : substances organiques', '7', '77', '773', '', '1'), (1214, '774', 'Procédés photomécaniques', '7', '77', '774', '', '1'), (1215, '776', 'Photolithographie', '7', '77', '776', '', '1'), (1216, '777', 'Photogravure', '7', '77', '777', '', '1'), (1217, '778', 'Applications de la photographie et techniques spéciales. Reprographie. Cinématographie (778.5)', '7', '77', '778', '', '1'), (1218, '78', 'Musique', '7', '78', '', '', '1'), (1219, '781', 'Théorie musicale', '7', '78', '781', '', '1'), (1220, '782', 'Musique dramatique. Opéra', '7', '78', '782', '', '1'), (1221, '783', 'Musique sacrée', '7', '78', '783', '', '1'), (1222, '784', 'Musique vocale', '7', '78', '784', '', '1'), (1223, '785', 'Musique instrumentale', '7', '78', '785', '', '1'), (1224, '786', 'Musique pour instruments à clavier', '7', '78', '786', '', '1'), (1225, '787', 'Musique pour instruments à cordes', '7', '78', '787', '', '1'), (1226, '788', 'Musique pour instruments à vent', '7', '78', '788', '', '1'), (1227, '789', 'Musique pour instruments à percussion', '7', '78', '789', '', '1'); INSERT INTO `bib_dewey` (`iddewey`, `index`, `wording`, `class`, `subclass`, `section`, `subsection`, `notdewey`) VALUES (1228, '79', 'Art du spectacle, loisirs et sports, jeux', '7', '79', '', '', '1'), (1229, '791', 'Divertissements publics et spectacles. Cinéma (791.43)', '7', '79', '791', '', '1'), (1230, '792', 'Arts de la scène', '7', '79', '792', '', '1'), (1231, '793', 'Danse. Jeux de société', '7', '79', '793', '', '1'), (1232, '794', 'Jeux de table, de réflexion et de hasard', '7', '79', '794', '', '1'), (1233, '794JDR', 'Jeux de rôles (perso)', '7', '79', '794', '794JD', '1'), (1234, '796', 'Sports', '7', '79', '796', '', '1'), (1235, '797', 'Sports aquatiques et aériens', '7', '79', '797', '', '1'), (1236, '798', 'Équitation', '7', '79', '798', '', '1'), (1237, '799', 'Pêche et chasse sportives. Tir sportif', '7', '79', '799', '', '1'), (1238, '8', 'Littérature, rhétorique et art d\'écrire (Romans, contes, nouvelles, poésie, théâtre, bandes dessinées, etc.)', '8', '', '', '', '1'), (1239, '80', 'Généralités', '8', '80', '', '', '1'), (1240, '801', 'Linguistique générale', '8', '80', '801', '', '1'), (1241, '802', 'Anglais', '8', '80', '802', '', '1'), (1242, '803', 'Langues germaniques', '8', '80', '803', '', '1'), (1243, '804', 'Français', '8', '80', '804', '', '1'), (1244, '805', 'Italien. Roumain. Romanche, rhétique', '8', '80', '805', '', '1'), (1245, '806', 'Langues ibériques', '8', '80', '806', '', '1'), (1246, '807', 'Langues classiques (latin et grec)', '8', '80', '807', '', '1'), (1247, '808', 'Langues slaves et baltes', '8', '80', '808', '', '1'), (1248, '809', 'Langues orientales, africaines et autres langues', '8', '80', '809', '', '1'), (1249, '81', 'Littérature américaine de langue anglaise', '8', '81', '', '', '1'), (1250, '810C', 'Littérature canadienne-anglaise', '8', '81', '810', '', '1'), (1251, '81BD', 'Bande dessinée américaine (perso)', '8', '81', '', '', '1'), (1252, '81RHF', 'Roman américain d\'héroïc fantasy (perso)', '8', '81', '', '', '1'), (1253, '81RSF', 'Roman américain de science fiction (perso)', '8', '81', '', '', '1'), (1254, '82', 'Autres littératures de langue anglaise', '8', '82', '', '', '1'), (1255, '82BD', 'Bande dessinée anglaise (perso)', '8', '82', '', '', '1'), (1256, '82RHF', 'Roman anglais d\'héroïc fantasy (perso)', '8', '82', '', '', '1'), (1257, '82RP', 'Roman anglais policier (perso)', '8', '82', '', '', '1'), (1258, '82RSF', 'Roman anglais de science fiction (perso)', '8', '82', '', '', '1'), (1259, '83', 'Littérature allemande et autres littératures germaniques', '8', '83', '', '', '1'), (1260, '839', 'Littérature de langue néerlandaise et scandinaves', '8', '83', '839', '', '1'), (1261, '84', 'Littérature des langues romanes. Littérature de langue française', '8', '84', '', '', '1'), (1262, '840C', 'Littérature canadienne-française. Littérature québécoise', '8', '84', '840', '', '1'), (1263, '849', 'Littérature provençale', '8', '84', '849', '', '1'), (1264, '84BD', 'Bande dessinée (perso)', '8', '84', '', '', '1'), (1265, '84RA', 'Roman d\'aventures (perso)', '8', '84', '', '', '1'), (1266, '84RCE', 'Roman de capes et d\'épées (perso)', '8', '84', '', '', '1'), (1267, '84RHF', 'Roman d\'héroïc fantasy (perso)', '8', '84', '', '', '1'), (1268, '84RP', 'Roman policier (perso)', '8', '84', '', '', '1'), (1269, '84RSF', 'Roman de science fiction (perso)', '8', '84', '', '', '1'), (1270, '85', 'Littérature des langues italienne, roumaine et rhéto-romane', '8', '85', '', '', '1'), (1271, '859', 'Littérature roumaine et de langues romanes orientales', '8', '85', '859', '', '1'), (1272, '86', 'Littératures des langues espagnole et portugaise', '8', '86', '', '', '1'), (1273, '869', 'Littérature de langue portugaise', '8', '86', '869', '', '1'), (1274, '87', 'Littérature des langues italiques. Littérature latine', '8', '87', '', '', '1'), (1275, '871', 'Littérature latine classique', '8', '87', '871', '', '1'), (1276, '873', 'Littérature latine médiévale', '8', '87', '873', '', '1'), (1277, '875', 'Littérature grecque classique', '8', '87', '875', '', '1'), (1278, '877', 'Littérature byzantine', '8', '87', '877', '', '1'), (1279, '88', 'Littérature des langues helléniques. Littérature grecque classique', '8', '88', '', '', '1'), (1280, '881', 'Littérature slave', '8', '88', '881', '', '1'), (1281, '882', 'Littérature russe', '8', '88', '882', '', '1'), (1282, '884', 'Littérature polonaise', '8', '88', '884', '', '1'), (1283, '885', 'Littérature tchèque et slovaque', '8', '88', '885', '', '1'), (1284, '886', 'Littérature des langues balkaniques', '8', '88', '886', '', '1'), (1285, '888', 'Littérature des langues baltes', '8', '88', '888', '', '1'), (1286, '89', 'Littératures des autres langues', '8', '89', '', '', '1'), (1287, '891', 'Littératures indiennes, perses, celtiques', '8', '89', '891', '', '1'), (1288, '892', 'Littératures des langues sémitiques', '8', '89', '892', '', '1'), (1289, '893', 'Littératures des langues hamitiques', '8', '89', '893', '', '1'), (1290, '894', 'Littératures des langues ouralo-altaïques, caucasiennes, inuit et dravidiennes', '8', '89', '894', '', '1'), (1291, '895', 'Littératures d\'Extrême-Orient et d\'Asie du Sud-Est', '8', '89', '895', '', '1'), (1292, '896', 'Littératures des langues africaines', '8', '89', '896', '', '1'), (1293, '897', 'Littératures des langues amérindiennes du Nord', '8', '89', '897', '', '1'), (1294, '898', 'Littératures des langues amérindiennes du Sud', '8', '89', '898', '', '1'), (1295, '899', 'Littératures des langues austronésiennes et australasiennes, malayo-polynésiennes', '8', '89', '899', '', '1'), (1296, '9', 'Archéologie, Histoire et Géographie', '9', '', '', '', '1'), (1297, '90', 'Généralités', '9', '90', '', '', '1'), (1298, '902', 'Archéologie', '9', '90', '902', '', '1'), (1299, '903', 'Préhistoire', '9', '90', '903', '', '1'), (1300, '904', 'Antiquités, vestiges culturels', '9', '90', '904', '', '1'), (1301, '908', 'Monographies locales et régionales', '9', '90', '908', '', '1'), (1302, '91', 'Méthodes de la géographie. Explorations et voyages', '9', '91', '', '', '1'), (1303, '911', 'Géographie générale et théorique', '9', '91', '911', '', '1'), (1304, '912', 'Cartes et plans', '9', '91', '912', '', '1'), (1305, '913', 'Géographie régionale', '9', '91', '913', '', '1'), (1306, '914', 'Géographie de l\'Europe', '9', '91', '914', '', '1'), (1307, '914F', 'Géographie de la France (perso)', '9', '91', '914', '', '1'), (1308, '915', 'Géographie de l\'Asie', '9', '91', '915', '', '1'), (1309, '916', 'Géographie de l\'Afrique', '9', '91', '916', '', '1'), (1310, '917', 'Géographie de l\'Amérique du Nord et centrale', '9', '91', '917', '', '1'), (1311, '918', 'Géographie de l\'Amérique du Sud', '9', '91', '918', '', '1'), (1312, '919', 'Géographie de l\'Océanie et des régions polaires', '9', '91', '919', '', '1'), (1313, '92', 'Biographies générales, généalogie, emblèmes', '9', '92', '', '', '1'), (1314, '929', 'Biographie', '9', '92', '929', '', '1'), (1315, '929.5', 'Généalogie', '9', '92', '929', '929.5', '1'), (1316, '929.6', 'Héraldique', '9', '92', '929', '929.6', '1'), (1317, '93', 'Histoire générale du monde ancien, jusqu\'aux environs de 499', '9', '93', '', '', '1'), (1318, '931', 'Histoire ancienne', '9', '93', '931', '', '1'), (1319, '932', 'Égypte ancienne', '9', '93', '932', '', '1'), (1320, '933', 'Histoire juive', '9', '93', '933', '', '1'), (1321, '934', 'Inde ancienne', '9', '93', '934', '', '1'), (1322, '935', 'Orient ancien', '9', '93', '935', '', '1'), (1323, '936', 'Europe ancienne (Germains, Celtes, Scandinaves, etc.)', '9', '93', '936', '', '1'), (1324, '937', 'Rome ancienne', '9', '93', '937', '', '1'), (1325, '938', 'Grèce ancienne', '9', '93', '938', '', '1'), (1326, '939', 'Proche-Orient ancien. Asie occidentale et centrale. Afrique ancienne. Histoire précolombienne', '9', '93', '939', '', '1'), (1327, '94', 'Histoire générale de l\'Europe, Europe de l\'Ouest', '9', '94', '', '', '1'), (1328, '941', 'Histoire des îles britanniques, sauf l\'Angleterre', '9', '94', '941', '', '1'), (1329, '942', 'Histoire de l\'Angleterre', '9', '94', '942', '', '1'), (1330, '943', 'Histoire des pays germaniques et des pays de l\'empire austro-hongrois', '9', '94', '943', '', '1'), (1331, '944', 'Histoire de la France', '9', '94', '944', '', '1'), (1332, '944.081 6', 'histoire de la France de 1939 à 1945', '9', '94', '944', '944.0', '1'), (1333, '944MA', 'Histoire de la France au Moyen Age (perso)', '9', '94', '944', '', '1'), (1334, '944RE', 'Histoire de la France à la Renaissance (perso)', '9', '94', '944', '', '1'), (1335, '945', 'Histoire de l\'Italie', '9', '94', '945', '', '1'), (1336, '946', 'Histoire de la péninsule ibérique', '9', '94', '946', '', '1'), (1337, '947', 'Histoire de l\'ex-URSS', '9', '94', '947', '', '1'), (1338, '948', 'Histoire des pays nordiques', '9', '94', '948', '', '1'), (1339, '949', 'Histoire de l\'Islande, des Pays-Bas, de la Belgique, de la Suisse, de la Grèce, des pays balkaniques', '9', '94', '949', '', '1'), (1340, '94MA', 'Histoire générale de l\'Europe au Moyen Age (perso)', '9', '94', '', '', '1'), (1341, '94RE', 'Histoire générale de l\'Europe à la Renaissance (perso)', '9', '94', '', '', '1'), (1342, '95', 'Histoire générale de l\'Asie, Extrême Orient', '9', '95', '', '', '1'), (1343, '951', 'Histoire de la Chine, de la Corée et de la Mongolie', '9', '95', '951', '', '1'), (1344, '952', 'Histoire du Japon et de Taïwan', '9', '95', '952', '', '1'), (1345, '953', 'Histoire des États arabes', '9', '95', '953', '', '1'), (1346, '954', 'Histoire du sous-continent indien', '9', '95', '954', '', '1'), (1347, '955', 'Histoire de l\'Iran', '9', '95', '955', '', '1'), (1348, '956', 'Histoire de la Turquie et du Moyen-Orient', '9', '95', '956', '', '1'), (1349, '957', 'Histoire de l\'ex-URSS asiatique', '9', '95', '957', '', '1'), (1350, '958', 'Histoire de l\'Afghanistan', '9', '95', '958', '', '1'), (1351, '959', 'Histoire de l\'Asie du Sud-Est', '9', '95', '959', '', '1'), (1352, '96', 'Histoire générale de l\'Afrique', '9', '96', '', '', '1'), (1353, '961', 'Histoire du Maghreb, spécialement de la Tunisie et de la Lybie', '9', '96', '961', '', '1'), (1354, '962', 'Histoire de l\'Égypte et du Soudan', '9', '96', '962', '', '1'), (1355, '963', 'Histoire de l\'Éthiopie', '9', '96', '963', '', '1'), (1356, '964', 'Histoire du Maroc', '9', '96', '964', '', '1'), (1357, '965', 'Histoire de l\'Algérie', '9', '96', '965', '', '1'), (1358, '966', 'Histoire de l\'Afrique occidentale sub-saharienne', '9', '96', '966', '', '1'), (1359, '967', 'Histoire de l\'Afrique équatoriale et centrale', '9', '96', '967', '', '1'), (1360, '968', 'Histoire de l\'Afrique méridionale', '9', '96', '968', '', '1'), (1361, '969', 'Histoire des îles africaines', '9', '96', '969', '', '1'), (1362, '97', 'Histoire générale de l\'Amérique du Nord et centrale', '9', '97', '', '', '1'), (1363, '971', 'Histoire du Canada', '9', '97', '971', '', '1'), (1364, '972', 'Histoire du Mexique, de l\'Amérique centrale et des Caraïbes', '9', '97', '972', '', '1'), (1365, '973', 'Histoire des États-Unis d\'Amérique', '9', '97', '973', '', '1'), (1366, '98', 'Histoire générale de l\'Amérique du Sud', '9', '98', '', '', '1'), (1367, '981', 'Histoire du Brésil', '9', '98', '981', '', '1'), (1368, '982', 'Histoire de l\'Argentine', '9', '98', '982', '', '1'), (1369, '983', 'Histoire du Chili', '9', '98', '983', '', '1'), (1370, '984', 'Histoire de la Bolivie', '9', '98', '984', '', '1'), (1371, '985', 'Histoire du Pérou', '9', '98', '985', '', '1'), (1372, '986', 'Histoire de la Colombie et de l\'Équateur', '9', '98', '986', '', '1'), (1373, '987', 'Histoire du Vénézuela', '9', '98', '987', '', '1'), (1374, '988', 'Histoire des Guyanes', '9', '98', '988', '', '1'), (1375, '989', 'Histoire du Paraguay et de l\'Uruguay', '9', '98', '989', '', '1'), (1376, '99', 'Histoire générale des autres parties du monde', '9', '99', '', '', '1'), (1377, '991', 'Histoire de l\'archipel malais', '9', '99', '991', '', '1'), (1378, '992', 'Histoire de Sumatra, Java et Bali', '9', '99', '992', '', '1'), (1379, '993', 'Histoire de l\'Australasie et de la Mélanasie', '9', '99', '993', '', '1'), (1380, '994', 'Histoire de l\'Australie', '9', '99', '994', '', '1'), (1381, '995', 'Histoire de la Nouvelle-Guinée', '9', '99', '995', '', '1'), (1382, '996', 'Histoire de la Polynésie et Micronésie', '9', '99', '996', '', '1'), (1383, '998', 'Histoire de l\'Arctique', '9', '99', '998', '', '1'), (1384, '999', 'Histoire de l\'Antarctique', '9', '99', '999', '', '1'); -- -------------------------------------------------------- -- -- Structure de la table `bib_ebook` -- CREATE TABLE `bib_ebook` ( `idebook` int(11) NOT NULL, `idinventaire` int(11) NOT NULL DEFAULT 0, `fichier` text COLLATE utf8_unicode_ci NOT NULL, `poid` int(11) NOT NULL DEFAULT 0, `langue` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'FR', `cote` int(3) NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Structure de la table `bib_editeurs` -- CREATE TABLE `bib_editeurs` ( `idediteur` int(11) NOT NULL, `alphabet` char(1) CHARACTER SET latin1 NOT NULL DEFAULT '', `nom_editeur` varchar(200) CHARACTER SET latin1 NOT NULL DEFAULT '', `adresse` text CHARACTER SET latin1 DEFAULT NULL, `CP` varchar(10) CHARACTER SET latin1 DEFAULT NULL, `ville` varchar(45) CHARACTER SET latin1 DEFAULT NULL, `pays` char(2) CHARACTER SET latin1 NOT NULL DEFAULT 'FR', `tel` varchar(20) CHARACTER SET latin1 DEFAULT NULL, `fax` varchar(20) CHARACTER SET latin1 DEFAULT NULL, `courriel` varchar(200) CHARACTER SET latin1 DEFAULT NULL, `siteweb` varchar(200) CHARACTER SET latin1 DEFAULT NULL, `commentaire` text CHARACTER SET latin1 DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_editeurs` -- INSERT INTO `bib_editeurs` (`idediteur`, `alphabet`, `nom_editeur`, `adresse`, `CP`, `ville`, `pays`, `tel`, `fax`, `courriel`, `siteweb`, `commentaire`) VALUES (1, 'A', 'A CONTRARIO', NULL, '', '', 'FR', '', '', NULL, '', ''), (2, 'A', 'A LA CARTE (Éditions)', NULL, '', '', 'CH', '', '', NULL, '', ''), (3, 'A', 'A.B.C.', NULL, '', '', 'FR', '', '', NULL, '', ''), (4, 'A', 'ABCRedactionnel.com', NULL, '', '', 'FR', '', '', NULL, '', ''), (5, 'A', 'ACROPOLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (6, 'A', 'ACTES SUD', '47, rue du Dr Fanton - pass. du Méjean - BP38', '', 'Arles', 'FR', '0490498691', '0490969525', '', 'www.actes-sud.fr', ''), (7, 'A', 'ACTES SUD / LABOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (8, 'A', 'ActuSF', NULL, '', '', 'FR', '', '', NULL, '', ''), (9, 'A', 'AD SOLEM', NULL, '', '', 'FR', '', '', NULL, '', ''), (10, 'A', 'ADA Inc.', NULL, '', '', 'FR', '', '', NULL, '', ''), (11, 'A', 'AEDIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (12, 'A', 'AFA (Association Française D\'Astronomie)', NULL, '', '', 'FR', '', '', NULL, '', ''), (13, 'A', 'L\'AGE D\'HOMME', '5, rue Férou', '75006', 'Paris', 'FR', '01 55 42 79 79', '01 40 51 71 02', NULL, '', ''), (14, 'A', 'AGLY (DE L\')', '22, rue de la Carreyrade', '66220', 'Saint-Paul de Fenouillet', 'FR', '', '', NULL, '', ''), (15, 'A', 'AGONES', NULL, '', '', 'FR', '', '', NULL, '', ''), (16, 'A', 'L\'AGORA', NULL, '', '', 'FR', '', '', NULL, '', ''), (17, 'A', 'L\'AIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (18, 'A', 'AK EDITIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (19, 'A', 'AKR', NULL, '', '', 'FR', '', '', NULL, '', ''), (20, 'A', 'ALAIN LEFEUVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (21, 'A', 'ALANDIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (22, 'A', 'ALBERT', NULL, '', '', 'FR', '', '', NULL, '', ''), (23, 'A', 'ALBERT MERICANT', NULL, '', '', 'FR', '', '', NULL, '', ''), (24, 'A', 'ALBERT MESSEIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (25, 'A', 'ALBIN MICHEL', '22, rue Huyghens', '75014', 'Paris', 'FR', '01 42 79 10 00', '01 43 27 21 58', NULL, 'www.albin-michel.fr', ''), (26, 'A', 'ALBIN MICHEL Jeunesse', '22, rue Huyghens', '75680', 'Paris', 'FR', '01 42 79 10 00', '', NULL, 'www.albin-michel.fr', ''), (27, 'A', 'ALEAS', NULL, '', '', 'FR', '', '', NULL, '', ''), (28, 'A', 'ALINEA', NULL, '', '', 'FR', '', '', NULL, '', ''), (29, 'A', 'ALIRE', NULL, '', '', 'CA', '', '', NULL, 'www.alire.com', ''), (30, 'A', 'L\'ALOUETTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (31, 'A', 'ALPHONSE LEMERRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (32, 'A', 'ALSATIA', NULL, '', '', 'FR', '', '', NULL, '', ''), (33, 'A', 'ALTA', NULL, '', '', 'FR', '', '', NULL, '', ''), (34, 'A', 'ALTERNATIVES (EDITIONS)', NULL, '', '', 'FR', '', '', NULL, '', ''), (35, 'A', 'ALTO', '577 Lavigueur #2 Québec', 'QC - G1R 1', '', 'CA', '418 522 1209', '', NULL, 'www.editionsalto.com', ''), (36, 'A', 'AMALTHEE', '2 rue Crucy', '44005', 'Nantes', 'FR', '02 40 75 60 78', '', NULL, 'www.editions-amalthee.com', ''), (37, 'A', 'L\'AMATEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (38, 'A', 'L\'AMBASSADE DU LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (39, 'A', 'AMDA', NULL, '', '', 'FR', '', '', NULL, '', ''), (40, 'A', 'AMG2', NULL, '', '', 'FR', '', '', NULL, '', ''), (41, 'A', 'L\'AMITIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (42, 'A', 'L\'AMITIE PAR LA PLUME', NULL, '', '', 'FR', '', '', NULL, '', ''), (43, 'A', 'L\'AMITIE PAR LE LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (44, 'A', 'AMP (ALEXANDER MOSLEY PUBLICATIONS)', NULL, '', '', 'FR', '', '', NULL, '', ''), (45, 'A', 'AN 2 (EDITIONS DE L\')', NULL, '', '', 'FR', '', '', NULL, '', ''), (46, 'A', 'ANANKE', NULL, '', '', 'FR', '', '', NULL, '', ''), (47, 'A', 'ANCRE DE MARINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (48, 'A', 'ANDRÉ MARTEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (49, 'A', 'ANDROMEDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (50, 'A', 'ANGELUS NOVUS EDIZIONI (Italie)', NULL, '', '', 'IT', '', '', NULL, '', ''), (51, 'A', 'ANGEMORT', NULL, '', '', 'FR', '', '', NULL, '', ''), (52, 'A', 'ANIMA CORSA', NULL, '', '', 'FR', '', '', NULL, '', ''), (53, 'A', 'ANNE CARRIERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (54, 'A', 'L\'ANOMALIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (55, 'A', 'ANTARES', NULL, '', '', 'FR', '', '', NULL, '', ''), (56, 'A', 'ANTIDATA', NULL, '', '', 'FR', '', '', NULL, '', ''), (57, 'A', 'ANTIPODES', 'CH 1000 Lausanne 9', ' C.P. 290', 'Lausanne', 'CH', '0041 21 311 93 40', '', NULL, '', ''), (58, 'A', 'APEX', NULL, '', '', 'FR', '', '', NULL, '', ''), (59, 'A', 'APLEPA (Association pour la Promotion et L\'Édition de la Poésie et de la Littérature Alsacienne)', NULL, '', '', 'FR', '', '', NULL, '', ''), (60, 'A', 'APOTHICAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (61, 'A', 'APRÈS LA LUNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (62, 'A', 'AR BED KELTIEK', NULL, '', '', 'FR', '', '', NULL, '', ''), (63, 'A', 'L\'ARABESQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (64, 'A', 'ARACHNE (association)', NULL, '', '', 'FR', '', '', NULL, '', ''), (65, 'A', 'ARCANES', NULL, '', '', 'FR', '', '', NULL, '', ''), (66, 'A', 'L\'ARCHIPEL', '4, rue Chapon', '75003', 'Paris', 'FR', '01 53 93 23 72', '01 53 01 91 89', NULL, '', ''), (67, 'A', 'ARDA', '125, rue de la Tour Billy', '95100', 'Argenteuil', 'FR', '01 30 76 23 26', '', NULL, '', ''), (68, 'A', 'ARENA', NULL, '', '', 'FR', '', '', NULL, '', ''), (69, 'A', 'L\'ARGANIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (70, 'A', 'ARGO', NULL, '', '', 'FR', '', '', NULL, '', ''), (71, 'A', 'ARIANE', NULL, '', '', 'FR', '', '', NULL, '', ''), (72, 'A', 'ARION', '102 Ch. Tour du lac 4366 Lac Beauport (Québec) ', 'G0A 2C0', 'Quebec', 'CA', '1 ( 418 ) 841-0266', ' 1 ( 418 ) 841-3562', NULL, 'www.arion-editeur.ca', ''), (73, 'A', 'ARKUIRIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (74, 'A', 'ARLEA', ' 16, rue de l\'Odéon', '75006', 'Paris', 'FR', '01 43 26 98 18', '01 44 07 04 88', NULL, 'www.arlea.fr', ''), (75, 'A', 'ARMAND COLIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (76, 'A', 'ARMAND FLEURY', NULL, '', '', 'FR', '', '', NULL, '', ''), (77, 'A', 'AR-RELEG-KERHUON', NULL, '', '', 'FR', '', '', NULL, '', ''), (78, 'A', 'ARS MUNDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (79, 'A', 'L\'ART INDEPENDANT', NULL, '', '', 'FR', '', '', NULL, '', ''), (80, 'A', 'ARTHAUD', NULL, '', '', 'FR', '', '', NULL, '', ''), (81, 'A', 'ARTOIS PRESSES UNIVERISTÉ', NULL, '', '', 'FR', '', '', NULL, '', ''), (82, 'A', 'ASBL SPHINX', NULL, '', '', 'FR', '', '', NULL, '', ''), (83, 'A', 'ASHEM FICTIONS', '1335 Rang 1 - Roberval\r\n', 'G8H 2M9', 'Québec', 'CA', '', '', 'ashem@destination.ca', 'membres.lycos.fr/ashem/', ''), (84, 'A', 'ASMODEE', NULL, '', '', 'FR', '', '', NULL, '', ''), (85, 'A', 'ASSOCIATION D\'AIDE AUX AUTEURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (86, 'A', 'ASTICOU', NULL, '', '', 'CA', '', '', NULL, '', ''), (87, 'A', 'ASTRATOM', NULL, '', '', 'FR', '', '', NULL, '', ''), (88, 'A', 'L\'ATALANTE', '11 & 15, rue des Vieilles-Douves', '44000', 'Nantes', 'FR', '02 40 89 14 41', '02 40 47 56 69', NULL, 'www.editions-l-atalante.com', ''), (89, 'A', 'ATELIER DU BEAUSSET', NULL, '', '', 'FR', '', '', NULL, '', ''), (90, 'A', 'ATELIER DU GUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (91, 'A', 'ATELIER DU TAYRAC', NULL, '', '', 'FR', '', '', NULL, '', ''), (92, 'A', 'ATLAS', NULL, '', '', 'FR', '', '', NULL, '', ''), (93, 'A', 'ATOUT', NULL, '', '', 'FR', '', '', NULL, '', ''), (94, 'A', 'ATTINGER', NULL, '', '', 'FR', '', '', NULL, '', ''), (95, 'A', 'AU BORD DES CONTINENTS...', NULL, '', '', 'FR', '', '', NULL, '', ''), (96, 'A', 'AU DIABLE VAUVERT', 'La Laune', '30600', 'VAUVERT', 'FR', '04 66 73 16 56', '04 66 73 16 57', 'contact@audiable.com', 'www.audiable.com', ''), (97, 'A', 'AU SANS-PAREIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (98, 'A', 'AUBE (Éditions de L\')', NULL, '', '', 'FR', '', '', NULL, '', ''), (99, 'A', 'L\'AUBE ENCLAVÉE', NULL, '', '', 'FR', '', '', NULL, '', ''), (100, 'A', 'AUBIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (101, 'A', 'AUBIER FLAMMARION', NULL, '', '', 'FR', '', '', NULL, '', ''), (102, 'A', 'AUBIER MONTAIGNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (103, 'A', 'AUJOURD\'HUI', NULL, '', '', 'FR', '', '', NULL, '', ''), (104, 'A', 'AURORE (Editions de L\')', NULL, '', '', 'FR', '', '', NULL, '', ''), (105, 'A', 'L\'AUTEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (106, 'A', 'LES AUTEURS ASSOCIÉS', NULL, '', '', 'FR', '', '', NULL, '', ''), (107, 'A', 'AUTREMENT', '17, rue du Louvre ', '75001', 'PARIS', 'FR', '01 40 26 06 06', '01 40 26 00 26', NULL, NULL, NULL), (108, 'A', 'AUTRES TEMPS', NULL, '', '', 'FR', '', '', NULL, '', ''), (109, 'A', 'AUX PORTES DU LARGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (110, 'A', 'AVENTURES', NULL, '', '', 'FR', '', '', NULL, '', ''), (111, 'A', 'LES AVENTURIERS DE L\'ARCHE PERDUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (112, 'A', 'AXIUM', NULL, '', '', 'FR', '', '', NULL, '', ''), (113, 'A', 'AZALEES', NULL, '', '', 'FR', '', '', NULL, '', ''), (114, 'B', 'BACONNIÈRE (DE LA)', NULL, '', '', 'FR', '', '', NULL, '', ''), (115, 'B', 'BALEINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (116, 'B', 'BALLAND', NULL, '', '', 'FR', '', '', NULL, '', ''), (117, 'B', 'BALZAC', NULL, '', '', 'FR', '', '', NULL, '', ''), (118, 'B', 'BALZAC (2)', '30 rue des Angles', '66390', 'Baixas', 'FR', '08 75 47 76 24', '04 68 38 53 62', 'balzac.editeur@wanadoo.fr', '', ''), (119, 'B', 'BANDITS COMPANY', NULL, '', '', 'FR', '', '', NULL, '', ''), (120, 'B', 'BARRAULT', NULL, '', '', 'FR', '', '', NULL, '', ''), (121, 'B', 'BASTBERG (EDITIONS DU)', NULL, '', '', 'FR', '', '', NULL, '', ''), (122, 'B', 'BAUDINIERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (123, 'B', 'BAYARD', '31, rue Bayard', '75393', 'Paris cedex 08', 'FR', '01 44 35 60 60', '01 44 35 60 25', NULL, '', ''), (124, 'B', 'BEAUCHEMIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (125, 'B', 'BEL-AIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (126, 'B', 'BELEM', NULL, '', '', 'FR', '', '', NULL, '', ''), (127, 'B', 'BELFOND', '12, avenue d\'italie', '75627', 'Paris cedex 13', 'FR', '01 44 16 05 00', '01 44 16 05 13', NULL, '', ''), (128, 'B', 'BELIAL', '50 rue du clos', '77670', 'Saint Mammès', 'FR', '01 64 69 53 00', '01 64 69 53 02', NULL, 'http://www.belial.fr', ''), (129, 'B', 'BELIN', '8 rue Férou', '75278', 'Paris cedex 06', 'FR', '01 55 42 84 00', '01 43 25 18 29', NULL, 'http://www.editions-belin.com', ''), (130, 'B', 'LES BELLES LETTRES', '95, boulevard Raspail', '75006', 'Paris', 'FR', '01 44 39 84 20', '01 45 44 92 88', NULL, '', ''), (131, 'B', 'BÉNÉVENT', 'BP 4049 Nice Cedex 4', '06301', 'Nice', 'FR', NULL, NULL, NULL, 'http://www.editions-benevent.com', ''), (132, 'B', 'BERGER - LEVRAULT', NULL, '', '', 'FR', '', '', NULL, '', ''), (133, 'B', 'BIAS', NULL, '', '', 'FR', '', '', NULL, '', ''), (134, 'B', 'LA BIBLIOTHÈQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (135, 'B', 'BIBLIOTHÈQUE DES AUTEURS MODERNES', NULL, '', '', 'FR', '', '', NULL, '', ''), (136, 'B', 'BIBLIOTHÈQUE DES LETTRES FRANCAISES', NULL, '', '', 'FR', '', '', NULL, '', ''), (137, 'B', 'BIBLIOTHÈQUE INTERDITE', NULL, '', '', 'FR', '', '', NULL, '', ''), (138, 'B', 'BIBLIOTHÈQUE MONDIALE', NULL, '', '', 'FR', '', '', NULL, '', ''), (139, 'B', 'BIBLIOTHÈQUE MUNICIPALE DE NANTES', NULL, '', '', 'FR', '', '', NULL, '', ''), (140, 'B', 'BIBLIOTHÈQUE PUBLIQUE D\'INFOMATION', NULL, '', '', 'FR', '', '', NULL, '', ''), (141, 'B', 'BIBLIOTHÈQUE QUÉBÉCOISE', NULL, '', '', 'FR', '', '', NULL, '', ''), (142, 'B', 'BLACK COAT PRESS', NULL, '', '', 'FR', '', '', NULL, '', ''), (143, 'B', 'BLMPress', NULL, '', '', 'FR', '', '', NULL, 'http://www.blmpress-editions.com', ''), (144, 'B', 'BODSON', NULL, '', '', 'FR', '', '', NULL, '', ''), (145, 'B', 'LA BOETIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (146, 'B', 'BOIVIN & Cie', NULL, '', '', 'FR', '', '', NULL, '', ''), (147, 'B', 'LA BONNE PRESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (148, 'B', 'BOO!PRESS', NULL, '', '', 'FR', '', '', NULL, '', ''), (149, 'B', 'BOOKKING INTERNATIONAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (150, 'B', 'BOOKPOLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (151, 'B', 'BORDAS', NULL, '', '', 'FR', '', '', NULL, '', ''), (152, 'B', 'BORÉAL EXPRESS', NULL, '', '', 'CA', '', '', NULL, '', ''), (153, 'B', 'BOSSARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (154, 'B', 'BOUCHERIT', NULL, '', '', 'FR', '', '', NULL, '', ''), (155, 'B', 'LA BOUGIE DU SAPEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (156, 'B', 'BOUILLON et LACOMBE', NULL, '', '', 'FR', '', '', NULL, '', ''), (157, 'B', 'BRAGELONNE', '35, rue de la Bienfaisance', '75008', 'Paris', 'FR', '01 56 88 20 90', '01 56 88 20 99', 'info@bragelonne.fr', 'http://www.bragelone.fr', ''), (158, 'B', 'BREAL', '1, rue de Rome', '95561', 'Rosny-sous-bois', 'FR', '01 48 12 22 22', '01 48 12 22 39', NULL, 'http://www.editions-breal.fr', ''), (159, 'B', 'BREVES', NULL, '', '', 'FR', '', '', NULL, '', ''), (160, 'B', 'LA BRIGANDINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (161, 'B', 'BRUNNEN VERLAG', NULL, '', '', 'FR', '', '', NULL, '', ''), (162, 'B', 'LA BRUYERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (163, 'B', 'BUCDOM EDITION CULTURELLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (164, 'B', 'BUCHET-CHASTEL', '7, rue des Canettes', '75006', 'Paris', 'FR', '01 44 32 05 60', '01 44 32 05 62', NULL, '', ''), (165, 'C', 'C. CORLET', NULL, '', '', 'FR', '', '', NULL, '', ''), (166, 'C', 'C. LACOUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (167, 'C', 'C. MARPON & E. FLAMMARION', NULL, '', '', 'FR', '', '', NULL, '', ''), (168, 'C', 'C.B.E. (Cap Béar Édition)', NULL, '', '', 'FR', '', '', NULL, '', ''), (169, 'C', 'C.N.E.S. (Centre National D\'Études Spatiales) / Observatoire de L\'espace', NULL, '', '', 'FR', '', '', NULL, '', ''), (170, 'C', 'C.P.E.', NULL, '', '', 'FR', '', '', NULL, '', ''), (171, 'C', 'LES CAHIERS DU NOUVEL HUMANISTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (172, 'C', 'LES CAHIERS LIBRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (173, 'C', 'CAL (Culture, Arts, Loisir)', NULL, '', '', 'FR', '', '', NULL, '', ''), (174, 'C', 'CALMANN-LÉVY', '3, rue Auber', '75009', 'Paris', 'FR', '01 47 42 38 33', '01 47 42 77 81', NULL, 'http://www.editions-calmann-levy.com', ''), (175, 'C', 'CANAILLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (176, 'C', 'CARREFOUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (177, 'C', 'CARRERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (178, 'C', 'CARRERE-KIAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (179, 'C', 'CARROUSEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (180, 'C', 'CARTON', NULL, '', '', 'FR', '', '', NULL, '', ''), (181, 'C', 'CASABLANCA', NULL, '', '', 'FR', '', '', NULL, '', ''), (182, 'C', 'CASTERMAN', '36, rue du chemin vert', '75011', 'Paris', 'FR', '01 55 28 12 00', '01 55 28 12 60', NULL, '', ''), (183, 'C', 'LE CAVALIER BLEU', NULL, '', '', 'FR', '', '', NULL, '', ''), (184, 'C', 'CAVALIER VERT', '2, rue Frédéric Schneider', '75018', 'Paris', 'FR', '01 42 54 08 00', '01 42 54 73 04', NULL, '', ''), (185, 'C', 'CCL', NULL, '', '', 'FR', '', '', NULL, '', ''), (186, 'C', 'CEFAL', '31, boulevard Frère Orban', '4000', 'Liège', 'BE', '0032415425 20', '0032415424 40', NULL, '', ''), (187, 'C', 'CENTRE NATIONAL DE DOCUMENTATION PEDAGOGIQE', NULL, '', '', 'FR', '', '', NULL, '', ''), (188, 'C', 'LE CERCLE DU BIBLIOPHILE', NULL, '', '', 'FR', '', '', NULL, '', ''), (189, 'C', 'LE CERCLE DU NOUVEAU LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (190, 'C', 'CERF (EDITIONS DU)', '29 bd La Tour-Maubourg', '75340', 'Paris cdx 07', 'FR', '', '', '', 'www.editionsducerf.fr/', 'Fondée et gérée par des dominicains. http://fr.wikipedia.org/wiki/%C3%89ditions_du_Cerf'), (191, 'C', 'CHABERNAK', NULL, '', '', 'FR', '', '', NULL, '', ''), (192, 'C', 'CHAILLEY LEON', NULL, '', '', 'FR', '', '', NULL, '', ''), (193, 'C', 'CHAMP LIBRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (194, 'C', 'CHAMUEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (195, 'C', 'CHANTAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (196, 'C', 'CHANTECLER', NULL, '', '', 'FR', '', '', NULL, '', ''), (197, 'C', 'CHARAVAY, MANTOUX & MARTIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (198, 'C', 'DU CHARDON', NULL, '', '', 'FR', '', '', NULL, '', ''), (199, 'C', 'CHARDON BLEU', NULL, '', '', 'FR', '', '', NULL, '', ''), (200, 'C', 'CHARLES L\'ANGELIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (201, 'C', 'Charles-Georges-Thomas GARNIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (202, 'C', 'CHARPENTIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (203, 'C', 'LA CHASSE-GALERIE', NULL, '', 'Québec', 'CA', '', '', NULL, '', ''), (204, 'C', 'LE CHAT ROUGE', '4, rue du Courtet', '34110', 'Vic la Gardiole', 'FR', '', '', NULL, 'http://www.lechatrouge.org', ''), (205, 'C', 'CHEMINEMENTS', NULL, '', '', 'FR', '', '', NULL, '', ''), (206, 'C', 'CHENE', NULL, '', '', 'FR', '', '', NULL, '', ''), (207, 'C', 'LE CHERCHE-MIDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (208, 'C', 'CHRISTIAN BOURGOIS', '116, rue du bac', '75007', 'Paris', 'FR', '01 45 44 09 13', '01 45 44 87 86', NULL, '', ''), (209, 'C', 'CINQUIÈME SAISON', NULL, '', '', 'FR', '', '', NULL, '', ''), (210, 'C', 'LE CITRON HALLUCINOGÈNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (211, 'C', 'CITY EDITIONS', '10, rue Mare Linette', '27380', 'Grainville', 'FR', '', '', 'cityeditions@yahoo.fr', 'http://www.city-editions.com', ''), (212, 'C', 'CLANCIER-GUENAUD', NULL, '', '', 'FR', '', '', NULL, '', ''), (213, 'C', 'CLE DE SEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (214, 'C', 'CLE INTERNATIONAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (215, 'C', 'LA CLEF D\'ARGENT', '22, av Georges Pompidou', '39100', 'Dole', 'FR', '', '', NULL, 'http://www.clef-argent.org', ''), (216, 'C', 'CLIMAT', NULL, '', '', 'FR', '', '', NULL, '', ''), (217, 'C', 'CLO', NULL, '', '', 'FR', '', '', NULL, '', ''), (218, 'C', 'LE CLOCHER', NULL, '', '', 'FR', '', '', NULL, '', ''), (219, 'C', 'CLUB DES AMIS DU LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (220, 'C', 'CLUB DU BEAU LIVRE DE France', NULL, '', '', 'FR', '', '', NULL, '', ''), (221, 'C', 'CLUB DU LIVRE DU MOIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (222, 'C', 'CLUB DU MEILLEUR LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (223, 'C', 'CLUB FRANCAIS DU LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (224, 'C', 'CNRS', NULL, '', '', 'FR', '', '', NULL, '', ''), (225, 'C', 'CODA', NULL, '', '', 'FR', '', '', NULL, '', ''), (226, 'C', 'COLBERT', NULL, '', '', 'FR', '', '', NULL, '', ''), (227, 'C', 'COLIBRIS', '3, route de Lure', '70200', 'Saint-Germain', 'FR', '03 84 30 12 31', '', 'contact@editions-du-colibris.com', 'http://www.editions-du-colibris.com', ''), (228, 'C', 'COLLECTION D\'AVENTURES', NULL, '', '', 'FR', '', '', NULL, '', ''), (229, 'C', 'COLLECTION DES GRANDS CLASSIQUES FRANÇAIS ET ÉTRANGERS', NULL, '', '', 'FR', '', '', NULL, '', ''), (230, 'C', 'COMBET', NULL, '', '', 'FR', '', '', NULL, '', ''), (231, 'C', 'COMPAGNIE INTERNATIONALE DU LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (232, 'C', 'COMPLEXE', NULL, '', '', 'FR', '', '', NULL, '', ''), (233, 'C', 'CONARD LOUIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (234, 'C', 'LA CONCORDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (235, 'C', 'CONFÉRENCE', '1, route nationale', '77440', 'Trocy-en-Multien', 'FR', '', '', NULL, '', ''), (236, 'C', 'CONQUET', NULL, '', '', 'FR', '', '', NULL, '', ''), (237, 'C', 'CONSTANT RUFFIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (238, 'C', 'LES CONTREBANDIERS', NULL, '', '', 'FR', '', '', NULL, '', ''), (239, 'C', 'COOP BREIZH', NULL, '', '', 'FR', '', '', NULL, '', ''), (240, 'C', 'COQ HARDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (241, 'C', 'CORPS 16', NULL, '', '', 'FR', '', '', NULL, '', ''), (242, 'C', 'CORPS 9 - ANDROMEDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (243, 'C', 'COSMOPOLITES', NULL, '', '', 'FR', '', '', NULL, '', ''), (244, 'C', 'CRAM', '1030, rue Cherrier ', 'H2L 1H9 (Q', 'Montréal', 'CA', '', '', NULL, 'http://www.editionscram.com', ''), (245, 'C', 'CRAMER', NULL, '', '', 'FR', '', '', NULL, '', ''), (246, 'C', 'CRAPULE PRODUCTIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (247, 'C', 'CREMILLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (248, 'C', 'LE CRI', NULL, '', '', 'FR', '', '', NULL, '', ''), (249, 'C', 'CTHS (centre des travaux historiques et scientifiques, Amiens)', NULL, '', '', 'FR', '', '', NULL, '', ''), (250, 'C', 'CYLIBRIS', '1, rue Martel', '75010', 'Paris', 'FR', '01 45 00 01 50', '01 45 00 27 16', NULL, '', ''), (251, 'D', 'DAGORNO', NULL, '', '', 'FR', '', '', NULL, '', ''), (252, 'D', 'DAMONNEVILLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (253, 'D', 'DANIBER', NULL, '', '', 'FR', '', '', NULL, '', ''), (254, 'D', 'DAPPER', '35, rue Paul Valéry', '75116', 'Paris', 'FR', '', '', NULL, 'http://www.dapper.fr', ''), (255, 'D', 'DARDELET', NULL, '', '', 'FR', '', '', NULL, '', ''), (256, 'D', 'DARGAUD', NULL, '', '', 'FR', '', '', NULL, '', ''), (257, 'D', 'DE BOECK A.', NULL, '', '', 'FR', '', '', NULL, '', ''), (258, 'D', 'DE FLORE', NULL, '', '', 'FR', '', '', NULL, '', ''), (259, 'D', 'DEBRESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (260, 'D', 'LA DÉCOUVERTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (261, 'D', 'DEGLIAME', '5, rue Paul Vaillant-Couturier', '94700', 'Maison-Alfort', 'FR', '01 56 29 04 34', '01 56 29 04 34', NULL, 'http://www.cadranbleu.com', ''), (262, 'D', 'DELAGRAVE', NULL, '', '', 'FR', '', '', NULL, '', ''), (263, 'D', 'DELCOURT', NULL, '', '', 'FR', '', '', NULL, '', ''), (264, 'D', 'DELLOYE', NULL, '', '', 'FR', '', '', NULL, '', ''), (265, 'D', 'DELVILLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (266, 'D', 'DENOËL', '9, rue du Cherche midi', '75006', 'Paris', 'FR', '01 44 39 73 74', '01 44 39 73 90', NULL, 'http://www.denoel.fr', ''), (267, 'D', 'DENOËL / GONTHIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (268, 'D', 'DENTU E.', NULL, '', '', 'FR', '', '', NULL, '', ''), (269, 'D', 'LE DERNIER TERRAIN VAGUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (270, 'D', 'DERVY', '17, rue Campagne-Première (voie privée n°5)', '75014', 'Paris', 'FR', '01 42 79 18 92', '01 43 27 42 17', NULL, '', ''), (271, 'D', 'DESCLÉE DE BROUWER', NULL, '', '', 'FR', '', '', NULL, '', ''), (272, 'D', 'DESORDRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (273, 'D', 'DESTINATION CRÉPUSCULE', NULL, '', '', 'FR', '', '', NULL, '', ''), (274, 'D', 'LES DEUX COQS D\'OR', NULL, '', '', 'FR', '', '', NULL, '', ''), (275, 'D', 'DEUX RIVES', NULL, '', '', 'FR', '', '', NULL, '', ''), (276, 'D', 'LES DEUX TERRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (277, 'D', 'DIANE DE SELLIERS', '20, rue d\'Anjou', '75008', 'Paris', 'FR', '', '', NULL, 'http://www.editionsdianedeselliers.com', ''), (278, 'D', 'DIDEROT', NULL, '', '', 'FR', '', '', NULL, '', ''), (279, 'D', 'DIDIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (280, 'D', 'DIESTERWEG', NULL, '', '', 'FR', '', '', NULL, '', ''), (281, 'D', 'LA DIFFERENCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (282, 'D', 'DIFFUSION UNIVERSITAIRE EUROPÉENNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (283, 'D', 'LE DILETTANTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (284, 'D', 'DITIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (285, 'D', 'DLM Editions', NULL, '', '', 'FR', '', '', NULL, '', ''), (286, 'D', 'DOMINIQUE LEROY', NULL, '', '', 'FR', '', '', NULL, '', ''), (287, 'D', 'DOMINO', NULL, '', 'Montréal', 'CA', '', '', NULL, '', ''), (288, 'D', 'LA DRAGONNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (289, 'D', 'DREAMLAND ÉDITEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (290, 'D', 'DREAMPRESS.COM', NULL, '', '', 'FR', '', '', NULL, '', ''), (291, 'D', 'DU MAY', NULL, '', '', 'FR', '', '', NULL, '', ''), (292, 'D', 'DU MYRTHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (293, 'D', 'DUCROCQ CHULLIAT (Librairie)', NULL, '', '', 'FR', '', '', NULL, '', ''), (294, 'D', 'DUCULOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (295, 'D', 'DUNOD', NULL, '', '', 'FR', '', '', NULL, '', ''), (296, 'D', 'DUPONT PAUL', NULL, '', '', 'FR', '', '', NULL, '', ''), (297, 'D', 'DUPUIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (298, 'D', 'DUPUIS (XVIII° siècle)', NULL, '', '', 'FR', '', '', NULL, '', ''), (299, 'D', 'DURANTE', '10, av Léon-Bourgain', '92400', 'Courbevoie', 'FR', '01 47 68 90 74', '01 47 88 11 59', 'duranteediteur@wanadoo.fr', 'http://www.durante-editeur.com', ''), (300, 'D', 'DURENDAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (301, 'E', 'E. GIRARD & A. BOITTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (302, 'E', 'E/DITE', '79, rue Amelot', '75011', 'Paris', 'FR', '06 60 61 03 02', '01 43 14 62 52', NULL, '', ''), (303, 'E', 'L\'ECAILLER DU SUD', NULL, '', '', 'FR', '', '', NULL, 'http://www.editionlecailler.com', ''), (304, 'E', 'L\'ECLAT', NULL, '', '', 'FR', '', '', NULL, '', ''), (305, 'E', 'L\'ECOLE DES LOISIRS', '11, rue de Sèvres', '75006', 'Paris', 'FR', '01 42 22 94 10', '01 45 48 04 99', NULL, '', ''), (306, 'E', 'L\'ECUREUIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (307, 'E', 'EDDL', NULL, '', '', 'FR', '', '', NULL, '', ''), (308, 'E', 'EDEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (309, 'E', 'EDI-MONDE', NULL, '', 'Paris', 'FR', '', '', NULL, '', ''), (310, 'E', 'EDITEQ', NULL, '', 'Rimouski', 'CA', '', '', NULL, '', ''), (311, 'E', 'EDITEURS FRANCAIS REUNIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (312, 'E', 'L\'EDITION FRANCAISE ILLUSTREE', NULL, '', '', 'FR', '', '', NULL, '', ''), (313, 'E', 'EDITION SPECIALE', NULL, '', '', 'FR', '', '', NULL, '', ''), (314, 'E', 'Editions 84', NULL, '', '', 'FR', '', '', NULL, '', ''), (315, 'E', 'EDITIONS ARTISTIQUES ET DOCUMENTAIRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (316, 'E', 'EDITIONS DE LA SEINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (317, 'E', 'EDITIONS DE L\'A VENIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (318, 'E', 'EDITIONS DE L\'ATALANTE', NULL, '', 'Bruxelles', 'BE', '', '', NULL, '', ''), (319, 'E', 'EDITIONS DES FEMMES', NULL, '', '', 'FR', '', '', NULL, '', ''), (320, 'E', 'EDITIONS DU CENTRE D\'ETUDES DE L\'AGENCE INTER FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (321, 'E', 'EDITIONS DU HAUT CHÂTEAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (322, 'E', 'EDITIONS DU LIOGAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (323, 'E', 'EDITIONS ET REVUES FRANCAISES', NULL, '', '', 'FR', '', '', NULL, '', ''), (324, 'E', 'EDITIONS LOGIQUES', NULL, '', '', 'FR', '', '', NULL, '', ''), (325, 'E', 'EDITIONS MONDIALES DEL DUCA', NULL, '', '', 'FR', '', '', NULL, '', ''), (326, 'E', 'LES EDITIONS NOCTURNES', NULL, '', '', 'FR', '', '', NULL, '', ''), (327, 'E', 'LES EDITIONS NOUVELLES', NULL, '', '', 'FR', '', '', NULL, '', ''), (328, 'E', 'EDITIONS P. TACUSSEL', '191, bd. Baille', '13005', 'Marseille', 'FR', '33 (0)4 9194 2480', '33 (0)4 9142 0344', 'editions@tacussel.fr', 'http://www.tacussel.fr', ''), (329, 'E', 'EDITIONS SCOLAIRES D\'ÉTAT', NULL, '', '', 'FR', '', '', NULL, '', ''), (330, 'E', 'EDITIONS UNIVERSITAIRES BEGEDIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (331, 'E', 'EDITIONS UNIVERSITAIRES DE DIJON (EUD)', NULL, '', '', 'FR', '', '', NULL, '', ''), (332, 'E', 'EDITO GEORGES NAEF', NULL, '', '', 'FR', '', '', NULL, '', ''), (333, 'E', 'EDITONS PLANETES', NULL, '', '', 'FR', '', '', NULL, '', ''), (334, 'E', 'EDITO-SERVICE', NULL, '', '', 'FR', '', '', NULL, '', ''), (335, 'E', 'EDP SCIENCES', NULL, '', '', 'FR', '', '', NULL, '', ''), (336, 'E', 'EGRAZ-KESSELRING', NULL, '', '', 'FR', '', '', NULL, '', ''), (337, 'E', 'EICHLER', NULL, '', '', 'FR', '', '', NULL, '', ''), (338, 'E', 'L\'ELAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (339, 'E', 'LES ELFES & ATLANTIC', NULL, '', '', 'FR', '', '', NULL, '', ''), (340, 'E', 'ELLIPSES', NULL, '', '', 'FR', '', '', NULL, '', ''), (341, 'E', 'ELLUG (Editions Littéraires et Linguistiques de L\'Université de Grenoble)', NULL, '', '', 'FR', '', '', NULL, '', ''), (342, 'E', 'EMERAUDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (343, 'E', 'EMILE-PAUL', NULL, '', '', 'FR', '', '', NULL, '', ''), (344, 'E', 'LES EMPÊCHEURS DE PENSER EN ROND', NULL, '', '', 'FR', '', '', NULL, '', ''), (345, 'E', 'L\'ENCLOS', NULL, '', '', 'FR', '', '', NULL, '', ''), (346, 'E', 'ENCRAGE', '27, rue Dom-bouquet BP 0451 Amiens cedex 01', '80004', 'Amiens', 'FR', '03 22 92 64 87', '03 22 92 93 80', NULL, '', ''), (347, 'E', 'ENCRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (348, 'E', 'L\'ENTRELIGNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (349, 'E', 'EONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (350, 'E', 'ERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (351, 'E', 'ERIC LOSFELD', NULL, '', '', 'FR', '', '', NULL, '', ''), (352, 'E', 'L\'ERMITAGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (353, 'E', 'ERNEST KOLB', NULL, '', '', 'FR', '', '', NULL, '', ''), (354, 'E', 'LES ESCOGRIFFES', NULL, '', '', 'FR', '', '', NULL, '', ''), (355, 'E', 'L\'ESPOIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (356, 'E', 'ESPRIT DES PENINSULES', NULL, '', '', 'FR', '', '', NULL, '', ''), (357, 'E', 'L\'ESSOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (358, 'E', 'ETELKA', NULL, '', '', 'FR', '', '', NULL, 'http://www.etelka-editions.com', ''), (359, 'E', 'L\'ETRAVE', NULL, '', '', 'FR', '', '', NULL, '', ''), (360, 'E', 'EUGÈNE FIGUIÈRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (361, 'E', 'EURÉDIF', NULL, '', '', 'FR', '', '', NULL, '', ''), (362, 'E', 'EUROPE', NULL, '', '', 'FR', '', '', NULL, '', ''), (363, 'E', 'EUROPEAN SPACE AGENCY (ESA)', NULL, '', '', 'FR', '', '', NULL, '', ''), (364, 'E', 'EVERGREEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (365, 'E', 'EXPRESSION - CREATION', NULL, '', '', 'FR', '', '', NULL, '', ''), (366, 'F', 'FABBRI', NULL, '', '', 'FR', '', '', NULL, '', ''), (367, 'F', 'FALLOIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (368, 'F', 'FAMOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (369, 'F', 'LE FANAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (370, 'F', 'FAN-CLUB', NULL, '', '', 'FR', '', '', NULL, '', ''), (371, 'F', 'FARANDOLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (372, 'F', 'FASQUELLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (373, 'F', 'FAVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (374, 'F', 'FAYARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (375, 'F', 'FEEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (376, 'F', 'FELIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (377, 'F', 'FENETRE OUVERTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (378, 'F', 'FER DE CHANCES', NULL, '', '', 'FR', '', '', NULL, '', ''), (379, 'F', 'FERENCZI (Joseph Ferenczi et fils éditeurs)', NULL, '', '', 'FR', '', '', NULL, '', ''), (380, 'F', 'FERNAND LANORE', NULL, '', '', 'FR', '', '', NULL, '', ''), (381, 'F', 'FERYANE', NULL, '', '', 'FR', '', '', NULL, '', ''), (382, 'F', 'LA FEUILLE LITTÉRAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (383, 'F', 'FIDES', NULL, '', '', 'FR', '', '', NULL, '', ''), (384, 'F', 'FIGUIERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (385, 'F', 'FILIPACCHI', NULL, '', '', 'FR', '', '', NULL, '', ''), (386, 'F', 'FILMS ABC', NULL, '', '', 'FR', '', '', NULL, '', ''), (387, 'F', 'FINITUDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (388, 'F', 'FIRMIN-DIDOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (389, 'F', 'FLAMMARION', NULL, '', '', 'FR', '', '', NULL, '', ''), (390, 'F', 'FLAMME', NULL, '', '', 'FR', '', '', NULL, '', ''), (391, 'F', 'LA FLAMME D\'OR', NULL, '', '', 'FR', '', '', NULL, '', ''), (392, 'F', 'FLEURUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (393, 'F', 'FLEUVE NOIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (394, 'F', 'DE FLORE', NULL, '', '', 'FR', '', '', NULL, '', ''), (395, 'F', 'FLORENT MASSOT PRESENTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (396, 'F', 'FLORENT-MASSOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (397, 'F', 'FMR - Editions du PANAMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (398, 'F', 'FONDATION LITTÉRAIRE FLEUR DE LYS', NULL, '', '', 'FR', '', '', NULL, '', ''), (399, 'F', 'FONTAINE AU ROY (De la)', NULL, '', '', 'FR', '', '', NULL, '', ''), (400, 'F', 'FORET JOSEPH', NULL, '', '', 'FR', '', '', NULL, '', ''), (401, 'F', 'LES FORMES DU SECRET', NULL, '', '', 'FR', '', '', NULL, '', ''), (402, 'F', 'FORTUNY', NULL, '', '', 'FR', '', '', NULL, '', ''), (403, 'F', 'LA FOSSE AUX OURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (404, 'F', 'FRANCAIS REUNIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (405, 'F', 'FRANCE ADEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (406, 'F', 'FRANCE AUTOMOBILE ET AERIENNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (407, 'F', 'FRANCE EUROPE EDITIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (408, 'F', 'FRANCE GRAPHIC PUBLICATION', NULL, '', '', 'FR', '', '', NULL, '', ''), (409, 'F', 'FRANCE LOISIRS', NULL, '', '', 'FR', '', '', NULL, '', ''), (410, 'F', 'FRANCE-EDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (411, 'F', 'FRANCE-EMPIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (412, 'F', 'FRANCO BOZZESI (Rome)', NULL, '', '', 'FR', '', '', NULL, '', ''), (413, 'F', 'FRANCOIS-XAVIER DE GUIBERT', NULL, '', '', 'FR', '', '', NULL, '', ''), (414, 'F', 'FROISSART J.', NULL, '', '', 'FR', '', '', NULL, '', ''), (415, 'F', 'FRONTIÈRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (416, 'F', 'FUTURS PRESSE EDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (417, 'G', 'G. CRÈS ET Cie', NULL, '', '', 'FR', '', '', NULL, '', ''), (418, 'G', 'G. DOIN & Cie', NULL, '', '', 'FR', '', '', NULL, '', ''), (419, 'G', 'G. EDINGER Editeur', NULL, '', '', 'FR', '', '', NULL, '', ''), (420, 'G', 'G.P.', NULL, '', '', 'FR', '', '', NULL, '', ''), (421, 'G', 'GAÏA', NULL, '', '', 'FR', '', '', NULL, '', ''), (422, 'G', 'GAILLARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (423, 'G', 'GALAXIES', NULL, '', '', 'FR', '', '', NULL, '', ''), (424, 'G', 'GALILEE', NULL, '', '', 'FR', '', '', NULL, '', ''), (425, 'G', 'GALLIERA', NULL, '', '', 'FR', '', '', NULL, '', ''), (426, 'G', 'GALLIMARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (427, 'G', 'GALLIMARD Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (428, 'G', 'GAMMA-PRESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (429, 'G', 'GARAMOND', NULL, '', '', 'FR', '', '', NULL, '', ''), (430, 'G', 'GARANCIERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (431, 'G', 'GARNIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (432, 'G', 'GARNIER Fr.', NULL, '', '', 'FR', '', '', NULL, '', ''), (433, 'G', 'GARNIER-FLAMMARION', NULL, '', '', 'FR', '', '', NULL, '', ''), (434, 'G', 'GARRY', NULL, '', '', 'FR', '', '', NULL, '', ''), (435, 'G', 'GAUTIER - LANGUEREAU - FLEURUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (436, 'G', 'GEDALGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (437, 'G', 'GENERALES', NULL, '', '', 'FR', '', '', NULL, '', ''), (438, 'G', 'GEORGES FALL', NULL, '', '', 'FR', '', '', NULL, '', ''), (439, 'G', 'GEORGES-ANQUETIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (440, 'G', 'GERARD DE VILLIERS', NULL, '', '', 'FR', '', '', NULL, '', ''), (441, 'G', 'GERARD KLOPP', NULL, '', '', 'FR', '', '', NULL, '', ''), (442, 'G', 'GIBERT JEUNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (443, 'G', 'GLENAT', NULL, '', '', 'FR', '', '', NULL, '', ''), (444, 'G', 'GLYPHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (445, 'G', 'GOETIA', NULL, '', '', 'FR', '', '', NULL, '', ''), (446, 'G', 'GRAMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (447, 'G', 'GRAMMONT', NULL, '', '', 'FR', '', '', NULL, '', ''), (448, 'G', 'GRANADA', NULL, '', '', 'FR', '', '', NULL, '', ''), (449, 'G', 'GRAND DAMIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (450, 'G', 'GRAND LIVRE DU MOIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (451, 'G', 'LE GRAND SOUFFLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (452, 'G', 'GRANDS ECRIVAINS', NULL, '', '', 'FR', '', '', NULL, '', ''), (453, 'G', 'GRASSET', NULL, '', '', 'FR', '', '', NULL, '', ''), (454, 'G', 'GRECO', NULL, '', '', 'FR', '', '', NULL, '', ''), (455, 'G', 'GRÜND', NULL, '', '', 'FR', '', '', NULL, '', ''), (456, 'G', 'GUENAUD', NULL, '', '', 'FR', '', '', NULL, '', ''), (457, 'G', 'GUEPARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (458, 'G', 'GUILLEMOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (459, 'G', 'GÜNTEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (460, 'G', 'GUTENBERG', NULL, '', '', 'FR', '', '', NULL, '', ''), (461, 'G', 'GUY TREDANIEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (462, 'G', 'GUYOT A. L.', NULL, '', '', 'FR', '', '', NULL, '', ''), (463, 'H', 'H et O éditions', NULL, '', '', 'FR', '', '', NULL, '', ''), (464, 'H', 'H. PIAZZA', NULL, '', '', 'FR', '', '', NULL, '', ''), (465, 'H', 'HACHETTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (466, 'H', 'HACHETTE & Cie', NULL, '', '', 'FR', '', '', NULL, '', ''), (467, 'H', 'HACHETTE / EDIMONDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (468, 'H', 'HACHETTE / GALLIMARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (469, 'H', 'HACHETTE Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (470, 'H', 'HAR PO', NULL, '', '', 'FR', '', '', NULL, '', ''), (471, 'H', 'HARDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (472, 'H', 'HARLEQUIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (473, 'H', 'L\'HARMATTAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (474, 'H', 'HATIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (475, 'H', 'HATIER-G.-T.-RAGEOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (476, 'H', 'HEIM GERARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (477, 'H', 'HÉLIO GRAPHIQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (478, 'H', 'HEMMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (479, 'H', 'HENRI CYRAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (480, 'H', 'HENRI VEYRIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (481, 'H', 'HENRY', NULL, '', '', 'FR', '', '', NULL, '', ''), (482, 'H', 'HENSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (483, 'H', 'HÉRITAGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (484, 'H', 'HERMANN', NULL, '', '', 'FR', '', '', NULL, '', ''), (485, 'H', 'HERMAPHRODITE', NULL, '', '', 'FR', '', '', NULL, '', ''), (486, 'H', 'HERNE (Editions de L\')', NULL, '', '', 'FR', '', '', NULL, '', ''), (487, 'H', 'HESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (488, 'H', 'HETZEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (489, 'H', 'HEXAGONAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (490, 'H', 'L\'HEXAGONE', NULL, '', '', 'FR', '', '', NULL, '', ''), (491, 'H', 'HIER ET AUJOURD\'HUI', NULL, '', '', 'FR', '', '', NULL, '', ''), (492, 'H', 'LE HIÉRARCH', NULL, '', '', 'FR', '', '', NULL, '', ''), (493, 'H', 'HOEBEKE', NULL, '', '', 'FR', '', '', NULL, '', ''), (494, 'H', 'HONORE CHAMPION', NULL, '', '', 'FR', '', '', NULL, '', ''), (495, 'H', 'HORS COLLECTION', NULL, '', '', 'FR', '', '', NULL, '', ''), (496, 'H', 'HORS COMMERCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (497, 'H', 'HUITIÈME ART', NULL, '', '', 'FR', '', '', NULL, '', ''), (498, 'H', 'LES HUMANOIDES ASSOCIÉS', NULL, '', '', 'FR', '', '', NULL, '', ''), (499, 'H', 'HURTUBISE HMH (Canada)', NULL, '', '', 'FR', '', '', NULL, '', ''), (500, 'H', 'LA HUTTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (501, 'I', 'IBIS ROUGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (502, 'I', 'IBOLYA VIRÁG', NULL, '', '', 'FR', '', '', NULL, '', ''), (503, 'I', 'IDEA (Roumanie)', NULL, '', '', 'FR', '', '', NULL, '', ''), (504, 'I', 'IDÉMÉDIA', NULL, '', '', 'FR', '', '', NULL, '', ''), (505, 'I', 'IFRANE', NULL, '', '', 'FR', '', '', NULL, '', ''), (506, 'I', 'L\'ILLUSTRATION', NULL, '', '', 'FR', '', '', NULL, '', ''), (507, 'I', 'ILV-Editions (InLibroVeritas)', NULL, '', '', 'FR', '', '', NULL, '', ''), (508, 'I', 'IMA MONTIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (509, 'I', 'IMAGES MODERNES', NULL, '', '', 'FR', '', '', NULL, '', ''), (510, 'I', 'IMAGINAIRES SANS FRONTIÈRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (511, 'I', 'IMAGINE...', NULL, '', '', 'FR', '', '', NULL, '', ''), (512, 'I', 'LES IMAGINOÏDES', NULL, '', '', 'FR', '', '', NULL, '', ''), (513, 'I', 'IMAGO', NULL, '', '', 'FR', '', '', NULL, '', ''), (514, 'I', 'L\'IMPOSSIBLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (515, 'I', 'LES IMPRESSIONS NOUVELLES', NULL, '', '', 'FR', '', '', NULL, '', ''), (516, 'I', 'IMPRIMERIE DE L\'ECOLE NORMALE', NULL, '', '', 'FR', '', '', NULL, '', ''), (517, 'I', 'L\'INCERTAIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (518, 'I', 'INÉDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (519, 'I', 'INFINI', NULL, '', '', 'FR', '', '', NULL, '', ''), (520, 'I', 'INITIALES', NULL, '', '', 'FR', '', '', NULL, '', ''), (521, 'I', 'L\'INSTANT MÊME', NULL, '', '', 'FR', '', '', NULL, '', ''), (522, 'I', 'L\'INSTANT', NULL, '', '', 'FR', '', '', NULL, '', ''), (523, 'I', 'INTERVISTA', NULL, '', '', 'FR', '', '', NULL, '', ''), (524, 'I', 'LES INTOUCHABLES', NULL, '', '', 'FR', '', '', NULL, '', ''), (525, 'J', 'J. ANTOINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (526, 'J', 'J. de GIGORD', NULL, '', '', 'FR', '', '', NULL, '', ''), (527, 'J', 'J. PREUSS', NULL, '', '', 'FR', '', '', NULL, '', ''), (528, 'J', 'JACQUES ANTOINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (529, 'J', 'JACQUES BREMOND', NULL, '', '', 'FR', '', '', NULL, '', ''), (530, 'J', 'JACQUES GRANCHER', NULL, '', '', 'FR', '', '', NULL, '', ''), (531, 'J', 'JACQUES-MARIE LAFFONT', NULL, '', '', 'FR', '', '', NULL, '', ''), (532, 'J', 'JACQUIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (533, 'J', 'JAEGER - D\'HAUTEVILLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (534, 'J', 'J\'AI LU', NULL, '', '', 'FR', '', '', NULL, '', ''), (535, 'J', 'JANICOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (536, 'J', 'JANUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (537, 'J', 'LE JARDIN DES LIVRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (538, 'J', 'JASMIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (539, 'J', 'JE SAIS TOUT', NULL, '', '', 'FR', '', '', NULL, '', ''), (540, 'J', 'JEAN DE BONNOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (541, 'J', 'JEAN GOUJON', NULL, '', '', 'FR', '', '', NULL, '', ''), (542, 'J', 'JEAN VIGNEAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (543, 'J', 'JEAN-CLAUDE SIMOEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (544, 'J', 'JEANNE GASTON-LEROUX', NULL, '', '', 'FR', '', '', NULL, '', ''), (545, 'J', 'JEANNE LAFFITTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (546, 'J', 'JEHEBER', NULL, '', '', 'FR', '', '', NULL, '', ''), (547, 'J', 'JEROME MARTINEAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (548, 'J', 'LA JEUNE PARQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (549, 'J', 'JMG (Jean-Michel Grandsire)', NULL, '', '', 'FR', '', '', NULL, '', ''), (550, 'J', 'JOCA SERIA', NULL, '', '', 'FR', '', '', NULL, '', ''), (551, 'J', 'JOELLE LOSFELD', NULL, '', '', 'FR', '', '', NULL, '', ''), (552, 'J', 'JORDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (553, 'J', 'JOSÉ CORTI', NULL, '', '', 'FR', '', '', NULL, '', ''), (554, 'J', 'Joseph OUAKNINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (555, 'J', 'JOUAUST', NULL, '', '', 'FR', '', '', NULL, '', ''), (556, 'J', 'JOURNAL DES VOYAGES', NULL, '', '', 'FR', '', '', NULL, '', ''), (557, 'J', 'JOUVET', NULL, '', '', 'FR', '', '', NULL, '', ''), (558, 'J', 'JULLIARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (559, 'J', 'JUVEN FELIX', NULL, '', '', 'FR', '', '', NULL, '', ''), (560, 'K', 'KAILASH', NULL, '', '', 'FR', '', '', NULL, '', ''), (561, 'K', 'KALÉIDOSCOPE', NULL, '', '', 'FR', '', '', NULL, '', ''), (562, 'K', 'KasHer Productions', NULL, '', '', 'FR', '', '', NULL, '', ''), (563, 'K', 'KESSELRING', NULL, '', '', 'FR', '', '', NULL, '', ''), (564, 'K', 'KHOM-HEÏDON', NULL, '', '', 'FR', '', '', NULL, '', ''), (565, 'K', 'KIME', NULL, '', '', 'FR', '', '', NULL, '', ''), (566, 'K', 'KLINCKSIECK', NULL, '', '', 'FR', '', '', NULL, '', ''), (567, 'L', 'L. BOULANGER', NULL, '', '', 'FR', '', '', NULL, '', ''), (568, 'L', 'L. LAUMONIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (569, 'L', 'L.I.R.E.', NULL, '', '', 'FR', '', '', NULL, '', ''), (570, 'L', 'LABOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (571, 'L', 'LABOR & FIDES', NULL, '', '', 'FR', '', '', NULL, '', ''), (572, 'L', 'Lachaux - Atelier du poisson soluble', NULL, '', '', 'FR', '', '', NULL, '', ''), (573, 'L', 'LAJEUNESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (574, 'L', 'LANGUES & MONDES - L\'ASIATHÈQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (575, 'L', 'DU LAQUET', NULL, '', '', 'FR', '', '', NULL, '', ''), (576, 'L', 'LARDANCHET', NULL, '', '', 'FR', '', '', NULL, '', ''), (577, 'L', 'LAROUSSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (578, 'L', 'LATTES', NULL, '', '', 'FR', '', '', NULL, '', ''), (579, 'L', 'LCX (La Compagnie X)', NULL, '', '', 'FR', '', '', NULL, '', ''), (580, 'L', 'LEBOVICI G.', NULL, '', '', 'FR', '', '', NULL, '', ''), (581, 'L', 'LECENE, OUDIN & Cie', NULL, '', '', 'FR', '', '', NULL, '', ''), (582, 'L', 'LECOINTE et POUGIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (583, 'L', 'LECTURES POUR TOUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (584, 'L', 'LEDRAPPIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (585, 'L', 'LEFRANCQ CLAUDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (586, 'L', 'LEGRAIN-BOURTEMBOURG', NULL, '', '', 'FR', '', '', NULL, '', ''), (587, 'L', 'LEIPZIG', NULL, '', '', 'FR', '', '', NULL, '', ''), (588, 'L', 'LEMÉAC', NULL, '', '', 'FR', '', '', NULL, '', ''), (589, 'L', 'LEON FAURE', NULL, '', '', 'FR', '', '', NULL, '', ''), (590, 'L', 'LETTRES DU MONDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (591, 'L', 'LETTRES MODERNES', NULL, '', '', 'FR', '', '', NULL, '', ''), (592, 'L', 'LEVAVASSEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (593, 'L', 'LEVY Frères', NULL, '', '', 'FR', '', '', NULL, '', ''), (594, 'L', 'LIANA LEVI', NULL, '', '', 'FR', '', '', NULL, '', ''), (595, 'L', 'LIBER MIRABILIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (596, 'L', 'LIBERTAIRES (éditions)', NULL, '', '', 'FR', '', '', NULL, '', ''), (597, 'L', 'LIBRAIRIE ACADEMIQUE PERRIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (598, 'L', 'LIBRAIRIE AILLEURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (599, 'L', 'LIBRAIRIE D\'ACTION CANADIENNE-FRANCAISE LIMITÉE', NULL, '', '', 'FR', '', '', NULL, '', ''), (600, 'L', 'LIBRAIRIE DE LA CITE', NULL, '', '', 'FR', '', '', NULL, '', ''), (601, 'L', 'LIBRAIRIE DE L\'AUTO', NULL, '', '', 'FR', '', '', NULL, '', ''), (602, 'L', 'LIBRAIRIE DES 3 MOUSQUETAIRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (603, 'L', 'LIBRAIRIE DES CHAMPS-ELYSEES', NULL, '', '', 'FR', '', '', NULL, '', ''), (604, 'L', 'LIBRAIRIE DES ROMANS CHOISIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (605, 'L', 'LIBRAIRIE GENERALE DE FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (606, 'L', 'LIBRAIRIE ILLUSTREE', NULL, '', '', 'FR', '', '', NULL, '', ''), (607, 'L', 'LIBRAIRIE MONDIALE', NULL, '', '', 'FR', '', '', NULL, '', ''), (608, 'L', 'LIBRAIRIE PARALLÈLES', NULL, '', '', 'FR', '', '', NULL, '', ''), (609, 'L', 'LIBRAIRIE SAMIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (610, 'L', 'LIBRAIRIE SEGUIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (611, 'L', 'LIBRE EXPRESSION', NULL, '', '', 'FR', '', '', NULL, '', ''), (612, 'L', 'LIBRIO', NULL, '', '', 'FR', '', '', NULL, '', ''), (613, 'L', 'LIDEC', NULL, '', '', 'FR', '', '', NULL, '', ''), (614, 'L', 'LIDIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (615, 'L', 'LION', NULL, '', '', 'FR', '', '', NULL, '', ''), (616, 'L', 'LIRE CANADA', NULL, '', '', 'FR', '', '', NULL, '', ''), (617, 'L', 'LIRE C\'EST PARTIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (618, 'L', 'LITEC', NULL, '', '', 'FR', '', '', NULL, '', ''), (619, 'L', 'LITO', NULL, '', '', 'FR', '', '', NULL, '', ''), (620, 'L', 'LIV\'EDITIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (621, 'L', 'LE LIVRE CONTEMPORAIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (622, 'L', 'LE LIVRE DE PARIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (623, 'L', 'LIVRE DE POCHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (624, 'L', 'LIVRE DE POCHE Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (625, 'L', 'LONDREYS', NULL, '', '', 'FR', '', '', NULL, '', ''), (626, 'L', 'Louise COURTEAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (627, 'L', 'LUCIE WILQUIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (628, 'L', 'LUDMILLA LEMAGNEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (629, 'L', 'LUDWIG KEPLER', NULL, '', '', 'FR', '', '', NULL, '', ''), (630, 'L', 'LUEURS MORTES', NULL, '', '', 'FR', '', '', NULL, '', ''), (631, 'L', 'LULU', '', '', '', 'UK', '', '', '', 'http://www.lulu.com', ''), (632, 'M', 'M6 ÉDITIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (633, 'M', 'MA', NULL, '', '', 'FR', '', '', NULL, '', ''), (634, 'M', 'MAGNARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (635, 'M', 'MAGNARD Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (636, 'M', 'MAIRIE DE CHALABRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (637, 'M', 'MAISON D\'AILLEURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (638, 'M', 'MAISON DE LA BONNE PRESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (639, 'M', 'MAISON DE LA CULTURE ANDRE MALRAUX', NULL, '', '', 'FR', '', '', NULL, '', ''), (640, 'M', 'MAISON DES ECRIVAINS', NULL, '', '', 'FR', '', '', NULL, '', ''), (641, 'M', 'MAISON DU LIVRE MODERNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (642, 'M', 'MAISON RHODANIENNE DE POESIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (643, 'M', 'MAISONNEUVE & LAROSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (644, 'M', 'MALFERE E.', NULL, '', '', 'FR', '', '', NULL, '', ''), (645, 'M', 'MALLET', NULL, '', '', 'FR', '', '', NULL, '', ''), (646, 'M', 'MALPERTUIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (647, 'M', 'MAME', NULL, '', '', 'FR', '', '', NULL, '', ''), (648, 'M', 'MANGO Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (649, 'M', 'MANITOBA / INTERVISTA', NULL, '', '', 'FR', '', '', NULL, '', ''), (650, 'M', 'LE MANUSCRIT', NULL, '', '', 'FR', '', '', NULL, '', ''), (651, 'M', 'MANYA', NULL, '', '', 'FR', '', '', NULL, '', ''), (652, 'M', 'MARABOUT - GERARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (653, 'M', 'MARECHAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (654, 'M', 'MAREN SELL', NULL, '', '', 'FR', '', '', NULL, '', ''), (655, 'M', 'LA MARGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (656, 'M', 'MARIE-FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (657, 'M', 'MARITIMES & D\'OUTRE-MER (Editions)', NULL, '', '', 'FR', '', '', NULL, '', ''), (658, 'M', 'MARPON & FLAMMARION', NULL, '', '', 'FR', '', '', NULL, '', ''), (659, 'M', 'LA MARTINGALE', NULL, '', '', 'FR', '', '', NULL, '', ''), (660, 'M', 'LA MARTINIERE', NULL, '', '', 'FR', '', '', NULL, '', ''), (661, 'M', 'LA MASCARA', NULL, '', '', 'FR', '', '', NULL, '', ''), (662, 'M', 'MASPERO', NULL, '', '', 'FR', '', '', NULL, '', ''), (663, 'M', 'LE MASQUE', NULL, '', '', 'FR', '', '', NULL, '', ''); INSERT INTO `bib_editeurs` (`idediteur`, `alphabet`, `nom_editeur`, `adresse`, `CP`, `ville`, `pays`, `tel`, `fax`, `courriel`, `siteweb`, `commentaire`) VALUES (664, 'M', 'MASQUE D\'OR', NULL, '', '', 'FR', '', '', NULL, '', ''), (665, 'M', 'MAURICE D\'HARTOY', NULL, '', '', 'FR', '', '', NULL, '', ''), (666, 'M', 'MAX MILO', NULL, '', '', 'FR', '', '', NULL, '', ''), (667, 'M', 'MAXI POCHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (668, 'M', 'MAXI-LIVRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (669, 'M', 'MAZARINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (670, 'M', 'MDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (671, 'M', 'MEDIA 1000', NULL, '', '', 'FR', '', '', NULL, '', ''), (672, 'M', 'MEDIASPAUL', NULL, '', '', 'FR', '', '', NULL, '', ''), (673, 'M', 'MEDICIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (674, 'M', 'MELIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (675, 'M', 'MEMOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (676, 'M', 'MENGES', NULL, '', '', 'FR', '', '', NULL, '', ''), (677, 'M', 'MERCIA DU LAC', NULL, '', '', 'FR', '', '', NULL, '', ''), (678, 'M', 'MERCURE DE FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (679, 'M', 'MERCURE UNIVERSEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (680, 'M', 'MERIMEE', NULL, '', '', 'FR', '', '', NULL, '', ''), (681, 'M', 'MESSIDOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (682, 'M', 'MÉTAILIÉ', NULL, '', '', 'FR', '', '', NULL, '', ''), (683, 'M', 'MÉTAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (684, 'M', 'MICHALON', NULL, '', '', 'FR', '', '', NULL, '', ''), (685, 'M', 'MICHEL DE L\'ORMERAIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (686, 'M', 'MICHEL HOUDIARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (687, 'M', 'MICHEL LAFON', NULL, '', '', 'FR', '', '', NULL, '', ''), (688, 'M', 'MICHEL VINCENT', NULL, '', '', 'FR', '', '', NULL, '', ''), (689, 'M', 'MICKEY', NULL, '', '', 'FR', '', '', NULL, '', ''), (690, 'M', 'MILAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (691, 'M', 'MILLE ET UNE NUITS', NULL, '', '', 'FR', '', '', NULL, '', ''), (692, 'M', 'MINISTÈRE DE LA CULTURE FRANCAISE (Belgique)', NULL, '', '', 'FR', '', '', NULL, '', ''), (693, 'M', 'MINUIT (Editions de)', NULL, '', '', 'FR', '', '', NULL, '', ''), (694, 'M', 'MIR - MOSCOU', NULL, '', '', 'FR', '', '', NULL, '', ''), (695, 'M', 'MNEMOS', NULL, '', '', 'FR', '', '', NULL, '', ''), (696, 'M', 'LE MONDE (journal)', NULL, '', '', 'FR', '', '', NULL, '', ''), (697, 'M', 'MONNET', NULL, '', '', 'FR', '', '', NULL, '', ''), (698, 'M', 'MONTSOURIS (éditions de)', NULL, '', '', 'FR', '', '', NULL, '', ''), (699, 'M', 'MORTAGNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (700, 'M', 'MOSCOU', NULL, '', '', 'FR', '', '', NULL, '', ''), (701, 'M', 'MOSQUITO', NULL, '', '', 'FR', '', '', NULL, '', ''), (702, 'M', 'MOTS-AGIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (703, 'M', 'LES MOUTONS ÉLECTRIQUES', NULL, '', '', 'FR', '', '', NULL, '', ''), (704, 'M', 'MOUVANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (705, 'M', 'MUSIER J.', NULL, '', '', 'FR', '', '', NULL, '', ''), (706, 'N', 'NAAMAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (707, 'N', 'NAGEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (708, 'N', 'NATHAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (709, 'N', 'NATURELLEMENT', NULL, '', '', 'FR', '', '', NULL, '', ''), (710, 'N', 'NAUTILUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (711, 'N', 'LE NAVIRE EN PLEINE VILLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (712, 'N', 'NECTAR', NULL, '', '', 'FR', '', '', NULL, '', ''), (713, 'N', 'NEF', NULL, '', '', 'FR', '', '', NULL, '', ''), (714, 'N', 'NEF DE PARIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (715, 'N', 'NENKI', NULL, '', '', 'FR', '', '', NULL, '', ''), (716, 'N', 'NESTIVEQNEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (717, 'N', 'NEW ERA', NULL, '', '', 'FR', '', '', NULL, '', ''), (718, 'N', 'NICOLAS', NULL, '', '', 'FR', '', '', NULL, '', ''), (719, 'N', 'NICOLAS PHILIPPE', NULL, '', '', 'FR', '', '', NULL, '', ''), (720, 'N', 'NiL', NULL, '', '', 'FR', '', '', NULL, '', ''), (721, 'N', 'NILSSON', NULL, '', '', 'FR', '', '', NULL, '', ''), (722, 'N', 'NOIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (723, 'N', 'NORMANT', NULL, '', '', 'FR', '', '', NULL, '', ''), (724, 'N', 'NOTA BENE', NULL, '', '', 'FR', '', '', NULL, '', ''), (725, 'N', 'NOUVEAU MONDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (726, 'N', 'NOUVELLE DONNE (Revue)', NULL, '', '', 'FR', '', '', NULL, '', ''), (727, 'N', 'LA NOUVELLE FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (728, 'N', 'LA NOUVELLE LIBRAIRIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (729, 'N', 'LA NOUVELLE REVUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (730, 'N', 'NOUVELLE REVUE CRITIQUE (NRC)', NULL, '', '', 'FR', '', '', NULL, '', ''), (731, 'N', 'LA NOUVELLE SOCIÉTÉ D\'ÉDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (732, 'N', 'NOUVELLES EDITIONS OSWALD (NEO)', NULL, '', '', 'FR', '', '', NULL, '', ''), (733, 'N', 'LES NOUVELLES PRESSES FRANCAISES', NULL, '', '', 'FR', '', '', NULL, '', ''), (734, 'N', 'NUIT BLANCHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (735, 'N', 'NUIT D\'AVRIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (736, 'O', 'O. LAURENS', NULL, '', '', 'FR', '', '', NULL, '', ''), (737, 'O', 'O.D.E.J.', NULL, '', '', 'FR', '', '', NULL, '', ''), (738, 'O', 'OCTOBRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (739, 'O', 'OCTOPUS France', NULL, '', '', 'FR', '', '', NULL, '', ''), (740, 'O', 'ODILE JACOB', NULL, '', '', 'FR', '', '', NULL, '', ''), (741, 'O', 'OEIL DU SPHINX', NULL, '', '', 'FR', '', '', NULL, '', ''), (742, 'O', 'OEUVRES DE B. de SAINT-PIERRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (743, 'O', 'LES OEUVRES LIBRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (744, 'O', 'OFFICE CENTRAL D\'EDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (745, 'O', 'OFFICE DE PUBLICITÉ', NULL, '', '', 'FR', '', '', NULL, '', ''), (746, 'O', 'L\'OFFICINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (747, 'O', 'OH! Editions', NULL, '', '', 'FR', '', '', NULL, '', ''), (748, 'O', 'OLIVIER (Editions de L\')', NULL, '', '', 'FR', '', '', NULL, '', ''), (749, 'O', 'Olivier ORBAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (750, 'O', 'OLLENDORFF', NULL, '', '', 'FR', '', '', NULL, '', ''), (751, 'O', 'OMBRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (752, 'O', 'OMNIBUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (753, 'O', 'ONLIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (754, 'O', 'ONYX', NULL, '', '', 'FR', '', '', NULL, '', ''), (755, 'O', 'OPTA', NULL, '', '', 'FR', '', '', NULL, '', ''), (756, 'O', 'ORBIT', NULL, '', '', 'FR', '', '', NULL, '', ''), (757, 'O', 'L\'ORCHESTRE FANTOMATIQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (758, 'O', 'ORIFLAM', NULL, '', '', 'FR', '', '', NULL, '', ''), (759, 'O', 'ORION Éditions et Communication', NULL, '', '', 'FR', '', '', NULL, '', ''), (760, 'O', 'ORIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (761, 'O', 'OSMONDES', NULL, '', '', 'FR', '', '', NULL, '', ''), (762, 'O', 'OUEST-France', NULL, '', '', 'FR', '', '', NULL, '', ''), (763, 'O', 'OUTRE-PART', NULL, '', '', 'FR', '', '', NULL, '', ''), (764, 'O', 'OXALIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (765, 'O', 'OXYMORE', NULL, '', '', 'FR', '', '', NULL, '', ''), (766, 'O', 'OZONE', NULL, '', '', 'FR', '', '', NULL, '', ''), (767, 'P', 'P. MONGIE aîné', NULL, '', '', 'FR', '', '', NULL, '', ''), (768, 'P', 'P.O.L.', NULL, '', '', 'FR', '', '', NULL, '', ''), (769, 'P', 'P.Y.A.F. (Productions Yves A. Frémion)', NULL, '', '', 'FR', '', '', NULL, '', ''), (770, 'P', 'LA PAGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (771, 'P', 'LA PAGE BLANCHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (772, 'P', 'PANAMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (773, 'P', 'PANFOULIA', NULL, '', '', 'FR', '', '', NULL, '', ''), (774, 'P', 'DU PANTHÉON', NULL, '', '', 'FR', '', '', NULL, '', ''), (775, 'P', 'PARCHEMINS & TRAVERSES', NULL, '', '', 'FR', '', '', NULL, '', ''), (776, 'P', 'PARFUM D\'ENCRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (777, 'P', 'DE PARIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (778, 'P', 'PARIS BIBLIOTHEQUES', NULL, '', '', 'FR', '', '', NULL, '', ''), (779, 'P', 'PARIS MEDITERRANEE', NULL, '', '', 'FR', '', '', NULL, '', ''), (780, 'P', 'PARIS-MATCH / PIERRE-CHARRON', NULL, '', '', 'FR', '', '', NULL, '', ''), (781, 'P', 'PASSAGE DU NORD-OUEST', NULL, '', '', 'FR', '', '', NULL, '', ''), (782, 'P', 'PASSAVENT', NULL, '', '', 'FR', '', '', NULL, '', ''), (783, 'P', 'LE PASSEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (784, 'P', 'PATRICE GRANET EDITEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (785, 'P', 'PATRICK SIRY', NULL, '', '', 'FR', '', '', NULL, '', ''), (786, 'P', 'PAUL HARTMANN Editeur', NULL, '', '', 'FR', '', '', NULL, '', ''), (787, 'P', 'Paul VERON-FRAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (788, 'P', 'PAULIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (789, 'P', 'PAULINES', NULL, '', '', 'FR', '', '', NULL, '', ''), (790, 'P', 'PAUVERT', NULL, '', '', 'FR', '', '', NULL, '', ''), (791, 'P', 'PAVIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (792, 'P', 'PAVOIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (793, 'P', 'PAYOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (794, 'P', 'PELLETAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (795, 'P', 'DU PENDRAGON', NULL, '', '', 'FR', '', '', NULL, '', ''), (796, 'P', 'LA PENSÉE MODERNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (797, 'P', 'LA PENSÉE UNIVERSELLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (798, 'P', 'PÈRE CASTOR - FLAMMARION', NULL, '', '', 'FR', '', '', NULL, '', ''), (799, 'P', 'PERRET-GENTIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (800, 'P', 'PETER STAV-NGER - STOCKHOLM', NULL, '', '', 'FR', '', '', NULL, '', ''), (801, 'P', 'PÉTRELLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (802, 'P', 'PHÉBUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (803, 'P', 'PHÉNIX MICROEDITIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (804, 'P', 'PHILIPPE LEBAUD', NULL, '', '', 'FR', '', '', NULL, '', ''), (805, 'P', 'PHILIPPE OLIVIER (Editions)', NULL, '', '', 'FR', '', '', NULL, '', ''), (806, 'P', 'PHILIPPE PICQUIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (807, 'P', 'PIERRE FRADIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (808, 'P', 'PIERRE HORAY', NULL, '', '', 'FR', '', '', NULL, '', ''), (809, 'P', 'PIERRE LAFITTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (810, 'P', 'PIERRE TISSEYRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (811, 'P', 'PIOLLEC JEAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (812, 'P', 'PLACE AUX SENS (Revue)', NULL, '', '', 'FR', '', '', NULL, '', ''), (813, 'P', 'PLANETE', NULL, '', '', 'FR', '', '', NULL, '', ''), (814, 'P', 'PLASMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (815, 'P', 'PLON', NULL, '', '', 'FR', '', '', NULL, '', ''), (816, 'P', 'PLON-NOURRIT et Cie.', NULL, '', '', 'FR', '', '', NULL, '', ''), (817, 'P', 'LA PLUME', NULL, '', '', 'FR', '', '', NULL, '', ''), (818, 'P', 'POCKET', NULL, '', '', 'FR', '', '', NULL, '', ''), (819, 'P', 'POCKET Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (820, 'P', 'POINT DE FUITE', NULL, '', '', 'FR', '', '', NULL, '', ''), (821, 'P', 'POLMOSS', NULL, '', '', 'FR', '', '', NULL, '', ''), (822, 'P', 'LE POMMIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (823, 'P', 'PONTE MIRONE', NULL, '', '', 'FR', '', '', NULL, '', ''), (824, 'P', 'PORTIQUES (Editions des)', NULL, '', '', 'FR', '', '', NULL, '', ''), (825, 'P', 'LE PORTULAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (826, 'P', 'LE PRE AUX CLERCS', NULL, '', '', 'FR', '', '', NULL, '', ''), (827, 'P', 'LE PREAMBULE', NULL, '', '', 'FR', '', '', NULL, '', ''), (828, 'P', 'PRESSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (829, 'P', 'PRESSES DE LA CITE', NULL, '', '', 'FR', '', '', NULL, '', ''), (830, 'P', 'PRESSES DE LA RENAISSANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (831, 'P', 'PUL (Presse Universitaire de Laval, Canada)', NULL, '', '', 'FR', '', '', NULL, '', ''), (832, 'P', 'PUP (Presses de l\'Université de Paris-Sorbonne)', NULL, '', '', 'FR', '', '', NULL, '', ''), (833, 'P', 'PRESSES DE L\'UNIVERSITÉ DU QUÉBEC', NULL, '', '', 'FR', '', '', NULL, '', ''), (834, 'P', 'PRESSES D\'OUTREMER', NULL, '', '', 'FR', '', '', NULL, '', ''), (835, 'P', 'PRESSES DU CHATELET', NULL, '', '', 'FR', '', '', NULL, '', ''), (836, 'P', 'PRESSES DU MIDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (837, 'P', 'LES PRESSES DU TEMPS', NULL, '', '', 'FR', '', '', NULL, '', ''), (838, 'P', 'PRESSES INTERNATIONALES', NULL, '', '', 'FR', '', '', NULL, '', ''), (839, 'P', 'PUF (Presses universitaires de France)', '6, avenue Reille ', '', 'Paris Cedex 14', 'FR', '01.58.10.31.00', '', '', 'http://www.puf.com/', ''), (840, 'P', 'P.U.L.I.M (Presses Universitaires de Limoges et du Limousin)', '39 C, rue Camille Guérin', '87031', 'LIMOGES', 'FR', '05 55 01 95 35', '', NULL, 'http://www.pulim.unilim.fr/', ''), (841, 'P', 'PUN (Presses Universitaires de Nancy)', '42- 44 avenue de la Libération - BP 3347 ', '54014', 'Nancy Cedex', 'FR', '03 54 50 46 90', '', 'pun@univ-nancy2.fr', 'http://www.univ-nancy2.fr/pun/', ''), (842, 'P', 'PRESSES UNIVERSITAIRES DE NICE-SOPHIA ANTIPOLIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (843, 'P', 'PUR (Presses Universitaires de Rennes)', 'Presses Universitaires de Rennes\r\nCampus de La Harpe\r\n2, rue du doyen Denis-Leroy', '35044', 'Rennes Cedex', 'FR', '02 99 14 14 01', '', 'pur@univ-rennes2.fr', 'http://www.pur-editions.fr/', ''), (844, 'P', 'PRESSES UNIVERSITAIRES DE VALENCIENNES', NULL, '', '', 'FR', '', '', NULL, '', ''), (845, 'P', 'PUR (Presses Universitaires du Mirail)', 'Université de Toulouse-Le Mirail\r\n5, allées Antonio Machado', '31058', 'Toulouse cedex 9', 'FR', '03 20 41 66 95', '', NULL, 'http://w3.pum.univ-tlse2.fr/', ''), (846, 'P', 'LE PRINCE DU MAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (847, 'P', 'PRODIFU', NULL, '', '', 'FR', '', '', NULL, '', ''), (848, 'P', 'PROGRÈS - MOSCOU (éditions du)', NULL, '', '', 'FR', '', '', NULL, '', ''), (849, 'P', 'LE PROMENEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (850, 'P', 'LA PROUE / TETE DE FEUILLES', NULL, '', '', 'FR', '', '', NULL, '', ''), (851, 'P', 'PUBLIBOOK', NULL, '', '', 'FR', '', '', NULL, '', ''), (852, 'P', 'PUP (Publications de l\'Université de Provence)', NULL, '', '', 'FR', '', '', NULL, '', ''), (853, 'P', 'PUBLICATIONS D\'EXTRAORDINAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (854, 'P', 'PUBLICNESS / CREEPY', NULL, '', '', 'FR', '', '', NULL, '', ''), (855, 'P', 'PUITS-PELU', NULL, '', '', 'FR', '', '', NULL, '', ''), (856, 'P', 'PULIM', NULL, '', '', 'FR', '', '', NULL, '', ''), (857, 'P', 'PYGMALION', NULL, '', '', 'FR', '', '', NULL, '', ''), (858, 'P', 'PYRÉMONDE / PRINCI NEGUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (859, 'P', 'LE PYTHAGORE', NULL, '', '', 'FR', '', '', NULL, '', ''), (860, 'P', 'LE PYTHON', NULL, '', '', 'FR', '', '', NULL, '', ''), (861, 'Q', 'QUAI VOLTAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (862, 'Q', 'QUANTIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (863, 'Q', 'QUATRE-VENTS', NULL, '', '', 'FR', '', '', NULL, '', ''), (864, 'Q', 'QUATRIEME ZONE', NULL, '', '', 'FR', '', '', NULL, '', ''), (865, 'Q', 'QUEBEC / AMERIQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (866, 'Q', 'QUERELLE LOUIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (867, 'Q', 'QUID NOVI ?', NULL, '', '', 'FR', '', '', NULL, '', ''), (868, 'Q', 'QUINTESSENCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (869, 'Q', 'LA QUINZAINE LITTERAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (870, 'Q', 'QUINZE', NULL, '', '', 'FR', '', '', NULL, '', ''), (871, 'R', 'R. SIMON', NULL, '', '', 'FR', '', '', NULL, '', ''), (872, 'R', 'R.-A. CORRÊA', NULL, '', '', 'FR', '', '', NULL, '', ''), (873, 'R', 'RADOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (874, 'R', 'RADOUGA', NULL, '', '', 'FR', '', '', NULL, '', ''), (875, 'R', 'RAGEOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (876, 'R', 'RAMSAY', NULL, '', '', 'FR', '', '', NULL, '', ''), (877, 'R', 'RAOUL SOLAR', NULL, '', '', 'FR', '', '', NULL, '', ''), (878, 'R', 'RBA FABBRI', NULL, '', '', 'FR', '', '', NULL, '', ''), (879, 'R', 'READER\'S DIGEST', NULL, '', '', 'FR', '', '', NULL, '', ''), (880, 'R', 'RECTO VERSO', NULL, '', '', 'FR', '', '', NULL, '', ''), (881, 'R', 'REFLETS D\'AILLEURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (882, 'R', 'REGAIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (883, 'R', 'LA REINE NOIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (884, 'R', 'RENAISSANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (885, 'R', 'LA RENAISSANCE DU LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (886, 'R', 'RENARD JEAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (887, 'R', 'RENCONTRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (888, 'R', 'RENE KIEFFER', NULL, '', '', 'FR', '', '', NULL, '', ''), (889, 'R', 'RÉPLIQUES', NULL, '', '', 'FR', '', '', NULL, '', ''), (890, 'R', 'RETZ', NULL, '', '', 'FR', '', '', NULL, '', ''), (891, 'R', 'RETZ - RICCI', NULL, '', '', 'FR', '', '', NULL, '', ''), (892, 'R', 'LA REVUE BLANCHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (893, 'R', 'LA REVUE DE DEMAIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (894, 'R', 'REX', NULL, '', '', 'FR', '', '', NULL, '', ''), (895, 'R', 'RHONE', NULL, '', '', 'FR', '', '', NULL, '', ''), (896, 'R', 'RIFFLE (éditions du)', NULL, '', '', 'FR', '', '', NULL, '', ''), (897, 'R', 'RIVAGES', NULL, '', '', 'FR', '', '', NULL, '', ''), (898, 'R', 'RIVE-GAUCHE PRODUCTIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (899, 'R', 'ROBERT DAVIES', NULL, '', '', 'FR', '', '', NULL, '', ''), (900, 'R', 'ROBERT LAFFONT', NULL, '', '', 'FR', '', '', NULL, '', ''), (901, 'R', 'ROBERT MARIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (902, 'R', 'ROBERT SOULIÈRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (903, 'R', 'ROCHER', NULL, '', '', 'FR', '', '', NULL, '', ''), (904, 'R', 'ROCHER jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (905, 'R', 'RODOPI', NULL, '', '', 'FR', '', '', NULL, '', ''), (906, 'R', 'LE ROMAN NOUVEAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (907, 'R', 'ROMBALDI', NULL, '', '', 'FR', '', '', NULL, '', ''), (908, 'R', 'DU ROSEAU', NULL, '', '', 'FR', '', '', NULL, '', ''), (909, 'R', 'ROUFF', NULL, '', '', 'FR', '', '', NULL, '', ''), (910, 'R', 'ROUGE ET OR', NULL, '', '', 'FR', '', '', NULL, '', ''), (911, 'R', 'ROUGERIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (912, 'R', 'RUMEUR DES AGES', NULL, '', '', 'FR', '', '', NULL, '', ''), (913, 'S', 'S.E.G. - Editions du Diadème', NULL, '', '', 'FR', '', '', NULL, '', ''), (914, 'S', 'S.E.P.E.', NULL, '', '', 'FR', '', '', NULL, '', ''), (915, 'S', 'S.E.P.T. (Société D\'Édition et de Publicité Technique)', NULL, '', '', 'FR', '', '', NULL, '', ''), (916, 'S', 'S.F.E.P.I. (Société Française D\'Éditions et de Publications Illustrées)', NULL, '', '', 'FR', '', '', NULL, '', ''), (917, 'S', 'S.I.P.E. / SENO', NULL, '', '', 'FR', '', '', NULL, '', ''), (918, 'S', 'S.L.N.D.', NULL, '', '', 'FR', '', '', NULL, '', ''), (919, 'S', 'SAGEDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (920, 'S', 'SAGITTAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (921, 'S', 'SAINT-CLAIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (922, 'S', 'SALVATOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (923, 'S', 'SATELLITE', NULL, '', '', 'FR', '', '', NULL, '', ''), (924, 'S', 'DE SAVOIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (925, 'S', 'SCALI', NULL, '', '', 'FR', '', '', NULL, '', ''), (926, 'S', 'SCIENCE & VIE', NULL, '', '', 'FR', '', '', NULL, '', ''), (927, 'S', 'LA SCIENCE ILLUSTREE', NULL, '', '', 'FR', '', '', NULL, '', ''), (928, 'S', 'SCIENCES & VOYAGES', NULL, '', '', 'FR', '', '', NULL, '', ''), (929, 'S', 'SCI-FI CLUB (Nouméa)', NULL, '', '', 'FR', '', '', NULL, '', ''), (930, 'S', 'SCORPION', NULL, '', '', 'FR', '', '', NULL, '', ''), (931, 'S', 'SCRIPTA', NULL, '', '', 'FR', '', '', NULL, '', ''), (932, 'S', 'SEDIMO', NULL, '', '', 'FR', '', '', NULL, '', ''), (933, 'S', 'SEDRAP', NULL, '', '', 'FR', '', '', NULL, '', ''), (934, 'S', 'SEGHERS', NULL, '', '', 'FR', '', '', NULL, '', ''), (935, 'S', 'SEGHERS / LAFFONT', NULL, '', '', 'FR', '', '', NULL, '', ''), (936, 'S', 'SEGUIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (937, 'S', 'SEKHMET', NULL, '', '', 'FR', '', '', NULL, '', ''), (938, 'S', 'SELECT', NULL, '', '', 'FR', '', '', NULL, '', ''), (939, 'S', 'SELF', NULL, '', '', 'FR', '', '', NULL, '', ''), (940, 'S', 'SENS & TONKA', NULL, '', '', 'FR', '', '', NULL, '', ''), (941, 'S', 'SEPTIMUS', NULL, '', '', 'FR', '', '', NULL, '', ''), (942, 'S', 'SEQUENCES', NULL, '', '', 'FR', '', '', NULL, '', ''), (943, 'S', 'SERPENT A PLUMES', NULL, '', '', 'FR', '', '', NULL, '', ''), (944, 'S', 'SET', NULL, '', '', 'FR', '', '', NULL, '', ''), (945, 'S', 'SEUIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (946, 'S', 'SEUIL / CHRONICLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (947, 'S', 'SEUIL / MÉTAILIÉ', NULL, '', '', 'FR', '', '', NULL, '', ''), (948, 'S', 'SEUIL Jeunesse', NULL, '', '', 'FR', '', '', NULL, '', ''), (949, 'S', 'LA SEVE', NULL, '', '', 'FR', '', '', NULL, '', ''), (950, 'S', 'DU SIÈCLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (951, 'S', 'LE SIGNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (952, 'S', 'LE SIGNOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (953, 'S', 'LE SIGNOR', NULL, '', '', 'FR', '', '', NULL, '', ''), (954, 'S', 'LE SILLAGE', NULL, '', '', 'FR', '', '', NULL, '', ''), (955, 'S', 'SILOE', NULL, '', '', 'FR', '', '', NULL, '', ''), (956, 'S', 'SILVESTRI', NULL, '', '', 'FR', '', '', NULL, '', ''), (957, 'S', 'SIMON KRA', NULL, '', '', 'FR', '', '', NULL, '', ''), (958, 'S', 'DU SIRAC', NULL, '', '', 'FR', '', '', NULL, '', ''), (959, 'S', 'SIRENE (B. CENDRARS)', NULL, '', '', 'FR', '', '', NULL, '', ''), (960, 'S', 'LA SIRENE', NULL, '', '', 'FR', '', '', NULL, '', ''), (961, 'S', 'LES SIX BRUMES', NULL, '', '', 'FR', '', '', NULL, '', ''), (962, 'S', 'SKANDIA', NULL, '', '', 'FR', '', '', NULL, '', ''), (963, 'S', 'SLATKINE', NULL, '', '', 'FR', '', '', NULL, '', ''), (964, 'S', 'SNAF', NULL, '', '', 'FR', '', '', NULL, '', ''), (965, 'S', 'SNOECK', 'Noordstraat 30', 'B-9000', 'Gent', 'BE', '+32(0)9 267 85 30', '+32(0)9 267 85 39', NULL, 'www.snoeckpublishers.be', ''), (966, 'S', 'SOCIALES (ÉDITIONS)', NULL, '', '', 'FR', '', '', NULL, '', ''), (967, 'S', 'SOCIÉTÉ D\'ÉDITION ET DE DIFFUSION LITTÉRAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (968, 'S', 'SOCIÉTÉ D\'ÉDITIONS GÉNÉRALES', NULL, '', '', 'FR', '', '', NULL, '', ''), (969, 'S', 'SOCIÉTÉ DES ÉCRIVAINS', NULL, '', '', 'FR', '', '', NULL, '', ''), (970, 'S', 'SOCIÉTÉ FRANÇAISE D\'ÉDITIONS LITTÉRAIRES ET TECHNIQUES', NULL, '', '', 'FR', '', '', NULL, '', ''), (971, 'S', 'SOCIÉTÉ JULES VERNE', NULL, '', '', 'FR', '', '', NULL, '', ''), (972, 'S', 'SOCIÉTÉ MUTUELLE D\'ÉDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (973, 'S', 'SOCIÉTÉ PARISIENNE DE LIBRAIRIE ET D\'ÉDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (974, 'S', 'LE SOIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (975, 'S', 'SOL\'AIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (976, 'S', 'SOLARIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (977, 'S', 'SOLEIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (978, 'S', 'LA SOLIDARITÉ PAR LE LIVRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (979, 'S', 'DU SORBIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (980, 'S', 'SOUVERAIN H.', NULL, '', '', 'FR', '', '', NULL, '', ''), (981, 'S', 'SPES', NULL, '', '', 'FR', '', '', NULL, '', ''), (982, 'S', 'ST. MARTIN\'S PRESS', NULL, '', '', 'FR', '', '', NULL, '', ''), (983, 'S', 'STAEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (984, 'S', 'STANKE', NULL, '', '', 'FR', '', '', NULL, '', ''), (985, 'S', 'STAR', NULL, '', '', 'FR', '', '', NULL, '', ''), (986, 'S', 'STOCK', NULL, '', '', 'FR', '', '', NULL, '', ''), (987, 'S', 'STOCK-2', NULL, '', '', 'FR', '', '', NULL, '', ''), (988, 'S', 'STUDIO DU FUTUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (989, 'S', 'SULLIVAN LORD (auteur-éditeur)', NULL, '', '', 'FR', '', '', NULL, '', ''), (990, 'S', 'SULLIVER', NULL, '', '', 'FR', '', '', NULL, '', ''), (991, 'S', 'SYBILLE MARCHETTO', NULL, '', '', 'FR', '', '', NULL, '', ''), (992, 'S', 'LE SYCOMORE', NULL, '', '', 'FR', '', '', NULL, '', ''), (993, 'S', 'SYLLEPSE', NULL, '', '', 'FR', '', '', NULL, '', ''), (994, 'S', 'Sylvain HARVEY', NULL, '', '', 'FR', '', '', NULL, '', ''), (995, 'S', 'SYROS', NULL, '', '', 'FR', '', '', NULL, '', ''), (996, 'T', 'LA TABLE RONDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (997, 'T', 'TALLANDIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (998, 'T', 'TALLEYRAND', NULL, '', '', 'FR', '', '', NULL, '', ''), (999, 'T', 'TALUS D\'APPROCHE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1000, 'T', 'DU TAMBOURIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (1001, 'T', 'TASCHEN', NULL, '', '', 'FR', '', '', NULL, '', ''), (1002, 'T', 'TCHOU', NULL, '', '', 'FR', '', '', NULL, '', ''), (1003, 'T', 'TELEMAQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1004, 'T', 'TÉLÉRAMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (1005, 'E', 'EDITIONS DU TEMPS', '27, rue des Cloÿs', '75018', 'Paris', 'FR', '', '', NULL, '', ''), (1006, 'T', 'TEMPS ACTUELS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1007, 'T', 'LE TEMPS CIRCULAIRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1008, 'T', 'TEMPS FUTURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1009, 'T', 'TEMPS PRÉSENT (éditions du)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1010, 'T', 'TERRAIN VAGUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1011, 'T', 'TERRE DE BRUME', NULL, '', '', 'FR', '', '', NULL, '', ''), (1012, 'T', 'TEXTUEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (1013, 'T', 'THÉLÈS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1014, 'T', 'THIERRY MAGNIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (1015, 'T', 'THOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (1016, 'T', 'TIMÉE-ÉDITIONS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1017, 'T', 'TIME-LIFE BOOKS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1018, 'T', 'LA TOURELLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1019, 'T', 'TOURET', NULL, '', '', 'FR', '', '', NULL, '', ''), (1020, 'T', 'TOURNESOL', NULL, '', '', 'FR', '', '', NULL, '', ''), (1021, 'T', 'TOURNON / LE MIEL DE LA PIERRE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1022, 'T', 'TRAJECTOIRES', NULL, '', '', 'FR', '', '', NULL, '', ''), (1023, 'T', 'TRANSBORDEURS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1024, 'T', 'TREMPLIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (1025, 'T', 'TREVISE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1026, 'T', 'LE TRIANGLE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1027, 'T', 'TRIOMPHE (éditions du)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1028, 'T', 'TRIPTYQUE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1029, 'T', 'TRISTRAM', NULL, '', '', 'FR', '', '', NULL, '', ''), (1030, 'T', 'LE TROTTEUR', NULL, '', '', 'FR', '', '', NULL, '', ''), (1031, 'T', 'TROUBADOUR (éditions du)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1032, 'T', 'TSURU', NULL, '', '', 'FR', '', '', NULL, '', ''), (1033, 'U', 'UGE (Union Générale D\'Éditions)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1034, 'U', 'UNION CENTRALE DES ARTS DECORATIFS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1035, 'U', 'UNION DES BIBLIOPHILES DE FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1036, 'U', 'UNIVERSITÉ DE LAUSANNE - Revue ARCHIPEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (1037, 'U', 'UNIVERSITÉ PARIS 7 - DENIS DIDEROT', NULL, '', '', 'FR', '', '', NULL, '', ''), (1038, 'U', 'UNIVERSITE PAUL VALERY, MONTPELLIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (1039, 'U', 'UPNT (association)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1040, 'V', 'VALBERGHE E.', NULL, '', '', 'FR', '', '', NULL, '', ''), (1041, 'V', 'VALMY', NULL, '', '', 'FR', '', '', NULL, '', ''), (1042, 'V', 'VALPRESS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1043, 'V', 'VANDEVELDE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1044, 'V', 'VAUGIRARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (1045, 'V', 'VAUVENARGUES', NULL, '', '', 'FR', '', '', NULL, '', ''), (1046, 'V', 'LE VENT NOIR', NULL, '', '', 'FR', '', '', NULL, '', ''), (1047, 'V', 'VENTILLARD', NULL, '', '', 'FR', '', '', NULL, '', ''), (1048, 'V', 'VENTS D\'OUEST', NULL, '', '', 'FR', '', '', NULL, '', ''), (1049, 'V', 'VENTS D\'OUEST (Canada)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1050, 'V', 'VERBE (Editions du)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1051, 'V', 'VERMILLON', NULL, '', '', 'FR', '', '', NULL, '', ''), (1052, 'V', 'VERSOIX / FAMOT', NULL, '', '', 'FR', '', '', NULL, '', ''), (1053, 'V', 'VERSOIX puis VERNOY', NULL, '', '', 'FR', '', '', NULL, '', ''), (1054, 'V', 'VERTICALES', NULL, '', '', 'FR', '', '', NULL, '', ''), (1055, 'V', 'VIA MEDIAS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1056, 'V', 'VIA VALERIANO', NULL, '', '', 'FR', '', '', NULL, '', ''), (1057, 'V', 'VIE ILLUSTREE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1058, 'V', 'VIEUX COLOMBIER', NULL, '', '', 'FR', '', '', NULL, '', ''), (1059, 'V', 'VILLAGE MONDIAL', NULL, '', '', 'FR', '', '', NULL, '', ''), (1060, 'V', 'VILLE DE PARIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1061, 'V', 'VINCENT MICHEL', NULL, '', '', 'FR', '', '', NULL, '', ''), (1062, 'V', 'VITALIS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1063, 'V', 'VIVEZ SOLEIL', NULL, '', '', 'FR', '', '', NULL, '', ''), (1064, 'V', 'VIVIANE HAMY', NULL, '', '', 'FR', '', '', NULL, '', ''), (1065, 'V', 'VLB', NULL, '', '', 'FR', '', '', NULL, '', ''), (1066, 'V', 'LA VOLTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1067, 'V', 'VOUTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1068, 'V', 'VRIN', NULL, '', '', 'FR', '', '', NULL, '', ''), (1069, 'V', 'VUIBERT', NULL, '', '', 'FR', '', '', NULL, '', ''), (1070, 'W', 'WALTER BECKERS', NULL, '', '', 'FR', '', '', NULL, '', ''), (1071, 'W', 'WHITMAN FRANCE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1072, 'W', 'WITTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1073, 'X', 'XO Editions', NULL, '', '', 'FR', '', '', NULL, '', ''), (1074, 'X', 'XYZ éditeur', NULL, '', '', 'FR', '', '', NULL, '', ''), (1075, 'Y', 'YELLOW NOW', NULL, '', '', 'FR', '', '', NULL, '', ''), (1076, 'Y', 'YOANN BERJAUD (autoédition)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1077, 'Y', 'LE YUKULUTE', NULL, '', '', 'FR', '', '', NULL, '', ''), (1078, 'Y', 'YUNNAN', NULL, '', '', 'FR', '', '', NULL, '', ''), (1079, 'Y', 'YVELINÉDITION', NULL, '', '', 'FR', '', '', NULL, '', ''), (1080, 'Y', 'YVES PEHUET (auto-édition)', NULL, '', '', 'FR', '', '', NULL, '', ''), (1081, 'Z', 'ZANPANO', NULL, '', '', 'FR', '', '', NULL, '', ''), (1082, 'Z', 'ZIMMERMANN', NULL, '', '', 'FR', '', '', NULL, '', ''), (1083, 'Z', 'ZULMA', NULL, '', '', 'FR', '', '', NULL, '', ''), (1084, 'A', 'Abbeville', '', '', '', 'US', '', '', '', '', ''), (1085, 'A', 'Ae2cg', '', '', '', 'FR', '', '', '', '', ''), (1086, 'A', 'Agalma / Seuil', '', '', '', 'FR', '', '', '', '', ''), (1087, 'A', 'ALLIA', '', '', '', 'FR', '', '', '', 'http://www.editions-allia.com/', ''), (1088, 'A', 'Amphora', '', '', '', 'FR', '', '', '', '', ''), (1089, 'A', 'Ariane', '', '', '', 'FR', '', '', '', '', ''), (1090, 'A', 'Ashford', '', '', '', 'FR', '', '', '', '', ''), (1091, 'A', 'Atelier de la ville de Marseille', '', '', '', 'FR', '', '', '', '', ''), (1092, 'B', 'Babel', '', '', '', 'FR', '', '', '', '', ''), (1093, 'B', 'BBF ENSSIB', '', '', '', 'FR', '', '', '', '', ''), (1094, 'B', 'ADAM BIRO', '', '', '', 'FR', '', '', '', '', ''), (1095, 'B', 'Blanche', '', '', '', 'FR', '', '', '', '', ''), (1096, 'B', 'BNF Flammarion', '', '', '', 'FR', '', '', '', '', ''), (1097, 'B', 'Bruguera', '', '', '', 'FR', '', '', '', '', ''), (1098, 'B', 'BOURGEOIS Christian', '', '', '', 'FR', '', '', '', '', ''), (1099, 'C', 'CILVie', '', '', '', 'FR', '', '', '', '', ''), (1100, 'C', 'Campus Press', '', '', '', 'FR', '', '', '', '', ''), (1101, 'C', 'Campus Press Macromedia Press', '', '', '', 'FR', '', '', '', '', ''), (1102, 'C', 'Campus Press Pearson Education', '', '', '', 'FR', '', '', '', '', ''), (1103, 'C', 'CAPC Musée d\'art contemporain de Bordeaux', '', '', '', 'FR', '', '', '', '', ''), (1104, 'C', 'CARRE', '', '', '', 'FR', '', '', '', '', ''), (1105, 'C', 'CHAMBON Jacqueline', '', '', '', 'FR', '', '', '', '', ''), (1106, 'C', 'CRDP', '', '', '', 'FR', '', '', '', '', ''), (1107, 'C', 'CHAMP VALLON', '', '', '', 'FR', '', '', '', '', ''), (1108, 'C', 'CHENE HACHETTE', '', '', '', 'FR', '', '', '', '', ''), (1109, 'C', 'CHRONICLE BOOKS', '', '', '', 'US', '', '', '', 'http://www.chroniclebooks.com/', ''), (1110, 'C', 'CNDP Armand Colin', '', '', '', 'FR', '', '', '', '', ''), (1111, 'C', 'CNED', '', '', '', 'FR', '', '', '', '', ''), (1112, 'C', 'CNED Dunod', '', '', '', 'FR', '', '', '', '', ''), (1113, 'C', 'CNED La documentation française', '', '', '', 'FR', '', '', '', '', ''), (1114, 'C', 'CNRS / VRIN', '', '', '', 'FR', '', '', '', '', ''), (1115, 'C', 'CNRS éditions', '', '', '', 'FR', '', '', '', '', ''), (1116, 'C', 'Cyprès Ecole d\'Aix en Provence', '', '', '', 'FR', '', '', '', '', ''), (1117, 'C', 'Delachaux & Niestlé', '', '', '', 'FR', '', '', '', '', ''), (1118, 'C', 'CARNOT', '', '', '', 'FR', '', '', '', '', ''), (1119, 'D', 'LA DECOUVERTE', '', '', '', 'FR', '', '', '', '', ''), (1120, 'D', 'DE VECCHI', '', '', '', 'FR', '', '', '', '', ''), (1121, 'D', 'DESSAIN ET TOLRA', '', '', '', 'FR', '', '', '', '', ''), (1122, 'E', 'ECL & ABF', '', '', '', 'FR', '', '', '', '', ''), (1123, 'E', 'Ecole Polytechnique', '', '', '', 'FR', '', '', '', '', ''), (1124, 'E', 'Ecomusée de la Roudoule', '', '', '', 'FR', '', '', '', '', ''), (1125, 'E', 'ENI', '', '', '', 'FR', '', '', '', '', ''), (1126, 'E', 'ENSB-A', '', '', '', 'FR', '', '', '', '', ''), (1127, 'E', 'EYROLLES', '', '', '', 'FR', '', '', '', '', ''), (1128, 'F', 'FIRST EDITION', '', '', '', 'FR', '', '', '', '', ''), (1129, 'F', 'FIRST INTERACTIVE', '', '', '', 'FR', '', '', '', '', ''), (1130, 'C', 'Claire Lumiere', '5 avenue Camille Pelletan', '13760', 'Saint-Cannat', 'FR', '', '', '', 'https://www.clairelumiere.com/', ''), (1131, 'F', 'FONDATION MAEGHT', '', '', '', 'FR', '', '', '', '', ''), (1132, 'F', 'FOUCHER', '', '', '', 'FR', '', '', '', '', ''), (1133, 'F', 'FRIENDSOFED', '', '', '', 'FR', '', '', '', '', ''), (1134, 'F', 'FRIENDSOFED DUNOD', '', '', '', 'FR', '', '', '', '', ''), (1135, 'M', 'MONTAIGNE Galerie', '', '', '', 'FR', '', '', '', '', ''), (1136, 'G', 'GANGE', '', '', '', 'FR', '', '', '', '', ''), (1137, 'L', 'Editions La Pépinière', '242 Bd Voltaire', '75011', 'Paris', 'FR', '', '', '', 'https://www.editions-la-pepiniere.com/', ''), (1138, 'H', 'HAZAN', '', '', '', 'FR', '', '', '', '', ''), (1139, 'I', 'IBISCUS', '', '', '', 'FR', '', '', '', '', ''), (1140, 'I', 'IMPRIMERIE NATIONALE', '', '', '', 'FR', '', '', '', '', ''), (1141, 'D', 'DAMASE Jacques', '', '', '', 'FR', '', '', '', '', ''), (1142, 'J', 'JEU DE PAUME', '', '', '', 'FR', '', '', '', '', ''), (1143, 'L', 'LE COURRIER DU LIVRE', '', '', '', 'FR', '', '', '', '', ''), (1144, 'N', 'LE NYCTALOPE', '', '', '', 'FR', '', '', '', '', ''), (1145, 'L', 'LES EDITIONS D\'ORGANISATION', '', '', '', 'FR', '', '', '', '', ''), (1146, 'L', 'LES EMPECHEURS DE TOURNER EN ROND', '', '', '', 'FR', '', '', '', '', ''), (1147, 'P', 'LES PRESSES DU REEL', '', '', '', 'FR', '', '', '', '', ''), (1148, 'L', 'LIANA LEVY', '', '', '', 'FR', '', '', '', '', ''), (1149, 'E', 'L\'ECHOPPE', '', '', '', 'FR', '', '', '', '', ''), (1150, 'E', 'L\'ETUDIANT', '', '', '', 'FR', '', '', '', '', ''), (1151, 'M', 'MA EDITION', '', '', '', 'FR', '', '', '', '', ''), (1152, 'M', 'MACROMEDIA PRESS', '', '', '', 'FR', '', '', '', '', ''), (1153, 'M', 'MACULA', '', '', '', 'FR', '', '', '', '', ''), (1154, 'M', 'MALOINE', '', '', '', 'FR', '', '', '', '', ''), (1155, 'M', 'MACMILAN', '', '', '', 'FR', '', '', '', '', ''), (1156, 'M', 'MAMAC', '', '', '', 'FR', '', '', '', '', ''), (1157, 'M', 'MARDAGA', '', '', '', 'FR', '', '', '', '', ''), (1158, 'M', 'MARQUAND', '', '', '', 'FR', '', '', '', '', ''), (1159, 'M', 'MEN', '', '', '', 'FR', '', '', '', '', ''), (1160, 'M', 'MICHEL DE MAULE', '', '', '', 'FR', '', '', '', '', ''), (1161, 'M', 'MICRO APPLICATION', '', '', '', 'FR', '', '', '', '', ''), (1162, 'M', 'MICROSOFT PRESS', '', '', '', 'FR', '', '', '', '', ''), (1163, 'M', 'MNAM', '', '', '', 'FR', '', '', '', '', ''), (1164, 'M', 'MONUM', '', '', '', 'FR', '', '', '', '', ''), (1165, 'M', 'MORTORANA', '', '', '', 'IT', '', '', '', '', ''), (1166, 'O', 'ORBAN OLIVIER', '', '', '', 'FR', '', '', '', '', ''), (1167, 'O', 'OPHRYS', '', '', '', 'FR', '', '', '', '', ''), (1168, 'O', 'O\'REILLY', '', '', '', 'US', '', '', '', '', ''), (1169, 'P', 'POL', '', '', '', 'FR', '', '', '', '', ''), (1170, 'P', 'PEACHPIT PRESS', '', '', '', 'US', '', '', '', '', ''), (1171, 'P', 'PENGUIN BOOK', '', '', '', 'UK', '', '', '', '', ''), (1172, 'P', 'PERRIN', '', '', '', 'FR', '', '', '', '', ''), (1173, 'P', 'POINT SEUIL', '', '', '', 'FR', '', '', '', '', ''), (1174, 'P', 'PRESENCES', '', '', '', 'FR', '', '', '', '', ''), (1175, 'P', 'PRESSE POCKET', '', '', '', 'FR', '', '', '', '', ''), (1176, 'P', 'PUV(Presse Universitaire de Vincennes)', '', '', '', 'FR', '', '', '', '', ''), (1177, 'P', 'PUM (Presse Universitaire de Montréal)', '', '', '', 'CA', '', '', '', '', ''), (1178, 'R', 'REUNION DES MUSEES NATIONAUX', '', '', '', 'FR', '', '', '', '', ''), (1179, 'R', 'ROBERT', '', '', '', 'FR', '', '', '', '', ''), (1180, 'R', 'ROBERT & COLLINS', '', '', '', 'FR', '', '', '', '', ''), (1181, 'R', 'ROBERT & SIGNORELLI', '', '', '', 'FR', '', '', '', '', ''), (1182, 'R', 'REBONDIR', '', '', '', 'FR', '', '', '', '', ''), (1183, 'R', 'RYODAN JI', '', '', '', 'FR', '', '', '', '', ''), (1184, 'S', 'SAND', '', '', '', 'FR', '', '', '', '', ''), (1185, 'S', 'SAXIFAGE', '', '', '', 'FR', '', '', '', '', ''), (1186, 'S', 'SIGMA COMMUNICATION', '', '', '', 'FR', '', '', '', '', ''), (1187, 'S', 'SULLIVER', '', '', '', 'FR', '', '', '', '', ''), (1188, 'S', 'SOLAR', '', '', '', 'FR', '', '', '', '', ''), (1189, 'S', 'SYBEX', '', '', '', 'FR', '', '', '', '', ''), (1190, 'T', 'TECHNIPLUS', '', '', '', 'FR', '', '', '', '', ''), (1191, 'T', 'TERRAIL', '', '', '', 'FR', '', '', '', '', ''), (1192, 'V', 'VISION', '', '', '', 'FR', '', '', '', '', ''), (1193, 'V', 'VOLETS VERTS', '', '', '', 'FR', '', '', '', '', ''), (1194, 'W', 'WARNER BOOKS', '', '', '', 'FR', '', '', '', '', ''), (1195, 'W', 'WROX', '', '', '', 'FR', '', '', '', '', ''), (1196, 'W', 'WROX EYROLLES', '', '', '', 'FR', '', '', '', '', ''), (1197, 'Z', 'Z\'EDITION', '', '', '', 'FR', '', '', '', '', ''), (1198, 'A', '10/18', '', '', '', 'FR', '', '', '', '', ''), (1199, 'M', 'GERARD DE MONFORT', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1200, 'F', 'FARRAGO', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1201, 'P', 'PLURIEL', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1202, 'P', 'PRIVAT', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1203, 'R', 'READER\'S DIGEST', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1204, 'L', 'LOFT Publication', 'Via Laietana 32', '', 'Barcelone', '', '+34932688088', '', '', 'www.loftpublications.com', ''), (1205, 'T', 'TATE Publishing', '', '', '', 'US', '', '', '', '', ''), (1206, 'M', 'M21 Editions', '', '', 'Paris', 'FR', '', '', '', 'm21editions.com', ''), (1207, 'P', 'PYRAMYD', '', '', '', '', '', '', '', '', ''), (1208, 'T', 'Thames & hudson', '', '', '', '', '', '', '', '', ''), (1209, 'B', 'Beaux-Arts magazine', '', '', '', 'FR', '', '', '', '', ''), (1210, 'G', 'Die Gestalten verlag', '', '', 'berlin', '', '', '', '', '', ''), (1211, 'L', 'La part de l\'oeil', '', '', '', 'BE', '', '', '', 'www.lapartdeloeil.be', ''), (1212, 'L', 'Laffitte reprints', '', '', '', 'FR', '', '', '', '', ''), (1213, 'R', 'LA RENAISSANCE DU LIVRE', '', '', 'Tournai', 'BE', '', '', '', '', ''), (1214, 'H', 'Hatje Cantz Publishers', '', '', '', '', '', '', '', '', ''), (1215, 'E', 'Ecole des Mines de Paris Les presses', '', '', 'Paris', 'FR', '', '', '', '', ''), (1217, 'H', 'Hermes Lavoisier', '', '', '', 'FR', '', '', '', '', ''), (1218, 'W', 'William Blake And Co', '', '', '', 'UK', '', '', '', '', ''), (1219, 'C', 'Cahier de l\'homme', '', '', '', 'FR', '', '', '', '', ''), (1220, 'P', 'PUBLICATIONS DE L\'UNIVERSITE DE SAINT-ETIENNE', '', '', '', 'FR', '', '', '', '', ''), (1221, 'L', 'LUCIE Editions', '', '', '', 'FR', '', '', '', '', ''), (1222, 'C', 'CEPADUES Editions', '', '', '', 'FR', '', '', '', '', ''), (1223, 'P', 'PEETERS', '', '', '', '', '', '', '', '', ''), (1224, 'C', 'CRISTOPH KELLER Editions', '', '', '', '', '', '', '', '', ''), (1225, 'P', 'PICQUIER', '', '', '', '', '', '', '', '', ''), (1226, 'E', 'ESF Editeur', '', '', '', 'FR', '', '', '', '', ''), (1227, 'M', 'MASSON', '', '', '', 'FR', '', '', '', '', ''), (1228, 'B', 'BUDO Editions', '', '', '', '', '', '', '', 'www.budo.fr', ''), (1229, 'O', 'Oxford History of Art', '', '', '', 'UK', '', '', '', '', ''), (1230, 'C', 'Costume & fashion Press', '', '', 'Hollywood', 'US', '', '', '', '', ''), (1231, 'O', 'Other Criteria', '', '', '', 'UK', '', '', '', '', ''), (1232, 'D', 'Delachaux et Niestlé', '', '', '', 'FR', '', '', '', 'http://www.delachauxetniestle.com/', ''), (1233, 'E', 'EDITIONS DU ROCHER', '', '', '', 'FR', '', '', '', '', ''), (1234, 'B', 'EDITIONS BUSSIERE', '', '', '', 'FR', '', '', '', '', ''), (1235, 'P', 'EDITIONS PLACE DES VICTOIRES', '', '', '', 'FR', '', '', '', '', ''), (1236, 'T', 'EDITIONS TECHNIP', '', '', '', 'FR', '', '', '', '', ''), (1238, 'L', 'LIAISONS', '', '', '', '', '', '', '', '', ''), (1239, 'A', 'APRESS', '', '', '', 'US', '', '', '', '', ''), (1240, 'P', 'PEARSON Education', '', '', '', 'US', '', '', '', '', ''), (1241, 'P', 'The PEPIN PRESS', '', '', 'Amsterdam', '', '', '', '', 'http://www.pepinpress.com/', ''), (1242, 'C', 'Editions CREAPHIS', '', '', '', 'FR', '', '', '', '', ''), (1243, 'M', 'Morgan Kaufmann Publishers In', '', '', '', 'US', '', '', '', '', ''), (1244, 'I', 'INFOLIO', '', '', '', '', '', '', '', '', ''), (1245, 'P', 'POINTS', '', '', '', 'FR', '', '', '', 'http://www.editionspoints.com/', ''), (1246, 'S', 'SOMOGY éditions d\'art', '', '', '', '', '', '', '', 'http://www.somogy.net/', ''), (1247, 'E', 'EXPRESSéditions', '', '', '', '', '', '', '', '', ''), (1248, 'S', 'Springer-Verlag Berlin and Heidelberg GmbH & Co. K', '', '', '', 'UK', '', '', '', '', ''), (1249, 'C', 'CRDP Nord Pas-de-Calais', '', '', '', 'FR', '', '', '', '', ''), (1250, 'F', 'F-F-C-B Fédération française de coopération entre bibliothèque', '', '', '', 'FR', '', '', '', '', ''), (1251, 'C', 'Chronique Sociale', '', '', '', 'FR', '', '', '', '', ''), (1252, 'C', 'COMPÉTENCE MICRO', '', '', '', '', '', '', '', '', ''), (1253, 'B', 'BARRON\'S', '', '', '', 'US', '', '', '', '', ''), (1254, 'P', 'PUB (Presse Universitaire de Bordeaux)', '', '', 'Bordeaux', 'FR', '', '', '', '', ''), (1255, 'H', 'HOBSON France', '', '', '', '', '', '', '', '', ''), (1256, 'C', 'Editions De La Courtille', '', '', '', '', '', '', '', '', ''), (1257, 'S', 'Jean-Claude SIMOËN', '', '', '', '', '', '', '', '', ''), (1258, 'T', 'Le temps des cerises', '', '', '', 'FR', '', '', '', 'www.letempsdescerises.net', ''), (1259, 'S', 'SCHIRMER MOSEL', '', '', '', '', '', '', '', '', ''), (1260, 'C', 'Centre Georges Pompidou', '', '', 'Paris', 'FR', '', '', '', 'http://www.centrepompidou.fr/', ''), (1261, 'C', 'Éditions chemin de ronde', '', '', '', '', '', '', '', '', ''), (1262, 'P', 'Publications de la Sorbonne', '17 rue de la Sorbonne', '', 'Paris', 'FR', '', '', '', '', ''), (1263, 'P', 'Pédagogie moderne', '', '', '', '', '', '', '', '', ''), (1264, 'L', 'LE CERF', '', '', '', '', '', '', '', '', ''), (1265, 'Y', 'Yvette et Paulette', '', '', '', 'FR', '', '', '', 'yvetteetpaulette.free.fr', ''), (1267, 'P', 'PLEIADE', '', '', '', 'FR', '', '', '', 'www.cercle-pleiade.com', ''), (1268, 'I', 'IXELLES ÉDITIONS', '', '', '', '', '', '', '', 'www.ixelles-editions.com', ''), (1269, 'E', 'EDITION DU CENTRE POMPIDOU', '', '', '', 'FR', '', '', '', '', ''), (1270, 'C', 'CHAMBERS', '', '', '', 'UK', '', '', '', '', ''), (1271, 'P', 'PRESSES DU RÉEL', '', '', '', 'FR', '', '', '', '', ''), (1272, 'F', 'Fabbri édition', NULL, NULL, NULL, 'IT', NULL, NULL, NULL, NULL, NULL), (1273, 'U', 'ULLMANN', '', '', 'Postdam', '', '', '', '', 'http://www.ullmann-publishing.com', ''), (1274, 'P', 'POINT DE VUE', '', '', '', 'FR', '', '', '', '', ''), (1275, 'B', 'Beaux-Arts éditions', '', '', 'Paris', 'FR', '', '', '', '', ''), (1276, 'C', 'CRDP Languedoc-Roussillon', '', '', '', 'FR', '', '', '', 'http://www.crdp-montpellier.fr/', ''), (1277, 'A', 'ADBS', '', '', '', 'FR', '', '', '', 'http://www.adbs.fr/', ''), (1278, 'P', 'Phaidon Press ltd', '', '', '', '', '', '', '', '', ''), (1279, 'L', 'LA LETTRE VOLÉE', '', '', '', '', '', '', '', '', ''), (1280, 'A', 'Association Francophone d\'Esthétique', NULL, NULL, 'Paris', 'FR', NULL, NULL, NULL, NULL, 'http://www.r-f-e.net/; http://www.art21.fr/'), (1281, 'T', 'Éditions de la TRANSPARENCE', '8, avenue des Pommerots', '', 'Chatou', 'FR', '', '', '', 'http://www.latransparence-philosophie.com/', ''), (1282, 'S', 'ÉDITION DU SANDRE', '57, rue du Docteur Blanche', '75016', 'Paris', '', '01 45 20 74 86 ', '', '', 'www.editionsdusandre.com', ''), (1283, 'E', 'Ecole française de Rome', '', '', '', '', '', '', '', '', ''), (1284, 'P', 'PUB ROMANDES', '', '', '', '', '', '', '', '', ''), (1285, 'U', 'URBANISME ET ART CONTEMPORAIN', '', '', '', '', '', '', '', '', ''), (1286, 'E', 'EHESS', '', '', '', 'FR', '', '', '', '', ''), (1287, 'L', 'LA DOCUMENTATION FRANÇAISE', '', '', '', 'FR', '', '', '', '', ''), (1288, 'E', 'Encre marine', '', '', '', 'FR', '', '', '', '', ''), (1289, 'E', 'EDITIONS DE LA VILETTE', '', '', 'France', 'FR', '', '', '', '', ''), (1290, 'L', 'LES EDITEURS LIBRES', '', '', '', 'FR', '', '', '', '', ''), (1291, 'C', 'CERCLE D\'ART', 'Editions Cercle d\'Art\r\nRue Sainte-Anastase, 10', '75003', 'PARIS', 'FR', '+331 48 87 92 12', '+331 48 87 47 79', 'info@cercledart.com', 'http://www.cercledart.com/', NULL), (1292, 'M', 'Monografik Editions', '6, pl de l\'église', '', 'BLOU', 'FR', '', '', '', 'www.monografik-editions.com', ''), (1293, 'R', 'Région PACA', '', '', '', 'FR', '', '', '', '', ''), (1294, 'P', 'POINTDEUX Editions', '', '', '', 'FR', '', '', '', '', ''), (1295, 'E', 'ÉDITIONS DU CERCLE DE LA LIBRAIRIE', '117, bd St Germain', '', 'Paris', 'FR', '', '', '', '', '48.852591,2.337749'), (1296, 'E', 'EDIPRO', '', '', '', 'BE', '', '', '', 'http://www.edipro.info/', ''), (1297, 'E', 'ÉDITIONS PÔLE CONSEIL', '', '', '', 'FR', '', '', '', '', ''), (1298, 'E', 'ÉDITIONS HYX', '', '', '', '', '', '', '', 'www.editions-hyx.com', ''), (1299, 'D', 'DOVER PUBLICATIONS', '', '', '', 'US', '', '', '', '', ''), (1300, 'S', 'SEDES', '', '', '', '', '', '', '', 'www.editions-sedes.com', ''), (1301, 'P', 'PRESSES UNIVERSITAIRES DE GRENOBLE', '', '', '', 'FR', '', '', '', '', ''), (1302, 'A', 'ABF (Association des Bibliothécaire de France)', '', '', '', 'FR', '', '', '', 'www.abf.asso.fr/', ''), (1303, 'E', 'PRESSES DE L\'ENSSIB', '', '', '', 'FR', '', '', '', 'http://www.enssib.fr/presses', ''), (1304, 'F', 'FYP ÉDITIONS', '', '', '', '', '', '', '', '', ''), (1305, 'E', 'ÉDITIONS JEAN CLAUDE BÉHAR', '', '', '', 'FR', '', '', '', '', ''), (1306, 'P', 'Le promeneur', '', '', '', '', '', '', '', '', ''), (1307, 'C', 'Cercle de la Librairie', '117, boulevard Saint-Germain', '', 'Paris', 'FR', '', '', '', '', ''), (1308, 'R', 'ROUERGUE', '', '', '', 'FR', '', '', '', '', ''), (1309, 'J', 'Jeune éditions Studyrama', '', '', '', '', '', '', '', '', ''), (1310, 'O', 'OBJECTIF CONCOURS', '', '', '', '', '', '', '', '', ''), (1311, 'V', 'Van Gogh Museum', '', '', 'Amsterdam', '', '', '', '', 'www.vangoghmuseum.com', ''), (1312, 'M', 'Médialibre', '', '', '', '', '', '', '', '', ''), (1313, 'U', 'PRESSES DE L\'UNESCO', '', '', '', 'US', '', '', '', 'http://publishing.unesco.org/', ''), (1314, 'B', 'BLAY-FOLDEX', '', '', '', '', '', '', '', '', ''), (1315, 'L', 'LANGUES POUR TOUS', '', '', '', '', '', '', '', '', ''), (1317, 'C', 'Cahiers du cinéma', '', '', '', '', '', '', '', '', ''), (1318, 'J', 'JEAN-CLAUDE BÉHAR', '', '', '', 'FR', '', '', '', 'www.jcbehareditions.com', ''), (1319, 'P', 'LE PASSAGE', '2, rue de la Roquette', '', 'Paris', 'FR', '', '', 'contact@lepassage-editions.fr', 'http://www.lepassage-editions.fr/', ''), (1320, 'C', 'Musée Carnavalet', '', '', 'Paris', 'FR', '', '', '', '', ''), (1321, 'B', 'BBC', '', '', '', 'UK', '', '', '', '', ''), (1322, 'P', 'ÉDITION DU PATRIMOINE', '', '', 'Paris', 'FR', '', '', '', '', ''), (1323, 'C', 'CENTURION', '', '', '', '', '', '', '', '', ''), (1324, 'D', 'DIATEINO', '', '', '', 'FR', '', '', '', '', ''), (1325, 'C', 'Centre Pompidou-Metz', '', '', '', 'FR', '', '', '', '', ''), (1326, 'N', 'NOUVELLE TERRE', '', '', '', 'FR', '', '', '', '', ''), (1327, 'P', 'PAHANABOOKS', '', '', '', '', '', '', '', 'www.pahanabooks.com', ''), (1328, 'O', 'OpenEdition Press', '3, place Victor Hugo, Case n° 86,', '', 'Marseille Cedex 3', 'FR', '', '', ' contact@openedition.org', 'http://www.openedition.org/', 'Unité mixte de services 3287\r\nCNRS, EHESS, Université de Provence, Université d’Avignon et des Pays de Vaucluse'), (1329, 'K', 'Kindle édition', '', '', '', 'US', '', '', '', '', 'édition numérique'), (1330, 'M', 'MAMA Éditions', '7 rue Pétion', '', 'Paris', 'FR', '', '', 'presse@mamaeditions.net', 'www.mamaeditions.net/', ''), (1331, 'C', 'Citadelles & Mazenod', '8 rue Gaston de Saint-Paul', '', 'Paris', 'FR', '01 53 04 30 60', '01 53 04 30 61', 'info@citadelles-mazenod.com', 'www.citadelles-mazenod.com', ''), (1332, 'R', 'Wydawnictwo RM', '', '', '', '', '', '', '', 'www.rm.com.pl', ''), (1333, 'E', 'Edisud', '', '', '', 'FR', '', '', '', 'http://www.edisud.com/', ''), (1334, 'L', 'LEMA', '', '', '', '', '', '', '', '', ''), (1335, 'A', 'Revue l\'Art du comprendre', '', '', '', 'FR', '', '', '', '', ''), (1336, 'H', 'HERMES', '', '', 'Paris', 'FR', '', '', '', '', ''), (1337, 'V', 'Editions VM', '116 bd Malesherbes', '', 'Paris', 'FR', '', '', '', '', ''), (1338, 'M', 'Editions MUNTANER', '', '', '', '', '', '', '', '', ''), (1339, 'A', 'A.L.T.E.S.S.', '', '', '', '', '', '', '', '', ''), (1340, 'S', 'Simple IT', '', '', '', '', '', '', '', '', ''), (1341, 'C', 'Collect-It.De Gmbh', 'collect-it.de GmbH\r\nPostfach 201189\r\n63272 Dreieich \r\nDeutschland', '', '', '', '', '', '', 'http://www.collect-it.de/', ''), (1342, 'F', 'La fabrique éditions', '', '', '', 'FR', '', '', '', 'http://www.lafabrique.fr/', ''), (1343, 'A', 'Archives de la critique d\'art', '', '', '', '', '', '', '', '', ''), (1344, 'L', 'LIBERTY FUND', '', '', '', 'US', '', '', '', '', ''), (1345, 'M', 'The MIT Press', '', '', '', 'US', '', '', '', '', ''); INSERT INTO `bib_editeurs` (`idediteur`, `alphabet`, `nom_editeur`, `adresse`, `CP`, `ville`, `pays`, `tel`, `fax`, `courriel`, `siteweb`, `commentaire`) VALUES (1346, 'P', 'PRESSES UNIVERSITAIRES DE RENNES', '', '', '', 'FR', '', '', '', '', ''), (1347, 'V', 'VERDIER', '', '', '', 'FR', '', '', '', 'www.editions-verdier.fr', ''), (1348, 'C', 'CRDP de Franche-Comté', '', '', '', 'FR', '', '', '', '', ''), (1349, 'C', 'CRDP Poitou-Charentes', '', '', '', 'FR', '', '', '', '', ''), (1350, 'C', 'CRDP d\'Auvergne ', '', '', '', 'FR', '', '', '', '', ''), (1351, 'P', 'PLEINS FEUX', '', '', '', '', '', '', '', '', ''), (1352, 'B', 'François BOURIN', '', '', '', '', '', '', '', '', ''), (1353, 'E', 'LES ESSAIS', '', '', '', '', '', '', '', '', ''), (1354, 'P', 'PAYOT & RIVAGES', '', '', '', '', '', '', '', '', ''), (1355, 'M', 'MUSÉE DE MARSEILLE', '', '', '', 'FR', '', '', '', '', ''), (1356, 'V', 'Éditions de la Villette', '', '', '', 'FR', '', '', '', '', ''), (1357, 'M', 'MONITEUR TECHNIQUE', '', '', '', '', '', '', '', '', ''), (1358, 'E', 'ÉDITIONS ERRANCE', '', '', '', '', '', '', '', '', ''), (1359, 'P', 'ÉDITIONS DE LA PASSION', '', '', '', '', '', '', '', '', ''), (1360, 'F', 'FAGE éDITIONS', '', '', '', '', '', '', '', '', ''), (1361, 'D', 'Librairie DROZ', '', '', '', '', '', '', '', '', ''), (1362, 'S', 'SQUARE PEG', '', '', '', 'UK', '', '', '', '', ''), (1364, 'D', 'Dis voir éditions', '', '', '', 'FR', '', '', '', '', ''), (1365, 'S', 'Search Press Ltd', '', '', '', 'UK', '', '', '', 'http://www.searchpress.com/', ''), (1366, 'M', 'Éditions Manucius', '', '', '', '', '', '', '', '', ''), (1368, 'O', 'OSKAR', '', '', '', '', '', '', '', '', ''), (1369, 'U', 'ULISSE', '', '', '', 'FR', '', '', '', 'http://www.ulisseditions.com/', ''), (1370, 'I', 'INVENIT EDITIONS', '', '', '', 'FR', '', '', '', 'http://www.invenit-editions.fr/', ''), (1371, 'L', 'LUDD', '', '', '', '', '', '', '', '', ''), (1372, 'V', 'Éditions VIAL', '', '', '', 'FR', '', '', '', '', ''), (1373, 'E', 'EDITA DENÖEL', '', '', '', 'CH', '', '', '', '', ''), (1374, 'A', 'L\'AURORE', '', '', 'Montréal', 'CA', '', '', '', '', ''), (1375, 'B', 'BCA', '', '', '', 'UK', '', '', '', '', ''), (1376, 'W', 'WILEY', '', '', '', 'US', '', '', '', '', 'John Wiley & Sons'), (1377, 'O', 'L\'ORIGINEL', '25 Rue Saulnier', '75009', 'Paris', 'FR', '01 42 46 75 78', '', '', 'http://www.loriginel.com/', ''), (1378, 'S', 'Smashing Magazine GmbH', 'Werthmannstr. 15', '', 'Frieburg', '', '', '', '', 'https://www.smashingmagazine.com/about/', ''), (1379, 'N', 'NABU Press', '', '', '', '', '', '', '', 'http://bibliolabs.com/', 'imprint de BiblioLabs'), (1380, 'M', 'Melville House', '46 John St.', '', 'Brooklyn, NY', 'US', '', '', '', 'http://www.mhpbooks.com/', ''), (1381, 'P', 'Paléo éditions', '', '', '', '', '', '', '', '', ''), (1382, 'O', 'L\'OEIL D\'OR', '', '', '', '', '', '', '', '', ''), (1383, 'G', 'GALLICA', '', '', '', 'FR', '', '', '', '', ''), (1384, 'D', 'EDITIONS ROGER DACOSTA', '', '', '', 'FR', '', '', '', '', ''), (1385, 'I', 'Impression à  la demande (POD)', '', '', '', '', '', '', '', '', ''), (1386, 'L', 'Librairie du Compagnonnage', '', '', '', '', '', '', '', '', ''), (1387, 'I', 'IN MEDIA RES', '', '', '', '', '', '', '', '', ''), (1388, 'C', 'CAMBRIDGE UNIVERSITY PRESS', '', '', '', 'UK', '', '', '', '', ''), (1389, 'W', 'Wentworth Press', '', '', '', '', '', '', '', '', ''), (1390, 'L', 'EDITIONS DU LIMON', '', '', '', '', '', '', '', '', ''), (1391, 'K', 'KESSINGER Publishing', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1392, 'P', 'PULM (Presses Universitaires de Méditerranée)', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1393, 'R', 'rarebooksclub.com', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1394, 'T', 'TRIADES', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1395, 'L', 'H. LAURENS Editeur', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1396, 'S', 'SKIRA', NULL, NULL, 'Milan', 'IT', NULL, NULL, NULL, 'http://www.skira.net/fr/', NULL), (1397, 'P', 'PARIGRAMME', NULL, NULL, 'Paris', 'FR', NULL, NULL, NULL, 'http://www.parigramme.com/', NULL), (1398, 'A', 'ASSOULINE éditions', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'http://www.assouline.com/', NULL), (1399, 'L', 'LITTLE BOOKROOM', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, 'http://www.littlebookroom.com/', NULL), (1400, 'M', 'MINERVE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1401, 'C', 'Callwey Georg D.W. GmbH ', NULL, NULL, NULL, 'DE', NULL, NULL, NULL, 'https://www.callwey.de/', NULL), (1402, 'G', 'GETTY Publications', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, 'http://www.getty.edu/publications/', NULL), (1403, 'O', 'OXFORD UNIVERSITY PRESS', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1404, 'H', 'HOWELLS HOUSE', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1405, 'L', 'Frances Lincoln Publishers Ltd', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1406, 'M', 'MARINER Books', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1407, 'Y', 'YALE UNIVERSITY PRESS', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1408, 'E', 'Editions d\'art et d\'histoire Van Oest', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1409, 'A', 'ART ET IMAGES', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1410, 'E', 'EREC', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, 'SFIIC'), (1411, 'T', 'Theclassics.Us', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, 'http://theclassics.us/', NULL), (1412, 'C', 'CASSA DI RISPARMIO DI FIRENZE', NULL, NULL, NULL, 'IT', NULL, NULL, NULL, NULL, NULL), (1413, 'H', 'HOEPLI', NULL, NULL, NULL, 'IT', NULL, NULL, '', 'http://www.hoepli.it/', NULL), (1414, 'R', 'RIJKSMUSEUM FOUNDATION', NULL, NULL, NULL, 'NL', NULL, NULL, NULL, NULL, NULL), (1415, 'P', 'POLE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1416, 'C', 'CORNELL UNIVERSITY PRESS', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1417, 'M', 'McGILL-QUEEN\'s UNIVERSITY PRESS', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, 'http://www.mqup.ca/', NULL), (1418, 'P', 'PRINCETON UNIVERSITY PRESS', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, 'http://press.princeton.edu/', NULL), (1419, 'A', 'ARCHETYPE PUBLICATIONS LTD', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1420, 'B', 'BLACK DOG PUBLISHING LTD', NULL, NULL, NULL, 'US', NULL, NULL, NULL, NULL, NULL), (1421, 'G', 'GEORG EDITEUR', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1422, 'E', 'EDWIN MELLEN PRESS', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1423, 'O', 'OUSIA EDITIONS', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1424, 'L', 'LETHIELLEUX', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1425, 'B', 'LA BIBLIOTHEQUE DES ARTS', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1426, 'M', 'MAISON DES SCIENCES DE L\'HOMME', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1427, 'I', 'Institut d\'arts visuels (IAV)', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1428, 'L', 'LE LEOPARD D\'OR', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1429, 'R', 'RUE D\'ULM', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1430, 'M', 'The Museum of Modern Art (MOMA)', NULL, NULL, 'New York', 'US', NULL, NULL, NULL, NULL, NULL), (1431, 'T', 'TRANS EUROPE REPRESS (TER)', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'http://www.ter-editions-philo.com/', NULL), (1432, 'T', 'THALIA EDITION', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1433, 'E', 'EDITIONS DU REGARD', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1434, 'N', 'NATIONAL GALLERY COMPAGNY', NULL, NULL, NULL, 'GB', NULL, NULL, NULL, NULL, NULL), (1435, 'H', 'HARDPRES PUBLISHING', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1436, 'A', 'Atelier populaire d\'arts plastiques', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1437, 'N', 'NOTARI', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1438, 'A', 'AUDIN', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1439, 'C', 'CREATESPACE', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1440, 'U', 'UNIVERSITY OF PENNSYLVANIA PRESS', NULL, NULL, NULL, 'US', NULL, NULL, NULL, NULL, NULL), (1441, 'F', 'FLOURY', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1442, 'G', 'GROURCUFF GRADENIGO', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1443, 'P', 'ECOLE NATIONALE DU PATRIMOINE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1444, 'L', 'LE SENEVE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1445, 'I', 'INSTITUT ROYAL DU PATRIMOINE ARTISTIQUE', NULL, NULL, 'Bruxelles', 'BE', NULL, NULL, NULL, NULL, NULL), (1446, 'D', 'DK', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1447, 'L', 'LEVENVRE & GILLET', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1448, 'O', 'OFFICE DU LIVRE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1449, 'P', 'PIERRE CAILLER', NULL, NULL, 'Genève', 'CH', NULL, NULL, NULL, NULL, NULL), (1450, 'A', 'ASSOCIATION CULTURELLE MIMESIS', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1451, 'M', 'MYG', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1452, 'M', 'CHARLES MASSIN', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1453, 'T', 'TERRES ET COULEURS', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1454, 'B', 'BIBLIOTHEQUE DE L\'IMAGE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1455, 'J', 'JOHN LANE THE BODLEY HEAD', NULL, NULL, NULL, 'GB', NULL, NULL, NULL, NULL, NULL), (1456, 'A', 'ADVERBUM', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1457, 'H', 'HF ULLMANN EDITIONS', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1458, 'V', 'VIGOT', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'http://www.vigot.fr/', NULL), (1459, 'H', 'HODDER & STOUGHTON', '', '', '', 'UK', '', '', '', 'https://www.hodder.co.uk/', ''), (1460, 'V', 'VINCI', '', '', '', 'FR', '', '', '', 'https://www.vinci-editions.com/', ''), (1461, 'N', 'NEW RIDERS', '', '', '', 'US', '', '', '', 'www.newriders.com', ''), (1462, 'S', 'SERRE', '', '', '', '', '', '', '', 'https://serre-editeur.fr/', ''), (1463, 'F', 'FLORIS BOOK', '', '', '', 'UK', '', '', '', 'http://www.florisbooks.co.uk', ''), (1464, 'H', 'HERMESIA', '', '', '', 'FR', '', '', '', 'https://www.editions-hermesia.com/', ''), (1465, 'T', 'TELETES', '', '', '', 'FR', '', '', '', '', ''), (1466, 'L', 'LE GAC PRESS', ' 6 Place de l Église', '', 'Blou', 'FR', '', '', '', 'http://www.dust-distiller.com/', 'le-gac-press.com'), (1467, 'D', 'Editions du Dauphin', '', '', '', 'FR', '', '', '', 'http://www.editionsdudauphin.com/', ''), (1468, 'C', 'CreateSpace Independent Publishing Platform', '', '', '', '', '', '', '', '', ''), (1469, 'I', 'Institut Pandore', '', '', '', '', '', '', '', '', ''), (1470, 'C', 'COSMOPOLE', '', '', '', 'FR', '', '', '', 'https://www.editionscosmopole.com/', ''), (1471, 'D', 'Douglas & Mcintyre Ltd', '', '', '', 'CA', '', '', '', 'http://www.douglas-mcintyre.com', ''), (1472, 'G', 'Graphics Press USA', '', '', '', 'US', '', '', '', '', ''), (1473, 'E', 'Édition de la Cité', '', '', '', 'FR', '', '', '', 'http://www.editionsdelacite.com/', ''), (1474, 'C', 'CASSELL', '', '', '', 'UK', '', '', '', 'https://www.octopusbooks.co.uk/', ''), (1476, 'S', 'Nouvelles éditions Scala', '', '', '', 'FR', '', '', '', 'http://www.editions-scala.fr/', ''), (1477, 'W', 'Watson-Guptill', '', '', 'New York', 'US', '', '', '', 'http://crownpublishing.com/archives/imprint/watson-guptill', ''), (1478, 'S', 'Schwarz Maerkte U. Figure', '', '', '', '', '', '', '', '', ''), (1479, 'H', 'Editions Honoré Clair', '', '', '', 'FR', '', '', '', 'http://www.editions-honoreclair.fr/', ''), (1480, 'A', 'Harry N. Abrams, Inc.', '', '', 'New York', 'US', '', '', '', 'http://www.abramsbooks.com/', ''), (1481, 'H', 'Hight Museum of Art', '', '', 'Atlanta', 'US', '', '', '', '', ''), (1482, 'B', 'BOUNTY BOOKS', '', '', '', 'US', '', '', '', 'http://www.bountybooks.net/', ''), (1483, 'S', 'STUDYRAMA', '', '', 'Paris', 'FR', '', '', '', 'https://librairie.studyrama.com/', ''), (1484, 'C', 'CIEREC', '5 rue du 11 novembre ', '', 'SAINT ETIENNE', '', '04 77 42 16 61', '', '', 'https://www.univ-st-etienne.fr/fr/cierec.html', 'Centre Interdisciplinaire d Etudes et de Recherches sur l Expression Contemporaine'), (1485, 'F', 'FOLIO', '', '', '', 'FR', '', '', '', 'http://www.folio-lesite.fr/', ''), (1486, 'M', 'La Manufacture', '104 rue Tronchet, ', '', 'Lyon', 'FR', '', '', '', '', ''), (1487, 'D', 'Régine DEFORGES', '9 Rue du Cherche Midi', '', 'Paris', 'FR', '', '', '', '', ''), (1488, 'C', 'Carré d\'art', '', '', '', '', '', '', '', 'http://www.carreartmusee.com/fr/', ''), (1489, 'C', 'CHÊNE-BOURG', '', '', '', 'CH', '', '', '', 'http://www.chene-bourg.ch/culture/publications/', ''), (1490, 'O', 'Odilon Media', '', '', '', '', '', '', '', '', ''), (1491, 'L', 'Editions du Linteau', '', '', '', 'FR', '', '', '', 'http://www.editions-linteau.com/', ''), (1492, 'P', 'PHENIX EDITIONS', '', '', '', 'FR', '', '', '', '', ''), (1493, 'E', 'EC EDITIONS', '', '', '', '', '', '', '', '', ''), (1494, 'L', 'Le livre d\'Art Iconofolio', '', '', '', '', '', '', '', '', ''), (1495, 'J', 'Jean Cyrille Godefroy', '', '', '', '', '', '', '', '', ''), (1496, 'T', 'TEXQUIS', '', '', '', '', '', '', '', '', ''), (1497, 'P', 'Pierre-Guillaume de ROUX', '', '', '', 'FR', '', '', '', '', ''), (1498, 'P', 'LES PRESSES LITTERAIRES', '', '', '', '', '', '', '', '', ''), (1499, 'E', 'L\'ECHAPEE', '', '', '', '', '', '', '', '', ''), (1500, 'C', 'Louise COURTEAU', '', '', '', 'CA', '', '', '', 'http://www.louisecourteau.com/', ''), (1501, 'R', 'Le retour aux sources', '', '', '', 'FR', '', '', '', 'https://www.leretourauxsources.com/', ''), (1502, 'E', 'Editions ESI', '', '', '', '', '', '', '', '', ''), (1503, 'A', 'Assiduous Publishing', '', '', '', 'US', '', '', '', '', ''), (1504, 'S', 'STERLING', '', '', '', 'US', '', '', '', '', ''), (1505, 'V', 'Virgule-Solidus LLC', '', '', '', 'US', '', '', '', 'http://www.virgule-solidus.com/', ''), (1506, 'B', 'Bitmap Books', '', '', '', 'UK', '', '', '', 'https://www.bitmapbooks.co.uk/', ''), (1507, 'F', 'FLAMANT', '', '', '', '', '', '', '', '', ''), (1508, 'T', 'Tyaglova-Fayer Svetlana', '', '', '', '', '', '', '', '', ''), (1509, 'A', 'Alexandre Moryason Editeur', '', '', '', 'FR', '', '', '', 'https://www.moryason.com/', ''), (1510, 'S', 'SCHOLASTIC', NULL, NULL, NULL, 'US', NULL, NULL, NULL, 'http://emea.scholastic.com/en', NULL), (1511, 'T', 'LA TOUR VERTE', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'http://latourverte.com/', NULL), (1512, 'A', 'A BOOK APART', NULL, NULL, NULL, 'US', NULL, NULL, NULL, 'https://abookapart.com/', NULL), (1513, 'C', 'Editions du cardo', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'www.editionsducardo.fr', NULL), (1514, 'B', 'Bear & Company', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1515, 'C', 'CHALAGAM', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1516, 'C', 'CORWIN', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'http://www.corwin.eu/produits/elearning^solution^general.html', NULL), (1517, 'H', 'HARRAP\'S', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'https://www.editions-larousse.fr/harraps', NULL), (1518, 'S', 'SKY BOOKS', NULL, NULL, NULL, 'US', NULL, NULL, NULL, 'www.skybooksusa.com', NULL), (1519, 'A', 'Les Editions Atlantes', '7 rue Pasteur', '78350', 'Jouy en Josas', 'FR', '0681395054', NULL, 'contact@editions-atlantes.fr', 'https://www.editions-atlantes.fr/', NULL), (1520, '', 'UPROUTE', NULL, NULL, NULL, 'US', NULL, NULL, NULL, NULL, NULL), (1521, 'T', 'The Nature of Code', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1522, 'E', 'ELSEVIER SCIENCE & TECHNOLOGY', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1523, 'N', 'No Starch Press', NULL, NULL, NULL, 'EN', NULL, NULL, NULL, NULL, NULL), (1524, 'M', 'Manning Publications', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1525, 'L', 'LE BRETON', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, NULL, NULL), (1526, 'M', 'Mana Books', NULL, NULL, NULL, 'FR', NULL, NULL, NULL, 'https://mana-books.com/', NULL); -- -------------------------------------------------------- -- -- Structure de la table `bib_format` -- CREATE TABLE `bib_format` ( `idformat` int(11) NOT NULL, `format` varchar(20) NOT NULL DEFAULT '', `type` varchar(20) DEFAULT NULL, `description` varchar(40) DEFAULT NULL, `mm` varchar(20) DEFAULT NULL, `cm` varchar(20) DEFAULT NULL, `inch` varchar(20) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_format` -- INSERT INTO `bib_format` (`idformat`, `format`, `type`, `description`, `mm`, `cm`, `inch`) VALUES (1, 'Numérique', 'Numérique', '', 'pdf', 'pdf', 'pdf'), (2, 'In-plano', 'Univers', '', '1000 x 1300', '100 x 130', ''), (3, 'In-plano', 'Grand Monde', '', '900 x 1260', '90 x 126', ''), (4, 'In-plano', 'Grand Aigle', '', '750 x 1060', '75 x 106', ''), (5, 'In-plano', 'Petit Aigle', '', '700 x 940', '70 x 94', ''), (6, 'In-plano', 'Colombier', 'Affiche', '600 x 800', '60 x 80', ''), (7, 'In-plano', 'Colombier', 'commercial', '840 x 610', '84 x 61', ''), (8, 'In-folio', 'Colombier', '', '610 x 420', '61 x 42', ''), (9, 'In-quarto', 'Colombier', '', '420 x 305', '42 x 30,5', ''), (10, 'In-octavo', 'Colombier', '', '305 x 210', '30,5 x 21', ''), (11, 'In-duodecimo', 'Colombier', '', '210 x 150', '21 x 15', ''), (12, 'In-plano', 'Soleil', '', '600 x 800', '60 x 80', ''), (13, 'In-plano', 'Jésus', '', '700 x 540', '70 x 54', ''), (14, 'In-folio', 'Jésus', '', '540 x 350', '54 x 35', ''), (15, 'In-4', 'Jésus', '', '350 x 270', '35 x 27', ''), (16, 'In-8', 'Jésus', '', '270 x 175', '27 x 17,5', ''), (17, 'In-16', 'Jésus', '', '175 x 135', '17,5 x 13,5', ''), (18, 'In-18', 'Jésus', '', '185 x 115', '18,5 x 11,5', ''), (19, 'In-plano', 'Double Raisin', '', '650 x 1000', '65 x 100', ''), (20, 'In-plano', 'Demi Raisin', '', '325 x 500', '32,5 x 50', ''), (21, 'In-plano', 'Raisin', '', '640 x 490', '64 x 49', ''), (22, 'In-folio', 'Raisin', '', '490 x 320', '49 x 32', ''), (23, 'In-4', 'Raisin', '', '320 x 245', '32 x 24,5', ''), (24, 'In-8', 'Raisin', '', '245 x 160', '24,5 x 16', ''), (25, 'In-16', 'Raisin', '', '160 x 125', '16 x 12,5', ''), (26, 'In-18', 'Raisin', '', '165 x 105', '16,5 x 10,5', ''), (27, 'In-plano', 'Cavalier', '', '460 x 620', '46 x 62', ''), (28, 'In-plano', 'Carré', '', '560 x 450', '56 x 45', ''), (29, 'In-plano', 'Coquille', '', '560 x 440', '56 x 44', ''), (30, 'In-folio', 'Coquille', '', '440 x 280', '44 x 28', ''), (31, 'In-4', 'Coquille', '', '280 x 220', '28 x 22', ''), (32, 'In-8', 'Coquille', '', '220 x 140', '22 x 14', ''), (33, 'In-16', 'Coquille', '', '140 x 110', '14 x 11', ''), (34, 'In-18', 'Coquille', '', '145 x 90', '14,5 x 9', ''), (35, 'In-plano', 'Ecu', '', '400 x 520', '40 x 52', ''), (36, 'In-folio', 'Ecu', '', '260 x 400', '26 x 40', ''), (37, 'In-4', 'Ecu', '', '200 x 260', '20 x 26', ''), (38, 'In-8', 'Ecu', '', '130 x 200', '13 x 20', ''), (39, 'In-16', 'Ecu', '', '110 x 130', '11 x 13', ''), (40, 'In-18', 'Ecu', '', '133 x 86', '13,3 x 8,6', ''), (41, 'In-plano', 'Couronne', 'Très grand format : 35 à 40 cm', '360 x 460', '36 x 46', ''), (42, 'In-folio', 'Couronne', 'Format Atlas : 30 à 35 cm', '230 x 360', '23 x 36', ''), (43, 'In-4', 'Couronne', 'Format grand cahier : 25 à 30 cm', '230 x 180', '23 x 18', ''), (44, 'In-8', 'Couronne', 'Format petit cahier d\'écolier : 20 à 25', '180 x 115', '18 x 11,5', ''), (45, 'In-12', 'Couronne', 'Format livre de poche : 16 à 20 cm', '', '', ''), (46, 'In-16', 'Couronne', 'Format livre de poche : 10 à 16 cm', '115 x 90', '11,5 x 9', ''), (47, 'In-18', 'Couronne', 'Format livre de poche de moins de 10 cm', '120 x 77', '12 x 7,7', ''), (48, 'In-24', 'Couronne', 'Très petit format', '', '', ''), (49, 'In-32', 'Couronne', 'Très très petit format', '', '', ''), (50, 'In-plano', 'Tellière', '', '440 x 340', '44 x 34', ''), (51, 'In-plano', 'Ecolier', 'Pot', '400 x 310', '40 x 31', ''), (52, 'In-plano', 'Cloche', '', '400 x 300', '40 x 30', ''), (53, '4A0', 'ISO-216', '', '1682 x 2378', '', ''), (54, '2A0', 'ISO-216', '', '1189 à 1682', '', ''), (55, 'A0', 'ISO-216', '', '840 x 1189', '', ''), (56, 'A1', 'ISO-216', '', '594 x 840', '', ''), (57, 'A2', 'ISO-216', '', '420 x 594', '', ''), (58, 'A3', 'ISO-216', '', '297 x 420', '', ''), (59, 'A4', 'ISO-216', '', '210 x 297', '', ''), (60, 'A5', 'ISO-216', '', '148 x 210', '', ''), (61, 'A6', 'ISO-216', '', '105 x 148', '', ''), (62, 'A7', 'ISO-216', '', '74 x 105', '', ''), (63, 'A8', 'ISO-216', '', '52 x 74', '', ''), (64, 'A9', 'ISO-216', '', '37 x 52', '', ''), (65, 'A10', 'ISO-216', '', '26 x 37', '', ''), (66, '2B0', 'ISO-216', '', '2000 x 1414', '', ''), (67, 'B0', 'ISO-216', '', '1414 x 1000', '', ''), (68, 'B1', 'ISO-216', '', '1000 x 707', '', ''), (69, 'B2', 'ISO-216', '', '707 x 500', '', ''), (70, 'B3', 'ISO-216', '', '500 x 353', '', ''), (71, 'B4', 'ISO-216', '', '353 x 250', '', ''), (72, 'B5', 'ISO-216', '', '250 x 176', '', ''), (73, 'B6', 'ISO-216', '', '176 x 125', '', ''), (74, 'B7', 'ISO-216', '', '125 x 88', '', ''), (75, 'B8', 'ISO-216', '', '88 x 62', '', ''), (76, 'B9', 'ISO-216', '', '62 x 44', '', ''), (77, 'B10', 'ISO-216', '', '44 x 31', '', ''), (78, 'C0', 'ISO-216', '', '1297 x 917', '', ''), (79, 'C1', 'ISO-216', '', '917 x 648', '', ''), (80, 'C2', 'ISO-216', '', '648 x 458', '', ''), (81, 'C3', 'ISO-216', '', '458 x 324', '', ''), (82, 'C4', 'ISO-216', '', '324 x 229', '', ''), (83, 'C5', 'ISO-216', '', '229 x 162', '', ''), (84, 'C6', 'ISO-216', '', '162 x 114', '', ''), (85, 'C7', 'ISO-216', '', '114 x 81', '', ''), (86, 'C8', 'ISO-216', '', '81 x 57', '', ''), (87, 'C9', 'ISO-216', '', '57 x 40', '', ''), (88, 'C10', 'ISO-216', '', '40 x 28', '', ''), (89, 'D1', 'ISO-216', '', '779 x 545', '', ''), (90, 'D2', 'ISO-216', '', '545 x 385', '', ''), (91, 'D3', 'ISO-216', '', '385 x 272', '', ''), (92, 'D4', 'ISO-216', '', '272 x 192', '', ''), (93, 'D5', 'ISO-216', '', '192 x 136', '', ''), (94, 'D6', 'ISO-216', '', '136 x 96', '', ''), (95, 'D7', 'ISO-216', '', '96 x 68', '', ''), (96, 'E3', 'ISO-216', '', '560 x 400', '', ''), (97, 'E4', 'ISO-216', '', '400 x 280', '', ''), (98, 'E5', 'ISO-216', '', '280 x 200', '', ''), (99, 'E6', 'ISO-216', '', '200 x 140', '', ''), (100, 'Quarto', 'US-FORMAT', '', '254 × 203', '', '10 × 8'), (101, 'Foolscap', 'US-FORMAT', '', '330 × 203', '', '13 × 8'), (102, 'Executive', 'US-FORMAT', '', '267 × 184', '', '10½ × 7¼'), (103, 'Government-Letter', 'US-FORMAT', '', '267 × 203', '', '10½ × 8'), (104, 'Letter', 'US-FORMAT', '', '279 × 216', '', '11 × 8½'), (105, 'Legal', 'US-FORMAT', '', '356 × 216', '', '14 × 8½'), (106, 'Ledger', 'US-FORMAT', 'Tabloid', '432 × 279', '', '17 × 11'), (107, 'Post', 'US-FORMAT', '', '489 × 394', '', '19¼ × 15½'), (108, 'Crown', 'US-FORMAT', '', '508 × 381', '', '20 × 15'), (109, 'Large Post', 'US-FORMAT', '', '533 × 419', '', '21 × 16½'), (110, 'Demy', 'US-FORMAT', '', '572 × 445', '', '22½ × 17½'), (111, 'Medium', 'US-FORMAT', '', '584 × 457', '', '23 × 18'), (112, 'Royal', 'US-FORMAT', '', '635 × 508', '', '25 × 20'), (113, 'Elephant', 'US-FORMAT', '', '711 × 584', '', '28 × 23'), (114, 'Double Demy', 'US-FORMAT', '', '889 × 597', '', '35 × 23½'), (115, 'Quad Demy', 'US-FORMAT', '', '1143 × 889', '', '45 × 35'), (116, 'STMT', 'US-FORMAT', '', '216 × 140', '', '8½ × 5½'), (117, 'A', 'US-FORMAT', '', '279 × 216', '', '11 × 8½'), (118, 'B', 'US-FORMAT', '', '432 × 279', '', '17 × 11'), (119, 'C', 'US-FORMAT', '', '559 × 432', '', '22 × 17'), (120, 'D', 'US-FORMAT', '', '864 × 559', '', '34 × 22'), (121, 'E', 'US-FORMAT', '', '1118 × 864', '', '44 × 34'); -- -------------------------------------------------------- -- -- Structure de la table `bib_lieux` -- CREATE TABLE `bib_lieux` ( `idlieux` int(11) NOT NULL, `nom` varchar(20) CHARACTER SET latin1 NOT NULL DEFAULT '', `pays` char(2) CHARACTER SET latin1 NOT NULL DEFAULT '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_lieux` -- INSERT INTO `bib_lieux` (`idlieux`, `nom`, `pays`) VALUES (1, 'Aix en Provence', 'FR'), (2, 'Alençon', 'FR'), (3, 'Amiens', 'FR'), (4, 'Angleterre', 'GB'), (5, 'Annonay', 'FR'), (6, 'Argenton', 'FR'), (7, 'Arles', 'FR'), (8, 'Barcelone', 'ES'), (9, 'Baume-les-Dames', 'FR'), (10, 'Belgique', 'BE'), (11, 'Besançon', 'FR'), (12, 'Bontemps', 'FR'), (13, 'Bourges', 'FR'), (14, 'Cahors', 'FR'), (15, 'Charente', 'FR'), (16, 'Cologne', 'FR'), (17, 'Condé sur noire', 'FR'), (18, 'Darantière', 'FR'), (19, 'Dijon', 'FR'), (20, 'Evreux', 'FR'), (21, 'France', 'FR'), (22, 'Grande Bretagne', 'GB'), (23, 'Gap', 'FR'), (24, 'Grenoble', 'FR'), (25, 'Héricourt', 'FR'), (26, 'hong kong', 'HK'), (27, 'Italie', 'IT'), (28, 'jouve', 'FR'), (29, 'Köln', 'DE'), (30, 'La flèche', 'FR'), (31, 'Lausannes', 'CH'), (32, 'Liege', 'BE'), (33, 'Ligugé', 'FR'), (34, 'London', 'GB'), (35, 'Luçon', 'FR'), (36, 'Mâcon', 'FR'), (37, 'Malesherbe', 'FR'), (38, 'Manchecourt', 'FR'), (39, 'Marsat', 'FR'), (40, 'Marsdat', 'FR'), (41, 'Marseille', 'FR'), (42, 'Mayenne', 'FR'), (43, 'Milan', 'IT'), (44, 'Montréal', 'CA'), (45, 'Montrouge', 'FR'), (46, 'Nantes', 'FR'), (47, 'Nice', 'FR'), (48, 'Nîmes', 'FR'), (49, 'Palaiseau', 'FR'), (50, 'Paris', 'FR'), (51, 'Poitier', 'FR'), (52, 'Puyricard', 'FR'), (53, 'Quebec', 'CA'), (54, 'Rennes', 'FR'), (55, 'RFA', 'DE'), (56, 'Saint Amand', 'FR'), (57, 'San Francisco', 'US'), (58, 'Suisse', 'CH'), (59, 'Toulouse', 'FR'), (60, 'Tours', 'FR'), (61, 'Turin', 'IT'), (62, 'USA', 'US'), (63, 'Vanves', 'FR'), (64, 'Vendôme', 'FR'), (65, 'Vigneux', 'FR'), (66, 'Vincennes', 'FR'), (67, 'Freiburg', 'DE'); -- -------------------------------------------------------- -- -- Structure de la table `bib_links` -- CREATE TABLE `bib_links` ( `link_id` int(11) NOT NULL, `fid` int(11) NOT NULL, `link_title` varchar(100) NOT NULL, `link_text` varchar(200) NOT NULL, `link_url` tinytext NOT NULL, `datepub` date NOT NULL, `link_filename` text NOT NULL, `link_filesize` int(11) NOT NULL, `link_target` varchar(7) NOT NULL DEFAULT '_blank', `link_type` varchar(6) NOT NULL DEFAULT 'none' COMMENT 'menu,link,annals,press,biblio', `link_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp() ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Structure de la table `bib_livres` -- CREATE TABLE `bib_livres` ( `liv_id` int(11) NOT NULL, `liv_name` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `liv_cote` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `liv_cote9` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `liv_cote10` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `liv_cote11` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `liv_cote12` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `liv_statut` tinyint(4) NOT NULL COMMENT '0 search, 1 got, 2 no search ', `liv_comment` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `b1` tinyint(1) NOT NULL, `b2` tinyint(1) NOT NULL, `b3` tinyint(1) NOT NULL, `b4` tinyint(1) NOT NULL, `b5` tinyint(1) NOT NULL, `b6` tinyint(1) NOT NULL, `b7` tinyint(1) NOT NULL, `b8` tinyint(1) NOT NULL, `b9` tinyint(1) NOT NULL, `b10` tinyint(1) NOT NULL, `b11` tinyint(1) NOT NULL, `b12` tinyint(1) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_livres` -- INSERT INTO `bib_livres` (`liv_id`, `liv_name`, `liv_cote`, `liv_cote9`, `liv_cote10`, `liv_cote11`, `liv_cote12`, `liv_statut`, `liv_comment`, `b1`, `b2`, `b3`, `b4`, `b5`, `b6`, `b7`, `b8`, `b9`, `b10`, `b11`, `b12`) VALUES (1, 'Theodor Adorno, L\'Art et les arts, Paris, Desclée de Brouwer, 2002.', '701 ADO', '7.01 ADO A', '', '', '', 0, '', 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0), (2, 'Theodor Adorno et Max Horkheimer, La Dialectique de la raison (chap. « La productioindustrielle de biens culturels » ), Paris, Tel Gallimard, 1989.', ' 193 HOR ', '', '', '', '', 0, '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0), (3, 'Aristote, Poétique, Paris, Le Livre de poche, 1990.', '576', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (4, 'Charles Baudelaire, Exposition universelle (1855), dans Écrits esthétiques, Paris, 10/18, 1986 ;', '446', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (5, 'Richard Wagner et Tannhäuser à Paris (1861), in Charles, Baudelaire, OEuvres complètes, Paris, Robert Laffont, 1980.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (6, 'Hans Belting, Le Chef-d\'oeuvre invisible, Nîmes, éd. J. Chambon, 2003. ', ' 701 BEL', '7.01 BEL C', '', '', '', 0, '', 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0), (7, 'Pierre Bourdieu, La Distinction, critique sociale du jugement, Parus, éd. de Minuit, 1979, post-scriptum, pp. 565-585.', '305.5 BOU', '', '305.5 BOU', '', '', 0, '', 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0), (8, 'Collectif : Paragone : le parallèle des arts, éd. Klincksieck, 1990.', '', '', '', '', '', 9, 'achat', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (9, 'D\'Alembert, Encyclopédie, « Discours préliminaire », éd. GF, I, 1986.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (10, 'Denis Diderot, Encyclopédie, « Art », Paris, Garnier-Flammarion, I, 1986, pp. 247-257.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (11, 'Nelson Goodman, Langages de l\'art, ch. V, Nîmes, éd. J. Chambon, 1990.', '760', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (12, 'Nelson Goodman, chap. IV ( « Quand y a-t-il de l\'art ? »), dans Manières de faire des mondes, Nîmes, éd. J. Chambon, 1992.', '1214', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (13, 'Martin Heidegger, « L\'origine de l\'oeuvre d\'art », dans Chemins qui ne mènent nulle part, Paris, Tel Gallimard, 1986.', '652', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14, 'Nathalie Heinich, Du peintre à l\'artiste : artisans et académiciens à l\'âge classique, Paris, Minuit, 1993.', '709.032 HEI', '', '', '', '', 0, '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (15, 'Hegel, Cours d\'esthétique, Paris, Aubier, 1995-1997, trad. J.-P. Lefebvre et V. von Schenck, I, pp. 399-403 ; II, pp. 233-260 ; III, pp. 233-260 ; pp. 3-33, pp. 120-145, pp. 204-220.', '1249 1250 1251', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (16, 'Wassily Kandinsky W., Du spirituel dans l\'art, et dans la peinture en particulier, Paris, Folio Essais, 1991.', '122', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (17, 'Emmanuel Kant, Critique de la faculté de juger, § § 4,14, 42-54.', '660', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (18, 'Paul Oskar Kristeller, Le Système moderne des arts, Nîmes, J. Chambon, 1999.', 'achat', '', '', '', '', 0, 'achat', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (19, 'La Forme poétique du monde, Anthologie du romantisme allemand, Paris, José Corti, 2003.', '830.8 BLA', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (20, 'Lessing, Laocoon (1766), Paris, Hermann, 2002.', '701 LES', '7.01 LESS L', '', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (21, 'Marcella Lista, L\'oeuvre d\'art totale à la naissance des avant-gardes, Paris, Inha, 2006. ', '7.037 LIS O', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (22, 'L\'OEuvre d\'art totale, collectif, Paris, Gallimard-Musée du Louvre, 2003.', '701 OEU', '', '', '', '', 0, '', 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0), (23, ' Les Origines de l\'abstraction. 1800-1914, catalogue du Musée d\'Orsay, Paris, RMN, 2003.', '759.06AUX 759.05 EXP', '', '', '', '', 0, '', 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (24, 'Jacqueline Lichtenstein dir. La Peinture, Paris, Larousse, 1995 : VII « Le parallèle des arts » ; X « Les genres picturaux ».', '750 PEI', '75.01 PEI', '', '', '', 0, '', 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0), (25, ' William Morris, Contre l\'art d\'élite (1877), Paris, Hermann, 1985, « Les arts mineurs », pp. 9-33.', '709 MOR', '', '', '', '', 0, '', 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (26, ' Thomas Munro, Les Arts et leurs relations mutuelles, Puf, 1954. consultable Romain Gary', '', '', '', '', 'C.6873 ', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0), (27, ' Pouivet R., L\'OEuvre d\'art à l\'âge de sa mondialisation, Bruxelles, La lettre volée, 2003.', '1294', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (28, 'Lee Rensselaer-W, Ut pictura poesis, Paris, Macula, 1991.', '774', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (29, 'Georges Roques dir., Majeur ou mineur ? Les hiérarchies en art, éd. J. Chambon, 2000.', '701 MAJ', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (30, 'Jean-Marie Schäffer, L\'Art de l\'âge moderne, Paris, Gallimard, 1992, pp. 199-228.', '776', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (31, 'Richard Shusterman, L\'Art à l\'état vif, la pensée pragmatiste et l\'esthétique populaire, Paris, Minuit, 1991.', '1292', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (32, 'Theodor Adorno, Théorie esthétique, Paris, éd. Klincksieck, 1992, trad. M. Jimenez.', '572', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (33, 'Leon Battista Alberti, De la peinture, Paris, Macula Dédale, 1993, livre II, §§ 25-29, livre III, 51-53.', '57', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (34, 'Dominique Chateau, Arts plastiques : archéologie d\'une notion, éd. J. Chambon, 1999.', '701 CHA', '', '', '', '', 0, '', 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0), (35, 'Clement Greenberg, « Avant-garde et kitsch », « L\'état de la culture », dans Art et culture, Paris, Macula, 1997.', '115', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (36, 'Jacqueline Lichtenstein, La Couleur éloquente, Paris, Flammarion, 1989, 2ème partie. ', '752 LIC', '75.01 LIC C', '', '', '', 0, '', 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0), (37, 'Erwin Panofsky, Galilée, critique d\'art, trad. Nathalie Heinich, éd. Les Impressions nouvelles, 2001.', '701 PAN', '7.01 PAN Ga', '', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (38, 'Julie Ramos, Nostalgie de l\'unité. Paysage et musique dans la peinture de P. O. Runge et de C. D. Friedrich, Rennes, éd. PUR, 2008.', '56 RAM mediathèque', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (39, 'Léonard de Vinci, Carnets, Paris, Tel Gallimard, 1995, « Comparaison des arts », pp. 226-230.', '850 LEOt1&t2', '', '', '', '', 0, '', 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0), (40, 'Daniel Abadie, Jean-Luc Daval, Charles Delloye, Michel Dresch, L\'Art et la ville, urbanisme et art contemporain, Genève, Skira, 1990. ', '73.038/711 ART', '73.038/711 ART', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (41, 'Yves Aguilar, Un art de fonctionnaires, le 1 % : introduction aux catégories esthétiques de l\'État, Nîmes, J. Chambon, 1998. ', '7.07 AGU U', '7.07 AGU U', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (42, 'Paul Ardenne, Un art contextuel : création artistique en milieu urbain, en situation, d\'intervention, de participation (éd. revue), Paris, Flammarion, 2004.', '709.04 ARD', '7.038 ARD U', '', '', '', 0, '', 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0), (43, 'Marc Augé, Non-lieux, introduction à une anthropologie de la surmodernité, Paris, Seuil, 1992. ', '306 AUG', '114 AUG N ', '', '', '', 0, '', 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0), (44, 'Penny Balkin Bach (dir.), New Land Marks: public art, community, and the meaning of place, Washington, Éditions Ariel, 2001.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (45, 'Stephen Barber, Projected Cities. Cinema and Urban Space, London, Reaktion Books, 2002.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (46, 'Raul A. Barreneche, Nouveaux Musées, Londres-Paris, Phaidon, 2005.', '727 BAR', '', '727.6 BAR', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), (47, 'Giorgina Bertolino, Francesca Comisso, Lisa Parola, Luisa Perlo, Nuovi committenti. Arte contemporanea, società e spazio publico, Milan, Silvana Editoriale, 2008.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (48, 'Casey Nelson Blake, The Arts of Democracy: Art, Public Culture, and the State, Philadelphia, University of Pennsylvania Press, 2007.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (49, 'Claudia Büttner, Kunstprojekteriem. Öffentliche Kunst für einen Münchner Stadtteil, Wien, Springer, 2004.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (50, 'Jean-Luc Chalumeau, L\'Art dans la ville, Paris, Cercle d\'Art, 2000.', '710.9 CHA', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (51, 'Jean-Luc Chalumeau, L\'Art et la ville (catalogue exposition, Sénat), Paris, Cercle d\'art, 2005.', '710 CHA', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (52, 'Anne-Marie Charbonneaux et Norbert Hillaire (dir.), OEuvre et lieu : essais et documents, Paris, Flammarion, 2002.', '862', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (53, 'Alain Charre (dir.), Art et espace publics, Givors, OMAC-Maison du Rhône, 1992. consultable RG', '', '', '', '', 'C.17629', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0), (54, 'Philippe Chaudoir, Discours et figures de l\'espace public à travers les « arts de la rue ». La ville en scène, Paris, L\'Harmattan, 2000. BPI L3', '792(44)\"4\" CHA ', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (55, 'Collectif (Veduta - Biennale de Lyon), L\'Art, le territoire. Art, espace public, urbain, Lyon, Éd. Du Certu, 2008.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (56, 'Collectif, L\'Art et la ville, art dans la vie : l\'espace public vu par les artistes en France et à l\'étranger depuis 10 ans (catalogue exposition), Paris, Fondation nationale des arts graphiques et plastiques, 1978.', '710.9 ART (RC)', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (57, 'Collectif, Monument et modernité à Paris : art, espace public et enjeux de mémoire, 1891-1996 (catalogue exposition, Espace Electra), Paris, Éd. Paris-musées, 1996. ', '', '', '', '', 'C PARI ELEC 1996 2', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (58, 'Collectif, Paris ville lumière, projets d\'artistes pour l\'espace public parisien (catalogue exposition, Espace Electra), Paris, Paris-musées, 1993.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (59, 'Collectif, PLOP, Recent projects of the Public Art Fund, Merrell London-New York, 2004', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (60, 'Caroline Cros, Laurent Le Bon L., L\'Art à ciel ouvert. Commandes publiques en France, 1983-2007, Paris, Flammarion, 2008.', '709.04 ART', '729 ART', '709.04 ART', '', '', 3, '', 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0), (61, 'André Ducret, L\'Art dans l\'espace public : une analyse sociologique, Zürich, Seismo, 1994.', '1330', '', '', '', '', 1, 'acheté', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (62, ' Felix Duque, Arte pÅ“blico y espacio politico, Madrid, Akal Ediciones, 2001.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (63, 'Monique Faux (dir.), L\'art renouvelle la ville (exposition, Musée des monuments français), Paris, Urbanisme et art contemporain, 1995.', '1331', '', '', '', '', 1, 'acheté', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (64, 'Sarah Gaventa, New Public Spaces, London, Mitchell Beazley, 2006.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (65, 'Geneviève Gentil, Philippe Poirrier, La Politique culturelle en débat : anthologie 1955-2005, Paris, La Documentation française, 2006.', '1334', '', '', '', '', 1, 'acheté', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (66, 'Mel Gooding (dir.), Public : Art : Space. A Decade of Public Art Commissions Agency, 1987-1997, London, Merrell Holberton, 1998.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (67, 'Marienne Homiridis, Perrine Lacroix P., L\'Art contemporain dans les espaces publics. Territoire du Grand Lyon 1978/2008, Lyon, éd. La BF15, 2008. ', '', '', '', '', 'L3 704.409 HOM', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (68, 'Christian Hundertmark (C100), The Art of Rebellion, World of urban Art activism, Corte Madera, Gingko press, 2004.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (69, 'Thierry Jousse, Thierry Paquot (dir.), La Ville au cinéma, Paris, Cahiers du Cinéma-Éd. de l\'Étoile, 2005.', '791.43 VIL', '', '', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (70, 'Sylvie Lagnier, Sculpture et espace urbain en France, Histoire de l\'instauration d\'un dialogue, 1951-1992, Paris, L\'Harmattan, 2001. ', '', '', '', '', 'L3 913.31 LAG', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (71, 'Maud Le Floc\'h (dir.), Un élu, un artiste : Mission Repérage(s). 17 rencontres itinérantes pour une approche sensible de la ville, Montpellier, éd. L\'Entretemps, 2006.', '', '', '', '', 'L3 913.31(44) EL', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (72, 'Stéphanie Lemoine, Julien Terral, In situ, un panorama de l\'art urbain de 1975 à nos jours, Paris, Éditions Alternatives, 2005.', '709.04 LEM', '', '', '', '', 0, '', 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0), (73, 'Fabrice Lextrait, Frédéric Kahn, Nouveaux Territoires de l\'art (colloque), Paris, Secrétariat d\'État au patrimoine et à la décentralisation culturelle, 2005.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (74, 'Christoph Lindner, Urban Space and Cityscapes: Perspectives from modern and contemporary Culture, London, New York, Routledge, 2006.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (75, 'Ariella Masboungi (dir.), Penser la ville par l\'art contemporain, Paris, Éd. de la Villette, 2004.', '710.1 PEN', '711 / 7.038 PEN', '', '', '', 0, '', 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0), (76, 'Ariella Masboungi (dir.), Penser la ville par la lumière, Paris, Éd. de la Villette, 2003.', '710 PEN ', '711 / 628.9 PEN', '628.95 MAS', '', '', 3, '', 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0), (77, 'Malcolm Miles, Art, Space and the City. Public art and urban futures, London, New York, Routledge, 1997.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (78, 'W. J. T. Mitchell, Art and the Public Sphere, Chicago, University of Chicago Press Journals, 1992.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (79, 'Larissa Noury, La Couleur dans la ville, Paris, éd. Le Moniteur, 2008.', '729 NOU', '', '', '', '', 0, '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0), (80, 'Louise O\'Reilly, Edward Allington, Simon Read et al., Re Views: Artists and Public Space, London, Black Dog Publishing, 2005.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (81, 'Bartolomeo Pietromarchi, The (Un)common Place : Art, Public Space and Urban Aesthetics in Europe, Barcelona, Fondazione Adriano Olivetti-Actar, 2005.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (82, 'Philippe Poirrier, Société et culture en France depuis 1945, Paris, Seuil, 1998. ', '944.083 POI', '', '305.844 POI', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), (83, 'Paul-Louis Rinuy, La Sculpture commémorative dans l\'espace public au XXème siècle, Paris, Scéren-CNDP, 2006.', '1333', '', '', '', '', 1, 'acheté', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (84, 'Denys Riout, Le Livre du graffiti, Paris, éd. Alternatives, 1985.', '729 RIO', '', '751.73 RIO', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), (85, 'Jean-Pierre Rioux, Jean-François Sirinelli, Histoire culturelle de la France, tome 4, Le temps des masses, Paris, Éd. du Seuil, 1998.', '944 HIS', '', '306.4 HIS (T.4)', '', '', 0, '', 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0), (86, 'Jean-François Robic, Germain Roesz, Sculptures trouvées. Espace public et invention du regard, Paris, L\'Harmattan, 2003. ', '', '', '', '', 'L3 704.409 ROB', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (87, 'Rainer Rochlitz, Subversion et subvention. Art contemporain et argumentation esthétique, Paris, Gallimard, 1994.', '701 ROC', '', '', '', '', 0, '', 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0), (88, 'Christian Ruby, L\'Art public, un art de vivre la ville, Bruxelles, La Lettre volée, 2001.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (89, ' Wolfgang Seitz, Vorfahrt. Kunst im Spannungsfeld zwischen Privatheit und €¦ffentlichkeit (Gebundene Ausgabe), Stuttgart, Arnoldsche Verlagsanstalt, 2006.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (90, '- Harriet F. Senie, The Tilted Arc Controversy: Dangerous Precedent ? Minneapolis, University of Minnesota Press, 2002.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (91, '- Harriet F. Senie, Webster S., Critical Issues in public Art : Content, Context, and Controversy, Washington, Smithsonian Institution Press, 1998.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (92, 'Michael Spens, Paysages contemporains, Paris, Phaidon Press Ltd., 2005. ', '712 SPE (RC)', '', '712 SPE', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0), (93, 'Marianne Strom, Metro-art et metro-poles, Paris, ACR Édition, 1994. ', '388 STR GD FORMAT', '', '', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (94, 'John T. Young, Contemporary public Art in China : aphotographic Tour, Seattle, University of Washington Press, 1999.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (95, 'Jef Aérosol, VIP : very important pochoirs, Paris, éd. Alternatives, 2007. ', '751 JEF', '', '751.73 AER', '', '', 0, '', 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0), (96, ' Gautier Bischoff, Julien Malland, Kapital, un an de graffiti à Paris, Paris, éd. Alternatives, 2000.', 'PARIS 729 BIS\n745 BI', '', '751.73 BIS', '', '', 0, '', 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0), (97, 'Daniel Buren, Ponctuations, statue/sculpture, « 100 mots sans textes », Lyon mai 1980, Le Nouveau Musée, Lyon, novembre1980.', '7.06 BUR Po ', '7.06 BUR Po', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (98, 'Daniel Buren, à force de descendre dans la rue, l\'art peut-il enfin y monter ?, Paris, éd. Sens & Tonka, 1998.', '730.4 BUR', '', '', '', '', 0, '', 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), (99, 'Thierry Laurent, Mots-clés pour Daniel Buren, éd. Au même titre, Paris, 2002.', '730.092 BUR (RC)', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (100, 'Didier Dauphin, Jacques Villeglé ou l\'éclatement régénérant des signes, Paris, Archibooks, 2008. ', '', '', '', '', ' L3 70\"19\" VILL.J', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (101, ' DurozoI G., Jacques Villeglé : oeuvres, écrits, entretiens, Paris, Hazan, 2008. ', '759 VIL', '', '759 VIL', '', '', 3, '', 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0), (102, 'Michel Espagnon, Jean Gabaret, VLP, Vive la peinture, Paris, Critères, 2003.', '750.944 VIV', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0), (103, 'Jean Faucheur, Jusque-là tout va bien !, Paris, éd. Critères, 2004.', '751 FAU', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0), (104, 'Tom Finkelpearl, Dialogues in public Art : Interviews, Cambridge MA, MIT Press, 2000.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (105, 'Christophe Genin, Miss.Tic, femme de l\'être, Paris, éd. Les Impressions Nouvelles, 2008.', '751 GEN', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (106, 'Invader, L\'invasion de Paris, Paris, éd. Franck Slama, 2003. ', '70\"20\" INVA 2 ', '', '', '', 'x', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (107, 'Jérôme Mesnager, 20 ans qu\'il court, Paris, Critères éd., 2002.', '750.4 MES', '', '', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (108, 'Renzo Piano, Richard Rogers, Du plateau Beaubourg au Centre Georges-Pompidou, entretien avec Antoine Picon, Paris, Centre Georges-Pompidou, 1987.', '725 PIA GD.FORMAT 72', '', '', '', '', 0, '', 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (109, 'Marcellin Pleynet M., Ernest Pignon-Ernest, L\'homme habite poétiquement. Entretiens avec Ernest Pignon-Ernest, Arles, Actes sud, 2003.', '750.1 PLE (RC)', '7.01 PIGN H', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), (110, 'Richard Serra, Écrits et entretiens : 1970-1989, Paris, D. Lelong éd., 1990.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (111, 'Speedy Graphito, Fast culture, Paris, éd. Alternatives, 2008.', '750.4 SPE flandre 19', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (112, 'Georges Perec, Espèces d\'espaces, Paris, Galilée, 1974.', '844 PER', '159.9 PER E', '', '', '', 0, '', 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0), (113, 'Jacques Roubaud, La forme d\'une ville change plus vite, hélas, que le coeur des humains, Paris, Gallimard, 1999.', '841 ROU', '', '', '', '', 0, '', 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (114, 'Raymond Bozier, Fenêtres sur le monde, Paris, Fayard, 2004.', 'BOZ (RC)', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (115, 'Alberti, Leon Battista, La Peinture, trad. T. Golsenne et B. Prévost, revue par Y. Hersant, Paris, Le Seuil, 2004.', '57', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (116, 'Aristote, La Poétique, trad. B. Gernez, Paris, Les Belles Lettres, 1997.', '576', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (117, 'Baudelaire, Charles, Écrits esthétiques, UGE-10/18, 1986.', '446', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (118, 'Conférences de l\'Académie royale, éd. J. Lichtenstein et C. Michel, Paris, ENS-BA, 2006-2010 (5 volumes).', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (119, 'Delacroix, Eugène, Journal, Paris, Plon, 1996.', '848 DEL', '75.06 DEL J', '759 DEL', '', '', 3, '', 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0), (120, 'Diderot, Denis, Salons, éd. M. Delon, Paris, Folio Gallimard, 2008.', 'DID', '', '709.44 DID', '', '', 3, '', 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0), (121, 'Léonard de Vinci, Traité de la peinture, éd. A. Chastel, Paris, Calmann-Lévy, 2003.', '750.1 LEO', '', '750.1 LEO', '', '', 0, '', 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0), (122, 'Lessing, Gotthold Ephraim, Laocoon, trad. Courtin, Paris, Hermann, 1990.', '701 LES', '', '', '', '', 0, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (123, 'Poussin, Nicolas, Lettres et propos sur l\'art, éd. A. Blunt, Paris, Hermann, 1964.', '701 POU', '7.01 POU L', '', '', '', 0, '', 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0), (124, 'Winckelmann, Johann Joachim, Histoire de l\'art dans l\'Antiquité, trad. D. Tassel, Paris, Librairie générale française, 2005.', '709.01 WIN', '', '709.2 WIN', '', '', 3, '', 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0), (125, '- Alpers, Svetlana, « Describe or Narrate? A Problem in Realistic Representation », New Literary History n ¡ 8 (1976), p. 15-41.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (126, 'Alpers, Svetlana, L\'Art de dépeindre. La peinture hollandaise au XVIIème siècle, trad. J. Chavy, Paris, Gallimard, 1990.', '759.949 ALP', '75 (492) ALP A', '', '', '', 0, '', 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0), (127, '- Andrews, Lee, Story and Space in Renaissance Art. The Rebirth of Continuous Narrative, Cambridge, Cambridge University Press, 1998.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (128, 'Antoine, Jean- Philippe, « Mémoire, lieux et invention spatiale dans la peinture italienne des XIIIème et XIVème siècles » in, Six Rhapsodies froides sur le lieu, l\'image et le souvenir, Paris, Desclée de Brouwer, 2002, p. 53-98. ', '', '', '', '', 'L3 7.01 ANT', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), (129, 'Arasse, Daniel, Décors italiens de la Renaissance, Paris, Hazan, 2009. ', '759.5 ARA', '', '759.5 ARA', '', '', 3, '', 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0), (130, 'Arasse, Daniel, Histoires de peinture, Paris, Folio Gallimard, 2006.', '1240', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (131, 'Arasse, Daniel, L\'Annonciation italienne. Une histoire de perspective, Paris, Hazan, 1999.', '859', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (132, 'Belting, Hans, L\'Image et son public au Moyen Age, trad. F. Israel, Paris, Gérard Monfort, 1998.', '709.02 BEL', '', '', '', '', 0, '', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0), (133, 'Bailey, Colin B., « Mythologie galante ou l\'art ingénieux : les récits cachés dans la peinture mythologique en France au XVIIIème siècle « in S. Deswarte-Rosa (éd.), À travers l\'image, lecture iconographique et sens de l\'oeuvre, Paris, Klincksieck, 1994, p. 151-163.', '', '', '', '704.9 DES ', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0), (134, 'Bailey, Colin B. (éd.), Les Amours des dieux. La peinture mythologique de Watteau à David, Paris, Rmn, 1991 ', '753 EXP trocadero !', '', '', 'D.3878', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0), (135, 'Bailly, Jean-Christophe, Le Champ mimétique, Le Seuil, Paris, 2005.', '913', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (136, 'Barthes, Roland, « Diderot, Brecht, Eisenstein », in L\'Obvie et l\'obtus, Paris, Points Seuil, 1982, p. 86-93.', '704 BAR', '43 BAR O', '', '', '', 0, '', 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0), (137, 'Barthes, Roland, « Introduction à l\'analyse structurale des récits », in L\'Aventure sémiologique, Paris, Points Seuil, 1985, p. 167-206. ', '401 BAR', '', '844 BAR', '', '', 0, '', 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0), (138, 'Bonfait, Olivier (éd.), « La Description de l\'oeuvre d\'art. Du modèle classique aux variations contemporaines », Actes du colloque « La descrizione dell\'opera d\'arte : dal modello classico della ecphrasis umanistica alle sue variazioni contemporanee » (Rome, Villa Médicis, 13-15 juin 2001), Paris, Somogy-Académie de France à Rome, 2004.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (139, 'Bordes, Philippe et Michel, Régis (éds.), Aux armes et aux arts ! Les arts de la révolution. 1789-1799, Paris, Adam Biro, 1988.', '709.44 AUX (RC)', '', '709.44 AUX', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), (140, 'Brown, Christopher, La Peinture de genre hollandaise au XVIIème siècle, Paris, Vilo, 1984.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (141, 'Careri, Giovanni, Gestes d\'amour et de guerre. La Jérusalem délivrée, images et affects (XVIème-XVIIIème siècles), Paris, Éditions de l\'EHESS, 2005.', '1332', '', '', '', '', 1, 'acheté', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (142, 'Collectif, Les Années romantiques : la peinture française de 1815 à 1850, Cat. d\'exposition, Musée des Beaux-Arts, Grand-Palais, Paris, RMN, 1995.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (143, 'Collectif, L\'Invention du sentiment. Aux sources du romantisme, Cat. d\'exposition Cité de la musique, Paris, RMN, 2002.', '709.034 EXP', '', '', '', '', 0, '', 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0), (144, '- Crow, Thomas, « Classicism in crisis : Gros to Delacroix », in S. F. Eisenman (éd.), Nineteenth Century Art : A Critical History, Londres, Thames and Hudson, 1994, p. 51-77.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (145, 'Crow, Thomas, La Peinture et son public en France au XVIIIème siècle, Paris, Macula, 2000.', '759.4 CRO', '', '', '', '', 0, '', 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0), (146, 'Damisch, Hubert, Le Jugement de Pâris, Paris, Champs-Flammarion, 1997.', '742', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (147, 'Démoris, René, « Du texte au tableau : les avatars du lisible de Le Brun à Greuze », in P. Mourier- Casile et D. Moncond\'huy (éds.), Lisible/visible : problématiques, La licorne, n ¡ 23, 1992 (disponible sur internet : http://www.fabula.org/colloques/document608.php).', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (148, 'Didi-Huberman, Georges, « Puissance de la figure. Exégèse et visualité dans l\'art chrétien », in L\'Image ouverte. Motifs de l\'incarnation dans les arts visuels, Paris, Gallimard, 2007. ', '704 DID\r\n', '7.01 DIDI IM', '', '', '', 0, '', 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0), (149, 'Didi-Huberman, Georges, Fra Angelico. Dissemblance et figuration, Paris, Champs-Flammarion, 1992.', '', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (150, 'Didi-Huberman, Georges, Saint Georges et le dragon, Paris, Adam Biro, 1994.', '704 DID', '', '', '', '', 0, '', 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), (151, '- Fortini Brown, Patricia, Venetian Narrative Painting in the Age of Carpaccio, New Haven et Londres, Yale University Press, 1988.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (152, 'Francastel, Pierre, La Figure et le lieu. L\'ordre visuel du Quattrocento, Paris, Gallimard, 1967.', '111', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (153, 'Fried, Michael, Le Réalisme de Courbet, trad. M. Gautier, Paris, Gallimard, 1993 (pour l\'avant propos, p. 13-58).', '759.4 FRI 750.944 FR', '75.01 FRI R', '', '', '', 0, '', 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0), (154, 'Fried, Michael, La Place du spectateur, trad. C. Brunet, Paris, Gallimard, 1990.', '755', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (155, '- Greenstein, Jack M., Mantegna and Painting as Historical Narrative, Chicago, Londres, Chicago University Press, 1992.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (156, 'Greimas, A. Julien, « Pour une théorie de l\'interprétation du récit mythique », in Du sens. Essais sémiotiques, Paris, Le Seuil, 1970, p. 185-230.', '410 GRE', '', '', '', '', 0, '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (157, 'Kintzler, Catherine, « L\'instant décisif dans la peinture : études sur Coypel, De Troy et David », in A. Boissière et C. Kintzler (éd.) Musique et peinture. Penser la vision, penser l\'audition, Villeneuve d\'Ascq, Presses universitaires du Septentrion, 2003 (disponible en version abrégée sur internet : http://www.mezetulle.net/article-28231876.html).', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (158, 'Lavin, Marilyn Aronberg, The Place of Narrative. Mural Decoration in Italian Churches, 431-1600, Chicago-Londres, University of Chicago Press, 1990.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (159, 'Lee, R. W., Ut pictura poesis. Humanisme et théorie de la peinture. XVème-XVIIIème siècles, trad. M. Brock, Paris, Macula, 1988.', '774', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (160, 'Laframboise, Alain et Siguret, Françoise (éds.), Andromède ou le héros à l\'épreuve de la beauté, Paris, Klincksieck, 1996.', '56', '', '', '', '', 9, 'achat', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (161, 'Lamblin, Bernard, Peinture et temps, Paris, Méridiens-Klincksieck, 1983. ', '750.1 LAM', '75.01 LAM P', '', '', '', 0, '', 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0), (162, 'Lojkine, Stéphane, L\'OEil révolté. Les Salons de Diderot, Nîmes, Jacqueline Chambon, 2007.', '709.4 LOJ (RC)', '', '709.44 LOJ', '', '', 3, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), (163, 'Marin, Louis, Détruire la peinture, Paris, Champs-Flammarion, 2008.', '679', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (164, 'Marin, Louis, Opacité de la peinture. Essais sur la représentation au Quattrocento, Paris, Éditions de l\'EHESS, 2006.', '759.5 MAR 750.945 MA', '75.01 MAR O ', '', '', '', 0, '', 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0), (165, 'Marin, Louis, Sublime Poussin, Paris, Le Seuil, 1998.', '750.4 POU', '', '', '', '', 0, '', 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0), (166, 'Marin, Louis, Des pouvoirs de l\'image, Paris, Le Seuil, 1998.', '678', '', '', '', '', 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (167, 'Marin, Louis, De la représentation, Paris, Hautes Études, Gallimard, Le Seuil, 1993.', '701 MAR', '', '', '', '', 0, '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0), (168, 'Panofsky, Erwin, Essais d\'iconologie, trad. B. Teyssèdre, Paris, Gallimard, 1969. ', '709.02 PAN', '7.034.1 PAN E', '', '', '', 0, '', 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0), (169, 'Putffarken, Thomas, Titian and Tragic Painting, New Haven et Londres, Yale University Press, 2005.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (170, 'Prévost, Bertrand, La Peinture en actes. Gestes et manières dans l\'Italie de la Renaissance, Arles, Actes Sud, 2007', '', '', '', '', '', 9, 'achat', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (171, 'Propp, Vladimir, Morphologie du conte, Paris, Points Seuil, 1970.', '809.3 PRO', '', '398.2 PRO', '', '', 0, '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0), (172, 'Pupil, François, Le Style troubadour ou la nostalgie du bon vieux temps, Nancy, Presses universitaires de Nancy, 1985.', '', '', '', 'B.79234', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0), (173, 'Ringbom, Sixten, De l\'icône à la scène narrative, trad. P. Joly et L. Milési, Paris, Gérard Monfort, 1997. ', '1335', '', '', '', '', 1, 'acheté', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (174, 'Rosenblum, Robert, L\'Art au XVIIIème siècle. Transformations et mutations, Paris, Gérard Monfort, 1989.', '709.03 ROS (RC)', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (175, 'Rosenthal, Léon, Du romantisme au réalisme. Essai sur l\'évolution de la peinture en France de 1830 à 1848, Paris, Macula, 1987.', '759.4 ROS', '75.035 ROS D ', '', '', '', 0, '', 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0), (176, 'Siguret, Françoise, L\' OEil surpris, perception et représentation dans la 1ère moitié du XVIIème siècle, Paris, Klincksieck, 1993.', '', '', '', '', '', 9, 'achat', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (177, 'Thuillier, Jacques, « Temps et tableau : la théorie des \"péripéties\" dans la peinture française du XVIIème siècle », in Akten des 21. Internationalen Kongresses fuür Kunstgeschichte in Bonn 1964, Berlin, 1967, p. 191-206.', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (178, 'Thuillier, Jacques et Lavalle, Denis, La Galerie des glaces. Chef d\'oeuvre retrouvé, Paris, Gallimard, 2007.', '728 THU', '', '728.8 THU', '', '', 3, '', 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0), (179, 'Unglaub, Jonathan, Poussin and the Poetics of Painting. Pictorial Narrative and the Legacy of Tasso, New York, Cambridge University Press, 2006.', '', '', '', '', '', 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (180, 'Wajcman, Gérard, Fenêtre. Chroniques du regard et de l\'intime, Paris, Verdier, 2004.', '190 WAJ', '', '', '', '', 0, '', 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0), (181, 'Wirth, Jean, L\'Image à l\'époque gothique, Paris, Le Cerf, 2008.', '709.02 WIR', '', '709.22 WIR', '', '', 3, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0); -- -------------------------------------------------------- -- -- Structure de la table `bib_logs` -- CREATE TABLE `bib_logs` ( `logid` int(11) NOT NULL, `ips` varchar(15) NOT NULL, `ldate` datetime NOT NULL, `logcount` tinyint(2) NOT NULL, `userid` tinyint(2) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_logs` -- INSERT INTO `bib_logs` (`logid`, `ips`, `ldate`, `logcount`, `userid`) VALUES (1, '82.230.98.104', '2011-09-07 10:56:19', 4, 1), (2, '82.230.98.104', '2011-09-07 13:01:12', 1, 0), (3, '82.230.98.104', '2011-09-09 23:24:16', 1, 0), (4, '82.230.98.104', '2011-09-10 18:02:12', 1, 1), (5, '82.230.98.104', '2011-09-10 20:22:51', 1, 0), (6, '82.230.98.104', '2011-09-11 07:10:50', 1, 1), (7, '82.230.98.104', '2011-09-11 22:32:08', 1, 0), (8, '82.122.110.176', '2011-09-13 09:02:38', 1, 0), (9, '86.73.0.117', '2011-09-13 17:03:41', 1, 0), (10, '82.230.98.104', '2011-09-14 10:19:04', 1, 1), (11, '82.230.98.104', '2011-09-14 12:19:43', 1, 0), (12, '82.230.98.104', '2011-09-15 18:52:54', 1, 0), (13, '82.230.98.104', '2011-09-19 06:19:41', 1, 0), (14, '86.73.0.242', '2011-09-23 18:59:06', 1, 0), (15, '86.73.0.242', '2011-09-25 17:57:55', 1, 0), (16, '86.73.0.242', '2011-09-27 11:53:46', 1, 0), (17, '82.230.98.104', '2011-10-07 05:52:59', 1, 1), (18, '82.230.98.104', '2011-10-07 17:03:37', 1, 0), (19, '82.230.98.104', '2011-10-23 12:44:20', 1, 0), (20, '82.230.98.104', '2011-10-24 07:01:49', 1, 0), (21, '82.230.98.104', '2011-11-02 18:01:15', 1, 0), (22, '82.230.98.104', '2011-11-03 11:28:32', 1, 0), (23, '82.230.98.104', '2011-11-09 19:05:17', 1, 0), (24, '82.230.98.104', '2011-11-17 07:38:56', 1, 0), (25, '84.103.218.54', '2011-11-25 13:01:06', 1, 0), (26, '82.230.98.104', '2011-11-25 13:22:05', 1, 0), (27, '82.230.98.104', '2011-12-11 13:31:35', 1, 0), (28, '82.230.98.104', '2011-12-30 09:25:16', 1, 0), (29, '82.230.98.104', '2012-01-31 11:27:35', 1, 0), (30, '82.230.98.104', '2012-02-03 16:23:44', 1, 0), (31, '82.230.98.104', '2012-04-01 13:09:41', 1, 0), (32, '82.230.98.104', '2012-08-11 21:35:27', 5, 1), (33, '82.230.98.104', '2012-08-12 11:55:59', 1, 0), (34, '82.230.98.104', '2012-08-13 09:16:02', 1, 0), (35, '88.170.164.203', '2012-08-21 08:58:52', 1, 0), (36, '82.230.98.104', '2012-09-02 15:14:58', 1, 0), (37, '82.230.98.104', '2012-09-04 15:33:55', 1, 0), (38, '88.170.164.203', '2012-09-06 06:45:13', 9, 0), (39, '82.230.98.104', '2012-10-12 11:52:38', 1, 0), (40, '82.230.98.104', '2012-10-13 09:13:01', 1, 0), (41, '82.230.98.104', '2012-10-15 16:40:18', 1, 0); -- -------------------------------------------------------- -- -- Structure de la table `bib_menu` -- CREATE TABLE `bib_menu` ( `menuid` int(11) NOT NULL, `linkid` int(11) NOT NULL DEFAULT 0, `parentid` int(11) NOT NULL DEFAULT 0, `menu_name` varchar(6) NOT NULL DEFAULT '' COMMENT 'header,footer,links', `menu_sort` smallint(6) NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Structure de la table `bib_options` -- CREATE TABLE `bib_options` ( `dashboard_id` int(11) NOT NULL, `title` varchar(100) NOT NULL, `param` text NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Déchargement des données de la table `bib_options` -- INSERT INTO `bib_options` (`dashboard_id`, `title`, `param`) VALUES (1, 'suspended_site', '1'), (2, 'contact_email', 'mti.android@gmail.com'), (3, 'doctype', 'html5'), (4, 'html_open', '<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"FR\">'), (5, 'charset', 'utf8'), (6, 'meta_keyword', '<meta name=\"Identifier-URL\" content=\'http://lab.tissier.name\' />\r\n\r\n<meta name=\"Author\" content=\"Michel TISSIER\" />\r\n<meta name=\"Publisher\" content=\"Michel TISSIER \" />\r\n<meta name=\"Reply-to\" content=\"lab@tissier.name\" />\r\n\r\n<meta name=\"Copyright\" content=\" Copyright Michel TISIER\" />\r\n<meta name=\"Generator\" content=\"Eclipse, SciTE\" />\r\n<meta name=\"Date\" content=\"mon, 21 Jun 1999 23:13:00\" />\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta http-equiv=\"content-language\" content=\"fr\" />\r\n\r\n<meta name=\"robots\" content=\"index,follow,all\" />\r\n<meta name=\"REVISIT-AFTER\" content=\"15\" />\r\n<meta name=\"Expires\" content=\"never\" />'), (7, 'menu_header', ''), (8, 'menu_footer', ''), (9, 'menu_sidebar1', 'a:7:{i:0;a:3:{i:0;i:1;i:1;i:0;i:2;i:1;}i:1;a:3:{i:0;i:2;i:1;i:0;i:2;i:2;}i:2;a:3:{i:0;i:3;i:1;i:0;i:2;i:3;}i:3;a:3:{i:0;i:4;i:1;i:0;i:2;i:4;}i:4;a:3:{i:0;i:5;i:1;i:0;i:2;i:5;}i:5;a:3:{i:0;i:6;i:1;i:0;i:2;i:6;}i:6;a:3:{i:0;i:7;i:1;i:0;i:2;i:7;}}'), (10, 'menu_sidebar2', 'a:3:{i:0;a:3:{i:0;i:8;i:1;i:0;i:2;i:1;}i:1;a:3:{i:0;i:9;i:1;i:0;i:2;i:2;}i:2;a:3:{i:0;i:10;i:1;i:0;i:2;i:3;}}'), (11, 'suspended_site_mobi', '1'); -- -------------------------------------------------------- -- -- Structure de la table `bib_posts` -- CREATE TABLE `bib_posts` ( `postid` int(11) NOT NULL, `author` int(4) NOT NULL, `post_title` varchar(100) NOT NULL, `header1` varchar(200) NOT NULL COMMENT 'H1', `seo_paragraph` tinytext NOT NULL COMMENT 'H1 p', `seo_metakeyword` tinytext NOT NULL, `post_content` longtext NOT NULL, `post_type` varchar(7) NOT NULL COMMENT 'post,widget,page', `post_name` varchar(24) NOT NULL, `file_name` varchar(24) NOT NULL COMMENT '.php', `creation_date` datetime NOT NULL, `modification_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp(), `publish` char(1) NOT NULL DEFAULT 'Y' COMMENT 'Y, N', `parent_id` int(4) NOT NULL DEFAULT 0, `order` int(4) NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Structure de la table `bib_purchase` -- CREATE TABLE `bib_purchase` ( `idpurchase` int(11) NOT NULL, `idinventaire` int(11) NOT NULL DEFAULT 0, `sellername` varchar(20) NOT NULL DEFAULT '', `order` varchar(20) NOT NULL DEFAULT '', `customer` varchar(20) NOT NULL DEFAULT '', `sdate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `price` double NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_purchase` -- INSERT INTO `bib_purchase` (`idpurchase`, `idinventaire`, `sellername`, `order`, `customer`, `sdate`, `price`) VALUES (1, 1104, 'Priceminister', '5995771', 'EWEN_JUJU', '2004-06-11 03:24:26', 32), (2, 892, 'Priceminister', '14441356', 'klein170', '2005-03-19 22:20:00', 15); -- -------------------------------------------------------- -- -- Structure de la table `bib_revue` -- CREATE TABLE `bib_revue` ( `idrevue` int(11) NOT NULL, `alphabet` varchar(1) CHARACTER SET utf8 NOT NULL, `nom` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `idediteurs` int(11) NOT NULL DEFAULT 0, `idcote` int(11) NOT NULL DEFAULT 0, `adresse` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `CP` varchar(14) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `ville` varchar(24) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `pays` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `langue` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `siteweb` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Déchargement des données de la table `bib_revue` -- INSERT INTO `bib_revue` (`idrevue`, `alphabet`, `nom`, `idediteurs`, `idcote`, `adresse`, `CP`, `ville`, `pays`, `langue`, `siteweb`) VALUES (1, 'A', 'Anomalie digital_arts', 0, 4, '23 rue Olivier-Métra F', '75010', 'PARIS', 'France', 'FR', 'http://www.anomos.org/'), (2, 'A', 'Archistrom', 0, 4, 'Château de la Plesse', '49240', 'AVRILLÉ', 'France', 'FR', 'http://www.archistorm.com/'), (3, 'A', 'Area revue)s(', 0, 4, '50 rue Hautville', '75010', 'PARIS', 'France', 'FR', 'http://www.areaparis.com/'), (4, 'A', '(Art absolument)', 0, 4, '118 rue du Chevaleret', '75013', 'PARIS', 'France', 'FR', 'http://www.artabsolument.com/'), (5, 'A', 'Art actuel', 0, 4, '44 avenue George V', '75008', 'PARIS', 'France', 'FR', 'http://www.artactuel.info/'), (6, 'A', 'ARTENSION', 0, 4, 'BP 9', '69647', 'CALUIRE', 'France', 'FR', 'http://www.artension.fr/'), (7, 'A', 'Art Jonction le journal', 0, 4, 'BP 4169', '06303', 'NICE Cedex 4', 'France', 'FR', ''), (8, 'A', 'Art présence', 0, 4, '4 rue des Clos Grimault', '22370', 'Pléneuf Val-An', 'France', 'FR', ''), (9, 'A', 'Art Press', 0, 4, '8 rue François Villon', '75015', 'PARIS', 'France', 'FR', 'http://www.artpress.com/'), (10, 'A', 'Art Sud', 0, 4, '200 avenue de Coulin', '13420', 'GEMENOS', 'France', 'FR', ''), (11, 'A', 'l\'Atelier contemporain', 0, 4, '21 rue de Blossac', '86000', 'POITIERS', 'France', 'FR', ''), (12, 'A', 'Atelier d\'Art de France', 0, 4, '4, passage Roux', '75017', 'PARIS', 'France', 'FR', ''), (13, 'A', 'Azimuts - revue du design', 0, 4, '15, rue Henri Gonnard', '42000', 'ST-ETIENNE', 'France', 'FR', ''), (14, 'B', 'Beaux-Arts Magazine', 0, 4, '33 avenue du Maine', '75755', 'PARIS', 'France', 'FR', 'http://www.beauxartsmagazine.com/'), (15, 'B', 'BLOCNOTES', 0, 4, '18 passage du Chantier', '75012', 'PARIS', 'France', 'FR', ''), (16, 'B', 'Buy Sellf', 0, 4, '3 passage des Argentiers', '33000', 'BORDEAUX', 'France', 'FR', 'http://www.buy-sellf.com/'), (17, 'C', 'Les Cahiers du M.N.A.M.', 1269, 4, 'Direction des Éditions, Centre Pompidou', '75191', 'PARIS CEDEX 04', 'France', 'FR', 'http://www.cnac-gp.fr/Pompidou/Accueil.nsf'), (18, 'C', 'Cassandre', 0, 4, '150 rue du fbg St Martin', '75010', 'PARIS', 'France', 'FR', 'http://www.horschamp.org/'), (19, 'C', 'Charley', 0, 4, '16 rue Quentin', '21000', 'DIJON', 'France', 'FR', 'http://www.leconsortium.com/'), (20, 'C', 'Cimaise', 0, 4, '95 rue Vieille-du-Temple', '75003', 'PARIS', 'France', 'FR', ''), (21, 'C', 'Connaissance des Arts', 0, 4, '23 rue des Jeûneurs', '75002', 'PARIS', 'France', 'FR', ''), (22, 'C', 'Correspondance(s)', 0, 4, '9 place de l’Université', '67084', 'STRASBOURG Cedex', 'France', 'FR', ''), (23, 'C', 'Crash', 0, 4, '18 passage du Chantier', '75012', 'PARIS', 'France', 'FR', 'http://www.crash.fr/'), (24, 'C', 'Critique d\'Art', 0, 4, '3, rue de Noyal', '35410', 'CHÂTEAUGIRON', 'France', 'FR', 'http://www.archivcriticart.org/'), (25, 'D', 'Dada', 0, 4, '4, rue Caroline', '75017', 'PARIS', 'France', 'FR', ''), (26, 'D', 'ddo (doigt dans l’œil)', 0, 4, 'BP 43', '59051', 'ROUBAIX Cedex 1', 'France', 'FR', 'http://www.doigtdansloeil.com/'), (27, 'D', 'Documents sur l\'art', 0, 4, '16, rue Quentin', '21000', 'DIJON', 'France', 'FR', 'http://www.leconsortium.com/'), (28, 'E', 'Exposé', 0, 4, '1 rue du Taureau', '45000', 'ORLÉANS', 'France', 'FR', 'http://www.editions-hyx.com/'), (29, 'I', 'Irregulomadaire', 0, 4, '1 rue de Metz', '75010', 'PARIS', 'France', 'FR', 'http://www.irregulomadaire.net/'), (30, 'J', 'Le Journal des Arts', 0, 4, '55-57 avenue d\'Italie', '75013', 'PARIS', 'France', 'FR', ''), (31, 'J', 'Le Journal du CNP', 0, 4, '11 rue Berryer', '75008', 'PARIS', 'France', 'FR', 'http://www.cnp-photographie.com/'), (32, 'J', 'Jubilate', 0, 4, '34, rue des Dames', '75017', 'PARIS', 'France', 'FR', ''), (33, 'L', 'Ligeia', 0, 4, '40 boulevard Montparnasse', '75015', 'PARIS', 'France', 'FR', ''), (34, 'L', 'Lisières', 0, 4, '13 Hent Pen Duick', '29930', 'Pont-Aven', 'France', 'FR', 'http://www.lisieres.com/'), (35, 'L', 'Livraison - Rhinocéros, comme revu', 0, 4, '18 rue Stosswihr', '67100', 'STRASBOURG', 'France', 'FR', 'http://www.rhinoceros-etc.org/'), (36, 'M', 'Mouvement', 0, 4, '6 rue Desargues', '75011', 'PARIS', 'France', 'FR', 'http://www.mouvement.net/'), (37, 'N', 'Nouvelles de L\'Estampe', 0, 4, '58 rue de Richelieu', '75002', 'PARIS', 'France', 'FR', ''), (38, 'O', 'L’Œil', 0, 4, '55-57 avenue d\'Italie', '75013', 'PARIS', 'France', 'FR', ''), (39, 'O', 'ON', 0, 4, '14 bis rue Saint Maur', '75011', 'PARIS', 'France', 'FR', 'http://mapage.noos.fr/vallos/'), (40, 'O', 'ORBE', 0, 4, '192 BD Emilie Delmas', '17000', 'LA ROCHELLE', 'France', 'FR', 'http://www.orbe.org/'), (41, 'P', 'Papiers libres', 0, 4, '78 route de Nîmes', '30540', 'MILHAUD', 'France', 'FR', 'http://www.galerie-esca.com/'), (42, 'P', 'Page sucker', 0, 4, '24 rue Norvins', '75018', 'PARIS', 'France', 'FR', 'http://www.pagesucker.org/'), (43, 'P', 'Pays - Paysage', 0, 4, '17 rue Jules Ferry', '87500', 'SAINT-YRIEIX-LA-PERC', 'France', 'FR', ''), (44, 'P', 'Permanent food', 0, 4, '16 rue Quentin', '21000', 'DIJON', 'France', 'FR', 'http://www.leconsortium.com/'), (45, 'P', '[Plastik]', 0, 4, '27-31 avenue Lombart', '92260', 'FONTENAY-AUX-ROSES', 'France', 'FR', ''), (46, 'P', 'PRATIQUES', 0, 4, '30, rue Hoche', '35000', 'RENNES', 'France', 'FR', ''), (47, 'P', 'PURPLE', 0, 4, '9 rue Dupont', '75010', 'PARIS', 'France', 'FR', 'http://www.purple.fr/'), (48, 'R', 'R DE REEL', 0, 4, '31, rue de Saintsonge', '75003', 'PARIS', 'France', 'FR', 'http://www.rdereel.org/'), (49, 'R', 'Le Rectangle', 0, 4, 'place Bellecour', '69002', 'LYON', 'France', 'FR', 'http://www.lerectangle.com/'), (50, 'R', 'Réflex(e)', 0, 4, '150 rue du fbg St Martin', '75010', 'PARIS', 'France', 'FR', 'http://www.horschamp.org/'), (51, 'R', 'Revue d\'esthétique', 0, 4, '6 rue de Lhomond', '75005', 'PARIS', 'France', 'FR', 'http://www.jmplace.com/'), (52, 'R', 'Revue de l\'art', 0, 4, 'Collège de France, 11 place Marcellin-Berthelot', '75005', 'PARIS', 'France', 'FR', 'http://www.puf.com/'), (53, 'R', 'RFE', 0, 4, '6 rue Général Leclerc', '94270', 'Le Kremlin-Bicêtre', 'France', 'FR', 'http://www.r-f-e.net/'), (54, 'S', 'SANS TITRE', 0, 4, '14, rue Véronèse', '59800', 'LILLE', 'France', 'FR', ''), (55, 'S', 'SEMAINE ANALOGUES', 0, 4, '4, rue des Thermes', '13200', 'ARLES', 'France', 'FR', 'http://www.analogues.fr/'), (56, 'S', 'SIMULACRES', 0, 4, '9, rue d\'Auteil', '75016', 'PARIS', 'France', 'FR', ''), (57, 'S', 'Spore', 0, 4, '8, marché des Capucins', '13001', 'MARSEILLE', 'France', 'FR', ''), (58, 'T', 'TOC', 0, 4, '31, rue consolat', '13001', 'MARSEILLE', 'France', 'FR', 'http://perso.wanadoo.fr/s-m-p/toc/index.html'), (59, 'T', 'Le Travail de l’art', 0, 4, '4, rue Say', '75009', 'PARIS', 'France', 'FR', ''), (60, 'T', 'TRIBECA', 0, 4, '8, boulevard de Ménilmontant', '75020', 'PARIS', 'France', 'FR', 'http://www.tribeca75.com/'), (61, 'T', 't.r.o.u.', 0, 4, '16, rue du roi rené', '13007', 'MARSEILLE', 'France', 'FR', 'http://site.voila.fr/t.r.o.u'), (62, 'T', 'Trouble', 0, 4, '36 rue de l’Ourcq', '75019', 'PARIS', 'France', 'FR', 'http://www.trrrrouble.net/'), (63, 'T', 'TURBULENCES VIDEO', 0, 4, 'BP 50', '63002', ' CLERMONT-FERRAND ce', 'France', 'FR', ''), (64, 'T', 'Twenty one/one', 0, 4, '10 boulevard de la Bastille', '75012', 'PARIS', 'France', 'FR', ''), (65, 'U', 'Un deux …quatre', 0, 4, '11, rue Berryer', '75008', 'PARIS', 'France', 'FR', 'http://www.un-deux-quatre.com/'), (66, 'Z', 'ZEUXIS', 0, 4, '99-103, rue de sèvres', '75006', 'PARIS', 'France', 'FR', ''), (67, 'E', ': éc/art S :', 0, 4, '13, rue Brison', '42300', 'ROANNE', 'France', 'FR', 'http://www.ecarts.org/'), (68, 'N', '9/9', 0, 4, '49 rue Berthe', '75018', 'PARIS', 'France', 'FR', ''), (69, 'Q', '49/3', 0, 4, '16 rue Quentin', '21000', 'DIJON', 'France', 'FR', 'http://www.leconsortium.com/'), (70, 'D', 'Dits', 0, 4, '82 rue Ste-Louise', '7301', 'Hornu', 'Belgique', 'FR', 'http://www.mac-s.be/'), (71, 'F', 'Fluxnews', 0, 4, '60 rue Paradis', '4000', 'Liège', 'Belgique', 'FR', ''), (72, 'P', 'La Part de l\'oeil', 0, 4, '144, rue du Midi', '1000', 'Bruxelles', 'Belgique', 'FR', 'http://www.lapartdeloeil.be/'), (73, 'P', 'Pylone', 0, 4, '39, avenue des Arts', '1040', 'Bruxelles', 'Belgique', 'FR', 'http://www.revue-pylone.com/'), (74, 'C', 'Cvphoto', 0, 4, '460 Ste-Catherine W. suite 320', 'Québec H3B 1A7', 'Montréal', 'Canada', 'FR', 'http://www.cvphoto.ca/'), (75, 'E', 'Espace Sculpture', 0, 4, '-', 'QC H2J 2L6', 'Montréal', 'Canada', 'FR', 'http://www.espace-sculpture.com/'), (76, 'E', 'ESSE', 0, 4, 'C.P. 56 Succ. Delorrimier', 'Qc H2H2N6', 'Montréal', 'Canada', 'FR', ''), (77, 'E', 'Etc Montréal', 0, 4, '307 rue Sainte - Catherine O Bureau 620', 'QC H2X 9Z9', 'Montréal', 'Canada', 'FR', ''), (78, 'I', 'inter', 0, 4, '345 rue du Pont Québec', 'G1K 6M4', 'Québec', 'Canada', 'FR', 'http://www.sodep.qc.ca/'), (79, 'M', 'MIX magazine', 0, 4, '401 Richmond St. W. Suite 446 nto', 'ON M5V 3A8', '-', 'Canada', 'FR', 'http://www.mixmagazine.com/'), (80, 'P', 'Parachute', 0, 4, '4060, boul. Saint-Laurent bureau 501', 'QC H2W 1Y9', 'Montréal', 'Canada', 'FR', 'http://www.parachute.ca/'), (81, 'A', 'Acéphale', 0, 25, '', '', '', 'France', 'FR', ''), (82, 'A', 'Astérion', 0, 25, '', '', '', 'France', 'FR', ''), (83, 'A', 'Actuel Marx', 1269, 25, '', '', '', 'France', 'FR', ''), (84, 'A', 'Archives de philosophie', 0, 25, '', '', '', 'France', 'FR', ''), (85, 'C', 'Critique', 0, 25, '', '', '', 'France', 'FR', ''), (86, 'C', 'Cités', 1269, 25, '', '', '', 'France', 'FR', ''), (87, 'L', 'Des Lois et des Hommes', 0, 25, '', '', '', 'France', 'FR', ''), (88, 'D', 'Diogène', 1269, 25, '', '', '', 'France', 'FR', ''), (89, 'J', 'Journal for General Philosophy of Science', 0, 25, '', '', '', 'Pays-bas', 'FR', ''), (90, 'D', 'Le Débat', 0, 25, '', '', '', 'France', 'FR', ''), (91, 'P', 'Le Philosophoire', 0, 25, '', '', '', 'France', 'FR', ''), (92, 'P', 'Le Portique', 0, 25, '', '', '', 'France', 'FR', ''), (93, 'T', 'Les Temps modernes', 0, 25, '', '', '', 'France', 'FR', ''), (94, 'L', 'Lignes', 0, 25, '', '', '', 'France', 'FR', ''), (95, 'E', 'Les Études philosophiques', 1269, 25, '', '', '', 'France', 'FR', ''), (96, 'M', 'Multitudes', 0, 25, '', '', '', 'France', 'FR', ''), (97, 'N', 'Noesis', 0, 25, '', '', '', 'France', 'FR', ''), (98, 'P', 'Philosophia Africana', 0, 25, '', '', '', 'France', 'FR', ''), (99, 'P', 'Philosophie Magazine', 0, 25, '', '', '', 'France', 'FR', 'http://www.philomag.com/'), (100, 'R', 'Raison publique', 0, 25, '', '', '', 'France', 'FR', ''), (101, 'R', 'Ramuri', 0, 25, '', '', '', 'France', 'FR', ''), (102, 'R', 'Revue Médiane', 0, 25, '', '', '', 'France', 'FR', ''), (103, 'R', 'Revue philosophique de la France et de l\'étranger', 1269, 25, '', '', '', 'France', 'FR', ''), (104, 'R', 'Revue d\'esthétique', 0, 25, '', '', '', 'France', 'FR', ''), (105, 'R', 'Revue francophone d\'esthétique', 1280, 25, '363 bis, rue des pyrénées', '75020', 'Paris', 'France', 'FR', 'http://www.r-f-e.net/'), (106, 'R', 'Rue Descartes', 1269, 25, '', '', '', 'France', 'FR', ''), (107, 'R', 'Revue de métaphysique et de morale', 1269, 25, '', '', '', 'France', 'FR', 'http://www.puf.com/wiki/Revue_de_m%C3%A9taphysique_et_de_morale'), (108, 'S', 'Semen', 0, 25, '', '', '', 'France', 'FR', ''), (109, 'S', 'Société canadienne de philosophie continentale', 0, 25, '', '', '', 'Canada', 'FR', ''), (110, 'S', 'Studia Phænomenologica', 0, 25, '', '', '', 'France', 'FR', ''), (111, 'S', 'Symposium', 0, 25, '', '', '', 'France', 'FR', ''), (112, 'T', 'TELOS', 0, 25, '', '', '', 'France', 'FR', ''), (113, 'T', 'Tiqqun', 0, 25, '', '', '', 'France', 'FR', ''), (114, 'R', 'REGARS sur la peinture', 1272, 2, '', '', '', '', 'FR', ''), (115, 'F', 'FMR', 0, 4, '', '', '', 'Italie', 'FR', ''), (116, 'A', 'art21', 1280, 4, '363 bis, rue des pyrénées', '75020', 'Paris', 'France', 'FR', 'http://www.art21.fr/'), (117, 'N', 'Nouvelle revue d\'esthétique', 839, 25, '6 avenue Reille', '75685', 'Paris cedex 14', 'France', 'FR', 'http://www.puf.com/wiki/Nouvelle_revue_d%27esth%C3%A9tique'), (118, 'B', 'Bibliothèque(s)', 0, 0, '', '', '', '', 'FR', 'http://www.abf.asso.fr/pages/publication.php'), (119, 'D', 'Documentaliste Sciences de l\'information', 0, 0, '', '', '', '', 'FR', 'http://www.adbs.fr/revue-documentaliste-sciences-de-l-information-75413.htm?RH=REVUE&RF=REVUE'), (120, 'A', 'archIMAG', 0, 0, '', '', '', '', 'FR', 'http://www.archimag.com/boutique/le-mensuel-archimag'), (121, 'R', 'RdL La Revue des Livres', 0, 0, '', '', '', '', 'FR', 'http://www.revuedeslivres.fr/'), (122, 'A', 'Artpress2', 0, 4, '8 rue François Villon', '75015', 'PARIS', 'France', 'FR', 'http://www.artpress.com/'), (123, 'R', 'Revue de la Bibliothèque Nationale de France', 0, 0, 'Quai François Mauriac', '75013', 'Paris', 'France', 'FR', 'http://editions.bnf.fr'), (124, 'C', 'Cahiers du Musée des Beaux-Arts de Caen', 1246, 0, '', '', '', '', 'FR', ''), (125, 'E', 'Etapes:', 1207, 9, '15, rue Turbigo', '75002', 'Paris', 'France', 'FR', 'http://etapes.com/'), (126, 'D', 'Documents', 0, 4, '', '', '', 'France', 'FR', ''), (127, 'R', 'La révolution surréaliste', 426, 4, 'LIBRAIRIE GALLIMARD, 15, boulevard raspail', '75007', 'Paris', 'France', 'FR', ''), (128, 'M', 'Medium Communication Surréaliste', 0, 4, '', '', 'Paris', 'France', 'FR', ''), (129, 'H', 'Histoire de l\'art', 1246, 4, 'Revue Histoire de l\'art\nInstitut National d\'Histoire de l\'Art\n2 rue Vivienne', '75002', 'Paris', 'France', 'FR', 'http://blog.apahau.org/category/la-revue-histoire-de-lart-2/'), (130, 'A', 'Artstudio', 0, 4, '', '', '', 'France', 'FR', ''); -- -------------------------------------------------------- -- -- Structure de la table `bib_revue_article` -- CREATE TABLE `bib_revue_article` ( `idrevueart` int(11) NOT NULL DEFAULT 0, `idrevueliste` int(11) NOT NULL DEFAULT 0, `idinventaire` int(11) NOT NULL DEFAULT 0, `idauteur` int(11) NOT NULL DEFAULT 0, `titre` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `resume` text COLLATE utf8_unicode_ci NOT NULL, `texte` text COLLATE utf8_unicode_ci NOT NULL, `ebook` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `idcote` int(11) NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Structure de la table `bib_sale` -- CREATE TABLE `bib_sale` ( `idsale` int(11) NOT NULL, `idinventaire` int(11) NOT NULL DEFAULT 0, `sellername` varchar(20) NOT NULL DEFAULT '', `order` varchar(20) NOT NULL DEFAULT '', `customer` varchar(20) NOT NULL DEFAULT '', `sdate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `price` double NOT NULL DEFAULT 0 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `bib_sale` -- INSERT INTO `bib_sale` (`idsale`, `idinventaire`, `sellername`, `order`, `customer`, `sdate`, `price`) VALUES (1, 538, 'Priceminister', '6349980 / 9689262', 'apconnection', '2004-07-02 01:24:00', 7), (2, 575, 'Priceminister', '6474860 / 9762465', 'aplouf', '2004-07-06 01:59:00', 1), (3, 803, 'Priceminister', '6506216 / 9779693', 'kriclette', '2004-07-06 18:56:00', 13.41), (4, 688, 'Priceminister', '6546706 / 9803063', 'villemo', '2004-07-07 20:11:00', 1), (5, 372, 'Priceminister', '6714474 / 9903433', 'duboisdavid', '2004-07-12 13:35:00', 21.88), (6, 437, 'Priceminister', '6767691 / 9932446', 'SONRULIAN', '2004-07-13 18:04:00', 2.75), (7, 554, 'Priceminister', '6845695 / 9977629', 'cecithierry', '2004-07-15 23:35:00', 11.1), (8, 609, 'Priceminister', '7060334 / 10097409', 'AHPOU', '2004-07-21 23:11:00', 4.85), (9, 314, 'Priceminister', '7228493 / 10190065', 'puisea', '2004-07-26 22:31:00', 17.4), (10, 0, 'Priceminister', '7337945 / 10249293', 'enkil60', '2004-07-29 18:50:00', 15.02), (11, 685, 'Priceminister', '7385141 / 10275202', 'piluce', '2004-07-30 23:00:00', 1.55), (12, 343, 'Priceminister', '7399360 / 10281913', 'cdpsx', '2004-07-31 14:14:00', 22.45), (13, 163, 'Priceminister', '7515362 / 10348052', 'cassandra5', '2004-08-03 23:50:00', 19.32), (14, 690, 'Priceminister', '7819449 / 10516253', 'lunama', '2004-08-12 15:11:00', 1.94), (15, 620, 'Priceminister', '7838494 / 10527177', 'pouik2', '2004-04-12 22:43:00', 1.62), (16, 1136, 'Priceminister', '7891222 / 10555624', 'craney', '2004-08-14 13:24:00', 3.6), (17, 0, 'Priceminister', '7891222 / 10555609', 'craney', '2004-08-14 13:24:00', 10.56), (18, 687, 'Priceminister', '7891222 / 10555611', 'craney', '2004-08-14 13:24:00', 2.21), (19, 0, 'Priceminister', '7937225 / 10582524', 'Gike', '2004-08-15 23:29:00', 2.04), (20, 660, 'Priceminister', '7943272 / 10586086', 'NO-ID', '2004-08-16 02:58:00', 1.35), (21, 662, 'Priceminister', '7943272 / 10586089', 'NO-ID', '2004-08-16 02:58:00', 2.55), (22, 664, 'Priceminister', '7943272 / 10586091', 'NO-ID', '2004-08-16 02:58:00', 1), (23, 686, 'Priceminister', '7943272 / 10586092', 'NO-ID', '2004-08-16 02:58:00', 2), (24, 693, 'Priceminister', '7943272 / 10586095', 'NO-ID', '2004-08-16 02:58:00', 1.31), (25, 726, 'Priceminister', '7943272 / 10586096', 'NO-ID', '2004-08-16 02:58:00', 2.48), (26, 574, 'Priceminister', '7943272 / 10586081', 'NO-ID', '2004-08-16 02:58:00', 4.8), (27, 310, 'Priceminister', '7943272 / 10586082', 'NO-ID', '2004-08-16 02:58:00', 1), (28, 622, 'Priceminister', '7943272 / 10586083', 'NO-ID', '2004-08-16 02:58:00', 1), (29, 558, 'Priceminister', '7943272 / 10586085', 'NO-ID', '2004-08-16 02:58:00', 1), (30, 315, 'Priceminister', '8118891 / 10682963', 'bdenis1', '2004-08-20 15:24:00', 14.86), (31, 38, 'Priceminister', '8230018 / 10745410', 'snavel', '2004-08-23 17:43:00', 17.1), (32, 728, 'Priceminister', '8753382 / 11037184', 'niko0710', '2004-09-04 15:12:00', 1), (33, 170, 'Priceminister', '9383273 / 11398936', 'kyrie', '2004-09-18 17:00:00', 3.45), (34, 580, 'Priceminister', '9383273 / 11398942', 'kyrie', '2004-09-18 17:00:00', 1), (35, 834, 'Priceminister', '9383273 / 11398415', 'kyrie', '2004-09-18 17:00:00', 8.9), (36, 450, 'Priceminister', '9568730 / 11501309', 'leaw', '2004-09-22 19:51:00', 3.69), (37, 729, 'Priceminister', '9568730 / 11501300', 'leaw', '2004-09-22 19:51:00', 1.8), (38, 669, 'Priceminister', '9568730 / 11501317', 'leaw', '2004-09-22 19:51:00', 3.31), (39, 332, 'Priceminister', '9664417 / 11554246', 'reno30', '2004-09-24 19:17:00', 9.18), (40, 428, 'Priceminister', '9668160 / 11556329', 'schwindling', '2004-09-24 20:21:00', 8.1), (41, 68, 'Priceminister', '9744839 / 11601407', 'indigo07', '2004-09-26 18:41:00', 11.43), (42, 1137, 'Priceminister', '9917115 / 11697282', 'Orphidion', '2004-09-30 03:13:00', 2.71), (43, 395, 'Priceminister', '10165092 / 11840877', 'dapnette', '2004-10-05 17:39:00', 8.13), (44, 282, 'Priceminister', '10361214 / 11955808', 'ch_carrere', '2004-10-09 15:08:00', 9), (45, 1139, 'Priceminister', '10413484 / 11990855', 'tahiti69', '2004-10-10 19:23:00', 20.6), (46, 1140, 'Priceminister', '10625261 / 12114466', 'ff47', '2004-10-14 21:59:00', 7.66), (47, 1141, 'Priceminister', '11635577 / 12812332', 'brevolte', '2004-11-07 21:54:00', 3.48), (48, 19, 'Priceminister', '11690427 / 12906439', 'adelaide26', '2004-11-10 23:14:00', 9.86), (49, 31, 'Priceminister', '11690427 / 12905587', 'adelaide26', '2004-11-10 23:14:00', 9.96), (50, 1142, 'Priceminister', '11741331 / 12995855', 'hillarant', '2004-11-13 21:15:00', 2.7), (51, 1143, 'Priceminister', '11741331 / 12995861', 'hillarant', '2004-11-13 21:15:00', 2.9), (52, 697, 'Priceminister', '11771854 / 13050025', 'cecileccc', '2004-11-15 17:45:00', 7.62), (53, 1144, 'Priceminister', '11771854 / 13050008', 'cecileccc', '2004-11-15 17:45:00', 10.5), (54, 822, 'Priceminister', '12087804 / 13605738', 'epitecte', '2004-11-30 20:51:00', 7.48), (55, 283, 'Priceminister', '12160655 / 13667042', 'fantomas11', '2004-12-02 00:06:00', 13.8), (56, 1145, 'Priceminister', '12454031 / 13976759', 'jleverge', '2004-12-08 19:18:00', 4.6), (57, 1146, 'Priceminister', '12469764 / 14003855', 'kadfg13', '2004-12-09 04:18:00', 5.03), (58, 1147, 'Priceminister', '12551951 / 14148813', 'guillou', '2004-12-13 01:07:00', 7.2), (59, 352, 'Priceminister', '12604040 / 14237982', 'kkabi', '2004-12-15 04:56:00', 21.5), (60, 340, 'Priceminister', '12677876 / 14365976', 'kumquat', '2004-12-18 19:48:00', 3.96), (61, 1148, 'Priceminister', '12684593 / 14377724', 'DYLAX', '2004-12-19 01:13:00', 7.52), (62, 1149, 'Priceminister', '12708636 / 14419692', 'hilgerstern', '2004-12-20 06:55:00', 12.9), (63, 1150, 'Priceminister', '12798302 / 14556439', 'jchvra', '2004-12-24 05:58:00', 9.5), (64, 1151, 'Priceminister', '13249551 / 15323284', 'lalou17', '2005-01-16 22:31:00', 7.9), (65, 1, 'Priceminister', '13445773 / 15651124', 'latarine', '2005-01-26 16:29:00', 4.48), (66, 2, 'Priceminister', '13445773 / 15651862', 'latarine', '2005-01-26 16:29:00', 6.48), (67, 1152, 'Priceminister', '13445773 / 15651870', 'latarine', '2005-01-26 16:29:00', 3.96), (68, 5, 'Priceminister', '13923652 / 16492680', 'antaxeus', '2005-02-20 18:04:00', 4.5), (69, 3, 'Priceminister', '13923652 / 16492675', 'antaxeus', '2005-02-20 18:04:00', 3.99), (70, 658, 'Priceminister', '14193923 / 16972072', 'Darkshines', '2005-03-06 17:08:00', 1), (71, 351, 'Priceminister', '14268393 / 17104323', 'laika42', '2005-03-10 04:16:00', 11.98), (72, 322, 'Priceminister', '14568619 / 17628800', 'mwabo', '2005-03-27 01:02:00', 6.68), (73, 295, 'Priceminister', '14568619 / 17628804', 'mwabo', '2005-03-27 01:02:00', 4.88), (74, 355, 'Priceminister', '14568619 / 17628809', 'mwabo', '2005-03-27 01:02:00', 4.48), (75, 368, 'Priceminister', '14568619 / 17628785', 'mwabo', '2005-03-27 01:02:00', 6.41), (76, 289, 'Priceminister', '14568619 / 17628793', 'mwabo', '2005-03-27 01:02:00', 3.8), (77, 1153, 'Priceminister', '14568619 / 17628799', 'mwabo', '2005-03-27 01:02:00', 2.31), (78, 379, 'Priceminister', '14864356 / 18143403', 'rigoloman', '2005-04-10 19:58:00', 22.8), (79, 1138, 'Priceminister', '15868398 / 19889465', 'xor007', '2005-06-01 21:33:00', 2.71), (80, 348, 'Priceminister', '18446335 / 23467583', 'vinniedanova', '2005-09-01 20:48:00', 11.48), (81, 1154, 'Priceminister', '20557852 / 25122320', 'denis08', '2005-09-18 21:30:00', 2.74), (82, 1104, 'Priceminister', '27830873 / 32717142', 'pal35', '2005-10-25 15:10:00', 28), (83, 1155, 'Priceminister', '28437029 / 33256826', 'al88af', '2005-10-28 23:50:00', 1.8), (84, 525, 'Priceminister', '32524088 / 38462190', 'fantomassss', '2006-01-13 22:56:00', 4), (85, 234, 'Priceminister', '32874327 / 39063584', 'moodforlove', '2006-01-26 17:32:00', 3.3), (86, 838, 'Priceminister', '34104582 / 41200170', 'nas6687', '2006-03-11 23:36:00', 28.75), (87, 339, 'Priceminister', '34242245 / 41436073', 'alexhendrix', '2006-03-17 02:07:00', 4.3), (88, 723, 'Priceminister', '35249533 / 43177009', 'labo1', '2006-04-26 00:35:00', 0.9), (89, 722, 'Priceminister', '35249533 / 43177010', 'labo1', '2006-04-26 00:35:00', 1), (90, 176, 'Priceminister', '36605313 / 45534637', 'jodelle75', '2006-06-21 21:41:00', 7.14), (91, 287, 'Priceminister', '44545788 / 58455604', 'tatei', '2007-03-04 16:07:00', 5), (92, 307, 'Priceminister', '45316598 / 59615936', 'duareb76', '2007-03-24 23:13:00', 4.26), (93, 84, 'Priceminister', '47337560 / 63367952', 'fredou55', '2007-06-21 22:31:00', 6.52), (94, 329, 'Priceminister', '48512859 / 64421269', 'quidoux', '2007-07-15 13:56:00', 7.84), (95, 1157, 'Priceminister', '51558332 / 68257175', 'sparte3', '2007-10-05 00:49:00', 1.13), (96, 342, 'Priceminister', '51825173 / 68752863', 'yop83', '2007-10-14 15:18:00', 11.9), (97, 1158, 'Priceminister', '52091962 / 69240859', 'Monsieur-Mad', '0000-00-00 00:00:00', 16), (98, 1159, 'Priceminister', '52191235 / 69419125', 'maxmalou', '2007-10-27 02:10:00', 7.5), (99, 1160, 'Priceminister', '59923779 / 83686849', 'fcous62', '2008-06-17 02:38:00', 16.2), (100, 1161, 'Priceminister', '60222618 / 84245960', 'ysabel2', '2008-06-28 02:49:00', 22), (101, 1162, 'Priceminister', '67216584 / 98732991', 'frontispice', '2009-01-17 15:53:00', 24), (102, 1163, 'Priceminister', '69199513 / 102439942', 'frontispice', '2009-03-11 12:59:00', 14), (103, 296, 'Priceminister', '69836806 / 103638814', 'snted', '2009-03-30 03:57:00', 11.9), (104, 469, 'Priceminister', '69862675 / 103687453', 'leross', '2009-03-30 23:27:00', 8), (105, 466, 'Priceminister', '71327709 / 106466682', 'bederom', '2009-05-13 13:46:00', 4.56), (106, 1164, 'Priceminister', '72340195 / 108364665', 'paoloadv', '2009-06-13 19:19:00', 15), (107, 1165, 'Priceminister', '73626346 / 110825172', 'HALPRIMIN', '2009-07-24 17:23:00', 25), (108, 835, 'Priceminister', '78471570 / 120329000', 'salsa401', '2009-11-26 03:54:00', 16), (109, 97, 'Priceminister', '80749293 / 124761275', 'pierrick836', '2010-01-10 19:58:00', 6), (110, 617, 'Priceminister', '80897341 / 125050987', 'chamanik7', '2010-01-13 19:41:00', 15), (111, 991, 'Priceminister', '82872840 / 128568990', 'laforest05', '2010-02-20 12:21:00', 19); -- -------------------------------------------------------- -- -- Structure de la table `bib_users` -- CREATE TABLE `bib_users` ( `userid` int(11) NOT NULL, `display_name` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'unkown', `user_login` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_pass` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `mdp` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_profil` tinyint(4) NOT NULL DEFAULT 0, `user_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_registerdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Déchargement des données de la table `bib_users` -- INSERT INTO `bib_users` (`userid`, `display_name`, `user_login`, `user_pass`, `mdp`, `user_profil`, `user_status`, `user_email`, `user_registerdate`) VALUES (1, 'Admin', 'Cicero', 'f354895ef5cdb830e7f389842de64014319 ', 'Academicus', 10, 'validate', 'mti.android@gmail.com', '1999-06-21 23:13:00'); -- -- Index pour les tables déchargées -- -- -- Index pour la table `bib_admin` -- ALTER TABLE `bib_admin` ADD PRIMARY KEY (`ad_login`); -- -- Index pour la table `bib_amazon` -- ALTER TABLE `bib_amazon` ADD PRIMARY KEY (`amazonid`); -- -- Index pour la table `bib_artmvt` -- ALTER TABLE `bib_artmvt` ADD PRIMARY KEY (`mvt_id`); -- -- Index pour la table `bib_arttype` -- ALTER TABLE `bib_arttype` ADD PRIMARY KEY (`atp-id`); -- -- Index pour la table `bib_auteur` -- ALTER TABLE `bib_auteur` ADD PRIMARY KEY (`idauteur`); -- -- Index pour la table `bib_bibliotheques` -- ALTER TABLE `bib_bibliotheques` ADD PRIMARY KEY (`bib_id`); -- -- Index pour la table `bib_collections` -- ALTER TABLE `bib_collections` ADD PRIMARY KEY (`idcollections`); -- -- Index pour la table `bib_cote` -- ALTER TABLE `bib_cote` ADD PRIMARY KEY (`idcote`); -- -- Index pour la table `bib_data` -- ALTER TABLE `bib_data` ADD PRIMARY KEY (`dataid`); -- -- Index pour la table `bib_dewey` -- ALTER TABLE `bib_dewey` ADD PRIMARY KEY (`iddewey`); -- -- Index pour la table `bib_ebook` -- ALTER TABLE `bib_ebook` ADD PRIMARY KEY (`idebook`); -- -- Index pour la table `bib_editeurs` -- ALTER TABLE `bib_editeurs` ADD PRIMARY KEY (`idediteur`); -- -- Index pour la table `bib_format` -- ALTER TABLE `bib_format` ADD PRIMARY KEY (`idformat`); -- -- Index pour la table `bib_lieux` -- ALTER TABLE `bib_lieux` ADD PRIMARY KEY (`idlieux`); -- -- Index pour la table `bib_links` -- ALTER TABLE `bib_links` ADD PRIMARY KEY (`link_id`); -- -- Index pour la table `bib_livres` -- ALTER TABLE `bib_livres` ADD PRIMARY KEY (`liv_id`); -- -- Index pour la table `bib_logs` -- ALTER TABLE `bib_logs` ADD PRIMARY KEY (`logid`); -- -- Index pour la table `bib_menu` -- ALTER TABLE `bib_menu` ADD PRIMARY KEY (`menuid`); -- -- Index pour la table `bib_options` -- ALTER TABLE `bib_options` ADD PRIMARY KEY (`dashboard_id`); -- -- Index pour la table `bib_posts` -- ALTER TABLE `bib_posts` ADD PRIMARY KEY (`postid`); -- -- Index pour la table `bib_purchase` -- ALTER TABLE `bib_purchase` ADD PRIMARY KEY (`idpurchase`); -- -- Index pour la table `bib_revue` -- ALTER TABLE `bib_revue` ADD PRIMARY KEY (`idrevue`); -- -- Index pour la table `bib_revue_article` -- ALTER TABLE `bib_revue_article` ADD PRIMARY KEY (`idrevueart`); -- -- Index pour la table `bib_sale` -- ALTER TABLE `bib_sale` ADD PRIMARY KEY (`idsale`); -- -- Index pour la table `bib_users` -- ALTER TABLE `bib_users` ADD PRIMARY KEY (`userid`), ADD UNIQUE KEY `user_login` (`user_login`); -- -- AUTO_INCREMENT pour les tables déchargées -- -- -- AUTO_INCREMENT pour la table `bib_amazon` -- ALTER TABLE `bib_amazon` MODIFY `amazonid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=107; -- -- AUTO_INCREMENT pour la table `bib_artmvt` -- ALTER TABLE `bib_artmvt` MODIFY `mvt_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=109; -- -- AUTO_INCREMENT pour la table `bib_arttype` -- ALTER TABLE `bib_arttype` MODIFY `atp-id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27; -- -- AUTO_INCREMENT pour la table `bib_auteur` -- ALTER TABLE `bib_auteur` MODIFY `idauteur` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2240; -- -- AUTO_INCREMENT pour la table `bib_bibliotheques` -- ALTER TABLE `bib_bibliotheques` MODIFY `bib_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT pour la table `bib_collections` -- ALTER TABLE `bib_collections` MODIFY `idcollections` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1703; -- -- AUTO_INCREMENT pour la table `bib_cote` -- ALTER TABLE `bib_cote` MODIFY `idcote` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38; -- -- AUTO_INCREMENT pour la table `bib_data` -- ALTER TABLE `bib_data` MODIFY `dataid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23; -- -- AUTO_INCREMENT pour la table `bib_dewey` -- ALTER TABLE `bib_dewey` MODIFY `iddewey` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1385; -- -- AUTO_INCREMENT pour la table `bib_ebook` -- ALTER TABLE `bib_ebook` MODIFY `idebook` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT pour la table `bib_editeurs` -- ALTER TABLE `bib_editeurs` MODIFY `idediteur` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1527; -- -- AUTO_INCREMENT pour la table `bib_format` -- ALTER TABLE `bib_format` MODIFY `idformat` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=122; -- -- AUTO_INCREMENT pour la table `bib_lieux` -- ALTER TABLE `bib_lieux` MODIFY `idlieux` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=68; -- -- AUTO_INCREMENT pour la table `bib_links` -- ALTER TABLE `bib_links` MODIFY `link_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT pour la table `bib_livres` -- ALTER TABLE `bib_livres` MODIFY `liv_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=182; -- -- AUTO_INCREMENT pour la table `bib_logs` -- ALTER TABLE `bib_logs` MODIFY `logid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42; -- -- AUTO_INCREMENT pour la table `bib_menu` -- ALTER TABLE `bib_menu` MODIFY `menuid` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT pour la table `bib_options` -- ALTER TABLE `bib_options` MODIFY `dashboard_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT pour la table `bib_posts` -- ALTER TABLE `bib_posts` MODIFY `postid` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT pour la table `bib_purchase` -- ALTER TABLE `bib_purchase` MODIFY `idpurchase` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT pour la table `bib_revue` -- ALTER TABLE `bib_revue` MODIFY `idrevue` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=131; -- -- AUTO_INCREMENT pour la table `bib_sale` -- ALTER TABLE `bib_sale` MODIFY `idsale` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=112; -- -- AUTO_INCREMENT pour la table `bib_users` -- ALTER TABLE `bib_users` MODIFY `userid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- This is an example (or the last script used) for importing data -- into the database. Check the README for instructions on what needs -- to be adjusted. -- -- -- MCA Reading: 2018 LOAD DATA LOCAL INFILE '/Users/palazad/Code/star/data-documentation/Schools/sources/2018MCA3ReadingPublicFilter9.tab' into table mca fields terminated by '\t' enclosed by '"' lines terminated by '\r\n' ignore 1 lines (@dataYear, @DistrictCountyNumber, @DistrictCountyName, @districtNumber, @districtType, @districtName, @schoolNumber, @schoolName, @ECSUNumber, @EcoDevRgn, @testname, @testDate, @grade, @subject, @reportOrder, @reportCategory, @ReportDescription, @filtered, @countTested, @countLevel1, @countLevel2, @countLevel3, @countLevel4, @percentLevel1, @percentLevel2, @percentLevel3, @percentLevel4, @averageScore, @LSSAverageScore, @INFSAverageScore, @stddev, @StdErrorOfMean, @ConfidenceInterval, @CountAbsent, @CountInvalid, @CountInvalidStudentBehavior, @CountInvalidDevice, @CountInvalidOther, @CountMedExempt, @CountNotComplete, @CountRefused, @CountRefusedParent, @CountRefusedStudent, @CountWrongGrade, @CountNotAttempted, @CountNotEnrolled, @gradeEnrollment, @k12Enrollment, @filterThreshold, @publicSchool, @SchoolCountyNumber, @SchoolCountyName, @schoolClassification, @SummaryLevel) SET dataYear=@dataYear, DistrictCountyNumber=@DistrictCountyNumber, DistrictCountyName=@CountyName, districtNumber=@districtNumber, districtType=@districtType, districtName=@districtName, schoolNumber=@schoolNumber, schoolName=@schoolName, ECSUNumber=@ECSUNumber, EcoDevRgn=@EcoDevRgn, testname=@testname, testDate=@testDate, grade=@grade, subject=@subject, reportOrder=@reportOrder, reportCategory=@reportCategory, ReportDescription=@ReportDescription, filtered=@filtered, countTested=@countTested, countLevel1=@countLevel1, countLevel2=@countLevel2, countLevel3=@countLevel3, countLevel4=@countLevel4, countlevel5=0, percentLevel1=@percentLevel1, percentLevel2=@percentLevel2, percentLevel3=@percentLevel3, percentLevel4=@percentLevel4, percentlevel5=0, averageScore=@AverageScore, NOPSAverageScore=0, ALGSAverageScore=0, GMSAverageScore=0, DAPSAverageScore=0, VSSAverageScore=0, stddev=@stddev, StdErrorOfMean=@StdERrorOfMean, ConfidenceInterval=@ConfidenceInterval, CountAbsent=@CountAbsent, CountInvalid=@CountInvalid, CountMedExempt=@CountMedExempt, CountNotComplete=@CountNotComplete, CountPSO=@CountPSO, CountRefused=@CountRefused, CountWrongGrade=@CountWrongGrade, gradeEnrollment=@gradeEnrollment, k12Enrollment=@k12Enrollment, filterThreshold=@filterThreshold, publicSchool=@publicschool, SchoolCountyNumber=@SchoolCountyNumber, SchoolCountyName=@SchoolCountyName, schoolClassification=@schoolClassification, SummaryLevel=@SummaryLevel, LSSAverageScore=@LSSAverageScore, INFSAverageScore=@INFSAverageScore, NSSAverageScore=0, PFASAverageScore=0, DPSAverageScore=0, SGMSAverageScore=0, VESSAverageScore=0, CPSSAverageScore=0, CountInvalidStudentBehavior=@CountInvalidStudentBehavior, CountInvalidDevice=@CountInvalidDevice, CountInvalidOther=@CountInvalidOther, CountRefusedParent=@CountRefusedParent, CountRefusedStudent=@CountRefusedStudent, CountNotAttempted=@CountNotAttempted, CountNotEnrolled=@CountNotEnrolled; -- -- -- MCA Math: 2018 LOAD DATA LOCAL INFILE '/Users/palazad/Code/star/data-documentation/Schools/sources/2018MCA3MathPublicFilter9.tab' into table mca fields terminated by '\t' enclosed by '"' lines terminated by '\r\n' ignore 1 lines (@dataYear, @DistrictCountyNumber, @DistrictCountyName, @districtNumber, @districtType, @districtName, @schoolNumber, @schoolName, @ECSUNumber, @EcoDevRgn, @testname, @testDate, @grade, @subject, @reportOrder, @reportCategory, @ReportDescription, @filtered, @countTested, @countLevel1, @countLevel2, @countLevel3, @countLevel4, @percentLevel1, @percentLevel2, @percentLevel3, @percentLevel4, @averageScore, @NOPSAverageScore, @ALGSAverageScore, @GMSAverageScore, @DAPSAverageScore, @VSSAverageScore, @stddev, @StdErrorOfMean, @ConfidenceInterval, @CountAbsent, @CountInvalid, @CountInvalidStudentBehavior, @CountInvalidDevice, @CountInvalidOther, @CountMedExempt, @CountNotComplete, @CountRefused, @CountRefusedParent, @CountRefusedStudent, @CountWrongGrade, @CountNotAttempted, @CountNotEnrolled, @gradeEnrollment, @k12Enrollment, @filterThreshold, @publicSchool, @SchoolCountyNumber, @SchoolCountyName, @schoolClassification, @SummaryLevel) SET dataYear=@dataYear, DistrictCountyNumber=@DistrictCountyNumber, DistrictCountyName=@CountyName, districtNumber=@districtNumber, districtType=@districtType, districtName=@districtName, schoolNumber=@schoolNumber, schoolName=@schoolName, ECSUNumber=@ECSUNumber, EcoDevRgn=@EcoDevRgn, testname=@testname, testDate=@testDate, grade=@grade, subject=@subject, reportOrder=@reportOrder, reportCategory=@reportCategory, ReportDescription=@ReportDescription, filtered=@filtered, countTested=@countTested, countLevel1=@countLevel1, countLevel2=@countLevel2, countLevel3=@countLevel3, countLevel4=@countLevel4, countlevel5=0, percentLevel1=@percentLevel1, percentLevel2=@percentLevel2, percentLevel3=@percentLevel3, percentLevel4=@percentLevel4, percentlevel5=0, averageScore=@AverageScore, NOPSAverageScore=@NOPSAverageScore, ALGSAverageScore=@ALGSAverageScore, GMSAverageScore=@GMSAverageScore, DAPSAverageScore=@DAPSAverageScore, VSSAverageScore=@VSSAverageScore, stddev=@stddev, StdErrorOfMean=@StdERrorOfMean, ConfidenceInterval=@ConfidenceInterval, CountAbsent=@CountAbsent, CountInvalid=@CountInvalid, CountMedExempt=@CountMedExempt, CountNotComplete=@CountNotComplete, CountPSO=@CountPSO, CountRefused=@CountRefused, CountWrongGrade=@CountWrongGrade, gradeEnrollment=@gradeEnrollment, k12Enrollment=@k12Enrollment, filterThreshold=@filterThreshold, publicSchool=@publicschool, SchoolCountyNumber=@SchoolCountyNumber, SchoolCountyName=@SchoolCountyName, schoolClassification=@schoolClassification, SummaryLevel=@SummaryLevel, LSSAverageScore=0, INFSAverageScore=0, NSSAverageScore=0, PFASAverageScore=0, DPSAverageScore=0, SGMSAverageScore=0, VESSAverageScore=0, CPSSAverageScore=0, CountInvalidStudentBehavior=@CountInvalidStudentBehavior, CountInvalidDevice=@CountInvalidDevice, CountInvalidOther=@CountInvalidOther, CountRefusedParent=@CountRefusedParent, CountRefusedStudent=@CountRefusedStudent, CountNotAttempted=@CountNotAttempted, CountNotEnrolled=@CountNotEnrolled; -- -- -- this populates schoolid field update mca set schoolid=concat(trim(districtnumber),'-',trim(districttype),'-',trim(schoolnumber)) where schoolid is null; -- -- -- Cleanup/optimize table optimize table mca;
insert into DodeljenaSoba ( idOsoblja) values ( 16);
--参数{0}会被替换成报告类型,如: 年报,半年报,季报 drop table if exists {0}公司价格分析中间表; create table if not exists {0}公司价格分析中间表 ( 报告时间 DATE NOT NULL, 公司代码 INTEGER NOT NULL, 报告类型 CHAR(20) NOT NULL, 公司简称 CHAR(10), 发布时间 DATE, 结束时间 DATE, 间隔时长 REAL, 文件名 CHAR(20), 报告周 CHAR(10), 报告周总市值 REAL, 结束周 CHAR(10), 结束周总市值 REAL, 起始周 CHAR(10), 起始周总市值 REAL, 起始周指数 REAL, 报告周指数 REAL, 本年市值增长率 REAL, 市值增长率 REAL, 本年指数增长率 REAL, 报告周上证指数 REAL, 结束周上证指数 REAL, 上证指数增长率 REAL, 深证成指增长率 REAL, 创业板指增长率 REAL, 沪深300指数增长率 REAL, 训练标识 INTEGER DEFAULT NULL ); insert into {0}公司价格分析中间表 select a.报告时间, a.公司代码, a.报告类型, a.公司简称, a.发布时间, a.结束时间, round((julianday(a.结束时间) - julianday(a.发布时间))/365.0,2) as 间隔时长, a.文件名, a.报告周, b.周平均总市值 as 报告周总市值, a.结束周, c.周平均总市值 as 结束周总市值, a.起始周, o.周平均总市值 as 起始周总市值, e.周平均收盘价 as 起始周指数, d.周平均收盘价 as 报告周指数, round((b.周平均总市值 - o.周平均总市值)/o.周平均总市值, 4) as 本年市值增长率, round((c.周平均总市值 - b.周平均总市值)/b.周平均总市值, 4) as 市值增长率, --case when a.公司代码 < '300000' then round((f.周平均收盘价 - g.周平均收盘价)/g.周平均收盘价, 4) else -- case when a.公司代码 < '600000' then round((j.周平均收盘价 - k.周平均收盘价)/k.周平均收盘价, 4) else -- round((h.周平均收盘价 - i.周平均收盘价)/i.周平均收盘价, 4) -- end --end as 本年指数增长率, round((d.周平均收盘价 - e.周平均收盘价)/e.周平均收盘价, 4) as 本年指数增长率, f.周平均收盘价 as 报告周上证指数, g.周平均收盘价 as 起始周上证指数, round((f.周平均收盘价 - g.周平均收盘价)/g.周平均收盘价, 4) as 上证指数增长率, round((h.周平均收盘价 - i.周平均收盘价)/i.周平均收盘价, 4) as 深证成指增长率, round((j.周平均收盘价 - k.周平均收盘价)/k.周平均收盘价, 4) as 创业板指增长率, round((d.周平均收盘价 - e.周平均收盘价)/e.周平均收盘价, 4) as 沪深300指数增长率, a.训练标识 from ( select x.报告时间, x.公司代码, x.公司简称, x.报告类型, x.发布时间, x.文件名, strftime('%Y-%W', x.发布时间) as 报告周, case when x.结束时间 is not NULL then strftime('%Y-%W', x.结束时间) else case when strftime('%Y-%W',x.发布时间, '+1 year') > z.结束周 then z.结束周 else strftime('%Y-%W',x.发布时间, '+1 year') end end as 结束周, case when x.结束时间 is not NULL then x.结束时间 else case when strftime('%Y-%W',x.发布时间, '+1 year') > z.结束周 then z.结束时间 else date(x.发布时间, '+1 year') end end as 结束时间, case when x.起始时间 is not NULL then strftime('%Y-%W', x.起始时间) else case when strftime('%Y-%W',x.发布时间, '-1 year') < z.起始周 then z.起始周 else strftime('%Y-%W',x.发布时间, '-1 year') end end as 起始周, case when x.起始时间 is not NULL then x.起始时间 else case when strftime('%Y-%W',x.发布时间, '-1 year') > z.起始周 then z.起始时间 else date(x.发布时间, '-1 year') end end as 起始时间, case when x.结束时间 is not NULL then 1 else 0 end as 训练标识 --case when strftime('%Y-%W',x.发布时间, '+1 year') > z.结束周 -- then z.结束周 -- else strftime('%Y-%W',x.发布时间, '+1 year') end -- as 结束周, --strftime('%Y-%W',x.发布时间, '+1 year') as 最大周 -- row_number() OVER( -- PARTITION BY x.公司代码, x.报告时间 ORDER BY x.发布时间 -- RANGER BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING -- ) AS 去重标识 from ( select bb.*, aa.结束时间, aa.起始时间 from ( select ii.*,jj.发布时间 as 结束时间, kk.发布时间 as 起始时间 from ( -- 同一个公司同一年度可能会发布两次财报, 第二次为第一次发布财报的修正, 但是我们认为第一次发布的财报影响更大, 因此取第一次发布的时间为准 select 公司代码, 报告时间, 报告类型, min(发布时间) as 发布时间 from 财报发布信息 group by 公司代码, 报告时间, 报告类型 )ii left join ( -- 同一个公司同一年度可能会发布两次财报, 第二次为第一次发布财报的修正, 但是我们认为第一次发布的财报影响更大, 因此取第一次发布的时间为准 select 公司代码, 报告时间, 报告类型, min(发布时间) as 发布时间 from 财报发布信息 group by 公司代码, 报告时间, 报告类型 )jj on ii.公司代码 = jj.公司代码 and ii.报告类型 = jj.报告类型 and jj.报告时间 - ii.报告时间 = 1 left join ( -- 同一个公司同一年度可能会发布两次财报, 第二次为第一次发布财报的修正, 但是我们认为第一次发布的财报影响更大, 因此取第一次发布的时间为准 select 公司代码, 报告时间, 报告类型, min(发布时间) as 发布时间 from 财报发布信息 group by 公司代码, 报告时间, 报告类型 )kk on ii.公司代码 = kk.公司代码 and ii.报告类型 = kk.报告类型 and ii.报告时间 - kk.报告时间 = 1 )aa left join 财报发布信息 bb on aa.公司代码 = bb.公司代码 and aa.报告时间 = bb.报告时间 and aa.报告类型 = bb.报告类型 and aa.发布时间 = bb.发布时间 )x left join ( select 公司代码, max(报告时间) as 结束时间, max(报告周) as 结束周, min(报告时间) as 起始时间, min(报告周) as 起始周 from ( select 公司代码, 报告时间, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 where 总市值 > 0 and 总市值 != 'None' -- 解决立方制药 003020 出现无效数据,这些数据的总市值 = 0 or 总市值 = 'None' )y group by 公司代码 )z where x.公司代码 = z.公司代码 and x.报告类型 = '{0}报告' )a left join ( select x.报告周, x.公司代码, round(avg(x.总市值), 0) as 周平均总市值 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x group by 报告周, 公司代码 )b on a.公司代码 = b.公司代码 and a.报告周 = b.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.总市值), 0) as 周平均总市值 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x group by 报告周, 公司代码 )c on a.公司代码 = c.公司代码 and a.结束周 = c.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.总市值), 0) as 周平均总市值 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x group by 报告周, 公司代码 )o on a.公司代码 = o.公司代码 and a.起始周 = o.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '沪深300' group by 报告周, 公司代码 )d on a.报告周 = d.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '沪深300' group by 报告周, 公司代码 )e on a.起始周 = e.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '上证指数' group by 报告周, 公司代码 )f on a.报告周 = f.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '上证指数' group by 报告周, 公司代码 )g on a.起始周 = g.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '深证成指' group by 报告周, 公司代码 )h on a.报告周 = h.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '深证成指' group by 报告周, 公司代码 )i on a.起始周 = i.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '创业板指' group by 报告周, 公司代码 )j on a.报告周 = j.报告周 left join ( select x.报告周, x.公司代码, round(avg(x.收盘价), 0) as 周平均收盘价 from ( select *, strftime('%Y-%W', 报告时间) as 报告周 from 股票交易数据 )x where x.公司简称 = '创业板指' group by 报告周, 公司代码 )k on a.起始周 = k.报告周; CREATE INDEX IF NOT EXISTS [{0}公司价格分析中间表索引] on [{0}公司价格分析中间表] ( 报告时间, 公司代码, 报告类型 ); drop table if exists {0}公司价格分析表; create table if not exists {0}公司价格分析表 ( 报告时间 DATE NOT NULL, 公司代码 INTEGER NOT NULL, 报告类型 CHAR(20) NOT NULL, 公司简称 CHAR(10), 发布时间 DATE, 结束时间 DATE, 起始周 CHAR(10), 报告周 CHAR(10), 结束周 CHAR(10), 起始周总市值 REAL, 报告周总市值 REAL, 结束周总市值 REAL, 起始周指数 REAL, 报告周指数 REAL, 营业收入 REAL, 归属于上市公司股东的净利润 REAL, 归属于上市公司股东的扣除非经常性损益的净利润 REAL, 经营活动产生的现金流量净额 REAL, 员工工资占营业收入比率 REAL, 净资产比率 REAL, 总资产利润率 REAL, 现金分红金额占合并报表中归属于上市公司普通股股东的净利润的比率 REAL, 经营活动产生的现金流量净额占净利润的比率 REAL, 营业收入增长率 REAL, 归属于上市公司股东的净利润增长率 REAL, 归属于上市公司股东的扣除非经常性损益的净利润增长率 REAL, 经营活动产生的现金流量净额增长率 REAL, 所得税费用占剔除投资收益后利润的比率 REAL, 三费总额占营业收入的比率 REAL, 费用总额占营业收入的比率 REAL, 资产减值和折旧摊销占营业收入的比率 REAL, 营业利润率 REAL, 毛利率 REAL, 净利率 REAL, 平均净资产收益率 REAL, 营业收入占平均总资产的比率 REAL, 净资产增长率 REAL, 研发投入占营业收入的比率 REAL, 资本化研发投入的比率 REAL, 在建工程占固定资产的比率 REAL, 利润总额占生产资本的比率 REAL, 商誉占营业收入的比率 REAL, 应收账款占营业收入的比率 REAL, --预收总额和应收总额的比率 REAL, --预收款项和应收账款的比率 REAL, 流动比率 REAL, 速动比率 REAL, 现金及现金等价物余额占短期借债的比率 REAL, 流动资产占总负债的比率 REAL, 现金收入和营业收入的比率 REAL, --应收账款周转率 REAL, --存货周转率 REAL, 营业利润占营业资金的比率 REAL, 营业收入占营业资金的比率 REAL, 还原后的净资产收益率(ROCE) REAL, --投资收益率 REAL, 市盈率 REAL, 本年市值增长率 REAL, 本年指数增长率 REAL, 间隔时长 REAL, 市值增长率 REAL, 训练标识 INTEGER ); insert into {0}公司价格分析表 select a.报告时间, a.公司代码, a.报告类型, a.公司简称, b.发布时间, b.结束时间, b.起始周, b.报告周, b.结束周, b.起始周总市值, b.报告周总市值, b.结束周总市值, b.起始周指数, b.报告周指数, a.营业收入, a.归属于上市公司股东的净利润, a.归属于上市公司股东的扣除非经常性损益的净利润, a.经营活动产生的现金流量净额, a.员工工资占营业收入比率, a.净资产比率, a.总资产利润率, a.现金分红金额占合并报表中归属于上市公司普通股股东的净利润的比率, a.经营活动产生的现金流量净额占净利润的比率, a.营业收入增长率, a.归属于上市公司股东的净利润增长率, a.归属于上市公司股东的扣除非经常性损益的净利润增长率, a.经营活动产生的现金流量净额增长率, a.所得税费用占剔除投资收益后利润的比率, a.三费总额占营业收入的比率, a.费用总额占营业收入的比率, a.资产减值和折旧摊销占营业收入的比率, a.营业利润率, a.毛利率, a.净利率, a.平均净资产收益率, a.营业收入占平均总资产的比率, a.净资产增长率, a.研发投入占营业收入的比率, a.资本化研发投入的比率, a.在建工程占固定资产的比率, a.利润总额占生产资本的比率, a.商誉占营业收入的比率, a.应收账款占营业收入的比率, --a.预收总额和应收总额的比率, --a.预收款项和应收账款的比率, a.流动比率, a.速动比率, a.现金及现金等价物余额占短期借债的比率, a.流动资产占总负债的比率, a.现金收入和营业收入的比率, --a.应收账款周转率, --a.存货周转率, a.营业利润占营业资金的比率, a.营业收入占营业资金的比率, a.还原后的净资产收益率(ROCE), --round(a.归属于上市公司股东的净利润/b.报告周总市值,4) as 投资收益率, round(b.报告周总市值/a.归属于上市公司股东的净利润,4) as 市盈率, b.本年市值增长率, b.本年指数增长率, b.间隔时长, b.市值增长率, b.训练标识 from {0}财务分析综合表 a left join {0}公司价格分析中间表 b on a.报告时间 = b.报告时间 and a.公司代码 = b.公司代码 and a.报告类型 = b.报告类型 where b.市值增长率 is not NULL and a.报告类型 = '{0}报告'; CREATE INDEX IF NOT EXISTS [{0}公司价格分析表索引] on [{0}公司价格分析表] ( 报告时间, 公司代码, 报告类型 );
CREATE TABLE [ERP].[Entidad] ( [ID] INT IDENTITY (1, 1) NOT NULL, [IdTipoPersona] INT NOT NULL, [Nombre] VARCHAR (250) NULL, [IdCondicionSunat] INT NULL, [EstadoSunat] BIT NULL, [IdEstadoContribuyente] INT NULL, [UsuarioRegistro] VARCHAR (250) NULL, [FechaRegistro] DATETIME NULL, [UsuarioModifico] VARCHAR (250) NULL, [FechaModificado] DATETIME NULL, [UsuarioElimino] VARCHAR (250) NULL, [FechaEliminado] DATETIME NULL, [UsuarioActivo] VARCHAR (250) NULL, [FechaActivacion] DATETIME NULL, [FlagBorrador] BIT NULL, [Flag] BIT NULL, [AgenteRetencion] INT NULL, [AgentePercepcion] INT NULL, [BuenContribuyente] INT NULL, [ResolucionBuenContribuyente] VARCHAR (100) NULL, CONSTRAINT [PK__Entidad__7D66286810A3F35A] PRIMARY KEY CLUSTERED ([ID] ASC), CONSTRAINT [FK__Entidad__IdTipoP__0E240DFC] FOREIGN KEY ([IdTipoPersona]) REFERENCES [Maestro].[TipoPersona] ([ID]), CONSTRAINT [FK_Entidad_CondicionSunat] FOREIGN KEY ([IdCondicionSunat]) REFERENCES [Maestro].[CondicionSunat] ([ID]), CONSTRAINT [FK_Entidad_EstadoContribuyente] FOREIGN KEY ([IdEstadoContribuyente]) REFERENCES [Maestro].[EstadoContribuyente] ([ID]) );
SELECT character_id, user_id, party_id, characters.class_id, character_name, experience, level, gold, retired, items, classes.class_name as class_name, checkmarks, perks FROM characters JOIN classes ON classes.class_id = characters.class_id WHERE characters.character_id = $1
CREATE TABLE [seguridad].[usuarios] ( [id_usuario] INT IDENTITY (1, 1) NOT NULL, [activo] BIT NOT NULL, [apellidos] VARCHAR (50) NOT NULL, [email] VARCHAR (50) NOT NULL, [fecha_actualizacion] DATETIME2 (0) NOT NULL, [nombres] VARCHAR (50) NOT NULL, [password] VARCHAR (20) NOT NULL, [usuario] VARCHAR (20) NOT NULL, [usuario_actualizacion] VARCHAR (50) NOT NULL, CONSTRAINT [PK_usuarios] PRIMARY KEY CLUSTERED ([id_usuario] ASC) WITH (FILLFACTOR = 80), CONSTRAINT [UK_usuarios_01] UNIQUE NONCLUSTERED ([usuario] ASC) WITH (FILLFACTOR = 80) );
SELECT c.Name AS Category, COUNT(a.Id) AS [Answers Count] FROM Categories c LEFT JOIN Questions q ON q.CategoryId = c.Id LEFT JOIN Answers a ON a.QuestionId = q.Id GROUP BY c.Name ORDER BY COUNT(a.Id) DESC
CREATE TABLE [ERP].[DatoLaboralSuspension] ( [ID] INT IDENTITY (1, 1) NOT NULL, [IdTipoSuspension] INT NULL, [IdDatoLaboral] INT NULL, [IdEmpresa] INT NULL, [FechaInicio] DATETIME NULL, [FechaFin] DATETIME NULL, [CITT] VARCHAR (20) NULL, PRIMARY KEY CLUSTERED ([ID] ASC), FOREIGN KEY ([IdDatoLaboral]) REFERENCES [ERP].[DatoLaboral] ([ID]), FOREIGN KEY ([IdEmpresa]) REFERENCES [ERP].[Empresa] ([ID]), FOREIGN KEY ([IdTipoSuspension]) REFERENCES [PLAME].[T21TipoSuspension] ([ID]) );
DO $$ DECLARE inserted_user_id bigint; BEGIN INSERT INTO users VALUES (NEXTVAL('user_seq'), (current_timestamp - interval '1 hour'), (current_timestamp - interval '1 hour'), 'jackbrown@mail.comx', 'Jack', 'Brown', '$2a$10$D10WQvA6At6FhEygxdns/uxAoOUYfCfnh5pInw4aersqDuBXUuvw.', 'jack') RETURNING id INTO inserted_user_id; INSERT INTO users_roles VALUES (inserted_user_id, (SELECT id FROM roles WHERE name = 'ROLE_USER') ); INSERT INTO products VALUES (NEXTVAL('product_seq'), (current_timestamp - interval '5 minute'), (current_timestamp - interval '5 minute'), false, 'Without lactose', '3', 'Milk', 'bottles', inserted_user_id); INSERT INTO products VALUES (NEXTVAL('product_seq'), (current_timestamp - interval '4 minute'), (current_timestamp - interval '4 minute'), false, 'Whole grain', '5', 'Bread', null, inserted_user_id); INSERT INTO products VALUES (NEXTVAL('product_seq'), (current_timestamp - interval '3 minute'), (current_timestamp - interval '3 minute'), true, 'Fresh! Buy fresh!', '3', 'Orange juice', 'litres', inserted_user_id); INSERT INTO products VALUES (NEXTVAL('product_seq'), (current_timestamp - interval '2 minute'), (current_timestamp - interval '2 minute'), false, null, null, 'Spices for barbecue', null, inserted_user_id); INSERT INTO products VALUES (NEXTVAL('product_seq'), (current_timestamp - interval '1 minute'), (current_timestamp - interval '1 minute'), false, 'Powdery', '3.5', 'Flour', 'kg', inserted_user_id); END $$;
-- phpMyAdmin SQL Dump -- version 3.2.4 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Mar 15, 2010 at 08:43 PM -- Server version: 5.1.41 -- PHP Version: 5.3.1 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 */; -- -- Database: `musicdb` -- CREATE DATABASE IF NOT EXISTS musicdb; GRANT ALL PRIVILEGES ON musicdb.* to 'music'@'localhost' identified by 'music'; use musicdb; -- -------------------------------------------------------- -- -- Table structure for table `band` -- CREATE TABLE IF NOT EXISTS `band` ( `bandName` varchar(60) NOT NULL, `bandState` varchar(60) NOT NULL, `bandCity` varchar(60) NOT NULL, `bandGenre` varchar(60) NOT NULL, `bandDescription` blob NOT NULL, `bandPhoto` varchar(100) NOT NULL, PRIMARY KEY (`bandName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `band` -- REPLACE INTO `band` (`bandName`, `bandState`, `bandCity`, `bandGenre`, `bandDescription`, `bandPhoto`) VALUES ('Test Band 10', 'Kentucky', '2', '2', 0x5468697320697320612074657374206465736372697074696f6e20666f7220546573742042616e642031, 'karl.jpg'), ('Test Band K', 'New York,', 'New York,', 'Pip', 0x5468697320697320612074657374206465736372697074696f6e20666f7220546573742042616e642032, 'karl.jpg'), ('Test Band L', 'Georgia', 'Orange', 'Kids', 0x546869732069732061206465736372697074696f6e, 'asdfasdf'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `name` varchar(40) NOT NULL, `email` varchar(50) NOT NULL, `password` varchar(100) NOT NULL, `admin` tinyint(1) NOT NULL, PRIMARY KEY (`email`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- REPLACE INTO `users` (`name`, `email`, `password`, `admin`) VALUES ('user', 'user@mail', 'ee11cbb19052e40b07aac0ca060c23ee', 0); -- -------------------------------------------------------- -- -- Table structure for table `venue` -- CREATE TABLE IF NOT EXISTS `venue` ( `venueName` varchar(60) NOT NULL, `venueState` varchar(60) NOT NULL, `venueCity` varchar(80) NOT NULL, `venueStreet` varchar(100) NOT NULL, `venueDescription` blob NOT NULL, `venuePicture` varchar(100) NOT NULL, `venueMap` varchar(150) NOT NULL, PRIMARY KEY (`venueName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `venue` -- REPLACE INTO `venue` (`venueName`, `venueState`, `venueCity`, `venueStreet`, `venueDescription`, `venuePicture`, `venueMap`) VALUES ('Test Venue 1', 'Virginia', 'Stafford', 'Jefferson Davis Hwy', 0x5468697320697320612074657374206465736372697074696f6e20666f722056656e75652031, 'File Path for venue Picture here', 'url for map link for venue here'), ('Test Venue 2', 'Ohio', 'Cleveland', 'Made Up Street Rd', 0x5468697320697320612074657374206465736372697074696f6e20666f7220546573742056656e75652032, 'Test Venue 2 Picture path here', 'Test Venue 2 url map link here.'); /*!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 */;
--Get all customers and their addresses. SELECT "customers".first_name, "customers".last_name, "addresses".street, "addresses".city, "addresses".state, "addresses".zip FROM "customers" JOIN "addresses" ON "customers".id = "addresses".customer_id; --Get all orders and their line items (orders, quantity and product). SELECT "orders".id, "line_items".quantity, "line_items".product_id FROM "orders" JOIN "line_items" ON "orders".id = "line_items".order_id; --Which warehouses have cheetos? SELECT "products".description, "warehouse".warehouse FROM "products" JOIN "warehouse_product" ON "products".id = "warehouse_product".product_id JOIN "warehouse" ON "warehouse_product".warehouse_id = "warehouse".id WHERE "products".id = 5; --delta --Which warehouses have diet pepsi? SELECT "products".description, "warehouse".warehouse FROM "products" JOIN "warehouse_product" ON "products".id = "warehouse_product".product_id JOIN "warehouse" ON "warehouse_product".warehouse_id = "warehouse".id WHERE "products".id = 6; --alpha --delta --gamma --Get the number of orders for each customer. NOTE: It is OK if those without orders are not included in results. SELECT "customers".first_name, "customers".last_name, COUNT("orders".address_id) FROM "customers" JOIN "addresses" ON "customers".id = "addresses".customer_id JOIN "orders" ON "addresses".id = "orders".address_id GROUP BY "customers".first_name, "customers".last_name; --How many customers do we have? SELECT COUNT(*) FROM "customers"; --4 --How many products do we carry? SELECT COUNT(*) FROM "products"; --7 --What is the total available on-hand quantity of diet pepsi? SELECT SUM("warehouse_product".on_hand) FROM "warehouse_product" WHERE "product_id" = 6; --92
----------------------------------------------------------------1. /* Koristeći isključivo SQL kod, kreirati bazu pod vlastitim brojem indeksa sa defaultnim postavkama. */ /* Unutar svoje baze podataka kreirati tabele sa sljedećom struktorom: --NARUDZBA a) Narudzba NarudzbaID, primarni ključ Kupac, 40 UNICODE karaktera PunaAdresa, 80 UNICODE karaktera DatumNarudzbe, datumska varijabla, definirati kao datum Prevoz, novčana varijabla Uposlenik, 40 UNICODE karaktera GradUposlenika, 30 UNICODE karaktera DatumZaposlenja, datumska varijabla, definirati kao datum BrGodStaza, cjelobrojna varijabla */ --PROIZVOD /* b) Proizvod ProizvodID, cjelobrojna varijabla, primarni ključ NazivProizvoda, 40 UNICODE karaktera NazivDobavljaca, 40 UNICODE karaktera StanjeNaSklad, cjelobrojna varijabla NarucenaKol, cjelobrojna varijabla */ --DETALJINARUDZBE /* c) DetaljiNarudzbe NarudzbaID, cjelobrojna varijabla, obavezan unos ProizvodID, cjelobrojna varijabla, obavezan unos CijenaProizvoda, novčana varijabla Kolicina, cjelobrojna varijabla, obavezan unos Popust, varijabla za realne vrijednosti Napomena: Na jednoj narudžbi se nalazi jedan ili više proizvoda. */ ----------------------------------------------------------------2. --2a) narudzbe /* Koristeći bazu Northwind iz tabela Orders, Customers i Employees importovati podatke po sljedećem pravilu: OrderID -> ProizvodID ComapnyName -> Kupac PunaAdresa - spojeno adresa, poštanski broj i grad, pri čemu će se između riječi staviti srednja crta sa razmakom prije i poslije nje OrderDate -> DatumNarudzbe Freight -> Prevoz Uposlenik - spojeno prezime i ime sa razmakom između njih City -> Grad iz kojeg je uposlenik HireDate -> DatumZaposlenja BrGodStaza - broj godina od datum zaposlenja */ --proizvod /* Koristeći bazu Northwind iz tabela Products i Suppliers putem podupita importovati podatke po sljedećem pravilu: ProductID -> ProizvodID ProductName -> NazivProizvoda CompanyName -> NazivDobavljaca UnitsInStock -> StanjeNaSklad UnitsOnOrder -> NarucenaKol */ --RJ: 78 --detaljinarudzbe /* Koristeći bazu Northwind iz tabele Order Details importovati podatke po sljedećem pravilu: OrderID -> NarudzbaID ProductID -> ProizvodID CijenaProizvoda - manja zaokružena vrijednost kolone UnitPrice, npr. UnitPrice = 3,60 CijenaProizvoda = 3,00 */ ----------------------------------------------------------------3. --3a /* U tabelu Narudzba dodati kolonu SifraUposlenika kao 20 UNICODE karaktera. Postaviti uslov da podatak mora biti dužine tačno 15 karaktera. */ --3b /* Kolonu SifraUposlenika popuniti na način da se obrne string koji se dobije spajanjem grada uposlenika i prvih 10 karaktera datuma zaposlenja pri čemu se između grada i 10 karaktera nalazi jedno prazno mjesto. Provjeriti da li je izvršena izmjena. */ --3c /* U tabeli Narudzba u koloni SifraUposlenika izvršiti zamjenu svih zapisa kojima grad uposlenika završava slovom "d" tako da se umjesto toga ubaci slučajno generisani string dužine 20 karaktera. Provjeriti da li je izvršena zamjena. */ ----------------------------------------------------------------4. /* Koristeći svoju bazu iz tabela Narudzba i DetaljiNarudzbe kreirati pogled koji će imati sljedeću strukturu: Uposlenik, SifraUposlenika, ukupan broj proizvoda izveden iz NazivProizvoda, uz uslove da je dužina sifre uposlenika 20 karaktera, te da je ukupan broj proizvoda veći od 2. Provjeriti sadržaj pogleda, pri čemu se treba izvršiti sortiranje po ukupnom broju proizvoda u opadajućem redoslijedu.*/ ----------------------------------------------------------------5. /* Koristeći vlastitu bazu kreirati proceduru nad tabelom Narudzbe kojom će se dužina podatka u koloni SifraUposlenika smanjiti sa 20 na 4 slučajno generisana karaktera. Pokrenuti proceduru. */ ----------------------------------------------------------------6. /* Koristeći vlastitu bazu podataka kreirati pogled koji će imati sljedeću strukturu: NazivProizvoda, Ukupno - ukupnu sumu prodaje proizvoda uz uzimanje u obzir i popusta. Suma mora biti zakružena na dvije decimale. U pogled uvrstiti one proizvode koji su naručeni, uz uslov da je suma veća od 10000. Provjeriti sadržaj pogleda pri čemu ispis treba sortirati u opadajućem redoslijedu po vrijednosti sume. */ ----------------------------------------------------------------7. --7a /* Koristeći vlastitu bazu podataka kreirati pogled koji će imati sljedeću strukturu: Kupac, NazivProizvoda, suma po cijeni proizvoda pri čemu će se u pogled smjestiti samo oni zapisi kod kojih je cijena proizvoda veća od srednje vrijednosti cijene proizvoda. Provjeriti sadržaj pogleda pri čemu izlaz treba sortirati u rastućem redoslijedu izračunatoj sumi. */ /* Koristeći vlastitu bazu podataka kreirati proceduru kojom će se, koristeći prethodno kreirani pogled, definirati parametri: kupac, NazivProizvoda i SumaPoCijeni. Proceduru kreirati tako da je prilikom izvršavanja moguće unijeti bilo koji broj parametara (možemo ostaviti bilo koji parametar bez unijete vrijednosti), uz uslov da vrijednost sume bude veća od srednje vrijednosti suma koje su smještene u pogled. Sortirati po sumi cijene. Procedura se treba izvršiti ako se unese vrijednost za bilo koji parametar. Nakon kreiranja pokrenuti proceduru za sljedeće vrijednosti parametara: 1. SumaPoCijeni = 123 2. Kupac = Hanari Carnes 3. NazivProizvoda = Côte de Blaye */ ----------------------------------------------------------------8. /* a) Kreirati indeks nad tabelom Proizvod. Potrebno je indeksirati NazivDobavljaca. Uključiti i kolone StanjeNaSklad i NarucenaKol. Napisati proizvoljni upit nad tabelom Proizvod koji u potpunosti koristi prednosti kreiranog indeksa.*/ /*b) Uraditi disable indeksa iz prethodnog koraka.*/ ----------------------------------------------------------------9. /*Napraviti backup baze podataka na default lokaciju servera.*/ ----------------------------------------------------------------10. /*Kreirati proceduru kojom će se u jednom pokretanju izvršiti brisanje svih pogleda i procedura koji su kreirani u Vašoj bazi.*/
insert INTO F VALUES ('ABC', 'EF', false, 'Is a superkey, so no violation'), ('E', 'D', true, 'is not a superkey and D is not a subset of E, so BCNF doesn't hold.'), ('D', 'A', true, 'is not a superkey and A is not a subset of D, so BCNF doesn't hold.') insert INTO F1 ('ABC', 'EF', false, 'Is a superkey, so no violation'); insert INTO F2 ('E', 'D', false, 'is a superkey, so no violation'); insert INTO F3 ('D', 'A', true, 'is not a superkey and not a subset, so BCNF doesn't hold.'); insert INTO F4 ('BC', 'EF', true, 'is a superkey, so no violation');
CREATE PROC [ERP].[Usp_Upd_Cuenta] @IdCuenta INT, @Nombre VARCHAR(50), @CuentaInterbancaria VARCHAR(20), @IdMoneda INT, @IdEntidad INT, @IdTipoCuenta INT, @IdPlanCuenta INT, @FechaApertura DATETIME, @SaldoInicialDebe DECIMAL(16,5), @SaldoInicialHaber DECIMAL(16,5), @UsuarioModifico VARCHAR(250), @FlagDetraccion BIT, @FlagContabilidad BIT, @FlagBorrador BIT, @MostrarEnFE BIT AS BEGIN UPDATE ERP.Cuenta SET Nombre = @Nombre, CuentaInterbancario = @CuentaInterbancaria, IdMoneda = @IdMoneda, IdTipoCuenta = @IdTipoCuenta, IdPlanCuenta = @IdPlanCuenta, Fecha = @FechaApertura, SaldoInicialDebe = @SaldoInicialDebe, SaldoInicialHaber = @SaldoInicialHaber, UsuarioModifico = @UsuarioModifico, FechaModificado = DATEADD(HOUR, 3, GETDATE()), FlagDetraccion = @FlagDetraccion, FlagContabilidad = @FlagContabilidad, IdEntidad = @IdEntidad, FlagBorrador = @FlagBorrador, MostrarEnFE = @MostrarEnFE WHERE ID = @IdCuenta END
DROP DATABASE IF EXISTS descargar_peliculas; CREATE DATABASE descargar_peliculas; USE descargar_peliculas; CREATE TABLE categoria( id INT AUTO_INCREMENT, nombre VARCHAR (100), PRIMARY KEY (id), UNIQUE (nombre) ); INSERT INTO categoria VALUES(NULL, 'Accion'), (NULL, 'Ciencia Ficcion'), (NULL, 'Animacion'), (NULL, 'Artes Marciales'), (NULL, 'Comedia'), (NULL, 'Romance'), (NULL, 'Terror'), (NULL, 'Aventura'), (NULL, 'Deporte'), (NULL, 'Fantasia'), (NULL, 'Series TV'), (NULL, 'Triller'); CREATE TABLE formato( id INT AUTO_INCREMENT, nombre VARCHAR (50), descripcion TEXT, PRIMARY KEY (id), UNIQUE (nombre) ); INSERT INTO formato VALUES(NULL, 'SCR', 'Obtebido de un DVD o de Blu-ray DE USO promocional'), (NULL, 'VHS-Screener', 'Lo mismo de un SCR, pero obtenida de una cinta VHS'), (NULL, 'TC(telecine)', 'Se obtiene por la transferencia del rollo analógico destinado a cines a un medio digital a través de una máquina destinada a este fin'), (NULL, 'WP(Workprint)', 'Son copias obtenidas de películas no terminadas.'), (NULL, 'DVDFull', 'Es una copia exacta del DVD original'), (NULL, 'DVDRip', 'Son copias donde se extrae la película y uno o dos audios y a veces también uno o dos pistas de subtítulos'), (NULL, 'BRRip', 'Son HDRip obtenidos de un Blu-ray comercial. '), (NULL, 'HDTV', 'Son capturas realizadas desde emisiones digitales de Alta Definición.'), (NULL, 'HD', 'son señales digitales que ofrecen una calidad superior a la ofrecida por el SD o ED.'), (NULL, '720p y 1080p', 'hacen referencia al número de líneas verticales que muestra cada fotograma.'); CREATE TABLE cuenta ( id INT AUTO_INCREMENT, nickname VARCHAR(50) UNIQUE, email VARCHAR(50) UNIQUE, passwd VARCHAR(64), PRIMARY KEY (id) ); INSERT INTO cuenta VALUES(NULL, 'mrT', 'marc.sc@outlook.es', SHA2('63568', 0)), (NULL, 'juan', 'juan@hotmail.com', SHA2('31231', 0)), (null,'hola', 'hola@gmail.com', SHA2('hola',0)), (null,'mauco', 'mauco@gmail.com', SHA2('mauco',0)); CREATE TABLE servidor ( id INT AUTO_INCREMENT, nombre VARCHAR(50) UNIQUE, id_cuenta_fk INT, PRIMARY KEY (id) ); INSERT INTO servidor VALUES(NULL, 'Usercloud', 1), (NULL, 'Openload', 3), (NULL, 'Uptobox', 2), (NULL, '1Fichier', 3), (NULL, '4Shared', 1), (NULL, 'Uploaded', 2), (NULL, 'Mega', 3), (NULL, 'GoogleDrive', 1); CREATE TABLE pelicula ( id INT AUTO_INCREMENT, nombre VARCHAR (100)UNIQUE, resolucion VARCHAR (15), idioma VARCHAR (50), tamano VARCHAR (10), sinopsis TEXT, PRIMARY KEY (id) ); INSERT INTO pelicula VALUES(NULL, 'el jefe de la mafia', '1920x808', 'Español Latino', '3.75 GB', 'Biopic del famoso mafioso estadounidense John Gotti (1940-2002), jefe de la familia Gambino, una de las más importantes del crimen organizado en la Norteamérica del siglo XX.'), (NULL, 'el legado', '1920x1080', 'Español Latino', '3.96 GB ', 'Perseguidos por un criminal vengativo (James Franco) y una banda de soldados sobrenaturales,​ un exconvicto recién liberado (Jack Reynor) y su hermano adolescente adoptado (Myles Truitt) se ven obligados a escapar con un arma de origen misterioso que es su única protección.'), (NULL, 'star Wars: Episodio VI - El Retorno del jedi', '1920x1080', 'Inglés AC', '4.71 GB', 'Para ir a Tatooine y liberar a Han Solo, Luke Skywalker y la princesa Leia deben infiltrarse en la peligrosa guarida de Jabba the Hutt, el gángster más temido de la galaxia. Una vez reunidos, el equipo recluta a tribus de Ewoks para combatir a las fuerzas imperiales en los bosques de la luna de Endor. Mientras tanto, el Emperador y Darth Vader conspiran para atraer a Luke al lado oscuro, pero el joven está decidido a reavivar el espíritu del Jedi en su padre. La guerra civil galáctica termina con un último enfrentamiento entre las fuerzas rebeldes unificadas y una segunda Estrella de la Muerte, indefensa e incompleta, en una batalla que decidirá el destino de la galaxia.'), (NULL, 'scarface', '1920x1080', 'Español', '2 GB', 'Un imigrande cubano de las carceles de fidel castro provoca un camino de destruccion en su ascenso en el mundo de las drogras de miami'); CREATE TABLE pelicula_servidor ( id INT AUTO_INCREMENT, id_pelicula_fk INT, id_servidor_fk INT, url TEXT, PRIMARY KEY (id) ); INSERT INTO pelicula_servidor VALUES(NULL, 3, 7, "http://paste.pelismegahd.pe/?v=52725"), (NULL, 3, 8, "http://paste.pelismegahd.pe/?v=52726"), (NULL, 2, 5, "http://paste.pelismegahd.pe/?v=53858"), (NULL, 2, 2, "http://paste.pelismegahd.pe/?v=53858"), (NULL, 1, 2, "http://paste.pelismegahd.pe/?v=53858"), (NULL, 1, 3, "http://paste.pelismegahd.pe/?v=53858"); CREATE TABLE pelicula_formato ( id INT AUTO_INCREMENT, id_pelicula_fk INT, id_formato_fk INT, PRIMARY KEY (id) ); INSERT INTO pelicula_formato VALUES(NULL, 1, 7), (NULL, 2, 7); CREATE TABLE categoria_pelicula ( id INT AUTO_INCREMENT, id_pelicula_fk INT, id_categoria_fk INT, PRIMARY KEY (id) ); INSERT INTO categoria_pelicula VALUES(NULL, 2, 1), (NULL, 3, 2), (NULL, 1, 1), (NULL, 2, 2); -- inner_join_Visualizar SELECT pelicula.id AS 'N', pelicula.nombre, pelicula.resolucion, pelicula.idioma, pelicula.tamano, categoria.nombre AS 'Categoria' FROM categoria_pelicula INNER JOIN categoria ON categoria_pelicula.id_categoria_fk = categoria.id INNER JOIN pelicula ON categoria_pelicula.id_pelicula_fk = pelicula.id; SELECT pelicula.nombre, servidor.nombre, AS 'Servidor' pelicula_servidor.url FROM pelicula_servidor INNER JOIN pelicula ON pelicula_servidor.id_pelicula_fk = pelicula.id INNER JOIN servidor ON pelicula_servidor.id_pelicula_fk = servidor.id; -- Update_Usuario UPDATE cuenta SET nickname = "mauco" WHERE nickname = 'hola';
CREATE DATABASE IF NOT EXISTS qservResult; GRANT ALL ON qservResult.* TO 'qsmaster'@'localhost'; -- Secondary index database (i.e. objectId/chunkId relation) -- created by integration test script/loader for now CREATE DATABASE IF NOT EXISTS qservMeta; GRANT ALL ON qservMeta.* TO 'qsmaster'@'localhost'; -- CSS database CREATE DATABASE IF NOT EXISTS qservCssData; GRANT ALL ON qservCssData.* TO 'qsmaster'@'localhost'; -- Database for business (i.e. LSST) data -- In the long term: -- * has to created by the dataloader -- * should be only on workers -- For now, mysql-proxy fails if this table -- doesn't exist in the database. -- CREATE DATABASE IF NOT EXISTS LSST; -- GRANT SELECT ON LSST.* TO 'qsmaster'@'localhost';
--truncate table goodsinfo --truncate table goodsinventory truncate table salesdetail truncate table salesmaster
CREATE PROCEDURE [ERP].[Usp_Sel_RegistoVentas_Export] @IdEmpresa int, @Anio int, @Mes int AS BEGIN SELECT C.Fecha FechaEmision, C.Fecha FechaVencimiento, T10.CodigoSunat Tipo, C.Serie Serie, C.Documento Numero, T2.Abreviatura Documento, ETD.NumeroDocumento RUC, EN.Nombre RazonSocial, C.TotalDetalleExportacion ValorFacturadoExportacion, Sum(iif(CE.ID <> 3,(iif(M.CodigoSunat = 'PEN',C.SubTotal,C.SubTotal*iif(T10.CodigoSunat='07',RF.VentaSunat,TC.VentaSunat))*iif(T10.CodigoSunat='07',-1,1)),'0.00000')) BaseImponible, C.TotalDetalleAfecto Exonerada, C.TotalDetalleInafecto Inafecta, C.TotalDetalleISC ISC, Sum(iif(CE.ID <> 3,(iif(M.CodigoSunat = 'PEN',C.IGV,C.IGV*iif(T10.CodigoSunat='07',RF.VentaSunat,TC.VentaSunat))*iif(T10.CodigoSunat='07',-1,1)),'0.00000')) IGV, '' OtrosTributos, Sum(iif(CE.ID <> 3,(iif(M.CodigoSunat = 'PEN',C.Total,C.Total*iif(T10.CodigoSunat='07',RF.VentaSunat,TC.VentaSunat))*iif(T10.CodigoSunat='07',-1,1)),'0.00000')) Total, C.TipoCambio TipoCambio, Rf.Fecha Fecha, Rf.CodigoSunat TipoReferencia, Rf.Serie SerieReferencia, Rf.Documento ComprobantePagoReferencia FROM ERP.Comprobante C INNER JOIN ERP.ComprobanteDetalle CD ON C.ID = CD.IdComprobante INNER JOIN ERP.Empresa E ON C.IdEmpresa = E.ID LEFT JOIN PLE.T10TipoComprobante T10 ON C.IdTipoComprobante = T10.ID LEFT JOIN ERP.Cliente Cl ON C.IdCliente = Cl.ID LEFT JOIN ERP.Entidad EN ON CL.IdEntidad = EN.ID LEFT JOIN ERP.EntidadTipoDocumento ETD ON EN.ID = ETD.IdEntidad LEFT JOIN PLE.T2TipoDocumento T2 ON ETD.IdTipoDocumento = T2.ID LEFT JOIN ERP.Proyecto Py ON C.IdProyecto = Py.ID LEFT JOIN ERP.Vendedor V ON C.IdVendedor = V.ID LEFT JOIN ERP.Almacen A ON C.IdAlmacen = A.ID LEFT JOIN ERP.Trabajador T ON C.IdUsuario = T.ID LEFT JOIN Maestro.Moneda M ON C.IdMoneda = M.ID LEFT JOIN ERP.ListaPrecio L ON C.IdListaPrecio = L.ID LEFT JOIN Maestro.ComprobanteEstado CE ON C.IdComprobanteEstado = CE.ID LEFT JOIN ERP.Producto P ON CD.IdProducto = P.ID LEFT JOIN ERP.PlanCuenta PC ON P.IdPlanCuenta = PC.ID INNER JOIN ERP.TipoCambioDiario TC ON C.Fecha = TC.Fecha LEFT JOIN (SELECT CM.ID, C.Fecha, T10.CodigoSunat, C.Serie, C.Documento, T.VentaSunat from ERP.ComprobanteReferenciaInterno R INNER JOIN erp.Comprobante C ON R.IdComprobanteReferencia = C.ID INNER JOIN erp.TipoCambioDiario T ON C.Fecha = T.Fecha INNER JOIN ERP.Comprobante CM ON CM.ID = R.IdComprobante LEFT JOIN PLE.T10TipoComprobante T10 ON C.IdTipoComprobante = T10.ID) RF ON C.ID = RF.ID WHERE C.IdEmpresa = @IdEmpresa AND MONTH(C.Fecha) = @Mes AND YEAR(C.FECHA) = @Anio AND C.FlagBorrador = 0 GROUP BY C.Fecha, T10.CodigoSunat, T2.Abreviatura, C.PorcentajeIGV, C.IdTipoComprobante, C.Serie, C.Documento, ETD.NumeroDocumento, EN.Nombre, C.TotalDetalleExportacion, C.TotalDetalleAfecto, C.TotalDetalleInafecto, C.TotalDetalleISC, M.Simbolo, C.SubTotal, C.IGV, C.Total, C.TipoCambio, RF.Fecha, Rf.CodigoSunat, Rf.Serie, Rf.Documento END
-- phpMyAdmin SQL Dump -- version 4.7.7 -- https://www.phpmyadmin.net/ -- -- Servidor: localhost -- Tiempo de generación: 14-06-2018 a las 17:49:25 -- Versión del servidor: 10.1.30-MariaDB -- Versión de PHP: 7.2.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `dm` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `equipos` -- CREATE TABLE `equipos` ( `ID` int(11) NOT NULL, `ID_USUARIO` int(11) NOT NULL, `NOMBRE` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `equipos` -- INSERT INTO `equipos` (`ID`, `ID_USUARIO`, `NOMBRE`) VALUES (1, 1, 'C.D. OMARULO'), (2, 1, 'C.D. PULPEIRO SANT ADRIA'), (3, 1, 'C.D. TEIA'), (4, 1, 'C.D. BLANCO Y NEGRO'), (5, 1, 'C.D. ARGENTONA'), (6, 1, 'C.D. TERRASSA LAS COLUMNAS'), (7, 1, 'C.D. PENYA SANTA PERPETUA'), (8, 1, 'EL CELLER ROCA-GRANOLLERS'), (9, 1, 'C.D. AMICS DEL DOMINO'), (10, 1, 'C.D. CASAL D ALELLA'), (11, 1, 'C.D. HERMANOS VAQUERO'), (12, 1, 'C.D. BAR LA PLAZA EL LORO'), (13, 1, 'C.D. NURIA GRANOLLERS'), (14, 1, 'C.D. CERVECERIA MONTERO'), (15, 1, 'C.D. BAR VULCANO'), (16, 1, 'C.D. VILADECANS'), (17, 1, 'PENYA SOLERA CASTELLAR'), (18, 1, 'C.D. DOMINO 28'), (19, 1, 'C.D. HISPANO FRANCES'), (20, 1, 'C.D. PARETS COOPERATIVA'), (21, 1, 'C.D. BAR TINC GANA'), (22, 1, 'C.D. ORENES CASTELLDEFELS'), (23, 1, 'C.D. L OSTIA BARCELONETA'), (24, 1, 'C.D. SABADELL'), (25, 1, 'PENYA BETICA VILADECANS'), (26, 1, 'RODA DE BARA'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `invitados` -- CREATE TABLE `invitados` ( `ID` int(11) NOT NULL, `USERNAME` varchar(10) NOT NULL, `PASSWORD` varchar(10) NOT NULL, `ID_USUARIO` int(11) NOT NULL, `EXPIRA` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `invitados` -- INSERT INTO `invitados` (`ID`, `USERNAME`, `PASSWORD`, `ID_USUARIO`, `EXPIRA`) VALUES (1, 'test', 'test', 1, '2018-06-14 10:12:00'), (2, 'invitado', 'invitado', 1, '2018-06-12 22:00:00'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jugadores` -- CREATE TABLE `jugadores` ( `ID` int(11) NOT NULL, `ID_USUARIO` int(11) NOT NULL, `NOMBRE` varchar(30) NOT NULL, `APELLIDO_1` varchar(30) NOT NULL, `APELLIDO_2` varchar(30) NOT NULL, `ID_EQUIPO` int(11) NOT NULL, `NUM_FEDERADO` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `jugadores` -- INSERT INTO `jugadores` (`ID`, `ID_USUARIO`, `NOMBRE`, `APELLIDO_1`, `APELLIDO_2`, `ID_EQUIPO`, `NUM_FEDERADO`) VALUES (1, 1, 'Rafael', 'Arimany Soler', '', 20, 73), (2, 1, 'Alberto', 'Álvarez Gallardo', '', 20, 74), (3, 1, 'Carmelo', 'Castro Soto', '', 20, 134), (4, 1, 'Salvador', 'Gómez Sánchez', '', 20, 158), (5, 1, 'Francisco', 'Ming Casas', '', 20, 205), (6, 1, 'Ernestina', 'Cañon Soto', '', 20, 206), (7, 1, 'Diego', 'Cayuela Martínez', '', 20, 231), (8, 1, 'Francisco', 'Hinojosa González', '', 20, 750), (9, 1, 'Puri', 'Ferreiro Sánchez', '', 20, 557), (10, 1, 'J. Luis', 'De Andres Rebollal', '', 20, 546), (11, 1, 'Pilar', 'Araujo García', '', 1, 13), (12, 1, 'Enrique', 'Sales Conde', '', 1, 21), (13, 1, 'Jaume', 'García Clemente', '', 15, 28), (14, 1, 'Francesc', 'Martí­nez Jiménez', '', 2, 34), (15, 1, 'José', 'Ferreiro Prado', '', 1, 55), (16, 1, 'Jorge', 'Martí­nez Barcina', '', 1, 93), (17, 1, 'Ruben Rafael', 'Domínguez Pérez', '', 1, 995), (18, 1, 'José A.', 'Nicolás Garrido', '', 1, 193), (19, 1, 'Jaume', 'López Marca', '', 1, 270), (20, 1, 'Jaume', 'Finestres', '', 1, 302), (21, 1, 'Jordi', 'Ballester', '', 1, 417), (22, 1, 'Josep', 'Girones Descarrega', '', 1, 544), (23, 1, 'Jorge', 'Bernal', '', 4, 42), (24, 1, 'Angel', 'Ezquerro Larrosa', '', 4, 129), (25, 1, 'Anastasio', 'Villalón Cabanilla', '', 4, 195), (26, 1, 'Amadeo', 'Martínez Colls', '', 4, 1060), (27, 1, 'Marcel.li', 'Viñe Simó', '', 4, 958), (28, 1, 'Román', 'García Empociello', '', 4, 300), (29, 1, 'Andrés', 'Ballve Pera', '', 4, 393), (30, 1, 'Carles', 'Limón Pons', '', 4, 439), (31, 1, 'Xavier', 'Gispert Alentorn', '', 4, 601), (32, 1, 'Miguel', 'Torres González', '', 8, 12), (33, 1, 'Esteban', 'Suñer Ventura', '', 13, 108), (34, 1, 'Francisco José', 'Soler Candela', '', 8, 136), (35, 1, 'Jaime', 'Rodríguez Rodríguez', '', 13, 225), (36, 1, 'David', 'Roquet Martínez', '', 13, 332), (37, 1, 'Benito', 'Caracuel Mesa', '', 8, 333), (38, 1, 'Carlos', 'Blanco Malagón', '', 4, 335), (39, 1, 'Victor', 'Arellano', '', 13, 342), (40, 1, 'Emilio', 'López Resina', '', 13, 757), (41, 1, 'Esteban', 'Pujal Bartalot', '', 8, 49), (42, 1, 'Fina', 'González González', '', 8, 125), (43, 1, 'Rafael', 'Montalbán Jiménez', '', 13, 191), (44, 1, 'Pere', 'González Prieto', '', 13, 227), (45, 1, 'Xavier', 'Gutiérrez García', '', 8, 293), (46, 1, 'José', 'Pérez Fuentes', '', 8, 471), (47, 1, 'J. Manuel', 'Magalhaes Oliveira', '', 13, 684), (48, 1, 'José', 'Fernández Ortíz', '', 13, 784), (49, 1, 'Emili', 'Romano Piñol', '', 8, 744), (50, 1, 'Baldomero', 'Navarro López', '', 6, 78), (51, 1, 'Blas', 'Belbel Coslado', '', 6, 79), (52, 1, 'Josep', 'Flores', '', 6, 166), (53, 1, 'José', 'López Prados', '', 6, 343), (54, 1, 'José', 'Prieto Pozo', '', 6, 453), (55, 1, 'Luis', 'López Carreras', '', 6, 617), (56, 1, 'Angel', 'Fernández González', '', 6, 664), (57, 1, 'Antonio', 'Moreno Rojas', '', 6, 666), (58, 1, 'Francisco', 'Millan Luna', '', 6, 667), (59, 1, 'Miguel Angel', 'Martínez Giménez', '', 6, 704), (60, 1, 'Mario', 'Esquivel Feria', '', 12, 276), (61, 1, 'Antonio', 'Boceta Yagüe', '', 12, 413), (62, 1, 'Juan Rafael', 'Rico Herranz', '', 12, 414), (63, 1, 'Francisco', 'Vera Gago', '', 12, 474), (64, 1, 'Joaquí­m', 'Sánchez Martínez', '', 12, 1014), (65, 1, 'José M.', 'Vera Gago', '', 12, 591), (66, 1, 'Manolo', 'Rico López', '', 12, 751), (67, 1, 'Juan José', 'Arranz Callico', '', 3, 5), (68, 1, 'Benet', 'Font Vila', '', 3, 6), (69, 1, 'Andreu', 'Ganges Masip', '', 3, 7), (70, 1, 'Silvestre', 'Sánchez Palomares', '', 3, 10), (71, 1, 'Florencio', 'Dorado López', '', 3, 61), (72, 1, 'Juan Antonio', 'González', '', 3, 116), (73, 1, 'Rafael ', 'Pérez Llamas', '', 3, 1041), (74, 1, 'Carmen ', 'Villa Sanjuan', '', 3, 331), (75, 1, 'Joan', 'Castany', '', 3, 658), (76, 1, 'Juan', 'González Conejo', '', 2, 11), (77, 1, 'José', 'Navarro Gamez', '', 2, 173), (78, 1, 'Justo', 'Sánchez Fernández', '', 2, 174), (79, 1, 'Angel', 'Sánchez Herrera', '', 8, 184), (80, 1, 'Moises', 'Asayag Ferreres', '', 9, 233), (81, 1, 'Antoni', 'Borras Cliville', '', 11, 240), (82, 1, 'Pedro Juan', 'Alberola Pla', '', 2, 613), (83, 1, 'Francesc', 'Martínez Pastor', '', 2, 641), (84, 1, 'Carmela', 'Davalillo Batlle', '', 11, 266), (85, 1, 'Manuel', 'Vázquez Darrocha', '', 2, 315), (86, 1, 'Carlos', 'Lucas Cea', '', 2, 461), (87, 1, 'Dionisio', 'Chamorro Tejeda', '', 2, 531), (88, 1, 'Diego', 'Heredia', '', 2, 594), (89, 1, 'Luis', 'Fernández Martínez', '', 2, 674), (90, 1, 'Javier', 'Quijada García', '', 2, 676), (91, 1, 'Rafael', 'Heredia', '', 2, 677), (92, 1, 'Ramon', 'Gimenez', '', 2, 695), (93, 1, 'Fernando', 'Fernandez', '', 2, 720), (94, 1, 'Antonio', 'Cruz', '', 2, 724), (95, 1, 'Ramón', 'Mateu Domenech', '', 2, 728), (96, 1, 'Antonio', 'Fernandez', '', 2, 736), (97, 1, 'Juan ', 'Fernandez', '', 2, 737), (98, 1, 'Isidoro', 'Jurado Almiron', '', 19, 84), (99, 1, 'Jordi', 'Pijoan Alabau', '', 19, 20), (100, 1, 'Julio', 'Bleda Estelles', '', 19, 2), (101, 1, 'Javier', 'Costa Ran', '', 19, 23), (102, 1, 'Eduardo', 'Cuenca Cot', '', 19, 27), (103, 1, 'Juan José', 'González Manzano', '', 19, 131), (104, 1, 'Francisco', 'Rebola Terrone', '', 19, 91), (105, 1, 'Marc', 'Calvo García', '', 19, 189), (106, 1, 'Cesar', 'Abad Pardo', '', 1, 236), (107, 1, 'Francisco', 'Molino Pradas', '', 19, 243), (108, 1, 'Francisco José', 'Cortes Jiménez', '', 19, 567), (109, 1, 'Juan', 'Forero Freixes', '', 18, 107), (110, 1, 'Francisco Javier', 'Flores', '', 18, 176), (111, 1, 'Oscar', 'Forero Triano', '', 18, 179), (112, 1, 'Lisardo', 'Vázquez Arias', '', 16, 310), (113, 1, 'Joan', 'Campos Arnau', '', 18, 321), (114, 1, 'Joaquín', 'Galia López', '', 18, 559), (115, 1, 'Juan', 'Sánchez Joven', '', 18, 561), (116, 1, 'Juan Antonio', 'Gil Martín', '', 18, 562), (117, 1, 'Gregorio', 'Monasor Velencoso', '', 18, 618), (118, 1, 'Gines', 'Nuñez Blaya', '', 18, 642), (119, 1, 'Carlos', 'Zapico González', '', 16, 752), (120, 1, 'Carles', 'Benito Pérez', '', 1, 993), (121, 1, 'Joaquín', 'Ibáñez Andreu', '', 1, 338), (122, 1, 'Montserrat', 'Ibáñez Álvarez', '', 1, 504), (123, 1, 'Pilar', 'Salmeron Martín', '', 1, 171), (124, 1, 'Manuel', 'Valenzuela Guerrero', '', 1, 423), (125, 1, 'Antonio', 'Diéguez Diéguez', '', 1, 170), (126, 1, 'Pepi', 'Catalán Conde', '', 1, 505), (127, 1, 'Marisol', 'Rodriguez', '', 1, 0), (128, 1, 'Ana', 'Gordillo', '', 1, 0), (129, 1, 'Paco', 'Padilla', '', 1, 0), (130, 1, 'Georgina', 'Zamora Amat', '', 1, 754), (131, 1, 'Jesús', 'Jimenez', '', 1, 0), (132, 1, 'Maria', 'Mases Cuscullola', '', 1, 519), (133, 1, 'Antonio', 'Martín Álvarez', '', 1, 518), (134, 1, 'José Manuel', 'González Pérez', '', 1, 765), (135, 1, 'Jordi', 'Vidal Palau', '', 2, 186), (136, 1, 'Kebby', 'Belisario Roel', '', 1, 670), (137, 1, 'Monica', 'Rodríguez De la Vega', '', 1, 742), (138, 1, 'Jorge', 'Graupera Expósito', '', 1, 267), (139, 1, 'Julio', 'Rufino Bienzobas', '', 1, 773), (140, 1, 'Juan', 'Giron Vallellano', '', 15, 406), (141, 1, 'José', 'Bravo Rodríguez', '', 15, 589), (142, 1, 'Juan', 'Gómez Romero', '', 15, 669), (143, 1, 'Jordi', 'Borras Pardo', '', 15, 346), (144, 1, 'José Antonio', 'Colas Vela', '', 15, 408), (145, 1, 'Albert', 'Altaba', 'Canals', 15, 766), (146, 1, 'Juan Carlos', 'Delgado Curiel', '', 15, 407), (147, 1, 'Gabriel', 'Pompas Hodara', '', 15, 540), (148, 1, 'Salvador', 'De Vera Martín', '', 15, 549), (149, 1, 'Jose Luis', 'Terol González', '', 15, 758), (150, 1, 'Alfonso', 'Matamoros Ramírez', '', 7, 308), (151, 1, 'José', 'Oliva', '', 7, 0), (152, 1, 'Antonio', 'Ferrer', '', 7, 0), (153, 1, 'Sebastian', 'Herrera', '', 7, 0), (154, 1, 'Juan Carlos', 'Ruano', '', 7, 0), (155, 1, 'Javier', 'Codina', '', 7, 0), (156, 1, 'Angel', 'Marca Nadal', '', 7, 255), (157, 1, 'Antonio', 'De La Bandera Méndez', '', 2, 563), (158, 1, 'Antonio', 'Carmona Fernández', '', 2, 595), (159, 1, 'Francisco', 'Parrilla Moro', '', 8, 72), (160, 1, 'Jorge', 'García Ruíz', '', 2, 659), (161, 1, 'Ivan', 'Huguet Martínez', '', 2, 643), (162, 1, 'Felix', 'Loro Masa', '', 2, 318), (163, 1, 'Enrique', 'Pérez Rodríguez', '', 2, 317), (164, 1, 'Fernando', 'Andujar Amador', '', 2, 523), (165, 1, 'Ramón', 'Cuadrado Muñoz', '', 2, 456), (166, 1, 'José', 'Gómez Arenas', '', 2, 521), (167, 1, 'Pedro', 'Alcober Alaber', '', 2, 520), (168, 1, 'Jacinto', 'Pizarro Alba', '', 2, 738), (169, 1, 'Jorge', 'Burguillos Calcerrada', '', 2, 522), (170, 1, 'Juana', 'Sanbartolome Miñarro', '', 2, 620), (171, 1, 'Jesús', 'García Seoane', '', 2, 71), (172, 1, 'Ramon', 'Novell', '', 3, 0), (173, 1, 'Maximo', 'Monterroso Gallardo', '', 3, 253), (174, 1, 'Jaume', 'Sotomayor Carbonell', '', 3, 115), (175, 1, 'Bartolome', 'Martínez Acosta', '', 3, 9), (176, 1, 'Jordi', 'García Montlleo', '', 3, 144), (177, 1, 'Marcel', 'Castells Cahue', '', 3, 209), (178, 1, 'Maria Elisabeth', 'De Kruuf', '', 3, 960), (179, 1, 'Francisco', 'Leal', '', 12, 0), (180, 1, 'Juan Carlos', 'Molino', '', 19, 0), (181, 1, 'Antonio', 'Pulido Álvarez', '', 13, 1066), (182, 1, 'Manuel', 'Correa', '', 13, 0), (183, 1, 'Vicente', 'García Carricondo', '', 13, 900), (184, 1, 'Sixto', 'Cobos Rabilero', '', 9, 26), (185, 1, 'Piedad', 'Fernández Torres', '', 9, 118), (186, 1, 'Prosper', 'Pinto Bensadou', '', 9, 106), (187, 1, 'Clemente', 'Choclan Martín', '', 9, 183), (188, 1, 'Patricio', 'Tosquella Amblas', '', 9, 139), (189, 1, 'Javier', 'Riverola Segura', '', 9, 571), (190, 1, 'Alfredo', 'Climent Paredes', '', 9, 550), (191, 1, 'Josep Mª', 'Minguella Llobet', '', 9, 39), (192, 1, 'Angel', 'Franch Quelart', '', 5, 483), (193, 1, 'Josep', 'Clariana Gari', '', 5, 662), (194, 1, 'Antonio', 'Luque Aguilar', '', 5, 705), (195, 1, 'Manuel', 'Criado Payan', '', 5, 706), (196, 1, 'Miguel', 'Alcalde', '', 5, 1032), (197, 1, 'Josep', 'Roman Ortíz', '', 5, 416), (198, 1, 'Josep Mª', 'Iñareta Quera', '', 5, 656), (199, 1, 'Gemma', 'Ibáñez Escude', '', 4, 994), (200, 1, 'Antonio', 'Aznar', '', 14, 0), (201, 1, 'José', 'Gallardo Manzano', '', 14, 418), (202, 1, 'Luis', 'Payo Martínez', '', 14, 402), (203, 1, 'Pedro', 'Novas Sánchez', '', 14, 150), (204, 1, 'Antonio', 'Cabeza Romera', '', 14, 124), (205, 1, 'Juan', 'Giraldez Sánchez', '', 14, 721), (206, 1, 'Antonio', 'García Díaz', '', 14, 841), (207, 1, 'Manuel', 'Diáz Carrillo', '', 14, 582), (208, 1, 'Juan', 'Tijerin García', '', 14, 132), (209, 1, 'Santiago', 'Luengo González', '', 14, 762), (210, 1, 'Luis', 'López Hornizo', '', 14, 477), (211, 1, 'Manuel', 'Ayala Latas', '', 11, 746), (212, 1, 'Carlos', 'Tabuenca Borobia', '', 11, 745), (213, 1, 'Emilio', 'Sirvent Roma', '', 11, 152), (214, 1, 'Eustaquio', 'Vaquero Talavera', '', 11, 458), (215, 1, 'José Manuel', 'González Raya', '', 11, 771), (216, 1, 'Guillermo', 'Delgado Sauz', '', 11, 748), (217, 1, 'Juan', 'Sánchez Revellés', '', 11, 747), (218, 1, 'Francisco', 'Gutierrez', '', 11, 0), (219, 1, 'Jesús', 'Hernandez', '', 11, 0), (220, 1, 'Manolo', 'Atienza', '', 11, 0), (221, 1, 'José Antonio', 'Vázquez Flores', '', 24, 560), (222, 1, 'Miguel', 'López Martínez', '', 8, 112), (223, 1, 'Manuel', 'Flores', '', 24, 0), (224, 1, 'Rafael', 'Álvarez', '', 24, 0), (225, 1, 'José', 'Gomez', '', 24, 0), (226, 1, 'José', 'Jacobo', '', 24, 0), (227, 1, 'Cipriano', 'Requena', '', 24, 0), (228, 1, 'José Luis', 'Rueda', '', 24, 0), (229, 1, 'Manuel', 'Ruiz', '', 24, 0), (230, 1, 'Josep', 'Garriga Moreno', '', 17, 33), (231, 1, 'Antonio', 'Falco Borrell', '', 17, 297), (232, 1, 'Grabiel', 'Pages Cirera', '', 17, 109), (233, 1, 'Santiago', 'Munt Badia', '', 17, 69), (234, 1, 'Albert', 'Vilaro', 'Serrat', 17, 37), (235, 1, 'Manel', 'Alier Escriu', '', 17, 68), (236, 1, 'Ferran', 'Tomas Jiménez', '', 17, 128), (237, 1, 'Luis', 'López Crespo', '', 17, 296), (238, 1, 'Pere', 'Villaro Genestos', '', 17, 38), (239, 1, 'Ramón', 'Riera Marcet', '', 17, 35), (240, 1, 'Francisco Javier', 'Carmona', '', 3, 636), (241, 1, 'Josep Ramón', 'Domenech', '', 19, 24), (242, 1, 'Manuel Eulalio', 'Altes Castellbl', '', 7, 675), (243, 1, 'Alberto', 'García Hernández', '', 10, 16), (244, 1, 'Agusti', 'Gibernau', 'Llovera', 10, 17), (245, 1, 'Juan', 'García Reina', '', 10, 181), (246, 1, 'Lluisa', 'Vila García', '', 10, 22), (247, 1, 'Jordi', 'Noguer Suñé', '', 10, 182), (248, 1, 'Mª Teresa', 'Llinas', '', 10, 592), (249, 1, 'Manuel', 'Estevez Casalderey', '', 10, 102), (250, 1, 'Carles', 'Barnadas', '', 10, 0), (251, 1, 'Fernando', 'Martínez Fernández', '', 9, 119), (252, 1, 'Rafael', 'Herrera Domínguez', '', 7, 398), (253, 1, 'Emili', 'Vicente Giménez', '', 3, 578), (254, 1, 'Jose Eduardo', 'Gruss', '', 3, 0), (255, 1, 'Salvador', 'Martínez Barcelo', '', 10, 19), (256, 1, 'Felipe', 'Valcarcel Heredia', '', 0, 0), (257, 1, 'José Antonio', 'Luque Ropero', '', 0, 679), (258, 1, 'Rafael', 'Recuerda', '', 0, 0), (259, 1, 'Alberto', 'Bermejo Álvarez', '', 0, 1), (260, 1, 'Rafael', 'Parra Bravo', '', 1, 996), (261, 1, 'José María', 'Giménez García', '', 0, 756), (262, 1, 'Nicolás', 'Osuna González', '', 19, 87), (263, 1, 'Joaquín', 'Obón Micó', '', 1, 804), (264, 1, 'Sergio', 'Pérez Merino', '', 1, 1059), (265, 1, 'Juan M.', 'Asensi Jiménez', '', 0, 824), (266, 1, 'Alberto', 'Gonzalez', '', 25, 0), (267, 1, 'Jordi', 'Díaz', '', 25, 0), (268, 1, 'Jose A.', 'Blanco', '', 25, 0), (269, 1, 'Manuel', 'García', '', 25, 0), (270, 1, 'Sergio', 'Rodriguez', '', 25, 0), (271, 1, 'Juan Pedro', 'Rodriguez', '', 25, 0), (272, 1, 'Chenchu', 'Ruiz', '', 25, 0), (273, 1, 'Luis', 'Fernández', '', 25, 0), (274, 1, 'Francisco', 'Gómez', '', 25, 0), (275, 1, 'Manuel', 'Rodriguez', '', 25, 0), (276, 1, 'Emilio', 'Alcázar', '', 25, 0), (277, 1, 'José', 'Martinez', '', 25, 0), (278, 1, 'Javier', 'Escorselle', '', 0, 0), (279, 1, 'Felipe', 'Rubio Asensio', '', 0, 786), (280, 1, 'Rafael', 'Lozano Villar', '', 16, 847), (281, 1, 'Antonio', 'Ortega Avalos', '', 16, 790), (282, 1, 'Tomas', 'Martínez Ruíz', '', 0, 795), (283, 1, 'José', 'Moises', '', 16, 0), (284, 1, 'Manolo', 'Espinosa', '', 0, 0), (285, 1, 'Benito', 'Sánchez Campos', '', 0, 948), (286, 1, 'Gonzalo', 'Carmona Gómez', '', 16, 797), (287, 1, 'Manuel', 'Alvez Maldonado', '', 0, 0), (288, 1, 'Valentin', 'Vinagre', '', 0, 0), (289, 1, 'Ramona', 'Requena', '', 0, 0), (290, 1, 'Antonio', 'Porcel Fernández', '', 16, 793), (291, 1, 'Manuel Jesús', 'Nisa Blanco', '', 0, 792), (292, 1, 'José M.', 'Acosta De los Reyes', '', 0, 825), (293, 1, 'Juan', 'Carrillo', '', 0, 0), (294, 1, 'Trini', 'Serra', '', 0, 0), (295, 1, 'Nuria', 'Costa', '', 0, 0), (296, 1, 'Carlos', 'Molino Santos', '', 2, 815), (297, 1, 'Miguel', 'Sabio', '', 0, 0), (298, 1, 'Rafael', 'Sabater Albafull', '', 2, 810), (299, 1, 'José', 'Melendo Esteve', '', 2, 811), (300, 1, 'Miquel', 'Borras Bohe', '', 2, 812), (301, 1, 'Ana', 'Varela Iglesias', '', 2, 813), (302, 1, 'Jonas', 'Lorenzo Rosich Mercade', '', 2, 814), (303, 1, 'Francesc', 'Valls Camps', '', 3, 817), (304, 1, 'Angel', 'Vaquero', '', 0, 0), (305, 1, 'José Luis', 'Montes', '', 3, 816), (306, 1, 'Ghislayne', 'Bastida', '', 4, 0), (307, 1, 'Asterio', 'Zoroa López', '', 15, 800), (308, 1, 'Enrique', 'Veroy Guallar', '', 15, 801), (309, 1, 'Manuel', 'Torres Noel', '', 15, 802), (310, 1, 'Juan', 'Moreno Molina', '', 15, 803), (311, 1, 'Ignacio', 'Noguera Castillo', '', 15, 798), (312, 1, 'Jordi', 'Laribal Raso', '', 15, 799), (313, 1, 'Victor', 'Lacalle Bueno', '', 4, 1052), (314, 1, 'Eli', 'Patiño Catalán', '', 1, 832), (315, 1, 'José', 'Jimenez', '', 0, 0), (316, 1, 'Miguel', 'Pons', '', 0, 0), (317, 1, 'Isidoro', 'Calleja García', '', 0, 932), (318, 1, 'Elvira', 'Serrano', '', 0, 0), (319, 1, 'Elena', 'Lucas Andreu', '', 1, 902), (320, 1, 'Martín', 'Sánchez García', '', 14, 777), (321, 1, 'Cristina', 'Duran Colomer', '', 10, 15), (322, 1, 'Juan Carlos', 'Sánchez Moratalla', '', 0, 46), (323, 1, 'Francisco Javier', 'Belbel Coslado', '', 0, 827), (324, 1, 'Ana', 'Palet Cubias', '', 10, 444), (325, 1, 'Miguel', 'Lima Pérez', '', 10, 733), (326, 1, 'Joan', 'Albert Torres', '', 0, 819), (327, 1, 'Aurelio', 'Gómez Gómez', '', 11, 778), (328, 1, 'Felix', 'Monteagudo Giménez', '', 11, 780), (329, 1, 'Jesús', 'Vaquero Talavera', '', 11, 1058), (330, 1, 'Victor', 'Nuez Pallares', '', 11, 631), (331, 1, 'Francisco', 'Ballastegui', '', 11, 775), (332, 1, 'Avelino', 'Domínguez Patricio', '', 0, 781), (333, 1, 'Pedro', 'Pastor', '', 0, 0), (334, 1, 'Alex', 'Garcia', '', 0, 0), (335, 1, 'Juanda', '', '', 0, 0), (336, 1, 'Jaume', 'Ribatallada', '', 26, 0), (337, 1, 'Mariano', 'Mirón', '', 8, 820), (338, 1, 'Asun', 'Ribas', '', 0, 0), (339, 1, 'Nuria', 'Viger Rovira', '', 5, 482), (340, 1, 'Esteban', 'Patiño Trocoli', '', 1, 830), (341, 1, 'Rosa', 'Carles', '', 0, 0), (342, 1, 'Eduard', 'Petreñas', '', 0, 0), (343, 1, 'Pere Joan', 'Rius', '', 0, 0), (344, 1, 'Francisco', 'Fornieles Aviles', '', 6, 788), (345, 1, 'Felip', 'Castells Baez', '', 6, 789), (346, 1, 'Pere', 'Cordoba Gil', '', 3, 818), (347, 1, 'Mª José', 'Madera Mejido', '', 0, 828), (348, 1, 'Curro', '', '', 0, 0), (349, 1, 'Ferran', 'Capell', '', 0, 0), (350, 1, 'Ayub', '', '', 0, 0), (351, 1, 'Paco', 'Garrido', '', 0, 0), (352, 1, 'Enric', 'Torrero Piquer', '', 0, 887), (353, 1, 'José', 'Rodenas Segura', '', 1, 846), (354, 1, 'Manolo', 'Gran', '', 0, 0), (355, 1, 'José Vicente', 'Fernández Fernández', '', 0, 1087), (356, 1, 'Giovanni', 'Garcia', '', 25, 0), (357, 1, 'José Luis', 'Abaijon', '', 25, 0), (358, 1, 'Carlos', 'Galceran', '', 25, 0), (359, 1, 'José', 'Mosteiro Sánchez', '', 0, 794), (360, 1, 'Antonio', 'Castillo', '', 0, 0), (361, 1, 'Francisco', 'García Pozo', '', 0, 837), (362, 1, 'Javier', 'Maronda Marrón', '', 0, 727), (363, 1, 'José', 'Raya Becerra', '', 0, 230), (364, 1, 'Abel ', 'García Ferrón', '', 0, 806), (365, 1, 'Rafael', 'Chanca Marcos', '', 0, 497), (366, 1, 'José', 'Arnegas Méndez', '', 0, 831), (367, 1, 'Juan José', 'Sarroca Bertolí', '', 0, 395), (368, 1, 'Antonio', 'Moreno Giménez', '', 0, 838), (369, 1, 'Francisco', 'Gallardo Castillo', '', 0, 791), (370, 1, 'Felipe', 'Diáz Rubí', '', 0, 1037), (371, 1, 'José', 'Palacios', '', 0, 0), (372, 1, 'Aniceto', 'Núñez González', '', 0, 783), (373, 1, 'Manel ', 'Lujan López', '', 0, 826), (374, 1, 'Juan José', 'Moncusi Pérez', '', 0, 920), (375, 1, 'Cristobal', 'Toful', '', 0, 0), (376, 1, 'Carlos', 'Agut Alvarez', '', 0, 885), (377, 1, 'Joan', 'Brils', '', 0, 0), (378, 1, 'Jordi', 'Cantan', '', 0, 0), (379, 1, 'David', 'Fresas', '', 0, 0), (380, 1, 'Dolors', 'Riera', '', 0, 0), (381, 1, 'Mª Rosa', 'Boolest', '', 0, 0), (382, 1, 'Cristina', 'Arnegas Busom', '', 0, 822), (383, 1, 'Fernando', 'Parente', '', 0, 0), (384, 1, 'Pepi', 'Cano', '', 0, 0), (385, 1, 'Agustín', 'Oliveira Rodríguez', '', 0, 842), (386, 1, 'Isabel', 'Lara Pérez', '', 0, 950), (387, 1, 'Manuel', 'Tijerín García', '', 0, 1056), (388, 1, 'Federico', 'González Cerdá', '', 0, 823), (389, 1, 'Florencio', 'Sanjurjo López', '', 0, 840), (390, 1, 'Francisco', 'García Pérez', '', 0, 833), (391, 1, 'Francisco', 'Romero Pérez', '', 0, 782), (392, 1, 'Joaquín', 'Moreno Ortíz', '', 0, 787), (393, 1, 'José ', 'García Rodríguez', '', 0, 839), (394, 1, 'José Mª', 'Barroso Serrano', '', 0, 1010), (395, 1, 'José Miguel', 'Baizan Moro', '', 0, 845), (396, 1, 'Gordo', '', '', 0, 0), (397, 1, 'Juan Antonio', 'Ramírez Porcel', '', 0, 807), (398, 1, 'Juan', 'Jiménez Martín', '', 0, 805), (399, 1, 'Juan', 'Navarro Loman', '', 0, 796), (400, 1, 'Manolo', 'Linares Ruíz', '', 0, 568), (401, 1, 'Manuel', 'Andre Barrio', '', 0, 584), (402, 1, 'Manuel', 'Martín Wic', '', 0, 834), (403, 1, 'Melchor', 'Cruz Torres', '', 0, 809), (404, 1, 'Modesto', 'García Serrano', '', 0, 769), (405, 1, 'Oscar', 'Abellan Sánchez', '', 0, 843), (406, 1, 'Oscar', 'Velasco Bon', '', 0, 808), (407, 1, 'Patricio', 'Sánchez Rivas', '', 0, 844), (408, 1, 'Carlos', 'Barceló Marquez', '', 0, 951), (409, 1, 'Pedro', 'Lino Ramírez', '', 0, 836), (410, 1, 'Pere', 'Prat Vilanova', '', 0, 785), (411, 1, 'Rafael', 'Pérez Ibáñez', '', 0, 835), (412, 1, 'José Antonio', 'Martínez Muñoz', '', 0, 975), (413, 1, 'Juan Carlos ', 'Martínez Vaya', '', 0, 992), (414, 1, 'Jaume', 'Martínez', '', 0, 0), (415, 1, 'Enrique', 'Villodas Gómez', '', 0, 997), (416, 1, 'José Vicente ', 'Martínez Pérez', '', 0, 955), (417, 1, 'Francisco', 'Orbea Echevarria', '', 0, 962), (418, 1, 'Diego', 'Arjona Rey', '', 0, 0), (419, 1, 'Facundo', 'Piñana Capera', '', 0, 0), (420, 1, 'Carlos ', 'Guillera Romero', '', 0, 0), (421, 1, 'Anna Mª', 'Belmonte Antolí', '', 0, 0), (422, 1, 'Salvador', 'Oriol Casanovas', '', 0, 0), (423, 1, 'Jesús', 'Gutiérrez Bailón', '', 0, 0), (424, 1, 'Antonio', 'García Quixalos', '', 0, 0), (425, 1, 'Emilio', 'Galera Madrid', '', 0, 0), (426, 1, 'Josep', 'Vigueres Cano', '', 0, 0), (427, 1, 'Montserrat', 'Esteve Alegre', '', 0, 0), (428, 1, 'Josep', 'Baciero Granda', '', 0, 0), (429, 1, 'Rosa', 'Portillo Sánchez', '', 0, 0), (430, 1, 'Josep Mª', 'Pallarés', '', 0, 0), (431, 1, 'Eduard', 'Losilla', '', 0, 0), (432, 1, 'Manuel', 'Curado Caraballo', '', 0, 986), (433, 1, 'José', 'Gisbert Llangostera', '', 0, 0), (434, 1, 'Jordi', 'Zaragoza Valls', '', 0, 1033), (435, 1, 'María Dolores', 'Rodríguez', '', 0, 0), (436, 1, 'Mario ', 'Ros', '', 0, 0), (437, 1, 'Manolo', 'Tervijano', '', 0, 0), (438, 1, 'Antonio', 'Rentero', '', 0, 0), (439, 1, 'Ramón', 'Heredia', '', 0, 0), (440, 1, 'Roger', 'Demas Peréz', '', 0, 0), (441, 1, 'José', 'Duque', '', 0, 0), (442, 1, 'Francisco', 'Duque', '', 0, 0), (443, 1, 'Manuel', 'Grau', '', 0, 0), (444, 1, 'Francisco', 'Gilbert', '', 0, 0), (445, 1, 'Daniel', 'Valcarcel', '', 0, 0), (446, 1, 'José Antonio', 'Mendoza Aguilar', '', 0, 0), (447, 1, 'Eduardo', 'De Simón Arasti', '', 0, 864), (448, 1, 'Rafael', 'Royo Cerezuela', '', 0, 905), (449, 1, 'Jaime', 'Portas Vergara', '', 0, 922), (450, 1, 'Hermann', 'Weinner Pons', '', 0, 886), (451, 1, 'Fulgenci', 'Pelay i Moreno', '', 0, 63), (452, 1, 'Lambert', 'Solanas Pis', '', 0, 901), (453, 1, 'José', 'Bejar Cañizares', '', 0, 147), (454, 1, 'Carlos', 'Caballero Rodríguez', '', 0, 167), (455, 1, 'Alfonso', 'García García', '', 0, 930), (456, 1, 'Juan Antón', 'Montes Alba', '', 0, 122), (457, 1, 'Andreu', 'Francisco Sabat', '', 0, 911), (458, 1, 'María Dolores', 'Bordas', '', 0, 913), (459, 1, 'Ramón', 'Mulero Porta', '', 0, 915), (460, 1, 'Xema', 'Inesta Salmerón', '', 0, 916), (461, 1, 'Felix', 'Pérez Méndez', '', 0, 918), (462, 1, 'Jaume', 'Conesa Armero', '', 0, 921), (463, 1, 'Jaume', 'Martín Lucas', '', 0, 1064), (464, 1, 'Antonio', 'Caballero', '', 0, 935), (465, 1, 'José Luis', 'Pulido', '', 0, 939), (466, 1, 'Pedro', 'Pulido Casas', '', 0, 940), (467, 1, 'Paco', 'Lombardo', '', 0, 0), (468, 1, 'José', 'Godino Quirós', '', 0, 910), (469, 1, 'Santiago ', 'León Muñóz', '', 0, 912), (470, 1, 'Jimy ', 'Martínez', '', 0, 0), (471, 1, 'Antonio', 'Chapela Artime', '', 0, 971), (472, 1, 'Sergi', 'Llao', '', 0, 0), (473, 1, 'Enric', 'García Juncadella', '', 0, 1012), (474, 1, 'Denisse', 'Rojas', '', 0, 0), (475, 1, 'Albert', 'Gil Gil', '', 0, 919), (476, 1, 'Pedro', 'Sanahuja Ayala', '', 0, 875), (477, 1, 'David', '', '', 0, 878), (478, 1, 'Pedro ', 'Marco Serrano', '', 0, 879), (479, 1, 'José', 'Molina Berlanga', '', 0, 876), (480, 1, 'Juan', 'Ibañez', '', 0, 0), (481, 1, 'Angel', 'Franch', '', 0, 0), (482, 1, 'Paco', 'Carmona', '', 0, 0), (483, 1, 'Pedro', 'Gómez Tomas', '', 0, 1047), (484, 1, 'Salvador', 'Pastor', '', 0, 0), (485, 1, 'Ramon', 'Rolan', '', 0, 0), (486, 1, 'José', 'Noe', '', 0, 0), (487, 1, 'Tomas', 'Cros', '', 0, 0), (488, 1, 'Josep', 'Pinilla', '', 0, 0), (489, 1, 'Lluis', 'Plana', '', 0, 0), (490, 1, 'Francesc', 'Lario Saperas', '', 0, 849), (491, 1, 'Patricio', 'Torres De la Torre', '', 0, 1054), (492, 1, 'José Mª', 'Monera Monera', '', 0, 1049), (493, 1, 'Francisco', 'Camara Fernández', '', 0, 1043), (494, 1, 'Amador', 'Amigo Calonge', '', 0, 978), (495, 1, 'Jorge', 'García Caceres', '', 0, 873), (496, 1, 'Maruja', 'Domínguez Torrijos', '', 0, 987), (497, 1, 'Luisa', 'Gelpi Castella', '', 0, 988), (498, 1, 'Rosa Mª', 'Climent Rocher', '', 0, 1008), (499, 1, 'Enrique', 'Sánchez Bergaz', '', 0, 981), (500, 1, 'Lourdes', 'Aponte Conde', '', 0, 985), (501, 1, 'Josep', 'Cuenca', '', 0, 0), (502, 1, 'Manuel ', 'Jurado Luque', '', 0, 970), (503, 1, 'Antonio', 'Bayona', '', 0, 966), (504, 1, 'Antonio', 'Alcazar Campos', '', 0, 974), (505, 1, 'Luis Ernesto', 'Hermoso González', '', 0, 1057), (506, 1, 'Clemente', 'Amador Gutiérrez', '', 0, 1030), (507, 1, 'Miquel Mª', 'Rué Rubio', '', 0, 101), (508, 1, 'Pere', 'Suau', '', 0, 0), (509, 1, 'Carme', 'Gilabert', '', 0, 0), (510, 1, 'Andrés', 'Maldonado', '', 0, 0), (511, 1, 'José M.', 'González', '', 0, 0), (512, 1, 'Pere', 'Moreno Ballver', '', 0, 684), (513, 1, 'Amelia', 'García', '', 0, 0), (514, 1, 'Andreu', 'Ballve', '', 0, 0), (515, 1, 'Bernardo', 'Marmol Quintana', '', 0, 1031), (516, 1, 'Albert', 'Ribas Fernández', '', 0, 963), (517, 1, 'José', 'Aranda Aranda', '', 0, 964), (518, 1, 'Vicente', 'Weiler Rubio', '', 0, 965), (519, 1, 'Mariano', 'Navas Torralba', '', 0, 1016), (520, 1, 'Eulalia', 'Massuet Torrus', '', 0, 1055), (521, 1, 'Victorio', 'Redolar Giménez', '', 0, 1013), (522, 1, 'Juan Antonio', 'López Gazquez', '', 0, 884), (523, 1, 'Juan', 'Canyelles Vidal', '', 0, 967), (524, 1, 'Angel', 'Verge Martín', '', 0, 972), (525, 1, 'Carmen', 'Lozano', '', 0, 0), (526, 1, 'José Mª', 'Balmaña Durban', '', 0, 990), (527, 1, 'Juan José', 'Sánchez', '', 0, 0), (528, 1, 'Juan', 'Casals Sadurni', '', 0, 983), (529, 1, 'Jaime', 'Garriga Rodenas', '', 0, 982), (530, 1, 'Juan', 'Lara', '', 0, 1006), (531, 1, 'Joaquin', 'Del Río', '', 0, 1005), (532, 1, 'Juan', 'Nieto Torres', '', 0, 1003), (533, 1, 'Pedro ', 'Paéz', '', 0, 0), (534, 1, 'Miguel', 'Martínez', '', 0, 0), (535, 1, 'Luis', 'Vendrell', '', 0, 0), (536, 1, 'Carlos A.', 'Prado Domínguez', '', 0, 1014), (537, 1, 'Jesús', 'Gracia', '', 0, 1004), (538, 1, 'Manuel', 'González Tenor', '', 0, 1019), (539, 1, 'Alex', 'Martínez Climent', '', 0, 1009), (540, 1, 'Rafa', 'Palas', '', 0, 0), (541, 1, 'Sara', 'Armengol Bernuz', '', 0, 1002), (542, 1, 'Francisco', 'González', '', 0, 0), (543, 1, 'José', 'Baladre', '', 0, 0), (544, 1, 'Alberto', 'Romero Suñé', '', 0, 1001), (545, 1, 'Francisco', 'Pérez Granizo', '', 0, 1000), (546, 1, 'Mariano', 'García', '', 0, 0), (547, 1, 'Maribel', 'San Elias', '', 0, 0), (548, 1, 'Roberto', 'Sala', '', 0, 0), (549, 1, 'Luis', 'López Carreras', '', 0, 1051), (550, 1, 'Francesc', 'Valera Calvo', '', 0, 850), (551, 1, 'Luis', 'Sanz Pascual', '', 0, 851), (552, 1, 'Rafael', 'López Lozano', '', 0, 852), (553, 1, 'Fernando', 'Zafra Carmona', '', 0, 914), (554, 1, 'David', 'Esquivel Feria', '', 0, 943), (555, 1, 'Agustín', 'Rins Aguilar', '', 0, 1027), (556, 1, 'Lolita', 'Rodríguez Castro', '', 0, 1034), (557, 1, 'Anna', 'Saperas Franch', '', 0, 1035), (558, 1, 'Manel', 'Ibáñez Andreu', '', 0, 1036), (559, 1, 'Luis', 'Cantos Rojas', '', 0, 1038), (560, 1, 'Santi', 'Bufi', '', 0, 1039), (561, 1, 'Juan', 'López López', '', 0, 1040), (562, 1, 'Pedro', 'De la Torre Expósito', '', 0, 968), (563, 1, 'Aitor', 'De la Torre Sánchez', '', 0, 969), (564, 1, 'Francisco', 'Valverde Valverde', '', 0, 973), (565, 1, 'Victor', 'Sánchez Camacho', '', 0, 976), (566, 1, 'Alfredo', 'García Aina', '', 0, 977), (567, 1, 'Juan Fco.', 'Benito Ramos', '', 0, 1061), (568, 1, 'Ramón', 'Aznar Jiménez', '', 0, 1065), (569, 1, 'Francisco', 'Cruz Palacios', '', 0, 874), (570, 1, 'Francisco A.', 'Fernández Quintana', '', 0, 537), (571, 1, 'Gabriel', 'López Pérez', '', 0, 998), (572, 1, 'Francisco', 'González Sánchez', '', 0, 999), (573, 1, 'José', 'Moreno Lorente', '', 0, 1007), (574, 1, 'Francisco', 'Jiménez Carrillo', '', 0, 1011), (575, 1, 'Miguel', 'Caparros Alvarez', '', 0, 1050), (576, 1, 'Julián', 'Ros Pérez', '', 0, 1017), (577, 1, 'Pere', 'Ferre Belloch', '', 0, 1018), (578, 1, 'Francisco', 'Romero López', '', 0, 1020), (579, 1, 'Alejandro', 'Ruíz', '', 0, 1021), (580, 1, 'Rafael', 'Martín Montero', '', 0, 1022), (581, 1, 'Dani', 'Parraga León', '', 0, 1023), (582, 1, 'Gustavo', 'Olaya Caro', '', 0, 1024), (583, 1, 'José L.', 'Díaz Barranco', '', 0, 1025), (584, 1, 'Manuel', 'Asens Adelantado', '', 0, 1026), (585, 1, 'Antonio', 'Fernández Garrido', '', 0, 1028), (586, 1, 'Jaume', 'Montaner Ferrando', '', 0, 1062), (587, 1, 'Francisco Javier', 'Carmona Torrente', '', 0, 1042), (588, 1, 'Rafael', 'Correa Pascual', '', 0, 1044), (589, 1, 'José Manuel', 'Floria Gil', '', 0, 1045), (590, 1, 'Rafael', 'Ramirez Fuentes', '', 0, 961), (591, 1, 'Manuel', 'Fernández Sangil', '', 0, 931), (592, 1, 'Carla', 'Pérez Méndez', '', 0, 956), (593, 1, 'Benito', 'Gracia Parra', '', 0, 957), (594, 1, 'Francesc', 'Moliner Castor', '', 0, 959), (595, 1, 'Antonio', 'Almendros Gallego', '', 0, 1029), (596, 1, 'Andreu', 'Rodríguez Sánchez', '', 0, 1053), (597, 1, 'Idalmis', 'Monteagudo Yera', '', 0, 1063), (598, 1, 'José Mª', 'Flamarich Simón', '', 0, 714), (599, 1, 'Martín', 'Salvador Gómez', '', 0, 857), (600, 1, 'Jaime', 'Miquel Romea', '', 0, 979), (601, 1, 'Manuel', 'Haro Cayuela', '', 0, 980), (602, 1, 'José L.', 'García Rodríguez', '', 0, 984), (603, 1, 'Pablo', 'Pacheco Cardena', '', 0, 989), (604, 1, 'David', 'Balmaña Gelpi', '', 0, 991), (605, 1, 'Francisco', 'Dorado', '', 0, 0), (606, 1, 'lourdes', 'aponte', '', 0, 0), (607, 1, 'Aaron', 'Rigau', '', 14, 10), (608, 1, 'Jordi', 'Pruna', '', 0, 0), (609, 1, 'José Mª', 'Albareda', '', 0, 0), (610, 1, 'J. Grau', '', '', 0, 0), (611, 1, 'Pallares', '', '', 0, 0), (612, 1, 'Balboa', '', '', 0, 0), (613, 1, 'Dulas', '', '', 0, 0), (614, 1, 'Pedro', 'Heredia', '', 0, 0), (615, 1, 'Tamudo', '', '', 0, 0), (616, 1, 'Andreu', '', '', 0, 0), (617, 1, 'Nuñez', '', '', 0, 0), (618, 1, 'Enrique', '', '', 0, 0), (619, 1, 'Jordi', 'Puges', '', 0, 0), (620, 1, 'puges_', '', '', 0, 0), (621, 1, 'puges_', '', '', 0, 0), (622, 1, 'Jordi', 'Puges.', '', 0, 0), (623, 1, 'Rafael', '', '', 0, 0), (624, 1, 'Albert', '', '', 0, 0), (625, 1, 'Teo', '', '', 0, 0), (626, 1, 'J. Francisco', '', '', 0, 0), (627, 1, 'Marcel', '', '', 0, 0), (628, 1, 'Ramon ', 'Rolan.', '', 0, 0), (629, 1, 'Evaristo', 'Balboa', '', 0, 0), (630, 1, 'Xavier', 'Grau', '', 0, 0), (631, 1, 'Joan', 'Martos', '', 0, 1083), (632, 1, 'Montserrat', 'Guillot', '', 0, 1085), (633, 1, 'Carlos', 'Campillo', '', 0, 1084), (634, 1, 'Rogelio', 'Muñoz ', '', 0, 0), (635, 1, 'Lara', 'Martinez', '', 0, 0), (636, 1, 'Tomas', '', '', 0, 0), (637, 1, 'Josep', '', '', 0, 0), (638, 1, 'Manolo', '', '', 0, 0), (639, 1, 'Serafín', 'Aranda', '', 0, 0), (640, 1, 'Luis', 'Martínez', '', 0, 0), (641, 1, 'ton', 'gonzalez valencia', '', 0, 0), (642, 1, 'carme', 'gilabert', '', 0, 0), (643, 1, 'felix', '', '', 0, 0), (644, 1, 'Pepe', '', '', 0, 0), (645, 1, 'Rafael', 'Carmona', '', 0, 0), (646, 1, 'Tino', 'Caballero', '', 0, 0), (647, 1, 'Juan José', 'Sánchez Moral', '', 0, 0), (648, 1, 'Tatiana', 'Sánchez', '', 0, 0), (649, 1, 'chus', '', '', 0, 0), (650, 1, 'Luis', '', '', 0, 0), (651, 1, 'Francisco Javier', 'Carmona Gabriel', '', 0, 0), (652, 1, 'valentin', 'm', '', 0, 0), (653, 1, 'Jose Luis', 'Andres Pérez', '', 0, 0), (654, 1, 'antonio ', 'cano ', '', 0, 0), (655, 1, 'antonio ', 'cano ', '', 0, 0), (656, 1, 'Manuel', 'Felix', '', 0, 0), (657, 1, 'Teruel', 'Guirao', '', 0, 0), (658, 1, 'Juan', 'Tornero', '', 0, 0), (659, 1, 'emilio', 'Miguel', '', 0, 0), (660, 1, 'carlos ', 'marquez', '', 0, 0), (661, 1, 'Antonio', 'Vera', '', 0, 0), (662, 1, 'Vicente', 'Garcia', '', 0, 0), (663, 1, 'Vicente', 'Garcia', '', 0, 0), (664, 1, 'Jesus', 'Navarro', '', 0, 0), (665, 1, 'Jose Luis', 'De la Vega', '', 0, 0), (666, 1, 'Alejo', 'Sotos', '', 0, 0), (667, 1, 'Diego', 'Gutierrez', '', 0, 0), (668, 1, 'Juan', 'Gutierrez', '', 0, 0), (669, 1, 'jony', '', '', 0, 0), (670, 1, 'manuel', 'garcia', '', 0, 0), (671, 1, 'manuel', 'garcia trevijano', '', 0, 0), (672, 1, 'Emili', 'Llinas', '', 0, 0), (673, 1, 'Fermin', 'Subiranes', '', 0, 0), (674, 1, 'Josep', 'Bardes', '', 0, 0), (675, 1, 'Antonio', 'Agusti', '', 0, 0), (676, 1, 'Rafael', 'Aranda', '', 0, 0), (677, 1, 'Antonio', 'Paloma', '', 0, 0), (678, 1, 'Enric ', 'Canyes', '', 0, 0), (679, 1, 'Joaquin', 'Cabot', '', 0, 0), (680, 1, 'Josep', 'Tamudo', '', 0, 0), (681, 1, 'xilo', '', '', 0, 0), (682, 1, 'Merche', '', '', 0, 0), (683, 1, 'Montse', 'Novell', '', 0, 0), (684, 1, 'josep', 'Pirilla', '', 0, 0), (685, 1, 'Miguel', 'Balboa', '', 0, 0), (686, 1, 'Josep', 'Vivanco', '', 0, 0), (687, 1, 'Joan', 'Martinez', '', 0, 0), (688, 1, 'Juan ', 'Pardo', '', 0, 0), (689, 1, 'Antonio', 'Serrano', '', 0, 0), (690, 1, 'Miquel', 'peña', '', 0, 0), (691, 1, 'Manel ', 'de la cruz', '', 0, 0), (693, 1, 'Jose Luis ', 'Vargas', '', 0, 0), (694, 1, 'Andres', 'Nafria', '', 0, 0), (695, 1, 'Anna Marta', 'Molins', '', 0, 0), (696, 1, 'Malisa', 'Fitera', '', 0, 0), (697, 1, 'Xavier', 'Mas', '', 0, 0), (698, 1, 'Jose luis', 'Rodriguez', '', 0, 0), (699, 1, 'Rafael', 'Perez', '', 0, 0), (700, 1, 'charo', 'albou', '', 0, 0), (701, 1, 'Miguel', 'Artell', '', 0, 0), (702, 1, 'Joan', 'Soler Ximenez', '', 0, 1095), (703, 1, 'Manuel', 'Arques', '', 0, 0), (704, 1, 'Fani', 'Prats', '', 0, 0), (705, 1, 'Ferran', 'Davila', '', 0, 0), (706, 1, 'Montse', 'Sant clement', '', 0, 0), (707, 1, 'Antonio', 'Estelle', '', 0, 0), (708, 1, 'Antonio', 'Estelle', '', 0, 0), (709, 1, 'Victor Manuel', 'Artigot', '', 0, 0), (710, 1, 'Antonio ', 'Cano', '', 0, 430071), (711, 1, 'Josefa', 'Cererols', '', 0, 0), (712, 1, 'Jao Antonio', 'Paulino Rodriguez', '', 0, 43207), (713, 1, 'Jose', 'Cano', '', 0, 430083), (714, 1, 'Juan Manuel', 'Gimenez', '', 0, 430092), (715, 1, 'Antonio', 'Funef', '', 0, 430045), (716, 1, 'Magda', 'Martinez Soler', '', 0, 0), (717, 1, 'Pere', 'Bernat', '', 0, 0), (718, 1, 'Rafael ', 'Pernas', '', 0, 430007), (719, 1, 'Carlos', 'docobo', '', 0, 430081), (720, 1, 'Josep Mª', 'iglesias', '', 0, 0), (721, 1, 'Pilar', 'Villanueva', '', 0, 0), (722, 1, 'Luis Arturo', 'Izquierdo', '', 0, 430291), (723, 1, 'Sergio', 'Llao', '', 0, 0), (724, 1, 'Pedro', 'Paez', '', 0, 0), (725, 1, 'Antonio', 'Maldonado', '', 0, 0), (726, 1, 'Maite', 'Pedrola', '', 0, 430019), (727, 1, 'Emilio', 'Gonzalez Piñana', '', 0, 430140), (728, 1, 'Manuel', 'Fernandez ', '', 0, 430071), (729, 1, 'Norberto', 'Sala', '', 0, 0), (730, 1, 'Joan', 'Almirall', '', 0, 0), (731, 1, 'Victoria Eugenia', 'Sanchez Caceres', '', 0, 0), (732, 1, 'Mª Isabel', 'Sant elias', '', 0, 430118), (733, 1, 'Paco', 'Orbea', '', 0, 0), (734, 1, 'Miguel', 'Fernandez', '', 0, 0), (735, 1, 'Antonio', 'Prats', '', 0, 0), (736, 1, 'Martín', 'Parras', '', 0, 0), (737, 1, 'Jose Mª', 'Nogales', '', 0, 0); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `ligas` -- CREATE TABLE `ligas` ( `ID` int(11) NOT NULL, `ID_USUARIO` int(11) NOT NULL, `NOMBRE` varchar(20) NOT NULL, `INSERT_DATE` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `ligas` -- INSERT INTO `ligas` (`ID`, `ID_USUARIO`, `NOMBRE`, `INSERT_DATE`) VALUES (1, 1, 'liga 11', '2018-06-13 11:24:17'), (2, 1, 'liga 2', '2018-06-13 11:31:40'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneos` -- CREATE TABLE `torneos` ( `ID` int(11) NOT NULL, `ID_USUARIO` int(11) NOT NULL, `ID_TIPO` int(11) NOT NULL, `NOMBRE` varchar(50) NOT NULL, `INSERT_DATE` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_equipo_configuracion` -- CREATE TABLE `torneo_equipo_configuracion` ( `ID_TORNEO` int(11) NOT NULL, `RONDAS` int(11) NOT NULL DEFAULT '5', `TIEMPO_PARTIDA` int(11) NOT NULL DEFAULT '45', `TIEMPO_ESPERA` int(11) NOT NULL, `MENSAJE` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_equipo_equipos` -- CREATE TABLE `torneo_equipo_equipos` ( `ID_TORNEO` int(11) NOT NULL, `ID_EQUIPO` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_equipo_parejas` -- CREATE TABLE `torneo_equipo_parejas` ( `ID` int(11) NOT NULL, `ID_TORNEO` int(11) NOT NULL, `ID_JUGADOR_1` int(11) NOT NULL, `ID_JUGADOR_2` int(11) NOT NULL, `ID_EQUIPO` int(11) NOT NULL, `NUM_PAREJA` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_equipo_partidas` -- CREATE TABLE `torneo_equipo_partidas` ( `ID` int(11) NOT NULL, `ID_TORNEO` int(11) NOT NULL, `MESA` int(11) NOT NULL, `RONDA` int(11) NOT NULL, `ID_PAREJA_1` int(11) NOT NULL, `ID_PAREJA_2` int(11) NOT NULL, `ID_EQUIPO_1` int(11) NOT NULL, `ID_EQUIPO_2` int(11) NOT NULL, `PUNTOS_1` int(11) NOT NULL, `PUNTOS_2` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_pareja_configuracion` -- CREATE TABLE `torneo_pareja_configuracion` ( `ID_TORNEO` int(11) NOT NULL, `RONDAS` int(11) NOT NULL DEFAULT '5', `TIEMPO_PARTIDA` int(11) NOT NULL DEFAULT '45', `TIEMPO_ESPERA` int(11) NOT NULL, `MENSAJE` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_pareja_parejas` -- CREATE TABLE `torneo_pareja_parejas` ( `ID` int(11) NOT NULL, `ID_TORNEO` int(11) NOT NULL, `ID_JUGADOR_1` int(11) NOT NULL, `ID_JUGADOR_2` int(11) NOT NULL, `ID_EQUIPO` int(11) NOT NULL, `NUM_PAREJA` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `torneo_pareja_partidas` -- CREATE TABLE `torneo_pareja_partidas` ( `ID` int(11) NOT NULL, `ID_TORNEO` int(11) NOT NULL, `MESA` int(11) NOT NULL, `RONDA` int(11) NOT NULL, `ID_PAREJA_1` int(11) NOT NULL, `ID_PAREJA_2` int(11) NOT NULL, `ID_EQUIPO_1` int(11) NOT NULL, `ID_EQUIPO_2` int(11) NOT NULL, `PUNTOS_1` int(11) NOT NULL, `PUNTOS_2` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `usuarios` -- CREATE TABLE `usuarios` ( `ID` int(11) NOT NULL, `USERNAME` varchar(30) NOT NULL, `PASSWORD` varchar(30) NOT NULL, `TOKEN` varchar(100) NOT NULL, `NAME` varchar(60) NOT NULL, `ROOT` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `usuarios` -- INSERT INTO `usuarios` (`ID`, `USERNAME`, `PASSWORD`, `TOKEN`, `NAME`, `ROOT`) VALUES (1, 'javi', '1234', 'ti7AkJV4D3', 'Javier Marin', 0), (2, 'test', 'test', 'rgDXrP0vAo', 'TEST', 1); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `equipos` -- ALTER TABLE `equipos` ADD PRIMARY KEY (`ID`), ADD KEY `ID_USUARIO` (`ID_USUARIO`); -- -- Indices de la tabla `invitados` -- ALTER TABLE `invitados` ADD PRIMARY KEY (`ID`), ADD UNIQUE KEY `USERNAME` (`USERNAME`,`PASSWORD`); -- -- Indices de la tabla `jugadores` -- ALTER TABLE `jugadores` ADD PRIMARY KEY (`ID`), ADD KEY `ID_USUARIO` (`ID_USUARIO`); -- -- Indices de la tabla `ligas` -- ALTER TABLE `ligas` ADD PRIMARY KEY (`ID`); -- -- Indices de la tabla `torneos` -- ALTER TABLE `torneos` ADD PRIMARY KEY (`ID`), ADD KEY `ID_USUARIO` (`ID_USUARIO`), ADD KEY `ID_USUARIO_2` (`ID_USUARIO`); -- -- Indices de la tabla `torneo_equipo_configuracion` -- ALTER TABLE `torneo_equipo_configuracion` ADD KEY `ID_TORNEO` (`ID_TORNEO`); -- -- Indices de la tabla `torneo_equipo_equipos` -- ALTER TABLE `torneo_equipo_equipos` ADD KEY `ID_TORNEO` (`ID_TORNEO`,`ID_EQUIPO`) USING BTREE; -- -- Indices de la tabla `torneo_equipo_parejas` -- ALTER TABLE `torneo_equipo_parejas` ADD PRIMARY KEY (`ID`), ADD KEY `ID_TORNEO` (`ID_TORNEO`,`ID_EQUIPO`); -- -- Indices de la tabla `torneo_equipo_partidas` -- ALTER TABLE `torneo_equipo_partidas` ADD PRIMARY KEY (`ID`), ADD KEY `ID_TORNEO` (`ID_TORNEO`); -- -- Indices de la tabla `torneo_pareja_configuracion` -- ALTER TABLE `torneo_pareja_configuracion` ADD KEY `ID_TORNEO` (`ID_TORNEO`); -- -- Indices de la tabla `torneo_pareja_parejas` -- ALTER TABLE `torneo_pareja_parejas` ADD PRIMARY KEY (`ID`), ADD KEY `ID_TORNEO` (`ID_TORNEO`,`ID_EQUIPO`); -- -- Indices de la tabla `torneo_pareja_partidas` -- ALTER TABLE `torneo_pareja_partidas` ADD PRIMARY KEY (`ID`), ADD KEY `ID_TORNEO` (`ID_TORNEO`); -- -- Indices de la tabla `usuarios` -- ALTER TABLE `usuarios` ADD PRIMARY KEY (`ID`), ADD KEY `TOKEN` (`TOKEN`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `equipos` -- ALTER TABLE `equipos` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27; -- -- AUTO_INCREMENT de la tabla `invitados` -- ALTER TABLE `invitados` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT de la tabla `jugadores` -- ALTER TABLE `jugadores` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=738; -- -- AUTO_INCREMENT de la tabla `ligas` -- ALTER TABLE `ligas` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT de la tabla `torneos` -- ALTER TABLE `torneos` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `torneo_equipo_parejas` -- ALTER TABLE `torneo_equipo_parejas` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `torneo_equipo_partidas` -- ALTER TABLE `torneo_equipo_partidas` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `torneo_pareja_parejas` -- ALTER TABLE `torneo_pareja_parejas` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `torneo_pareja_partidas` -- ALTER TABLE `torneo_pareja_partidas` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `usuarios` -- ALTER TABLE `usuarios` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `torneo_equipo_configuracion` -- ALTER TABLE `torneo_equipo_configuracion` ADD CONSTRAINT `torneo_equipo_configuracion_ibfk_1` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Filtros para la tabla `torneo_equipo_equipos` -- ALTER TABLE `torneo_equipo_equipos` ADD CONSTRAINT `torneo_equipo_equipos_ibfk_1` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Filtros para la tabla `torneo_equipo_parejas` -- ALTER TABLE `torneo_equipo_parejas` ADD CONSTRAINT `torneo_equipo_parejas_ibfk_1` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION, ADD CONSTRAINT `torneo_equipo_parejas_ibfk_2` FOREIGN KEY (`ID_TORNEO`,`ID_EQUIPO`) REFERENCES `torneo_equipo_equipos` (`ID_TORNEO`, `ID_EQUIPO`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Filtros para la tabla `torneo_equipo_partidas` -- ALTER TABLE `torneo_equipo_partidas` ADD CONSTRAINT `torneo_equipo_partidas_ibfk_1` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Filtros para la tabla `torneo_pareja_configuracion` -- ALTER TABLE `torneo_pareja_configuracion` ADD CONSTRAINT `delete` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Filtros para la tabla `torneo_pareja_parejas` -- ALTER TABLE `torneo_pareja_parejas` ADD CONSTRAINT `delete1` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION; -- -- Filtros para la tabla `torneo_pareja_partidas` -- ALTER TABLE `torneo_pareja_partidas` ADD CONSTRAINT `delete2` FOREIGN KEY (`ID_TORNEO`) REFERENCES `torneos` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION; 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 */;
-- USE `cci_gh_go_login`; SET FOREIGN_KEY_CHECKS = 0; TRUNCATE TABLE `Partner`; TRUNCATE TABLE `PartnerStatus`; TRUNCATE TABLE `PartnerReviewStatus`; TRUNCATE TABLE `PartnerProgram`; TRUNCATE TABLE `PartnerReferenceChecks`; TRUNCATE TABLE `PartnerUser`; TRUNCATE TABLE `PartnerPermissionsCategory`; TRUNCATE TABLE `PartnerPermissions`; TRUNCATE TABLE `PartnerUserRoles`; TRUNCATE TABLE `PartnerOfficeType`; TRUNCATE TABLE `PartnerOffice`; -- TRUNCATE TABLE `PartnerContact`; TRUNCATE TABLE `PartnerAnnouncement`; TRUNCATE TABLE `PartnerSeason`; TRUNCATE TABLE `PartnerSeasonAllocation`; TRUNCATE TABLE `PartnerSeasonContract`; TRUNCATE TABLE `PartnerNoteTags`; TRUNCATE TABLE `PartnerNoteTopics`; TRUNCATE TABLE `PartnerNotes`; TRUNCATE TABLE `PartnerDocument`; TRUNCATE TABLE `PartnerSeasonContract`; TRUNCATE TABLE `PartnerSeasonDocument`; TRUNCATE TABLE `PartnerHelpOption`; TRUNCATE TABLE `PartnerHelpOptionProgram`; TRUNCATE TABLE `HelpContactMode`; TRUNCATE TABLE `PartnerHelpRequest`; -- -------------------------------------------------------------------------------------------------------- -- Insert into Partner -- -------------------------------------------------------------------------------------------------------- DELETE FROM cci_go.`GoMapping` WHERE `loginTypeId` = 2; ALTER TABLE cci_go.`GoMapping` AUTO_INCREMENT = 1000; INSERT INTO cci_go.`GoMapping` (`cciId`,`loginId`) SELECT `PartnerID`,`LoginID` FROM cci_go.`Partner` WHERE PartnerID <> 0 ORDER BY `PartnerID` ASC; INSERT INTO cci_go.`GoMapping` (`loginId`) SELECT l.`LoginID` FROM cci_go.`UserLogin` l WHERE NOT EXISTS ( SELECT 1 FROM cci_go.`GoMapping` gm WHERE l.`LoginID`=gm.loginId ) AND l.`LoginTypeID` = 4; UPDATE cci_go.`GoMapping` SET `loginTypeId` = 2 WHERE `loginTypeId` IS NULL; UPDATE cci_go.`GoMapping` SET `loginTypeName`= 'Partner' WHERE `loginTypeId` = 2; DELETE FROM `GoIdSequence` WHERE `goId` > 1214; INSERT INTO GoIdSequence SELECT `goId` FROM `cci_go`.`GoMapping` WHERE `LoginTypeId` = 2; -- -------------------------------------------------------------------------------------------------------- -- Insert into Login -- -------------------------------------------------------------------------------------------------------- DELETE FROM `Login` WHERE `goId` > 1214; DELETE FROM `Login` WHERE `goId` = 0; INSERT INTO `Login` (`loginId`,goId,`loginName`,`password`,`keyValue`,email,`createdOn`,`createdBy`,`modifiedOn`,`modifiedBy`,active) SELECT l.`LoginID`,gm.goId,l.`LoginName`,l.`Password`,l.`PasswordSalt`,p.Email,l.`CreatedOn`,l.`CreatedBy`,l.`ModifiedOn`,l.`ModifiedBy`,p.Active FROM `cci_go`.`UserLogin` l inner join `cci_go`.`GoMapping` gm ON l.loginId = gm.`loginId` AND gm.loginTypeId = 2 INNER JOIN cci_go.Partner p ON l.`loginId` = p.`LoginID` WHERE l.`LoginID` <> 0 AND l.`LoginTypeID` = 4; /*UPDATE `Login` l,`cci_go`.`Partner` sp SET l.`email` = sp.`Email`, l.active = sp.Active WHERE l.`loginId` = sp.`LoginID`; UPDATE `Login` l,`cci_go`.`GoMapping` gm SET l.`goId` = gm.`goId` WHERE l.loginId = gm.`loginId`;*/ /*UPDATE `Login` l,`PartnerUser` gm SET l.`goId` = gm.`partnerGoId` WHERE l.loginId = gm.`loginId`;*/ INSERT INTO `LoginUserType` (`loginId`,`userTypeId`) SELECT LoginID,LoginTypeId FROM cci_go.UserLogin WHERE LoginID <> 0 AND `LoginTypeID` = 4; UPDATE `LoginUserType` ult,cci_go.GoMapping gm SET ult.`defaultUserType` = 1, ult.`active` = 1, ult.`createdOn` = CURRENT_TIMESTAMP, ult.`createdBy` = 18, ult.`modifiedOn` = CURRENT_TIMESTAMP, ult.`modifiedBy` = 18 where ult.loginId = gm.loginId and gm.loginTypeId = 2; INSERT INTO `LoginHistory` (`loggedOn`,`loginId`,`ipAddress`) SELECT LastLoggedIn,LoginID,LastIPAddress FROM `cci_go`.`UserLogin` WHERE loginTypeId =4; -- -------------------------------------------------------------------------------------------------------- -- Insert into Partner -- -------------------------------------------------------------------------------------------------------- INSERT INTO `Partner` (`partnerGoId`) SELECT `goId` FROM `cci_go`.`GoMapping` WHERE `LoginTypeId` = 2; INSERT INTO `PartnerStatus` (`partnerStatusId`,`partnerStatusName`,`active`) SELECT PartnerStatusID,PartnerStatusName,Active FROM `cci_go`.PartnerStatus WHERE PartnerStatusID <> 0; UPDATE `Partner` p,`cci_go`.`GoMapping` gm,`cci_go`.`Partner` po SET p.`companyName` = po.`CompanyName`, p.`quickbooksCode` = po.`QuickbooksCode`, p.`acronym` = po.`Acronym`, p.`dandBNumber` = po.DandBNumber, p.`receiveAYPMails` = po.`ReceiveAYPEmails`, p.`subscribeToCCINewsletter` = po.SubscribeToCCINewsletter, p.`contractSigner` = po.ContractSigner, p.`canHaveSubPartner` = po.`CanHaveSubPartner`, p.`hasSubPartners` = po.`HasSubPartner`, -- p.`partnerStatusId` = po.`PartnerStatusId`, p.`email` = po.Email, p.`invoiceMail` = po.InvoiceEmail, p.`multiCountrySender` = po.MultiCountrySender, p.`mailingAddressIsSameAsPhysicalAdress` = po.MailingAddressSameAsPhysicalAddress, p.`addressLineOne` = po.MailingAddress1, p.`addressLineTwo` = po.MailingAddress2, p.`city` = po.MailingCity, p.`zipcode` = po.MailingPostalCode, p.`state` = po.MailingState, p.`countryId` = po.`MailingCountryID`, p.`partnerGuid` = po.PartnerGuid, p.`billingNotes` = po.BillingNotes, p.`lastSelectedProgramId` = po.LastSelectedProgramID, p.`participantMedicalReleaseRequired` = po.ParticipantMedicalReleaseRequired, p.`participantSLEPRequired` = po.ParticipantSLEPRequired, p.`participantTranscriptRequired` = po.ParticipantTranscriptRequired, p.`oldId` = po.OldID, p.`unguaranteedFormRequired` = po.UnguaranteedFormRequired, p.`participantELTISRequired` = po.ParticipantELTISRequired, p.`createdBy` = po.`CreatedBy`, p.`createdOn` = po.`CreatedOn`, p.`modifiedBy` = po.`ModifiedBy`, p.`modifiedOn` = po.`ModifiedOn`, p.`isSubPartner` = 0, p.`payGreenheartDirectly` = 0, p.`deliverDSForms` = 0, p.`needPartnerReview` = 0 WHERE p.`PartnerGoId` = gm.goId AND gm.loginId = po.`LoginID` AND gm.cciId = po.`PartnerID`; UPDATE `Partner` SET `physicalAddressLineOne` = `addressLineOne`, `physicalAddressLineTwo` = `addressLineTwo`, `physicalCity` = `city`, `physicalZipcode` = `zipcode`, `physicalstate` = `state`, `physicalcountryId` = `countryId` WHERE `mailingAddressIsSameAsPhysicalAdress` = 1; UPDATE Partner SET countryId = NULL WHERE countryId =0; /* SubPartner table contains some columns like FirstName, LastName,Title,PhoneNumber,EmergencyPhone,FaxNumber,ContactEmail,Website and we need to add these column into contact.*/ -- -------------------------------------------------------------------------------------------------------- -- Insert into PartnerStatus -- -------------------------------------------------------------------------------------------------------- INSERT INTO `PartnerReviewStatus` (partnerGoId) SELECT partnerGoId FROM Partner; UPDATE `PartnerReviewStatus` prs,`cci_go`.Partner p,`cci_go`.`GoMapping` gm SET prs.partnerAgentStatusId = p.PartnerStatusID WHERE prs.partnerGoId = gm.goId AND p.partnerID = gm.cciId AND gm.loginTypeId = 2; -- -------------------------------------------------------------------------------------------------------- -- Insert into PartnerProgram -- -------------------------------------------------------------------------------------------------------- /*INSERT INTO PartnerCCIContact (partnerGoId,CCIStaffUserId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactID = gm.cciId AND p.CCIContactID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerID AND gm1.LoginTypeId =4; INSERT INTO `PartnerCCIContact` (`partnerGoId`,`CCIStaffUserId`,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,1 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactAYPID = gm.cciId AND p.CCIContactAYPID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =4; INSERT INTO `PartnerCCIContact` (`partnerGoId`,`CCIStaffUserId`,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,6 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactWTID = gm.cciId AND p.CCIContactWTID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =4; INSERT INTO `PartnerCCIContact` (`partnerGoId`,`CCIStaffUserId`,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,7 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactCAPID = gm.cciId AND p.CCIContactCAPID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =4; INSERT INTO PartnerCCIContact (partnerGoId,CCIStaffUserId,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,8 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactGHTID = gm.cciId AND CCIContactGHTID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =4;*/ INSERT INTO PartnerProgram (partnerGoId,CCIStaffUserId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactID = gm.cciId AND p.CCIContactID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerID AND gm1.LoginTypeId =2; INSERT INTO `PartnerProgram` (`partnerGoId`,`CCIStaffUserId`,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,1 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactAYPID = gm.cciId AND p.CCIContactAYPID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =2; INSERT INTO `PartnerProgram` (`partnerGoId`,`CCIStaffUserId`,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,6 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactWTID = gm.cciId AND p.CCIContactWTID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =2; INSERT INTO `PartnerProgram` (`partnerGoId`,`CCIStaffUserId`,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,7 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactCAPID = gm.cciId AND p.CCIContactCAPID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =2; INSERT INTO PartnerProgram (partnerGoId,CCIStaffUserId,lookupDepartmentProgramId) SELECT gm1.goId AS PartnerGoId,gm.goId AS CCIStaffUserId,8 FROM cci_go.Partner p INNER JOIN cci_go.GoMapping gm ON p.CCIContactGHTID = gm.cciId AND CCIContactGHTID <>0 AND gm.LoginTypeId =1 INNER JOIN cci_go.GoMapping gm1 ON gm1.cciId = p.PartnerId AND gm1.LoginTypeId =2; UPDATE PartnerProgram SET hasApplied = 1, isEligible = 1; -- -------------------------------------------------------------------------------------------------------- -- Insert into PartnerReferenceChecks -- -------------------------------------------------------------------------------------------------------- INSERT INTO PartnerReferenceChecks (`partnerGoId`) SELECT `PartnerGoId` FROM `Partner`; UPDATE PartnerReferenceChecks prc,`cci_go`.`Partner` p,`cci_go`.`GoMapping` gm SET prc.referenceCompletedOn = p.ReferenceDateCompleted, prc.referenceApprovedOn = p.ReferenceDateApproved, prc.referenceCompletedBy = p.ReferenceDateCompletedBy, prc.referenceApprovedBy = p.ReferenceDateApprovedBy, prc.businessLicenseExpiryDate = p.BusinessLicenseExpiresDate, prc.ReferenceCheckNotes = p.ReferenceNotes WHERE prc.partnerGoId = gm.`goId` AND gm.cciId = p.PartnerID AND gm.loginTypeId = 2; /*------------------------------------------------------------------------------------------------------------ Data For PartnerOffice --------------------------------------------------------------------------------------------------------------*/ INSERT INTO `PartnerOfficeType` (`partnerOfficeTypeId`,`partnerOfficeType`) SELECT `PartnerOfficeTypeID`,`PartnerOfficeTypeName` FROM `cci_go`.`PartnerOfficeType` WHERE `PartnerOfficeTypeID` <> 0; INSERT INTO `PartnerOffice` (`partnerGoId`,`partnerOfficeId`) SELECT p.`partnerGoId`,cpo.`PartnerOfficeID` FROM Partner p INNER JOIN `cci_go`.`GoMapping` gm ON p.`partnerGoId` = gm.`goId` INNER JOIN `cci_go`.`PartnerOffice` cpo ON cpo.PartnerID = gm.cciId; UPDATE `PartnerOffice` po,`cci_go`.`PartnerOffice` cpo,`cci_go`.`GoMapping` gm SET po.`partnerOfficeTypeId` = cpo.`PartnerOfficeTypeID`, po.`adressOne` = cpo.`Address1`, po.`adressTwo` = cpo.`Address2`, po.`city` = cpo.`City`, po.`state` = cpo.`State`, po.`postalCode` = cpo.`PostalCode`, po.`countryId` = cpo.`CountryID`, po.`faxNumber` = cpo.`FaxNumber`, po.`phoneNumber` = cpo.`PhoneNumber`, po.`website` = cpo.`Website`, po.`officeNotes` = cpo.`OfficeNotes`, po.`createdBy` = cpo.`CreatedBy`, po.`createdOn` = cpo.`CreatedOn`, po.`modifiedBy` = cpo.`ModifiedBy`, po.`modifiedOn` = cpo.`ModifiedOn` WHERE po.`partnerGoId` = gm.`goId` AND gm.`cciId` = cpo.`PartnerID`; /*------------------------------------------------------------------------------------------------------------------ Data For PartnerUser -------------------------------------------------------------------------------------------------------------------*/ INSERT INTO PartnerUser (loginId) SELECT UserLoginId FROM cci_go.UserLoginPartner; UPDATE PartnerUser pu,cci_go.GoMapping gm, cci_go.UserLoginPartner ulp SET pu.partnerGoId = gm.goId WHERE pu.loginId = ulp.UserLoginId AND ulp.PartnerId = gm.cciId AND gm.loginTypeId =2; UPDATE `PartnerUser` pu,`cci_go`.`UserLoginPartner` ulp SET pu.`title` = ulp.`Title`, /*pu.`salutationId = ulp.salutationID,*/ -- salutationID should not be zero. pu.`firstName` = ulp.`FirstName`, pu.`lastName` = ulp.`LastName`, pu.`isPrimary` = ulp.`IsMaster`, pu.`phone` = ulp.`Phone`, -- pu.`email` = ulp.`Email`, pu.`emergencyPhone` = ulp.`EmergencyPhone`, pu.`fax` = ulp.`Fax`, pu.`skypeId` = ulp.`SkypeID`, pu.active = ulp.Active, pu.partnerOfficeId = ulp.PartnerOfficeID WHERE pu.loginId = ulp.UserLoginId; UPDATE `PartnerUser` pu,`cci_go`.`UserLoginPartner` ulp SET pu.`salutationId` = ulp.`SalutationID` WHERE pu.`loginId` = ulp.`UserLoginID` AND ulp.SalutationID <> 0; /*------------------------------------------------------------------------------------------------------------------ Data For PartnerPermissionsCategory and PartnerPermissions -------------------------------------------------------------------------------------------------------------------*/ INSERT INTO PartnerPermissionsCategory (partnerPermissionsCategory) VALUES ('Admin'), ('Applications'), ('Flights'), ('PlacementInfo'), ('Monitoring'), ('AccountingInsurance'), ('StudentPreProgram'), ('Contracting'), ('Insurance'); /* INSERT INTO PartnerPermissions (`partnerUserId`) SELECT partnerUserId FROM PartnerUser ORDER BY partnerUserId ASC; UPDATE PartnerPermissions pp,PartnerUser pu, cci_go.UserLoginPartner ulp SET pp.j1Admin =1, pp.j1Applications =1, pp.j1Flights =1, pp.j1PlacementInfo =1, pp.j1Monitoring =1, pp.j1AccountingInsurance=1, pp.j1StudentsPreProgram =1, pp.j1Contracting =1,j1Insurance =1 WHERE pu.loginId = ulp.UserLoginId AND pp.partnerUserId = pu.partnerUserId AND ulp.IsAYP =1; UPDATE PartnerPermissions pp,PartnerUser pu, cci_go.UserLoginPartner ulp SET pp.f1Admin =1, pp.f1Applications =1, pp.f1Flights =1, pp.f1PlacementInfo =1, pp.f1Monitoring =1, pp.f1AccountingInsurance=1, pp.f1StudentsPreProgram =1, pp.f1Contracting =1, pp.f1Insurance =1 WHERE pu.loginId = ulp.UserLoginId AND pp.partnerUserId = pu.partnerUserId AND ulp.IsPSPP =1; UPDATE PartnerPermissions pp,PartnerUser pu, cci_go.UserLoginPartner ulp SET pp.wtAdmin =1, pp.wtFlights =1, pp.wtPlacementInfo =1, pp.wtMonitoring =1, pp.`wtAccountingInsurance`=1, pp.wtStudentsPreProgram =1, pp.wtContracting =1, pp.wtInsurance =1 WHERE pu.loginId = ulp.UserLoginId AND pp.partnerUserId = pu.partnerUserId AND ulp.IsWT =1;*/ INSERT INTO `PartnerPermissions` (`partnerUserId`,`lookupDepartmentProgramId`,`partnerPermissionsCategoryId`) VALUES ( (SELECT pu.`partnerUserId` FROM `PartnerUser` pu INNER JOIN cci_go.UserLoginPartner ulp ON pu.loginId = ulp.UserLoginId AND ulp.`IsAYP` = 1) ,1,(SELECT `partnerPermissionsCategoryId` FROM `PartnerPermissionsCategory`)); INSERT INTO `PartnerPermissions` (`partnerUserId`,`lookupDepartmentProgramId`,`partnerPermissionsCategoryId`) VALUES ( (SELECT pu.`partnerUserId` FROM `PartnerUser` pu INNER JOIN cci_go.UserLoginPartner ulp ON pu.loginId = ulp.UserLoginId AND ulp.`IsPSPP` = 1) ,2,(SELECT `partnerPermissionsCategoryId` FROM `PartnerPermissionsCategory`)); INSERT INTO `PartnerPermissions` (`partnerUserId`,`lookupDepartmentProgramId`,`partnerPermissionsCategoryId`) VALUES ( (SELECT pu.`partnerUserId` FROM `PartnerUser` pu INNER JOIN cci_go.UserLoginPartner ulp ON pu.loginId = ulp.UserLoginId AND ulp.`IsWT` = 1) ,6,(SELECT `partnerPermissionsCategoryId` FROM `PartnerPermissionsCategory`)); INSERT INTO `PartnerPermissions` (`partnerUserId`,`lookupDepartmentProgramId`,`partnerPermissionsCategoryId`) VALUES ( (SELECT pu.`partnerUserId` FROM `PartnerUser` pu INNER JOIN cci_go.UserLoginPartner ulp ON pu.loginId = ulp.UserLoginId AND ulp.`IsTrainee` = 1 AND ulp.`IsIntern` = 1) ,7,(SELECT `partnerPermissionsCategoryId` FROM `PartnerPermissionsCategory`)); INSERT INTO `PartnerPermissions` (`partnerUserId`,`lookupDepartmentProgramId`,`partnerPermissionsCategoryId`) VALUES ( (SELECT pu.`partnerUserId` FROM `PartnerUser` pu INNER JOIN cci_go.UserLoginPartner ulp ON pu.loginId = ulp.UserLoginId AND ulp.`IsTrainee` = 0 AND ulp.`IsIntern` = 1) ,7,(SELECT `partnerPermissionsCategoryId` FROM `PartnerPermissionsCategory`)); -- needs to add for GHT /*------------------------------------------------------------------------------------------------------------------ Data For PartnerContact ------------------------------------------------------------------------------------------------------------------- INSERT INTO PartnerContact (`partnerGoId`) SELECT `partnerGoId` FROM Partner; UPDATE `PartnerContact` pc,`cci_go`.`PartnerContact` pco,`cci_go`.`GoMapping` gm SET pc.`firstName` = pco.`FirstName`, pc.`lastName` = pco.`LastName`, pc.`title` = pco.`Title`, pc.`isPrimary` = 0, /*pc.`salutationId` = pco.`salutationID`, pc.`email` = pco.`Email`, pc.`partnerOfficeId` = pco.`PartnerOfficeID`, pc.`phone` = pco.`Phone`, pc.`emergencyPhone` = pco.`EmergencyPhone`, pc.`fax` = pco.`Fax`, /*pc.`receiveNotificationEmails` = pco., pc.`skypeId` = pco.`SkypeID`, /*pc.`website` = pco., pc.`active` = pco.`Active`, pc.`createdBy` = pco.`CreatedBy`, pc.`createdOn` = pco.`CreatedOn`, pc.`modifiedBy` = pco.`ModifiedBy`, pc.`modifiedOn` = pco.`ModifiedOn` WHERE pc.partnerGoId = gm.goId AND pco.PartnerID = gm.cciId; UPDATE `PartnerContact` pc,`cci_go`.`PartnerContact` pco,`cci_go`.`GoMapping` gm SET pc.`salutationId` = pco.`SalutationID` WHERE pc.partnerGoId = gm.goId AND pco.PartnerID = gm.cciId AND pco.SalutationID <> 0;*/ /*------------------------------------------------------------------------------------------- Data For PartnerAnnouncement --------------------------------------------------------------------------------------------*/ INSERT INTO PartnerAnnouncement (seasonId,departmentProgramId,announcement,title,active,createdBy,createdOn,modifiedBy,modifiedOn) VALUES (6,1,'Please promote the Greenheart Service Leader Prep Program(SLPP) to your students! This exciting program takes place in Chicago August 11-16, 2014 and costs $995. During this weeklong program students will get an in-country orientation, an introduction to the concept of volunteer service, training on how to be a service leader, as well as get to see the wonderful sights of Chicago and interact with exchange students from different countries as well as the CCI Greenheart staff. For more details, look in your Resources Tab, check out this link: http://www.cci-exchange.com/greenheart/service-leader-prep-program/ or write to your Program Manager. Applications for the program are due March 31. Thank you!', 'Service Leader Prep Program - Chicago 2014',1,37159,'2014-03-14 08:09:32.000000',37159,'2014-03-14 08:09:37.000000'); /*------------------------------------------------------------------------------------------- Data For PartnerSeason --------------------------------------------------------------------------------------------*/ INSERT INTO `PartnerStatus` (`partnerStatusId`,`partnerStatusName`) VALUES (8,'Active'), (9,'Questionnaire Due'), (10,'Questionnaire Under Review'), (11,'Needs Signed Agreement'), (12,'Rejected'), (13,'Closed'); INSERT INTO `PartnerSeason` (`partnerSeasonId`,`partnerGoId`) SELECT ops.`PartnerSeasonID`,p.`partnerGoId` FROM `Partner` p INNER JOIN `cci_go`.`GoMapping` gm ON gm.`goId`=p.`partnerGoId` AND gm.`loginTypeId` = 2 INNER JOIN `cci_go`.`PartnerSeason` ops ON ops.`PartnerID` = gm.`cciId` ; UPDATE `PartnerSeason` ps,`cci_go`.`GoMapping` gm,`cci_go`.`PartnerSeason` ops SET ps.`cciStaffUserId` = gm.`goId` WHERE ops.SPCCIContactID = gm.cciId AND ps.partnerSeasonId = ops.PartnerSeasonID; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops,`cci_go`.`SeasonMapping` sm SET ps.`seasonId` = sm.`newSeasonId`, ps.`departmentProgramId` = sm.`departmentProgramId` WHERE ps.`partnerSeasonId` = ops.`PartnerSeasonID` AND ops.SeasonID = sm.`oldSeasonId`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` po -- problem for PartnerTaxCompanyID SET /*ps.signedContract = po., ps.canCreateSubPartner = po.,*/ ps.`insuranceProvidedByCCI` = po.InsuranceProvidedByCCI, ps.`sevisFeesPaidByCCI` = po.SevisFeesPaidByCCI, ps.insuranceCarrierName = po.`InsuranceCompanyName`, ps.insurancePhoneNumber = po.`InsurancePhoneNumber`, ps.insurancePolicyNumber = po.`InsurancePolicyNumber`, ps.questionaireRequired = po.`RequireQuestionnaire`, ps.disableAddParticipant = po.`DisableAddParticipant`, ps.partnerSeasonStartDate = po.`StartDate`, ps.partnerSeasonEndDate = po.`EndDate`, ps.partnerSeasonAppDeadlineDate = po.`ApplicationDeadlineDate`, ps.partnerSeasonExtAppDeadlineDate = po.`ApplicationDeadlineExtensionDate`, ps.partnerSeasonSecSemDeadlineDate = po.`SecondDeadlineDate`, ps.partnerSeasonExtSecSemDeadlineDate= po.`SecondDeadlineExtensionDate`, ps.contractScheduleId = po.`ContractScheduleID`, ps.canAccessJobBoard = po.`CanAccessJobBoard`, ps.partnerTaxCompanyId = po.PartnerTaxCompanyID, ps.timelyReturnReportReceivedDate = po.TimelyReturnReportReceivedDate, ps.originalsReceivedDate = po.OriginalsReceivedDate, ps.participantPaysDeposit = po.ParticipantPaysDeposit, ps.exceptionComments = po.ExceptionComments, ps.active = po.Active, ps.createdBy = po.CreatedBy, ps.createdOn = po.CreatedOn, ps.modifiedBy = po.ModifiedBy, ps.modifiedOn = po.ModifiedOn WHERE ps.partnerSeasonId = po.PartnerSeasonID; UPDATE `PartnerSeason` SET `PartnerTaxCompanyID` = NULL WHERE `PartnerTaxCompanyID` = 0; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 8 WHERE ops.`PartnerSeasonStatusID` = 2 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 3 WHERE ops.`PartnerSeasonStatusID` = 3 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 9 WHERE ops.`PartnerSeasonStatusID` = 4 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 10 WHERE ops.`PartnerSeasonStatusID` = 5 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 11 WHERE ops.`PartnerSeasonStatusID` = 6 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 12 WHERE ops.`PartnerSeasonStatusID` = 7 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; UPDATE `PartnerSeason` ps,`cci_go`.`PartnerSeason` ops SET ps.`partnerSeasonStatusId` = 13 WHERE ops.`PartnerSeasonStatusID` = 8 AND ps.`partnerSeasonId` = ops.`PartnerSeasonID`; /*UPDATE `PartnerSeason` SET `partnerDeadlineRequestStatusId` = NULL, `partnerSecSemDeadlineRequestStatusId` = NULL, `deadlineRequestedBy` = NULL, `deadlineRequestedOn` = '9999-09-09 00:00:00', `deadlineRequestReviewedBy`= NULL, `deadlineRequestReviewedOn`='9999-09-09 00:00:00';*/ /*----------------------------------------------------------------------------------------------- Data For PartnerSeasonAllocation ------------------------------------------------------------------------------------------------*/ -- J1 Program INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount,psa.MaximumParticipantCountGuaranteed,psa.ExpectedParticipantCount,psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa WHERE sm.departmentProgramId = 1 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa SET departmentProgramOptionId =2 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =6; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa SET departmentProgramOptionId =4 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =7; -- F1 Program INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount,psa.MaximumParticipantCountGuaranteed,psa.ExpectedParticipantCount,psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa WHERE sm.departmentProgramId = 2 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =7 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =6 AND sm.departmentProgramId = 2 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =9 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =7 AND sm.departmentProgramId = 2 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; -- WT Summer Program INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount,psa.MaximumParticipantCountGuaranteed,psa.ExpectedParticipantCount,psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa WHERE sm.departmentProgramId = 6 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND psa.programOptionId IN (2,4,20); UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =11 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =2 AND sm.departmentProgramId = 6 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =10 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =4 AND sm.departmentProgramId = 6 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =12 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =20 AND sm.departmentProgramId = 6 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; -- WT Winter Program INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount,psa.MaximumParticipantCountGuaranteed,psa.ExpectedParticipantCount,psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa WHERE sm.departmentProgramId = 7 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND psa.programOptionId IN (2,4,20); UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =14 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =2 AND sm.departmentProgramId = 7 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =13 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =4 AND sm.departmentProgramId = 7 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =15 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =20 AND sm.departmentProgramId = 7 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; -- WT Spring Program INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount,psa.MaximumParticipantCountGuaranteed,psa.ExpectedParticipantCount,psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa WHERE sm.departmentProgramId = 8 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND psa.programOptionId IN (2,4,20); UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =17 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =2 AND sm.departmentProgramId = 8 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =16 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =4 AND sm.departmentProgramId = 8 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET departmentProgramOptionId =18 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId =20 AND sm.departmentProgramId = 8 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId; -- CAP Program INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount + psa1.MaximumParticipantCount, psa.MaximumParticipantCountGuaranteed + psa1.MaximumParticipantCountGuaranteed, psa.ExpectedParticipantCount + psa1.ExpectedParticipantCount, psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa,cci_go.`PartnerSeasonAllocation` psa1 WHERE sm.departmentProgramId = 9 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND psa.ProgramOptionID = psa1.ProgramOptionID AND psa.PartnerSeasonId = psa1.PartnerSeasonID AND psa.programOptionId IN (10,11) GROUP BY psa.PartnerSeasonID; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET psa.departmentProgramOptionId =19 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId IN (10,11) AND sm.departmentProgramId = 9 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND cpsa.partnerSeasonId = psa.partnerSeasonId; INSERT INTO `PartnerSeasonAllocation`(partnerSeasonAllocationId,partnerSeasonId,maxPax,maxGuaranteedPax,expectedPaxCount,createdBy,createdOn,ModifiedOn,ModifiedBy) SELECT psa.partnerSeasonAllocationId,psa.partnerSeasonId,psa.MaximumParticipantCount + psa1.MaximumParticipantCount, psa.MaximumParticipantCountGuaranteed + psa1.MaximumParticipantCountGuaranteed, psa.ExpectedParticipantCount + psa1.ExpectedParticipantCount, psa.createdBy,psa.createdOn,psa.ModifiedOn,psa.ModifiedBy FROM cci_go.`PartnerSeason` ps, cci_go.`SeasonMapping` sm, cci_go.`PartnerSeasonAllocation` psa,cci_go.`PartnerSeasonAllocation` psa1 WHERE sm.departmentProgramId = 9 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND psa.ProgramOptionID = psa1.ProgramOptionID AND psa.PartnerSeasonId = psa1.PartnerSeasonID AND psa.programOptionId IN (15,16) GROUP BY psa.PartnerSeasonID; UPDATE `PartnerSeasonAllocation` psa, cci_go.`PartnerSeasonAllocation` cpsa, cci_go.SeasonMapping sm, cci_go.PartnerSeason ps SET psa.departmentProgramOptionId =20 WHERE psa.partnerSeasonAllocationId = cpsa.partnerSeasonAllocationId AND cpsa.programOptionId IN (15,16) AND sm.departmentProgramId = 9 AND sm.oldSeasonId = ps.seasonId AND psa.partnerSeasonId = ps.partnerSeasonId AND cpsa.partnerSeasonId = psa.partnerSeasonId; /*UPDATE `PartnerSeasonAllocation` SET `requestedMaxPax` = NULL, `requestedMaxGuaranteedPax` = NULL, `allocationRequestStatusId` = NULL, `allocationRequestedBy` = NULL, `allocationRequestedOn` = '9999-09-09 00-00-00', `allocationRequestedOn` = '9999-09-09 00-00-00', `allocationRequestReviewedBy` = NULL, `allocationRequestReviewedOn` = '9999-09-09 00-00-00';*/ /*--------------------------------------------------------------------------------------------- -- Insert into PartnerNotes ----------------------------------------------------------------------------------------------*/ INSERT INTO `PartnerNoteTags` (`tagName`) VALUES ('Work&Travels'), ('HSP-J1'), ('GHT'), ('STBound'), ('Intern'), ('Trainee'), ('Meeting/Visit'), ('CompitetorInfo'), ('Embassy/VisaInfo'), ('SeasonInfo'), ('HSPF1'); INSERT INTO `PartnerNoteTopics` (partnerNoteTopicId,`partnerGoId`) SELECT pn.partnerNoteID,gm.`goId` FROM cci_go.GoMapping gm INNER JOIN cci_go.PartnerNote pn ON pn.PartnerID = gm.cciId AND partnerNoteId <> 0 AND gm.loginTypeId = 2; UPDATE `PartnerNoteTopics` pnt,`cci_go`.`BitsMapping` bm,`cci_go`.`PartnerNote` pn SET pnt.`w&t` = bm.wt, pnt.`j1` = bm.j1, pnt.`ght` = bm.ght, pnt.`stInbound` = bm.stInbound, pnt.`intern` = bm.intern, pnt.`trainee` = bm.trainee, pnt.`meeting/visit` = bm.meeting, pnt.`competitorInfo` = bm.compInfo, pnt.`embassy/VisaInfo` = bm.`embassy/VisaInfo`, pnt.`seasonInfo` = bm.seasonInfo, pnt.`f1` = bm.f1, pnt.createdBy = 18, pnt.modifiedBy = 18 WHERE pn.BitsProgramOption = bm.bitsProgramOption AND pn.partnerNoteID = pnt.partnerNoteTopicId; INSERT INTO PartnerNotes (partnerNoteTopicId,partnerGoId,partnerNote,createdOn,createdBy,modifiedOn,modifiedBy) SELECT pnt.partnerNoteTopicId,pnt.PartnerGoId,pn.Note,pn.CreatedOn,pn.CreatedBy,pn.ModifiedOn,pn.ModifiedBy FROM `PartnerNoteTopics` pnt INNER JOIN `cci_go`.`PartnerNote` pn ON pnt.partnerNoteTopicId = pn.partnerNoteID; INSERT INTO `PartnerNoteTopics` (`partnerGoId`,`isVisibleToPartner`,`PartnerNoteTopicName`) SELECT gm.`goId`,1,'PartnerProgramNotes' FROM cci_go.GoMapping gm INNER JOIN cci_go.`PartnerProgramNote` pn ON pn.PartnerID = gm.cciId AND pn.`PartnerProgramNoteID` <> 0 AND gm.loginTypeId = 2; INSERT INTO PartnerNotes (partnerNoteTopicId,partnerGoId,partnerNote,createdOn,createdBy,modifiedOn,modifiedBy) SELECT pnt.partnerNoteTopicId,pnt.PartnerGoId,pn.Note,pn.CreatedOn,pn.CreatedBy,pn.ModifiedOn,pn.ModifiedBy FROM `PartnerNoteTopics` pnt INNER JOIN cci_go.GoMapping gm ON pnt.partnerGoId = gm.goId AND pnt.PartnerNoteTopicName = 'PartnerProgramNotes' INNER JOIN cci_go.`PartnerProgramNote` pn ON gm.cciId = pn.PartnerID; UPDATE PartnerNoteTopics SET `PartnerNoteTopicName` = NULL WHERE `PartnerNoteTopicName` = 'PartnerProgramNotes'; /*--------------------------------------------------------------------------------------------- -- Insert into PartnerSeasonNotes ----------------------------------------------------------------------------------------------*/ /* INSERT INTO `PartnerSeasonNoteTopics` (partnerSeasonNoteTopicId,`partnerSeasonId`) SELECT pn.partnerNoteID,gm.`goId` FROM cci_go.GoMapping gm INNER JOIN cci_go.PartnerNote pn ON pn.PartnerID = gm.cciId AND partnerNoteId <> 0 AND gm.loginTypeId = 2; UPDATE `PartnerNoteTopics` pnt,`cci_go`.`BitsMapping` bm,`cci_go`.`PartnerNote` pn SET pnt.`w&t` = bm.wt, pnt.`j1` = bm.j1, pnt.`ght` = bm.ght, pnt.`stInbound` = bm.stInbound, pnt.`intern` = bm.intern, pnt.`trainee` = bm.trainee, pnt.`meeting/visit` = bm.meeting, pnt.`competitorInfo` = bm.compInfo, pnt.`embassy/VisaInfo` = bm.`embassy/VisaInfo`, pnt.`seasonInfo` = bm.seasonInfo, pnt.`f1` = bm.f1, pnt.createdBy = 18, pnt.modifiedBy = 18 WHERE pn.BitsProgramOption = bm.bitsProgramOption AND pn.partnerNoteID = pnt.partnerNoteTopicId; INSERT INTO PartnerNotes (partnerNoteTopicId,partnerGoId,partnerNote,createdOn,createdBy,modifiedOn,modifiedBy) SELECT pnt.partnerNoteTopicId,pnt.PartnerGoId,pn.Note,pn.CreatedOn,pn.CreatedBy,pn.ModifiedOn,pn.ModifiedBy FROM `PartnerNoteTopics` pnt INNER JOIN `cci_go`.`PartnerNote` pn ON pnt.partnerNoteTopicId = pn.partnerNoteID; INSERT INTO `PartnerNoteTopics` (`partnerGoId`,`isVisibleToPartner`,`PartnerNoteTopicName`) SELECT gm.`goId`,1,'PartnerProgramNotes' FROM cci_go.GoMapping gm INNER JOIN cci_go.`PartnerProgramNote` pn ON pn.PartnerID = gm.cciId AND pn.`PartnerProgramNoteID` <> 0 AND gm.loginTypeId = 2; INSERT INTO PartnerNotes (partnerNoteTopicId,partnerGoId,partnerNote,createdOn,createdBy,modifiedOn,modifiedBy) SELECT pnt.partnerNoteTopicId,pnt.PartnerGoId,pn.Note,pn.CreatedOn,pn.CreatedBy,pn.ModifiedOn,pn.ModifiedBy FROM `PartnerNoteTopics` pnt INNER JOIN cci_go.GoMapping gm ON pnt.partnerGoId = gm.goId AND pnt.PartnerNoteTopicName = 'PartnerProgramNotes' INNER JOIN cci_go.`PartnerProgramNote` pn ON gm.cciId = pn.PartnerID; UPDATE PartnerNoteTopics SET `PartnerNoteTopicName` = NULL WHERE `PartnerNoteTopicName` = 'PartnerProgramNotes'; */ /*-------------------------------------------------------------------------------------------------- Data For PartnerDocument ----------------------------------------------------------------------------------------------------*/ INSERT INTO `DocumentType` (`documentTypeName`) SELECT `partnerDocumentTypeName` FROM cci_go.`PartnerDocumentType` WHERE `PartnerDocumentTypeID` <> 0; -- DOC MIGRN SCRIPT /* 6.Partner Questionnaire 7.Mission Report 8.Miscellaneous*/ INSERT INTO `DocumentType` (`documentTypeName`) VALUES ('Legacy Type'); INSERT INTO `DocumentCategoryProcess` (`documentCategoryProcessName`) VALUES ('Approval Process'); -- need to identify some more processes INSERT INTO `DocumentTypeDocumentCategoryProcess` (`documentTypeId`) VALUES /*(6),(8),*/(9); /*INSERT INTO `DocumentTypeDocumentCategoryProcess` (`documentTypeId`) SELECT `documentTypeId` FROM `DocumentType` dt WHERE EXISTS (SELECT partnerDocumentTypeName FROM cci_go.`PartnerDocumentType` pdt WHERE pdt.partnerDocumentTypeName = dt.documentTypeName);*/ UPDATE `DocumentTypeDocumentCategoryProcess` SET `documentCategoryProcessId` = 4 WHERE `documentTypeId` IN (9); /*UPDATE `DocumentTypeDocumentCategoryProcess` SET `documentCategoryProcessId` = 5 WHERE `documentTypeId` IN (8);*/ DELETE FROM cci_go.`DocumentMapping` WHERE roleType = 'Partner'; ALTER TABLE cci_go.`DocumentMapping` AUTO_INCREMENT = 1; INSERT INTO cci_go.`DocumentMapping` (`oldDocumentId`,`roleType`,`cciId`) SELECT `PartnerDocumentID`,'Partner',`PartnerID` FROM cci_go.`PartnerDocument` WHERE `PartnerDocumentID` <> 0; DELETE FROM cci_go.`DocumentMapping` WHERE roleType = 'PartnerSeason'; ALTER TABLE cci_go.`DocumentMapping` AUTO_INCREMENT = 1; INSERT INTO cci_go.`DocumentMapping` (`oldDocumentId`,`roleType`,`cciId`) SELECT `PartnerSeasonDocumentID`,'PartnerSeason',`PartnerSeasonID` FROM cci_go.`PartnerSeasonDocument` WHERE `PartnerSeasonDocumentID` <> 0; DELETE FROM cci_go.`DocumentMapping` WHERE roleType = 'PartnerSeasonContract'; ALTER TABLE cci_go.`DocumentMapping` AUTO_INCREMENT = 1; INSERT INTO cci_go.`DocumentMapping` (`oldDocumentId`,`roleType`,`cciId`) SELECT `PartnerSeasonContractID`,'PartnerSeasonContract',`PartnerSeasonID` FROM cci_go.`PartnerSeasonContract` WHERE `PartnerSeasonContractID` <> 0; INSERT INTO `DocumentInformation` (`documentInformationId`) SELECT `documentInformationId` FROM cci_go.`DocumentMapping` WHERE `roleType` = 'Partner'; UPDATE `DocumentInformation` di,cci_go.`PartnerDocument` pd,cci_go.`DocumentMapping` dm SET di.`documentName` = pd.`DocumentName`, di.`fileName` = pd.`FileName`, di.url = '', di.active = pd.`Active` WHERE di.documentInformationId = dm.documentInformationId AND dm.oldDocumentId = pd.`PartnerDocumentID` AND dm.roleType = 'Partner' AND pd.FilePath = ''; UPDATE `DocumentInformation` di,`DocumentTypeDocumentCategoryProcess` dt SET di.`documentTypeDocumentCategoryProcessId` = dt.documentTypeDocumentCategoryProcessId, di.`CreatedBy` = 18, di.`ModifiedBy` = 18 WHERE dt.documentTypeId = 9 AND di.`documentTypeDocumentCategoryProcessId` IS NULL; /*INSERT INTO `DocumentInformation` (`documentInformationId`,`documentName`,`fileName`,`url`,`active`) SELECT `PartnerDocumentID`,`DocumentName`,`FileName`,``,`Active` FROM `cci_go`.`PartnerDocument` WHERE DocumentTypeID = 2 AND FilePath = ''; -- partnerDocumentTypeId is not present in Partner Document. INSERT INTO `DocumentInformation` (`documentInformationId`,`documentName`,`fileName`,`url`,`active`) SELECT `PartnerSeasonDocumentID`,`DocumentName`,`FileName`,`DocumentURL`,`Active` FROM `cci_go`.`PartnerSeasonDocument` WHERE DocumentTypeID = 2 AND FilePath = '';*/ INSERT INTO `PartnerDocument` (`documentInformationId`) SELECT `documentInformationId` FROM cci_go.DocumentMapping WHERE roleType = 'Partner' ORDER BY documentInformationId ASC; UPDATE `PartnerDocument` pd,Partner p,cci_go.GoMapping gm,cci_go.PartnerDocument pdo,cci_go.DocumentMapping dm SET pd.`partnerGoId` = p.partnerGoId WHERE p.partnerGoId = gm.goId AND pdo.PartnerID = gm.cciId AND pdo.PartnerDocumentID = dm.oldDocumentId AND dm.documentInformationId = pd.documentInformationId; UPDATE `PartnerDocument` pd,PartnerProgram pp SET pd.partnerProgramId = pp.partnerProgramId WHERE pd.partnerGoId = pp.partnerGoId; INSERT INTO `DocumentInformation` (`documentInformationId`) SELECT `documentInformationId` FROM cci_go.`DocumentMapping` WHERE `roleType` = 'PartnerSeason'; UPDATE `DocumentInformation` di,cci_go.`PartnerSeasonDocument` pd,cci_go.`DocumentMapping` dm SET di.`documentName` = pd.`DocumentName`, di.`fileName` = pd.`FileName`, di.url = '', di.active = pd.`Active` WHERE di.documentInformationId = dm.documentInformationId AND dm.oldDocumentId = pd.`PartnerSeasonDocumentID` AND dm.roleType = 'PartnerSeason' AND pd.DocumentURL = ''; UPDATE `DocumentInformation` di,`DocumentTypeDocumentCategoryProcess` dt SET di.`documentTypeDocumentCategoryProcessId` = dt.documentTypeDocumentCategoryProcessId, di.`CreatedBy` = 18, di.`ModifiedBy` = 18 WHERE dt.documentTypeId = 1 AND di.`documentTypeDocumentCategoryProcessId` IS NULL; /*INSERT INTO `SeasonProgramDocument` (`documentInformationId`) SELECT `documentInformationId` FROM cci_go.`DocumentMapping` WHERE `roleType` = 'PartnerSeason'; UPDATE `SeasonProgramDocument` spd,cci_go.PartnerSeasonDocument psd,PartnerSeason ps,cci_go.DocumentMapping dm SET spd.`seasonId` = ps.seasonId, spd.`departmentProgramId` = ps.departmentProgramId, spd.`createdOn` = psd.`CreatedOn`, spd.`createdBy` = psd.`CreatedBy`, spd.`ModifiedOn` = psd.`ModifiedOn`, spd.`modifiedBy` = psd.`ModifiedBy` spd.active = psd.Active WHERE spd.documentInformationId = dm.documentInformationId AND dm.cciId = psd.PartnerSeasonID = ps.partnerSeasonId AND dm.roleType = 'PartnerSeason';*/ INSERT INTO `PartnerSeasonDocument` (documentInformationId) SELECT dm.documentInformationId FROM cci_go.DocumentMapping dm WHERE dm.roleType = 'PartnerSeason'; UPDATE `PartnerSeasonDocument` psd,PartnerSeason ps,cci_go.DocumentMapping dm SET psd.`partnerSeasonId` = dm.cciID WHERE dm.roleType = 'PartnerSeason'; INSERT INTO `DocumentType` (`documentTypeName`) VALUES ('Operating Agreement-Legacy'); INSERT INTO `DocumentCategoryProcess` (`documentCategoryProcessName`) VALUES ('Operational Process'); -- need to identify some more processes INSERT INTO `DocumentTypeDocumentCategoryProcess` (`documentTypeId`) VALUES (10); UPDATE `DocumentTypeDocumentCategoryProcess` SET `documentCategoryProcessId` = 5 WHERE `documentTypeId` IN (10); INSERT INTO `DocumentInformation` (`documentInformationId`) SELECT `documentInformationId` FROM cci_go.`DocumentMapping` WHERE `roleType` = 'PartnerSeasonContract'; UPDATE `DocumentInformation` di,cci_go.`PartnerSeasonContract` pd,cci_go.`DocumentMapping` dm SET di.`documentName` = pd.`DisplayName`, di.`fileName` = pd.`FileName`, di.url = '', di.active = pd.`Active` WHERE di.documentInformationId = dm.documentInformationId AND dm.oldDocumentId = pd.`PartnerSeasonContractID` AND dm.roleType = 'PartnerSeasonContract'; -- AND pd.DocumentURL = ''; UPDATE `DocumentInformation` di,`DocumentTypeDocumentCategoryProcess` dt SET di.`documentTypeDocumentCategoryProcessId` = dt.documentTypeDocumentCategoryProcessId, di.`CreatedBy` = 18, di.`ModifiedBy` = 18 WHERE dt.documentTypeId = 10 AND di.`documentTypeDocumentCategoryProcessId` IS NULL; INSERT INTO `PartnerSeasonContract` (documentInformationId) SELECT documentInformationId FROM cci_go.`DocumentMapping` WHERE `roleType` = 'PartnerSeasonContract'; UPDATE `PartnerSeasonContract` psc ,cci_go.PartnerSeasonContract opsc,cci_go.DocumentMapping dm SET psc.partnerSeasonId = opsc.PartnerSeasonID, psc.isSigned = opsc.IsSigned WHERE psc.documentInformationId = dm.documentInformationId AND dm.oldDocumentId = opsc.PartnerSeasonContractID; /*-------------------------------------------------------------------------------------------------- Data For PartnerHelp ----------------------------------------------------------------------------------------------------*/ INSERT INTO `PartnerHelpOption` (`partnerHelpOptionId`,`partnerHelpOptionName`,`createdBy`,`createdOn`,`modifiedBy`,`modifiedOn`,`active`) SELECT `PartnerHelpOptionID`,`PartnerHelpOptionName`,`CreatedBy`,`CreatedOn`,`ModifiedBy`,`ModifiedOn`,`Active` FROM `cci_go`.`PartnerHelpOption` WHERE `partnerHelpOptionId` <> 0; -- CreatedBy and ModifiedBy columns are with 0 values in existing table. /*UPDATE PartnerHelpOptionProgram SET CreatedBy = 18, ModifiedBy = 18;*/ INSERT INTO `PartnerHelpOptionProgram` (`partnerHelpOptionProgramId`,`partnerHelpOptionId`,`createdBy`,`createdOn`, `modifiedBy`,`modifiedOn`) SELECT `PartnerHelpOptionProgramID`,`PartnerHelpOptionID`,`CreatedBy`,`CreatedOn`, `ModifiedBy`,`ModifiedOn` FROM `cci_go`.`PartnerHelpOptionProgram` WHERE `PartnerHelpOptionProgramID` <> 0; -- CreatedBy and ModifiedBy columns are with 0 values in existing table. /*UPDATE PartnerHelpOptionProgram SET CreatedBy = 18, ModifiedBy = 18;*/ UPDATE `PartnerHelpOptionProgram` ph,`cci_go`.`PartnerHelpOptionProgram` pho SET ph.`lookupDepartmentProgramId`= 1 WHERE pho.`programID` = 2 AND pho.`PartnerHelpOptionID` = ph.`partnerHelpOptionId` AND pho.`PartnerHelpOptionProgramID` = ph.`partnerHelpOptionProgramId`; UPDATE `PartnerHelpOptionProgram` ph,`cci_go`.`PartnerHelpOptionProgram` pho SET ph.`lookupDepartmentProgramId` = 6 WHERE pho.`programID` = 3 AND pho.`PartnerHelpOptionID` = ph.`partnerHelpOptionId` AND pho.`PartnerHelpOptionProgramID` = ph.`partnerHelpOptionProgramId`; INSERT INTO `HelpContactMode` (`helpContactModeId`,`helpContactModeName`,`active`) SELECT `HelpContactModeID`,`HelpContactModeName`,`Active` FROM `cci_go`.`HelpContactMode` WHERE `helpContactModeId` <> 0; INSERT INTO `PartnerHelpRequest` (partnerHelpRequestId,partnerHelpRequestGUID,partnerHelpOptionId,helpContactModeId,loginId,requestName, requestEmailAddress,requestMessage,createdBy,createdOn,modifiedBy,modifiedOn,active) SELECT `PartnerHelpRequestID`,`PartnerHelpRequestGUID`,`PartnerHelpOptionID`,`HelpContactModeID`,`CCILoginID`,`RequestName`, `RequestEmailAddress`,`RequestMessage`,`CreatedBy`,`CreatedOn`,`ModifiedBy`,`ModifiedOn`,`Active` FROM cci_go.`PartnerHelpRequest` WHERE `PartnerHelpRequestID` <> 0 AND CCILoginID <> 0; UPDATE `PartnerHelpRequest` phr,cci_go.GoMapping gm SET phr.`partnerGoId` = gm.goId WHERE phr.`loginId` = gm.loginId AND gm.loginTypeId = 2; UPDATE `PartnerHelpRequest` phr,cci_go.`PartnerHelpRequest` cphr SET `lookupDepartmentProgramId` = 6 WHERE cphr.`ProgramID` = 2 AND phr.`partnerHelpRequestId` = cphr.`PartnerHelpRequestID` AND phr.`partnerHelpRequestGUID` = cphr.`PartnerHelpRequestGUID`; UPDATE `PartnerHelpRequest` phr,cci_go.`PartnerHelpRequest` cphr SET `lookupDepartmentProgramId` = 1 WHERE cphr.`ProgramID` = 3 AND phr.`partnerHelpRequestId` = cphr.`PartnerHelpRequestID` AND phr.`partnerHelpRequestGUID` = cphr.`PartnerHelpRequestGUID`; SET FOREIGN_KEY_CHECKS = 1;
select count(*) total_count, SUM(TO_NUMBER(AMOUNT)) total_amount from CDM_LOG t0 where t0.CDM_ID in (88, 56, 108, 109, 110, 113, 114, 58, 118, 141, 111, 112, 117, 123, 124, 57, 54, 106, 115, 116, 122, 142, 143, 161, 364, 281, 365, 341, 362, 363, 366, 301, 342, 361 ) --in(100, 101, 102, 103, 104, 401, 402, 403, 404, 82 ) and FETCH_DATE between TO_DATE('2016-08-04 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and TO_DATE('2016-08-07 23:59:59', 'YYYY-MM-DD HH24:MI:SS') Select A.CDM_ID ,cdm_registration.cdm_location ,Total From ( select cdm_log.CDM_ID , SUM(TO_NUMBER(cdm_log.AMOUNT)) as Total from CDM_LOG -- inner join cdm_registration on CDM_LOG.cdm_id = cdm_registration.id where cdm_log.CDM_ID in (100, 101, 102, 103, 104, 401, 402, 403, 404, 82 ) --in (88, 56, 108, 109, 110, 113, 114, 58, 118, 141, 111, 112, 117, 123, 124, 57, 54, 106, 115, 116, 122, 142, 143, 161, 364, 281, 365, 341, 362, 363, 366, 301, 342, 361 ) and FETCH_DATE between TO_DATE('2016-08-07 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and TO_DATE('2016-08-07 23:59:59', 'YYYY-MM-DD HH24:MI:SS') group by cdm_log.CDM_ID order by Total DESC )A inner join cdm_registration on A.cdm_id = cdm_registration.id ; select * from cdm_log where cdm_id='109'
-- phpMyAdmin SQL Dump -- version 4.0.4.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Apr 25, 2014 at 08:43 AM -- Server version: 5.5.32 -- PHP Version: 5.4.19 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `twohand` -- CREATE DATABASE IF NOT EXISTS `twohand` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `twohand`; -- -------------------------------------------------------- -- -- Table structure for table `catalog` -- CREATE TABLE IF NOT EXISTS `catalog` ( `c_id` int(2) NOT NULL, `c_name` varchar(50) NOT NULL, PRIMARY KEY (`c_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog` -- INSERT INTO `catalog` (`c_id`, `c_name`) VALUES (1, 'mobile phone'), (2, 'tablet PC'), (3, 'musical instrument'), (4, 'sport'), (5, 'bike'), (6, 'mother and child'), (7, 'bag'), (8, 'clock'), (9, 'shoes'), (10, 'clothing'), (11, 'health and beauty'), (12, 'home and garden'), (13, 'collection'), (14, 'camera'), (15, 'lectric appliance'), (16, 'games'), (17, 'pet'), (18, 'proterty'), (19, 'used car'), (20, 'motorcycle'); -- -------------------------------------------------------- -- -- Table structure for table `feedback` -- CREATE TABLE IF NOT EXISTS `feedback` ( `f_id` int(6) NOT NULL AUTO_INCREMENT, `m_user` varchar(32) NOT NULL, `f_ment` varchar(255) NOT NULL, `f_rate` int(1) NOT NULL, PRIMARY KEY (`f_id`), KEY `m_user` (`m_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `member` -- CREATE TABLE IF NOT EXISTS `member` ( `m_user` varchar(32) NOT NULL, `m_pass` varchar(32) NOT NULL, `m_name` varchar(100) NOT NULL, `m_tel` varchar(15) NOT NULL, `m_email` varchar(100) NOT NULL, `m_address` varchar(255) NOT NULL, PRIMARY KEY (`m_user`), KEY `m_user` (`m_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `product` -- CREATE TABLE IF NOT EXISTS `product` ( `p_id` int(6) NOT NULL AUTO_INCREMENT, `m_user` varchar(32) NOT NULL, `p_name` varchar(100) NOT NULL, `c_id` int(2) NOT NULL, `p_price` int(6) NOT NULL, `p_quality` int(3) NOT NULL, `p_otherinfo` varchar(255) NOT NULL, `p_lat` varchar(10) NOT NULL, `p_long` varchar(10) NOT NULL, `p_pic1` varchar(255) NOT NULL, `p_pic2` varchar(255) NOT NULL, `p_pic3` varchar(255) NOT NULL, `p_pic4` varchar(255) NOT NULL, `p_status` int(1) NOT NULL, PRIMARY KEY (`p_id`), KEY `m_user` (`m_user`), KEY `c_id` (`c_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Constraints for dumped tables -- -- -- Constraints for table `feedback` -- ALTER TABLE `feedback` ADD CONSTRAINT `feedback_ibfk_1` FOREIGN KEY (`m_user`) REFERENCES `member` (`m_user`) ON DELETE NO ACTION ON UPDATE CASCADE; -- -- Constraints for table `product` -- ALTER TABLE `product` ADD CONSTRAINT `product_ibfk_1` FOREIGN KEY (`m_user`) REFERENCES `member` (`m_user`) ON DELETE NO ACTION ON UPDATE CASCADE, ADD CONSTRAINT `product_ibfk_2` FOREIGN KEY (`c_id`) REFERENCES `catalog` (`c_id`) ON DELETE NO ACTION 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 */;
-- phpMyAdmin SQL Dump -- version 4.4.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Dec 07, 2015 at 09:07 AM -- Server version: 5.6.25 -- PHP Version: 5.3.29 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `medi_DB` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE IF NOT EXISTS `admin` ( `adminName` varchar(20) NOT NULL, `firstName` varchar(20) NOT NULL, `lastName` varchar(20) NOT NULL, `phoneNumber` varchar(10) DEFAULT NULL, `address` varchar(20) DEFAULT NULL, `password` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`adminName`, `firstName`, `lastName`, `phoneNumber`, `address`, `password`) VALUES ('a', 'a', 'a', 'a', 'a', 'a'); -- -------------------------------------------------------- -- -- Table structure for table `appointment` -- CREATE TABLE IF NOT EXISTS `appointment` ( `userName` varchar(20) NOT NULL, `doctorName` varchar(20) NOT NULL, `dateOfWeek` date NOT NULL, `slot` varchar(5) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `appointment` -- INSERT INTO `appointment` (`userName`, `doctorName`, `dateOfWeek`, `slot`) VALUES ('q', 'w', '2015-11-05', 'slot1'), ('q', 'w', '2015-11-05', 'slot3'), ('q', 'h1', '2015-12-07', 'slot4'); -- -------------------------------------------------------- -- -- Table structure for table `available` -- CREATE TABLE IF NOT EXISTS `available` ( `dateOfWeek` date NOT NULL, `doctorName` varchar(20) NOT NULL, `slot1` varchar(6) NOT NULL DEFAULT 'NOT', `slot2` varchar(6) NOT NULL DEFAULT 'NOT', `slot3` varchar(6) NOT NULL DEFAULT 'NOT', `slot4` varchar(6) NOT NULL DEFAULT 'NOT', `slot5` varchar(6) NOT NULL DEFAULT 'NOT', `slot6` varchar(6) DEFAULT 'NOT' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `available` -- INSERT INTO `available` (`dateOfWeek`, `doctorName`, `slot1`, `slot2`, `slot3`, `slot4`, `slot5`, `slot6`) VALUES ('2015-11-05', 'w', 'Booked', 'NOT', 'Booked', 'YES', 'NOT', 'YES'), ('2015-12-07', 'h1', 'NOT', 'YES', 'YES', 'Booked', 'NOT', 'YES'), ('2015-12-08', 'w', 'NOT', 'YES', 'NOT', 'Booked', 'YES', 'NOT'); -- -------------------------------------------------------- -- -- Table structure for table `doctor` -- CREATE TABLE IF NOT EXISTS `doctor` ( `doctorName` varchar(20) NOT NULL, `firstName` varchar(20) NOT NULL, `lastName` varchar(20) NOT NULL, `phoneNumber` varchar(10) DEFAULT NULL, `address` varchar(20) DEFAULT NULL, `password` varchar(20) DEFAULT NULL, `specilization` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `doctor` -- INSERT INTO `doctor` (`doctorName`, `firstName`, `lastName`, `phoneNumber`, `address`, `password`, `specilization`) VALUES ('h1', 'h', 'h', 'h', 'h', '2', 'h'), ('w', 'w', 'w', 'w', 'w', 'w', 'w'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `userName` varchar(20) NOT NULL, `firstName` varchar(20) NOT NULL, `lastName` varchar(20) NOT NULL, `phoneNumber` varchar(10) DEFAULT NULL, `address` varchar(20) DEFAULT NULL, `password` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`userName`, `firstName`, `lastName`, `phoneNumber`, `address`, `password`) VALUES ('q', 'q', 'q', 'q', 'q', 'q'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`adminName`); -- -- Indexes for table `appointment` -- ALTER TABLE `appointment` ADD PRIMARY KEY (`dateOfWeek`,`slot`); -- -- Indexes for table `available` -- ALTER TABLE `available` ADD PRIMARY KEY (`dateOfWeek`,`doctorName`), ADD KEY `doctorName` (`doctorName`); -- -- Indexes for table `doctor` -- ALTER TABLE `doctor` ADD PRIMARY KEY (`doctorName`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`userName`); -- -- Constraints for dumped tables -- -- -- Constraints for table `available` -- ALTER TABLE `available` ADD CONSTRAINT `available_ibfk_1` FOREIGN KEY (`doctorName`) REFERENCES `doctor` (`doctorName`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE TABLE address( location VARCHAR(50), latitude DOUBLE, longitude DOUBLE, formatted_address VARCHAR(200), types VARCHAR(30), PRIMARY KEY (location), INDEX (latitude), INDEX (longitude), INDEX (types) )ENGINE=MyISAM CHARACTER SET=binary;
GRANT INSERT ANY TABLE TO vf_spmc_ref; GRANT INSERT ANY TABLE TO vf_spmc_landing; GRANT INSERT ANY TABLE TO vf_spmc_staging; GRANT INSERT ANY TABLE TO vf_spmc_perf; GRANT INSERT ANY TABLE TO vf_spmc_etl_error;
-- phpMyAdmin SQL Dump -- version 2.10.3 -- http://www.phpmyadmin.net -- -- Servidor: localhost -- Tiempo de generación: 23-07-2014 a las 14:14:19 -- Versión del servidor: 5.0.51 -- Versión de PHP: 5.2.6 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Base de datos: `tangotas` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `categorias` -- CREATE TABLE `categorias` ( `id` int(11) NOT NULL auto_increment, `nombre` varchar(30) NOT NULL, `descripcion` varchar(39) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Volcar la base de datos para la tabla `categorias` -- INSERT INTO `categorias` VALUES (1, 'Salvaje', 'asdsadsda'); INSERT INTO `categorias` VALUES (2, 'Clasica', 'adsdsadsa'); INSERT INTO `categorias` VALUES (3, 'Experimental', 'asddasdassad'); INSERT INTO `categorias` VALUES (4, 'Sexi', 'asddsaasddas'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `comentarios` -- CREATE TABLE `comentarios` ( `id` int(11) NOT NULL auto_increment, `nombre` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `asunto` varchar(100) NOT NULL, `comentario` varchar(300) NOT NULL, `fecha` varchar(30) NOT NULL, `status` varchar(20) NOT NULL default 'despublicado', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=27 ; -- -- Volcar la base de datos para la tabla `comentarios` -- INSERT INTO `comentarios` VALUES (1, 'Mi rey', 'lalitorams@gmail.com', 'CHINGON', 'fsddsfdffsdsffddfsl de lalito rams esta chingony que la venta de las tangas es un negocio millonario', '24332432432432', 'publicado'); INSERT INTO `comentarios` VALUES (22, 'Mi rey', 'lalitorams@gmail.com', 'xcvcxvxcvxcv', 'vcvccxvcxvcxvcxvcxvcxv', '03/06/2014', 'publicado'); INSERT INTO `comentarios` VALUES (9, 'Administrador', 'admin@admin.com', 'asdsadsad', 'asdsadsadsadsad', '03/06/2014', 'publicado'); INSERT INTO `comentarios` VALUES (10, 'Administrador', 'admin@admin.com', 'sfddfdsfdsf', 'sdfdsf', '03/06/2014', 'publicado'); INSERT INTO `comentarios` VALUES (21, 'Administrador', 'lalitorams@gmail.com', '', 'hfhdfgfdgfdgfdfdg', '03/06/2014', 'publicado'); INSERT INTO `comentarios` VALUES (20, 'Administrador', 'admin@admin.com', '5555555', '55555', '03/06/2014', 'publicado'); INSERT INTO `comentarios` VALUES (25, 'Administrador', 'admin@admin.com', 'sadsad', 'ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd', '23/06/2014', 'publicado'); INSERT INTO `comentarios` VALUES (26, 'Dolar', 'dolar@dolar', '', '', '24/06/2014', 'despublicado'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `mantenimiento` -- CREATE TABLE `mantenimiento` ( `id` int(11) NOT NULL auto_increment, `estado` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Volcar la base de datos para la tabla `mantenimiento` -- INSERT INTO `mantenimiento` VALUES (1, 'mantenimiento'); INSERT INTO `mantenimiento` VALUES (2, 'trabajando'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `pago` -- CREATE TABLE `pago` ( `id` int(11) NOT NULL auto_increment, `tipo` varchar(50) NOT NULL, `banco` varchar(50) NOT NULL, `no_cuenta` varchar(100) NOT NULL, `titular` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Volcar la base de datos para la tabla `pago` -- INSERT INTO `pago` VALUES (1, 'Bancomer (Credito)', 'Bancomer', '324343243234', 'Lalito Rams'); INSERT INTO `pago` VALUES (2, 'Banamex (Transferencia bancaria)', 'Banamex', '23432432523325', 'Lalito Rams'); INSERT INTO `pago` VALUES (3, 'Paypal (Transferencia)', 'Paypal', '24325235324', 'Lalito Rams'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `pedidos` -- CREATE TABLE `pedidos` ( `id` int(11) NOT NULL auto_increment, `fecha` varchar(20) NOT NULL, `nombre` varchar(100) NOT NULL, `nombreR` varchar(100) NOT NULL, `direccion` varchar(200) NOT NULL, `ciudad` varchar(50) NOT NULL, `estado` varchar(50) NOT NULL, `cp` varchar(10) NOT NULL, `telefono` varchar(20) NOT NULL, `metodoenvio` varchar(70) NOT NULL, `metodopago` varchar(70) NOT NULL, `articulos` varchar(500) NOT NULL, `total` varchar(11) NOT NULL, `status` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ; -- -- Volcar la base de datos para la tabla `pedidos` -- INSERT INTO `pedidos` VALUES (1, 'asdasd', 'asdasd', 'asdsad', 'asdsadsa', 'asdasd', 'asdsad', '2312', '123123213', 'dasdsad', 'asdsad', '3424', '', 'Pagado'); INSERT INTO `pedidos` VALUES (3, '21/06/2014 23:43:58', 'Dolar', 'sadas', 'dasdsadsa', 'asddsadsa', '324324', '23423', '23424', 'Estafeta', 'Banamex (Transferencia bancaria)', '[54] = 1.', '54', ''); INSERT INTO `pedidos` VALUES (4, '21/06/2014 23:57:11', 'Dolar', 'asdsa', 'asdsadsad', 'asdsad', 'asdasd', '32434', '234234324', 'Estafeta', 'Paypal (Transferencia)', '[34] = 1.', '514', ''); INSERT INTO `pedidos` VALUES (5, '22/06/2014 09:40:52', 'Dolar', 'Lalito Rams', 'Valle - Toronja - 50', 'Morelia', 'Michoacan', '44890', '412329123', 'Estafeta', 'Banamex (Transferencia bancaria)', '[80] = 1.', '304', ''); INSERT INTO `pedidos` VALUES (11, '24/06/2014 13:48:37', 'Dolar', 'sdfdsf', 'sdfsdf', 'dsfsdf', 'sdfsdf', '234234', '234234', 'Estafeta', 'Selecciona una forma de pago...', '[80] = 1.', '80', ''); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `productos` -- CREATE TABLE `productos` ( `id` int(11) NOT NULL auto_increment, `portada` varchar(100) NOT NULL, `nombreP` varchar(50) NOT NULL, `descripcion` varchar(200) NOT NULL, `precio` varchar(11) NOT NULL, `stock` varchar(20) NOT NULL, `fecha` varchar(80) NOT NULL, `categoria` varchar(20) NOT NULL, `status` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=22 ; -- -- Volcar la base de datos para la tabla `productos` -- INSERT INTO `productos` VALUES (18, 'images/tangas-ref-206-7777178z0.jpg', 'Normal', 'asdsad', '54', '2', '19/07/2014', 'Sexi', 'despublicado'); INSERT INTO `productos` VALUES (16, 'images/img.jpg', 'Super', 'super man', '80', '22', '14/Jun/2014', 'Experimental', 'despublicado'); INSERT INTO `productos` VALUES (17, 'images/tangas-nuevas-para-uso-diario-y-noches-especiales-ultimas-1144-MLM4734452005_072013-O.jpg', 'Pack tangas', 'muchas', '234', '231', '19/06/2014', 'Salvaje', 'despublicado'); INSERT INTO `productos` VALUES (15, 'images/df.jpg', 'Elefantito', 'tanga', '545', '205', '19/06/2014', 'Salvaje', 'publicado'); INSERT INTO `productos` VALUES (19, 'images/images.jpg', 'EDE', 'EDEE', '23', '22', '19/06/2014', 'Sexi', 'publicado'); INSERT INTO `productos` VALUES (20, 'images/images.jpg', 'qwe', 'qwe', '34', '6', '19/Jun/2014', 'Clasica', 'publicado'); INSERT INTO `productos` VALUES (21, 'images/anticonceptivos.jpg', 'asdasd', 'asddsasad', '324324', '324423', '19/07/2014', 'Salvaje', 'publicado'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `status` -- CREATE TABLE `status` ( `id` int(11) NOT NULL auto_increment, `status` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Volcar la base de datos para la tabla `status` -- INSERT INTO `status` VALUES (1, 'En Proceso'); INSERT INTO `status` VALUES (2, 'Pagado'); INSERT INTO `status` VALUES (3, 'Entregado'); INSERT INTO `status` VALUES (4, 'Cancelado'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `usuarios` -- CREATE TABLE `usuarios` ( `id` int(11) NOT NULL auto_increment, `imagen` varchar(200) NOT NULL, `nombre` varchar(50) NOT NULL, `email` varchar(20) NOT NULL, `password` varchar(50) NOT NULL, `privilegios` varchar(20) NOT NULL default 'Usuario', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=38 ; -- -- Volcar la base de datos para la tabla `usuarios` -- INSERT INTO `usuarios` VALUES (17, 'imagenes/Imagen2.png', 'CAGUABONGA', 'CAGUABONGA@hotmail.c', '3e8d115eb4b32b9e9479f387dbe14ee1', 'Usuario'); INSERT INTO `usuarios` VALUES (10, 'imagenes/viajes.jpg', 'Mi rey', 'lalitorams@gmail.com', '39c3ac84912e917f46f1baa034513376', 'Usuario'); INSERT INTO `usuarios` VALUES (5, 'administrador/usuarios/imagenes/559480_395880607181608_1693211699_n.jpg', 'lalito', 'lalo@gmail.com', '6a0897cfd163f9fb5bad', 'Usuario'); INSERT INTO `usuarios` VALUES (13, 'imagenes/Logo_Nuevo.png', 'asd', 'asd@dsa', 'f970e2767d0cfe75876ea857f92e319b', 'Administrador'); INSERT INTO `usuarios` VALUES (32, 'imagenes/images.jpg', 'ed', 'ed@ed', 'b5f3729e5418905ad2b21ce186b1c01d', 'Administrador'); INSERT INTO `usuarios` VALUES (33, 'imagenes/images.jpg', 'ff', 'ff@ff', '633de4b0c14ca52ea2432a3c8a5c4c31', 'Usuario'); INSERT INTO `usuarios` VALUES (11, 'imagenes/char.png', 'Administrador', 'admin@admin.com', '21232f297a57a5a743894a0e4a801fc3', 'Administrador'); INSERT INTO `usuarios` VALUES (34, 'imagenes/imagen.jpg', 'Dolar', 'dolar@dolar', '568a7bd05c09b03d57f0e614eb55f58f', 'Usuario'); INSERT INTO `usuarios` VALUES (35, 'imagenes/ff60a879-f9b6-4b8f-b56f-d157da60423f.jpg', 'asdsad', 'asdsa@sdffsd', 'ad41b3d77a7a512f2382ee58eb53cb74', 'Usuario'); INSERT INTO `usuarios` VALUES (36, 'imagenes/ff60a879-f9b6-4b8f-b56f-d157da60423f.jpg', 'asdsad', 'asdsd@sadds', 'f970e2767d0cfe75876ea857f92e319b', 'Usuario'); INSERT INTO `usuarios` VALUES (37, 'imagenes/ajedrezz.jpg', 'caca', 'caca@caca', 'd2104a400c7f629a197f33bb33fe80c0', 'Usuario');
--liquibase formatted sql -- see: http://www.liquibase.org/ --changeset contact@contactopensource.com:1 --preconditions onFail:HALT onError:HALT --precondition-sql-check expectedResult:0 SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'items' CREATE TABLE items ( id uuid not null primary key, -- Programming-related tenant_id uuid, -- for optional multi-tenant installation typecast text, -- for optional single table inheritance state text, -- for optional state machine transition -- Update-related updated_at_timestamp_utc timestamp, -- example: 2020-01-01T00:00:00 always UTC updated_at_clock_counter bigint, -- example: 123456789 as suitable for a vector clock updated_by_text text, -- example: explanation of who updated the contact, why, how, etc. -- Meta-related -- the intent is to describe the content fields below. uri text, -- example: "https://example.com/example.txt" mime text, -- example: "text/plain" -- Content-related - the intent is to offer a variety of database types. text text, -- example: "hello world" json jsonb, -- example: "{\"hello\": \"world\"}" xml xml -- example: "<?xml version="1.0"?><example>hello world</example>" ); -- Programming-related CREATE INDEX ix_items_tenant_id on items(tenant_id);; CREATE INDEX ix_items_typecast on items(typecast); CREATE INDEX ix_items_state on items(state); -- Update-related CREATE INDEX ix_items_updated_at_timestamp_utc on items(updated_at_timestamp_utc); CREATE INDEX ix_items_updated_at_clock_counter on items(updated_at_clock_counter); CREATE INDEX ix_items_updated_by_text on items(updated_by_text); -- Meta-related CREATE INDEX ix_items_uri on items(uri); CREATE INDEX ix_items_mime on items(mime); -- Content-related CREATE INDEX ix_items_text on items(text); CREATE INDEX ix_items_json on items(json); CREATE INDEX ix_items_xml on items USING BTREE (cast(xpath('/', xml) as text[])); --rollback drop table items;
-- phpMyAdmin SQL Dump -- version 2.11.2.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Dec 16, 2007 at 10:06 PM -- Server version: 5.0.45 -- PHP Version: 5.2.4 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 */; -- -- Database: `yafa` -- DROP DATABASE `yafa`; CREATE DATABASE `yafa` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `yafa`; -- -------------------------------------------------------- -- -- Table structure for table `Category` -- CREATE TABLE IF NOT EXISTS `Category` ( `ID` int(11) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL, PRIMARY KEY (`ID`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -------------------------------------------------------- -- -- Table structure for table `Image` -- CREATE TABLE IF NOT EXISTS `Image` ( `ID` int(10) unsigned NOT NULL auto_increment, `filename` varchar(255) NOT NULL, `origfilename` varchar(255) NOT NULL, `checksum` varchar(33) NOT NULL, `url` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL, `urlthumb` varchar(255) NOT NULL, PRIMARY KEY (`ID`), KEY `checksum` (`checksum`), FULLTEXT KEY `origfilename` (`origfilename`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=82701 ; -- -------------------------------------------------------- -- -- Table structure for table `Image_Tags` -- CREATE TABLE IF NOT EXISTS `Image_Tags` ( `Image_ID` int(11) unsigned NOT NULL, `Tag_ID` int(11) unsigned NOT NULL, PRIMARY KEY (`Image_ID`,`Tag_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `Msg` -- CREATE TABLE IF NOT EXISTS `Msg` ( `ID` int(10) unsigned NOT NULL auto_increment, `subject` varchar(255) NOT NULL, `date` date NOT NULL, `unread` tinyint(1) unsigned NOT NULL default '1', `tagged` tinyint(1) unsigned NOT NULL default '0', `sender` varchar(255) NOT NULL, `messageid` varchar(255) NOT NULL, PRIMARY KEY (`ID`), KEY `unread` (`unread`), KEY `tagged` (`tagged`), KEY `sender` (`sender`), FULLTEXT KEY `subject` (`subject`,`sender`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=21134 ; -- -------------------------------------------------------- -- -- Table structure for table `Msg_Images` -- CREATE TABLE IF NOT EXISTS `Msg_Images` ( `Msg_ID` int(11) unsigned NOT NULL, `Image_ID` int(11) unsigned NOT NULL, PRIMARY KEY (`Msg_ID`,`Image_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `Tag` -- CREATE TABLE IF NOT EXISTS `Tag` ( `ID` int(11) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL, `Category_ID` int(11) unsigned NOT NULL, PRIMARY KEY (`ID`), KEY `Category` (`Category_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=173 ; -- -------------------------------------------------------- -- -- Table structure for table `Tag_Connects` -- CREATE TABLE IF NOT EXISTS `Tag_Connects` ( `Tag_ID_is` int(10) unsigned NOT NULL, `Tag_ID_set` int(10) unsigned NOT NULL, PRIMARY KEY (`Tag_ID_is`,`Tag_ID_set`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `Text` -- CREATE TABLE IF NOT EXISTS `Text` ( `ID` int(10) unsigned NOT NULL auto_increment, `Msg_ID` int(11) unsigned NOT NULL, `content_type` varchar(25) NOT NULL, `body` longtext NOT NULL, PRIMARY KEY (`ID`), KEY `content_type` (`content_type`), KEY `Msg_ID` (`Msg_ID`), FULLTEXT KEY `body` (`body`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=41130 ; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `username` varchar(255) NOT NULL, `realname` varchar(255) NOT NULL, `level` tinyint(4) NOT NULL default '0', `mail` varchar(255) NOT NULL, PRIMARY KEY (`username`), FULLTEXT KEY `mail` (`mail`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!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 `users` (`username`, `realname`, `level`, `mail`) VALUES ('admin', 'Admin', 9, 'root@localhost');
# Write your MySQL query statement below # Report the balance of each user after each transaction ## Running total SELECT account_id, day, SUM(CASE WHEN type = 'Deposit' THEN amount ELSE -amount END) OVER (PARTITION BY account_id ORDER BY day) AS balance FROM Transactions ORDER BY account_id, day
drop table profile cascade constraints; CREATE TABLE PROFILE( userID varchar2(20), name varchar2(20) NOT NULL, email varchar2(20), password varchar2(20) NOT NULL, date_of_birth date, lastLogin timestamp, constraint profile_pk primary key (userID) deferrable initially immediate --make email unique?? ); ---------groups ---------- drop table groups cascade constraints; create table groups ( gID varchar2(20) , name varchar2(50) not null , description varchar2(200) , gLimit integer , constraint pk_groups primary key (gID) deferrable initially immediate ); drop table friends cascade constraints; CREATE TABLE friends( userID1 varchar2(20), userID2 varchar2(20), JDate date NOT NULL, message varchar2(200), constraint friends_pk primary key (userID1, userID2) deferrable initially immediate, constraint friends1_fk foreign key (userID1) references profile(userID) on delete cascade deferrable initially immediate, constraint friends2_fk foreign key (userID2) references profile(userID) on delete cascade deferrable initially immediate ); drop table pendingFriends cascade constraints; CREATE TABLE pendingFriends( fromID varchar2(20), toID varchar2(20), message varchar2(200), constraint pendingF_pk primary key (fromID, toID) deferrable initially immediate, constraint pendingF1_fk foreign key (fromID) references profile(userID) on delete cascade deferrable initially immediate, constraint pendingF2_fk foreign key (toID) references profile(userID) on delete cascade deferrable initially immediate ); drop table pendingGroupmembers cascade constraints; CREATE TABLE pendingGroupmembers( gID varchar2(20), userID varchar2(20), message varchar2(200), constraint pendingG_pk primary key (gID, userID) deferrable initially immediate, constraint pendingG1_fk foreign key (gID) references groups (gID) on delete cascade deferrable initially immediate, constraint pendingG2_fk foreign key (userID) references profile (userID) on delete cascade deferrable initially immediate ); ---------groupMembership-------------- drop table groupMembership cascade constraints; create table groupMembership ( gID varchar2(20) , userID varchar2(2) , role varchar2(20) default 'user' , constraint pk_group_membership primary key (gID,userID) , constraint ch_role check(role in ('manager', 'user')) , constraint fk_group foreign key (gID) references groups (gID) on delete cascade deferrable initially immediate , constraint fk_user foreign key (userID) references profile(userID) on delete cascade deferrable initially immediate ); ---------messages--------- drop table messages cascade constraints; create table messages ( msgID varchar2(20) , fromID varchar2(20) , message varchar2(200) , toGroupID varchar2(20) , toUserID varchar2(20) , dateSent date not null , constraint pk_messages primary key (msgID) , constraint fk_from_profile foreign key (fromID) references profile(userID) on delete cascade deferrable initially immediate , constraint fk_toUser_profile foreign key (toUserID) references profile(userID) on delete cascade deferrable initially immediate , constraint fk_togroup_groups foreign key (toGroupID) references groups (gID) on delete cascade deferrable initially immediate ); --------messageRecipient--------- --------------------------------- /* Assumption: 1. For any message that any user receives there will be an entery added to this table even if a message sent through group messaging 2. No message can be send to the same user twice, hence primary key (msgID, userID) */ ------------------------------ drop table messageRecipient cascade constraints ; create table messageRecipient( msgID varchar2(20) , userID varchar2(20) , constraint pk_messageRecipient primary key (msgID, userID) , constraint fk_msgID foreign key (msgID) references messages(msgID) deferrable initially immediate ); -------------send msg user trigger------------------ /* */ create or replace trigger sendMessageToUser after insert on messages for each row begin IF :new.toUserID IS NOT NULL THEN insert into messageRecipient values(:new.msgID, :new.toUserID); END IF; end; / /* 1. If new mesagges sent to a group: 1.1 Get all userIDs in groupmembership where groupID = groupID to which the messages was sent 1.2 Add all userIDs with :new.megID to messageRecipient (Duplicating the msg for each user is not necessary) SQL for testing: --------------Create memberships--------------------- insert into groupmembership values ('1', '1', 'user'); insert into groupmembership values ('1', '2', 'user'); insert into groupmembership values ('1', '3', 'user'); --------------Insert and check if was created--------- INSERT INTO messages (msgID,fromID,message,toGroupID,toUserID,dateSent) VALUES ('333',43,'This is message to group 1','1',NULL,'06-Aug-18'); select * from messageRecipient where msgID='333'; */ create or replace trigger sendMessagetoGroup after insert on messages for each row begin IF :new.toGroupID IS NOT NULL THEN insert into messageRecipient (msgID, userID) SELECT :new.msgID, g.userID FROM groupMembership g WHERE g.gID = :new.toGroupID; -- you forgot : here end if; end; / /* --groupRequestMsg create or replace trigger groupReqMsg after insert on pendingGroupmembers for each row DECLARE nmsgID varchar(20); begin IF :new.message IS NOT NULL THEN SELECT to_char(count(msgID) + 1) INTO nmsgID FROM messages; insert into messages (msgID, fromID, message, toGroupID, dateSent) values (nmsgID, :new.userID, :new.message, :new.gID, current_date); --not sure if this is needed, might be covered by the groupMsg trigger already --insert into messageRecipient (msgID, userID) --SELECT :new.msgID, g.userID --FROM groupMembership g --WHERE g.gID = :new.toGroupID; END IF; end; / --Friend Request Message create or replace trigger friendReqMsg after insert on pendingFriends for each row DECLARE nmsgID varchar(20); begin IF :new.message IS NOT NULL THEN SELECT to_char(count(msgID) + 1) INTO nmsgID FROM messages; insert into messages (msgID, fromID, message, toUserID, dateSent) values(nmsgID,:new.fromID, :new.message, :new.toID, current_date); --insert into messageRecipient values(nmsgID, :new.toID); not sure if this is covered by the other trigger END IF; end; / */ -------------****EndTriggers***-----------------
SELECT h1.name AS csid_s, coc.id AS objectcsid_s, regexp_replace(ong.objectname, '^.*\)''(.*)''$', '\1') AS objectname_s, coc.objectnumber AS objectnumber_s, regexp_replace(coc.recordstatus, '^.*\)''(.*)''$', '\1') AS recordstatus_s, coc_comments.item AS comments_s, regexp_replace(coc_styles.item, '^.*\)''(.*)''$', '\1') AS styles_s, regexp_replace(coc_colors.item, '^.*\)''(.*)''$', '\1') AS colors_s, coc.physicaldescription AS physicaldescription_s, coc.contentdescription AS contentdescription_s, regexp_replace(cocc_concepts.item, '^.*\)''(.*)''$', '\1') AS contentconcept_s, regexp_replace(cocc_places.item, '^.*\)''(.*)''$', '\1') AS contentplace_s, regexp_replace(cocc_persons.item, '^.*\)''(.*)''$', '\1') AS contentperson_s, regexp_replace(cocc_organizations.item, '^.*\)''(.*)''$', '\1') AS contentorganization_s, coc.contentnote AS contentnote_s, regexp_replace(coc.fieldcollectionplace, '^.*\)''(.*)''$', '\1') AS fieldcollectionplace_s, regexp_replace(coc.collection, '^.*\)''(.*)''$', '\1') AS collection_s, coc.numberofobjects AS numberofobjects_s, coc.computedcurrentlocation AS computedcurrentlocationrefname_s, coom.sortableobjectnumber AS sortableobjectnumber_s, coom.art AS art_s, coom.history AS history_s, coom.science AS science_s, regexp_replace(coom.ipaudit, '^.*\)''(.*)''$', '\1') AS ipaudit_s, coom.computedcurrentlocationdisplay AS computedcurrentlocation_s, replace(coom.argusremarks,'|',' ') AS argusremarks_s, replace(coom.argusdescription,'|',' ') AS argusdescription_s, exhobjg.exhibitionobjectnumber AS exhibitionobjectnumber_s, exhobjomcag.exhibitionobjectnumberomca AS exhibitionobjectnumberomca_s, gc.title AS grouptitle_s, titleg.title AS title_s, gc.responsibledepartment AS responsibledepartment_s, mpg.dimensionsummary AS dimensionsummary_s, regexp_replace(mpg.measuredpart, '^.*\)''(.*)''$', '\1') AS mmeasuredpart_s, regexp_replace(dethistg.dhname, '^.*\)''(.*)''$', '\1') AS dhname_s, matg.materialsource AS materials_s, objcmpg.objectcomponentname AS objectcomponentname_s, objcmpg.objectcomponentinformation AS objectcomponentinformation_s, dimsubg.dimension AS dimension_s, regexp_replace(objprdpg.objectproductionperson, '^.*\)''(.*)''$', '\1') AS objectproductionperson_s, regexp_replace(objprdorgg.objectproductionorganization, '^.*\)''(.*)''$', '\1') AS objectproductionorganization_s, regexp_replace(objprdplaceg.objectproductionplace, '^.*\)''(.*)''$', '\1') AS objectproductionplace_s, objprdplaceg.objectproductionplacerole AS objectproductionplacerole_s, regexp_replace(apg.assocperson, '^.*\)''(.*)''$', '\1') AS assocperson_s, regexp_replace(aorgg.assocorganization, '^.*\)''(.*)''$', '\1') AS assocorganization_s, regexp_replace(aplaceg.assocplace, '^.*\)''(.*)''$', '\1') AS assocplace_s, accg.assocculturalcontext AS assocculturalcontext_s, lg.lender AS lender_s, lsg.loanstatusnote AS loanstatusnote_s, lsg.loanstatus AS loanstatus_s, lsg.loanstatusdate AS loanstatusdate_s, ccg.condition AS condition_s, ccg.conditiondate AS conditiondate_s, hazardg.hazardnote AS hazardnote_s, hazardg.hazard AS hazard_s, hazardg.hazarddate AS hazarddate_s, csg.status AS conservationstatus_s, csg.statusdate AS conservationstatusdate_s FROM collectionobjects_common coc JOIN hierarchy h1 ON (h1.id = coc.id) JOIN collectionobjects_omca coom ON (coom.id = coc.id) JOIN misc ON (coc.id = misc.id AND misc.lifecyclestate <> 'deleted') LEFT OUTER JOIN hierarchy h2 ON (coc.id=h2.parentid AND h2.name='collectionobjects_common:objectNameList' AND h2.pos=0) LEFT OUTER JOIN objectnamegroup ong ON (ong.id=h2.id) LEFT OUTER JOIN hierarchy h3 ON (h3.parentid = coc.id AND h3.name='collectionobjects_common:assocCulturalContextGroupList' AND h3.pos=0) LEFT OUTER JOIN assocculturalcontextgroup accg ON (h3.id = accg.id) LEFT OUTER JOIN hierarchy h4 ON (h4.parentid = coc.id AND h4.name='collectionobjects_common:assocOrganizationGroupList' AND h4.pos=0) LEFT OUTER JOIN assocorganizationgroup aorgg ON (h4.id = aorgg.id) LEFT OUTER JOIN hierarchy h5 ON (h5.parentid = coc.id AND h5.name='collectionobjects_common:assocPersonGroupList' AND h5.pos=0) LEFT OUTER JOIN assocpersongroup apg ON (h5.id = apg.id) LEFT OUTER JOIN hierarchy h6 ON (h6.parentid = coc.id AND h6.name='collectionobjects_common:assocPlaceGroupList' AND h6.pos=0) LEFT OUTER JOIN assocplacegroup aplaceg ON (h6.id = aplaceg.id) LEFT OUTER JOIN hierarchy h7 ON (h7.parentid = coc.id AND h7.name='conditionchecks_common:conditioncheckGroupList' AND h7.pos=0) LEFT OUTER JOIN conditioncheckgroup ccg ON (h7.id = ccg.id) LEFT OUTER JOIN hierarchy h8 ON (h8.parentid = coc.id AND h8.name='collectionobjects_common:conservationstatusGroupList' AND h8.pos=0) LEFT OUTER JOIN conservationstatusgroup csg ON (h8.id = csg.id) LEFT OUTER JOIN hierarchy h9 ON (h9.parentid = coc.id AND h9.name='collectionobjects_omca:determinationHistoryGroupList' AND h9.pos=0) LEFT OUTER JOIN determinationhistorygroup dethistg ON (h9.id = dethistg.id) LEFT OUTER JOIN hierarchy h10 ON (h10.parentid = coc.id AND h10.name='collectionobjects_common:dimensionsubGroupList' AND h10.pos=0) LEFT OUTER JOIN dimensionsubgroup dimsubg ON (h10.id = dimsubg.id) LEFT OUTER JOIN hierarchy h11 ON (h11.parentid = coc.id AND h11.name='collectionobjects_common:exhibitionobjectGroupList' AND h11.pos=0) LEFT OUTER JOIN exhibitionobjectgroup exhobjg ON (h11.id = exhobjg.id) LEFT OUTER JOIN hierarchy h12 ON (h12.parentid = coc.id AND h12.name='exhibitions_omca:exhibitionObjectOMCAGroupList' AND h12.pos=0) LEFT OUTER JOIN exhibitionobjectomcagroup exhobjomcag ON (h12.id = exhobjomcag.id) LEFT OUTER JOIN hierarchy h13 ON (h13.parentid = coc.id AND h13.name='collectionobjects_common:Groups_CommonList' AND h13.pos=0) LEFT OUTER JOIN groups_common gc ON (h13.id = gc.id) LEFT OUTER JOIN hierarchy h14 ON (h14.parentid = coc.id AND h14.name='conditionchecks_common:hazardGroupList' AND h14.pos=0) LEFT OUTER JOIN hazardgroup hazardg ON (h14.id = hazardg.id) LEFT OUTER JOIN hierarchy h15 ON (h15.parentid = coc.id AND h15.name='loansin_common:lenderGroupList' AND h15.pos=0) LEFT OUTER JOIN lendergroup lg ON (h15.id = lg.id) LEFT OUTER JOIN hierarchy h16 ON (h16.parentid = coc.id AND h16.name='loansin_common:loanStatusGroupList' AND h16.pos=0) LEFT OUTER JOIN loanstatusgroup lsg ON (h16.id = lsg.id) LEFT OUTER JOIN hierarchy h17 ON (h17.parentid = coc.id AND h17.name='collectionobjects_common:materialGroupList' AND h17.pos=0) LEFT OUTER JOIN materialgroup matg ON (h17.id = matg.id) LEFT OUTER JOIN hierarchy h18 ON (h18.parentid = coc.id AND h18.name='collectionobjects_common:measuredPartGroupList' AND h18.pos=0) LEFT OUTER JOIN measuredpartgroup mpg ON (h18.id = mpg.id) LEFT OUTER JOIN hierarchy h19 ON (h19.parentid = coc.id AND h19.name='collectionobjects_common:objectComponentGroupList' AND h19.pos=0) LEFT OUTER JOIN objectcomponentgroup objcmpg ON (h19.id = objcmpg.id) LEFT OUTER JOIN hierarchy h21 ON (h21.parentid = coc.id AND h21.name='collectionobjects_common:objectProductionOrganizationGroupList' AND h21.pos=0) LEFT OUTER JOIN objectproductionorganizationgroup objprdorgg ON (h21.id = objprdorgg.id) LEFT OUTER JOIN hierarchy h22 ON (h22.parentid = coc.id AND h22.name='collectionobjects_common:objectProductionPersonGroupList' AND h22.pos=0) LEFT OUTER JOIN objectproductionpersongroup objprdpg ON (h22.id = objprdpg.id) LEFT OUTER JOIN hierarchy h23 ON (h23.parentid = coc.id AND h23.name='collectionobjects_common:objectProductionPlaceGroupList' AND h23.pos=0) LEFT OUTER JOIN objectproductionplacegroup objprdplaceg ON (h23.id = objprdplaceg.id) LEFT OUTER JOIN hierarchy h24 ON (h24.parentid = coc.id AND h24.name='collectionobjects_common:titleGroupList' AND h24.pos=0) LEFT OUTER JOIN titlegroup titleg ON (h24.id = titleg.id) LEFT OUTER JOIN collectionobjects_common_comments coc_comments ON (coc.id = coc_comments.id AND coc_comments.pos = 0) LEFT OUTER JOIN collectionobjects_common_styles coc_styles ON (coc.id = coc_styles.id AND coc_styles.pos = 0) LEFT OUTER JOIN collectionobjects_common_colors coc_colors ON (coc.id = coc_colors.id AND coc_colors.pos = 0) LEFT OUTER JOIN collectionobjects_common_contentconcepts cocc_concepts ON (coc.id = cocc_concepts.id AND cocc_concepts.pos = 0) LEFT OUTER JOIN collectionobjects_common_contentplaces cocc_places ON (coc.id = cocc_places.id AND cocc_places.pos = 0) LEFT OUTER JOIN collectionobjects_common_contentpersons cocc_persons ON (coc.id = cocc_persons.id AND cocc_persons.pos = 0) LEFT OUTER JOIN collectionobjects_common_contentorganizations cocc_organizations ON (coc.id = cocc_organizations.id AND cocc_organizations.pos = 0)
create database lostnfound; USE lostnfound; CREATE TABLE user( email char(254) NOT NULL, Primary key(email), trust int, phone char(10), name char(20), password char(8)); create table useradmin ( email char(254) not null, privileges char(10), primary key (email), constraint foreign key (email) references user(email) on delete cascade ); create table location ( address char(50), postal_code char(6), city char(80), province char(25), description varchar(500), primary key(address)); create table itemtype ( type char(20), primary key(type)); create table item ( id int, description varchar(500), type char(20), primary key(id), constraint foreign key (type) references itemtype(type) on delete cascade); create table reward ( id int, description varchar(500), primary key (id)); create table lost ( item_id int, date long, location char(50), reward_id int, email char(254), primary key (item_id, email), foreign key (location) references location(address), constraint foreign key (email) references user(email) on delete cascade, constraint foreign key (reward_id) references reward(id) on delete cascade, constraint foreign key (item_id) references item(id) on delete cascade ); create table found ( item_id int, date long, location char(50), email char(254), primary key(item_id, email), foreign key (location) references location(address), constraint foreign key (email) references user(email) on delete cascade, constraint foreign key (item_id) references item(id) on delete cascade ); /*Initial Database Insertions*/ /*User insertions*/ INSERT INTO user(email, trust, phone, name, password) Values('mick@sayson.com', '2','1222222222', 'Mick Sayson','mick'); INSERT INTO user(email, trust, phone, name, password) Values('nick@wong.com', '1', '1233333333', 'nick', 'nick'); INSERT INTO user(email, trust, phone, name, password) Values('chris@yu.com', '2', '1234555555', 'chris', 'chris'); INSERT INTO user(email, trust, phone, name, password) Values('calvin@chan.com', '3', '1234566666', 'calvin', 'calvin'); INSERT INTO user(email, trust, phone, name, password) Values('daniel@chong.com', '4', '1234567777', 'daniel', 'daniel'); INSERT INTO user(email, trust, phone, name, password) Values('brendan@lau.com', '4', '1234567888', 'brendan', 'brendan'); /*Item type insertions*/ Insert into itemtype ( type ) Values('book'); Insert into itemtype ( type ) Values('wallet'); Insert into itemtype ( type ) Values('duffle bag'); Insert into itemtype ( type ) Values('backpack'); Insert into itemtype ( type ) Values('cellphone'); Insert into itemtype ( type ) Values('wire stripper'); Insert into itemtype ( type ) Values('motor toothbrush'); /*Item insertions*/ Insert into item(id, description, type) Values('1', 'Harry Potter', 'book'); Insert into item(id, description, type) Values('2', 'Money', 'wallet'); Insert into item(id, description, type) Values('3', 'Big, Thick, Long, Black', 'duffle bag'); Insert into item(id, description, type) Values('4', 'Big, Black', 'backpack'); Insert into item(id, description, type) Values('5', 'Long, Thin, Black', 'cellphone'); Insert into item(id, description, type) Values('6', 'purple', 'wire stripper'); Insert into item(id, description, type) Values('7', 'pink', 'motor toothbrush'); Insert into item(id, description, type) Values('8', 'Harry Potter', 'book'); /*Reward insertions*/ Insert into reward(id, description) Values('1', '20 bucks'); Insert into reward(id, description) Values('2', 'dinner'); Insert into reward(id, description) Values('3', 'Interview at H.A.N.D.'); Insert into reward(id, description) Values('4', 'high five'); /*Location insertions*/ Insert into location( address, postal_code, city, province, description) Values('Library Lane', 'a0a0a0', 'vancouver','bc', 'magical'); Insert into location( address, postal_code, city, province, description) Values('Mall Street', 'a0a0a0', 'burnaby', 'bc', 'entertainment'); Insert into location( address, postal_code, city, province, description) Values('Hastings Street', 'a0a0a0', 'east vancouver', 'bc', 'dirty'); Insert into location( address, postal_code, city, province, description) Values('Main Mall', 'a9a9a9', 'west vancouver', 'bc', '24/7 construction'); /*Lost insertions*/ Insert into lost (item_id, date, location, reward_id, email) Values('1', '032716', 'Library Lane', '1', 'mick@sayson.com'); Insert into lost (item_id, date, location, reward_id, email) Values('2', '032716', 'Mall Street', '4', 'nick@wong.com'); Insert into lost (item_id, date, location, reward_id, email) Values('3', '032716', 'Hastings Street', '3', 'calvin@chan.com'); Insert into lost (item_id, date, location, reward_id, email) Values('4', '032716', 'Main Mall', '1', 'chris@yu.com'); Insert into lost (item_id, date, location, reward_id, email) Values('6', '032716', 'Hastings Street', '2', 'brendan@lau.com'); Insert into lost (item_id, date, location, reward_id, email) Values('7', '032716', 'Hastings Street', '1', 'calvin@chan.com'); /*Found insertions*/ Insert into found (item_id, date, location, email) Values('4', '032716', 'Mall Street', 'mick@sayson.com'); Insert into found (item_id, date, location, email) Values('3', '032716', 'Hastings Street', 'nick@wong.com'); Insert into found (item_id, date, location, email) Values('1', '032716', 'Main Mall', 'nick@wong.com'); Insert into found (item_id, date, location, email) Values('2', '032716', 'Hastings Street', 'daniel@chong.com'); Insert into found (item_id, date, location, email) Values('5', '032716', 'Hastings Street', 'daniel@chong.com'); Insert into found (item_id, date, location, email) Values('8', '032716', 'Library Lane', 'chris@yu.com'); SELECT * FROM user; SELECT * FROM itemtype; Select * from item; Select * from lost; Select * from found; -- selection and projection query select email, phone name from user; -- join query select U.email, I.type from user U, item I, Lost L where U.email = L.user AND L.id = I.id; -- aggregation query select avg(trust) from user; -- nested aggregation with group by /*lists users that have the same trust with at least one other user*/ select email, trust from user where trust in ( select trust from user group by trust having count(*) > 1); /*same as above, but pairs the users side by side*/ create view v as select email, trust from user where trust in ( select trust from user group by trust having count(*) > 1); select * from v v1, v v2 where v1.trust = v2.trust AND v1.email <> v2.email; -- right outer join query /*matches users that found and lost an item*/ select f.user as foundUser, l.user as lostUser from found f left outer join lost l on f.id = l.id; -- left outer join query /*matches users that found and lost an item*/ select f.user as foundUser, l.user as lostUser from found f right outer join lost l on f.id = l.id; -- inner join query /*matches users that found and lost an item*/ select f.user as foundUser, l.user as lostUser from found f inner join lost l on f.id = l.id; --division query
// DB 생성 CREATE DATABASE FAMINICLE_DB DEFAULT CHARACTER SET UTF8 COLLATE UTF8_GENERAL_CI; // 회원 테이블 CREATE TABLE FAM_MEMBER( MEM_NO INT NOT NULL PRIMARY KEY AUTO_INCREMENT ,ID VARCHAR(20) NOT NULL ,PASS VARCHAR(20) NOT NULL ,E_MAIL VARCHAR(100) NOT NULL ,MEM_PIC_PATH VARCHAR(255) ,NAME VARCHAR(20) NOT NULL ,BIRTHDAY VARCHAR(20) NOT NULL ,TEL VARCHAR(15) NOT NULL ); // 게시물 테이블 CREATE TABLE fam_pic( PIC_NO INT NOT NULL PRIMARY KEY AUTO_INCREMENT ,MEM_NO INT NOT NULL ,TITLE VARCHAR(100) ,PIC_DATE VARCHAR(100) NOT NULL ,PIC_FILE_PATH VARCHAR(100) NOT NULL ,LAT VARCHAR(30) ,LNG VARCHAR(30) ); // 기념일 테이블 CREATE TABLE EVENTDAY( EV_NO INT PRIMARY KEY AUTO_INCREMENT, MEM_NO INT NOT NULL, EV_TITLE VARCHAR(100) NOT NULL, EV_START DATE NOT NULL, EV_END DATE, EV_TYPE VARCHAR(10) ); // 가족 신청 테이블 CREATE TABLE FAM_REQUEST ( FAM_NO INT PRIMARY KEY AUTO_INCREMENT, FAM_REQ_ID_NO INT NOT NULL, FAM_RES_ID_NO INT NOT NULL, FAM_NAME VARCHAR(20) NOT NULL, FAM_STATUS VARCHAR(3) NOT NULL DEFAULT 'N' ); // 가족 테이블 CREATE TABLE FAMILY ( FAM_NAME VARCHAR(20) NOT NULL, MEM_NO INT NOT NULL, REQUESTOR VARCHAR(3) NOT NULL DEFAULT 'N' );
create table users ( p_userid varchar(30) primary key, p_fullname varchar(30) not null, p_emailid varchar(30) unique not null, p_passwordencoded varchar(30) not null, p_role varchar(30) not null, p_imageurl varchar(30) ); create table products ( p_code varchar(30) primary key, p_name varchar(30) not null, p_productsku varchar(30) not null, p_description varchar(30), p_defaultimageurl varchar(30), p_price double ); create table categories ( p_code varchar(30) primary key, p_name varchar(30) not null, p_description varchar(30), p_level varchar(30) not null, p_supercategory varchar(30), p_iconurl varchar(30) ); create table productmedias ( p_mediacode varchar(30) primary key, p_productcode varchar(30) not null, p_mediatype varchar(30) not null, p_mediaurl varchar(30) not null ); create table prod2catrel ( p_code varchar(30) primary key, p_sourceproduct varchar(30) not null, p_targetcategory varchar(30) not null ); CREATE TABLE productsequence ( id INTeger PRIMARY KEY AUTO_INCREMENT )AUTO_INCREMENT=1000000; CREATE TABLE categorysequence ( id INTeger PRIMARY KEY AUTO_INCREMENT )AUTO_INCREMENT=1000000; CREATE TABLE productmediasequence ( id INTeger PRIMARY KEY AUTO_INCREMENT )AUTO_INCREMENT=1000000; CREATE TABLE c2prelationsequence ( id INTeger PRIMARY KEY AUTO_INCREMENT )AUTO_INCREMENT=1000000; CREATE TABLE tempimagesequence ( id INTeger PRIMARY KEY AUTO_INCREMENT )AUTO_INCREMENT=1000000;
SELECT SUM(ISNULL(WITHDRAW_SCHEDULE_AMOUNT,0)) - SUM(ISNULL(WITHDRAW_RESULT_AMOUNT,0)) AS SUM_WITHDRAW_SCHEDULE_AMOUNT -- SUM(回収予定額)-SUM(回収実績額) AS 未入金 FROM REQUST_WITHDRAW_INFO -- 請求回収情報 WHERE CONTRACT_NO = /*contractNo*/ -- 契約番号 AND WITHDRAW_STATUS <> CAST(/*withdrawStatus*/ AS CHAR(1)) -- 回収ステータス <> 2-回収済 AND UN_WITHDRAW_FLG = CAST(/*unWithdrawFlg*/ AS CHAR(1)) -- 回収不要フラグ=0-OFF /*IF (businessDate <= lastWithdrawDate)*/ -- 業務日時取得API<=パラメータ.最終回収日 AND WITHDRAW_SCHEDULE_DATE <= CONVERT(DATE, /*businessDate*/) /*END*/ /*IF (businessDate > lastWithdrawDate)*/ AND WITHDRAW_SCHEDULE_DATE <= CONVERT(DATE, /*lastWithdrawDate*/) /*END*/
SELECT TOP(CONVERT(INT, /*topRow*/)) TEMP.*, D.CODE_NAME AS PAY_STATE_NAME FROM ( SELECT FI.DEBT_FACILITY_NO, CI.DEBT_CONTRACT_NO, FI.DEBT_CUST_NAME, RI.COUPON, RI.SCHEDULE_PAY_DATE, RI.INTEREST_CALCULATE_FROM, RI.INTEREST_CALCULATE_TO, RI.PRINCIPAL_REMAINDER, CI.CURRENCY_ID, M.CURRENCY_NAME AS CURRENCY_NAME, RI.PAY_AMOUNT, RI.PAY_ORIGINAL_ACCOUNT_NO, ACCOUNT_INFO.BANK_BRANCH_NAME AS PAY_ORIGINAL_ACCOUNT_NAME, RI.REAL_PAY_DATE, CASE WHEN RI.REAL_PAY_DATE IS NULL THEN /*dto.payStateNotPaid*/'' ELSE CAST(/*dto.payStatePaid*/ AS CHAR(1)) END AS PAY_STATE, RI.PAY_METHOD, C.CODE_NAME AS PAY_METHOD_NAME FROM DEBT_FACILITY_INFO FI INNER JOIN DEBT_CONTRACT_INFO CI ON FI.DEBT_FACILITY_ID = CI.DEBT_FACILITY_ID INNER JOIN REPAYMENT_INFO RI ON CI.DEBT_CONTRACT_ID = RI.DEBT_CONTRACT_ID LEFT JOIN ACCOUNT_INFO ON ACCOUNT_INFO.CUSTOMER_CODE = /*dto.companyCode*/'' AND RI.PAY_ORIGINAL_ACCOUNT_NO = ACCOUNT_INFO.ACCOUNT_NO LEFT JOIN CURRENCY_MST M ON CI.CURRENCY_ID = M.CURRENCY_ID --コードマスタ(返済方法) LEFT JOIN CODE_MASTER C ON C.CODE_ID = RI.PAY_METHOD AND C.CODE_TYPE = CAST(/*dto.payMethodKbn*/'210' AS CHAR(3)) AND C.COUNTRY_ID = /*dto.countryId*/ WHERE FI.CANCEL_DATE IS NULL AND CI.DELETE_FLG <> CAST(/*dto.deleteFlgTrue*/ AS CHAR(1)) /*IF (dto.facilityNoSearch != null )*/ AND FI.DEBT_FACILITY_NO = /*dto.facilityNoSearch*/ /*END*/ /*IF (dto.contractNoSearch != null )*/ AND CI.DEBT_CONTRACT_NO = /*dto.contractNoSearch*/ /*END*/ /*IF (dto.currencySearch != null )*/ AND CI.CURRENCY_ID = CAST(/*dto.currencySearch*/ AS CHAR(3)) /*END*/ /*IF (dto.payStateSearch == dto.payStatePaid )*/ AND RI.REAL_PAY_DATE IS NOT NULL /*END*/ /*IF (dto.payStateSearch == dto.payStateNotPaid )*/ AND RI.REAL_PAY_DATE IS NULL /*END*/ /*IF (dto.payDateFromSearch != null )*/ AND (RI.SCHEDULE_PAY_DATE >= /*dto.payDateFromSearch*/ OR RI.REAL_PAY_DATE >= /*dto.payDateFromSearch*/ ) /*END*/ /*IF (dto.payDateToSearch != null )*/ AND (RI.SCHEDULE_PAY_DATE <= /*dto.payDateToSearch*/ OR RI.REAL_PAY_DATE <= /*dto.payDateToSearch*/ ) /*END*/ /*IF (dto.debtCustCodeSearch != null )*/ AND FI.DEBT_CUST_CODE = /*dto.debtCustCodeSearch*/ /*END*/ ) TEMP --コードマスタ(支払状況) LEFT JOIN CODE_MASTER D ON D.CODE_ID = TEMP.PAY_STATE AND D.CODE_TYPE = CAST(/*dto.payStateKbn*/'191' AS CHAR(3)) AND D.COUNTRY_ID = /*dto.countryId*/ ORDER BY --借入枠番号 TEMP.DEBT_FACILITY_NO ASC, --個別借入番号 TEMP.DEBT_CONTRACT_NO ASC, --回数 TEMP.COUPON ASC