text
stringlengths
6
9.38M
-------------------------------------------------------- -- File created - Tuesday-February-21-2012 -------------------------------------------------------- --REM INSERTING into RULESET Insert into CTUSR.RULESET (RULESET_ID,RULESET_NAME,RULESET_DESCRIPTION) values (1,'processCompleteStandardWindow','The Process Completed in Standard business time window');
SELECT e.EmployeeID, e.FirstName, e.LastName, d.[Name] AS DepartmentName FROM Employees e JOIN Departments d ON e.DepartmentID = d.DepartmentID WHERE d.Name = 'Sales'
select distinct(DATE_TRUNC ('week', ship_date)) as "week", sum(order_quantity) * 100 as "Total Units" from adventureworks_analytics.product_base_and_order_details2 where extract(year from ship_date) IN (2017,2018) group by 1 order by 1;
-- $Id: connect_as_dslmon.sql,v 1.2 2009/07/20 10:59:51 a59603 Exp $ conn dslmon1/tdc@dslmon-test.tdk.dk WHENEVER SQLERROR EXIT select 'DSLMON1' "Schema" from dual where 1 = decode(user, 'DSLMON1', 1, 'NOT'); WHENEVER SQLERROR CONTINUE
/* add_event: date Event.event_name%TYPE -> void This procedure expects a date for the time of the event and a name, returns nothing, and has the side effect of adding that event to the event table */ create or replace procedure add_event( new_event_date date, new_event_name Event.event_name%TYPE) as max_eid Event.event_id%TYPE; begin select nvl( max(event_id), 0 ) into max_eid from Event; insert into Event values (max_eid + 1, new_event_date, new_event_name); exception when others then dbms_output.put_line('error: ' || sqlcode || '-' || sqlerrm); end; / show errors /* testing */ set serveroutput on commit; prompt TESTING ADD_GROUP prompt prompt Before call select * from Event; prompt Calling add_event(sysdate, "Pie sale") prompt exec add_event(sysdate, 'Pie Sale') select * from Event; prompt Calling add_event(sysdate, 'Cake Walk') prompt Should have a event id that is 1 above the Pie Sale event id prompt exec add_event(sysdate, 'Cake Walk') select * from Event; rollback;
create PROC [ERP].[Usp_Upd_AnticipoCompra_Desactivar] @ID INT, @UsuarioElimino VARCHAR(250) AS BEGIN UPDATE ERP.AnticipoCompra SET Flag = 0,UsuarioElimino =@UsuarioElimino , FechaActivacion = DATEADD(HOUR, 3, GETDATE()) WHERE ID = @ID UPDATE ERP.CuentaPagar SET Flag = 0 WHERE ID = (SELECT IdCuentaPagar FROM ERP.AnticipoCompraCuentaPagar WHERE IdAnticipo = @ID) END
DROP DATABASE IF EXISTS simpledoge; DROP DATABASE IF EXISTS simpledoge_testing; CREATE USER simpledoge WITH PASSWORD 'testing'; CREATE DATABASE simpledoge; GRANT ALL PRIVILEGES ON DATABASE simpledoge to simpledoge; -- Create a testing database to be different than dev CREATE DATABASE simpledoge_testing; GRANT ALL PRIVILEGES ON DATABASE simpledoge_testing to simpledoge; \c simpledoge CREATE EXTENSION hstore; \c simpledoge_testing CREATE EXTENSION hstore;
insert into items (title,description,start_price,bid_increment,start_date,stop_date,buy_it_now) VALUES ('Axe of Ares','given to the mankind by gods','1000000','500000','2019-01-01','2019-12-31','Y'), ('Crown of Wilgelm the Conqueror','once belonged to one of the most powerful rulers in history','10000000','5000000','2019-01-01','2019-12-31','Y'), ('Staff of Magnus','contains the power of magic','7777777','50000','2019-01-01','2019-12-31','Y'), ('Book of Dead','can grant a power to revive dead','10000000','5000000','2019-01-01','2019-12-31','Y'); insert into users (full_name,billing_adress,login,password) VALUES ('Ivan Ivanov','Izhevsk, Lenina St. 10-23','boss','123'), ('Roman Abramovich','Moskow, Arbat St. 12-1','-','-'), ('Max James','New York, St.jack St. 5','max','xam'), ('Konstantinos Dakascos','Athens, Hercules St. 10','zeus','111'), ('Sergey Kovalev','-','auctionist','master'); insert into bids (bid_date,bid_value,items_item_id,users_user_id) VALUES ('2019-01-24','1500000','2','1'),('2019-01-25','2000000','2','2'),('2019-01-25','100000000','1','2'),('2019-01-25','150000000','3','2'), ('2019-01-25','1500000','4','2'),('2019-01-25','9999999','5','2'), ('2019-03-20','3000000','2','4'),('2019-06-11','7827777','3','3'); SELECT * from bids where users_user_id = '1'; SELECT * from items where users_user_id='6'; SELECT * from items where LOWER(title) like LOWER('%dead%'); SELECT * from items where LOWER(description) like LOWER('%power%'); SELECT us.full_name, AVG(it.start_price) from items it join users us on it.users_user_id = us.user_id where us.user_id in ('1','2','3','4','5','6') GROUP BY us.full_name; select it.title,MAX(b.bid_value),us.full_name from bids b join items it on b.items_item_id = it.item_id join users us on b.users_user_id = us.user_id group by it.item_id; select * from items it join users us on it.users_user_id = us.user_id where us.user_id = '6'; delete from bids where users_user_id=1; delete from items where users_user_id=6; update items it join users us on it.users_user_id=us.user_id set it.start_price=it.start_price*2 where u.full_name='Sergey Kovalev';
insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',1,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',2,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',3,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',4,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',5,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',6,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',7,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',8,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',9,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',10,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',11,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',12,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',13,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',14,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',16,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',465,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',18,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',19,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',20,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',21,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',22,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',23,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',24,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',25,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',26,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',27,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',28,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',29,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',30,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',31,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',32,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',33,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',34,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',35,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',36,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',37,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',38,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',39,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',40,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',41,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',42,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',43,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',44,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',45,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',46,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',47,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',48,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',49,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',50,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',51,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',52,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',463,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_ADMIN',464,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',1,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',2,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',3,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',4,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',5,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',6,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',7,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',8,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',21,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',29,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DECISION_MAKER',33,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',1,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',2,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',3,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',4,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',5,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',6,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',7,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',8,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',9,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',10,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',11,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',12,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',13,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',14,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',16,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_DEFAULT',465,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',1,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',2,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',3,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',4,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',5,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',6,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',7,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',8,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',9,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',10,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',11,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',12,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',13,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',14,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',16,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',465,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',19,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_IN_DEFAULT',20,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',53,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',54,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',55,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',56,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',57,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',58,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_MASTER',59,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_USER',53,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_USER',54,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_USER',56,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PD_USER',57,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',68,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',69,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',74,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',75,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',76,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',77,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_DECISION_MAKER',78,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',60,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',61,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',62,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',63,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',64,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',65,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',66,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',67,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',68,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',69,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',70,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',71,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',72,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',73,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',74,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',75,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',76,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',77,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',78,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',79,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',80,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',81,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PG_MASTER',82,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',83 ,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',86 ,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',88 ,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',93 ,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',94 ,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',95 ,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',100,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',101,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',112,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',114,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',128,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',129,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',130,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',145,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',146,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',147,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',148,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',149,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',150,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',151,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',152,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',153,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',154,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',155,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',156,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',157,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',158,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',159,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',160,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',161,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',162,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',163,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_DECISION_MAKER',164,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',83,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',84,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',86,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',87,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',88,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',89,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',90,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',91,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',92,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',93,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',94,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',95,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',96,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',97,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',98,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',99,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',100,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',101,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',102,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',104,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',105,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',106,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',107,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',108,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',109,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',110,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',111,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',112,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',113,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',114,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',116,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',118,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',120,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',122,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',123,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',124,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',125,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',126,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',127,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',128,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',129,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',130,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',131,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',132,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',133,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',134,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',135,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',136,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',137,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',138,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',139,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',140,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',141,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',142,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',143,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',144,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',145,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',146,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',147,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',148,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',149,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',150,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',151,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',152,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',153,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',154,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',155,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',156,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',157,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',158,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',159,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',160,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',161,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',162,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',163,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',164,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MANAGER',458,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',83,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',84,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',85,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',86,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',87,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',88,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',89,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',90,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',91,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',92,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',93,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',94,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',95,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',96,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',97,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',98,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',99,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',100,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',101,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',102,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',104,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',105,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',106,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',107,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',108,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',109,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',110,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',111,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',112,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',113,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',114,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',116,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',118,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',120,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',122,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',123,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',124,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',125,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',126,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',127,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',128,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',129,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',130,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',131,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',132,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',133,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',134,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',135,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',136,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',137,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',138,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',139,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',140,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',141,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',142,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',143,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',144,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',145,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',146,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',147,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',148,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',149,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',150,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',151,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',152,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',153,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',154,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',155,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',156,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',157,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',158,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',159,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',160,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',161,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',162,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',163,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',164,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',458,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',459,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',461,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_MASTER',462,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',83,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',84,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',87,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',88,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',100,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',102,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',104,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',105,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',106,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',107,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',108,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',109,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',110,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',112,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',113,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',114,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',116,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',118,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',123,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',124,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',125,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',126,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',128,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',130,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',131,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',132,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',133,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',134,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',135,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',136,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',137,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',138,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',139,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',140,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',141,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',142,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',143,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',144,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',145,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',146,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',147,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',148,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_LEADER',149,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',83,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',84,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',87,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',88,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',112,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',113,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',114,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',116,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',118,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',123,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',124,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',125,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',126,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',128,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',129,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',130,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',133,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',134,'Y','N'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',135,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',136,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',142,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',143,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',144,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',145,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',146,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',147,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',148,'Y','Y'); insert into sec_authority(rol_id,rsc_id,read_yn,write_yn) values ('ROLE_PJ_TEAM_MEMBER',149,'Y','Y');
# After completd Lynda's SQL: Data Reporting and Analysis course. # I have logged some cool queries I saw in the course # Between Query SELECT * FROM actor WHERE actor_id BETWEEN 1 AND 5; # Wildcard Query SELECT * FROM actor WHERE first_name LIKE 'JA%NE'; # Wildcard Query II SELECT * FROM actor WHERE first_name LIKE 'JOHN%'; # Concat Query SELECT CONCAT(first_name, ' ', last_name) FROM actor # Concat with || Query SELECT first_name || ' ' || last_name FROM actor # Locate Query SELECT LOCATE('lope', first_name) FROM actor # Table Schema Query DESCRIBE actor # Date Format Query SELECT DATE_FORMAT(last_update, '%m-%d-%y') FROM actor WHERE DATE(last_update) = '2006-02-15' # Date Format Query II SELECT DATE_FORMAT(last_update, '%D %M %Y') FROM actor # SubQuery Assignment Query SELECT f.fn from (SELECT first_name as fn from actors) as f # Group Names in List Query (Orginally a Subquery) SELECT GROUP CONCAT(f.title ORDER BY f.title ASC SEPERATOR ', ') FROM ((film r INNER JOIN film_category fc on ((f.film_id = fc.film_id))) INNER JOIN film_actor fa ON ((f.film_id = fa.film_id)))
SELECT * FROM ironhack_personnel.applestore; SELECT DISTINCT prime_genre #distinct Get Rid of Duplicates FROM applestore; SELECT prime_genre, rating_count_tot FROM applestore ORDER BY rating_count_tot DESC; #is used to sort the data returned in descending order. SELECT MIN(prime_genre) AS SmallestPrime_Genre FROM applestore; SELECT max(prime_genre) AS SmallestPrime_Genre FROM applestore; SELECT track_name, rating_count_tot FROM applestore ORDER BY rating_count_tot DESC limit 10; SELECT track_name, user_rating FROM applestore ORDER BY user_rating DESC limit 10; SELECT track_name, rating_count_tot, user_rating FROM applestore ORDER BY rating_count_tot DESC, user_rating DESC limit 10; #the order that i put order by, defined with one come first. SELECT track_name, rating_count_tot, user_rating FROM applestore ORDER BY user_rating DESC, rating_count_tot DESC limit 3; SELECT track_name, price, user_rating, rating_count_tot FROM applestore ORDER BY price DESC, user_rating DESC LIMIT 10; SELECT track_name, price, user_rating, rating_count_tot, prime_genre FROM applestore ORDER BY user_rating DESC, price DESC LIMIT 10; SELECT track_name, price, user_rating, rating_count_tot, prime_genre FROM applestore ORDER BY price DESC, user_rating DESC LIMIT 10;
DROP TABLE final_data.cc; CREATE TABLE final_data.cc_constants AS WITH dt_data AS ( SELECT CAST(dt AS DATE), lat, lng, 'alley gang/homeless=' || COALESCE(json_data::json->>'any_people_using_property_homeless_childen_gangs', 'false') AS data_label FROM datasets.alley_lights_out_311 UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'building_violations' FROM datasets.building_violations UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'crimes theft=' || CASE WHEN json_data::json->>'primary_type' IN ('THEFT', 'BURGLARY', 'ROBBERY', 'MOTOR VEHICLE THEFT') THEN 'theft' ELSE 'non-theft' END FROM datasets.crimes UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'food inspections results=' || CAST(json_data::json->>'results' AS text) FROM datasets.food_inspections WHERE json_data::json->>'results' IN ('Pass', 'Fail', 'Pass w/ Conditions') UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'graffiti' FROM datasets.graffiti_311 UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'sanitation requests' FROM datasets.sanitation_311 UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'vacant gang/homeless=' || COALESCE(json_data::json->>'any_people_using_property_homeless_childen_gangs', 'false') FROM datasets.vacant_311 ), constant_data AS ( SELECT CAST(dt AS DATE), lat, lng, 'tweets=' || CASE WHEN CAST(json_data::json->>'s_score' AS float) * CAST(json_data::json->>'s_magnitude' AS float) <= 0.25 THEN 'bad' WHEN CAST(json_data::json->>'s_score' AS float) * CAST(json_data::json->>'s_magnitude' AS float) >= 0.25 THEN 'good' END AS data_label FROM datasets.tweets WHERE CAST(json_data::json->>'s_score' AS float) * CAST(json_data::json->>'s_magnitude' AS float) <= 0.25 OR CAST(json_data::json->>'s_score' AS float) * CAST(json_data::json->>'s_magnitude' AS float) >= 0.25 UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'red light tickets' FROM datasets.redlight_tickets UNION ALL SELECT CAST(dt AS DATE), lat, lng, 'liquor_licenses' FROM datasets.liquor_licenses ), dt_data_w_geo AS ( SELECT gid, dt, data_label, COUNT(*) AS cnt FROM dt_data, shapes.congressional_districts WHERE st_within (ST_MakePoint(dt_data.lng, dt_data.lat), shapes.congressional_districts.geom) GROUP BY 1, 2, 3), constants_w_geo AS ( SELECT gid, data_label, COUNT(*) AS cnt FROM constant_data, shapes.congressional_districts WHERE st_within (ST_MakePoint(constant_data.lng, constant_data.lat), shapes.congressional_districts.geom) GROUP BY 1, 2) SELECT A.dt, A.gid, COALESCE(MAX(CASE WHEN A.data_label = 'alley gang/homeless=false' THEN A.cnt END), 0) AS gid_lights_ally_homeless_false, COALESCE(MAX(CASE WHEN A.data_label = 'alley gang/homeless=true' THEN A.cnt END), 0) AS gid_lights_ally_homeless_true, COALESCE(MAX(CASE WHEN A.data_label = 'building_violations' THEN A.cnt END), 0) AS gid_building_violations, COALESCE(MAX(CASE WHEN A.data_label = 'crimes theft=non-theft' THEN A.cnt END), 0) AS gid_crime_non_theft, COALESCE(MAX(CASE WHEN A.data_label = 'crimes theft=theft' THEN A.cnt END), 0) AS gid_crime_theft, COALESCE(MAX(CASE WHEN A.data_label = 'food inspections results=Fail' THEN A.cnt END), 0) AS gid_food_fail, COALESCE(MAX(CASE WHEN A.data_label = 'food inspections results=Pass' THEN A.cnt END), 0) AS gid_food_pass, COALESCE(MAX(CASE WHEN A.data_label = 'food inspections results=Pass w/ Conditions' THEN A.cnt END), 0) AS gid_food_pass_w_conditions, COALESCE(MAX(CASE WHEN A.data_label = 'graffiti' THEN A.cnt END), 0) AS gid_graffitti, COALESCE(MAX(CASE WHEN A.data_label = 'sanitation requests' THEN A.cnt END), 0) AS gid_sanitation_requests, COALESCE(MAX(CASE WHEN A.data_label = 'vacant gang/homeless=false' THEN A.cnt END), 0) AS gid_vacant_gang_false, COALESCE(MAX(CASE WHEN A.data_label = 'vacant gang/homeless=true' THEN A.cnt END), 0) AS gid_vacant_gang_true, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'alley gang/homeless=false' THEN A.cnt END) AS INT), 0) AS neigh_lights_ally_homeless_false, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'alley gang/homeless=true' THEN A.cnt END) AS INT), 0) AS neigh_lights_ally_homeless_true, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'building_violations' THEN A.cnt END) AS INT), 0) AS neigh_building_violations, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'crimes theft=non-theft' THEN A.cnt END) AS INT), 0) AS neigh_crime_non_theft, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'crimes theft=theft' THEN A.cnt END) AS INT), 0) AS neigh_crime_theft, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'food inspections results=Fail' THEN A.cnt END) AS INT), 0) AS neigh_food_fail, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'food inspections results=Pass' THEN A.cnt END) AS INT), 0) AS neigh_food_pass, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'food inspections results=Pass w/ Conditions' THEN A.cnt END) AS INT), 0) AS neigh_food_pass_w_conditions, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'graffiti' THEN A.cnt END) AS INT), 0) AS neigh_graffitti, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'sanitation requests' THEN A.cnt END) AS INT), 0) AS neigh_sanitation_requests, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'vacant gang/homeless=false' THEN A.cnt END) AS INT), 0) AS neigh_vacant_gang_false, COALESCE(CAST(AVG(CASE WHEN C.data_label = 'vacant gang/homeless=true' THEN A.cnt END) AS INT), 0) AS neigh_vacant_gang_true, COALESCE(MAX(CASE WHEN D.data_label = 'tweets=bad' THEN A.cnt END), 0) AS gid_tweets_bad, COALESCE(MAX(CASE WHEN D.data_label = 'tweets=good' THEN A.cnt END), 0) AS gid_tweets_good, COALESCE(MAX(CASE WHEN D.data_label = 'liquor_licenses' THEN A.cnt END), 0) AS gid_liquor_licenses, COALESCE(MAX(CASE WHEN D.data_label = 'red light tickets' THEN A.cnt END), 0) AS gid_red_light_tickets FROM dt_data_w_geo A INNER JOIN shapes.congressional_districts_neighbors B ON B.gid_2 = A.gid INNER JOIN dt_data_w_geo C ON C.gid = B.gid_1 LEFT OUTER JOIN constants_w_geo D ON D.gid = A.gid GROUP BY 1, 2
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: db:3306 -- Generation Time: May 27, 2020 at 05:44 AM -- Server version: 5.7.29 -- PHP Version: 7.4.4 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: `barkodai` -- -- -------------------------------------------------------- -- -- Table structure for table `blocked_lists` -- CREATE TABLE `blocked_lists` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `blocked_list_items` -- CREATE TABLE `blocked_list_items` ( `blocked_list_id` int(11) NOT NULL, `item_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `ordered` tinyint(1) DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `carts` -- INSERT INTO `carts` (`id`, `user_id`, `ordered`) VALUES (3, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `cart_items` -- CREATE TABLE `cart_items` ( `id` int(11) NOT NULL, `cart_id` int(11) NOT NULL, `shop_item_id` int(11) NOT NULL, `amount` int(11) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `cart_items` -- INSERT INTO `cart_items` (`id`, `cart_id`, `shop_item_id`, `amount`) VALUES (6, 3, 2, 1), (7, 3, 3, 1), (8, 3, 20, 1), (9, 3, 19, 1), (10, 3, 16, 1), (11, 3, 12, 1), (12, 3, 9, 1); -- -------------------------------------------------------- -- -- Table structure for table `items` -- CREATE TABLE `items` ( `id` int(11) NOT NULL, `name` varchar(150) NOT NULL, `image_link` varchar(255) DEFAULT NULL, `category_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `item_categories` -- CREATE TABLE `item_categories` ( `id` int(11) NOT NULL, `name` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` int(11) NOT NULL, `completed_at` timestamp NULL DEFAULT NULL, `address` varchar(255) NOT NULL, `status_id` int(11) DEFAULT NULL, `customer_id` int(11) DEFAULT NULL, `worker_id` int(11) DEFAULT NULL, `cart_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `order_status` -- CREATE TABLE `order_status` ( `id` int(11) NOT NULL, `status` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `order_status` -- INSERT INTO `order_status` (`id`, `status`) VALUES (1, 'Finished'), (2, 'In Progress'), (3, 'Not Started'); -- -------------------------------------------------------- -- -- Table structure for table `ratings` -- CREATE TABLE `ratings` ( `id` int(11) NOT NULL, `price` double(2,1) NOT NULL DEFAULT '5.0', `quality` double(2,1) NOT NULL DEFAULT '5.0', `use` double(2,1) NOT NULL DEFAULT '5.0', `user_id` int(11) NOT NULL, `item_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `ratings` -- INSERT INTO `ratings` (`id`, `price`, `quality`, `use`, `user_id`, `item_id`) VALUES (6, 1.0, 5.0, 3.0, 1, 0), (15, 2.0, 2.0, 2.0, 2, 0); -- -------------------------------------------------------- -- -- Table structure for table `recommended_lists` -- CREATE TABLE `recommended_lists` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `recommended_lists` -- INSERT INTO `recommended_lists` (`id`, `user_id`) VALUES (1, 1); -- -------------------------------------------------------- -- -- Table structure for table `recommended_list_items` -- CREATE TABLE `recommended_list_items` ( `recommended_list_id` int(11) NOT NULL, `item_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `recommended_list_items` -- INSERT INTO `recommended_list_items` (`recommended_list_id`, `item_id`) VALUES (1, 0), (1, 1), (1, 2), (1, 3), (1, 5), (1, 6), (1, 7); -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` int(11) NOT NULL, `text` text NOT NULL, `status_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, `item_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `review_status` -- CREATE TABLE `review_status` ( `id` int(11) NOT NULL, `status` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `review_status` -- INSERT INTO `review_status` (`id`, `status`) VALUES (1, 'Confirmed'), (2, 'Unconfirmed'), (3, 'Submitted'); -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` int(11) NOT NULL, `name` varchar(100) CHARACTER SET utf8 COLLATE utf8_lithuanian_ci NOT NULL, `email` varchar(150) DEFAULT NULL, `address` varchar(255) CHARACTER SET utf8 COLLATE utf8_lithuanian_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `shops` -- INSERT INTO `shops` (`id`, `name`, `email`, `address`) VALUES (10, 'maxima', 'maxima.lt', 'Maximos g., Šakiai'), (11, 'iki', 'ikiiki.lt', 'Iki pasimatymo g., Kaunas'), (12, 'rimi', 'rimi.lt', 'Anapus kelio'), (13, 'aibe', 'aibe.lt', 'Griškės aibė'); -- -------------------------------------------------------- -- -- Table structure for table `shop_items` -- CREATE TABLE `shop_items` ( `id` int(11) NOT NULL, `price` double(10,2) NOT NULL DEFAULT '0.01', `shop_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `email` varchar(100) NOT NULL, `password` varchar(60) NOT NULL, `first_name` varchar(50) NOT NULL, `last_name` varchar(50) NOT NULL, `phone` varchar(12) DEFAULT NULL, `is_admin` tinyint(1) NOT NULL DEFAULT '0', `is_worker` tinyint(1) NOT NULL DEFAULT '0', `is_blocked` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `email`, `password`, `first_name`, `last_name`, `phone`, `is_admin`, `is_worker`, `is_blocked`) VALUES (1, '1mrTest@gmail.com', 'thisIsSoFingHashed', 'Tom', 'Testovic', '+37064206942', 0, 0, 0), (2, '2mrTest@gmail.com', 'thisIsSoFingHashed', 'Ana', 'Testovic', '+37064206942', 0, 0, 0), (3, '3mrTest@gmail.com', 'thisIsSoFingHashed', 'Bob', 'Testovic', '+37064206942', 0, 0, 0), (4, '4mrTest@gmail.com', 'thisIsSoFingHashed', 'Lee', 'Testovic', '+37064206942', 0, 0, 0), (5, '5mrTest@gmail.com', 'thisIsSoFingHashed', 'Kim', 'Testovic', '+37064206942', 0, 0, 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `blocked_lists` -- ALTER TABLE `blocked_lists` ADD PRIMARY KEY (`id`), ADD KEY `blocked_lists_users_id_fk` (`user_id`); -- -- Indexes for table `blocked_list_items` -- ALTER TABLE `blocked_list_items` ADD PRIMARY KEY (`blocked_list_id`,`item_id`), ADD KEY `blocked_list_item_item_id_fk` (`item_id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`), ADD KEY `carts_users_id_fk` (`user_id`); -- -- Indexes for table `cart_items` -- ALTER TABLE `cart_items` ADD PRIMARY KEY (`id`), ADD KEY `cart_items_carts_id_fk` (`cart_id`), ADD KEY `cart_items_shop_items_id_fk` (`shop_item_id`); -- -- Indexes for table `items` -- ALTER TABLE `items` ADD PRIMARY KEY (`id`), ADD KEY `items_item_categories_id_fk` (`category_id`); -- -- Indexes for table `item_categories` -- ALTER TABLE `item_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`), ADD KEY `orders_order_status_id_fk` (`status_id`), ADD KEY `orders_users_id_fk` (`customer_id`), ADD KEY `orders_users_id_fk_2` (`worker_id`), ADD KEY `orders_carts_id_fk` (`cart_id`); -- -- Indexes for table `order_status` -- ALTER TABLE `order_status` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ratings` -- ALTER TABLE `ratings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `recommended_lists` -- ALTER TABLE `recommended_lists` ADD PRIMARY KEY (`id`), ADD KEY `recommended_lists_users_id_fk` (`user_id`); -- -- Indexes for table `recommended_list_items` -- ALTER TABLE `recommended_list_items` ADD PRIMARY KEY (`recommended_list_id`,`item_id`) USING BTREE, ADD KEY `recommended_list_items_id_fk` (`item_id`) USING BTREE; -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`), ADD KEY `reviews_items_id_fk` (`item_id`), ADD KEY `reviews_review_status_id_fk` (`status_id`), ADD KEY `reviews_users_id_fk` (`user_id`); -- -- Indexes for table `review_status` -- ALTER TABLE `review_status` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_items` -- ALTER TABLE `shop_items` ADD PRIMARY KEY (`id`), ADD KEY `shop_items_shop_id_fk` (`shop_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_uindex` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `blocked_lists` -- ALTER TABLE `blocked_lists` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `cart_items` -- ALTER TABLE `cart_items` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `items` -- ALTER TABLE `items` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `item_categories` -- ALTER TABLE `item_categories` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status` -- ALTER TABLE `order_status` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `ratings` -- ALTER TABLE `ratings` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `recommended_lists` -- ALTER TABLE `recommended_lists` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `review_status` -- ALTER TABLE `review_status` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `shop_items` -- ALTER TABLE `shop_items` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- Constraints for dumped tables -- -- -- Constraints for table `blocked_lists` -- ALTER TABLE `blocked_lists` ADD CONSTRAINT `blocked_lists_users_id_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `blocked_list_items` -- ALTER TABLE `blocked_list_items` ADD CONSTRAINT `blocked_list_item_blocked_lists_id_fk` FOREIGN KEY (`blocked_list_id`) REFERENCES `blocked_lists` (`id`); -- -- Constraints for table `carts` -- ALTER TABLE `carts` ADD CONSTRAINT `carts_users_id_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `cart_items` -- ALTER TABLE `cart_items` ADD CONSTRAINT `cart_items_carts_id_fk` FOREIGN KEY (`cart_id`) REFERENCES `carts` (`id`); -- -- Constraints for table `items` -- ALTER TABLE `items` ADD CONSTRAINT `items_item_categories_id_fk` FOREIGN KEY (`category_id`) REFERENCES `item_categories` (`id`); -- -- Constraints for table `orders` -- ALTER TABLE `orders` ADD CONSTRAINT `orders_carts_id_fk` FOREIGN KEY (`cart_id`) REFERENCES `carts` (`id`), ADD CONSTRAINT `orders_order_status_id_fk` FOREIGN KEY (`status_id`) REFERENCES `order_status` (`id`), ADD CONSTRAINT `orders_users_id_fk` FOREIGN KEY (`customer_id`) REFERENCES `users` (`id`), ADD CONSTRAINT `orders_users_id_fk_2` FOREIGN KEY (`worker_id`) REFERENCES `users` (`id`); -- -- Constraints for table `recommended_lists` -- ALTER TABLE `recommended_lists` ADD CONSTRAINT `recommended_lists_users_id_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `recommended_list_items` -- ALTER TABLE `recommended_list_items` ADD CONSTRAINT `recommended_list_items_recommended_lists_id_fk` FOREIGN KEY (`recommended_list_id`) REFERENCES `recommended_lists` (`id`); -- -- Constraints for table `reviews` -- ALTER TABLE `reviews` ADD CONSTRAINT `reviews_items_id_fk` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`), ADD CONSTRAINT `reviews_review_status_id_fk` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`id`), ADD CONSTRAINT `reviews_users_id_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `shop_items` -- ALTER TABLE `shop_items` ADD CONSTRAINT `shop_items_shop_id_fk` FOREIGN KEY (`shop_id`) REFERENCES `shops` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
WITH school_user_metrics AS ( #work out current user-related metric values for all individual schools for use in the main query later SELECT CAST(school_urn AS STRING) AS urn, MIN(approval_datetime) AS dsi_signup_date, #the earliest date that a user is recorded as authorised for TV access in DSI - for schools who signed up *after* we moved to DSI for authorisation in Nov 2019 this is the date the school first signed up COUNT(*) AS number_of_users #the current number of users this school has authorised to access TV in DSI FROM `teacher-vacancy-service.production_dataset.dsi_users` AS users GROUP BY school_urn ), school_approver_metrics AS ( #work out current approver-related metric values for all individual schools for use in the main query later SELECT CAST(school_urn AS STRING) AS urn, COUNT(*) AS number_of_approvers #the current number of approvers this school has to authorise access to services in DSI FROM `teacher-vacancy-service.production_dataset.dsi_approvers` AS approvers GROUP BY school_urn ), school_vacancy_metrics AS ( #work out current vacancy-related metric values for all individual schools for use in the main query later SELECT CAST(school.urn AS STRING) AS urn, COUNT(*) AS vacancies_published, #the total number of vacancies this school published over all time COUNTIF(publish_on > DATE_SUB(CURRENT_DATE(), INTERVAL 1 YEAR)) AS vacancies_published_in_the_last_year, COUNTIF(publish_on > DATE_SUB(CURRENT_DATE(), INTERVAL 3 MONTH)) AS vacancies_published_in_the_last_quarter, COUNTIF(status="published" AND expires_on > CURRENT_DATE()) AS vacancies_currently_live, #count this as vacancies which have been published and have not yet expired MAX(publish_on) AS date_last_published FROM `teacher-vacancy-service.production_dataset.feb20_vacancy` AS vacancy INNER JOIN `teacher-vacancy-service.production_dataset.feb20_school` AS school ON vacancy.school_id=school.id WHERE status != "trashed" #exclude deleted vacancies from the counts above AND status != "draft" #exclude vacancies which have not (yet) been published from the counts above GROUP BY school.urn), mat_metrics AS ( #make a table of academy trusts (MATs and SATs) with current values of trust related metrics for inclusion in main query later SELECT school.data_Trusts_name AS trust_name, COUNT(*) AS trust_size #count the total number of academies in the trust according to the latest GIAS download FROM `teacher-vacancy-service.production_dataset.feb20_school` AS school GROUP BY school.data_Trusts_name ) SELECT school.id, school.name, school.urn, school.address AS address1, #rename this as this is actually the first line of the address school.locality, school.address3, school.town, school.county, school.postcode, CONCAT(IFNULL(CONCAT(school.address,"\n"), ""),IFNULL(CONCAT(school.locality,"\n"), ""),IFNULL(CONCAT(school.address3,"\n"), ""),IFNULL(CONCAT(school.town,"\n"), ""),IFNULL(CONCAT(school.county,"\n"), ""),IFNULL(school.postcode, "")) AS address, #stick all the address components into a single string to save handling this in multiple dashboards further down the pipeline school.phase, school.url, school.minimum_age, school.maximum_age, school_type.label AS school_type, #extract school type from reference data table region.name AS region, #extract region name from reference data table school.created_at, school.updated_at, detailed_school_type.label AS detailed_school_type, #extract detailed school type from reference data table school.local_authority, IF (historic_signups.School_been_added IS TRUE, historic_signups.Date_first_signed_up, CAST(school_user_metrics.dsi_signup_date AS DATE)) AS signup_date, #In Nov 19 we switched to DSI for authorisation. Since then we can use DSI data to tell whether a school has signed up. If the school was signed up before then we have to use a historic data table. This uses the historic signup date if the school signed up pre-DSI authorisation, but uses the DSI date if it hadn't - and if it still hasn't passes on a null value. IF (historic_signups.School_been_added IS TRUE, TRUE, IF (school_user_metrics.number_of_users >0, TRUE, FALSE)) AS signed_up, #similarly, if the school had signed up pre-DSI, sets signed_up to true; otherwise, work this out from the number of users the school has on DSI school_user_metrics.number_of_users AS number_of_users, school_approver_metrics.number_of_approvers AS number_of_approvers, IFNULL(school_vacancy_metrics.vacancies_published, 0) AS vacancies_published, #convert null values for vacancies_published into zeros IFNULL(school_vacancy_metrics.vacancies_published_in_the_last_year, 0) AS vacancies_published_in_the_last_year, IFNULL(school_vacancy_metrics.vacancies_published_in_the_last_quarter, 0) AS vacancies_published_in_the_last_quarter, IFNULL(school_vacancy_metrics.vacancies_published_in_the_last_quarter, 0) AS vacancies_currently_live, school_vacancy_metrics.date_last_published AS date_last_published, school.data_EstablishmentTypeGroup_name AS establishment_type_group, school.data_PhaseOfEducation_name AS education_phase, school.data_ReligiousCharacter_name AS religious_character, school.data_ReligiousEthos_name AS religious_ethos, school.data_NumberOfPupils AS number_of_pupils, school.data_Trusts_name AS trust_name, mat_metrics.trust_size AS academies_in_trust, school.data_TelephoneNum AS telephone_number, school.data_HeadTitle_name AS head_title, school.data_HeadFirstName AS head_first_name, school.data_HeadLastName AS head_last_name, CONCAT(school.data_HeadTitle_name," ",school.data_HeadFirstName," ",school.data_HeadLastName) AS head_name, #stick these together for easy use in mailing lists etc. further down the pipeline school.data_HeadPreferredJobTitle AS head_preferred_job_title, school.data_GOR_name AS GOR, school.data_RSCRegion_name AS RSC_region, school.data_SchoolCapacity AS capacity, school.data_UrbanRural_name AS urban_rural, school.data_ReasonEstablishmentOpened_name AS reason_establishment_opened, school.data_ReasonEstablishmentClosed_name AS reason_establishment_closed, school.data_OfstedRating_name AS ofsted_rating, school.data_LastChangedDate AS last_changed_date, school.data_Federations_name AS federation, school.data_EstablishmentStatus_name AS status, school.data_Diocese_name AS diocese, school.data_OpenDate AS date_opened, school.data_SchoolWebsite AS school_website, IF (school.data_Trusts_name IS NULL, "Single school", IF (mat_metrics.trust_size=1, "SAT", "MAT")) AS tag #categorise the school as either a single school, part of a SAT or part of a MAT to provide a simplified dimension for analysis further down the pipeline FROM `teacher-vacancy-service.production_dataset.feb20_school` AS school LEFT JOIN `teacher-vacancy-service.production_dataset.feb20_schooltype` AS school_type ON school_type.id=school.school_type_id LEFT JOIN `teacher-vacancy-service.production_dataset.feb20_region` AS region ON region.id=school.region_id LEFT JOIN `teacher-vacancy-service.production_dataset.feb20_detailedschooltype` AS detailed_school_type ON detailed_school_type.id=school.detailed_school_type_id LEFT JOIN school_user_metrics ON school_user_metrics.urn=school.urn LEFT JOIN school_approver_metrics ON school_approver_metrics.urn=school.urn LEFT JOIN `teacher-vacancy-service.production_dataset.STATIC_schools_historic_pre201119` AS historic_signups ON CAST(historic_signups.URN AS STRING)=school.urn LEFT JOIN school_vacancy_metrics ON school_vacancy_metrics.urn=school.urn LEFT JOIN mat_metrics ON mat_metrics.trust_name=school.data_Trusts_name WHERE CAST(detailed_school_type.code AS NUMERIC) IN ( #exclude schools recorded in our database which have an out of scope establishment type SELECT code FROM `teacher-vacancy-service.production_dataset.STATIC_establishment_types_in_scope`) AND school.data_EstablishmentStatus_name != "Closed" #exclude closed schools, as this is a table of in scope schools. Assume schools with a null status are closed - as we didn't update the GIAS data for these when we started populating this as a JSON string in the database.
/* Navicat MySQL Data Transfer Source Server : 127.0.0.1 Source Server Version : 50624 Source Host : localhost:3306 Source Database : shop Target Server Type : MYSQL Target Server Version : 50624 File Encoding : 65001 Date: 2017-08-29 12:34:28 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for hibernate_sequence -- ---------------------------- DROP TABLE IF EXISTS `hibernate_sequence`; CREATE TABLE `hibernate_sequence` ( `next_val` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of hibernate_sequence -- ---------------------------- INSERT INTO `hibernate_sequence` VALUES ('1'); -- ---------------------------- -- Table structure for t_admin -- ---------------------------- DROP TABLE IF EXISTS `t_admin`; CREATE TABLE `t_admin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `password` varchar(255) DEFAULT NULL, `username` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_admin -- ---------------------------- INSERT INTO `t_admin` VALUES ('1', '123456', '管理员'); -- ---------------------------- -- Table structure for t_announcement -- ---------------------------- DROP TABLE IF EXISTS `t_announcement`; CREATE TABLE `t_announcement` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `createTime` datetime DEFAULT NULL, `createAdmin_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FKslwp3gcgudths92bk0kbak06t` (`createAdmin_id`), CONSTRAINT `FKslwp3gcgudths92bk0kbak06t` FOREIGN KEY (`createAdmin_id`) REFERENCES `t_admin` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_announcement -- ---------------------------- -- ---------------------------- -- Table structure for t_news -- ---------------------------- DROP TABLE IF EXISTS `t_news`; CREATE TABLE `t_news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `createTime` datetime DEFAULT NULL, `inputUser_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FKspe5cxeewkudeg10usq127fji` (`inputUser_id`), CONSTRAINT `FKspe5cxeewkudeg10usq127fji` FOREIGN KEY (`inputUser_id`) REFERENCES `t_admin` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_news -- ---------------------------- -- ---------------------------- -- Table structure for t_order -- ---------------------------- DROP TABLE IF EXISTS `t_order`; CREATE TABLE `t_order` ( `id` int(11) NOT NULL AUTO_INCREMENT, `create_time` datetime DEFAULT NULL, `order_number` varchar(255) DEFAULT NULL, `status` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `user_address` int(11) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `confirmTime` datetime DEFAULT NULL, `consignee` varchar(255) DEFAULT NULL, `createTime` datetime DEFAULT NULL, `finalPrice` double DEFAULT NULL, `orderNumber` varchar(255) DEFAULT NULL, `payTime` datetime DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `shipTime` datetime DEFAULT NULL, `totalPrice` double DEFAULT NULL, `zipcode` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK_75ffb6s55q5aibdhqs2unu49q` (`user_id`), KEY `FK_9a6eb7iu2gbn1628cud5w836w` (`user_address`), CONSTRAINT `FK_75ffb6s55q5aibdhqs2unu49q` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`), CONSTRAINT `FK_9a6eb7iu2gbn1628cud5w836w` FOREIGN KEY (`user_address`) REFERENCES `t_useraddress` (`id`), CONSTRAINT `FKho2r4qgj3txpy8964fnla95ub` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_order -- ---------------------------- -- ---------------------------- -- Table structure for t_orderitem -- ---------------------------- DROP TABLE IF EXISTS `t_orderitem`; CREATE TABLE `t_orderitem` ( `id` int(11) NOT NULL AUTO_INCREMENT, `quantity` int(11) DEFAULT NULL, `order_id` int(11) DEFAULT NULL, `product` int(11) DEFAULT NULL, `product_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK_n7j2urgoicw0qa2b5s2pidind` (`order_id`), KEY `FK_cxxgytqnjjrpm4x7k2grbm6iu` (`product`), KEY `FK2yx4lqm9mh15mysa9kppvf77r` (`product_id`), CONSTRAINT `FK2yx4lqm9mh15mysa9kppvf77r` FOREIGN KEY (`product_id`) REFERENCES `t_product` (`id`), CONSTRAINT `FK_cxxgytqnjjrpm4x7k2grbm6iu` FOREIGN KEY (`product`) REFERENCES `t_product` (`id`), CONSTRAINT `FK_n7j2urgoicw0qa2b5s2pidind` FOREIGN KEY (`order_id`) REFERENCES `t_order` (`id`), CONSTRAINT `FKj435mnwwxw5wci0t6xi15ddxk` FOREIGN KEY (`order_id`) REFERENCES `t_order` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_orderitem -- ---------------------------- -- ---------------------------- -- Table structure for t_payment -- ---------------------------- DROP TABLE IF EXISTS `t_payment`; CREATE TABLE `t_payment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of t_payment -- ---------------------------- -- ---------------------------- -- Table structure for t_picture -- ---------------------------- DROP TABLE IF EXISTS `t_picture`; CREATE TABLE `t_picture` ( `id` int(11) NOT NULL, `memo` varchar(255) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `updateTime` datetime DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `updateAdmin_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FKf820vwoskrv05yxj80mlbj226` (`updateAdmin_id`), CONSTRAINT `FKf820vwoskrv05yxj80mlbj226` FOREIGN KEY (`updateAdmin_id`) REFERENCES `t_admin` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of t_picture -- ---------------------------- -- ---------------------------- -- Table structure for t_product -- ---------------------------- DROP TABLE IF EXISTS `t_product`; CREATE TABLE `t_product` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `model` varchar(255) DEFAULT NULL, `note` varchar(255) DEFAULT NULL, `pic_url` varchar(255) DEFAULT NULL, `point` int(11) DEFAULT NULL, `stock` bigint(20) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `createTime` datetime DEFAULT NULL, `inputUser_id` int(11) DEFAULT NULL, `masterPic_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK96wxe8531cmahwxjoen492n2h` (`inputUser_id`), KEY `FKknr9ckik7tms7787w9nkpis8g` (`masterPic_id`), CONSTRAINT `FK96wxe8531cmahwxjoen492n2h` FOREIGN KEY (`inputUser_id`) REFERENCES `t_admin` (`id`), CONSTRAINT `FKknr9ckik7tms7787w9nkpis8g` FOREIGN KEY (`masterPic_id`) REFERENCES `t_picture` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_product -- ---------------------------- INSERT INTO `t_product` VALUES ('1', '2343434', '2013-07-10 15:01:26', '2a-dd-1s', '阿斯顿发楼思考点附近啦静安寺离开对方进来看撒经费等楼库萨克警方流口水京东方连空间撒离开的解放路口近代史路口附近', '/images/l_pro01.gif', '123', '3', '美的不锈钢酸奶机', null, null, null); INSERT INTO `t_product` VALUES ('2', 'sdfsdf', '2013-07-30 15:03:29', 'df', '士大夫', '/images/l_pro02.gif', '3333', '123', '高级餐具', null, null, null); INSERT INTO `t_product` VALUES ('3', 'sdfdsf', '2013-08-14 15:03:57', 'fddf', '进梵蒂冈', '/images/l_pro03.gif', '1000', '222', '红木茶具套装', null, null, null); -- ---------------------------- -- Table structure for t_producttype -- ---------------------------- DROP TABLE IF EXISTS `t_producttype`; CREATE TABLE `t_producttype` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_producttype -- ---------------------------- INSERT INTO `t_producttype` VALUES ('1', '电子电器'); INSERT INTO `t_producttype` VALUES ('2', '床上用品'); INSERT INTO `t_producttype` VALUES ('3', '厨房用具'); INSERT INTO `t_producttype` VALUES ('4', '运动健身'); INSERT INTO `t_producttype` VALUES ('5', '儿童用品'); INSERT INTO `t_producttype` VALUES ('6', '食品保健'); -- ---------------------------- -- Table structure for t_product_t_picture -- ---------------------------- DROP TABLE IF EXISTS `t_product_t_picture`; CREATE TABLE `t_product_t_picture` ( `Product_id` int(11) NOT NULL, `slavePic_id` int(11) NOT NULL, KEY `FKln4qvwbfxoiypk9mgwyedmtl1` (`slavePic_id`), KEY `FKmixcjvbg3qcrp0reaqha7ujk` (`Product_id`), CONSTRAINT `FKln4qvwbfxoiypk9mgwyedmtl1` FOREIGN KEY (`slavePic_id`) REFERENCES `t_picture` (`id`), CONSTRAINT `FKmixcjvbg3qcrp0reaqha7ujk` FOREIGN KEY (`Product_id`) REFERENCES `t_product` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of t_product_t_picture -- ---------------------------- -- ---------------------------- -- Table structure for t_remember -- ---------------------------- DROP TABLE IF EXISTS `t_remember`; CREATE TABLE `t_remember` ( `id` varchar(255) NOT NULL, `addTime` datetime DEFAULT NULL, `user_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK6uc4b3e4xdabyyiamthsb2bqa` (`user_id`), CONSTRAINT `FK6uc4b3e4xdabyyiamthsb2bqa` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of t_remember -- ---------------------------- -- ---------------------------- -- Table structure for t_user -- ---------------------------- DROP TABLE IF EXISTS `t_user`; CREATE TABLE `t_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `account` varchar(255) DEFAULT NULL, `address` varchar(50) DEFAULT NULL, `password` varchar(14) NOT NULL, `phone` varchar(11) DEFAULT NULL, `point` int(11) DEFAULT NULL, `remark` varchar(50) DEFAULT NULL, `spc` varchar(255) DEFAULT NULL, `tel_phone` varchar(11) DEFAULT NULL, `username` varchar(15) DEFAULT NULL, `zip_code` varchar(6) DEFAULT NULL, `balance` bigint(20) DEFAULT NULL, `slat` varchar(255) DEFAULT NULL, `telPhone` varchar(11) DEFAULT NULL, `zipCode` varchar(6) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_user -- ---------------------------- INSERT INTO `t_user` VALUES ('1', 'lkewj123kf', '重庆市南岸区万达4栋29-18', '1234', '13888888888', '1239090', null, null, '02366666666', '周文滔', '400056', null, null, null, null); -- ---------------------------- -- Table structure for t_useraddress -- ---------------------------- DROP TABLE IF EXISTS `t_useraddress`; CREATE TABLE `t_useraddress` ( `id` int(11) NOT NULL AUTO_INCREMENT, `address` varchar(255) DEFAULT NULL, `consignee` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `zipcode` varchar(255) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK_c0hoxg699yrbg42lrq6738j0n` (`user_id`), CONSTRAINT `FK_c0hoxg699yrbg42lrq6738j0n` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`), CONSTRAINT `FKivjwmwb9xngrc6ic856ryrb57` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of t_useraddress -- ----------------------------
CREATE VIEW TZ_ETL_JOB_WORKER AS SELECT J.JOB_WORKER_CD , J.JOB_WORKER_NAME , J.JOB_WORKER_DESC, J.RECORD_STATUS , J.JOB_AGENT_CD , J.LAST_RUN_NO , J.LAST_RUN_STATUS , J.LAST_RUN_START_DT + TZ.UTC_minutes * INTERVAL '1 minute' as LAST_RUN_START_DT, J.LAST_RUN_END_DT + TZ.UTC_minutes * INTERVAL '1 minute' as LAST_RUN_END_DT, J.LAST_RUN_DURATION , J.NEXT_RUN_DT + TZ.UTC_minutes * INTERVAL '1 minute' as NEXT_RUN_DT, J.SCH_CD , J.CREATE_BY , J.CREATE_DT + TZ.UTC_minutes * INTERVAL '1 minute' as CREATE_DT, J.MODIFY_BY , J.MODIFY_DT + TZ.UTC_minutes * INTERVAL '1 minute' as MODIFY_DT, J.LOC_CD , J.ORG_CD , J.GRP_CD FROM ETL_JOB_WORKER J CROSS JOIN ETL_TIMEZONE TZ
declare my_type mytype; cursor getItem is select store1_item multiset union distinct store2_item from item_orders where act_month='january'; begin open getItem; fetch getItem into my_type; if 'trademill' member of my_type then dbms_output.put_line('True'); end if; for index_item in my_type.first..my_type.last loop dbms_output.put_line(my_type(index_item)); end loop; end;
select * from KRMS_TERM_SPEC_T where DESC_TXT like 'The answer%' and nmspc_cd = 'KC-PD'; select * from KRMS_TERM_SPEC_T where term_spec_id = 'KC1016'; select * from KRMS_TERM_T where term_spec_id = 'KC1016'; select * from KRMS_FUNC_T where ; select * from KRMS_FUNC_PARM_T where ; select * from KRMS_CNTXT_VLD_TERM_SPEC_T where term_spec_id in (select term_spec_id from KRMS_TERM_SPEC_T where DESC_TXT like 'The answer%' and nmspc_cd = 'KC-PD'); select * from KRMS_TERM_SPEC_CTGRY_T where term_spec_id in (select term_spec_id from KRMS_TERM_SPEC_T where DESC_TXT like 'The answer%' and nmspc_cd = 'KC-PD'); select * from KRMS_TERM_RSLVR_T where OUTPUT_TERM_SPEC_ID in (select term_spec_id from KRMS_TERM_SPEC_T where DESC_TXT like 'The answer%' and nmspc_cd = 'KC-PD'); select * from krms_term_rslvr_parm_spec_t where term_rslvr_id in (select term_rslvr_id from KRMS_TERM_RSLVR_T where OUTPUT_TERM_SPEC_ID in (select term_spec_id from KRMS_TERM_SPEC_T where DESC_TXT like 'The answer%' and nmspc_cd = 'KC-PD')); SELECT * FROM krms_typ_t where typ_id = (select typ_id from KRMS_TERM_RSLVR_T where OUTPUT_TERM_SPEC_ID in (select term_spec_id from KRMS_TERM_SPEC_T where DESC_TXT like 'The answer%' and nmspc_cd = 'KC-PD')); select * from krms_rule_t where nm like 'FCOI%'; select * from krms_rule_attr_t where rule_id = (select rule_id from krms_rule_t where nm like 'FCOI%'); select * from krms_rule_t where nm like 'Bunny%'; select * from krms_rule_attr_t where rule_id = (select rule_id from krms_rule_t where nm like 'Bunny%'); select * from krms_term_t where term_spec_id = 'KC1016'; select * from krms_term_t where desc_txt = 'FCOI Attachment Term'; select * from krms_term_parm_t where term_id = (select term_id from krms_term_t where desc_txt = 'FCOI Attachment Term');
/* ################################################################################ Migration script to update SNP_TYPE values Designed for execution with Flyway database migrations tool; this should be automatically run to completely generate the schema that is out-of-the-box compatibile with the GOCI model (see https://github.com/tburdett/goci/tree/2.x-dev/goci-core/goci-model for more). author: Emma Hastings date: April 15th 2015 version: 1.9.9.036 (pre 2.0) ################################################################################ -------------------------------------------------------- -- Update SNP_TYPE of associations -------------------------------------------------------- */ -- KNOWN UPDATE ASSOCIATION SET SNP_TYPE = 'known' WHERE SNP_TYPE = 'know'; UPDATE ASSOCIATION SET SNP_TYPE = 'known' WHERE SNP_TYPE = 'Known'; -- NOVEL UPDATE ASSOCIATION SET SNP_TYPE = 'novel' WHERE SNP_TYPE like 'Novel%';
/* APEX Performance - PAGE 110:23 -------------------------------------------------------------------------------------------------- */ select null lnk ,to_char(view_date) dd ,round(avg(elapsed_time),2) "Avg time" ,round(avg(avg(elapsed_time)) over (order by to_char(view_date,'yymmdd') desc rows between 3 preceding and 3 following),2) "6 day moving avg" from adde_activity_log where 1=1 and view_date > coalesce(to_date(:P23_SINCE),sysdate-7) and application_id = coalesce(nullif(to_number(:P23_APP_ID),0), application_id) and page_id = coalesce(to_number(:P23_PAGE_ID), page_id) and apex_user != 'nobody' and ((application_id = 105 and page_id in (50,70) and rows_queried > 0) or not (application_id = 105 and pagE_id in (50,70))) group by to_char(view_date), to_char(view_date,'yymmdd') order by to_char(view_date,'yymmdd') /* I’ve been ignoring records with zero rows queried in an attempt to ignore the events from metadata logs (app process APX_VISIT) */ select to_char(round(avg(elapsed_time),1),'990.0') time, count(*) cnt, trunc(view_date,'hh24') view_date from apeX_workspace_activity_log-- adde_activity_log where application_id = 105 and page_id = 50 --and apeX_user = 'WESLEYS' --and elapsed_time > 0.2 and rows_queried > 0 and view_date > trunc(sysdate) --- - 1/24 group by trunc(view_date,'hh24') order by view_date desc select * from apx_activity_log where application_id = 105 and view_date > trunc(sysdate) ; /* apex_workspace_activity_log --------------------------- Modified from 110:23 to include hours (and live table) */ select null lnk ,to_char(view_date,'dd hh24') dd ,round(avg(elapsed_time),2) "Avg time" --,round(avg(avg(elapsed_time)) over (order by to_char(trunc(view_date,'dd hh24')) desc rows between 3 preceding and 3 following),2) "6 day moving avg" from apex_workspace_activity_log where 1=1 and view_date > trunc(sysdate) and application_id = 105 and page_id = 50 and apex_user != 'nobody' and ((application_id = 105 and page_id in (50,70) and rows_queried > 0) or not (application_id = 105 and pagE_id in (50,70))) group by to_char(view_date,'dd hh24')--, to_char(trunc(view_date),'dd hh24') order by 2 ;
CREATE DATABASE IF NOT EXISTS encuestas; use encuestas; CREATE TABLE encuesta( id_encuesta int auto_increment, sexo char(1), provincia varchar(50), salario int, edad int, CONSTRAINT pk_id_encuesta PRIMARY KEY(id_encuesta) ); use encuestas; create TABLE preguntas( id_preguntas int auto_increment, descripcion varchar(500) not NULL, tipoPregunta varchar(20), id_encuesta int not null, CONSTRAINT fk_id_encuesta FOREIGN KEY(id_encuesta) REFERENCES encuesta(id_encuesta) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT pk_id_preguntas PRIMARY KEY(id_preguntas) ); use encuestas; CREATE TABLE respuestas( id_respuestas int auto_increment, descripcion VARCHAR(250) not NULL, id_preguntas int not null, CONSTRAINT fk_id_preguntas FOREIGN KEY (id_preguntas) REFERENCES preguntas(id_preguntas) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT pk_id_respuestas PRIMARY KEY (id_respuestas) ); use encuestas; INSERT INTO encuesta(sexo,provincia,salario,edad) VALUES ("m","Panama",1000,18), ("f","Chiriqui",800,19), ("m","Colon",850,20), ("f","Cocle",900,21), ("m","Herrera",1500,22) use encuestas; INSERT INTO preguntas(descripcion,tipoPregunta,id_encuesta) VALUES ("pregunta1","",1), ("pregunta2","unica",1), ("pregunta3","unica",2), ("pregunta4","unica",2), ("pregunta5","unica",3), ("pregunta6","multiple",3), ("pregunta7","multiple",4), ("pregunta8","multiple",4), ("pregunta9","multiple",5), ("pregunta10","multiple",5) use encuestas; INSERT INTO respuestas(descripcion,id_preguntas) VALUES ("respuesta1",1), ("respuesta2",1), ("respuesta3",2), ("respuesta4",2), ("respuesta5",3), ("respuesta6",3), ("respuesta7",4), ("respuesta8",4), ("respuesta9",5), ("respuesta10",5), ("respuesta11",6), ("respuesta12",6), ("respuesta13",7), ("respuesta14",7), ("respuesta15",8), ("respuesta16",8), ("respuesta17",9), ("respuesta18",9), ("respuesta19",10), ("respuesta20",10) -- use encuestas; -- INSERT INTO persona(nombre,sexo,provincia,salario,edad,id_encuesta) VALUES -- ("usuario1",'m',"Panama",1000,25,1), -- ("usuario2",'f',"Chiriqui",2000,18,1), -- ("usuario3",'m',"Herrera",900,30,2), -- ("usuario4",'f',"Cocle",3000,35,2), -- ("usuario5",'m',"Veraguas",800,20,3), -- ("usuario6",'f',"Colon",800,20,3), -- ("usuario7",'m',"Bocas Del Toro",800,20,4), -- ("usuario8",'f',"Darien",800,20,4), -- ("usuario9",'m',"PanamaOeste",800,20,5), -- ("usuario10",'f',"PanamaOeste",800,20,5) --QUERY DE EJEMPLO use encuestas; SELECT p.nombre AS "usuario",p.sexo AS "Genero",en.nombre AS 'Encuesta' FROM preguntas pr INNER JOIN respuestas resp ON pr.id_preguntas= resp.id_preguntas INNER JOIN encuesta en ON pr.id_encuesta= en.id_encuesta INNER JOIN persona p ON en.id_encuesta= p.id_encuesta WHERE en.id_encuesta = 1 group by p.nombre; use encuestas; select count(p.sexo) from persona p INNER JOIN encuesta e ON p.id_encuesta= e.id_encuesta where p.sexo="m" and e.id_encuesta= 1 use encuestas; select count(p.id_persona) from persona p INNER JOIN encuesta e ON p.id_encuesta= e.id_encuesta where e.id_encuesta= 1 --QUERY PARA LAS PREGUNTAS use encuestas; SELECT pr.descripcion As 'PREGUNTA', resp.descripcion AS 'RESPUESTA',pr.tipoPregunta AS 'tipo' FROM preguntas pr INNER JOIN respuestas resp ON pr.id_preguntas= resp.id_preguntas ORDER BY rand() limit 10 use encuestas; SELECT descripcion from preguntas ORDER BY rand() limit 10 -- use encuestas; -- select * from preguntas; -- SELECT * from respuestas; -- use encuestas; -- SELECT resp.descripcion As 'respuesta',pr.descripcion As 'pregunta' from respuestas resp, preguntas pr -- WHERE resp.id_preguntas= pr.id_preguntas -- use encuestas; -- SELECT * FROM respuestas where id_preguntas= 1
DROP TABLE IF EXISTS shandang_fanli; CREATE TABLE IF NOT EXISTS shandang_fanli ( username VARCHAR(128) NOT NULL, recharge_id VARCHAR(128) NOT NULL, INDEX(username) ) CHARACTER SET = utf8 ENGINE = InnoDB; DELIMITER $$ DROP PROCEDURE IF EXISTS load_shandang_fanli$$ CREATE PROCEDURE load_shandang_fanli () BEGIN SELECT username, recharge_id FROM shandang_fanli; END$$ DROP PROCEDURE IF EXISTS delete_shandang_fanli$$ CREATE PROCEDURE delete_shandang_fanli (IN param1 VARCHAR(128)) BEGIN DELETE FROM shandang_fanli WHERE username = param1; END$$ DELIMITER ;
CREATE OR REPLACE VIEW favoritedocument AS SELECT DISTINCT "document", "researchEntity" FROM authorship a JOIN document d ON a.document = d.id WHERE a.favorite = TRUE
/*$tempViewSQL*/ SELECT TOP(CONVERT(INT, /*topRow*/)) * FROM ( SELECT A.GUARANTEE_OBJECT, --A.保証人名 A.GUARANTOR_NAME, --A.保証人コード A.GUARANTOR_CODE, --コード名称 B.CODE_NAME AS GUARANTEE_TYPE_NAME, --D.取引先名 D.CUSTOMER_NAME, --C.顧客_取引先コード C.CUSTOMER_CODE, --D.xxx取引先コード D.DYNASS_CUSTOMER_CODE, --A.契約番号 A.CONTRACT_NO, --E.案件名称 E.CASES_NAME, --C.代表物件名 C.REPRESENTATION_SUPPLIES_NAME AS SUPPLIES_NAME, --C.取得総額 C.OBTAIN_SUM_TOTAL, --C.回収総額 C.WITHDRAW_SUM_TOTAL, --I.コード名称 I.CODE_NAME AS GUARANTEE_OBJECT_NAME, --元本残 CASE --保証対象=「1:元本」 且つ 元本残 ≠ NULL WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_PRINCIPAL --保証対象=「2:リース料」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) THEN NULL END AS PRINCIPAL_REMAINDER, --与信残 CASE --保証対象=「1:元本」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) THEN NULL --保証対象=「2:リース料」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_LEASE END AS TOTAL_SUM, --保証割合 A.GUARANTEE_PERCENTAGE, --保証額 CASE --保証対象=「1:元本」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_PRINCIPAL * A.GUARANTEE_PERCENTAGE /100 --保証対象=「2:リース料」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_LEASE * A.GUARANTEE_PERCENTAGE /100 END AS GUARANTEE_AMOUNT, --C.担当者 C.CHARGER_NAME, --通貨表示名 J.CURRENCY_NAME ,C.RATE_INSTANT ,K.BRANCH_NAME ,C.CHARGE_AGENCY --C.取得総額(税抜) ,C.OBTAIN_SUM_TOTAL_NO_VAT --C.回収総額(税抜) ,C.WITHDRAW_SUM_TOTAL_NO_VAT --与信残高(元本ベース、頭金含まず)(税抜) ,CASE --保証対象=「1:元本」 且つ 元本残 ≠ NULL WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_PRINCIPAL_NO_VAT --保証対象=「2:リース料」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) THEN NULL END AS PRINCIPAL_REMAINDER_NO_VAT --リース料残高(頭金含まず)(税抜) ,CASE --保証対象=「1:元本」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) THEN NULL --保証対象=「2:リース料」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_LEASE_NO_VAT END AS TOTAL_SUM_NO_VAT --保証額(税抜) ,CASE --保証対象=「1:元本」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_PRINCIPAL_NO_VAT * A.GUARANTEE_PERCENTAGE /100 --保証対象=「2:リース料」の場合 WHEN A.GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) THEN V.CREDIT_BALANCE_LEASE_NO_VAT * A.GUARANTEE_PERCENTAGE /100 END AS GUARANTEE_AMOUNT_NO_VAT FROM --契約保証情報 CONTRACT_GUARANTEE_INFO A --契約情報 INNER JOIN CONTRACT_INFO C --契約保証情報.契約番号 = 契約情報.契約番号 ON A.CONTRACT_NO = C.CONTRACT_NO --契約情報.取消状況 <> 「2:取消済」 AND C.CANCAL_STATE <> CAST(/*cancel*/ AS CHAR(1)) --契約情報.契約状況 >= 「10:決裁済」 AND C.CONTRACT_CONDITION >= CAST(/*already*/ AS CHAR(2)) LEFT JOIN BRANCH_MST K ON C.CHARGE_AGENCY = K.BRANCH_CODE AND K.COUNTRY_ID = /*dto.countryId*/ --取引先マスタ INNER JOIN CUSTOMER_MST D --契約情報.顧客_取引先コード = 取引先マスタ.取引先コード ON C.CUSTOMER_CODE = D.CUSTOMER_CODE --案件属性マスタ INNER JOIN CASE_MST E --契約情報.案件番号 = 案件属性マスタ.案件番号 ON C.CASE_NO = E.CASE_NO --コードマスタ(B) INNER JOIN CODE_MASTER B --契約保証情報.保証形態 = コードマスタ.コードID ON A.GUARANTEE_TYPE = B.CODE_ID --コードマスタ.コード種類 = 「076:保証形態」 AND B.CODE_TYPE = CAST(/*guaTypeKbn*/ AS CHAR(3)) --コードマスタ.国ID = パラメータ.国ID AND B.COUNTRY_ID = /*countryId*/ --コードマスタ(I) INNER JOIN CODE_MASTER I --契約保証情報.保証対象 = コードマスタ.コードID ON A.GUARANTEE_OBJECT = I.CODE_ID --コードマスタ.コード種類 = 「092:保証対象区分」 AND I.CODE_TYPE = CAST(/*guaObjectKbn*/ AS CHAR(3)) --コードマスタ.国ID = パラメータ.国ID AND I.COUNTRY_ID = /*countryId*/ --与信残高明細VIEW LEFT OUTER JOIN CREDIT_BALANCE_DETAIL_VIEW V ON --契約情報.契約番号 = 与信残高明細VIEW.契約番号 C.CONTRACT_NO = V.CONTRACT_NO AND (V.CREDIT_BALANCE_LEASE>0 OR V.CREDIT_BALANCE_LEASE>0) LEFT JOIN CURRENCY_MST J ON --契約情報.取引通貨 = 通貨マスタ.通貨ID(+) AND C.KEY_CURRENCY_ID=J.CURRENCY_ID WHERE 1=1 /*IF (dto.guarantorCode) != NULL*/ AND A.GUARANTOR_CODE = /*dto.guarantorCode*/ /*END*/ /*IF (dto.guaranteeType) != NULL*/ AND A.GUARANTEE_TYPE = CAST(/*dto.guaranteeType*/ AS CHAR(1)) /*END*/ /*IF dto.branch != null*/ -- 契約情報(C).拠点コード = 画面.拠点コード AND C.CHARGE_AGENCY = CAST(/*dto.branch*/ AS CHAR(8)) /*END*/ ) AS TEMP WHERE ( --保証対象=元本、且つ、元本残>0 GUARANTEE_OBJECT = CAST(/*guaObjPrincipal*/ AS CHAR(1)) AND PRINCIPAL_REMAINDER > 0 ) OR ( --保証対象=リース料、且つ、与信残高>0 GUARANTEE_OBJECT = CAST(/*guaObjInterest*/ AS CHAR(1)) AND TOTAL_SUM > 0 ) ORDER BY --案件情報(E.案件名称) CASES_NAME, --A.保証人コード(保証先コード) GUARANTOR_CODE, --B.コード名称(保証内容) GUARANTEE_TYPE_NAME, --A.契約番号 CONTRACT_NO
insert into users( name, surname, patronymic, username, email, password,role_id) values ( 'Қуаныш', 'Физалин', 'Физулинович', 'admin', 'admin@gmail.com', '$2a$10$9uvPhc4vidoR.Zb8kPQ3g.zZQZhJfq9mOETHwBtzdW3ERD.t0sbSi',1); commit; insert into users( name, surname, patronymic, username, email, password, role_id) values ( 'Ермек', 'Әуелбек', 'Мұратұлы', 'coder2', 'coder2@gmail.com', '$2a$10$9uvPhc4vidoR.Zb8kPQ3g.zZQZhJfq9mOETHwBtzdW3ERD.t0sbSi',2); commit;
create table book_shelf( book_shelf_id serial primary key, cart_id integer, user_id integer, book_id integer )
/* to replace the whole view, drop it before * creating the new view. Run the script * removing the regular expression for '--'. * Otherwise, it will try to create a new view * or update an old view without dropping. */ --drop view if exists premodeling.jocojimsjailbooking_hashed_view; drop view if exists clean.jocojimsjailbooking_hashed_view; /* Create view to present cleaned data. * This view makes the following changes: * * - Converts all string columns to upper * - Converts all missing string values to NULL rather * than empty strings or special null values * - Creates a new variable for the KS statute section * to which a charge refers * - Removes erroneous 'NC' values from severity_lvl * - Adds crime_class column indicating whether an * offense is a felony, misdemeanor, or infraction * - Adds a column indicating whether an offense is a * drug offense * - Adds severity_only that gives severity level * regardless of drug offense status * - Creates a column indicating whether a trial * occurred * - Creates a column indicating whether the * defendant was found or plead guilty * - Created a coarse_finding column that * divides findings into fewer categories * - Drops the geom column, which is always null * * */ create or replace view clean.jocojimsjailbooking_hashed_view as ( select mni_no as mni_no, trim(both ' ' from case_no) as case_no, substring(case_no, '[JDCVR]+') as case_type, booking_no as booking_no, upper(arresting_agency) as arresting_agency, case when arresting_agency similar to '%(CAMPUS|SCHOOL)%' then 'SCHOOL' when arresting_agency similar to '%(SHERIFF)%' then 'COUNTY SHERIFF' when arresting_agency similar to '(KANSAS)%' then 'STATE' when arresting_agency similar to '(OTHER)%' then 'OTHER AGENCY' when arresting_agency similar to '%(P.D.)' then 'CITY' when arresting_agency similar to '%(PARK)%' then 'COUNTY PARK DISTRICT' end as arresting_agency_type, booking_date as booking_date, release_date as release_date, bail_type as bail_type, bail_amt as bail_amt, case when bail_amt is not null then true when bail_amt is null then false end as bailed_out from ( select distinct * from public.jocojimsjailbooking) as booking); /* drop the existing table and replace with a table * created from the view. */ drop table if exists clean.jocojimsjailbooking_hashed; create table clean.jocojimsjailbooking_hashed as select * from clean.jocojimsjailbooking_hashed_view;
-- phpMyAdmin SQL Dump -- version 4.4.15.5 -- http://www.phpmyadmin.net -- -- Host: csse-mysql2 -- Generation Time: Sep 23, 2018 at 09:43 AM -- Server version: 5.6.40 -- PHP Version: 5.4.16 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Database: `seng302-2018-team200-test` -- -- -------------------------------------------------------- -- -- Table structure for table `affected_organs` -- DROP TABLE IF EXISTS `affected_organs`; CREATE TABLE IF NOT EXISTS `affected_organs` ( `Id` int(11) NOT NULL, `ProcedureId` int(11) NOT NULL, `Organ` varchar(30) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `conditions` -- DROP TABLE IF EXISTS `conditions`; CREATE TABLE IF NOT EXISTS `conditions` ( `Id` int(11) NOT NULL, `ProfileId` int(11) NOT NULL, `Description` varchar(100) DEFAULT NULL, `DiagnosisDate` datetime DEFAULT NULL, `Chronic` BOOLEAN DEFAULT NULL, `Current` BOOLEAN DEFAULT NULL, `Past` BOOLEAN DEFAULT NULL, `CuredDate` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `countries` -- DROP TABLE IF EXISTS `countries`; CREATE TABLE IF NOT EXISTS `countries` ( `Id` int(11) NOT NULL, `Name` varchar(50) DEFAULT NULL, `Valid` BOOLEAN DEFAULT TRUE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `drugs` -- DROP TABLE IF EXISTS `drugs`; CREATE TABLE IF NOT EXISTS `drugs` ( `Id` int(11) NOT NULL, `ProfileId` int(11) NOT NULL, `Drug` varchar(50) DEFAULT NULL, `Current` BOOLEAN DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `history` -- DROP TABLE IF EXISTS `history`; CREATE TABLE IF NOT EXISTS `history` ( `Id` int(11) NOT NULL, `EntityType` varchar(30) DEFAULT NULL, `EntityId` int(11) NOT NULL, `Action` varchar(50) DEFAULT NULL, `Data` varchar(100) DEFAULT NULL, `DataIndex` int(11) DEFAULT NULL, `Timestamp` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `hla_type` -- DROP TABLE IF EXISTS `hla_type`; CREATE TABLE IF NOT EXISTS `hla_type` ( `ProfileId` int(11) NOT NULL, `AlphaValue` varchar(20), `NumericValue` int(11) NOT NULL, `GroupX` BOOLEAN NOT NULL, `GroupY` BOOLEAN NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `hospitals` -- DROP TABLE IF EXISTS `hospitals`; CREATE TABLE IF NOT EXISTS `hospitals` ( `Id` INT(11), `Name` VARCHAR(50) UNIQUE DEFAULT NULL, `Address` VARCHAR(100) DEFAULT NULL, `Latitude` DOUBLE DEFAULT NULL, `Longitude` DOUBLE DEFAULT NULL, `Bone` BOOLEAN DEFAULT FALSE, `BoneMarrow` BOOLEAN DEFAULT FALSE, `ConnectiveTissue` BOOLEAN DEFAULT FALSE, `Cornea` BOOLEAN DEFAULT FALSE, `Heart` BOOLEAN DEFAULT FALSE, `Intestine` BOOLEAN DEFAULT FALSE, `Kidney` BOOLEAN DEFAULT FALSE, `Liver` BOOLEAN DEFAULT FALSE, `Lung` BOOLEAN DEFAULT FALSE, `MiddleEar` BOOLEAN DEFAULT FALSE, `Pancreas` BOOLEAN DEFAULT FALSE, `Skin` BOOLEAN DEFAULT FALSE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `locale` -- DROP TABLE IF EXISTS `locale`; CREATE TABLE IF NOT EXISTS `locale` ( `LocaleId` int(11) NOT NULL, `UserId` int(11) DEFAULT NULL, `ProfileId` int(11) DEFAULT NULL, `DateTimeFormat` varchar(50) DEFAULT NULL, `NumberFormat` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `organs` -- DROP TABLE IF EXISTS `organs`; CREATE TABLE IF NOT EXISTS `organs` ( `Id` int(11) NOT NULL, `ProfileId` int(11) NOT NULL, `Organ` varchar(30) DEFAULT NULL, `Donated` BOOLEAN DEFAULT NULL, `ToDonate` BOOLEAN DEFAULT NULL, `Required` BOOLEAN DEFAULT NULL, `Received` BOOLEAN DEFAULT NULL, `Expired` BOOLEAN DEFAULT NULL, `UserId` int(11) DEFAULT NULL, `ExpiryDate` datetime DEFAULT NULL, `Note` varchar(200) DEFAULT NULL, `DateRegistered` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `procedures` -- DROP TABLE IF EXISTS `procedures`; CREATE TABLE IF NOT EXISTS `procedures` ( `Id` int(11) NOT NULL, `ProfileId` int(11) NOT NULL, `Summary` varchar(100) DEFAULT NULL, `Description` varchar(200) NOT NULL, `ProcedureDate` datetime DEFAULT NULL, `Pending` BOOLEAN DEFAULT NULL, `Previous` BOOLEAN DEFAULT NULL, `Hospital` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `profiles` -- DROP TABLE IF EXISTS `profiles`; CREATE TABLE IF NOT EXISTS `profiles` ( `ProfileId` int(11) DEFAULT NULL, `NHI` varchar(20) UNIQUE DEFAULT NULL, `Username` varchar(50) UNIQUE DEFAULT NULL, `Password` varchar(100) DEFAULT NULL, `IsDonor` tinyint(1) DEFAULT '0', `IsReceiver` tinyint(1) DEFAULT '0', `GivenNames` varchar(50) DEFAULT NULL, `Lastnames` varchar(50) DEFAULT NULL, `Dob` datetime DEFAULT NULL, `Dod` datetime DEFAULT NULL, `Gender` varchar(30) DEFAULT NULL, `Height` double DEFAULT NULL, `Weight` double DEFAULT NULL, `BloodType` varchar(5) DEFAULT NULL, `IsSmoker` tinyint(1) DEFAULT '0', `AlcoholConsumption` varchar(50) DEFAULT NULL, `BloodPressureSystolic` int(11) DEFAULT NULL, `BloodPressureDiastolic` int(11) DEFAULT NULL, `Address` varchar(50) DEFAULT NULL, `StreetNo` varchar(10) DEFAULT NULL, `StreetName` varchar(50) DEFAULT NULL, `Neighbourhood` varchar(50) DEFAULT NULL, `City` varchar(50) DEFAULT NULL, `ZipCode` int(11) DEFAULT NULL, `Region` varchar(30) DEFAULT NULL, `Country` varchar(50) DEFAULT NULL, `BirthCountry` varchar(50) DEFAULT NULL, `CountryOfDeath` varchar(30) DEFAULT NULL, `CityOfDeath` varchar(30) DEFAULT NULL, `RegionOfDeath` varchar(30) DEFAULT NULL, `Phone` varchar(30) DEFAULT NULL, `Email` varchar(50) DEFAULT NULL, `Created` datetime DEFAULT CURRENT_TIMESTAMP, `LastUpdated` datetime DEFAULT CURRENT_TIMESTAMP, `PreferredName` varchar(50) DEFAULT NULL, `PreferredGender` varchar(30) DEFAULT NULL, `ImageName` varchar(50) DEFAULT NULL, `LastBloodDonation` datetime DEFAULT CURRENT_TIMESTAMP, `BloodDonationPoints` int(11) DEFAULT NULL, `Token` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `UserId` int(11) NOT NULL, `Username` varchar(50) UNIQUE DEFAULT NULL, `Password` varchar(100) DEFAULT NULL, `Name` varchar(100) DEFAULT NULL, `UserType` varchar(30) DEFAULT NULL, `Address` varchar(50) DEFAULT NULL, `Region` varchar(30) DEFAULT NULL, `Country` varchar(50) DEFAULT NULL, `Created` datetime DEFAULT CURRENT_TIMESTAMP, `LastUpdated` datetime DEFAULT CURRENT_TIMESTAMP, `IsDefault` BOOLEAN DEFAULT FALSE, `ImageName` varchar(50) DEFAULT NULL, `Token` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Indexes for dumped tables -- -- -- Indexes for table `affected_organs` -- ALTER TABLE `affected_organs` ADD PRIMARY KEY (`Id`), ADD KEY `ProcedureId` (`ProcedureId`); -- -- Indexes for table `conditions` -- ALTER TABLE `conditions` ADD PRIMARY KEY (`Id`), ADD KEY `ProfileId` (`ProfileId`); -- -- Indexes for table `countries` -- ALTER TABLE `countries` ADD PRIMARY KEY (`Id`); -- -- Indexes for table `drugs` -- ALTER TABLE `drugs` ADD PRIMARY KEY (`Id`), ADD KEY `ProfileId` (`ProfileId`); -- -- Indexes for table `history` -- ALTER TABLE `history` ADD PRIMARY KEY (`Id`), ADD KEY `EntityId` (`EntityId`); -- -- Indexes for table `hla_type` -- ALTER TABLE `hla_type` ADD KEY `ProfileId` (`ProfileId`); -- -- Indexes for table `hospitals` -- ALTER TABLE `hospitals` ADD PRIMARY KEY (`Id`), ADD UNIQUE KEY `Id` (`Id`); -- -- Indexes for table `locale` -- ALTER TABLE `locale` ADD PRIMARY KEY (`LocaleId`); -- -- Indexes for table `organs` -- ALTER TABLE `organs` ADD PRIMARY KEY (`Id`), ADD KEY `ProfileId` (`ProfileId`); -- -- Indexes for table `procedures` -- ALTER TABLE `procedures` ADD PRIMARY KEY (`Id`), ADD KEY `ProfileId` (`ProfileId`), ADD KEY `Hospitals` (`Hospital`); -- -- Indexes for table `profiles` -- ALTER TABLE `profiles` ADD PRIMARY KEY (`ProfileId`), ADD KEY (`ProfileId`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`UserId`), ADD KEY (`UserId`); -- -- AUTO_INCREMENT for table `affected_organs` -- ALTER TABLE `affected_organs` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `conditions` -- ALTER TABLE `conditions` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `countries` -- ALTER TABLE `countries` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `drugs` -- ALTER TABLE `drugs` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `history` -- ALTER TABLE `history` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `hospitals` -- ALTER TABLE `hospitals` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `locale` -- ALTER TABLE `locale` MODIFY `LocaleId` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `organs` -- ALTER TABLE `organs` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `procedures` -- ALTER TABLE `procedures` MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `profiles` -- ALTER TABLE `profiles` MODIFY `ProfileId` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `UserId` int(11) NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `affected_organs` -- ALTER TABLE `affected_organs` ADD CONSTRAINT `affected_organs_ibfk_1` FOREIGN KEY (`ProcedureId`) REFERENCES `procedures` (`Id`) ON DELETE CASCADE; -- -- Constraints for table `conditions` -- ALTER TABLE `conditions` ADD CONSTRAINT `conditions_ibfk_1` FOREIGN KEY (`ProfileId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE; -- -- Constraints for table `drugs` -- ALTER TABLE `drugs` ADD CONSTRAINT `drugs_ibfk_1` FOREIGN KEY (`ProfileId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE; -- -- Constraints for table `history` -- ALTER TABLE `history` ADD CONSTRAINT `history_ibfk_1` FOREIGN KEY (`EntityId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE, ADD CONSTRAINT `history_ibfk_2` FOREIGN KEY (`EntityId`) REFERENCES `users` (`UserId`) ON DELETE CASCADE; -- -- Constraints for table `hla_type` -- ALTER TABLE `hla_type` ADD CONSTRAINT `hla_type_profile` FOREIGN KEY (`ProfileId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE; -- -- Constraints for table `locale` -- ALTER TABLE `locale` ADD CONSTRAINT `locale_ibfk_1` FOREIGN KEY (`ProfileId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE, ADD CONSTRAINT `locale_ibfk_2` FOREIGN KEY (`UserId`) REFERENCES `users` (`UserId`) ON DELETE CASCADE; -- -- Constraints for table `organs` -- ALTER TABLE `organs` ADD CONSTRAINT `organs_ibfk_1` FOREIGN KEY (`ProfileId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE, ADD CONSTRAINT `organs_ibfk_2` FOREIGN KEY (`UserId`) REFERENCES `users` (`UserId`) ON DELETE CASCADE; -- -- Constraints for table `procedures` -- ALTER TABLE `procedures` ADD CONSTRAINT `procedures_ibfk_1` FOREIGN KEY (`ProfileId`) REFERENCES `profiles` (`ProfileId`) ON DELETE CASCADE, ADD CONSTRAINT `procedures_ibfk_2` FOREIGN KEY (`Hospital`) REFERENCES `hospitals` (`Id`) ON DELETE SET NULL; INSERT INTO `countries` (`Id`, `Name`, `Valid`) VALUES (1, 'NZ', 1), (2, 'AF', 1), (3, 'AL', 1), (4, 'DZ', 1), (5, 'AD', 1), (6, 'AO', 1), (7, 'AG', 1), (8, 'AR', 1), (9, 'AM', 1), (10, 'AW', 1), (11, 'AU', 1), (12, 'AT', 1), (13, 'AZ', 1), (14, 'BS', 1), (15, 'BH', 1), (16, 'BD', 1), (17, 'BB', 1), (18, 'BY', 1), (19, 'BE', 1), (20, 'BZ', 1), (21, 'BJ', 1), (22, 'BM', 1), (23, 'BT', 1), (24, 'BO', 1), (25, 'BA', 1), (26, 'BW', 1), (27, 'BR', 1), (28, 'BN', 1), (29, 'BG', 1), (30, 'BF', 1), (31, 'BI', 1), (32, 'KH', 1), (33, 'CM', 1), (34, 'CA', 1), (35, 'CV', 1), (36, 'CF', 1), (37, 'TD', 1), (38, 'CL', 1), (39, 'CN', 1), (40, 'CO', 1), (41, 'KM', 1), (42, 'CG', 1), (43, 'CD', 1), (44, 'CK', 1), (45, 'CR', 1), (46, 'CI', 1), (47, 'HR', 1), (48, 'CU', 1), (49, 'CY', 1), (50, 'CZ', 1), (51, 'DK', 1), (52, 'DJ', 1), (53, 'DM', 1), (54, 'DO', 1), (55, 'EC', 1), (56, 'EG', 1), (57, 'SV', 1), (58, 'GQ', 1), (59, 'ER', 1), (60, 'EE', 1), (61, 'ET', 1), (62, 'FJ', 1), (63, 'FI', 1), (64, 'FR', 1), (65, 'GA', 1), (66, 'GM', 1), (67, 'GE', 1), (68, 'DE', 1), (69, 'GH', 1), (70, 'GR', 1), (71, 'GD', 1), (72, 'GT', 1), (73, 'GN', 1), (74, 'GW', 1), (75, 'GY', 1), (76, 'HT', 1), (77, 'VA', 1), (78, 'HN', 1), (79, 'HU', 1), (80, 'IS', 1), (81, 'IN', 1), (82, 'ID', 1), (83, 'IR', 1), (84, 'IQ', 1), (85, 'IE', 1), (86, 'IL', 1), (87, 'IT', 1), (88, 'JM', 1), (89, 'JP', 1), (90, 'JO', 1), (91, 'KZ', 1), (92, 'KE', 1), (93, 'KI', 1), (94, 'KP', 1), (95, 'KR', 1), (96, 'KW', 1), (97, 'KG', 1), (98, 'LA', 1), (99, 'LV', 1), (100, 'LB', 1), (101, 'LS', 1), (102, 'LR', 1), (103, 'LY', 1), (104, 'LI', 1), (105, 'LT', 1), (106, 'LU', 1), (107, 'MK', 1), (108, 'MG', 1), (109, 'MW', 1), (110, 'MY', 1), (111, 'MV', 1), (112, 'ML', 1), (113, 'MT', 1), (114, 'MH', 1), (115, 'MQ', 1), (116, 'MR', 1), (117, 'MU', 1), (118, 'MX', 1), (119, 'FM', 1), (120, 'MD', 1), (121, 'MC', 1), (122, 'MN', 1), (123, 'ME', 1), (124, 'MA', 1), (125, 'MZ', 1), (126, 'MM', 1), (127, 'NA', 1), (128, 'NR', 1), (129, 'NP', 1), (130, 'NL', 1), (131, 'NI', 1), (132, 'NE', 1), (133, 'NG', 1), (134, 'NU', 1), (135, 'NO', 1), (136, 'OM', 1), (137, 'PK', 1), (138, 'PW', 1), (139, 'PS', 1), (140, 'PA', 1), (141, 'PG', 1), (142, 'PY', 1), (143, 'PE', 1), (144, 'PH', 1), (145, 'PL', 1), (146, 'PT', 1), (147, 'QA', 1), (148, 'RO', 1), (149, 'RU', 1), (150, 'RW', 1), (151, 'KN', 1), (152, 'LC', 1), (153, 'VC', 1), (154, 'WS', 1), (155, 'SM', 1), (156, 'ST', 1), (157, 'SA', 1), (158, 'SN', 1), (159, 'CS', 1), (160, 'SC', 1), (161, 'SL', 1), (162, 'SG', 1), (163, 'SK', 1), (164, 'SI', 1), (165, 'SB', 1), (166, 'SO', 1), (167, 'ZA', 1), (168, 'SS', 1), (169, 'ES', 1), (170, 'LK', 1), (171, 'SD', 1), (172, 'SR', 1), (173, 'SZ', 1), (174, 'SE', 1), (175, 'CH', 1), (176, 'SY', 1), (177, 'TW', 1), (178, 'TJ', 1), (179, 'TZ', 1), (180, 'TH', 1), (181, 'TL', 1), (182, 'TG', 1), (183, 'TO', 1), (184, 'TT', 1), (185, 'TN', 1), (186, 'TR', 1), (187, 'TM', 1), (188, 'TV', 1), (189, 'UG', 1), (190, 'UA', 1), (191, 'AE', 1), (192, 'GB', 1), (193, 'US', 1), (194, 'UY', 1), (195, 'UZ', 1), (196, 'VU', 1), (197, 'VE', 1), (198, 'VN', 1), (199, 'YE', 1), (200, 'ZM', 1), (201, 'ZW', 1);
CREATE TABLE `sessions` ( `session_id` varchar(32) NOT NULL DEFAULT '', `username` varchar(31) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `timezone` varchar(31) NOT NULL DEFAULT '', `utc_offset` tinyint(2) NOT NULL, PRIMARY KEY (`session_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
# Write your MySQL query statement below ## A quiet student is the one who took at least one exam and did not score the high or the low score. ## Get the list of student_id who score the high or the low score with rank() ## select student_id from Student where id not in the list with score_rank as (select exam_id, student_id, student_name, rank() over (partition by exam_id order by score desc) as high, rank() over (partition by exam_id order by score asc) as low from Exam join Student using (student_id)) select distinct student_id, student_name from score_rank where student_id not in (select distinct student_id from score_rank where high = 1 or low = 1) order by 1
-- MySQL dump 10.13 Distrib 8.0.23, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: newlibrary -- ------------------------------------------------------ -- Server version 8.0.23 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `library_card` -- DROP TABLE IF EXISTS `library_card`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `library_card` ( `id_library_card` int NOT NULL AUTO_INCREMENT, `idReaders` int NOT NULL, `date_of_issue` date DEFAULT NULL, `id_login` int DEFAULT NULL, PRIMARY KEY (`id_library_card`), KEY `idReaders_idx` (`idReaders`), KEY `id_login_idx` (`id_login`), CONSTRAINT `idReaders` FOREIGN KEY (`idReaders`) REFERENCES `readers` (`idReaders`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `library_card` -- LOCK TABLES `library_card` WRITE; /*!40000 ALTER TABLE `library_card` DISABLE KEYS */; INSERT INTO `library_card` VALUES (1,1,'2018-01-02',1),(2,2,'2018-05-18',2),(3,3,'2018-05-20',3),(4,4,'2018-08-10',4),(5,5,'2019-01-15',5),(6,6,'2019-02-05',6),(7,7,'2019-03-20',NULL),(8,8,'2019-05-01',NULL),(9,9,'2019-08-08',NULL),(10,10,'2019-10-01',NULL),(11,11,'2019-12-01',NULL),(12,12,'2020-02-02',NULL),(13,13,'2020-03-15',NULL),(14,14,'2020-04-05',NULL),(15,15,'2020-06-13',NULL),(16,16,'2020-05-12',NULL),(17,17,'2020-07-30',NULL),(18,18,'2020-08-01',NULL),(19,19,'2020-09-10',NULL),(20,20,'2020-11-11',NULL),(21,21,'2021-01-17',NULL),(22,30,'2021-04-30',13); /*!40000 ALTER TABLE `library_card` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2021-05-03 13:23:38
-- lists all shows contained in hbtn_0d_tvshows -- without a genre linked. SELECT tv_shows.title, tv_show_genres.genre_id FROM tv_shows LEFT OUTER JOIN tv_show_genres ON tv_show_genres.show_id = tv_shows.id WHERE genre_id IS NULL ORDER BY tv_shows.title ASC, tv_show_genres.genre_id ASC;
CREATE TABLE `ClB_config` ( `config_name` varchar(255) NOT NULL default '', `config_value` text NOT NULL default '', `config_method` varchar(6) NOT NULL default 'normal' ); INSERT INTO `ClB_config` VALUES ('SESSIONS_TABLE', '$prefixsessions', 'define'); INSERT INTO `ClB_config` VALUES ('session_expire', '3600', 'normal'); INSERT INTO `ClB_config` VALUES ('session_floodlimit', '10', 'normal'); INSERT INTO `ClB_config` VALUES ('session_method', 'cookie', 'normal'); INSERT INTO `ClB_config` VALUES ('session_path', '$path', 'normal'); INSERT INTO `ClB_config` VALUES ('session_domain', '$domain', 'normal'); INSERT INTO `ClB_config` VALUES ('session_secure', '$secure', 'normal'); INSERT INTO `ClB_config` VALUES ('script_path', '$path2', 'normal'); INSERT INTO `ClB_config` VALUES ('MODULES_TABLE', '$prefixmodules', 'define'); INSERT INTO `ClB_config` VALUES ('SES_METHOD_COOKIE', 'cookie', 'define'); INSERT INTO `ClB_config` VALUES ('SES_METHOD_COOKIELESS', 'cookieless', 'define'); INSERT INTO `ClB_config` VALUES ('MOD_FETCH_PARENT', 'byparent', 'define'); INSERT INTO `ClB_config` VALUES ('MOD_FETCH_NAME', 'byname', 'define'); INSERT INTO `ClB_config` VALUES ('MOD_FETCH_ID', 'byid', 'define'); INSERT INTO `ClB_config` VALUES ('MOD_FETCH_MODE', 'bymode', 'define'); INSERT INTO `ClB_config` VALUES ('key_prefix', '$keyprefix', 'normal'); INSERT INTO `ClB_config` VALUES ('ERROR_GUI', 'showpretty', 'define'); INSERT INTO `ClB_config` VALUES ('ERROR_RAW', 'showraw', 'define'); INSERT INTO `ClB_config` VALUES ('GENERAL_ERROR', 'general_error', 'define'); INSERT INTO `ClB_config` VALUES ('CRITICAL_ERROR', 'critical_error', 'define'); INSERT INTO `ClB_config` VALUES ('ADD_SLASHES', 'addslashes', 'define'); INSERT INTO `ClB_config` VALUES ('REM_SLASHES', 'remslashes', 'define'); INSERT INTO `ClB_config` VALUES ('def_template', 'BlueSilver', 'normal'); INSERT INTO `ClB_config` VALUES ('tplEx', '.tpl', 'define'); INSERT INTO `ClB_config` VALUES ('site_charset', 'utf-8', 'normal'); INSERT INTO `ClB_config` VALUES ('MODE_URL', 'mode', 'define'); INSERT INTO `ClB_config` VALUES ('def_lang', 'en', 'normal'); INSERT INTO `ClB_config` VALUES ('COUNTED', 'counted', 'define'); INSERT INTO `ClB_config` VALUES ('NONCOUNTED', 'noncounted', 'define'); INSERT INTO `ClB_config` VALUES ('Cl_version', '0.6.6', 'normal'); INSERT INTO `ClB_config` VALUES ('ESSENTIAL', 'essential', 'define'); INSERT INTO `ClB_config` VALUES ('NOT_ESSENTIAL', 'not_essential', 'define'); INSERT INTO `ClB_config` VALUES ('NEW', 'new', 'define'); INSERT INTO `ClB_config` VALUES ('LAST', 'last', 'define'); INSERT INTO `ClB_config` VALUES ('sitename', '$sitename', 'normal'); INSERT INTO `ClB_config` VALUES ('GUEST', '-99', 'define'); INSERT INTO `ClB_config` VALUES ('INACTIVE', '-98', 'define'); INSERT INTO `ClB_config` VALUES ('ADMIN', '0', 'define'); INSERT INTO `ClB_config` VALUES ('SUPER_MOD', '1', 'define'); INSERT INTO `ClB_config` VALUES ('MOD', '2', 'define'); INSERT INTO `ClB_config` VALUES ('USER', '3', 'define'); INSERT INTO `ClB_config` VALUES ('USERS_TABLE', '$prefixusers', 'define'); INSERT INTO `ClB_config` VALUES ('SUBMODE_URL', 'submode', 'define'); INSERT INTO `ClB_config` VALUES ('main_module', '', 'normal'); INSERT INTO `ClB_config` VALUES ('MODULES_HASH_TABLE', '$prefixhash', 'define'); INSERT INTO `ClB_config` VALUES ('cfgEx', '.cfg', 'define'); INSERT INTO `ClB_config` VALUES ('admin_email', '$adminmail', 'normal'); INSERT INTO `ClB_config` VALUES ('meta_description', '', 'normal'); INSERT INTO `ClB_config` VALUES ('meta_keywords', '', 'normal'); INSERT INTO `ClB_config` VALUES ('nosid4bots', '1', 'normal'); INSERT INTO `ClB_config` VALUES ('pagecache_time', '300', 'normal'); INSERT INTO `ClB_config` VALUES ('pagecache_on', '1', 'normal'); INSERT INTO `ClB_config` VALUES ('CONFIG_TABLE', '$prefixconfig', 'define'); INSERT INTO `ClB_config` VALUES ('template_compiler', '1', 'normal'); INSERT INTO `ClB_config` VALUES ('use_SEO', '1', 'normal'); CREATE TABLE `ClB_hash` ( `callsign` varchar(50) NOT NULL default '', `announce_methods` text NOT NULL, `accept_methods` text NOT NULL, `mod_methods` text NOT NULL ); CREATE TABLE `ClB_modules` ( `mod_id` int(11) NOT NULL auto_increment, `mod_name` varchar(100) NOT NULL default '', `mod_parent` varchar(100) NOT NULL default '', `mod_methods` text NOT NULL, KEY `mod_id` (`mod_id`) ) ; INSERT INTO `ClB_modules` (`mod_id`, `mod_name`, `mod_parent`, `mod_methods`) VALUES (1, 'index', '', ''), (2, 'ACP', '0;', 'ACP->show_acp;'), (3, 'filebrowser', '0;', 'filebrowser->display;'), (4, 'UCP', '0;', 'UCP->show_ucp;'); CREATE TABLE `ClB_sessions` ( `id` varchar(32) NOT NULL default '', `time_start` int(11) NOT NULL default '0', `time_lastactive` int(11) NOT NULL default '0', `ip` varchar(15) NOT NULL default '', `user_id` int(11) NOT NULL default '0', `autolog` tinyint(1) NOT NULL default '0' ) ENGINE=HEAP; CREATE TABLE `ClB_users` ( `user_id` int(11) unsigned NOT NULL auto_increment, `username` varchar(40) NOT NULL default '', `password` varchar(30) NOT NULL default '', `user_email` varchar(255) NOT NULL default '', `user_level` int(5) NOT NULL default '-98', `user_timeformat` varchar(15) NOT NULL default 'D M d, Y H:i', `user_lang` VARCHAR( 5 ) NOT NULL , `user_skin` VARCHAR( 50 ) NOT NULL , PRIMARY KEY (`user_id`) ) ; INSERT INTO `ClB_users` (username, password, user_email, user_level, user_timeformat) VALUES ( 'Guest', 'guest', '', -99, 'D M d, Y H:i'); INSERT INTO `ClB_users` (username, password, user_email, user_level, user_timeformat) VALUES ('$adminname', '$adminpass', '$adminmail', 0, 'D M d, Y H:i');
DROP TABLE events; DROP TABLE attachments;
INSERT INTO `ysy_category` VALUES('1','1','content','1','0','0','0','1','1,2,3,5,162','网站介绍','','','','','about','/html/about/','0','0','array ( \'ishtml\' => \'1\', \'template_list\' => \'default\', \'page_template\' => \'page\', \'meta_title\' => \'\', \'meta_keywords\' => \'\', \'meta_description\' => \'\', \'category_ruleid\' => \'1\', \'show_ruleid\' => \'\', \'repeatchargedays\' => \'1\', )','1','0','0','wangzhanjieshao',''); INSERT INTO `ysy_category` VALUES('2','1','content','1','0','1','0,1','0','2','关于我们','','','','about/','aboutus','/html/about/aboutus/','0','0','array ( \'ishtml\' => \'1\', \'template_list\' => \'default\', \'page_template\' => \'page\', \'meta_title\' => \'关于我们\', \'meta_keywords\' => \'关于我们\', \'meta_description\' => \'关于我们\', \'category_ruleid\' => \'1\', \'show_ruleid\' => \'\', \'repeatchargedays\' => \'1\', )','1','1','0','guanyuwomen',''); INSERT INTO `ysy_category` VALUES('3','1','content','1','0','1','0,1','0','3','联系方式','','','','about/','contactus','/html/about/contactus/','0','0','array ( \'ishtml\' => \'1\', \'template_list\' => \'default\', \'page_template\' => \'page\', \'meta_title\' => \'联系方式\', \'meta_keywords\' => \'联系方式\', \'meta_description\' => \'联系方式\', \'category_ruleid\' => \'1\', \'show_ruleid\' => \'\', \'repeatchargedays\' => \'1\', )','2','1','0','lianxifangshi',''); INSERT INTO `ysy_category` VALUES('4','1','content','1','0','1','0,1','0','4','版权声明','','','','about/','copyright','http://test.phpcms.cn/index.php?m=content&c=index&a=lists&catid=4','0','0','array ( \'ishtml\' => \'0\', \'template_list\' => \'default\', \'page_template\' => \'page\', \'meta_title\' => \'版权声明\', \'meta_keywords\' => \'版权声明\', \'meta_description\' => \'版权声明\', \'category_ruleid\' => \'6\', \'show_ruleid\' => \'\', \'repeatchargedays\' => \'1\', )','3','1','0','banquanshengming',''); INSERT INTO `ysy_category` VALUES('5','1','content','1','0','1','0,1','0','5','招聘信息','','','','about/','hr','/html/about/hr/','0','0','array ( \'ishtml\' => \'1\', \'template_list\' => \'default\', \'page_template\' => \'page\', \'meta_title\' => \'\', \'meta_keywords\' => \'\', \'meta_description\' => \'\', \'category_ruleid\' => \'1\', \'show_ruleid\' => \'\', \'repeatchargedays\' => \'1\', )','4','1','0','zhaopinxinxi',''); INSERT INTO `ysy_category` VALUES('6','1','content','0','1','0','0','0','6','国内','','','','','guonei','','4','0','array ( \'workflowid\' => \'\', \'ishtml\' => \'0\', \'content_ishtml\' => \'0\', \'create_to_html_root\' => \'0\', \'template_list\' => \'default\', \'category_template\' => \'category\', \'list_template\' => \'list\', \'show_template\' => \'show\', \'meta_title\' => \'\', \'meta_keywords\' => \'\', \'meta_description\' => \'\', \'presentpoint\' => \'1\', \'defaultchargepoint\' => \'0\', \'paytype\' => \'0\', \'repeatchargedays\' => \'1\', \'category_ruleid\' => \'6\', \'show_ruleid\' => \'16\', )','1','1','0','guonei',''); INSERT INTO `ysy_category` VALUES('7','1','content','0','2','0','0','0','7','下载','','','','','down','','1','0','array ( \'workflowid\' => \'\', \'ishtml\' => \'0\', \'content_ishtml\' => \'0\', \'create_to_html_root\' => \'0\', \'template_list\' => \'default\', \'category_template\' => \'category_download\', \'list_template\' => \'list_download\', \'show_template\' => \'show_download\', \'meta_title\' => \'\', \'meta_keywords\' => \'\', \'meta_description\' => \'\', \'presentpoint\' => \'1\', \'defaultchargepoint\' => \'0\', \'paytype\' => \'0\', \'repeatchargedays\' => \'1\', \'category_ruleid\' => \'6\', \'show_ruleid\' => \'16\', )','2','1','0','xiazai',''); INSERT INTO `ysy_category` VALUES('8','1','content','0','3','0','0','0','8','图片','','','','','pps','','2','0','array ( \'workflowid\' => \'\', \'ishtml\' => \'0\', \'content_ishtml\' => \'0\', \'create_to_html_root\' => \'0\', \'template_list\' => \'default\', \'category_template\' => \'category_picture\', \'list_template\' => \'list_picture\', \'show_template\' => \'show_picture\', \'meta_title\' => \'\', \'meta_keywords\' => \'\', \'meta_description\' => \'\', \'presentpoint\' => \'1\', \'defaultchargepoint\' => \'0\', \'paytype\' => \'0\', \'repeatchargedays\' => \'1\', \'category_ruleid\' => \'6\', \'show_ruleid\' => \'16\', )','3','1','0','tupian','');
SPOOL project.out /************************************** CIS 353 - Database Design Project Daniel Kelch John O'Brien Marcus Hughes Travis Keel Alen Ramic **************************************/ SET ECHO ON DROP TABLE Country CASCADE CONSTRAINT; DROP TABLE Country CASCADE CONSTRAINT; DROP TABLE Event CASCADE CONSTRAINT; DROP TABLE Athlete CASCADE CONSTRAINT; DROP TABLE Spectator CASCADE CONSTRAINT; DROP TABLE Athlete CASCADE CONSTRAINT; DROP TABLE Event CASCADE CONSTRAINT; DROP TABLE Ticket CASCADE CONSTRAINT; DROP TABLE CompetesIn CASCADE CONSTRAINT; DROP TABLE Sponsors CASCADE CONSTRAINT; -- CREATE TABLE Country ( cname CHAR(35) NOT NULL, population INTEGER NOT NULL, -- -- CONSTRAINT CC1 PRIMARY KEY (cname), CONSTRAINT CC2 CHECK (population >= 0) ); -- -- -------------------------------------------------------- -- Event table -- -------------------------------------------------------- -- CREATE TABLE Event ( eid INTEGER, event_date DATE NOT NULL, empty_seats INTEGER NOT NULL, sport CHAR(30), -- -- EC1: The event id (eid) is the primary key of Event CONSTRAINT EC1 PRIMARY KEY (eid), -- EC2: The number of empty seats must be between 0 and 10,000 CONSTRAINT EC2 CHECK (empty_seats <= 10000 AND empty_seats >= 0), -- EC3: Checks that the date of the event is within a valid range -- for the 2016 summer Olympics (08/05/2016 - 08/21/2016) CONSTRAINT EC3 CHECK(TO_CHAR(event_date, 'YYYY-MM-DD') >= '2016-08-05' AND TO_CHAR(event_date, 'YYYY-MM-DD') <= '2016-08-21') ); -- -- -------------------------------------------------------- -- Sponsors table -- -------------------------------------------------------- -- CREATE TABLE Sponsors ( eid INTEGER, sponsor_name CHAR(30) NOT NULL, -- -- SC1: Event ID and sponsor name are the primary key of Sponsors CONSTRAINT SC1 PRIMARY KEY (eid, sponsor_name), -- SC2: Event ID of sponsors is a foreign key of te eid from Event -- On deletion it will cascade. CONSTRAINT SC2 FOREIGN KEY (eid) REFERENCES Event(eid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED ); -- -- -------------------------------------------------------- -- Athlete table -- -------------------------------------------------------- -- CREATE TABLE Athlete ( aid INTEGER, lname CHAR(30) NOT NULL, fname CHAR(30) NOT NULL, country CHAR(35) NOT NULL, mentorID INTEGER, -- -- CONSTRAINT AC1 PRIMARY KEY (aid), CONSTRAINT AC2 FOREIGN KEY (mentorID) REFERENCES Athlete(aid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, CONSTRAINT AC3 FOREIGN KEY (country) REFERENCES Country(cname) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, CONSTRAINT AC4 CHECK(mentorID != aid) ); -- -- ------------------------------------ -- CompetesIn Table -- ------------------------------------ -- CREATE TABLE CompetesIn ( eid INTEGER, aid INTEGER, medal CHAR(15) NOT NULL, -- CONSTRAINT CIC1 PRIMARY KEY (eid, aid), CONSTRAINT CIC2 CHECK(medal = 'gold' OR medal = 'silver' OR medal = 'bronze' OR medal = 'none'), CONSTRAINT CIC3 FOREIGN KEY (eid) REFERENCES Event(eid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, CONSTRAINT CIC4 FOREIGN KEY (aid) REFERENCES Athlete(aid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED ); -- -- -- -------------------------------------------------------- -- Spectator table -- -------------------------------------------------------- -- CREATE TABLE Spectator ( sid INTEGER, lname CHAR(30) NOT NULL, fname CHAR(30) NOT NULL, cname CHAR(35) NOT NULL, -- -- CONSTRAINT SPC1 PRIMARY KEY (sid), CONSTRAINT SPC3 FOREIGN KEY (cname) REFERENCES Country(cname) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED ); -- -- -------------------------------------------------------- -- Ticket table -- -------------------------------------------------------- -- CREATE TABLE Ticket ( ticket_number INTEGER, section_number INTEGER, price INTEGER, eid INTEGER, sid INTEGER, -- CONSTRAINT TC1 PRIMARY KEY (eid, ticket_number), CONSTRAINT TC2 FOREIGN KEY (eid) REFERENCES Event(eid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, CONSTRAINT TC3 FOREIGN KEY (sid) REFERENCES Spectator(sid) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, CONSTRAINT TC4 CHECK(price >= 100/section_number) -- ); -- SET AUTOCOMMIT OFF SET FEEDBACK OFF --- -- -------------------------------------------------------- -- Populate the tables here -- -------------------------------------------------------- -- INSERT INTO Event VALUES (1, '06-AUG-16',987, 'Basketball'); INSERT INTO Event VALUES (2, '08-AUG-16', 67, 'Handball'); INSERT INTO Event VALUES (3, '13-AUG-16', 5, 'Water Polo'); INSERT INTO Event VALUES (4, '21-AUG-16', 30, 'Volleyball'); INSERT INTO Event VALUES (5, '07-AUG-16',254, 'Synchronized Swimming'); INSERT INTO Event VALUES (6, '09-AUG-16', 670, 'Rowing'); INSERT INTO Event VALUES (7, '11-AUG-16', 51, 'Judo'); INSERT INTO Event VALUES (8, '11-AUG-16', 0, 'Football'); INSERT INTO Event VALUES (9, '11-AUG-16', 87, 'Cycling Road'); INSERT INTO Event VALUES (10, '21-AUG-16', 67, 'Tennis'); INSERT INTO Event VALUES (11, '15-AUG-16', 9000, 'Golf'); INSERT INTO Event VALUES (12, '16-AUG-16', 0007, 'Diving'); INSERT INTO Event VALUES (13, '17-AUG-16', 21, 'Boxing'); INSERT INTO Event VALUES (14, '18-AUG-16', 781, 'Shooting'); INSERT INTO Event VALUES (15, '19-AUG-16', 19, 'Table Tennis'); INSERT INTO Event VALUES (16, '20-AUG-16', 20, 'Fencing'); -- INSERT INTO Country VALUES('United States', 319134000); INSERT INTO Country VALUES('China', 1368030000 ); INSERT INTO Country VALUES('India', 1262860000 ); INSERT INTO Country VALUES('Indonesia', 252164800 ); INSERT INTO Country VALUES('Brazil', 203481000 ); INSERT INTO Country VALUES('Pakistan', 18829000 ); INSERT INTO Country VALUES('Nigeria', 178517000 ); INSERT INTO Country VALUES('Bangladesh', 157362000 ); INSERT INTO Country VALUES('Russia', 146146200 ); INSERT INTO Country VALUES('Japan', 127090000 ); INSERT INTO Country VALUES('Philippines', 100588600 ); INSERT INTO Country VALUES('Mexico',119713203 ); INSERT INTO Country VALUES('Vietnam' , 89708900 ); INSERT INTO Country VALUES('Ethiopia', 87952991); INSERT INTO Country VALUES('Egypt', 8754400 ); INSERT INTO Country VALUES('Germany', 80767000 ); INSERT INTO Country VALUES('Iran', 77912500 ); INSERT INTO Country VALUES('Turkey', 76667864 ); INSERT INTO Country VALUES('France', 66050000 ); INSERT INTO Country VALUES('Thailand',64871000 ); INSERT INTO Country VALUES('United Kingdom',64105654 ); INSERT INTO Country VALUES('Italy',60783711 ); INSERT INTO Country VALUES('South Africa',54002000 ); INSERT INTO Country VALUES('South Korea',5423955 ); INSERT INTO Country VALUES('Colombia', 47875800 ); INSERT INTO Country VALUES('Tanzania',47421786 ); INSERT INTO Country VALUES('Spain' , 46507760); INSERT INTO Country VALUES('Ukraine',42973696); INSERT INTO Country VALUES('Argentina' ,42669500 ); INSERT INTO Country VALUES('Kenya',41800000 ); INSERT INTO Country VALUES('Canada', 35540419); INSERT INTO Country VALUES('Cameroon', 20386799 ); INSERT INTO Country VALUES('Portugal', 10477800 ); INSERT INTO Country VALUES('Jamaica' , 2717991); INSERT INTO Country VALUES('Sweden',9728498 ); INSERT INTO Country VALUES('Belgium',11225469); INSERT INTO Country VALUES('Ghana' , 27043093); -- INSERT INTO Athlete VALUES(10, 'OBrien', 'John', 'United States', NULL); INSERT INTO Athlete VALUES(11, 'OBrien', 'Jack', 'United States', 10); INSERT INTO Athlete VALUES(12, 'Hughes', 'Marcus', 'Germany', 15); INSERT INTO Athlete VALUES(13, 'Keel', 'Travis', 'Germany', 12); INSERT INTO Athlete VALUES(14, 'Ramic', 'Alen', 'Germany', 15); INSERT INTO Athlete VALUES(15, 'Kelch', 'Daniel', 'Germany', NULL); INSERT INTO Athlete VALUES(16, 'Springus', 'Harold', 'Russia', NULL); INSERT INTO Athlete VALUES(17, 'Hawthorne', 'Gerald', 'Russia', 16); INSERT INTO Athlete VALUES(18, 'Front', 'Rosemary', 'Russia', 17); INSERT INTO Athlete VALUES(19, 'Tennis', 'Tim', 'Canada', NULL); INSERT INTO Athlete VALUES(20, 'Robertson', 'Robert', 'Canada', 19); INSERT INTO Athlete VALUES(21, 'Hudson', 'Marlene', 'Canada', 20); INSERT INTO Athlete VALUES(22, 'West', 'North', 'China', NULL); INSERT INTO Athlete VALUES(23, 'Philips', 'Michael', 'China', 22); INSERT INTO Athlete VALUES(24, 'Muscle', 'Uncle', 'China', 22); INSERT INTO Athlete VALUES(25, 'Lee', 'Bryce', 'China', 24); INSERT INTO Athlete VALUES(26, 'Hoke', 'Brady', 'United States', 10); INSERT INTO Athlete VALUES(27, 'Seger', 'Bill', 'United States', 11); INSERT INTO Athlete VALUES(28, 'Obama', 'BarackHUSSEIN', 'Thailand', NULL); INSERT INTO Athlete VALUES(29, 'Jonas', 'Mick', 'Italy', NULL); INSERT INTO Athlete VALUES(30, 'Jackson III', 'Curtis James', 'France', NULL); -- INSERT INTO Spectator VALUES(100, 'Miller', 'John', 'United States'); INSERT INTO Spectator VALUES(119, 'Cunningham', 'Bradley', 'United States'); INSERT INTO Spectator VALUES(120, 'Hanson', 'Jeff', 'United States'); INSERT INTO Spectator VALUES(121, 'Wilson', 'Anthony', 'United States'); INSERT INTO Spectator VALUES(110, 'Miller', 'John', 'United States'); INSERT INTO Spectator VALUES(101, 'Sanches', 'Aguero', 'Argentina'); INSERT INTO Spectator VALUES(102, 'Lee', 'Wong', 'China'); INSERT INTO Spectator VALUES(103, 'Aqel', 'Mohammad', 'Egypt'); INSERT INTO Spectator VALUES(104, 'Kriplani', 'Malavika', 'India'); INSERT INTO Spectator VALUES(105, 'Curryfresh', 'Rasheed', 'Pakistan'); INSERT INTO Spectator VALUES(106, 'Shizmahal', 'Berut', 'Indonesia'); INSERT INTO Spectator VALUES(107, 'Sanches', 'Neymar', 'Brazil'); INSERT INTO Spectator VALUES(108, 'Kroptykov', 'Vladimir', 'Russia'); INSERT INTO Spectator VALUES(109, 'Shango', 'Wan', 'Japan'); INSERT INTO Spectator VALUES(111, 'Wienerschintzle', 'Hanz', 'Germany'); INSERT INTO Spectator VALUES(112, 'Uccello', 'Fabio', 'Italy'); INSERT INTO Spectator VALUES(113, 'Fabregas', 'Iniesta', 'Spain'); INSERT INTO Spectator VALUES(114, 'Measho', 'Micheal', 'Ethiopia'); INSERT INTO Spectator VALUES(115, 'Christiano', 'Ronaldo', 'Portugal'); INSERT INTO Spectator VALUES(116, 'Kriplani', 'Mehmenal', 'India'); INSERT INTO Spectator VALUES(117, 'Rastip', 'Shahimteg', 'India'); INSERT INTO Spectator VALUES(118, 'Mahood', 'Melket', 'India'); -- INSERT INTO Ticket VALUES (1, 1, 120, 1 , 100); INSERT INTO Ticket VALUES (2, 1, 119, 2 , 101); INSERT INTO Ticket VALUES (3, 1, 118, 3 , 102); INSERT INTO Ticket VALUES (4, 1, 117, 4 , 103); INSERT INTO Ticket VALUES (5, 1, 116, 5 , 104); INSERT INTO Ticket VALUES (6, 1, 115, 6 , 105); INSERT INTO Ticket VALUES (7, 1, 114, 7 , 106); INSERT INTO Ticket VALUES (8, 1, 113, 8 , 107); INSERT INTO Ticket VALUES (9, 1, 112, 9 , 108); INSERT INTO Ticket VALUES (10, 1, 111, 10, 109); INSERT INTO Ticket VALUES (11, 1, 110, 1 , 110); INSERT INTO Ticket VALUES (12, 1, 109, 12, 111); INSERT INTO Ticket VALUES (13, 1, 108, 13 , 112); INSERT INTO Ticket VALUES (14, 1, 107, 14 , 113); INSERT INTO Ticket VALUES (15, 1, 100, 15 , 114); INSERT INTO Ticket VALUES (16, 1, 120, 16 , 115); INSERT INTO Ticket VALUES (17 , 2, 120 , 1 , 100); INSERT INTO Ticket VALUES (18, 3, 119, 2 , 101); INSERT INTO Ticket VALUES (19, 3, 118, 3 , 102); INSERT INTO Ticket VALUES (20, 4, 117, 4 , 103); INSERT INTO Ticket VALUES (21, 3, 116, 5 , 104); INSERT INTO Ticket VALUES (22, 2, 115, 6 , 105); INSERT INTO Ticket VALUES (23, 1, 114, 7 , 106); INSERT INTO Ticket VALUES (24, 3, 113, 8 , 107); INSERT INTO Ticket VALUES (25, 4, 112, 9 , 108); INSERT INTO Ticket VALUES (26 , 2, 111 , 10 , 109); INSERT INTO Ticket VALUES (27, 2, 110, 1 , 110); INSERT INTO Ticket VALUES (28, 3, 109, 12, 111); INSERT INTO Ticket VALUES (29, 4, 25, 13 , 112); INSERT INTO Ticket VALUES (30, 5, 30, 14 , 113); INSERT INTO Ticket VALUES (31, 2, 100, 15 , 114); INSERT INTO Ticket VALUES (32, 1, 120, 16 , 115); INSERT INTO Ticket VALUES (33 , 1 , 100 , 1 , 121); INSERT INTO Ticket VALUES (34, 1, 114, 7 , 117); INSERT INTO Ticket VALUES (35, 3, 113, 8 , 118); INSERT INTO Ticket VALUES (36, 4, 112, 1 , 119); INSERT INTO Ticket VALUES (37 , 2, 111 , 1 , 120); INSERT INTO Ticket VALUES (38, 2, 110, 11 , 117); INSERT INTO Ticket VALUES (39, 3, 109, 12, 118); INSERT INTO Ticket VALUES (40, 4, 25, 1 , 119); INSERT INTO Ticket VALUES (41, 5, 30, 1 , 120); INSERT INTO Ticket VALUES (44 , 1 , 100 , 1 , 121); INSERT INTO Ticket VALUES (45, 1, 120, 16, 100); INSERT INTO Ticket VALUES (46, 1, 120, 16, 119); INSERT INTO Ticket VALUES (47, 1, 120, 16, 120); INSERT INTO Ticket VALUES (48, 1, 120, 16, 121); INSERT INTO Ticket VALUES (49, 1, 120, 16, 110); -- INSERT INTO Sponsors VALUES (1, 'Microsoft'); INSERT INTO Sponsors VALUES (1, 'Ford'); INSERT INTO Sponsors VALUES (2, 'Ford'); INSERT INTO Sponsors VALUES (2, 'Apple'); INSERT INTO Sponsors VALUES (3, 'GVSU'); INSERT INTO Sponsors VALUES (3, 'Facebook'); INSERT INTO Sponsors VALUES (4, 'Milk'); INSERT INTO Sponsors VALUES (4 , 'Ford'); INSERT INTO Sponsors VALUES (5 , 'Facebook'); INSERT INTO Sponsors VALUES (5 , 'Apple'); INSERT INTO Sponsors VALUES (6 , 'ACM'); INSERT INTO Sponsors VALUES (6 , 'Xfinity'); INSERT INTO Sponsors VALUES (7 , ' Real'); INSERT INTO Sponsors VALUES (7, 'Totco'); INSERT INTO Sponsors VALUES (8 , 'Burger King'); INSERT INTO Sponsors VALUES (8, 'Clean Water'); INSERT INTO Sponsors VALUES (9, 'Powerhouse'); INSERT INTO Sponsors VALUES (9, 'Midland'); INSERT INTO Sponsors VALUES (10 , 'Newhouse'); INSERT INTO Sponsors VALUES (10 , 'GVSU'); INSERT INTO Sponsors VALUES (11 , 'Ford'); INSERT INTO Sponsors VALUES (12 , 'Facebook'); INSERT INTO Sponsors VALUES (11 , 'Milk'); INSERT INTO Sponsors VALUES (12 , 'Real'); INSERT INTO Sponsors VALUES (13 , 'Joes Pizza'); INSERT INTO Sponsors VALUES (13 , 'Apple'); INSERT INTO Sponsors VALUES (14 , 'Totco'); INSERT INTO Sponsors VALUES (14 , 'ACM'); INSERT INTO Sponsors VALUES (15 , 'Facebook'); INSERT INTO Sponsors VALUES (15 , 'Clean Water'); -- INSERT INTO CompetesIn VALUES (10 , 10 , 'none'); INSERT INTO CompetesIn VALUES (2, 11 , 'silver'); INSERT INTO CompetesIn VALUES (3 , 12 , 'bronze'); INSERT INTO CompetesIn VALUES (4 , 13 , 'none'); INSERT INTO CompetesIn VALUES (5 , 15 , 'none'); INSERT INTO CompetesIn VALUES (6 , 14 , 'gold'); INSERT INTO CompetesIn VALUES (7 , 16 , 'silver'); INSERT INTO CompetesIn VALUES (8 , 17 , 'bronze'); INSERT INTO CompetesIn VALUES (9 , 18 , 'none' ); INSERT INTO CompetesIn VALUES (10 , 19 , 'gold'); INSERT INTO CompetesIn VALUES (11, 20 , 'silver'); INSERT INTO CompetesIn VALUES (12 , 21 , 'bronze'); INSERT INTO CompetesIn VALUES (13, 22, 'none'); INSERT INTO CompetesIn VALUES (14, 23 , 'none'); INSERT INTO CompetesIn VALUES (15, 24 , 'gold'); INSERT INTO CompetesIn VALUES (16, 25 , 'silver'); INSERT INTO CompetesIn VALUES (8 , 26 , 'silver'); INSERT INTO CompetesIn VALUES (9 , 27 , 'none' ); INSERT INTO CompetesIn VALUES (12 , 28 , 'gold'); INSERT INTO CompetesIn VALUES (13, 29, 'none'); INSERT INTO CompetesIn VALUES (14, 30 , 'none'); -- -- SET FEEDBACK ON COMMIT; -- -- SELECT * FROM Event; SELECT * FROM Athlete; SELECT * FROM Country; SELECT * FROM Spectator; SELECT * FROM Ticket; SELECT * FROM Sponsors; SELECT * FROM CompetesIn; -- -- ======================================================== -- QUERIES -- ======================================================== -- -- -------------------------------------------------------- -- - Q1 - -- Selects all countries with a population -- that is greater than 100,000,000 -- -------------------------------------------------------- SELECT C.cname FROM Country C WHERE C.population > 100000000; -- -- -------------------------------------------------------- -- - Q2 - AVG, MINUS, Correlated subquery -- Selects all countries with above avg population -- -------------------------------------------------------- SELECT C.cname, C.population FROM Country C MINUS SELECT C.cname, C.population FROM Country C WHERE C.population < (SELECT AVG(C.population) FROM Country C); -- -- -------------------------------------------------------- -- - Q3 - Self Join -- Selects two sponsors -- -------------------------------------------------------- SELECT S1.eid, S2.eid FROM Sponsors S1, Sponsors S2 WHERE S1.eid > 3 AND S1.sponsor_name = S2.sponsor_name AND S1.eid < S2.eid ; -- -- -------------------------------------------------------- -- - Q4 - Correlated subquery -- Selects all events without sponsors -- -------------------------------------------------------- SELECT E.eid, E.event_date FROM Event E WHERE NOT EXISTS ( SELECT * FROM Sponsors S WHERE E.eid = S.eid); -- -- -------------------------------------------------------- -- - Q5 - Non-correlated subquery -- Selects all events without sponsors -- -------------------------------------------------------- SELECT E.eid, E.event_date FROM Event E WHERE E.eid NOT IN (SELECT S.eid FROM Sponsors S); -- -- -------------------------------------------------------- -- - Q6 - Outer Join -- Selects Ticket and Event where the ticket belongs to the -- event -- -------------------------------------------------------- SELECT T.eid , T.ticket_number , E.eid , E.event_date FROM Ticket T LEFT OUTER JOIN Event E ON T.eid = E.eid; -- -- -------------------------------------------------------- -- - Q7 - Division, Coorelated Subquery, Minus -- - Returns all events that all Americans are attending -- -------------------------------------------------------- SELECT E.eid, E.sport FROM Event E WHERE NOT EXISTS((SELECT S.cname FROM Spectator S WHERE S.cname = 'United States') MINUS (SELECT S.cname FROM Spectator S, Ticket T WHERE T.sid = S.sid AND T.eid = E.eid AND S.cname = 'United States')); ----------------------------------------------------------- -- GROUP BY ---- -------------------------------------------------------- Select S.cname, COUNT(*) FROM Spectator S, Country C WHERE C.population > 300000000 AND C.cname = S.cname GROUP BY S.cname HAVING COUNT(*) > 3 ORDER BY COUNT(*); -- -------------------------------------------------------- -- - Q9 - Join Involving 4 relations -- Selects all Spectators ad Athlets that attend the same event -- and are from teh same country -- -------------------------------------------------------- SELECT DISTINCT S.fname, A.fname FROM Spectator S, Athlete A, Ticket T, Event E, CompetesIn CI, Country C WHERE T.sid = S.sid AND T.eid = E.eid AND A.aid = CI.aid AND E.eid = CI.eid AND S.cname = A.country; -- -- ======================================================== -- TEST CONSTRAINTS -- ======================================================== -- SET AUTOCOMMIT ON -- -------------------------------------------------------- -- Country Test -- -------------------------------------------------------- -- Tests CC1 INSERT INTO Country VALUES ('United States', 2); -- Tests CC2 INSERT INTO Country VALUES ('Just a test', -2); -- Tests CC2 (should pass) INSERT INTO Country VALUES ('THIS SHOULD WORK', 0); -- -- -------------------------------------------------------- -- Event Test -- -------------------------------------------------------- -- Tests EC1 INSERT INTO Event VALUES (1, '6-AUG-16', 2, 'Sport'); -- Tests EC2 INSERT INTO Event VALUES (44444, '6-AUG-16', 10001, 'Sport'); -- Tests EC3 INSERT INTO Event VALUES (44444, '6-AUG-16', -1, 'Sport'); -- Tests EC3 INSERT INTO Event VALUES (55555, '6-AUG-12', 2, 'S'); -- Tests EC3 INSERT INTO Event VALUES (2222, '8-JAN-16', 2, 'S'); -- -- -------------------------------------------------------- -- Sponsors Test -- -------------------------------------------------------- -- Tests SC1 INSERT INTO Sponsors VALUES (1, 'Microsoft'); -- Tests SC1 INSERT INTO Sponsors VALUES (1, 'Apple'); -- Tests SC2 INSERT INTO Sponsors VALUES (99999, 'Anything'); SELECT S.eid FROM Sponsors S WHERE S.eid = 1; DELETE FROM Event WHERE eid = 1; -- Tests SC2 SELECT S.eid FROM Sponsors S WHERE S.eid = 1; -- -- -------------------------------------------------------- -- Athlete Test -- -------------------------------------------------------- -- Test AC1 INSERT INTO Athlete VALUES(10, 'test', 'test', 'United States', 10); -- Test AC3 INSERT INTO Athlete VALUES(9231, 't', 't', 'made up', 10); -- Test AC2 INSERT INTO Athlete VALUES(123123, 'q', 'w', 'South Africa', 9999912); -- --------------------------------------------------------- -- CompetesIn Test -- --------------------------------------------------------- -- Test CIC2 INSERT INTO CompetesIn VALUES (94, 30 , 'lol'); -- Test CIC1 INSERT INTO CompetesIn VALUES (14, 31 , 'none'); -- Test CIC3 INSERT INTO CompetesIn VALUES (66, 29, 'gold'); -- Test CIC4 INSERT INTO CompetesIn VALUES (1, 1241241, 'gold'); -- -- -------------------------------------------------------- -- Spectator Test -- -------------------------------------------------------- -- Tests SPC1 INSERT INTO Spectator VALUES (100, 'l', 'f', 'United States'); -- Tests SPC3 INSERT INTO Spectator VALUES (1, 'joe', 'cool', 'NOT A COUNTRYIES'); -- -- -------------------------------------------------------- -- Ticket Test -- -------------------------------------------------------- -- Tests TC1 INSERT INTO Ticket VALUES (1, 1, 120, 1 , 100); -- Tests TC2 INSERT INTO Ticket VALUES(1, 1, 200000, 1, 100); -- Tests TC4 INSERT INTO Ticket VALUES(99, 1, 1, 1, 100); -- Tests TC2 INSERT INTO Ticket VALUES(1, 1, 30000, 84717, 100); -- Tests TC3 INSERT INTO Ticket VALUES(99, 1, 2231, 2, 87482); -- SPOOL OFF
-- phpMyAdmin SQL Dump -- version 4.6.5.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 21, 2017 at 02:30 PM -- Server version: 10.1.21-MariaDB -- PHP Version: 5.6.30 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: `todo` -- -- -------------------------------------------------------- -- -- Table structure for table `lists` -- CREATE TABLE `lists` ( `id` int(11) NOT NULL, `list_name` varchar(255) NOT NULL, `list_body` text NOT NULL, `list_user_id` int(11) NOT NULL, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `lists` -- INSERT INTO `lists` (`id`, `list_name`, `list_body`, `list_user_id`, `create_date`) VALUES (3, 'Sports', 'Sport events', 1, '2017-04-06 20:40:11'); -- -------------------------------------------------------- -- -- Table structure for table `tasks` -- CREATE TABLE `tasks` ( `id` int(11) NOT NULL, `task_name` varchar(255) NOT NULL, `task_body` text NOT NULL, `list_id` int(11) NOT NULL, `due_date` date NOT NULL, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `is_completed` tinyint(1) NOT NULL DEFAULT '0', `task_user_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `tasks` -- INSERT INTO `tasks` (`id`, `task_name`, `task_body`, `list_id`, `due_date`, `create_date`, `is_completed`, `task_user_id`) VALUES (1, 'Training', 'A lot of exercises today at 19.00', 3, '2017-04-07', '2017-04-07 08:07:53', 1, 1), (4, 'test', 'test', 3, '2017-04-07', '2017-04-07 14:18:06', 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `register_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `first_name`, `last_name`, `email`, `username`, `password`, `register_date`) VALUES (1, 'Iaroslav', 'Krasilchuk', 'notreal@gmail.com', 'Iaro', '$2y$10$uTgi8XQuqhzSONKoVoqe2e3PfkgFPEEPa7pLyBoSfdt6NP0SxhzAm', '2017-04-06 16:57:03'); -- -- Indexes for dumped tables -- -- -- Indexes for table `lists` -- ALTER TABLE `lists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tasks` -- ALTER TABLE `tasks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `lists` -- ALTER TABLE `lists` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tasks` -- ALTER TABLE `tasks` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- drop db if exists DROP DATABASE IF EXISTS hbtn_0c_0;
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Nov 22, 2018 at 07:54 AM -- Server version: 10.1.36-MariaDB -- PHP Version: 7.2.11 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: `places` -- -- -------------------------------------------------------- -- -- Table structure for table `alldata` -- CREATE TABLE `alldata` ( `ID` int(11) NOT NULL, `AllPlaces` varchar(255) NOT NULL, `AllDays` int(1) NOT NULL, `Place1` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `alldata` -- INSERT INTO `alldata` (`ID`, `AllPlaces`, `AllDays`, `Place1`) VALUES (1, 'Bangalore', 1, 'Day 1:\r\n1.Bannerghatta National Park\r\n2.Bangalore Palace\r\n3.Cubbon Park'), (2, 'Bangalore', 2, 'Day 2:\r\n1.ISKCON Temple\r\n2.Lalbhag\r\n3.Ulsoor Lake'), (3, 'Bangalore', 3, 'Day 3:\r\n\r\n1.Fun World\r\n2.Government Museum\r\n3.Vidhaan Soudha\r\n\r\n'), (4, 'Chennai', 1, 'Day 1:\r\n1.Marina beach\r\n2.Kapaleeshwar Temple\r\n3.Government Museum\r\n4.St. Thomas Cathedral Basilica'), (5, 'Chennai', 2, 'Day 2:\r\n1.Edward Elliot\'s Beach\r\n2.Arignar Anna Zoological Park\r\n3.Semmozhi Poonga\r\n4.Light House\r\n'), (6, 'Chennai', 3, 'Day 3:\r\n1.MGM Dizzee World\r\n2.Kalikambal Temple\r\n3.Chennai Rail Museum\r\n'), (7, 'Mumbai', 1, 'Day 1:\r\n1.Gateway of India\r\n2.Elephanta Caves\r\n3.Elephanta Island\r\n4.Marine Drive'), (8, 'Mumbai', 2, 'Day 2:\r\n1.Kanheri Caves\r\n2.Haji Ali Dargah\r\n3.Juhu Beach'), (9, 'Mumbai', 3, 'Day 3:\r\n1.EsselWorld\r\n2.Hanging Gardens of Mumbai\r\n3.Bandra–Worli Sea Link'), (10, 'Kolkata', 1, 'Day 1:\r\n1.Victoria Memorial\r\n2.Howrah Bridge\r\n3.Dakshineswar Kali Temple\r\n'), (11, 'Kolkata', 2, 'Day 2:\r\n1.Indian Museum\r\n2.Belur Math\r\n3.Kalighat Kali Temple\r\n4.Park Street\r\n'), (12, 'Kolkata', 3, 'Day 3:\r\n1.Bandel Church\r\n2.Diamond Harbour Road\r\n3.Rabindra Bharati Museum\r\n4.Nalban Park\r\n5.Netaji Bhawan'), (13, 'Hyderabad', 1, 'Day 1:\r\n1.Charminar\r\n2.Golkonda\r\n3.Hussain Sagar'), (14, 'Hyderabad', 2, 'Days 2:\r\n1.Chowmahalla Palace\r\n2.Salar Jung Museum\r\n3.Nehru Zoological Park\r\n4.Nehru Zoological Park'), (15, 'Hyderabad', 3, 'Day 2:\r\n1.Ramoji Film City\r\n2.Durgam Cheruvu\r\n3.Sanghi Temple\r\n4.Purani Haveli'), (16, 'Mumbai', 1, 'Day 1:\r\n1. Marine Drive\r\n2. Gateway Of India\r\n3. Colaba Causeway'), (17, 'Mumbai', 2, 'Day 2:\r\n1. Juhu Beach\r\n2. Siddhivinayak Temple\r\n3. Elephanta Caves'), (18, 'Mumbai', 3, 'Day 3:\r\n1. Bandra Worli Sea Link\r\n2. Victoria Terminus\r\n3. Prince Of Wales Museum\r\n2.\r\n3.\r\n'), (19, 'Delhi', 1, 'Day 1:\r\n1. Red Fort\r\n2. India Gate\r\n3. Rashtrapti Bhavan'), (20, 'Delhi', 2, 'Day 2:\r\n1. Qutub Minar\r\n2. Jantar Mantar\r\n3. Humayun\'s Tomb'), (21, 'Delhi', 3, 'Day 3:\r\n1. Akshardham Temple\r\n2. ISKON temple\r\n3. Lotus Temple'), (22, 'Ranchi', 1, 'Day 1:\r\n1. Deori Temple\r\n2. Jonha Falls\r\n3. Rock Garden'), (23, 'Ranchi', 2, 'Day 2:\r\n1. Pahari Mandir\r\n2. Hudru Falls\r\n3. Birsa Zoological Park'), (24, 'Ranchi', 3, 'Day 3:\r\n1. Sun Temple\r\n2. Kanke Dam\r\n3. Hirni Falls'), (25, 'Vizag', 1, 'Day 1:\r\n1. Kailasagiri\r\n2. Indira Gandhi Zoological Parl\r\n3. Simhachalan Temple\r\n3.'), (26, 'Vizag', 2, 'Day 2:\r\n1. Bora Caves\r\n2. Yarada Beach\r\n3. Visakha Museum'), (27, 'Vizag', 3, 'Day 3:\r\n1. Tyda Park\r\n2. INS Kurusura Submarine Museum\r\n3. Ramakrishna Beach'), (28, 'Pune', 1, 'Day 1:\r\n1. Darshan Museum\r\n2. ISKCON Temple\r\n3. Lord Ayyapa Temple'), (29, 'Pune', 2, 'Day 2:\r\n1. Pune Tribal Museum\r\n2. Hanuman Lake\r\n3. Rajgad Lake'), (30, 'Pune', 3, 'Day 3:\r\n1. Western Ghats\r\n2. Narayani Dham Temple\r\n3. Katraj Jain Temple'), (31, 'Ahmedabad', 1, 'Day 1:\r\n1. Iceberg Snow World\r\n2. Sabarmati Ashram\r\n3. Dada Bhagwan Temple\r\n'), (32, 'Ahmedabad', 2, 'Day 2:\r\n1. Akshardham Temple\r\n2. Fun World\r\n3. Toy Museum'), (33, 'Ahmedabad', 3, 'Day 3:\r\n1. Manek Chowk\r\n2. Parimal Garden\r\n3. Naroda Lake\r\n3.'), (34, 'Jaipur', 1, 'Day 1:\r\n1. Amber Fort\r\n2. Nahargarh Fort\r\n3. City Palace'), (35, 'Jaipur', 2, 'Day 2:\r\n1. Hawa Mahal\r\n2. Jantar Mantar\r\n3. Water Valley'), (36, 'Jaipur', 3, 'Day 3:\r\n1. Jal Mahal\r\n2. Albert Hall Museum\r\n3. Chour Ghat'), (37, 'Chandigarh', 1, 'Day 1:\r\n1. Rock Garden\r\n2. Sukhna Lake\r\n3. Elante Mall'), (38, 'Chandigarh', 2, 'Day 2:\r\n1. Sukhna Wildlife Sanctuary\r\n2. Government Museum\r\n3. Japanese Garden'), (39, 'Chandigarh', 3, 'Day 3:\r\n1. Shanti Kunj\r\n2. Timber Trail\r\n3. Mahendra Choudhary Zoological Park'), (40, 'Surat', 1, 'Day 1:\r\n1. Sri Shirdi Sai Temple\r\n2. Linear Park\r\n3. Dumas Beach\r\n2.\r\n3.'), (41, 'Surat', 2, 'Day 2:\r\n1. Shabari Dham\r\n2. ISKCON Temple\r\n3. Ambaji Temple'), (42, 'Surat', 3, 'Day 3:\r\n1. Gopi Talav\r\n2. Sarthana National Park\r\n3. Amaazia Water Park'), (43, 'Indore', 1, 'Day 1:\r\n1. Gomatgiri\r\n2. Annapurna Temple\r\n3. Sarafa Bazaar'), (44, 'Indore', 2, 'Day 2:\r\n1. Ralamandal Wildlife Sanctuary\r\n2. Tincha Fall\r\n3. Khajrana Ganesh Mandir'), (45, 'Indore', 3, 'Day 3:\r\n1. Treasure Island Mall\r\n2. Kanch Mandir\r\n3. Patalpani Waterfall'), (46, 'Kochi', 1, 'Day 1:\r\n1. Chottanikara Temple\r\n2. Kerala Forklore Museum\r\n3. Catholic Art Museum'), (47, 'Kochi\r\n', 2, 'Day 2:\r\n1. Jeevamatha Church\r\n2. Kuzhuppily Beach\r\n3. Chittoor Shrikrishnaswamy Temple'), (48, 'Kochi', 3, 'Day 3:\r\n1. Willingdong Island\r\n2. Jawahar Park\r\n3. Santa Cruz Cathedral Basilica'), (49, 'Lucknow', 1, 'Day 1:\r\n1. Janeshwar Mishra Park\r\n2. Moti Mahal\r\n3. Indira Gandhi Planetarium'), (50, 'Lucknow', 2, 'Day 2:\r\n1. Kukrail Forest Reserve\r\n2. Juma Masjid\r\n3. Bara Imbambara'), (51, 'Lucknow', 3, 'Day 3:\r\n1. Sikandar Bagh\r\n2. Begum Hazrat Mahal\r\n3. Ganga Aquarium'), (52, 'Nagpur', 1, 'Day 1:\r\n1. Deeksha Bhoomi\r\n2. Nagpur Ramtek Temple\r\n3. Ramtek Fort Temple'), (53, 'Nagpur', 2, 'Day 2:\r\n1. All Saint\'s Cathedral\r\n2. Khindsi Lake\r\n3. Swaminarayan Temple'), (54, 'Nagpur', 3, 'Day 3:\r\n1. Sai Baba Temple\r\n2. Koradi Temple\r\n3. Ambazari Lake and Garden'), (55, 'Agra', 1, 'Day 1:\r\n1. Taj Mahal\r\n2. Agra Fort\r\n3. Fathepur Sikri'), (56, 'Agra', 2, 'Day 2:\r\n1. Akbar\'s Tomb\r\n2. Jama Masjid\r\n3. Wildlife SOS'), (57, 'Agra', 3, 'Day 3:\r\n1. Mehtab Bagh\r\n2. Taj Museum\r\n3. Chini Ka Rauza'), (58, 'Coimbatore', 1, 'Day 1:\r\n1. Adiyogi Shiva\r\n2. ISKCON Temple\r\n3. Sozhaiyaar Dam'), (59, 'Coimbatore', 2, 'Day 2:\r\n1. Monkey Falls\r\n2. Marudhamalai Hill Temple\r\n3. Kovai Kutralam Falls'), (60, 'Mysore', 1, 'Day 1:\r\n1. Somnathpur Temple\r\n2. Mysore Maharaja\'s Palace\r\n3. Railway Museum'), (61, 'Mysore', 2, 'Day 2:\r\n1. Jamia Masjid\r\n2. Kukkarahalli Lake\r\n3. Brindavan Garden'), (62, 'Mysore', 2, 'Day 3:\r\n1. Shuka Vana\r\n2. Planet Earth Aquarium\r\n3. Srikanteshwara Temple'), (63, 'Coimbatore', 3, 'Day 3:\r\n1. Eechanari Vinayagar Temple\r\n2. Geede Car Museum\r\n3. Sholayar Dam'); 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 */;
TABELA DOADORES TABELA ONGS TABELA DOACOES
select * from ems_equipmenttype select * from ems_equipmentsubtype select * from ems_equipmentprod select * from ems_brand select a.id 大类编码,a.name 大类名称,b.id 小类编码,b.name 小类名称,c.id 品名编码,c.name 品名名称,c.style 型号 ,c.unit 单位,C.SPEC 规格,d.name 品牌,c.quality_month 质保_月,c.depreci_year 折旧年限 from ems_equipmenttype a inner join ems_equipmentsubtype b on a.id=b.parent_id inner join ems_equipmentprod c on b.id=c.subtype_id inner join ems_brand d on c.brand_id=d.id order by a.id,b.id,c.id
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * Author: gabri * Created: Dec 5, 2020 */ INSERT INTO Departamento (nombreSistema) VALUES ("Sistema Gabriel"); INSERT INTO Departamento (nombreSistema) VALUES ("Sistema Pablo"); INSERT INTO Departamento (nombreSistema) VALUES ("Sistema Miguel"); INSERT INTO Departamento (nombreSistema) VALUES ("Sistema Christopher"); INSERT INTO Departamento (nombreSistema) VALUES ("Sistema Shamuel"); INSERT INTO Departamento (nombreSistema) VALUES ("Sistema Emily"); INSERT INTO Usuario(nombre, idDepartamento, correo, contrasena) VALUES ("Pablo Porras", 2, "josexpablox@gmail.com", "pablo123"); INSERT INTO Usuario(nombre, idDepartamento, correo, contrasena) VALUES ("Miguel Soto", 3, "msoto@gmail.com", "miguel123"); INSERT INTO Usuario(nombre, idDepartamento, correo, contrasena) VALUES ("Christopher Valerio", 4, "chile@gmail.com", "chile123"); INSERT INTO Usuario(nombre, idDepartamento, correo, contrasena) VALUES ("Shamuel Simpson", 5, "shamuelsimpson@gmail.com", "shamuel123"); INSERT INTO Usuario(nombre, idDepartamento, correo, contrasena) VALUES ("Gabriel Granados", 1, "gabrielgranadosc@gmail.com", "gabriel123"); INSERT INTO Usuario(nombre, idDepartamento, correo, contrasena) VALUES ("Emily Bolivar", 6, "emilyb@gmail.com", "emily123");
drop database gsu_moviedb; create database gsu_moviedb; use gsu_moviedb; create table movie( movieID int(5) not null, movieTitle varchar(50) not null, movieDesc varchar(150), movieReleaseDate varchar(150), movieRuntime int(3) check (movieRuntime > 25), movieCertificate varchar(4) check (movieCertificate in ('N/A','PG','12','12A','15','15A','16','18')), movieRating double(2,1) check (movieRating > 0 and movieRating <= 10), constraint movie_pk primary key (movieID) )engine innodb; create table genre( genreID int(5) not null, genreType varchar(25) not null, genreDesc varchar(200), constraint genre_pk primary key (genreID) )engine innodb; create table movie_genre( movie_genreID int(5) not null, m_movieID int(5) not null, g_genreID int(5) not null, constraint movie_genre_pk primary key (movie_genreID), constraint movie_genre_fk_movie foreign key (m_movieID) references movie (movieID), constraint movie_genre_fk_genre foreign key (g_genreID) references genre (genreID) )engine innodb; create table person( personID int(5) not null, personFirstName varchar(50) not null, personLastName varchar(50), personNationality varchar(50), personPicture varchar (150), constraint person_pk primary key (personID) )engine innodb; create table role( roleID int(5) not null, roleDesc varchar(25) not null, m_movieID int(5) not null, p_personID int(5) not null, constraint role_pk primary key (roleID), constraint role_fk_movie foreign key (m_movieID) references movie (movieID), constraint role_fk_person foreign key (p_personID) references person (personID) )engine innodb;
create policy project_creator_update_address on address for update to app_user using ( exists ( SELECT 1 from project WHERE project.address_id = address.id AND project.creator_id = public.get_current_user_id() ) );
--enrolled prior ssis, activate post ssis SELECT TOP 1000 * FROM profile.dbo.Profile p JOIN profile.KeyMap.CustomerKey ck ON p.ProfileID = ck.ProfileID JOIN Membership.dbo.Membership m ON ck.MembershipID = m.MembershipID JOIN Membership.dbo.MembershipCard mc ON m.MembershipID = mc.MembershipID WHERE m.MembershipStatusID = '2' AND mc.CancellationDate IS NULL AND m.EndDate IS NULL --AND p.ProfileID = 1238150808 ORDER BY p.ProfileID DESC
-- 查詢所有同學的學號、姓名、選課數、總成績 SELECT s.s_id as [ID], s.s_name as [Name], COUNT(sc.s_score) as [Num of course], SUM(sc.s_score) as [Sum of score] FROM student s left join score sc ON s.s_id = sc.s_id GROUP BY s.s_id, s.s_name
-- 특정 조건의 데이터 삭제 delete from sales where sales_id = 2; -- 테이블(데이터만) 삭제 truncate table employees; -- 테이블(데이터+테이블구조) 삭제 drop table employees; -- 데이터베이스(데이터+테이블구조+DB) 삭제 drop database market;
CREATE USER mastermind IDENTIFIED BY test DEFAULT TABLESPACE users QUOTA 20m ON users; GRANT create session, create table, create procedure, create type, create view TO mastermind;
--create role ecidade with superuser login password 'ecidade'; create role dbseller with login password 'dbseller'; create role plugin with login password 'plugin'; create role dbportal with login password 'dbportal'; --CREATE DATABASE "e-cidade"; --GRANT ALL PRIVILEGES ON DATABASE "e-cidade" to ecidade;
CREATE TABLE public.event_access_type_table ( id integer NOT NULL DEFAULT, access_type character varying(500) NOT NULL, created_by character varying(100) NOT NULL, created_on timestamp without time zone, CONSTRAINT event_access_type_table_pkey PRIMARY KEY (id), CONSTRAINT event_access_type_table_created_by_fkey FOREIGN KEY (created_by) REFERENCES public.admin_table (adminid) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE CASCADE ); INSERT INTO event_access_type_table (id, access_type, created_by) VALUES (1, 'public', 'default'), (2, 'private', 'default'), (3, 'invite-Only', 'default'), (4, 'ticketed', 'default');
select requestnumid as номер_наряда, extnumbers as внешний_номер, 0 as тип_наряда, requestscheduledb as дата_закрытия, requeststatusname as статус_наряда, executors as исполнитель, 0 as ид_исполнителя, resourcetype as тип_договора, 0 as тип_услуги, technologyname as технология, actionname as тип_работ, task_group as тип_задания, 0 as работы, tasktypename as название_задания, buildingtype as тип_застройки, autorate as баллы_автомат, manualrate as баллы_вручную, sumrate as баллы_итого, base_points as баллы_базовые, additional_points as баллы_доп, deadline as статус_исполнения_в_срок, customer_type as сегмент_клиента, client_type as тип_клиента, mrf_id as мрф_ид, mrf as мрф, rf_id as рф_ид, rf as рф, city as город, org_line as организация_линии, phone as ota, internet as spd, iptv as iptv, 0 as ktv, ctv as ctv, 0 as code_name, 0 as flag_close_inst, load_dttm as load_dttm, src_id as src_id, package_id as package_id, 0 as deleted_ind, 0 as wf_run_id, 0 as upd_wf_run_id, 1 as eff_dttm, 1 as exp_dttm, 1 as upload_dttm from edw_ods.t_000117_report3wfm -- Дальний Восток where requestscheduledb between to_timestamp('2020-01-01', 'YYYY-MM-DD') and to_timestamp('2020-02-29', 'YYYY-MM-DD') and requeststatusname = 'Выполнена' --and task_group = 'Инсталляция' union all select requestnumid as номер_наряда, extnumbers as внешний_номер, 0 as тип_наряда, requestscheduledb as дата_закрытия, requeststatusname as статус_наряда, executors as исполнитель, 0 as ид_исполнителя, resourcetype as тип_договора, 0 as тип_услуги, technologyname as технология, actionname as тип_работ, task_group as тип_задания, 0 as работы, tasktypename as название_задания, buildingtype as тип_застройки, autorate as баллы_автомат, manualrate as баллы_вручную, sumrate as баллы_итого, base_points as баллы_базовые, additional_points as баллы_доп, deadline as статус_исполнения_в_срок, customer_type as сегмент_клиента, client_type as тип_клиента, mrf_id as мрф_ид, mrf as мрф, rf_id as рф_ид, rf as рф, city as город, org_line as организация_линии, phone as ota, internet as spd, iptv as iptv, 0 as ktv, ctv as ctv, 0 as code_name, 0 as flag_close_inst, load_dttm as load_dttm, src_id as src_id, package_id as package_id, 0 as deleted_ind, 0 as wf_run_id, 0 as upd_wf_run_id, 1 as eff_dttm, 1 as exp_dttm, 1 as upload_dttm from edw_ods.t_000093_report3wfm -- Сибирь where requestscheduledb between to_timestamp('2020-01-01', 'YYYY-MM-DD') and to_timestamp('2020-02-29', 'YYYY-MM-DD') and requeststatusname = 'Выполнена' --and task_group = 'Инсталляция' union all select requestnumid as номер_наряда, extnumbers as внешний_номер, 0 as тип_наряда, requestscheduledb as дата_закрытия, requeststatusname as статус_наряда, executors as исполнитель, 0 as ид_исполнителя, resourcetype as тип_договора, 0 as тип_услуги, technologyname as технология, actionname as тип_работ, task_group as тип_задания, 0 as работы, tasktypename as название_задания, buildingtype as тип_застройки, autorate as баллы_автомат, manualrate as баллы_вручную, sumrate as баллы_итого, base_points as баллы_базовые, additional_points as баллы_доп, deadline as статус_исполнения_в_срок, customer_type as сегмент_клиента, client_type as тип_клиента, mrf_id as мрф_ид, mrf as мрф, rf_id as рф_ид, rf as рф, city as город, org_line as организация_линии, phone as ota, internet as spd, iptv as iptv, 0 as ktv, ctv as ctv, 0 as code_name, 0 as flag_close_inst, load_dttm as load_dttm, src_id as src_id, package_id as package_id, 0 as deleted_ind, 0 as wf_run_id, 0 as upd_wf_run_id, 1 as eff_dttm, 1 as exp_dttm, 1 as upload_dttm from edw_ods.t_000079_report3wfm -- Центр where requestscheduledb between to_timestamp('2020-01-01', 'YYYY-MM-DD') and to_timestamp('2020-02-29', 'YYYY-MM-DD') and requeststatusname = 'Выполнена'-- and task_group = 'Инсталляция'
-- 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 mydb -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema arekkowalski -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema arekkowalski -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `arekkowalski` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci ; USE `arekkowalski` ; -- ----------------------------------------------------- -- Table `arekkowalski`.`klient` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`klient` ( `id_klient` INT NOT NULL, `nip` VARCHAR(15) NULL DEFAULT NULL, `imie` VARCHAR(45) NOT NULL, `nazwisko` VARCHAR(45) NOT NULL, `nr_telefonu` CHAR(9) NOT NULL, `rodzaj` ENUM('firma', 'kient_indywidualny') NOT NULL, PRIMARY KEY (`id_klient`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`adres` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`adres` ( `id_adres` INT NOT NULL, `miejscowosc` VARCHAR(50) NOT NULL, `kod_pocztowy` VARCHAR(7) NOT NULL, `nr_domu` VARCHAR(5) NOT NULL, `rodzaj` ENUM('firmowy', 'prywatny') NOT NULL, `klient` INT NULL DEFAULT NULL, PRIMARY KEY (`id_adres`), INDEX `fk_adres_klient1_idx` (`klient` ASC) VISIBLE, CONSTRAINT `fk_adres_klient1` FOREIGN KEY (`klient`) REFERENCES `arekkowalski`.`klient` (`id_klient`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`towar` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`towar` ( `id_towar` INT NOT NULL, `woda` ENUM('gazowana', 'niegazowana') NULL DEFAULT NULL, `pieczywo` ENUM('chleb', 'bułka') NULL DEFAULT NULL, `chleb` ENUM('pszenny', 'razowy') NULL DEFAULT NULL, `bułka` ENUM('pszenna', 'razowa') NULL DEFAULT NULL, `słodycze` ENUM('batonik', 'czekolada') NULL DEFAULT NULL, `batonik` ENUM('czekoladowy', 'karmelowy') NULL DEFAULT NULL, `czekolada` ENUM('mleczna', 'gorzka') NULL DEFAULT NULL, PRIMARY KEY (`id_towar`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`zamowienie` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`zamowienie` ( `id_zamowienie` INT NOT NULL, `data_zamowienia` DATE NOT NULL, `nr_zamowienia` INT UNSIGNED NOT NULL, `status_zamowienia` ENUM('zakonczone', 'wyslane', 'gotowe_do_odbioru', 'anulowane', 'przyjete_do_realizacji') NOT NULL, `klient` INT NULL DEFAULT NULL, PRIMARY KEY (`id_zamowienie`), INDEX `fk_zamowienie_klient1_idx` (`klient` ASC) VISIBLE, CONSTRAINT `fk_zamowienie_klient1` FOREIGN KEY (`klient`) REFERENCES `arekkowalski`.`klient` (`id_klient`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`pozycja_zamowienia` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`pozycja_zamowienia` ( `id_pozycja_zamowienia` INT NOT NULL, `cena_netto` DOUBLE UNSIGNED NOT NULL, `ilosc` INT UNSIGNED NOT NULL, `zamowienie` INT NULL DEFAULT NULL, `towar` INT NULL DEFAULT NULL, PRIMARY KEY (`id_pozycja_zamowienia`), INDEX `fk_pozycja_zamowienia_zamowienie1_idx` (`zamowienie` ASC) VISIBLE, INDEX `fk_pozycja_zamowienia_towar1_idx` (`towar` ASC) VISIBLE, CONSTRAINT `fk_pozycja_zamowienia_towar1` FOREIGN KEY (`towar`) REFERENCES `arekkowalski`.`towar` (`id_towar`), CONSTRAINT `fk_pozycja_zamowienia_zamowienie1` FOREIGN KEY (`zamowienie`) REFERENCES `arekkowalski`.`zamowienie` (`id_zamowienie`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`pracownik` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`pracownik` ( `imie` VARCHAR(15) NOT NULL, `id_pracownik` INT NOT NULL, `nazwisko` VARCHAR(15) NOT NULL, `pensja` DOUBLE UNSIGNED NOT NULL, `premia` DOUBLE NULL DEFAULT NULL, `data_zatrudniena` DATE NOT NULL, `nr_telefonu` CHAR(9) NOT NULL, `dzial` ENUM('marketing', 'produkcja', 'magazyn') NULL DEFAULT NULL, PRIMARY KEY (`id_pracownik`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`pracownicy_przy_zamowieniu` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`pracownicy_przy_zamowieniu` ( `id_zamowienie` INT NOT NULL, `id_pracownik` INT NOT NULL, PRIMARY KEY (`id_zamowienie`, `id_pracownik`), INDEX `fk_zamowienie_has_pracownik_pracownik1_idx` (`id_pracownik` ASC) VISIBLE, INDEX `fk_zamowienie_has_pracownik_zamowienie1_idx` (`id_zamowienie` ASC) VISIBLE, CONSTRAINT `fk_zamowienie_has_pracownik_pracownik1` FOREIGN KEY (`id_pracownik`) REFERENCES `arekkowalski`.`pracownik` (`id_pracownik`), CONSTRAINT `fk_zamowienie_has_pracownik_zamowienie1` FOREIGN KEY (`id_zamowienie`) REFERENCES `arekkowalski`.`zamowienie` (`id_zamowienie`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; -- ----------------------------------------------------- -- Table `arekkowalski`.`stan_magazynowy` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `arekkowalski`.`stan_magazynowy` ( `id_stan_magazynowy` INT NOT NULL, `ilosc` INT UNSIGNED NOT NULL, `jednostka_miary` VARCHAR(20) NOT NULL, `towar` INT NOT NULL, PRIMARY KEY (`id_stan_magazynowy`, `towar`), INDEX `fk_stan_magazynowy_towar1_idx` (`towar` ASC) VISIBLE, CONSTRAINT `fk_stan_magazynowy_towar1` FOREIGN KEY (`towar`) REFERENCES `arekkowalski`.`towar` (`id_towar`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; USE `arekkowalski` ; -- ----------------------------------------------------- -- procedure miesiac_suma_zamowien -- ----------------------------------------------------- DELIMITER $$ USE `arekkowalski`$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `miesiac_suma_zamowien`(IN liczba int, OUT suma int) BEGIN SELECT count(*) INTO suma from zamowienie where month(data_zamowienia) = liczba; END$$ DELIMITER ; USE `arekkowalski`; DELIMITER $$ USE `arekkowalski`$$ CREATE DEFINER=`root`@`localhost` TRIGGER `arekkowalski`.`rabat_before_insert` BEFORE INSERT ON `arekkowalski`.`pozycja_zamowienia` FOR EACH ROW BEGIN IF NEW.ilosc > 999 THEN SET NEW.cena_netto = new.cena_netto*0.9; END IF; END$$ USE `arekkowalski`$$ CREATE DEFINER=`root`@`localhost` TRIGGER `arekkowalski`.`stan_magazynowy_before_insert` BEFORE INSERT ON `arekkowalski`.`stan_magazynowy` FOR EACH ROW BEGIN if NEW.ilosc< 0 then set NEW.ilosc = 0; end if; END$$ DELIMITER ; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
CREATE TABLE `book_it`.`test` ( `idtest` INT NOT NULL AUTO_INCREMENT, PRIMARY KEY (`idtest`) );
use employees; EXPLAIN SELECT E.emp_no, CONCAT(first_name, ' ',last_name), from_date, to_date, salary FROM employees E, salaries S WHERE E.emp_no=S.emp_no ORDER BY E.emp_no, from_date
DROP SEQUENCE USERS_ID_SEQ; DROP SEQUENCE DRUG_ID_SEQ; DROP SEQUENCE DRUG_USER_SUITABILITY_ID_SEQ; DROP SEQUENCE EFFECT_ID_SEQ; DROP SEQUENCE USER_LOGIN_ID_SEQ; DROP SEQUENCE PATIENT_DETAILS_ID_SEQ; DROP SEQUENCE INCIDENT_ID_SEQ; DROP SEQUENCE PATIENT_ALLERGIES_ID_SEQ; DROP SEQUENCE DRUG_ALLERGY_ID_SEQ; DROP SEQUENCE DIAGNOSIS_ID_SEQ; DROP SEQUENCE DRUG_ILLNESS_ID_SEQ; DROP SEQUENCE DRUG_EFFECT_ID_SEQ; DROP SEQUENCE ILLNESS_ID_SEQ; DROP TABLE DRUG_ILLNESS CASCADE CONSTRAINTS; DROP TABLE DRUG_EFFECT CASCADE CONSTRAINTS; DROP TABLE DIAGNOSIS CASCADE CONSTRAINTS; DROP TABLE ILLNESS CASCADE CONSTRAINTS; DROP TABLE DRUG_USER_SUITABILITY CASCADE CONSTRAINTS; DROP TABLE INCIDENT CASCADE CONSTRAINTS; DROP TABLE EFFECT CASCADE CONSTRAINTS; DROP TABLE DRUG CASCADE CONSTRAINTS; DROP TABLE PATIENT_ALLERGIES CASCADE CONSTRAINTS; DROP TABLE DRUG_ALLERGY CASCADE CONSTRAINTS; DROP TABLE PATIENT_DETAILS CASCADE CONSTRAINTS; DROP TABLE USER_LOGIN CASCADE CONSTRAINTS; DROP TABLE USERS CASCADE CONSTRAINTS; DROP TABLE ROLES CASCADE CONSTRAINTS; CREATE TABLE ROLES ( ROLE_NAME VARCHAR2(50) PRIMARY KEY ); CREATE TABLE USERS ( ID NUMBER(5) NOT NULL, FORENAME VARCHAR(30) NOT NULL, SURNAME VARCHAR(30) NOT NULL, DOB DATE NOT NULL, EMAIL_ADDRESS VARCHAR(50) NOT NULL, ROLE_NAME VARCHAR2(50) NOT NULL, PRIMARY KEY (ID), CONSTRAINT FK_USER_ROLE_NAME FOREIGN KEY (ROLE_NAME) REFERENCES ROLES (ROLE_NAME) ); CREATE TABLE USER_LOGIN ( ID NUMBER(5) NOT NULL, USER_ID NUMBER(5) NOT NULL, USERNAME VARCHAR(20) NOT NULL, PASSWORD VARCHAR(20) NOT NULL, PRIMARY KEY (ID), CONSTRAINT FK_USER_LOGIN_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS(ID) ); CREATE TABLE PATIENT_DETAILS ( ID NUMBER(5) NOT NULL, USER_ID NUMBER(5) NOT NULL, HEIGHT NUMBER(5) NOT NULL, WEIGHT NUMBER(5) NOT NULL, ETHNICITY VARCHAR(100) NOT NULL, SMOKER NUMBER(1) NOT NULL, DIABETES NUMBER(1) NOT NULL, GENDER VARCHAR(10) NOT NULL, PRIMARY KEY (ID), CONSTRAINT FK_PATIENT_RECORD_USERID FOREIGN KEY (USER_ID) REFERENCES USERS(ID) ); CREATE TABLE PATIENT_ALLERGIES ( ID NUMBER(5) NOT NULL, USER_ID NUMBER(5) NOT NULL, ALLERGY VARCHAR(100) NOT NULL, CONSTRAINT FK_PATIENT_ALL_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS(ID), PRIMARY KEY (ID) ); CREATE TABLE DRUG ( ID NUMBER(5) NOT NULL, NAME VARCHAR(50) NOT NULL, DESCRIPTION VARCHAR(300) NULL, PRIMARY KEY(ID) ); CREATE TABLE DRUG_ALLERGY ( ID NUMBER(5) NOT NULL, DRUG_ID NUMBER(5) NOT NULL, ALLERGY VARCHAR(100) NOT NULL, PRIMARY KEY(ID), CONSTRAINT DRUG_ALLERGY_DRUG_ID FOREIGN KEY (DRUG_ID) REFERENCES DRUG(ID) ); CREATE TABLE EFFECT ( ID NUMBER(5) NOT NULL, NAME VARCHAR(30) NOT NULL, DESCRIPTION VARCHAR(300) NULL, PRIMARY KEY(ID) ); CREATE TABLE INCIDENT ( ID NUMBER (5) NOT NULL, USER_ID NUMBER (5) NOT NULL, DRUG_ID NUMBER (5) NOT NULL, EFFECT_ID NUMBER (5) NOT NULL, CONSTRAINT FK_INCIDENT_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS(ID), CONSTRAINT FK_INCIDENT_DRUG_ID FOREIGN KEY (DRUG_ID) REFERENCES DRUG(ID), CONSTRAINT FK_INCIDENT_EFFECT_ID FOREIGN KEY (EFFECT_ID) REFERENCES EFFECT(ID), PRIMARY KEY (ID) ); CREATE TABLE DRUG_USER_SUITABILITY ( ID NUMBER(5) NOT NULL, USER_ID NUMBER(5) NOT NULL, DRUG_ID NUMBER(5) NOT NULL, EFFECT_ID NUMBER(5) NOT NULL, INCOMPATIBILITY NUMBER(2) NOT NULL, CONSTRAINT FK_DRUG_USER_SUIT_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS(ID), CONSTRAINT FK_DRUG_USER_SUIT_DRUG_ID FOREIGN KEY (DRUG_ID) REFERENCES DRUG(ID), CONSTRAINT FK_DRUG_USER_SUIT_EFFECT_ID FOREIGN KEY (EFFECT_ID) REFERENCES EFFECT(ID), PRIMARY KEY(ID) ); CREATE TABLE ILLNESS ( ID NUMBER(5) NOT NULL, NAME VARCHAR(100) NOT NULL, DESCRIPTION VARCHAR(500) NOT NULL, PRIMARY KEY(ID) ); CREATE TABLE DRUG_ILLNESS ( ID NUMBER(5) NOT NULL, DRUG_ID NUMBER(5) NOT NULL, ILLNESS_ID NUMBER(5) NOT NULL, PRIMARY KEY(ID), CONSTRAINT DRUG_ILLNESS_DRUG_ID FOREIGN KEY (DRUG_ID) REFERENCES DRUG(ID), CONSTRAINT DRUG_ILLNESS_ILLNESS_ID FOREIGN KEY (ILLNESS_ID) REFERENCES ILLNESS(ID) ); CREATE TABLE DIAGNOSIS ( ID NUMBER(5) NOT NULL, USER_ID NUMBER(5) NOT NULL, ILLNESS_ID NUMBER(5) NOT NULL, PRIMARY KEY (ID), CONSTRAINT FK_DIAGNOSIS_USER_ID FOREIGN KEY(USER_ID) REFERENCES USERS(ID), CONSTRAINT FK_DIAGNOSIS_ILLNESS_ID FOREIGN KEY (ILLNESS_ID) REFERENCES ILLNESS(ID) ); CREATE TABLE DRUG_EFFECT ( ID NUMBER(5) NOT NULL, DRUG_ID NUMBER(5) NOT NULL, EFFECT_ID NUMBER(5) NOT NULL, PRIMARY KEY(ID), CONSTRAINT FK_DRUG_EFFECT_DRUG_ID FOREIGN KEY (DRUG_ID) REFERENCES DRUG(ID), CONSTRAINT FK_DRUG_EFFECT_EFFECT_ID FOREIGN KEY (EFFECT_ID) REFERENCES EFFECT(ID) ); CREATE SEQUENCE DRUG_EFFECT_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE ILLNESS_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE DRUG_ILLNESS_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE DIAGNOSIS_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE USERS_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE PATIENT_DETAILS_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE USER_LOGIN_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE PATIENT_ALLERGIES_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE INCIDENT_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE EFFECT_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE DRUG_USER_SUITABILITY_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE DRUG_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; CREATE SEQUENCE DRUG_ALLERGY_ID_SEQ START WITH 1 MAXVALUE 99999 MINVALUE 1 INCREMENT BY 1; INSERT INTO ROLES (ROLE_NAME) VALUES ('ADMIN'); INSERT INTO ROLES (ROLE_NAME) VALUES ('DOCTOR'); INSERT INTO ROLES (ROLE_NAME) VALUES ('PATIENT'); COMMIT;
CREATE TABLE IF NOT EXISTS field_sensor_data ( farmer_field_visit_id INT REFERENCES farmer_field_visit ON DELETE SET NULL, record_timestamp TIMESTAMP NOT NULL, position geography(Point,4326) NOT NULL, rainfall NUMERIC, humidity NUMERIC, temperature NUMERIC, light_intensity NUMERIC, UNIQUE (record_timestamp) ); CREATE TABLE IF NOT EXISTS field_geodata_vasham ( id SERIAL PRIMARY KEY, field_cif VARCHAR (20) UNIQUE NOT NULL, kabupaten_id INT REFERENCES master_kabupaten ON DELETE SET NULL, polygon GEOGRAPHY (POLYGON, 4326) )
DROP DATABASE IF EXISTS hospital_801166050; CREATE DATABASE hospital_801166050; DROP TABLE IF EXISTS physician; CREATE TABLE IF NOT EXISTS physician( id CHAR(6) NOT NULL, phy_name VARCHAR(30) DEFAULT NULL, certnum VARCHAR(20), phone VARCHAR(12) DEFAULT NULL, field VARCHAR(20), address varchar(50) DEFAULT NULL, PRIMARY KEY(id) ); DROP TABLE IF EXISTS nurse; CREATE TABLE IF NOT EXISTS nurse( id CHAR(6) NOT NULL, nur_name VARCHAR(30) DEFAULT NULL, certnum VARCHAR(20), address varchar(50) DEFAULT NULL, phone VARCHAR(12) DEFAULT NULL, PRIMARY KEY(id) ); DROP TABLE IF EXISTS patient; CREATE TABLE IF NOT EXISTS patient( id CHAR(6) NOT NULL, pat_name VARCHAR(30) DEFAULT NULL, address varchar(50) DEFAULT NULL, phone VARCHAR(12) DEFAULT NULL, PRIMARY KEY(id) ); DROP TABLE IF EXISTS monitors; CREATE TABLE IF NOT EXISTS monitors( physician_id CHAR(6), patient_id CHAR(6), duration VARCHAR(20), FOREIGN KEY (physician_id) REFERENCES physician(id), FOREIGN KEY (patient_id) REFERENCES patient(id) ); DROP TABLE IF EXISTS invoice; CREATE TABLE IF NOT EXISTS invoice ( id CHAR(6), pay_id CHAR(6) NOT NULL, charge DECIMAL(6,2) DEFAULT NULL, room_num CHAR(4) DEFAULT NULL, instruct_id CHAR(6) DEFAULT NULL, total decimal(10,2), PRIMARY KEY(pay_id), FOREIGN KEY (id) REFERENCES patient(id) ); DROP TABLE IF EXISTS instruction; CREATE TABLE IF NOT EXISTS instruction( pay_id CHAR(6), instruct_id CHAR(6) NOT NULL, fee DECIMAL(6,2), description VARCHAR(20), PRIMARY KEY(instruct_id), FOREIGN KEY (pay_id) REFERENCES invoice(pay_id) ); DROP TABLE IF EXISTS instruction_order; CREATE TABLE IF NOT EXISTS instruction_order( physician_id CHAR(6), patient_id CHAR(6), instruct_id CHAR(6), description VARCHAR(20), order_date date DEFAULT NULL, FOREIGN KEY (physician_id) REFERENCES physician(id), FOREIGN KEY (patient_id) REFERENCES patient(id), FOREIGN KEY (instruct_id) REFERENCES instruction(instruct_id) ); DROP TABLE IF EXISTS instruction_execution; CREATE TABLE IF NOT EXISTS instruction_execution( nurse_id CHAR(6), patient_id CHAR(6), instruct_id CHAR(6), execute_date date DEFAULT NULL, status VARCHAR(20), FOREIGN KEY (nurse_id) REFERENCES nurse(id), FOREIGN KEY (patient_id) REFERENCES patient(id), FOREIGN KEY (instruct_id) REFERENCES instruction(instruct_id) ); DROP TABLE IF EXISTS medication; CREATE TABLE IF NOT EXISTS medication( patient_id CHAR(6), nurse_id CHAR(6), medication VARCHAR(20), amount VARCHAR(20), FOREIGN KEY (patient_id) REFERENCES patient(id), FOREIGN KEY (nurse_id) REFERENCES nurse(id) ); DROP TABLE IF EXISTS health_record; CREATE TABLE IF NOT EXISTS health_record( id CHAR(6) NOT NULL, disease VARCHAR(20) NOT NULL, record_date date NOT NULL, status VARCHAR(20), description VARCHAR(20), PRIMARY KEY(id, disease, record_date), FOREIGN KEY (id) REFERENCES patient(id) ); DROP TABLE IF EXISTS room; CREATE TABLE IF NOT EXISTS room( room_num CHAR(4) NOT NULL, pay_id CHAR(6), capacity CHAR(6), fee DECIMAL(6,2), PRIMARY KEY(room_num) ); DROP TABLE IF EXISTS stays_in; CREATE TABLE IF NOT EXISTS stays_in( room_num CHAR(4), id CHAR(6), duration VARCHAR(20), FOREIGN KEY (room_num) REFERENCES room(room_num), FOREIGN KEY (id) REFERENCES patient(id) ); DROP TABLE IF EXISTS payment; CREATE TABLE IF NOT EXISTS payment( id CHAR(6), pay_id CHAR(6), payment_num CHAR(6) NOT NULL, payment_date date DEFAULT NULL, amount decimal(6,2), PRIMARY KEY(payment_num), FOREIGN KEY (id) REFERENCES patient(id), FOREIGN KEY (pay_id) REFERENCES invoice(pay_id) ); ALTER TABLE invoice ADD FOREIGN KEY (room_num) REFERENCES room(room_num); ALTER TABLE invoice ADD FOREIGN KEY (instruct_id) REFERENCES instruction(instruct_id); ALTER TABLE room ADD FOREIGN KEY (pay_id) REFERENCES invoice(pay_id); /* Views */ /* View 1 - Display the names of physicians and patients along with the instruction id, description, and date ordered */ CREATE VIEW instructionsOrdered AS SELECT DISTINCT phy_name, pat_name, instruction_order.instruct_id, description, order_date FROM instruction_order INNER JOIN physician ON physician.id = instruction_order.physician_id INNER JOIN patient ON patient.id = instruction_order.patient_id WHERE instruction_order.instruct_id IN (SELECT instruct_id FROM instruction_order) AND patient.id IN (SELECT patient_id FROM instruction_order) AND physician.id IN (SELECT physician_id FROM instruction_order); /* View 2 - Display the names of nurses and patients along with the instruction id, status, and date executed */ CREATE VIEW instructionsExecuted AS SELECT DISTINCT nur_name, pat_name, instruction_execution.instruct_id, status, execute_date FROM instruction_execution INNER JOIN nurse ON nurse.id = instruction_execution.nurse_id INNER JOIN patient ON patient.id = instruction_execution.patient_id WHERE instruction_execution.instruct_id IN (SELECT instruct_id FROM instruction_execution) AND patient.id IN (SELECT patient_id FROM instruction_execution) AND nurse.id IN (SELECT nurse_id FROM instruction_execution); /* View 3 - Display the names of nurses and patients along with the medication, and amount */ CREATE VIEW medicationsGiven AS SELECT DISTINCT nur_name, pat_name, medication, amount FROM medication INNER JOIN nurse ON nurse.id = medication.nurse_id INNER JOIN patient ON patient.id = medication.patient_id WHERE nurse.id IN (SELECT nurse_id FROM medication) AND patient.id IN (SELECT patient_id FROM medication); /* Trigger tables */ CREATE TABLE physician_audit ( id INT AUTO_INCREMENT PRIMARY KEY, phy_name VARCHAR(30) DEFAULT NULL, certnum VARCHAR(20), phone VARCHAR(12) DEFAULT NULL, field VARCHAR(20), address varchar(50) DEFAULT NULL ); CREATE TABLE nurse_audit ( id INT AUTO_INCREMENT PRIMARY KEY, nur_name VARCHAR(30) DEFAULT NULL, certnum VARCHAR(20), address varchar(50) DEFAULT NULL, phone VARCHAR(12) DEFAULT NULL ); CREATE TABLE patient_archive ( id INT AUTO_INCREMENT PRIMARY KEY, pat_name VARCHAR(30) DEFAULT NULL, address varchar(50) DEFAULT NULL, phone VARCHAR(12) DEFAULT NULL ); /* Triggers */ CREATE TRIGGER beforePhysicianUpdate BEFORE UPDATE ON physician FOR EACH ROW INSERT INTO physician_audit SET action = 'update', phy_name = OLD.phy_name, certnum = OLD.certnum, phone = OLD.phone, field = OLD.field, address = OLD.address; CREATE TRIGGER beforeNurseUpdate BEFORE UPDATE ON nurse FOR EACH ROW INSERT INTO nurse SET action = 'update', nur_name = OLD.nur_name, certnum = OLD.certnum, address = OLD.address, phone = OLD.phone; CREATE TRIGGER beforePatientDelete BEFORE DELETE ON patient FOR EACH ROW INSERT INTO patient_archive(pat_name, address, phone) VALUES(OLD.pat_name, OLD.address, OLD.phone);
CREATE DATABASE IF NOT EXISTS project; use project; create table patient ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(30) DEFAULT NULL, `sex` varchar(10) DEFAULT NULL, `birth_year` int DEFAULT NULL, `Covid19` int DEFAULT NULL, `result` double DEFAULT NULL, `datacolume1` MEDIUMTEXT DEFAULT NULL, `datacolume2` MEDIUMTEXT DEFAULT NULL, `datacolume3` MEDIUMTEXT DEFAULT NULL, PRIMARY KEY(`id`) )ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Составить список авторов с указанием количества изданных книг -- (в том числе в соавторстве). SELECT COUNT(books_authors.au_id) AS book_count, CONCAT(au_lname,' ', au_fname) AS author FROM books_authors, authors WHERE authors.au_id = books_authors.au_id GROUP BY books_authors.au_id ORDER BY book_count; -- Определить для каждого автора книгу с самым большим тиражом. SELECT MAX(circulation) AS max_circulation, CONCAT(au_lname,' ', au_fname) AS author FROM editions, authors, books_authors WHERE editions.book_id = books_authors.book_id AND authors.au_id = books_authors.au_id GROUP BY books_authors.au_id ORDER BY max_circulation; -- Определить авторов, для которых среднее число страниц в книге не превышает 100. SELECT CONCAT(au_lname,' ', au_fname) AS author, AVG(num_pages) AS pages FROM authors, editions, books_authors WHERE authors.au_id = books_authors.au_id AND editions.book_id = books_authors.book_id GROUP BY books_authors.au_id HAVING pages <= 100;
SELECT * FROM user WHERE user_id=:id
ALTER TABLE ESKALERINGSVARSEL ADD CONSTRAINT gjeldende CHECK ((AVSLUTTET_DATO IS NULL AND GJELDENDE = AKTOR_ID) OR (AVSLUTTET_DATO IS NOT NULL AND GJELDENDE IS NULL));
CREATE OR REPLACE FUNCTION zerobyte.DATETIME_TO_ZEROBYTE(d DATETIME) AS ( zerobyte.INT64_TO_ZEROBYTE(DATETIME_DIFF(d, '1970-01-01', MICROSECOND)) );
-- NQ5 : finding new auctions with the most number of bids (every 2 seconds, analyzing the last 10 second if possible) -- using window duration of 10s, slide of 2s -- ORIGINAL QUERY : -- SELECT Rstream(auction) -- FROM (SELECT B1.auction, count(*) AS num -- FROM Bid [RANGE 60 MINUTE SLIDE 1 MINUTE] B1 -- GROUP BY B1.auction) -- WHERE num >= ALL (SELECT count(*) -- FROM Bid [RANGE 60 MINUTE SLIDE 1 MINUTE] B2 -- GROUP BY B2.auction); drop table if exists bids cascade; create table bids ( bidder_id integer, bid_amount integer, auction_id integer, event_time double precision, primary key (bidder_id, auction_id, bid_amount) ); copy bids from 'DIR/BENCHMARK_NAME/generator-bids.tsv'; alter table bids add column slice_id integer; update bids set slice_id = floor(event_time / 2); delete from bids where slice_id < (select min(window_id) from results); -- update bids set slice_id = slice_id - (select floor(min(slice_id)) from bids); drop table if exists results cascade; create table results ( window_id integer, auction_id integer, nof_bids integer, primary key (window_id, auction_id) ); copy results from 'DIR/BENCHMARK_NAME/collector.tsv'; -- update results set window_id = window_id - (select min(window_id) from results); create view slices as select slice_id as id, auction_id, count(*) as nof_bids from bids group by slice_id, auction_id order by slice_id asc, auction_id asc; create view windows_view as select sa.id as window_id, sa.auction_id as auction_id, sum(sb.nof_bids) as nof_bids from slices sa join slices sb on sa.auction_id = sb.auction_id and sa.id <= sb.id and sb.id < sa.id + (10 / 2) group by sa.id, sa.auction_id order by sa.id, sa.auction_id; create view sql_results as select vb.window_id, vb.auction_id, vb.nof_bids from ( select window_id, max(nof_bids) as nof_bids from windows_view group by window_id ) va join windows_view vb on va.window_id = vb.window_id and vb.nof_bids = va.nof_bids where vb.window_id <= (select max(window_id) from results); create view comparison as select sql_results.window_id as sql_window_id, results.window_id as window_id, sql_results.auction_id as sql_auction_id, results.auction_id as auction_id, sql_results.nof_bids as sql_nof_bids, results.nof_bids as nof_bids from sql_results full join results on sql_results.window_id = results.window_id and sql_results.auction_id = results.auction_id and sql_results.nof_bids = results.nof_bids order by sql_results.window_id, results.window_id; -- when i delete only once it doesn't seem to work, i don't know why delete from bids where slice_id < (select min(window_id) from results);
select * from TableTest where id > 1 and id < 3 select * from TableTest as t1 inner join Test1 as t2 on t1.Id = t2.Id --where t1.id > 1 and t1.id < 3 select * from TableTest as t1 right outer join Test1 as t2 on t1.Id = t2.Id --where t1.id > 1 and t1.id < 3 select * from TableTest as t1 full outer join Test1 as t2 on t1.Id = t2.Id select * from TableTest as t1 cross join Test1 as t2
-------------------------------------------------------------------------------------------------------------------------------------------------- --- Alter script for adding columns passwordSalt to Login Table and isVisibleToSeason to LookupDepartments table on 6th August 2015--------------- -------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE `cci_gh_go`.`Login` CHANGE `password` `password` VARCHAR(200) NOT NULL, ADD COLUMN `passwordSalt` VARCHAR(200) NOT NULL AFTER `password`; ALTER TABLE `cci_gh_go`.`LookupDepartments` ADD COLUMN `isVisibleToSeason` TINYINT(1) DEFAULT 0 AFTER `acronym`; -------------------------------------------------------------------------------------------------------------------------------------------------- --- Alter script for adding PK for cciStaffUserId and dropping previously created id column and UNIQUE INDEX on cciStaffUserId on 12th Aug 2015--- -------------------------------------------------------------------------------------------------------------------------------------------------- SET FOREIGN_KEY_CHECKS = 0; ALTER TABLE `cci_gh_go`.`CCIStaffUsers` CHANGE `cciStaffUserId` `cciStaffUserId` INT(11), DROP FOREIGN KEY `FK_CCIStaffUsers_login`, DROP COLUMN `loginId`, ADD CONSTRAINT `FK_CCIStaffUsers_GoIdSequence` FOREIGN KEY (`cciStaffUserId`) REFERENCES `cci_gh_go`.`GoIdSequence`(`goId`) ON UPDATE NO ACTION; SET FOREIGN_KEY_CHECKS = 1; -------------------------------------------------------------------------------------------------------------------------------------------------- --- Alter script for adding Unique Key to sesaonName column in Season table on 20th Aug 2015------------------------------------------------------ -------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE `cci_gh_go`.`Season` ADD UNIQUE INDEX IND_seasonName(seasonName); -------------------------------------------------------------------------------------------------------------------------------------------------- --- Alter script for adding email column and changing passwordSalt column to keyValue in Login table on 24th Aug 2015 ---------------------------- -------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE `Login` CHANGE `passwordSalt` `keyValue` VARCHAR(200) NOT NULL; ALTER TABLE `Login` ADD COLUMN `email` VARCHAR(50) NOT NULL AFTER `keyValue`; -------------------------------------------------------------------------------------------------------------------------------------------------- --- Alter script for changing departmentProgram column to lookupDepartmentProgram in CCIStaffUserProgram table on 8th Sep 2015 ------------------- -------------------------------------------------------------------------------------------------------------------------------------------------- SET FOREIGN_KEY_CHECKS =0; ALTER TABLE `cci_gh_go`.`CCIStaffUserProgram` CHANGE `departmentProgramId` `lookupDepartmentProgramId` INT(11) NOT NULL AFTER `cciStaffUserId`, DROP INDEX `FK_CCIStaffUserProgram_DepartmentPrograms`, DROP FOREIGN KEY `FK_CCIStaffUserProgram_DepartmentPrograms`, ADD CONSTRAINT `FK_CCIStaffUserProgram_LookupDepartmentPrograms` FOREIGN KEY (`lookupDepartmentProgramId`) REFERENCES `cci_gh_go`.`LookupDepartmentPrograms`(`lookupDepartmentProgramId`); SET FOREIGN_KEY_CHECKS =1; --------------------------------------------------------------------------------------------------------------------------------------------------- --- Alter script for changing length of seasonName and programName columns in all Season related tables as per BUG # 171,192,197 on 8th Sep 2015-- --------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE Season MODIFY seasonName VARCHAR(35); ALTER TABLE Season MODIFY seasonFullName VARCHAR(35); ALTER TABLE SeasonCAPDetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonF1Details MODIFY programName VARCHAR(55); ALTER TABLE SeasonHSADetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonIHPDetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonJ1Details MODIFY programName VARCHAR(55); ALTER TABLE SeasonLSDetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonTADetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonVADetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonWADetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonWnTSpringDetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonWnTSummerDetails MODIFY programName VARCHAR(55); ALTER TABLE SeasonWnTWinterDetails MODIFY programName VARCHAR(55); --------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------- Alter script in Partner DB Model based on new mock up screens changes on 20th October 2015------------------------ --------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE `PartnerAgentInquiries` ADD COLUMN rating INT(3) AFTER companyName; ALTER TABLE `PartnerContact` ADD COLUMN isPrimary TINYINT(1) DEFAULT 0 AFTER salutationId; DROP TABLE `PartnerCCIContact`; ALTER TABLE `PartnerProgram` DROP COLUMN isOther,DROP COLUMN isPDNotified; ALTER TABLE `PartnerProgram` DROP FOREIGN KEY FK_PartnerProgram_CCIStaffUser, DROP INDEX FK_PartnerProgram_CCIStaffUser, DROP COLUMN markedEligibleBy; ALTER TABLE `PartnerProgram` ADD COLUMN cciStaffUserId INT(11), ADD INDEX `FK_PartnerProgram_CCIStaffUser_idx` (`cciStaffUserId` ASC), ADD CONSTRAINT `FK_PartnerProgram_CCIStaffUser` FOREIGN KEY (`cciStaffUserId`) REFERENCES `CCIStaffUsers` (`cciStaffUserId`) ON DELETE NO ACTION ON UPDATE NO ACTION ; ALTER TABLE `PartnerSeason` ADD COLUMN canCreateSubPartner TINYINT(1) DEFAULT 0; --------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------- Alter script for Partner Change Requests for Deadline date and Allocations 26th October 2015---------------------- --------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE `PartnerSeason` ADD COLUMN isSignedContract TINYINT(1) NOT NULL DEFAULT 0; ALTER TABLE PartnerSeason ADD COLUMN partnerDeadlineRequestStatusId INT , ADD COLUMN partnerSecSemDeadlineRequestStatusId INT , ADD COLUMN deadlineRequestedBy INT, ADD COLUMN deadlineRequestedOn DATETIME, ADD COLUMN deadlineRequestReviewedBy INT, ADD COLUMN deadlineRequestReviewedOn DATETIME, ADD CONSTRAINT `FK_PartnerSeason_PartnerStatus1` FOREIGN KEY (partnerDeadlineRequestStatusId) REFERENCES `PartnerStatus` (`partnerStatusId`), ADD CONSTRAINT `FK_PartnerSeason_PartnerStatus2` FOREIGN KEY (partnerSecSemDeadlineRequestStatusId) REFERENCES `PartnerStatus` (`partnerStatusId`), ADD CONSTRAINT `FK_PartnerSeason_Login` FOREIGN KEY (deadlineRequestedBy) REFERENCES `Login` (`loginId`), ADD CONSTRAINT `FK_PartnerSeason_CCIStaffUsers1` FOREIGN KEY (deadlineRequestReviewedBy) REFERENCES `CCIStaffUsers` (`cciStaffUserId`); ALTER TABLE PartnerSeasonAllocation ADD COLUMN requestedMaxPax INT AFTER maxPax, ADD COLUMN requestedMaxGuaranteedPax INT AFTER maxGuaranteedPax , ADD COLUMN allocationRequestStatusId INT, ADD COLUMN allocationRequestedBy INT, ADD COLUMN allocationRequestedOn DATETIME, ADD COLUMN allocationRequestReviewedBy INT, ADD COLUMN allocationRequestReviewedOn DATETIME, ADD CONSTRAINT `FK_PartnerSeasonAllocation_PartnerStatus` FOREIGN KEY (allocationRequestStatusId) REFERENCES PartnerStatus (partnerStatusId), ADD CONSTRAINT `FK_PartnerSeasonAllocation_Login` FOREIGN KEY (allocationRequestedBy) REFERENCES `Login` (`loginId`), ADD CONSTRAINT `FK_PartnerSeasonAllocation_CCIStaffUsers` FOREIGN KEY (allocationRequestReviewedBy) REFERENCES `CCIStaffUsers` (`cciStaffUserId`); --------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------- Alter script for Partner Note & Partner Note Topics on 29th October 2015------------------------------------------ --------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE PartnerUser ADD COLUMN `partnerOfficeId` INT AFTER `salutationId`, ADD CONSTRAINT `FK_PartnerUser_PartnerOffice` FOREIGN KEY (`partnerOfficeId`) REFERENCES PartnerOffice (`partnerOfficeId`); ALTER TABLE PartnerNoteTopics ADD COLUMN isVisibleToPartner TINYINT(1) DEFAULT 0 AFTER f1, ADD COLUMN createdOn TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP AFTER isVisibleToPartner, ADD COLUMN createdBy INT NULL AFTER createdOn, ADD COLUMN modifiedOn TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP AFTER createdBy, ADD COLUMN modifiedBy INT NULL AFTER modifiedOn; ALTER TABLE PartnerNotes ADD COLUMN hasRead TINYINT(1) DEFAULT 0 AFTER `partnerNote`; --------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------- Alter script for Admin QS on 17th November 2015------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------------- DROP TABLE `AdminQuickStatsTypeAggregate`; ALTER TABLE `cci_gh_go_login`.`AdminQuickStatsCategoryAggregate` DROP INDEX `FK_AdminQSCategoryAggregate_LookupDepartmentPrograms`, DROP FOREIGN KEY `FK_AdminQSCategoryAggregate_LookupDepartmentPrograms`, DROP COLUMN `lookupdepartmentProgramId`, ADD COLUMN `adminQSCategoryAggregate` INT NULL AFTER `adminQSCategoryName`, ADD COLUMN `status` VARCHAR(50) NULL AFTER `adminQSCategoryAggregate`; ALTER TABLE `cci_gh_go_login`.`AdminQuickStatsCategoryAggregate` DROP INDEX `FK_AdminQSCategoryAggregate_CCIStaffUSers`, DROP FOREIGN KEY `FK_AdminQSCategoryAggregate_CCIStaffUSers`, DROP COLUMN `adminGoId`; --------------------------------------------------------------------------------------------------------------------------------------------------- -- Alter script for adding followup Date column in PartnerSeason,PartnerSeasonAllocations, Partner Notes tables on 25th November 2015 ------------- --------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE PartnerNotes ADD COLUMN followupDate DATETIME; ALTER TABLE `PartnerSeason` ADD COLUMN appDeadlineFollowupDate DATETIME, ADD COLUMN appSecSemDeadlineFollowupDate DATETIME; ALTER TABLE `PartnerSeasonAllocation` ADD COLUMN janStartFollowupDate DATETIME, ADD COLUMN augStartFollowupDate DATETIME; --------------------------------------------------------------------------------------------------------------------------------------------------- -- Alter script for adding column in PartenrUser and delete PartnerContact tables on 23rd December 2015 ------------- --------------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE `PartnerUser` ADD COLUMN recieveNotificationEmails TINYINT(1) DEFAULT 0; ALTER TABLE `PartnerUser` ADD COLUMN website VARCHAR (50); DROP TABLE `PartnerContact`; -------------------------------------------------------------------------------------------------------------------------------------------- -- Alter script for adding column in Partner, FS on 2nd Feb 2016 ------------- --------------------------------------------------------------------------------------------------------------------------------------------- ALTER TABLE PartnerOffice ADD COLUMN email VARCHAR(100); ALTER TABLE Partner ADD COLUMN cciGeneralContact INT(11), ADD CONSTRAINT `FK_Partner_CCIStaffUsers` FOREIGN KEY (`cciGeneralContact`) REFERENCES `CCIStaffUsers`(`cciStaffuserId`) ON UPDATE NO ACTION; ALTER TABLE FieldStaff ADD COLUMN bestNumberHome TINYINT(1) DEFAULT 0; ALTER TABLE FieldStaff ADD COLUMN bestNumberWork TINYINT(1) DEFAULT 0; ALTER TABLE FieldStaff ADD COLUMN bestNumberCell TINYINT(1) DEFAULT 0; ALTER TABLE FieldStaffStatus ADD COLUMN isSeasonStatus TINYINT(1); ALTER TABLE FieldStaffAnnouncement ADD COLUMN departmentProgramId INT, ADD CONSTRAINT `FK_FieldStaffAnnouncement_DepartmentPrograms` FOREIGN KEY (`departmentProgramId`) REFERENCES `DepartmentPrograms`(`departmentProgramId`) ON UPDATE NO ACTION; ALTER TABLE FieldStaffAnnouncement ADD COLUMN fieldStaffGoId INT, ADD CONSTRAINT `FK_FieldStaffAnnouncement_FieldStaff` FOREIGN KEY (`fieldStaffGoId`) REFERENCES `FieldStaff`(`fieldStaffGoId`) ON UPDATE NO ACTION; ALTER TABLE Participants DROP COLUMN email;
-- Fix Awards Day 6 select a.award_number, d.award_number ,a.award_id,d.award_id from award a, award_custom_data d where a.award_id = d.award_id and a.award_number in ( '001302-00001','002172-00001','002171-00001','001845-00001','001448-00001','002207-00001','002262-00001','002115-00001','001991-00001','001978-00001','001813-00001','002105-00001','002078-00001','001308-00001','001794-00001' ); update award_custom_data a SET award_number = (SELECT award_number FROM award B WHERE A.award_id = B.award_id) where a.award_id in (select award_id from award a where a.award_number in ( '001302-00001','002172-00001','002171-00001','001845-00001','001448-00001','002207-00001','002262-00001','002115-00001','001991-00001','001978-00001','001813-00001','002105-00001','002078-00001','001308-00001','001794-00001' )); select * from award_amount_transaction where REGEXP_LIKE(award_number, '001302-.*|002172-.*|002171-.*|001845-.*|001448-.*|002207-.*|002262-.*|002115-.*|001991-.*|001978-.*|001813-.*|002105-.*|002078-.*|001308-.*|001794-.*' ); select award_number,update_timestamp,sum(obligated_change),'Y' AFFECTS_DAILY_CHECK from award_transaction_summ_view where update_timestamp < '01 Feb 2012' and award_number in ( '001302-00001','002172-00001','002171-00001','001845-00001','001448-00001','002207-00001','002262-00001','002115-00001','001991-00001','001978-00001','001813-00001','002105-00001','002078-00001','001308-00001','001794-00001' ) group by award_number,update_timestamp union select award_number,update_timestamp,sum(obligated_change),'N' AFFECTS_DAILY_CHECK from award_transaction_summ_view where update_timestamp >= '01 Feb 2012' and award_number in ( '001302-00001','002172-00001','002171-00001','001845-00001','001448-00001','002207-00001','002262-00001','002115-00001','001991-00001','001978-00001','001813-00001','002105-00001','002078-00001','001308-00001','001794-00001' ) group by award_number,update_timestamp order by AFFECTS_DAILY_CHECK desc,award_number,update_timestamp; update award_amount_transaction set update_timestamp = current_date where REGEXP_LIKE(award_number, '001302-.*|002172-.*|002171-.*|001845-.*|001448-.*|002207-.*|002262-.*|002115-.*|001991-.*|001978-.*|001813-.*|002105-.*|002078-.*|001308-.*|001794-.*' );
CREATE PROC ERP.Usp_Del_MovimientoTransferencia @ID INT AS BEGIN DELETE FROM ERP.MovimientoTransferenciaCuenta WHERE ID = @ID END
use posapp; create table outlets( id int(10) not null auto_increment, name varchar(50) not null, address text not null, phone varchar(20) not null, primary key(id) )engine=InnoDB; drop table outlets; desc outlets; select * from outlets;
INSERT INTO Student VALUES (1,'ICT', 'mdu@gmail.com', 'Mduduzi','NorthWest','Silinda'); INSERT INTO Student VALUES (2,'DEV', 'sibiya@gmail.com', 'Norah','Limpopo','Sibiya'); INSERT INTO Student VALUES (3,'AGRIC', 'goodness@gmail.com', 'Goodness','WesternCape','Mhlongo'); INSERT INTO Student VALUES (4,'HOSPI', 'violet@gmail.com', 'violet','Mpumalanga','Msimango'); INSERT INTO Student VALUES (5,'ELECTR', 'ntando@gmail.com', 'Ntando','FreeState','Mawelela'); INSERT INTO Student VALUES (6,'HR', 'ncobile@gmail.com', 'Nqobile','Gauteng','Silindane');
CREATE TABLE `faq` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `order` int(10) UNSIGNED NOT NULL DEFAULT '0', `question` text NOT NULL, `answer` text NOT NULL, `categories` text NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
//script query create table create table mountain ( id varchar(255) not null, mountain_name varchar(30), photo varchar(50), description varchar(255), height int, full_address varchar(255), created_date TIMESTAMP, created_by varchar(30), updated_date TIMESTAMP, updated_by varchar(30), primary key (id) ); create table bank ( id varchar(255) not null, mountain_id varchar(255), bank_name varchar(255) not null, account_name varchar(255) not null, account_number varchar(255) not null, is_deleted int null, created_date varchar(255), created_by varchar(255), updated_date varchar(255), updated_by varchar(255), primary key (id), foreign key (mountain_id) references mountain (id) ); create table basecamp ( id varchar(255) not null, mountain_id varchar(255) not null, basecamp_name varchar(255) not null, description varchar(255) not null, photo varchar(255) not null, regulation varchar(255) not null, full_address varchar(255) not null, price int not null, total_climber int, request_climber TIMESTAMP, created_date TIMESTAMP, created_by varchar(30), updated_date TIMESTAMP, updated_by varchar(30), primary key (id), foreign key (mountain_id) references mountain (id) ); create table tracking ( id varchar(255) not null, tracking_map varchar(30) not null, status varchar(30) not null, reason varchar(255) not null, created_date timestamp, created_by varchar(30), updated_date timestamp, updated_by varchar(30), primary key (id) ); CREATE table USERS ( id varchar(255) not null, mountain_id varchar(255), nik varchar(16) not null, phone_number varchar(12) unique not null, username varchar(20) unique not null, photo varchar(50), first_name varchar(30) not null, last_name varchar(30) not null, address varchar(255) not null, email varchar(30) not null, pin varchar(255) not null, confirmation_pin varchar(255) not null, role varchar(20) not null, is_deleted int, created_date timestamp, updated_date timestamp, primary key (id), FOREIGN key (mountain_id) REFERENCES mountain (id) ); CREATE table status ( id varchar(255) not null, users_id varchar(255) not null, mountain_id varchar(255), username varchar(30) not null, role varchar(20) not null, status varchar(300) not null, photo varchar(50), created_date timestamp, primary key (id), foreign key (users_id) references USERS (id), foreign key (mountain_id) references mountain (id) ); create table reply_status ( id varchar(255) not null, status_id varchar(300) not null, username varchar(30) not null, role varchar(20) not null, reply varchar(300) not null, created_date timestamp, primary key (id), foreign key (status_id) references status (id) ); CREATE table app ( id int primary key, name varchar(10) not null, app_id varchar(255) not null, app_key varchar(20) not null ); create table equipment ( id varchar(255) primary key, back_pack int not null, water int not null, mattress int not null, tent int not null, food int not null, stove int not null, nesting int not null, rain_coat int not null, flash_light int not null, created_date TIMESTAMP, updated_date TIMESTAMP ); create table request_mountain ( id varchar(255) not null, users_id varchar(255) not null, basecamp_id varchar(255) not null, equipment_id varchar(255) not null, tracking_id varchar(255) not null, total_climber int not null, mountain_name varchar(30) not null, tracking_status int not null, price int not null, payment int, account_name varchar(255) not null, bank_name varchar(255) not null, photo_payment varchar(255) not null, name_payment_user varchar(255), bank_payment_user varchar(255), climber_date TIMESTAMP not null, created_date TIMESTAMP, updated_date TIMESTAMP, primary key (id), FOREIGN key (users_id) REFERENCES users (id), FOREIGN key (basecamp_id) REFERENCES basecamp (id), FOREIGN key (equipment_id) REFERENCES equipment (id), foreign key (tracking_id) references tracking (id) ); create table member ( id varchar(255) not null, request_id varchar(255) not null, nik varchar(20) not null, phone_number varchar(12) not null, name varchar(30) not null, province varchar(50) not null, head int not null, city varchar(50) not null, sub_district varchar(50) not null, village varchar(50) not null, full_address varchar(255) not null, created_date TIMESTAMP, updated_date TIMESTAMP, primary key (id), FOREIGN KEY (request_id) references request_mountain (id) ); insert into roles(name) values ('USER'); insert into roles(name) values ('RANGER'); insert into roles(name) values ('SYSADMIN');
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jul 23, 2017 at 04:53 AM -- Server version: 10.1.13-MariaDB -- PHP Version: 7.0.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `bcjj_db` -- -- -------------------------------------------------------- -- -- Table structure for table `g_labs` -- CREATE TABLE `g_labs` ( `id` int(11) NOT NULL, `subscriber_number` varchar(100) NOT NULL, `access_token` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `NO` int(11) NOT NULL, `NAME` varchar(100) NOT NULL, `EMAIL` varchar(100) NOT NULL, `PASSWORD` varchar(100) NOT NULL, `PLATFORM` varchar(100) NOT NULL, `CONTACTNO` varchar(15) NOT NULL, `SMSSETUP` varchar(10) NOT NULL, `TIME` varchar(50) NOT NULL, `TO_LOCATION` varchar(500) NOT NULL, `FROM_LOCATION` varchar(500) NOT NULL, `DATE` varchar(50) NOT NULL, `DELETION` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`NO`, `NAME`, `EMAIL`, `PASSWORD`, `PLATFORM`, `CONTACTNO`, `SMSSETUP`, `TIME`, `TO_LOCATION`, `FROM_LOCATION`, `DATE`, `DELETION`) VALUES (1, 'Johnmark Abril', 'johnmarkabril@gmail.com', 'ae2b1fca515949e5d54fb22b8ed95575', 'Local', '09208317004', 'YES', '10:24 AM', 'Guillermo Gagalangin Tondo, Manila', 'Ayala Avenue', 'July 23, 2017', 0), (4, 'Jm Abril', '1685771221436281@facebook.com', '9849c740ae4f7650ef1eb88e272d20f6', 'Facebook', '', 'NO', '', '', '', 'July 24, 2017', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `g_labs` -- ALTER TABLE `g_labs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`NO`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `g_labs` -- ALTER TABLE `g_labs` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `NO` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; /*!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 */;
-- tables multi -- depends: 20211004_08_tcYYs-orders-drop-constraints CREATE TABLE table1 (id SERIAL PRIMARY KEY); CREATE TABLE table2 (id SERIAL PRIMARY KEY); CREATE TABLE table3 (id SERIAL PRIMARY KEY);
--E-R模型 即E-R图 即实体-联系图 --是指提供了表示实体型 属性和联系的方法,用来描述现实世界的概念模型 --在设计阶段一般使用E-R模型进行建模power designer ,db desinger等工具 --然后才是设计数据库 --多对多时候,需要一个附加表 /* 表间关系: 一对一 一个表中的一条数据能够和另外一个表的唯一一条数据对于 人和常驻地址 一对多 一个表中的数据能够另外一个表中多条数据对于 一个班有多个学生 多对多 一个表中的一条数据能够和另外一个表的多条数据对应,反之也对应 一个学生有多个课程 处理多对多的关系,建立中间表 */
.echo on .headers on --Name: Aaron Colclough --File: TSQL-Lab6-2.sql --Date: Sept 4, 2018 --1 select c.country from customers c union select s.country from suppliers s; --2 select c.city, c.country from customers c union select s.city, s.country from suppliers s order by country; --3 select c.country from customers c intersect select s.country from suppliers s; --4 select c.city, c.country from customers c intersect select s.city, s.country from suppliers s; --5 select c.country from customers c except select s.country from suppliers s; --6 select s.country from suppliers s except select c.country from customers c;
/* ################################################################################ Migration script to remove a wrong constraint created in 002 Designed for execution with Flyway database migrations tool; this should be automatically run to completely generate the schema that is out-of-the-box compatibile with the GOCI model (see https://github.com/tburdett/goci/tree/2.x-dev/goci-core/goci-model for more). author: Tony Burdett date: January 21st 2015 version: 1.9.9.003 (pre 2.0) ################################################################################ */ /* ########################################### # REMOVE WRONG CONSTRAINT ON JOIN TABLE # ########################################### */ -------------------------------------------------------- -- Drop constraint on Table ASSOCIATION_EFO_TRAIT -------------------------------------------------------- ALTER TABLE "ASSOCIATION_EFO_TRAIT" DROP CONSTRAINT "ASSOC_TRAIT_ID_UK"; DROP INDEX "ASSOC_TRAIT_ID_UK";
SELECT DISTINCT team.short_name, team.base_location, driver.first_name, driver.country_of_birth, track.circuit_country FROM Teams team, Drivers driver, Tracks track WHERE (team.driver_one=driver.driver_id OR team.driver_two=driver.driver_id) AND track.lap_recorder=driver.driver_id AND (track.circuit_country="Monaco" OR track.circuit_country="France") AND NOT EXISTS (SELECT * from Tracks t WHERE t.lap_recorder=driver.driver_id AND t.circuit_country<>"France" AND t.circuit_country<>"Monaco") ORDER BY team.short_name ASC -- We are looking for teams that has a lap recorder only in countries France or Monaco. -- Therefor we first pick the teams with drivers who are lap recorder in France or Monaco and check -- if they are also lap recorder in tracks that are not in france and not in Monaco with the help of NOT EXIST().
--SOURCE of data Eurostat. Culture and tourism - cities and greater cities. Available online:https://ec.europa.eu/eurostat/data/database (accessed on 10 October 2019). create table eu_city_tour (year integer, code text, city text, indi text, value numeric); INSERT INTO eu_city_tour (year, code, city, indi, value) VALUES ('2015', 'BE', 'Belgium', 'ons', '38380415'), ('2015', 'BE', 'Belgium', 'beds', '277248'), ('2015', 'BE', 'Belgium', 'ons_per_res_pop', '3.4'), ('2015', 'BE', 'Belgium', 'beds_per_1000res_pop', '24.6'), ('2015', 'BE001C1', 'Bruxelles / Brussel', 'ons', '6443213'), ('2015', 'BE001C1', 'Bruxelles / Brussel', 'beds', '38137'), ('2015', 'BE001C1', 'Bruxelles / Brussel', 'ons_per_res_pop', '5.4'), ('2015', 'BE001C1', 'Bruxelles / Brussel', 'beds_per_1000res_pop', '31.9'), ('2015', 'BE002C1', 'Antwerpen', 'ons', null), ('2015', 'BE002C1', 'Antwerpen', 'beds', '12181'), ('2015', 'BE002C1', 'Antwerpen', 'ons_per_res_pop', null), ('2015', 'BE002C1', 'Antwerpen', 'beds_per_1000res_pop', '23.6'), ('2015', 'BE003C1', 'Gent', 'ons', null), ('2015', 'BE003C1', 'Gent', 'beds', '6436'), ('2015', 'BE003C1', 'Gent', 'ons_per_res_pop', null), ('2015', 'BE003C1', 'Gent', 'beds_per_1000res_pop', '25.3'), ('2015', 'BE004C1', 'Charleroi', 'ons', '242703'), ('2015', 'BE004C1', 'Charleroi', 'beds', '1365'), ('2015', 'BE004C1', 'Charleroi', 'ons_per_res_pop', '1.2'), ('2015', 'BE004C1', 'Charleroi', 'beds_per_1000res_pop', '6.7'), ('2015', 'BE005C1', 'Liège', 'ons', null), ('2015', 'BE005C1', 'Liège', 'beds', '2744'), ('2015', 'BE005C1', 'Liège', 'ons_per_res_pop', null), ('2015', 'BE005C1', 'Liège', 'beds_per_1000res_pop', '7.2'), ('2015', 'BE006C1', 'Brugge', 'ons', null), ('2015', 'BE006C1', 'Brugge', 'beds', '10913'), ('2015', 'BE006C1', 'Brugge', 'ons_per_res_pop', null), ('2015', 'BE006C1', 'Brugge', 'beds_per_1000res_pop', '92.2'), ('2015', 'BE007C1', 'Namur', 'ons', null), ('2015', 'BE007C1', 'Namur', 'beds', '1352'), ('2015', 'BE007C1', 'Namur', 'ons_per_res_pop', null), ('2015', 'BE007C1', 'Namur', 'beds_per_1000res_pop', '12.1'), ('2015', 'BE008C1', 'Leuven', 'ons', '488679'), ('2015', 'BE008C1', 'Leuven', 'beds', '3414'), ('2015', 'BE008C1', 'Leuven', 'ons_per_res_pop', '5'), ('2015', 'BE008C1', 'Leuven', 'beds_per_1000res_pop', '34.6'), ('2015', 'BE009C1', 'Mons', 'ons', '163357'), ('2015', 'BE009C1', 'Mons', 'beds', '1173'), ('2015', 'BE009C1', 'Mons', 'ons_per_res_pop', '1.7'), ('2015', 'BE009C1', 'Mons', 'beds_per_1000res_pop', '12.3'), ('2015', 'BE010C1', 'Kortrijk', 'ons', '228632'), ('2015', 'BE010C1', 'Kortrijk', 'beds', '1793'), ('2015', 'BE010C1', 'Kortrijk', 'ons_per_res_pop', '3'), ('2015', 'BE010C1', 'Kortrijk', 'beds_per_1000res_pop', '23.7'), ('2015', 'BE011C1', 'Oostende', 'ons', '1265227'), ('2015', 'BE011C1', 'Oostende', 'beds', '6848'), ('2015', 'BE011C1', 'Oostende', 'ons_per_res_pop', '17.9'), ('2015', 'BE011C1', 'Oostende', 'beds_per_1000res_pop', '96.7'), ('2015', 'BG', 'Bulgaria', 'ons', '21397816'), ('2015', 'BG', 'Bulgaria', 'beds', '322465'), ('2015', 'BG', 'Bulgaria', 'ons_per_res_pop', '3'), ('2015', 'BG', 'Bulgaria', 'beds_per_1000res_pop', '44.8'), ('2015', 'BG001C1', 'Sofia', 'ons', '1581387'), ('2015', 'BG001C1', 'Sofia', 'beds', '12196'), ('2015', 'BG001C1', 'Sofia', 'ons_per_res_pop', '1.3'), ('2015', 'BG001C1', 'Sofia', 'beds_per_1000res_pop', '9.9'), ('2015', 'BG002C1', 'Plovdiv', 'ons', '432110'), ('2015', 'BG002C1', 'Plovdiv', 'beds', '3925'), ('2015', 'BG002C1', 'Plovdiv', 'ons_per_res_pop', '1.3'), ('2015', 'BG002C1', 'Plovdiv', 'beds_per_1000res_pop', '11.5'), ('2015', 'BG003C1', 'Varna', 'ons', '4097665'), ('2015', 'BG003C1', 'Varna', 'beds', '57357'), ('2015', 'BG003C1', 'Varna', 'ons_per_res_pop', '12.2'), ('2015', 'BG003C1', 'Varna', 'beds_per_1000res_pop', '170.7'), ('2015', 'BG004C1', 'Burgas', 'ons', '337010'), ('2015', 'BG004C1', 'Burgas', 'beds', '3592'), ('2015', 'BG004C1', 'Burgas', 'ons_per_res_pop', '1.7'), ('2015', 'BG004C1', 'Burgas', 'beds_per_1000res_pop', '18.1'), ('2015', 'BG005C1', 'Pleven', 'ons', '70061'), ('2015', 'BG005C1', 'Pleven', 'beds', '933'), ('2015', 'BG005C1', 'Pleven', 'ons_per_res_pop', '0.7'), ('2015', 'BG005C1', 'Pleven', 'beds_per_1000res_pop', '9.1'), ('2015', 'BG006C1', 'Ruse', 'ons', '129752'), ('2015', 'BG006C1', 'Ruse', 'beds', '1606'), ('2015', 'BG006C1', 'Ruse', 'ons_per_res_pop', '0.9'), ('2015', 'BG006C1', 'Ruse', 'beds_per_1000res_pop', '10.9'), ('2015', 'BG007C1', 'Vidin', 'ons', '35173'), ('2015', 'BG007C1', 'Vidin', 'beds', '615'), ('2015', 'BG007C1', 'Vidin', 'ons_per_res_pop', '0.8'), ('2015', 'BG007C1', 'Vidin', 'beds_per_1000res_pop', '13.6'), ('2015', 'BG008C1', 'Stara Zagora', 'ons', '104139'), ('2015', 'BG008C1', 'Stara Zagora', 'beds', '1089'), ('2015', 'BG008C1', 'Stara Zagora', 'ons_per_res_pop', '0.8'), ('2015', 'BG008C1', 'Stara Zagora', 'beds_per_1000res_pop', '7.9'), ('2015', 'BG009C1', 'Sliven', 'ons', '74853'), ('2015', 'BG009C1', 'Sliven', 'beds', '1432'), ('2015', 'BG009C1', 'Sliven', 'ons_per_res_pop', '0.8'), ('2015', 'BG009C1', 'Sliven', 'beds_per_1000res_pop', '16.1'), ('2015', 'BG010C1', 'Dobrich', 'ons', '43458'), ('2015', 'BG010C1', 'Dobrich', 'beds', '634'), ('2015', 'BG010C1', 'Dobrich', 'ons_per_res_pop', '0.5'), ('2015', 'BG010C1', 'Dobrich', 'beds_per_1000res_pop', '7.2'), ('2015', 'BG011C1', 'Shumen', 'ons', '63348'), ('2015', 'BG011C1', 'Shumen', 'beds', '1046'), ('2015', 'BG011C1', 'Shumen', 'ons_per_res_pop', '0.8'), ('2015', 'BG011C1', 'Shumen', 'beds_per_1000res_pop', '13.3'), ('2015', 'BG012C1', 'Pernik', 'ons', '13897'), ('2015', 'BG012C1', 'Pernik', 'beds', '258'), ('2015', 'BG012C1', 'Pernik', 'ons_per_res_pop', '0.2'), ('2015', 'BG012C1', 'Pernik', 'beds_per_1000res_pop', '3.4'), ('2015', 'BG013C1', 'Yambol', 'ons', '42906'), ('2015', 'BG013C1', 'Yambol', 'beds', '465'), ('2015', 'BG013C1', 'Yambol', 'ons_per_res_pop', '0.6'), ('2015', 'BG013C1', 'Yambol', 'beds_per_1000res_pop', '6.5'), ('2015', 'BG014C1', 'Haskovo', 'ons', '27326'), ('2015', 'BG014C1', 'Haskovo', 'beds', '380'), ('2015', 'BG014C1', 'Haskovo', 'ons_per_res_pop', '0.4'), ('2015', 'BG014C1', 'Haskovo', 'beds_per_1000res_pop', '5.1'), ('2015', 'BG015C1', 'Pazardzhik', 'ons', '34145'), ('2015', 'BG015C1', 'Pazardzhik', 'beds', '426'), ('2015', 'BG015C1', 'Pazardzhik', 'ons_per_res_pop', '0.5'), ('2015', 'BG015C1', 'Pazardzhik', 'beds_per_1000res_pop', '6.1'), ('2015', 'BG016C1', 'Blagoevgrad', 'ons', '51870'), ('2015', 'BG016C1', 'Blagoevgrad', 'beds', '1102'), ('2015', 'BG016C1', 'Blagoevgrad', 'ons_per_res_pop', '0.7'), ('2015', 'BG016C1', 'Blagoevgrad', 'beds_per_1000res_pop', '15.7'), ('2015', 'BG017C1', 'Veliko Tarnovo', 'ons', '139432'), ('2015', 'BG017C1', 'Veliko Tarnovo', 'beds', '2168'), ('2015', 'BG017C1', 'Veliko Tarnovo', 'ons_per_res_pop', '2'), ('2015', 'BG017C1', 'Veliko Tarnovo', 'beds_per_1000res_pop', '31.6'), ('2015', 'BG018C1', 'Vratsa', 'ons', '48882'), ('2015', 'BG018C1', 'Vratsa', 'beds', '453'), ('2015', 'BG018C1', 'Vratsa', 'ons_per_res_pop', '0.9'), ('2015', 'BG018C1', 'Vratsa', 'beds_per_1000res_pop', '8'), ('2015', 'CZ', 'Czech Republic', 'ons', null), ('2015', 'CZ', 'Czech Republic', 'beds', null), ('2015', 'CZ', 'Czech Republic', 'ons_per_res_pop', null), ('2015', 'CZ', 'Czech Republic', 'beds_per_1000res_pop', null), ('2015', 'CZ001C1', 'Praha', 'ons', null), ('2015', 'CZ001C1', 'Praha', 'beds', null), ('2015', 'CZ001C1', 'Praha', 'ons_per_res_pop', null), ('2015', 'CZ001C1', 'Praha', 'beds_per_1000res_pop', null), ('2015', 'CZ002C1', 'Brno', 'ons', null), ('2015', 'CZ002C1', 'Brno', 'beds', null), ('2015', 'CZ002C1', 'Brno', 'ons_per_res_pop', null), ('2015', 'CZ002C1', 'Brno', 'beds_per_1000res_pop', null), ('2015', 'CZ003C1', 'Ostrava', 'ons', null), ('2015', 'CZ003C1', 'Ostrava', 'beds', null), ('2015', 'CZ003C1', 'Ostrava', 'ons_per_res_pop', null), ('2015', 'CZ003C1', 'Ostrava', 'beds_per_1000res_pop', null), ('2015', 'CZ004C1', 'Plzen', 'ons', null), ('2015', 'CZ004C1', 'Plzen', 'beds', null), ('2015', 'CZ004C1', 'Plzen', 'ons_per_res_pop', null), ('2015', 'CZ004C1', 'Plzen', 'beds_per_1000res_pop', null), ('2015', 'CZ005C1', 'Ústí nad Labem', 'ons', null), ('2015', 'CZ005C1', 'Ústí nad Labem', 'beds', null), ('2015', 'CZ005C1', 'Ústí nad Labem', 'ons_per_res_pop', null), ('2015', 'CZ005C1', 'Ústí nad Labem', 'beds_per_1000res_pop', null), ('2015', 'CZ006C1', 'Olomouc', 'ons', null), ('2015', 'CZ006C1', 'Olomouc', 'beds', null), ('2015', 'CZ006C1', 'Olomouc', 'ons_per_res_pop', null), ('2015', 'CZ006C1', 'Olomouc', 'beds_per_1000res_pop', null), ('2015', 'CZ007C1', 'Liberec', 'ons', null), ('2015', 'CZ007C1', 'Liberec', 'beds', null), ('2015', 'CZ007C1', 'Liberec', 'ons_per_res_pop', null), ('2015', 'CZ007C1', 'Liberec', 'beds_per_1000res_pop', null), ('2015', 'CZ008C1', 'Ceské Budejovice', 'ons', null), ('2015', 'CZ008C1', 'Ceské Budejovice', 'beds', null), ('2015', 'CZ008C1', 'Ceské Budejovice', 'ons_per_res_pop', null), ('2015', 'CZ008C1', 'Ceské Budejovice', 'beds_per_1000res_pop', null), ('2015', 'CZ009C1', 'Hradec Králové', 'ons', null), ('2015', 'CZ009C1', 'Hradec Králové', 'beds', null), ('2015', 'CZ009C1', 'Hradec Králové', 'ons_per_res_pop', null), ('2015', 'CZ009C1', 'Hradec Králové', 'beds_per_1000res_pop', null), ('2015', 'CZ010C1', 'Pardubice', 'ons', null), ('2015', 'CZ010C1', 'Pardubice', 'beds', null), ('2015', 'CZ010C1', 'Pardubice', 'ons_per_res_pop', null), ('2015', 'CZ010C1', 'Pardubice', 'beds_per_1000res_pop', null), ('2015', 'CZ011C1', 'Zlín', 'ons', null), ('2015', 'CZ011C1', 'Zlín', 'beds', null), ('2015', 'CZ011C1', 'Zlín', 'ons_per_res_pop', null), ('2015', 'CZ011C1', 'Zlín', 'beds_per_1000res_pop', null), ('2015', 'CZ012C1', 'Kladno', 'ons', null), ('2015', 'CZ012C1', 'Kladno', 'beds', null), ('2015', 'CZ012C1', 'Kladno', 'ons_per_res_pop', null), ('2015', 'CZ012C1', 'Kladno', 'beds_per_1000res_pop', null), ('2015', 'CZ013C1', 'Karlovy Vary', 'ons', null), ('2015', 'CZ013C1', 'Karlovy Vary', 'beds', null), ('2015', 'CZ013C1', 'Karlovy Vary', 'ons_per_res_pop', null), ('2015', 'CZ013C1', 'Karlovy Vary', 'beds_per_1000res_pop', null), ('2015', 'CZ014C1', 'Jihlava', 'ons', null), ('2015', 'CZ014C1', 'Jihlava', 'beds', null), ('2015', 'CZ014C1', 'Jihlava', 'ons_per_res_pop', null), ('2015', 'CZ014C1', 'Jihlava', 'beds_per_1000res_pop', null), ('2015', 'CZ015C1', 'Havírov', 'ons', null), ('2015', 'CZ015C1', 'Havírov', 'beds', null), ('2015', 'CZ015C1', 'Havírov', 'ons_per_res_pop', null), ('2015', 'CZ015C1', 'Havírov', 'beds_per_1000res_pop', null), ('2015', 'CZ016C1', 'Most', 'ons', null), ('2015', 'CZ016C1', 'Most', 'beds', null), ('2015', 'CZ016C1', 'Most', 'ons_per_res_pop', null), ('2015', 'CZ016C1', 'Most', 'beds_per_1000res_pop', null), ('2015', 'CZ017C1', 'Karviná', 'ons', null), ('2015', 'CZ017C1', 'Karviná', 'beds', null), ('2015', 'CZ017C1', 'Karviná', 'ons_per_res_pop', null), ('2015', 'CZ017C1', 'Karviná', 'beds_per_1000res_pop', null), ('2015', 'CZ018C2', 'Chomutov-Jirkov', 'ons', null), ('2015', 'CZ018C2', 'Chomutov-Jirkov', 'beds', null), ('2015', 'CZ018C2', 'Chomutov-Jirkov', 'ons_per_res_pop', null), ('2015', 'CZ018C2', 'Chomutov-Jirkov', 'beds_per_1000res_pop', null), ('2015', 'DK', 'Denmark', 'ons', null), ('2015', 'DK', 'Denmark', 'beds', null), ('2015', 'DK', 'Denmark', 'ons_per_res_pop', null), ('2015', 'DK', 'Denmark', 'beds_per_1000res_pop', null), ('2015', 'DK001C1', 'København', 'ons', null), ('2015', 'DK001C1', 'København', 'beds', null), ('2015', 'DK001C1', 'København', 'ons_per_res_pop', null), ('2015', 'DK001C1', 'København', 'beds_per_1000res_pop', null), ('2015', 'DK002C1', 'Århus', 'ons', null), ('2015', 'DK002C1', 'Århus', 'beds', null), ('2015', 'DK002C1', 'Århus', 'ons_per_res_pop', null), ('2015', 'DK002C1', 'Århus', 'beds_per_1000res_pop', null), ('2015', 'DK003C1', 'Odense', 'ons', null), ('2015', 'DK003C1', 'Odense', 'beds', null), ('2015', 'DK003C1', 'Odense', 'ons_per_res_pop', null), ('2015', 'DK003C1', 'Odense', 'beds_per_1000res_pop', null), ('2015', 'DK004C2', 'Aalborg', 'ons', null), ('2015', 'DK004C2', 'Aalborg', 'beds', null), ('2015', 'DK004C2', 'Aalborg', 'ons_per_res_pop', null), ('2015', 'DK004C2', 'Aalborg', 'beds_per_1000res_pop', null), ('2015', 'DE', 'Germany', 'ons', '436232801'), ('2015', 'DE', 'Germany', 'beds', '3576904'), ('2015', 'DE', 'Germany', 'ons_per_res_pop', '5.4'), ('2015', 'DE', 'Germany', 'beds_per_1000res_pop', '44.1'), ('2015', 'DE001C1', 'Berlin', 'ons', '30250066'), ('2015', 'DE001C1', 'Berlin', 'beds', '136327'), ('2015', 'DE001C1', 'Berlin', 'ons_per_res_pop', '8.7'), ('2015', 'DE001C1', 'Berlin', 'beds_per_1000res_pop', '39.3'), ('2015', 'DE002C1', 'Hamburg', 'ons', '12506840'), ('2015', 'DE002C1', 'Hamburg', 'beds', '57353'), ('2015', 'DE002C1', 'Hamburg', 'ons_per_res_pop', '7.1'), ('2015', 'DE002C1', 'Hamburg', 'beds_per_1000res_pop', '32.5'), ('2015', 'DE003C1', 'München', 'ons', '14066212'), ('2015', 'DE003C1', 'München', 'beds', '64567'), ('2015', 'DE003C1', 'München', 'ons_per_res_pop', '9.8'), ('2015', 'DE003C1', 'München', 'beds_per_1000res_pop', '45.2'), ('2015', 'DE004C1', 'Köln', 'ons', '5984881'), ('2015', 'DE004C1', 'Köln', 'beds', '32120'), ('2015', 'DE004C1', 'Köln', 'ons_per_res_pop', '5.7'), ('2015', 'DE004C1', 'Köln', 'beds_per_1000res_pop', '30.7'), ('2015', 'DE005C1', 'Frankfurt am Main', 'ons', '8676721'), ('2015', 'DE005C1', 'Frankfurt am Main', 'beds', '44989'), ('2015', 'DE005C1', 'Frankfurt am Main', 'ons_per_res_pop', '12.1'), ('2015', 'DE005C1', 'Frankfurt am Main', 'beds_per_1000res_pop', '62.7'), ('2015', 'DE006C1', 'Essen', 'ons', '1408879'), ('2015', 'DE006C1', 'Essen', 'beds', '9049'), ('2015', 'DE006C1', 'Essen', 'ons_per_res_pop', '2.5'), ('2015', 'DE006C1', 'Essen', 'beds_per_1000res_pop', '15.8'), ('2015', 'DE007C1', 'Stuttgart', 'ons', '3561490'), ('2015', 'DE007C1', 'Stuttgart', 'beds', '19080'), ('2015', 'DE007C1', 'Stuttgart', 'ons_per_res_pop', '5.8'), ('2015', 'DE007C1', 'Stuttgart', 'beds_per_1000res_pop', '31.2'), ('2015', 'DE008C1', 'Leipzig', 'ons', '2829824'), ('2015', 'DE008C1', 'Leipzig', 'beds', '14992'), ('2015', 'DE008C1', 'Leipzig', 'ons_per_res_pop', '5.2'), ('2015', 'DE008C1', 'Leipzig', 'beds_per_1000res_pop', '27.5'), ('2015', 'DE009C1', 'Dresden', 'ons', '4308631'), ('2015', 'DE009C1', 'Dresden', 'beds', '22630'), ('2015', 'DE009C1', 'Dresden', 'ons_per_res_pop', '8'), ('2015', 'DE009C1', 'Dresden', 'beds_per_1000res_pop', '42.2'), ('2015', 'DE010C1', 'Dortmund', 'ons', '1134632'), ('2015', 'DE010C1', 'Dortmund', 'beds', '6896'), ('2015', 'DE010C1', 'Dortmund', 'ons_per_res_pop', '2'), ('2015', 'DE010C1', 'Dortmund', 'beds_per_1000res_pop', '11.9'), ('2015', 'DE011C1', 'Düsseldorf', 'ons', '4403960'), ('2015', 'DE011C1', 'Düsseldorf', 'beds', '25829'), ('2015', 'DE011C1', 'Düsseldorf', 'ons_per_res_pop', '7.3'), ('2015', 'DE011C1', 'Düsseldorf', 'beds_per_1000res_pop', '42.7'), ('2015', 'DE012C1', 'Bremen', 'ons', '1993683'), ('2015', 'DE012C1', 'Bremen', 'beds', '12359'), ('2015', 'DE012C1', 'Bremen', 'ons_per_res_pop', '3.6'), ('2015', 'DE012C1', 'Bremen', 'beds_per_1000res_pop', '22.4'), ('2015', 'DE013C1', 'Hannover', 'ons', '2232282'), ('2015', 'DE013C1', 'Hannover', 'beds', '13351'), ('2015', 'DE013C1', 'Hannover', 'ons_per_res_pop', '4.3'), ('2015', 'DE013C1', 'Hannover', 'beds_per_1000res_pop', '25.5'), ('2015', 'DE014C1', 'Nürnberg', 'ons', '3013201'), ('2015', 'DE014C1', 'Nürnberg', 'beds', '17636'), ('2015', 'DE014C1', 'Nürnberg', 'ons_per_res_pop', '6'), ('2015', 'DE014C1', 'Nürnberg', 'beds_per_1000res_pop', '35.2'), ('2015', 'DE015C1', 'Bochum', 'ons', '629632'), ('2015', 'DE015C1', 'Bochum', 'beds', '3961'), ('2015', 'DE015C1', 'Bochum', 'ons_per_res_pop', '1.7'), ('2015', 'DE015C1', 'Bochum', 'beds_per_1000res_pop', '10.9'), ('2015', 'DE017C1', 'Bielefeld', 'ons', '573157'), ('2015', 'DE017C1', 'Bielefeld', 'beds', '3925'), ('2015', 'DE017C1', 'Bielefeld', 'ons_per_res_pop', '1.7'), ('2015', 'DE017C1', 'Bielefeld', 'beds_per_1000res_pop', '11.9'), ('2015', 'DE018C1', 'Halle an der Saale', 'ons', '405260'), ('2015', 'DE018C1', 'Halle an der Saale', 'beds', '2922'), ('2015', 'DE018C1', 'Halle an der Saale', 'ons_per_res_pop', '1.7'), ('2015', 'DE018C1', 'Halle an der Saale', 'beds_per_1000res_pop', '12.6'), ('2015', 'DE019C1', 'Magdeburg', 'ons', '608748'), ('2015', 'DE019C1', 'Magdeburg', 'beds', '5280'), ('2015', 'DE019C1', 'Magdeburg', 'ons_per_res_pop', '2.6'), ('2015', 'DE019C1', 'Magdeburg', 'beds_per_1000res_pop', '22.7'), ('2015', 'DE020C1', 'Wiesbaden', 'ons', '1199516'), ('2015', 'DE020C1', 'Wiesbaden', 'beds', '7768'), ('2015', 'DE020C1', 'Wiesbaden', 'ons_per_res_pop', '4.4'), ('2015', 'DE020C1', 'Wiesbaden', 'beds_per_1000res_pop', '28.2'), ('2015', 'DE021C1', 'Göttingen', 'ons', '482652'), ('2015', 'DE021C1', 'Göttingen', 'beds', '3126'), ('2015', 'DE021C1', 'Göttingen', 'ons_per_res_pop', '4.1'), ('2015', 'DE021C1', 'Göttingen', 'beds_per_1000res_pop', '26.6'), ('2015', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons', '152423'), ('2015', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds', '1438'), ('2015', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons_per_res_pop', '0.9'), ('2015', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds_per_1000res_pop', '8.6'), ('2015', 'DE023C1', 'Moers', 'ons', '108679'), ('2015', 'DE023C1', 'Moers', 'beds', '722'), ('2015', 'DE023C1', 'Moers', 'ons_per_res_pop', '1.1'), ('2015', 'DE023C1', 'Moers', 'beds_per_1000res_pop', '7'), ('2015', 'DE025C1', 'Darmstadt', 'ons', '670882'), ('2015', 'DE025C1', 'Darmstadt', 'beds', '4656'), ('2015', 'DE025C1', 'Darmstadt', 'ons_per_res_pop', '4.4'), ('2015', 'DE025C1', 'Darmstadt', 'beds_per_1000res_pop', '30.7'), ('2015', 'DE026C1', 'Trier', 'ons', '770503'), ('2015', 'DE026C1', 'Trier', 'beds', null), ('2015', 'DE026C1', 'Trier', 'ons_per_res_pop', '7.1'), ('2015', 'DE026C1', 'Trier', 'beds_per_1000res_pop', null), ('2015', 'DE027C1', 'Freiburg im Breisgau', 'ons', '1448470'), ('2015', 'DE027C1', 'Freiburg im Breisgau', 'beds', '8521'), ('2015', 'DE027C1', 'Freiburg im Breisgau', 'ons_per_res_pop', '6.5'), ('2015', 'DE027C1', 'Freiburg im Breisgau', 'beds_per_1000res_pop', '38.3'), ('2015', 'DE028C1', 'Regensburg', 'ons', '976295'), ('2015', 'DE028C1', 'Regensburg', 'beds', '5921'), ('2015', 'DE028C1', 'Regensburg', 'ons_per_res_pop', '6.9'), ('2015', 'DE028C1', 'Regensburg', 'beds_per_1000res_pop', '41.6'), ('2015', 'DE029C1', 'Frankfurt (Oder)', 'ons', '149470'), ('2015', 'DE029C1', 'Frankfurt (Oder)', 'beds', '1086'), ('2015', 'DE029C1', 'Frankfurt (Oder)', 'ons_per_res_pop', '2.6'), ('2015', 'DE029C1', 'Frankfurt (Oder)', 'beds_per_1000res_pop', '18.8'), ('2015', 'DE030C1', 'Weimar', 'ons', '697695'), ('2015', 'DE030C1', 'Weimar', 'beds', '4156'), ('2015', 'DE030C1', 'Weimar', 'ons_per_res_pop', '11'), ('2015', 'DE030C1', 'Weimar', 'beds_per_1000res_pop', '65.5'), ('2015', 'DE031C1', 'Schwerin', 'ons', '331825'), ('2015', 'DE031C1', 'Schwerin', 'beds', '2693'), ('2015', 'DE031C1', 'Schwerin', 'ons_per_res_pop', '3.6'), ('2015', 'DE031C1', 'Schwerin', 'beds_per_1000res_pop', '29.2'), ('2015', 'DE032C1', 'Erfurt', 'ons', '809306'), ('2015', 'DE032C1', 'Erfurt', 'beds', '4928'), ('2015', 'DE032C1', 'Erfurt', 'ons_per_res_pop', '3.9'), ('2015', 'DE032C1', 'Erfurt', 'beds_per_1000res_pop', '23.9'), ('2015', 'DE033C1', 'Augsburg', 'ons', '764375'), ('2015', 'DE033C1', 'Augsburg', 'beds', '4293'), ('2015', 'DE033C1', 'Augsburg', 'ons_per_res_pop', '2.7'), ('2015', 'DE033C1', 'Augsburg', 'beds_per_1000res_pop', '15.3'), ('2015', 'DE034C1', 'Bonn', 'ons', '1495546'), ('2015', 'DE034C1', 'Bonn', 'beds', '8591'), ('2015', 'DE034C1', 'Bonn', 'ons_per_res_pop', '4.8'), ('2015', 'DE034C1', 'Bonn', 'beds_per_1000res_pop', '27.4'), ('2015', 'DE035C1', 'Karlsruhe', 'ons', '1096961'), ('2015', 'DE035C1', 'Karlsruhe', 'beds', '6662'), ('2015', 'DE035C1', 'Karlsruhe', 'ons_per_res_pop', '3.7'), ('2015', 'DE035C1', 'Karlsruhe', 'beds_per_1000res_pop', '22.2'), ('2015', 'DE036C1', 'Mönchengladbach', 'ons', '297833'), ('2015', 'DE036C1', 'Mönchengladbach', 'beds', '2270'), ('2015', 'DE036C1', 'Mönchengladbach', 'ons_per_res_pop', '1.2'), ('2015', 'DE036C1', 'Mönchengladbach', 'beds_per_1000res_pop', '8.8'), ('2015', 'DE037C1', 'Mainz', 'ons', '889046'), ('2015', 'DE037C1', 'Mainz', 'beds', '5602'), ('2015', 'DE037C1', 'Mainz', 'ons_per_res_pop', '4.3'), ('2015', 'DE037C1', 'Mainz', 'beds_per_1000res_pop', '27.1'), ('2015', 'DE039C1', 'Kiel', 'ons', '674980'), ('2015', 'DE039C1', 'Kiel', 'beds', '4189'), ('2015', 'DE039C1', 'Kiel', 'ons_per_res_pop', '2.8'), ('2015', 'DE039C1', 'Kiel', 'beds_per_1000res_pop', '17.2'), ('2015', 'DE040C1', 'Saarbrücken', 'ons', '536935'), ('2015', 'DE040C1', 'Saarbrücken', 'beds', '3561'), ('2015', 'DE040C1', 'Saarbrücken', 'ons_per_res_pop', '3'), ('2015', 'DE040C1', 'Saarbrücken', 'beds_per_1000res_pop', '20.1'), ('2015', 'DE041C1', 'Potsdam', 'ons', '1105264'), ('2015', 'DE041C1', 'Potsdam', 'beds', '5585'), ('2015', 'DE041C1', 'Potsdam', 'ons_per_res_pop', '6.7'), ('2015', 'DE041C1', 'Potsdam', 'beds_per_1000res_pop', '34'), ('2015', 'DE042C1', 'Koblenz', 'ons', '661761'), ('2015', 'DE042C1', 'Koblenz', 'beds', null), ('2015', 'DE042C1', 'Koblenz', 'ons_per_res_pop', '5.9'), ('2015', 'DE042C1', 'Koblenz', 'beds_per_1000res_pop', null), ('2015', 'DE043C1', 'Rostock', 'ons', '1931119'), ('2015', 'DE043C1', 'Rostock', 'beds', '14429'), ('2015', 'DE043C1', 'Rostock', 'ons_per_res_pop', '9.5'), ('2015', 'DE043C1', 'Rostock', 'beds_per_1000res_pop', '70.7'), ('2015', 'DE044C1', 'Kaiserslautern', 'ons', '262638'), ('2015', 'DE044C1', 'Kaiserslautern', 'beds', null), ('2015', 'DE044C1', 'Kaiserslautern', 'ons_per_res_pop', '2.7'), ('2015', 'DE044C1', 'Kaiserslautern', 'beds_per_1000res_pop', null), ('2015', 'DE045C1', 'Iserlohn', 'ons', '70905'), ('2015', 'DE045C1', 'Iserlohn', 'beds', '581'), ('2015', 'DE045C1', 'Iserlohn', 'ons_per_res_pop', '0.8'), ('2015', 'DE045C1', 'Iserlohn', 'beds_per_1000res_pop', '6.3'), ('2015', 'DE046C1', 'Esslingen am Neckar', 'ons', '225394'), ('2015', 'DE046C1', 'Esslingen am Neckar', 'beds', '1376'), ('2015', 'DE046C1', 'Esslingen am Neckar', 'ons_per_res_pop', '2.5'), ('2015', 'DE046C1', 'Esslingen am Neckar', 'beds_per_1000res_pop', '15.2'), ('2015', 'DE047C1', 'Hanau', 'ons', '155497'), ('2015', 'DE047C1', 'Hanau', 'beds', '1178'), ('2015', 'DE047C1', 'Hanau', 'ons_per_res_pop', '1.7'), ('2015', 'DE047C1', 'Hanau', 'beds_per_1000res_pop', '13'), ('2015', 'DE048C1', 'Wilhelmshaven', 'ons', '331137'), ('2015', 'DE048C1', 'Wilhelmshaven', 'beds', '2097'), ('2015', 'DE048C1', 'Wilhelmshaven', 'ons_per_res_pop', '4.4'), ('2015', 'DE048C1', 'Wilhelmshaven', 'beds_per_1000res_pop', '27.8'), ('2015', 'DE049C1', 'Ludwigsburg', 'ons', '303918'), ('2015', 'DE049C1', 'Ludwigsburg', 'beds', '2133'), ('2015', 'DE049C1', 'Ludwigsburg', 'ons_per_res_pop', '3.3'), ('2015', 'DE049C1', 'Ludwigsburg', 'beds_per_1000res_pop', '23.4'), ('2015', 'DE050C1', 'Tübingen', 'ons', '238457'), ('2015', 'DE050C1', 'Tübingen', 'beds', '1666'), ('2015', 'DE050C1', 'Tübingen', 'ons_per_res_pop', '2.8'), ('2015', 'DE050C1', 'Tübingen', 'beds_per_1000res_pop', '19.4'), ('2015', 'DE051C1', 'Villingen-Schwenningen', 'ons', '146247'), ('2015', 'DE051C1', 'Villingen-Schwenningen', 'beds', '1306'), ('2015', 'DE051C1', 'Villingen-Schwenningen', 'ons_per_res_pop', '1.8'), ('2015', 'DE051C1', 'Villingen-Schwenningen', 'beds_per_1000res_pop', '15.9'), ('2015', 'DE052C1', 'Flensburg', 'ons', '279818'), ('2015', 'DE052C1', 'Flensburg', 'beds', '1619'), ('2015', 'DE052C1', 'Flensburg', 'ons_per_res_pop', '3.3'), ('2015', 'DE052C1', 'Flensburg', 'beds_per_1000res_pop', '19.1'), ('2015', 'DE053C1', 'Marburg', 'ons', '366905'), ('2015', 'DE053C1', 'Marburg', 'beds', '2193'), ('2015', 'DE053C1', 'Marburg', 'ons_per_res_pop', '5'), ('2015', 'DE053C1', 'Marburg', 'beds_per_1000res_pop', '30'), ('2015', 'DE054C1', 'Konstanz', 'ons', '771380'), ('2015', 'DE054C1', 'Konstanz', 'beds', '4674'), ('2015', 'DE054C1', 'Konstanz', 'ons_per_res_pop', '9.4'), ('2015', 'DE054C1', 'Konstanz', 'beds_per_1000res_pop', '57.2'), ('2015', 'DE055C1', 'Neumünster', 'ons', '161133'), ('2015', 'DE055C1', 'Neumünster', 'beds', '961'), ('2015', 'DE055C1', 'Neumünster', 'ons_per_res_pop', '2.1'), ('2015', 'DE055C1', 'Neumünster', 'beds_per_1000res_pop', '12.4'), ('2015', 'DE056C1', 'Brandenburg an der Havel', 'ons', '261953'), ('2015', 'DE056C1', 'Brandenburg an der Havel', 'beds', '1609'), ('2015', 'DE056C1', 'Brandenburg an der Havel', 'ons_per_res_pop', '3.7'), ('2015', 'DE056C1', 'Brandenburg an der Havel', 'beds_per_1000res_pop', '22.7'), ('2015', 'DE057C1', 'Gießen', 'ons', '139446'), ('2015', 'DE057C1', 'Gießen', 'beds', '1228'), ('2015', 'DE057C1', 'Gießen', 'ons_per_res_pop', '1.7'), ('2015', 'DE057C1', 'Gießen', 'beds_per_1000res_pop', '14.7'), ('2015', 'DE058C1', 'Lüneburg', 'ons', '318836'), ('2015', 'DE058C1', 'Lüneburg', 'beds', '2106'), ('2015', 'DE058C1', 'Lüneburg', 'ons_per_res_pop', '4.4'), ('2015', 'DE058C1', 'Lüneburg', 'beds_per_1000res_pop', '29'), ('2015', 'DE059C1', 'Bayreuth', 'ons', '351037'), ('2015', 'DE059C1', 'Bayreuth', 'beds', '2068'), ('2015', 'DE059C1', 'Bayreuth', 'ons_per_res_pop', '4.9'), ('2015', 'DE059C1', 'Bayreuth', 'beds_per_1000res_pop', '28.9'), ('2015', 'DE060C1', 'Celle', 'ons', '273284'), ('2015', 'DE060C1', 'Celle', 'beds', '2359'), ('2015', 'DE060C1', 'Celle', 'ons_per_res_pop', '4'), ('2015', 'DE060C1', 'Celle', 'beds_per_1000res_pop', '34.3'), ('2015', 'DE061C1', 'Aschaffenburg', 'ons', '152502'), ('2015', 'DE061C1', 'Aschaffenburg', 'beds', '924'), ('2015', 'DE061C1', 'Aschaffenburg', 'ons_per_res_pop', '2.2'), ('2015', 'DE061C1', 'Aschaffenburg', 'beds_per_1000res_pop', '13.6'), ('2015', 'DE062C1', 'Bamberg', 'ons', '606947'), ('2015', 'DE062C1', 'Bamberg', 'beds', '3209'), ('2015', 'DE062C1', 'Bamberg', 'ons_per_res_pop', '8.4'), ('2015', 'DE062C1', 'Bamberg', 'beds_per_1000res_pop', '44.6'), ('2015', 'DE063C1', 'Plauen', 'ons', '108595'), ('2015', 'DE063C1', 'Plauen', 'beds', '806'), ('2015', 'DE063C1', 'Plauen', 'ons_per_res_pop', '1.7'), ('2015', 'DE063C1', 'Plauen', 'beds_per_1000res_pop', '12.6'), ('2015', 'DE064C1', 'Neubrandenburg', 'ons', '114365'), ('2015', 'DE064C1', 'Neubrandenburg', 'beds', '1033'), ('2015', 'DE064C1', 'Neubrandenburg', 'ons_per_res_pop', '1.8'), ('2015', 'DE064C1', 'Neubrandenburg', 'beds_per_1000res_pop', '16.3'), ('2015', 'DE065C1', 'Fulda', 'ons', '558765'), ('2015', 'DE065C1', 'Fulda', 'beds', '3359'), ('2015', 'DE065C1', 'Fulda', 'ons_per_res_pop', '8.5'), ('2015', 'DE065C1', 'Fulda', 'beds_per_1000res_pop', '51.3'), ('2015', 'DE066C1', 'Kempten (Allgäu)', 'ons', '260718'), ('2015', 'DE066C1', 'Kempten (Allgäu)', 'beds', '1289'), ('2015', 'DE066C1', 'Kempten (Allgäu)', 'ons_per_res_pop', '4'), ('2015', 'DE066C1', 'Kempten (Allgäu)', 'beds_per_1000res_pop', '19.6'), ('2015', 'DE067C1', 'Landshut', 'ons', '177431'), ('2015', 'DE067C1', 'Landshut', 'beds', '1352'), ('2015', 'DE067C1', 'Landshut', 'ons_per_res_pop', '2.6'), ('2015', 'DE067C1', 'Landshut', 'beds_per_1000res_pop', '20'), ('2015', 'DE068C1', 'Sindelfingen', 'ons', '464703'), ('2015', 'DE068C1', 'Sindelfingen', 'beds', '2539'), ('2015', 'DE068C1', 'Sindelfingen', 'ons_per_res_pop', '7.5'), ('2015', 'DE068C1', 'Sindelfingen', 'beds_per_1000res_pop', '40.8'), ('2015', 'DE069C1', 'Rosenheim', 'ons', '173093'), ('2015', 'DE069C1', 'Rosenheim', 'beds', '1094'), ('2015', 'DE069C1', 'Rosenheim', 'ons_per_res_pop', '2.8'), ('2015', 'DE069C1', 'Rosenheim', 'beds_per_1000res_pop', '18'), ('2015', 'DE070C1', 'Frankenthal (Pfalz)', 'ons', '82119'), ('2015', 'DE070C1', 'Frankenthal (Pfalz)', 'beds', '654'), ('2015', 'DE070C1', 'Frankenthal (Pfalz)', 'ons_per_res_pop', '1.7'), ('2015', 'DE070C1', 'Frankenthal (Pfalz)', 'beds_per_1000res_pop', '13.7'), ('2015', 'DE071C1', 'Stralsund', 'ons', '485497'), ('2015', 'DE071C1', 'Stralsund', 'beds', '2870'), ('2015', 'DE071C1', 'Stralsund', 'ons_per_res_pop', '8.4'), ('2015', 'DE071C1', 'Stralsund', 'beds_per_1000res_pop', '49.9'), ('2015', 'DE072C1', 'Friedrichshafen', 'ons', '700161'), ('2015', 'DE072C1', 'Friedrichshafen', 'beds', '4415'), ('2015', 'DE072C1', 'Friedrichshafen', 'ons_per_res_pop', '12'), ('2015', 'DE072C1', 'Friedrichshafen', 'beds_per_1000res_pop', '75.7'), ('2015', 'DE073C1', 'Offenburg', 'ons', '145261'), ('2015', 'DE073C1', 'Offenburg', 'beds', '736'), ('2015', 'DE073C1', 'Offenburg', 'ons_per_res_pop', '2.5'), ('2015', 'DE073C1', 'Offenburg', 'beds_per_1000res_pop', '12.8'), ('2015', 'DE074C1', 'Görlitz', 'ons', '258217'), ('2015', 'DE074C1', 'Görlitz', 'beds', '1987'), ('2015', 'DE074C1', 'Görlitz', 'ons_per_res_pop', '4.8'), ('2015', 'DE074C1', 'Görlitz', 'beds_per_1000res_pop', '36.7'), ('2015', 'DE075C1', 'Sankt Augustin', 'ons', '24235'), ('2015', 'DE075C1', 'Sankt Augustin', 'beds', '126'), ('2015', 'DE075C1', 'Sankt Augustin', 'ons_per_res_pop', '0.4'), ('2015', 'DE075C1', 'Sankt Augustin', 'beds_per_1000res_pop', '2.3'), ('2015', 'DE076C1', 'Neu-Ulm', 'ons', '189909'), ('2015', 'DE076C1', 'Neu-Ulm', 'beds', '1117'), ('2015', 'DE076C1', 'Neu-Ulm', 'ons_per_res_pop', '3.4'), ('2015', 'DE076C1', 'Neu-Ulm', 'beds_per_1000res_pop', '20.1'), ('2015', 'DE077C1', 'Schweinfurt', 'ons', '215181'), ('2015', 'DE077C1', 'Schweinfurt', 'beds', '1551'), ('2015', 'DE077C1', 'Schweinfurt', 'ons_per_res_pop', '4.2'), ('2015', 'DE077C1', 'Schweinfurt', 'beds_per_1000res_pop', '30.1'), ('2015', 'DE078C1', 'Greifswald', 'ons', '216544'), ('2015', 'DE078C1', 'Greifswald', 'beds', '1913'), ('2015', 'DE078C1', 'Greifswald', 'ons_per_res_pop', '3.8'), ('2015', 'DE078C1', 'Greifswald', 'beds_per_1000res_pop', '33.7'), ('2015', 'DE079C1', 'Wetzlar', 'ons', '215146'), ('2015', 'DE079C1', 'Wetzlar', 'beds', '1581'), ('2015', 'DE079C1', 'Wetzlar', 'ons_per_res_pop', '4.2'), ('2015', 'DE079C1', 'Wetzlar', 'beds_per_1000res_pop', '30.8'), ('2015', 'DE080C1', 'Speyer', 'ons', null), ('2015', 'DE080C1', 'Speyer', 'beds', null), ('2015', 'DE080C1', 'Speyer', 'ons_per_res_pop', null), ('2015', 'DE080C1', 'Speyer', 'beds_per_1000res_pop', null), ('2015', 'DE081C1', 'Passau', 'ons', '508552'), ('2015', 'DE081C1', 'Passau', 'beds', '2945'), ('2015', 'DE081C1', 'Passau', 'ons_per_res_pop', '10.2'), ('2015', 'DE081C1', 'Passau', 'beds_per_1000res_pop', '59'), ('2015', 'DE082C1', 'Dessau-Roßlau', 'ons', '204188'), ('2015', 'DE082C1', 'Dessau-Roßlau', 'beds', '1463'), ('2015', 'DE082C1', 'Dessau-Roßlau', 'ons_per_res_pop', '2.5'), ('2015', 'DE082C1', 'Dessau-Roßlau', 'beds_per_1000res_pop', '17.6'), ('2015', 'DE501C1', 'Duisburg', 'ons', '457668'), ('2015', 'DE501C1', 'Duisburg', 'beds', '3276'), ('2015', 'DE501C1', 'Duisburg', 'ons_per_res_pop', '0.9'), ('2015', 'DE501C1', 'Duisburg', 'beds_per_1000res_pop', '6.7'), ('2015', 'DE502C1', 'Mannheim', 'ons', '1241592'), ('2015', 'DE502C1', 'Mannheim', 'beds', '6956'), ('2015', 'DE502C1', 'Mannheim', 'ons_per_res_pop', '4.1'), ('2015', 'DE502C1', 'Mannheim', 'beds_per_1000res_pop', '23.2'), ('2015', 'DE503C1', 'Gelsenkirchen', 'ons', '317788'), ('2015', 'DE503C1', 'Gelsenkirchen', 'beds', '2066'), ('2015', 'DE503C1', 'Gelsenkirchen', 'ons_per_res_pop', '1.2'), ('2015', 'DE503C1', 'Gelsenkirchen', 'beds_per_1000res_pop', '8'), ('2015', 'DE504C1', 'Münster', 'ons', '1357881'), ('2015', 'DE504C1', 'Münster', 'beds', '8248'), ('2015', 'DE504C1', 'Münster', 'ons_per_res_pop', '4.5'), ('2015', 'DE504C1', 'Münster', 'beds_per_1000res_pop', '27.3'), ('2015', 'DE505C1', 'Chemnitz', 'ons', '524841'), ('2015', 'DE505C1', 'Chemnitz', 'beds', '3768'), ('2015', 'DE505C1', 'Chemnitz', 'ons_per_res_pop', '2.2'), ('2015', 'DE505C1', 'Chemnitz', 'beds_per_1000res_pop', '15.5'), ('2015', 'DE506C1', 'Braunschweig', 'ons', '580453'), ('2015', 'DE506C1', 'Braunschweig', 'beds', '4206'), ('2015', 'DE506C1', 'Braunschweig', 'ons_per_res_pop', '2.3'), ('2015', 'DE506C1', 'Braunschweig', 'beds_per_1000res_pop', '16.9'), ('2015', 'DE507C1', 'Aachen', 'ons', '972993'), ('2015', 'DE507C1', 'Aachen', 'beds', '5289'), ('2015', 'DE507C1', 'Aachen', 'ons_per_res_pop', '4'), ('2015', 'DE507C1', 'Aachen', 'beds_per_1000res_pop', '21.7'), ('2015', 'DE508C1', 'Krefeld', 'ons', '240024'), ('2015', 'DE508C1', 'Krefeld', 'beds', '1713'), ('2015', 'DE508C1', 'Krefeld', 'ons_per_res_pop', '1.1'), ('2015', 'DE508C1', 'Krefeld', 'beds_per_1000res_pop', '7.7'), ('2015', 'DE509C1', 'Oberhausen', 'ons', '446040'), ('2015', 'DE509C1', 'Oberhausen', 'beds', '2425'), ('2015', 'DE509C1', 'Oberhausen', 'ons_per_res_pop', '2.1'), ('2015', 'DE509C1', 'Oberhausen', 'beds_per_1000res_pop', '11.6'), ('2015', 'DE510C1', 'Lübeck', 'ons', '1599288'), ('2015', 'DE510C1', 'Lübeck', 'beds', '9332'), ('2015', 'DE510C1', 'Lübeck', 'ons_per_res_pop', '7.5'), ('2015', 'DE510C1', 'Lübeck', 'beds_per_1000res_pop', '43.5'), ('2015', 'DE511C1', 'Hagen', 'ons', '267190'), ('2015', 'DE511C1', 'Hagen', 'beds', '1517'), ('2015', 'DE511C1', 'Hagen', 'ons_per_res_pop', '1.4'), ('2015', 'DE511C1', 'Hagen', 'beds_per_1000res_pop', '8.1'), ('2015', 'DE513C1', 'Kassel', 'ons', '903719'), ('2015', 'DE513C1', 'Kassel', 'beds', '6093'), ('2015', 'DE513C1', 'Kassel', 'ons_per_res_pop', '4.6'), ('2015', 'DE513C1', 'Kassel', 'beds_per_1000res_pop', '31.3'), ('2015', 'DE514C1', 'Hamm', 'ons', '151661'), ('2015', 'DE514C1', 'Hamm', 'beds', '1279'), ('2015', 'DE514C1', 'Hamm', 'ons_per_res_pop', '0.9'), ('2015', 'DE514C1', 'Hamm', 'beds_per_1000res_pop', '7.2'), ('2015', 'DE515C1', 'Herne', 'ons', '65961'), ('2015', 'DE515C1', 'Herne', 'beds', '595'), ('2015', 'DE515C1', 'Herne', 'ons_per_res_pop', '0.4'), ('2015', 'DE515C1', 'Herne', 'beds_per_1000res_pop', '3.8'), ('2015', 'DE516C1', 'Solingen', 'ons', '112113'), ('2015', 'DE516C1', 'Solingen', 'beds', '886'), ('2015', 'DE516C1', 'Solingen', 'ons_per_res_pop', '0.7'), ('2015', 'DE516C1', 'Solingen', 'beds_per_1000res_pop', '5.7'), ('2015', 'DE517C1', 'Osnabrück', 'ons', '392962'), ('2015', 'DE517C1', 'Osnabrück', 'beds', '3024'), ('2015', 'DE517C1', 'Osnabrück', 'ons_per_res_pop', '2.5'), ('2015', 'DE517C1', 'Osnabrück', 'beds_per_1000res_pop', '19.3'), ('2015', 'DE518C1', 'Ludwigshafen am Rhein', 'ons', null), ('2015', 'DE518C1', 'Ludwigshafen am Rhein', 'beds', null), ('2015', 'DE518C1', 'Ludwigshafen am Rhein', 'ons_per_res_pop', null), ('2015', 'DE518C1', 'Ludwigshafen am Rhein', 'beds_per_1000res_pop', null), ('2015', 'DE519C1', 'Leverkusen', 'ons', '251822'), ('2015', 'DE519C1', 'Leverkusen', 'beds', '1536'), ('2015', 'DE519C1', 'Leverkusen', 'ons_per_res_pop', '1.6'), ('2015', 'DE519C1', 'Leverkusen', 'beds_per_1000res_pop', '9.5'), ('2015', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons', '338878'), ('2015', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds', '2336'), ('2015', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons_per_res_pop', '2.1'), ('2015', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds_per_1000res_pop', '14.5'), ('2015', 'DE521C1', 'Neuss', 'ons', '430163'), ('2015', 'DE521C1', 'Neuss', 'beds', '3147'), ('2015', 'DE521C1', 'Neuss', 'ons_per_res_pop', '2.8'), ('2015', 'DE521C1', 'Neuss', 'beds_per_1000res_pop', '20.6'), ('2015', 'DE522C1', 'Heidelberg', 'ons', '1388824'), ('2015', 'DE522C1', 'Heidelberg', 'beds', '7171'), ('2015', 'DE522C1', 'Heidelberg', 'ons_per_res_pop', '9'), ('2015', 'DE522C1', 'Heidelberg', 'beds_per_1000res_pop', '46.3'), ('2015', 'DE523C1', 'Paderborn', 'ons', '286882'), ('2015', 'DE523C1', 'Paderborn', 'beds', '2059'), ('2015', 'DE523C1', 'Paderborn', 'ons_per_res_pop', '2'), ('2015', 'DE523C1', 'Paderborn', 'beds_per_1000res_pop', '14.2'), ('2015', 'DE524C1', 'Würzburg', 'ons', '891801'), ('2015', 'DE524C1', 'Würzburg', 'beds', '4464'), ('2015', 'DE524C1', 'Würzburg', 'ons_per_res_pop', '7.2'), ('2015', 'DE524C1', 'Würzburg', 'beds_per_1000res_pop', '35.9'), ('2015', 'DE525C1', 'Recklinghausen', 'ons', '83040'), ('2015', 'DE525C1', 'Recklinghausen', 'beds', '576'), ('2015', 'DE525C1', 'Recklinghausen', 'ons_per_res_pop', '0.7'), ('2015', 'DE525C1', 'Recklinghausen', 'beds_per_1000res_pop', '5'), ('2015', 'DE526C1', 'Wolfsburg', 'ons', '556074'), ('2015', 'DE526C1', 'Wolfsburg', 'beds', '4368'), ('2015', 'DE526C1', 'Wolfsburg', 'ons_per_res_pop', '4.5'), ('2015', 'DE526C1', 'Wolfsburg', 'beds_per_1000res_pop', '35.5'), ('2015', 'DE527C1', 'Bremerhaven', 'ons', '381065'), ('2015', 'DE527C1', 'Bremerhaven', 'beds', '2539'), ('2015', 'DE527C1', 'Bremerhaven', 'ons_per_res_pop', '3.5'), ('2015', 'DE527C1', 'Bremerhaven', 'beds_per_1000res_pop', '23.1'), ('2015', 'DE528C1', 'Bottrop', 'ons', '88856'), ('2015', 'DE528C1', 'Bottrop', 'beds', '619'), ('2015', 'DE528C1', 'Bottrop', 'ons_per_res_pop', '0.8'), ('2015', 'DE528C1', 'Bottrop', 'beds_per_1000res_pop', '5.3'), ('2015', 'DE529C1', 'Heilbronn', 'ons', '331716'), ('2015', 'DE529C1', 'Heilbronn', 'beds', '1836'), ('2015', 'DE529C1', 'Heilbronn', 'ons_per_res_pop', '2.8'), ('2015', 'DE529C1', 'Heilbronn', 'beds_per_1000res_pop', '15.3'), ('2015', 'DE530C1', 'Remscheid', 'ons', '107013'), ('2015', 'DE530C1', 'Remscheid', 'beds', '887'), ('2015', 'DE530C1', 'Remscheid', 'ons_per_res_pop', '1'), ('2015', 'DE530C1', 'Remscheid', 'beds_per_1000res_pop', '8.1'), ('2015', 'DE531C1', 'Offenbach am Main', 'ons', '384035'), ('2015', 'DE531C1', 'Offenbach am Main', 'beds', '2471'), ('2015', 'DE531C1', 'Offenbach am Main', 'ons_per_res_pop', '3.2'), ('2015', 'DE531C1', 'Offenbach am Main', 'beds_per_1000res_pop', '20.4'), ('2015', 'DE532C1', 'Ulm', 'ons', '605297'), ('2015', 'DE532C1', 'Ulm', 'beds', '3494'), ('2015', 'DE532C1', 'Ulm', 'ons_per_res_pop', '5'), ('2015', 'DE532C1', 'Ulm', 'beds_per_1000res_pop', '28.9'), ('2015', 'DE533C1', 'Pforzheim', 'ons', '239758'), ('2015', 'DE533C1', 'Pforzheim', 'beds', '1679'), ('2015', 'DE533C1', 'Pforzheim', 'ons_per_res_pop', '2'), ('2015', 'DE533C1', 'Pforzheim', 'beds_per_1000res_pop', '14.1'), ('2015', 'DE534C1', 'Ingolstadt', 'ons', '507870'), ('2015', 'DE534C1', 'Ingolstadt', 'beds', '3152'), ('2015', 'DE534C1', 'Ingolstadt', 'ons_per_res_pop', '3.9'), ('2015', 'DE534C1', 'Ingolstadt', 'beds_per_1000res_pop', '24.1'), ('2015', 'DE535C1', 'Gera', 'ons', '209368'), ('2015', 'DE535C1', 'Gera', 'beds', '1472'), ('2015', 'DE535C1', 'Gera', 'ons_per_res_pop', '2.2'), ('2015', 'DE535C1', 'Gera', 'beds_per_1000res_pop', '15.6'), ('2015', 'DE536C1', 'Salzgitter', 'ons', '153601'), ('2015', 'DE536C1', 'Salzgitter', 'beds', '1254'), ('2015', 'DE536C1', 'Salzgitter', 'ons_per_res_pop', '1.6'), ('2015', 'DE536C1', 'Salzgitter', 'beds_per_1000res_pop', '12.7'), ('2015', 'DE537C1', 'Reutlingen', 'ons', '193775'), ('2015', 'DE537C1', 'Reutlingen', 'beds', '1284'), ('2015', 'DE537C1', 'Reutlingen', 'ons_per_res_pop', '1.7'), ('2015', 'DE537C1', 'Reutlingen', 'beds_per_1000res_pop', '11.4'), ('2015', 'DE538C1', 'Fürth', 'ons', '236983'), ('2015', 'DE538C1', 'Fürth', 'beds', '1526'), ('2015', 'DE538C1', 'Fürth', 'ons_per_res_pop', '2'), ('2015', 'DE538C1', 'Fürth', 'beds_per_1000res_pop', '12.6'), ('2015', 'DE539C1', 'Cottbus', 'ons', '240221'), ('2015', 'DE539C1', 'Cottbus', 'beds', '1840'), ('2015', 'DE539C1', 'Cottbus', 'ons_per_res_pop', '2.4'), ('2015', 'DE539C1', 'Cottbus', 'beds_per_1000res_pop', '18.5'), ('2015', 'DE540C1', 'Siegen', 'ons', '127974'), ('2015', 'DE540C1', 'Siegen', 'beds', '834'), ('2015', 'DE540C1', 'Siegen', 'ons_per_res_pop', '1.3'), ('2015', 'DE540C1', 'Siegen', 'beds_per_1000res_pop', '8.3'), ('2015', 'DE541C1', 'Bergisch Gladbach', 'ons', '158058'), ('2015', 'DE541C1', 'Bergisch Gladbach', 'beds', '861'), ('2015', 'DE541C1', 'Bergisch Gladbach', 'ons_per_res_pop', '1.4'), ('2015', 'DE541C1', 'Bergisch Gladbach', 'beds_per_1000res_pop', '7.8'), ('2015', 'DE542C1', 'Hildesheim', 'ons', '309876'), ('2015', 'DE542C1', 'Hildesheim', 'beds', '2358'), ('2015', 'DE542C1', 'Hildesheim', 'ons_per_res_pop', '3.1'), ('2015', 'DE542C1', 'Hildesheim', 'beds_per_1000res_pop', '23.6'), ('2015', 'DE543C1', 'Witten', 'ons', '42760'), ('2015', 'DE543C1', 'Witten', 'beds', '416'), ('2015', 'DE543C1', 'Witten', 'ons_per_res_pop', '0.4'), ('2015', 'DE543C1', 'Witten', 'beds_per_1000res_pop', '4.3'), ('2015', 'DE544C1', 'Zwickau', 'ons', '157200'), ('2015', 'DE544C1', 'Zwickau', 'beds', '1116'), ('2015', 'DE544C1', 'Zwickau', 'ons_per_res_pop', '1.7'), ('2015', 'DE544C1', 'Zwickau', 'beds_per_1000res_pop', '12.3'), ('2015', 'DE545C1', 'Erlangen', 'ons', '517888'), ('2015', 'DE545C1', 'Erlangen', 'beds', '3261'), ('2015', 'DE545C1', 'Erlangen', 'ons_per_res_pop', '4.9'), ('2015', 'DE545C1', 'Erlangen', 'beds_per_1000res_pop', '30.6'), ('2015', 'DE546C1', 'Wuppertal', 'ons', '575203'), ('2015', 'DE546C1', 'Wuppertal', 'beds', '3491'), ('2015', 'DE546C1', 'Wuppertal', 'ons_per_res_pop', '1.7'), ('2015', 'DE546C1', 'Wuppertal', 'beds_per_1000res_pop', '10.1'), ('2015', 'DE547C1', 'Jena', 'ons', '322463'), ('2015', 'DE547C1', 'Jena', 'beds', '1921'), ('2015', 'DE547C1', 'Jena', 'ons_per_res_pop', '3'), ('2015', 'DE547C1', 'Jena', 'beds_per_1000res_pop', '17.8'), ('2015', 'DE548C1', 'Düren, Stadt', 'ons', null), ('2015', 'DE548C1', 'Düren, Stadt', 'beds', null), ('2015', 'DE548C1', 'Düren, Stadt', 'ons_per_res_pop', null), ('2015', 'DE548C1', 'Düren, Stadt', 'beds_per_1000res_pop', null), ('2015', 'DE549C1', 'Bocholt, Stadt', 'ons', null), ('2015', 'DE549C1', 'Bocholt, Stadt', 'beds', null), ('2015', 'DE549C1', 'Bocholt, Stadt', 'ons_per_res_pop', null), ('2015', 'DE549C1', 'Bocholt, Stadt', 'beds_per_1000res_pop', null), ('2015', 'EE', 'Estonia', 'ons', '5781870'), ('2015', 'EE', 'Estonia', 'beds', '58072'), ('2015', 'EE', 'Estonia', 'ons_per_res_pop', '4.4'), ('2015', 'EE', 'Estonia', 'beds_per_1000res_pop', '44.2'), ('2015', 'EE001C1', 'Tallinn', 'ons', '2790993'), ('2015', 'EE001C1', 'Tallinn', 'beds', '15457'), ('2015', 'EE001C1', 'Tallinn', 'ons_per_res_pop', '6.7'), ('2015', 'EE001C1', 'Tallinn', 'beds_per_1000res_pop', '37.4'), ('2015', 'EE002C1', 'Tartu', 'ons', '327460'), ('2015', 'EE002C1', 'Tartu', 'beds', '2098'), ('2015', 'EE002C1', 'Tartu', 'ons_per_res_pop', '3.4'), ('2015', 'EE002C1', 'Tartu', 'beds_per_1000res_pop', '21.6'), ('2015', 'EE003C1', 'Narva', 'ons', '37718'), ('2015', 'EE003C1', 'Narva', 'beds', '416'), ('2015', 'EE003C1', 'Narva', 'ons_per_res_pop', '0.6'), ('2015', 'EE003C1', 'Narva', 'beds_per_1000res_pop', '7.1'), ('2015', 'IE', 'Ireland', 'ons', null), ('2015', 'IE', 'Ireland', 'beds', null), ('2015', 'IE', 'Ireland', 'ons_per_res_pop', null), ('2015', 'IE', 'Ireland', 'beds_per_1000res_pop', null), ('2015', 'IE001C1', 'Dublin', 'ons', null), ('2015', 'IE001C1', 'Dublin', 'beds', null), ('2015', 'IE001C1', 'Dublin', 'ons_per_res_pop', null), ('2015', 'IE001C1', 'Dublin', 'beds_per_1000res_pop', null), ('2015', 'IE002C1', 'Cork', 'ons', null), ('2015', 'IE002C1', 'Cork', 'beds', null), ('2015', 'IE002C1', 'Cork', 'ons_per_res_pop', null), ('2015', 'IE002C1', 'Cork', 'beds_per_1000res_pop', null), ('2015', 'IE003C1', 'Limerick', 'ons', null), ('2015', 'IE003C1', 'Limerick', 'beds', null), ('2015', 'IE003C1', 'Limerick', 'ons_per_res_pop', null), ('2015', 'IE003C1', 'Limerick', 'beds_per_1000res_pop', null), ('2015', 'IE004C1', 'Galway', 'ons', null), ('2015', 'IE004C1', 'Galway', 'beds', null), ('2015', 'IE004C1', 'Galway', 'ons_per_res_pop', null), ('2015', 'IE004C1', 'Galway', 'beds_per_1000res_pop', null), ('2015', 'IE005C1', 'Waterford', 'ons', null), ('2015', 'IE005C1', 'Waterford', 'beds', null), ('2015', 'IE005C1', 'Waterford', 'ons_per_res_pop', null), ('2015', 'IE005C1', 'Waterford', 'beds_per_1000res_pop', null), ('2015', 'EL', 'Greece', 'ons', null), ('2015', 'EL', 'Greece', 'beds', null), ('2015', 'EL', 'Greece', 'ons_per_res_pop', null), ('2015', 'EL', 'Greece', 'beds_per_1000res_pop', null), ('2015', 'EL001C1', 'Athina', 'ons', null), ('2015', 'EL001C1', 'Athina', 'beds', null), ('2015', 'EL001C1', 'Athina', 'ons_per_res_pop', null), ('2015', 'EL001C1', 'Athina', 'beds_per_1000res_pop', null), ('2015', 'EL002C1', 'Thessaloniki', 'ons', null), ('2015', 'EL002C1', 'Thessaloniki', 'beds', null), ('2015', 'EL002C1', 'Thessaloniki', 'ons_per_res_pop', null), ('2015', 'EL002C1', 'Thessaloniki', 'beds_per_1000res_pop', null), ('2015', 'EL003C1', 'Pátra', 'ons', null), ('2015', 'EL003C1', 'Pátra', 'beds', null), ('2015', 'EL003C1', 'Pátra', 'ons_per_res_pop', null), ('2015', 'EL003C1', 'Pátra', 'beds_per_1000res_pop', null), ('2015', 'EL004C1', 'Irakleio', 'ons', null), ('2015', 'EL004C1', 'Irakleio', 'beds', null), ('2015', 'EL004C1', 'Irakleio', 'ons_per_res_pop', null), ('2015', 'EL004C1', 'Irakleio', 'beds_per_1000res_pop', null), ('2015', 'EL005C1', 'Larisa', 'ons', null), ('2015', 'EL005C1', 'Larisa', 'beds', null), ('2015', 'EL005C1', 'Larisa', 'ons_per_res_pop', null), ('2015', 'EL005C1', 'Larisa', 'beds_per_1000res_pop', null), ('2015', 'EL006C1', 'Volos', 'ons', null), ('2015', 'EL006C1', 'Volos', 'beds', null), ('2015', 'EL006C1', 'Volos', 'ons_per_res_pop', null), ('2015', 'EL006C1', 'Volos', 'beds_per_1000res_pop', null), ('2015', 'EL007C1', 'Ioannina', 'ons', null), ('2015', 'EL007C1', 'Ioannina', 'beds', null), ('2015', 'EL007C1', 'Ioannina', 'ons_per_res_pop', null), ('2015', 'EL007C1', 'Ioannina', 'beds_per_1000res_pop', null), ('2015', 'EL008C1', 'Kavala', 'ons', null), ('2015', 'EL008C1', 'Kavala', 'beds', null), ('2015', 'EL008C1', 'Kavala', 'ons_per_res_pop', null), ('2015', 'EL008C1', 'Kavala', 'beds_per_1000res_pop', null), ('2015', 'EL009C1', 'Kalamata', 'ons', null), ('2015', 'EL009C1', 'Kalamata', 'beds', null), ('2015', 'EL009C1', 'Kalamata', 'ons_per_res_pop', null), ('2015', 'EL009C1', 'Kalamata', 'beds_per_1000res_pop', null), ('2015', 'ES', 'Spain', 'ons', '419974225'), ('2015', 'ES', 'Spain', 'beds', '2540025'), ('2015', 'ES', 'Spain', 'ons_per_res_pop', '9'), ('2015', 'ES', 'Spain', 'beds_per_1000res_pop', '54.7'), ('2015', 'ES001C1', 'Madrid', 'ons', '19292547'), ('2015', 'ES001C1', 'Madrid', 'beds', '91268'), ('2015', 'ES001C1', 'Madrid', 'ons_per_res_pop', '6.1'), ('2015', 'ES001C1', 'Madrid', 'beds_per_1000res_pop', '29'), ('2015', 'ES002C1', 'Barcelona', 'ons', '19239886'), ('2015', 'ES002C1', 'Barcelona', 'beds', '79076'), ('2015', 'ES002C1', 'Barcelona', 'ons_per_res_pop', '12'), ('2015', 'ES002C1', 'Barcelona', 'beds_per_1000res_pop', '49.3'), ('2015', 'ES003C1', 'Valencia', 'ons', '4152840'), ('2015', 'ES003C1', 'Valencia', 'beds', '24154'), ('2015', 'ES003C1', 'Valencia', 'ons_per_res_pop', '5.3'), ('2015', 'ES003C1', 'Valencia', 'beds_per_1000res_pop', '30.7'), ('2015', 'ES004C1', 'Sevilla', 'ons', '5051054'), ('2015', 'ES004C1', 'Sevilla', 'beds', '24456'), ('2015', 'ES004C1', 'Sevilla', 'ons_per_res_pop', '7.3'), ('2015', 'ES004C1', 'Sevilla', 'beds_per_1000res_pop', '35.2'), ('2015', 'ES005C1', 'Zaragoza', 'ons', '1673116'), ('2015', 'ES005C1', 'Zaragoza', 'beds', '11091'), ('2015', 'ES005C1', 'Zaragoza', 'ons_per_res_pop', '2.5'), ('2015', 'ES005C1', 'Zaragoza', 'beds_per_1000res_pop', '16.7'), ('2015', 'ES006C1', 'Málaga', 'ons', '2418056'), ('2015', 'ES006C1', 'Málaga', 'beds', '11583'), ('2015', 'ES006C1', 'Málaga', 'ons_per_res_pop', '4.2'), ('2015', 'ES006C1', 'Málaga', 'beds_per_1000res_pop', '20.4'), ('2015', 'ES007C1', 'Murcia', 'ons', '627785'), ('2015', 'ES007C1', 'Murcia', 'beds', '5187'), ('2015', 'ES007C1', 'Murcia', 'ons_per_res_pop', '1.4'), ('2015', 'ES007C1', 'Murcia', 'beds_per_1000res_pop', '11.8'), ('2015', 'ES008C1', 'Las Palmas', 'ons', '1330990'), ('2015', 'ES008C1', 'Las Palmas', 'beds', '6918'), ('2015', 'ES008C1', 'Las Palmas', 'ons_per_res_pop', '3.5'), ('2015', 'ES008C1', 'Las Palmas', 'beds_per_1000res_pop', '18.2'), ('2015', 'ES009C1', 'Valladolid', 'ons', '664908'), ('2015', 'ES009C1', 'Valladolid', 'beds', '4038'), ('2015', 'ES009C1', 'Valladolid', 'ons_per_res_pop', '2.2'), ('2015', 'ES009C1', 'Valladolid', 'beds_per_1000res_pop', '13.3'), ('2015', 'ES010C1', 'Palma de Mallorca', 'ons', '8241525'), ('2015', 'ES010C1', 'Palma de Mallorca', 'beds', '43962'), ('2015', 'ES010C1', 'Palma de Mallorca', 'ons_per_res_pop', '20.6'), ('2015', 'ES010C1', 'Palma de Mallorca', 'beds_per_1000res_pop', '109.7'), ('2015', 'ES011C1', 'Santiago de Compostela', 'ons', '1328591'), ('2015', 'ES011C1', 'Santiago de Compostela', 'beds', '8784'), ('2015', 'ES011C1', 'Santiago de Compostela', 'ons_per_res_pop', '13.9'), ('2015', 'ES011C1', 'Santiago de Compostela', 'beds_per_1000res_pop', '91.9'), ('2015', 'ES012C1', 'Vitoria/Gasteiz', 'ons', '567104'), ('2015', 'ES012C1', 'Vitoria/Gasteiz', 'beds', '3908'), ('2015', 'ES012C1', 'Vitoria/Gasteiz', 'ons_per_res_pop', '2.3'), ('2015', 'ES012C1', 'Vitoria/Gasteiz', 'beds_per_1000res_pop', '16'), ('2015', 'ES013C1', 'Oviedo', 'ons', '882333'), ('2015', 'ES013C1', 'Oviedo', 'beds', '5925'), ('2015', 'ES013C1', 'Oviedo', 'ons_per_res_pop', '4'), ('2015', 'ES013C1', 'Oviedo', 'beds_per_1000res_pop', '26.7'), ('2015', 'ES014C1', 'Pamplona/Iruña', 'ons', '652960'), ('2015', 'ES014C1', 'Pamplona/Iruña', 'beds', '3876'), ('2015', 'ES014C1', 'Pamplona/Iruña', 'ons_per_res_pop', '3.3'), ('2015', 'ES014C1', 'Pamplona/Iruña', 'beds_per_1000res_pop', '19.8'), ('2015', 'ES015C1', 'Santander', 'ons', '845476'), ('2015', 'ES015C1', 'Santander', 'beds', '6614'), ('2015', 'ES015C1', 'Santander', 'ons_per_res_pop', '4.9'), ('2015', 'ES015C1', 'Santander', 'beds_per_1000res_pop', '38'), ('2015', 'ES016C1', 'Toledo', 'ons', '878322'), ('2015', 'ES016C1', 'Toledo', 'beds', '5246'), ('2015', 'ES016C1', 'Toledo', 'ons_per_res_pop', '10.6'), ('2015', 'ES016C1', 'Toledo', 'beds_per_1000res_pop', '63'), ('2015', 'ES017C1', 'Badajoz', 'ons', '295867'), ('2015', 'ES017C1', 'Badajoz', 'beds', '2331'), ('2015', 'ES017C1', 'Badajoz', 'ons_per_res_pop', '2'), ('2015', 'ES017C1', 'Badajoz', 'beds_per_1000res_pop', '15.6'), ('2015', 'ES018C1', 'Logroño', 'ons', '547733'), ('2015', 'ES018C1', 'Logroño', 'beds', '3151'), ('2015', 'ES018C1', 'Logroño', 'ons_per_res_pop', '3.6'), ('2015', 'ES018C1', 'Logroño', 'beds_per_1000res_pop', '20.8'), ('2015', 'ES019C1', 'Bilbao', 'ons', '1632129'), ('2015', 'ES019C1', 'Bilbao', 'beds', '8095'), ('2015', 'ES019C1', 'Bilbao', 'ons_per_res_pop', '4.7'), ('2015', 'ES019C1', 'Bilbao', 'beds_per_1000res_pop', '23.5'), ('2015', 'ES020C1', 'Córdoba', 'ons', '1617805'), ('2015', 'ES020C1', 'Córdoba', 'beds', '8225'), ('2015', 'ES020C1', 'Córdoba', 'ons_per_res_pop', '4.9'), ('2015', 'ES020C1', 'Córdoba', 'beds_per_1000res_pop', '25.1'), ('2015', 'ES021C1', 'Alicante/Alacant', 'ons', '1986488'), ('2015', 'ES021C1', 'Alicante/Alacant', 'beds', '10832'), ('2015', 'ES021C1', 'Alicante/Alacant', 'ons_per_res_pop', '6'), ('2015', 'ES021C1', 'Alicante/Alacant', 'beds_per_1000res_pop', '33'), ('2015', 'ES022C1', 'Vigo', 'ons', '663528'), ('2015', 'ES022C1', 'Vigo', 'beds', '5843'), ('2015', 'ES022C1', 'Vigo', 'ons_per_res_pop', '2.3'), ('2015', 'ES022C1', 'Vigo', 'beds_per_1000res_pop', '19.9'), ('2015', 'ES023C1', 'Gijón', 'ons', '883303'), ('2015', 'ES023C1', 'Gijón', 'beds', '7066'), ('2015', 'ES023C1', 'Gijón', 'ons_per_res_pop', '3.2'), ('2015', 'ES023C1', 'Gijón', 'beds_per_1000res_pop', '25.8'), ('2015', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons', null), ('2015', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds', null), ('2015', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons_per_res_pop', null), ('2015', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds_per_1000res_pop', null), ('2015', 'ES025C1', 'Santa Cruz de Tenerife', 'ons', '537252'), ('2015', 'ES025C1', 'Santa Cruz de Tenerife', 'beds', '3148'), ('2015', 'ES025C1', 'Santa Cruz de Tenerife', 'ons_per_res_pop', '2.6'), ('2015', 'ES025C1', 'Santa Cruz de Tenerife', 'beds_per_1000res_pop', '15.4'), ('2015', 'ES026C1', 'A Coruña', 'ons', '876005'), ('2015', 'ES026C1', 'A Coruña', 'beds', '5568'), ('2015', 'ES026C1', 'A Coruña', 'ons_per_res_pop', '3.6'), ('2015', 'ES026C1', 'A Coruña', 'beds_per_1000res_pop', '22.8'), ('2015', 'ES027C1', 'Barakaldo', 'ons', null), ('2015', 'ES027C1', 'Barakaldo', 'beds', null), ('2015', 'ES027C1', 'Barakaldo', 'ons_per_res_pop', null), ('2015', 'ES027C1', 'Barakaldo', 'beds_per_1000res_pop', null), ('2015', 'ES028C1', 'Reus', 'ons', null), ('2015', 'ES028C1', 'Reus', 'beds', null), ('2015', 'ES028C1', 'Reus', 'ons_per_res_pop', null), ('2015', 'ES028C1', 'Reus', 'beds_per_1000res_pop', null), ('2015', 'ES029C1', 'Telde', 'ons', null), ('2015', 'ES029C1', 'Telde', 'beds', null), ('2015', 'ES029C1', 'Telde', 'ons_per_res_pop', null), ('2015', 'ES029C1', 'Telde', 'beds_per_1000res_pop', null), ('2015', 'ES030C1', 'Parla', 'ons', null), ('2015', 'ES030C1', 'Parla', 'beds', null), ('2015', 'ES030C1', 'Parla', 'ons_per_res_pop', null), ('2015', 'ES030C1', 'Parla', 'beds_per_1000res_pop', null), ('2015', 'ES031C1', 'Lugo', 'ons', '240864'), ('2015', 'ES031C1', 'Lugo', 'beds', '1945'), ('2015', 'ES031C1', 'Lugo', 'ons_per_res_pop', '2.5'), ('2015', 'ES031C1', 'Lugo', 'beds_per_1000res_pop', '19.8'), ('2015', 'ES032C1', 'San Fernando', 'ons', null), ('2015', 'ES032C1', 'San Fernando', 'beds', null), ('2015', 'ES032C1', 'San Fernando', 'ons_per_res_pop', null), ('2015', 'ES032C1', 'San Fernando', 'beds_per_1000res_pop', null), ('2015', 'ES033C1', 'Girona', 'ons', null), ('2015', 'ES033C1', 'Girona', 'beds', null), ('2015', 'ES033C1', 'Girona', 'ons_per_res_pop', null), ('2015', 'ES033C1', 'Girona', 'beds_per_1000res_pop', null), ('2015', 'ES034C1', 'Cáceres', 'ons', '488919'), ('2015', 'ES034C1', 'Cáceres', 'beds', '3367'), ('2015', 'ES034C1', 'Cáceres', 'ons_per_res_pop', '5.1'), ('2015', 'ES034C1', 'Cáceres', 'beds_per_1000res_pop', '35.2'), ('2015', 'ES035C1', 'Torrevieja', 'ons', '396736'), ('2015', 'ES035C1', 'Torrevieja', 'beds', '7030'), ('2015', 'ES035C1', 'Torrevieja', 'ons_per_res_pop', '4.5'), ('2015', 'ES035C1', 'Torrevieja', 'beds_per_1000res_pop', '79.5'), ('2015', 'ES036C1', 'Pozuelo de Alarcón', 'ons', null), ('2015', 'ES036C1', 'Pozuelo de Alarcón', 'beds', null), ('2015', 'ES036C1', 'Pozuelo de Alarcón', 'ons_per_res_pop', null), ('2015', 'ES036C1', 'Pozuelo de Alarcón', 'beds_per_1000res_pop', null), ('2015', 'ES037C1', 'Puerto de Santa María, El', 'ons', '527572'), ('2015', 'ES037C1', 'Puerto de Santa María, El', 'beds', '5249'), ('2015', 'ES037C1', 'Puerto de Santa María, El', 'ons_per_res_pop', '6'), ('2015', 'ES037C1', 'Puerto de Santa María, El', 'beds_per_1000res_pop', '59.4'), ('2015', 'ES038C1', 'Coslada', 'ons', null), ('2015', 'ES038C1', 'Coslada', 'beds', null), ('2015', 'ES038C1', 'Coslada', 'ons_per_res_pop', null), ('2015', 'ES038C1', 'Coslada', 'beds_per_1000res_pop', null), ('2015', 'ES039C1', 'Avilés', 'ons', null), ('2015', 'ES039C1', 'Avilés', 'beds', null), ('2015', 'ES039C1', 'Avilés', 'ons_per_res_pop', null), ('2015', 'ES039C1', 'Avilés', 'beds_per_1000res_pop', null), ('2015', 'ES040C1', 'Talavera de la Reina', 'ons', null), ('2015', 'ES040C1', 'Talavera de la Reina', 'beds', null), ('2015', 'ES040C1', 'Talavera de la Reina', 'ons_per_res_pop', null), ('2015', 'ES040C1', 'Talavera de la Reina', 'beds_per_1000res_pop', null), ('2015', 'ES041C1', 'Palencia', 'ons', null), ('2015', 'ES041C1', 'Palencia', 'beds', null), ('2015', 'ES041C1', 'Palencia', 'ons_per_res_pop', null), ('2015', 'ES041C1', 'Palencia', 'beds_per_1000res_pop', null), ('2015', 'ES042C1', 'Sant Boi de Llobregat', 'ons', null), ('2015', 'ES042C1', 'Sant Boi de Llobregat', 'beds', null), ('2015', 'ES042C1', 'Sant Boi de Llobregat', 'ons_per_res_pop', null), ('2015', 'ES042C1', 'Sant Boi de Llobregat', 'beds_per_1000res_pop', null), ('2015', 'ES043C1', 'Ferrol', 'ons', null), ('2015', 'ES043C1', 'Ferrol', 'beds', null), ('2015', 'ES043C1', 'Ferrol', 'ons_per_res_pop', null), ('2015', 'ES043C1', 'Ferrol', 'beds_per_1000res_pop', null), ('2015', 'ES044C1', 'Pontevedra', 'ons', '149105'), ('2015', 'ES044C1', 'Pontevedra', 'beds', '1289'), ('2015', 'ES044C1', 'Pontevedra', 'ons_per_res_pop', '1.8'), ('2015', 'ES044C1', 'Pontevedra', 'beds_per_1000res_pop', '15.6'), ('2015', 'ES045C1', 'Ceuta', 'ons', '160756'), ('2015', 'ES045C1', 'Ceuta', 'beds', '829'), ('2015', 'ES045C1', 'Ceuta', 'ons_per_res_pop', '1.9'), ('2015', 'ES045C1', 'Ceuta', 'beds_per_1000res_pop', '9.8'), ('2015', 'ES046C1', 'Gandia', 'ons', '1720004'), ('2015', 'ES046C1', 'Gandia', 'beds', '14320'), ('2015', 'ES046C1', 'Gandia', 'ons_per_res_pop', '22.8'), ('2015', 'ES046C1', 'Gandia', 'beds_per_1000res_pop', '189.6'), ('2015', 'ES047C1', 'Rozas de Madrid, Las', 'ons', null), ('2015', 'ES047C1', 'Rozas de Madrid, Las', 'beds', null), ('2015', 'ES047C1', 'Rozas de Madrid, Las', 'ons_per_res_pop', null), ('2015', 'ES047C1', 'Rozas de Madrid, Las', 'beds_per_1000res_pop', null), ('2015', 'ES048C1', 'Guadalajara', 'ons', '161830'), ('2015', 'ES048C1', 'Guadalajara', 'beds', '1350'), ('2015', 'ES048C1', 'Guadalajara', 'ons_per_res_pop', '1.9'), ('2015', 'ES048C1', 'Guadalajara', 'beds_per_1000res_pop', '16.2'), ('2015', 'ES049C1', 'Sant Cugat del Vallès', 'ons', null), ('2015', 'ES049C1', 'Sant Cugat del Vallès', 'beds', null), ('2015', 'ES049C1', 'Sant Cugat del Vallès', 'ons_per_res_pop', null), ('2015', 'ES049C1', 'Sant Cugat del Vallès', 'beds_per_1000res_pop', null), ('2015', 'ES050C1', 'Manresa', 'ons', null), ('2015', 'ES050C1', 'Manresa', 'beds', null), ('2015', 'ES050C1', 'Manresa', 'ons_per_res_pop', null), ('2015', 'ES050C1', 'Manresa', 'beds_per_1000res_pop', null), ('2015', 'ES051C1', 'Getxo', 'ons', null), ('2015', 'ES051C1', 'Getxo', 'beds', null), ('2015', 'ES051C1', 'Getxo', 'ons_per_res_pop', null), ('2015', 'ES051C1', 'Getxo', 'beds_per_1000res_pop', null), ('2015', 'ES052C1', 'Rubí', 'ons', null), ('2015', 'ES052C1', 'Rubí', 'beds', null), ('2015', 'ES052C1', 'Rubí', 'ons_per_res_pop', null), ('2015', 'ES052C1', 'Rubí', 'beds_per_1000res_pop', null), ('2015', 'ES053C1', 'Ciudad Real', 'ons', '176460'), ('2015', 'ES053C1', 'Ciudad Real', 'beds', '1519'), ('2015', 'ES053C1', 'Ciudad Real', 'ons_per_res_pop', '2.4'), ('2015', 'ES053C1', 'Ciudad Real', 'beds_per_1000res_pop', '20.4'), ('2015', 'ES054C1', 'Benidorm', 'ons', '15483750'), ('2015', 'ES054C1', 'Benidorm', 'beds', '75798'), ('2015', 'ES054C1', 'Benidorm', 'ons_per_res_pop', '224.3'), ('2015', 'ES054C1', 'Benidorm', 'beds_per_1000res_pop', '1097.8'), ('2015', 'ES055C1', 'Melilla', 'ons', '147831'), ('2015', 'ES055C1', 'Melilla', 'beds', '847'), ('2015', 'ES055C1', 'Melilla', 'ons_per_res_pop', '1.7'), ('2015', 'ES055C1', 'Melilla', 'beds_per_1000res_pop', '9.9'), ('2015', 'ES056C1', 'Viladecans', 'ons', null), ('2015', 'ES056C1', 'Viladecans', 'beds', null), ('2015', 'ES056C1', 'Viladecans', 'ons_per_res_pop', null), ('2015', 'ES056C1', 'Viladecans', 'beds_per_1000res_pop', null), ('2015', 'ES057C1', 'Ponferrada', 'ons', '165144'), ('2015', 'ES057C1', 'Ponferrada', 'beds', '1711'), ('2015', 'ES057C1', 'Ponferrada', 'ons_per_res_pop', '2.5'), ('2015', 'ES057C1', 'Ponferrada', 'beds_per_1000res_pop', '25.6'), ('2015', 'ES058C1', 'San Sebastián de los Reyes', 'ons', null), ('2015', 'ES058C1', 'San Sebastián de los Reyes', 'beds', null), ('2015', 'ES058C1', 'San Sebastián de los Reyes', 'ons_per_res_pop', null), ('2015', 'ES058C1', 'San Sebastián de los Reyes', 'beds_per_1000res_pop', null), ('2015', 'ES059C1', 'Zamora', 'ons', '162163'), ('2015', 'ES059C1', 'Zamora', 'beds', '1058'), ('2015', 'ES059C1', 'Zamora', 'ons_per_res_pop', '2.5'), ('2015', 'ES059C1', 'Zamora', 'beds_per_1000res_pop', '16.6'), ('2015', 'ES060C1', 'Fuengirola', 'ons', '2819723'), ('2015', 'ES060C1', 'Fuengirola', 'beds', '14853'), ('2015', 'ES060C1', 'Fuengirola', 'ons_per_res_pop', '36.4'), ('2015', 'ES060C1', 'Fuengirola', 'beds_per_1000res_pop', '191.6'), ('2015', 'ES061C1', 'Cerdanyola del Vallès', 'ons', null), ('2015', 'ES061C1', 'Cerdanyola del Vallès', 'beds', null), ('2015', 'ES061C1', 'Cerdanyola del Vallès', 'ons_per_res_pop', null), ('2015', 'ES061C1', 'Cerdanyola del Vallès', 'beds_per_1000res_pop', null), ('2015', 'ES062C1', 'Sanlúcar de Barrameda', 'ons', null), ('2015', 'ES062C1', 'Sanlúcar de Barrameda', 'beds', null), ('2015', 'ES062C1', 'Sanlúcar de Barrameda', 'ons_per_res_pop', null), ('2015', 'ES062C1', 'Sanlúcar de Barrameda', 'beds_per_1000res_pop', null), ('2015', 'ES063C1', 'Vilanova i la Geltrú', 'ons', null), ('2015', 'ES063C1', 'Vilanova i la Geltrú', 'beds', null), ('2015', 'ES063C1', 'Vilanova i la Geltrú', 'ons_per_res_pop', null), ('2015', 'ES063C1', 'Vilanova i la Geltrú', 'beds_per_1000res_pop', null), ('2015', 'ES064C1', 'Prat de Llobregat, El', 'ons', null), ('2015', 'ES064C1', 'Prat de Llobregat, El', 'beds', null), ('2015', 'ES064C1', 'Prat de Llobregat, El', 'ons_per_res_pop', null), ('2015', 'ES064C1', 'Prat de Llobregat, El', 'beds_per_1000res_pop', null), ('2015', 'ES065C1', 'Línea de la Concepción, La', 'ons', null), ('2015', 'ES065C1', 'Línea de la Concepción, La', 'beds', null), ('2015', 'ES065C1', 'Línea de la Concepción, La', 'ons_per_res_pop', null), ('2015', 'ES065C1', 'Línea de la Concepción, La', 'beds_per_1000res_pop', null), ('2015', 'ES066C1', 'Cornellà de Llobregat', 'ons', null), ('2015', 'ES066C1', 'Cornellà de Llobregat', 'beds', null), ('2015', 'ES066C1', 'Cornellà de Llobregat', 'ons_per_res_pop', null), ('2015', 'ES066C1', 'Cornellà de Llobregat', 'beds_per_1000res_pop', null), ('2015', 'ES067C1', 'Majadahonda', 'ons', null), ('2015', 'ES067C1', 'Majadahonda', 'beds', null), ('2015', 'ES067C1', 'Majadahonda', 'ons_per_res_pop', null), ('2015', 'ES067C1', 'Majadahonda', 'beds_per_1000res_pop', null), ('2015', 'ES068C1', 'Torremolinos', 'ons', '5456358'), ('2015', 'ES068C1', 'Torremolinos', 'beds', '25321'), ('2015', 'ES068C1', 'Torremolinos', 'ons_per_res_pop', '80.8'), ('2015', 'ES068C1', 'Torremolinos', 'beds_per_1000res_pop', '375.2'), ('2015', 'ES069C1', 'Castelldefels', 'ons', '769127'), ('2015', 'ES069C1', 'Castelldefels', 'beds', '4930'), ('2015', 'ES069C1', 'Castelldefels', 'ons_per_res_pop', '12'), ('2015', 'ES069C1', 'Castelldefels', 'beds_per_1000res_pop', '77.2'), ('2015', 'ES070C1', 'Irun', 'ons', null), ('2015', 'ES070C1', 'Irun', 'beds', null), ('2015', 'ES070C1', 'Irun', 'ons_per_res_pop', null), ('2015', 'ES070C1', 'Irun', 'beds_per_1000res_pop', null), ('2015', 'ES071C1', 'Granollers', 'ons', null), ('2015', 'ES071C1', 'Granollers', 'beds', null), ('2015', 'ES071C1', 'Granollers', 'ons_per_res_pop', null), ('2015', 'ES071C1', 'Granollers', 'beds_per_1000res_pop', null), ('2015', 'ES072C1', 'Arrecife', 'ons', null), ('2015', 'ES072C1', 'Arrecife', 'beds', null), ('2015', 'ES072C1', 'Arrecife', 'ons_per_res_pop', null), ('2015', 'ES072C1', 'Arrecife', 'beds_per_1000res_pop', null), ('2015', 'ES073C1', 'Elda', 'ons', null), ('2015', 'ES073C1', 'Elda', 'beds', null), ('2015', 'ES073C1', 'Elda', 'ons_per_res_pop', null), ('2015', 'ES073C1', 'Elda', 'beds_per_1000res_pop', null), ('2015', 'ES074C1', 'Santa Lucía de Tirajana', 'ons', null), ('2015', 'ES074C1', 'Santa Lucía de Tirajana', 'beds', null), ('2015', 'ES074C1', 'Santa Lucía de Tirajana', 'ons_per_res_pop', null), ('2015', 'ES074C1', 'Santa Lucía de Tirajana', 'beds_per_1000res_pop', null), ('2015', 'ES075C1', 'Mollet del Vallès', 'ons', null), ('2015', 'ES075C1', 'Mollet del Vallès', 'beds', null), ('2015', 'ES075C1', 'Mollet del Vallès', 'ons_per_res_pop', null), ('2015', 'ES075C1', 'Mollet del Vallès', 'beds_per_1000res_pop', null), ('2015', 'ES501C1', 'Granada', 'ons', '3372075'), ('2015', 'ES501C1', 'Granada', 'beds', '16326'), ('2015', 'ES501C1', 'Granada', 'ons_per_res_pop', '14.3'), ('2015', 'ES501C1', 'Granada', 'beds_per_1000res_pop', '69.2'), ('2015', 'ES503C1', 'Badalona', 'ons', null), ('2015', 'ES503C1', 'Badalona', 'beds', null), ('2015', 'ES503C1', 'Badalona', 'ons_per_res_pop', null), ('2015', 'ES503C1', 'Badalona', 'beds_per_1000res_pop', null), ('2015', 'ES504C1', 'Móstoles', 'ons', null), ('2015', 'ES504C1', 'Móstoles', 'beds', null), ('2015', 'ES504C1', 'Móstoles', 'ons_per_res_pop', null), ('2015', 'ES504C1', 'Móstoles', 'beds_per_1000res_pop', null), ('2015', 'ES505C1', 'Elche/Elx', 'ons', '670253'), ('2015', 'ES505C1', 'Elche/Elx', 'beds', '3904'), ('2015', 'ES505C1', 'Elche/Elx', 'ons_per_res_pop', '2.9'), ('2015', 'ES505C1', 'Elche/Elx', 'beds_per_1000res_pop', '17.2'), ('2015', 'ES506C1', 'Cartagena', 'ons', '1776581'), ('2015', 'ES506C1', 'Cartagena', 'beds', '17099'), ('2015', 'ES506C1', 'Cartagena', 'ons_per_res_pop', '8.2'), ('2015', 'ES506C1', 'Cartagena', 'beds_per_1000res_pop', '79.1'), ('2015', 'ES507C1', 'Sabadell', 'ons', null), ('2015', 'ES507C1', 'Sabadell', 'beds', null), ('2015', 'ES507C1', 'Sabadell', 'ons_per_res_pop', null), ('2015', 'ES507C1', 'Sabadell', 'beds_per_1000res_pop', null), ('2015', 'ES508C1', 'Jerez de la Frontera', 'ons', '621236'), ('2015', 'ES508C1', 'Jerez de la Frontera', 'beds', '3923'), ('2015', 'ES508C1', 'Jerez de la Frontera', 'ons_per_res_pop', '2.9'), ('2015', 'ES508C1', 'Jerez de la Frontera', 'beds_per_1000res_pop', '18.4'), ('2015', 'ES509C1', 'Fuenlabrada', 'ons', null), ('2015', 'ES509C1', 'Fuenlabrada', 'beds', null), ('2015', 'ES509C1', 'Fuenlabrada', 'ons_per_res_pop', null), ('2015', 'ES509C1', 'Fuenlabrada', 'beds_per_1000res_pop', null), ('2015', 'ES510C1', 'San Sebastián/Donostia', 'ons', '1356566'), ('2015', 'ES510C1', 'San Sebastián/Donostia', 'beds', '7798'), ('2015', 'ES510C1', 'San Sebastián/Donostia', 'ons_per_res_pop', '7.3'), ('2015', 'ES510C1', 'San Sebastián/Donostia', 'beds_per_1000res_pop', '41.9'), ('2015', 'ES511C1', 'Alcalá de Henares', 'ons', null), ('2015', 'ES511C1', 'Alcalá de Henares', 'beds', null), ('2015', 'ES511C1', 'Alcalá de Henares', 'ons_per_res_pop', null), ('2015', 'ES511C1', 'Alcalá de Henares', 'beds_per_1000res_pop', null), ('2015', 'ES512C1', 'Terrassa', 'ons', null), ('2015', 'ES512C1', 'Terrassa', 'beds', null), ('2015', 'ES512C1', 'Terrassa', 'ons_per_res_pop', null), ('2015', 'ES512C1', 'Terrassa', 'beds_per_1000res_pop', null), ('2015', 'ES513C1', 'Leganés', 'ons', null), ('2015', 'ES513C1', 'Leganés', 'beds', null), ('2015', 'ES513C1', 'Leganés', 'ons_per_res_pop', null), ('2015', 'ES513C1', 'Leganés', 'beds_per_1000res_pop', null), ('2015', 'ES514C1', 'Almería', 'ons', '808508'), ('2015', 'ES514C1', 'Almería', 'beds', '6052'), ('2015', 'ES514C1', 'Almería', 'ons_per_res_pop', '4.2'), ('2015', 'ES514C1', 'Almería', 'beds_per_1000res_pop', '31.2'), ('2015', 'ES515C1', 'Burgos', 'ons', '714532'), ('2015', 'ES515C1', 'Burgos', 'beds', '5057'), ('2015', 'ES515C1', 'Burgos', 'ons_per_res_pop', '4'), ('2015', 'ES515C1', 'Burgos', 'beds_per_1000res_pop', '28.6'), ('2015', 'ES516C1', 'Salamanca', 'ons', '1063174'), ('2015', 'ES516C1', 'Salamanca', 'beds', '5770'), ('2015', 'ES516C1', 'Salamanca', 'ons_per_res_pop', '7.3'), ('2015', 'ES516C1', 'Salamanca', 'beds_per_1000res_pop', '39.4'), ('2015', 'ES517C1', 'Alcorcón', 'ons', null), ('2015', 'ES517C1', 'Alcorcón', 'beds', null), ('2015', 'ES517C1', 'Alcorcón', 'ons_per_res_pop', null), ('2015', 'ES517C1', 'Alcorcón', 'beds_per_1000res_pop', null), ('2015', 'ES518C1', 'Getafe', 'ons', null), ('2015', 'ES518C1', 'Getafe', 'beds', null), ('2015', 'ES518C1', 'Getafe', 'ons_per_res_pop', null), ('2015', 'ES518C1', 'Getafe', 'beds_per_1000res_pop', null), ('2015', 'ES519C1', 'Albacete', 'ons', '277678'), ('2015', 'ES519C1', 'Albacete', 'beds', '2570'), ('2015', 'ES519C1', 'Albacete', 'ons_per_res_pop', '1.6'), ('2015', 'ES519C1', 'Albacete', 'beds_per_1000res_pop', '14.9'), ('2015', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons', '381492'), ('2015', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds', '3587'), ('2015', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons_per_res_pop', '2.2'), ('2015', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds_per_1000res_pop', '20.9'), ('2015', 'ES521C1', 'Huelva', 'ons', null), ('2015', 'ES521C1', 'Huelva', 'beds', null), ('2015', 'ES521C1', 'Huelva', 'ons_per_res_pop', null), ('2015', 'ES521C1', 'Huelva', 'beds_per_1000res_pop', null), ('2015', 'ES522C1', 'Cádiz', 'ons', '592406'), ('2015', 'ES522C1', 'Cádiz', 'beds', '3014'), ('2015', 'ES522C1', 'Cádiz', 'ons_per_res_pop', '4.9'), ('2015', 'ES522C1', 'Cádiz', 'beds_per_1000res_pop', '25'), ('2015', 'ES523C1', 'León', 'ons', '735152'), ('2015', 'ES523C1', 'León', 'beds', '3998'), ('2015', 'ES523C1', 'León', 'ons_per_res_pop', '5.8'), ('2015', 'ES523C1', 'León', 'beds_per_1000res_pop', '31.3'), ('2015', 'ES524C1', 'San Cristóbal de la Laguna', 'ons', null), ('2015', 'ES524C1', 'San Cristóbal de la Laguna', 'beds', null), ('2015', 'ES524C1', 'San Cristóbal de la Laguna', 'ons_per_res_pop', null), ('2015', 'ES524C1', 'San Cristóbal de la Laguna', 'beds_per_1000res_pop', null), ('2015', 'ES525C1', 'Tarragona', 'ons', '1045017'), ('2015', 'ES525C1', 'Tarragona', 'beds', '12701'), ('2015', 'ES525C1', 'Tarragona', 'ons_per_res_pop', '8'), ('2015', 'ES525C1', 'Tarragona', 'beds_per_1000res_pop', '96.8'), ('2015', 'ES526C1', 'Santa Coloma de Gramenet', 'ons', null), ('2015', 'ES526C1', 'Santa Coloma de Gramenet', 'beds', null), ('2015', 'ES526C1', 'Santa Coloma de Gramenet', 'ons_per_res_pop', null), ('2015', 'ES526C1', 'Santa Coloma de Gramenet', 'beds_per_1000res_pop', null), ('2015', 'ES527C1', 'Jaén', 'ons', null), ('2015', 'ES527C1', 'Jaén', 'beds', null), ('2015', 'ES527C1', 'Jaén', 'ons_per_res_pop', null), ('2015', 'ES527C1', 'Jaén', 'beds_per_1000res_pop', null), ('2015', 'ES528C1', 'Lleida', 'ons', '268596'), ('2015', 'ES528C1', 'Lleida', 'beds', '2142'), ('2015', 'ES528C1', 'Lleida', 'ons_per_res_pop', '1.9'), ('2015', 'ES528C1', 'Lleida', 'beds_per_1000res_pop', '15.5'), ('2015', 'ES529C1', 'Ourense', 'ons', '194386'), ('2015', 'ES529C1', 'Ourense', 'beds', '1393'), ('2015', 'ES529C1', 'Ourense', 'ons_per_res_pop', '1.8'), ('2015', 'ES529C1', 'Ourense', 'beds_per_1000res_pop', '13.1'), ('2015', 'ES530C1', 'Mataró', 'ons', null), ('2015', 'ES530C1', 'Mataró', 'beds', null), ('2015', 'ES530C1', 'Mataró', 'ons_per_res_pop', null), ('2015', 'ES530C1', 'Mataró', 'beds_per_1000res_pop', null), ('2015', 'ES531C1', 'Dos Hermanas', 'ons', null), ('2015', 'ES531C1', 'Dos Hermanas', 'beds', null), ('2015', 'ES531C1', 'Dos Hermanas', 'ons_per_res_pop', null), ('2015', 'ES531C1', 'Dos Hermanas', 'beds_per_1000res_pop', null), ('2015', 'ES532C1', 'Algeciras', 'ons', null), ('2015', 'ES532C1', 'Algeciras', 'beds', null), ('2015', 'ES532C1', 'Algeciras', 'ons_per_res_pop', null), ('2015', 'ES532C1', 'Algeciras', 'beds_per_1000res_pop', null), ('2015', 'ES533C1', 'Marbella', 'ons', '4317357'), ('2015', 'ES533C1', 'Marbella', 'beds', '27126'), ('2015', 'ES533C1', 'Marbella', 'ons_per_res_pop', '30.9'), ('2015', 'ES533C1', 'Marbella', 'beds_per_1000res_pop', '194.4'), ('2015', 'ES534C1', 'Torrejón de Ardoz', 'ons', null), ('2015', 'ES534C1', 'Torrejón de Ardoz', 'beds', null), ('2015', 'ES534C1', 'Torrejón de Ardoz', 'ons_per_res_pop', null), ('2015', 'ES534C1', 'Torrejón de Ardoz', 'beds_per_1000res_pop', null), ('2015', 'ES535C1', 'Alcobendas', 'ons', null), ('2015', 'ES535C1', 'Alcobendas', 'beds', null), ('2015', 'ES535C1', 'Alcobendas', 'ons_per_res_pop', null), ('2015', 'ES535C1', 'Alcobendas', 'beds_per_1000res_pop', null), ('2015', 'ES536C1', 'Alcalá de Guadaíra', 'ons', null), ('2015', 'ES536C1', 'Alcalá de Guadaíra', 'beds', null), ('2015', 'ES536C1', 'Alcalá de Guadaíra', 'ons_per_res_pop', null), ('2015', 'ES536C1', 'Alcalá de Guadaíra', 'beds_per_1000res_pop', null), ('2015', 'ES537C1', 'Alcoy', 'ons', null), ('2015', 'ES537C1', 'Alcoy', 'beds', null), ('2015', 'ES537C1', 'Alcoy', 'ons_per_res_pop', null), ('2015', 'ES537C1', 'Alcoy', 'beds_per_1000res_pop', null), ('2015', 'ES538C1', 'Ávila', 'ons', '435924'), ('2015', 'ES538C1', 'Ávila', 'beds', '2984'), ('2015', 'ES538C1', 'Ávila', 'ons_per_res_pop', '7.5'), ('2015', 'ES538C1', 'Ávila', 'beds_per_1000res_pop', '51.1'), ('2015', 'ES539C1', 'Benalmádena', 'ons', '3800761'), ('2015', 'ES539C1', 'Benalmádena', 'beds', '20239'), ('2015', 'ES539C1', 'Benalmádena', 'ons_per_res_pop', '57.1'), ('2015', 'ES539C1', 'Benalmádena', 'beds_per_1000res_pop', '303.9'), ('2015', 'ES540C1', 'Chiclana de la Frontera', 'ons', null), ('2015', 'ES540C1', 'Chiclana de la Frontera', 'beds', null), ('2015', 'ES540C1', 'Chiclana de la Frontera', 'ons_per_res_pop', null), ('2015', 'ES540C1', 'Chiclana de la Frontera', 'beds_per_1000res_pop', null), ('2015', 'ES541C1', 'Collado Villalba', 'ons', null), ('2015', 'ES541C1', 'Collado Villalba', 'beds', null), ('2015', 'ES541C1', 'Collado Villalba', 'ons_per_res_pop', null), ('2015', 'ES541C1', 'Collado Villalba', 'beds_per_1000res_pop', null), ('2015', 'ES542C1', 'Cuenca', 'ons', '359778'), ('2015', 'ES542C1', 'Cuenca', 'beds', '4399'), ('2015', 'ES542C1', 'Cuenca', 'ons_per_res_pop', '6.5'), ('2015', 'ES542C1', 'Cuenca', 'beds_per_1000res_pop', '79.4'), ('2015', 'ES543C1', 'Eivissa', 'ons', '1935793'), ('2015', 'ES543C1', 'Eivissa', 'beds', '14661'), ('2015', 'ES543C1', 'Eivissa', 'ons_per_res_pop', '38.7'), ('2015', 'ES543C1', 'Eivissa', 'beds_per_1000res_pop', '293.4'), ('2015', 'ES544C1', 'Linares', 'ons', null), ('2015', 'ES544C1', 'Linares', 'beds', null), ('2015', 'ES544C1', 'Linares', 'ons_per_res_pop', null), ('2015', 'ES544C1', 'Linares', 'beds_per_1000res_pop', null), ('2015', 'ES545C1', 'Lorca', 'ons', null), ('2015', 'ES545C1', 'Lorca', 'beds', null), ('2015', 'ES545C1', 'Lorca', 'ons_per_res_pop', null), ('2015', 'ES545C1', 'Lorca', 'beds_per_1000res_pop', null), ('2015', 'ES546C1', 'Mérida', 'ons', null), ('2015', 'ES546C1', 'Mérida', 'beds', null), ('2015', 'ES546C1', 'Mérida', 'ons_per_res_pop', null), ('2015', 'ES546C1', 'Mérida', 'beds_per_1000res_pop', null), ('2015', 'ES547C1', 'Sagunto', 'ons', null), ('2015', 'ES547C1', 'Sagunto', 'beds', null), ('2015', 'ES547C1', 'Sagunto', 'ons_per_res_pop', null), ('2015', 'ES547C1', 'Sagunto', 'beds_per_1000res_pop', null), ('2015', 'ES548C1', 'Torrelavega', 'ons', null), ('2015', 'ES548C1', 'Torrelavega', 'beds', null), ('2015', 'ES548C1', 'Torrelavega', 'ons_per_res_pop', null), ('2015', 'ES548C1', 'Torrelavega', 'beds_per_1000res_pop', null), ('2015', 'ES549C1', 'Valdemoro', 'ons', null), ('2015', 'ES549C1', 'Valdemoro', 'beds', null), ('2015', 'ES549C1', 'Valdemoro', 'ons_per_res_pop', null), ('2015', 'ES549C1', 'Valdemoro', 'beds_per_1000res_pop', null), ('2015', 'ES550C1', 'Puerto de la Cruz', 'ons', '4832219'), ('2015', 'ES550C1', 'Puerto de la Cruz', 'beds', '20562'), ('2015', 'ES550C1', 'Puerto de la Cruz', 'ons_per_res_pop', '164.3'), ('2015', 'ES550C1', 'Puerto de la Cruz', 'beds_per_1000res_pop', '699.1'), ('2015', 'ES551C1', 'Paterna', 'ons', null), ('2015', 'ES551C1', 'Paterna', 'beds', null), ('2015', 'ES551C1', 'Paterna', 'ons_per_res_pop', null), ('2015', 'ES551C1', 'Paterna', 'beds_per_1000res_pop', null), ('2015', 'ES552C1', 'Igualada', 'ons', null), ('2015', 'ES552C1', 'Igualada', 'beds', null), ('2015', 'ES552C1', 'Igualada', 'ons_per_res_pop', null), ('2015', 'ES552C1', 'Igualada', 'beds_per_1000res_pop', null), ('2015', 'ES553C1', 'Torrent', 'ons', null), ('2015', 'ES553C1', 'Torrent', 'beds', null), ('2015', 'ES553C1', 'Torrent', 'ons_per_res_pop', null), ('2015', 'ES553C1', 'Torrent', 'beds_per_1000res_pop', null), ('2015', 'ES554C1', 'Mislata', 'ons', null), ('2015', 'ES554C1', 'Mislata', 'beds', null), ('2015', 'ES554C1', 'Mislata', 'ons_per_res_pop', null), ('2015', 'ES554C1', 'Mislata', 'beds_per_1000res_pop', null), ('2015', 'ES555C1', 'Rivas-Vaciamadrid', 'ons', null), ('2015', 'ES555C1', 'Rivas-Vaciamadrid', 'beds', null), ('2015', 'ES555C1', 'Rivas-Vaciamadrid', 'ons_per_res_pop', null), ('2015', 'ES555C1', 'Rivas-Vaciamadrid', 'beds_per_1000res_pop', null), ('2015', 'ES556C1', 'Santurtzi', 'ons', null), ('2015', 'ES556C1', 'Santurtzi', 'beds', null), ('2015', 'ES556C1', 'Santurtzi', 'ons_per_res_pop', null), ('2015', 'ES556C1', 'Santurtzi', 'beds_per_1000res_pop', null), ('2015', 'ES557C1', 'Esplugues de Llobregat', 'ons', null), ('2015', 'ES557C1', 'Esplugues de Llobregat', 'beds', null), ('2015', 'ES557C1', 'Esplugues de Llobregat', 'ons_per_res_pop', null), ('2015', 'ES557C1', 'Esplugues de Llobregat', 'beds_per_1000res_pop', null), ('2015', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons', null), ('2015', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds', null), ('2015', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons_per_res_pop', null), ('2015', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds_per_1000res_pop', null), ('2015', 'FR', 'France', 'ons', '296910000'), ('2015', 'FR', 'France', 'beds', '5036823'), ('2015', 'FR', 'France', 'ons_per_res_pop', '4.5'), ('2015', 'FR', 'France', 'beds_per_1000res_pop', '76.1'), ('2015', 'FR001C1', 'Paris', 'ons', '14126682'), ('2015', 'FR001C1', 'Paris', 'beds', '302826'), ('2015', 'FR001C1', 'Paris', 'ons_per_res_pop', '1.4'), ('2015', 'FR001C1', 'Paris', 'beds_per_1000res_pop', '31'), ('2015', 'FR003C2', 'Lyon', 'ons', '2445539'), ('2015', 'FR003C2', 'Lyon', 'beds', '29140'), ('2015', 'FR003C2', 'Lyon', 'ons_per_res_pop', '2.3'), ('2015', 'FR003C2', 'Lyon', 'beds_per_1000res_pop', '27.3'), ('2015', 'FR004C2', 'Toulouse', 'ons', '1964417'), ('2015', 'FR004C2', 'Toulouse', 'beds', '23469'), ('2015', 'FR004C2', 'Toulouse', 'ons_per_res_pop', '3.3'), ('2015', 'FR004C2', 'Toulouse', 'beds_per_1000res_pop', '39'), ('2015', 'FR006C2', 'Strasbourg', 'ons', '1145822'), ('2015', 'FR006C2', 'Strasbourg', 'beds', '15493'), ('2015', 'FR006C2', 'Strasbourg', 'ons_per_res_pop', '2.9'), ('2015', 'FR006C2', 'Strasbourg', 'beds_per_1000res_pop', '38.6'), ('2015', 'FR007C1', 'Bordeaux', 'ons', '1913467'), ('2015', 'FR007C1', 'Bordeaux', 'beds', '22917'), ('2015', 'FR007C1', 'Bordeaux', 'ons_per_res_pop', '3'), ('2015', 'FR007C1', 'Bordeaux', 'beds_per_1000res_pop', '36'), ('2015', 'FR008C1', 'Nantes', 'ons', '1225117'), ('2015', 'FR008C1', 'Nantes', 'beds', '14012'), ('2015', 'FR008C1', 'Nantes', 'ons_per_res_pop', '2.8'), ('2015', 'FR008C1', 'Nantes', 'beds_per_1000res_pop', '31.8'), ('2015', 'FR009C1', 'Lille', 'ons', '550834'), ('2015', 'FR009C1', 'Lille', 'beds', '15699'), ('2015', 'FR009C1', 'Lille', 'ons_per_res_pop', '0.6'), ('2015', 'FR009C1', 'Lille', 'beds_per_1000res_pop', '17.4'), ('2015', 'FR010C1', 'Montpellier', 'ons', '744374'), ('2015', 'FR010C1', 'Montpellier', 'beds', '8520'), ('2015', 'FR010C1', 'Montpellier', 'ons_per_res_pop', '2.5'), ('2015', 'FR010C1', 'Montpellier', 'beds_per_1000res_pop', '28.7'), ('2015', 'FR011C1', 'Saint-Etienne', 'ons', '225411'), ('2015', 'FR011C1', 'Saint-Etienne', 'beds', '3681'), ('2015', 'FR011C1', 'Saint-Etienne', 'ons_per_res_pop', '1.2'), ('2015', 'FR011C1', 'Saint-Etienne', 'beds_per_1000res_pop', '19.1'), ('2015', 'FR012C1', 'Le Havre', 'ons', '166695'), ('2015', 'FR012C1', 'Le Havre', 'beds', '3600'), ('2015', 'FR012C1', 'Le Havre', 'ons_per_res_pop', '0.8'), ('2015', 'FR012C1', 'Le Havre', 'beds_per_1000res_pop', '18.2'), ('2015', 'FR013C2', 'Rennes', 'ons', '648207'), ('2015', 'FR013C2', 'Rennes', 'beds', '6215'), ('2015', 'FR013C2', 'Rennes', 'ons_per_res_pop', '3'), ('2015', 'FR013C2', 'Rennes', 'beds_per_1000res_pop', '28.9'), ('2015', 'FR014C2', 'Amiens', 'ons', '185255'), ('2015', 'FR014C2', 'Amiens', 'beds', '2499'), ('2015', 'FR014C2', 'Amiens', 'ons_per_res_pop', '1.4'), ('2015', 'FR014C2', 'Amiens', 'beds_per_1000res_pop', '18.3'), ('2015', 'FR016C1', 'Nancy', 'ons', '311806'), ('2015', 'FR016C1', 'Nancy', 'beds', '5224'), ('2015', 'FR016C1', 'Nancy', 'ons_per_res_pop', '1.5'), ('2015', 'FR016C1', 'Nancy', 'beds_per_1000res_pop', '25.6'), ('2015', 'FR017C2', 'Metz', 'ons', '159994'), ('2015', 'FR017C2', 'Metz', 'beds', '4687'), ('2015', 'FR017C2', 'Metz', 'ons_per_res_pop', '1'), ('2015', 'FR017C2', 'Metz', 'beds_per_1000res_pop', '28.2'), ('2015', 'FR018C1', 'Reims', 'ons', '338662'), ('2015', 'FR018C1', 'Reims', 'beds', '6583'), ('2015', 'FR018C1', 'Reims', 'ons_per_res_pop', '1.6'), ('2015', 'FR018C1', 'Reims', 'beds_per_1000res_pop', '31.3'), ('2015', 'FR019C1', 'Orléans', 'ons', '241804'), ('2015', 'FR019C1', 'Orléans', 'beds', '4612'), ('2015', 'FR019C1', 'Orléans', 'ons_per_res_pop', '1.2'), ('2015', 'FR019C1', 'Orléans', 'beds_per_1000res_pop', '22.4'), ('2015', 'FR020C2', 'Dijon', 'ons', '270823'), ('2015', 'FR020C2', 'Dijon', 'beds', '5985'), ('2015', 'FR020C2', 'Dijon', 'ons_per_res_pop', '1.4'), ('2015', 'FR020C2', 'Dijon', 'beds_per_1000res_pop', '30.4'), ('2015', 'FR021C2', 'Poitiers', 'ons', '122575'), ('2015', 'FR021C2', 'Poitiers', 'beds', '3122'), ('2015', 'FR021C2', 'Poitiers', 'ons_per_res_pop', '1.3'), ('2015', 'FR021C2', 'Poitiers', 'beds_per_1000res_pop', '31.9'), ('2015', 'FR022C2', 'Clermont-Ferrand', 'ons', '391172'), ('2015', 'FR022C2', 'Clermont-Ferrand', 'beds', '8205'), ('2015', 'FR022C2', 'Clermont-Ferrand', 'ons_per_res_pop', '2'), ('2015', 'FR022C2', 'Clermont-Ferrand', 'beds_per_1000res_pop', '42.5'), ('2015', 'FR023C2', 'Caen', 'ons', '298056'), ('2015', 'FR023C2', 'Caen', 'beds', '4767'), ('2015', 'FR023C2', 'Caen', 'ons_per_res_pop', '2.1'), ('2015', 'FR023C2', 'Caen', 'beds_per_1000res_pop', '32.9'), ('2015', 'FR024C2', 'Limoges', 'ons', '154035'), ('2015', 'FR024C2', 'Limoges', 'beds', '4588'), ('2015', 'FR024C2', 'Limoges', 'ons_per_res_pop', '1.1'), ('2015', 'FR024C2', 'Limoges', 'beds_per_1000res_pop', '31.7'), ('2015', 'FR025C1', 'Besançon', 'ons', '157384'), ('2015', 'FR025C1', 'Besançon', 'beds', '3053'), ('2015', 'FR025C1', 'Besançon', 'ons_per_res_pop', '1.3'), ('2015', 'FR025C1', 'Besançon', 'beds_per_1000res_pop', '26.2'), ('2015', 'FR026C2', 'Grenoble', 'ons', '636405'), ('2015', 'FR026C2', 'Grenoble', 'beds', '8392'), ('2015', 'FR026C2', 'Grenoble', 'ons_per_res_pop', '2.1'), ('2015', 'FR026C2', 'Grenoble', 'beds_per_1000res_pop', '27.4'), ('2015', 'FR027C1', 'Ajaccio', 'ons', '648006'), ('2015', 'FR027C1', 'Ajaccio', 'beds', '4800'), ('2015', 'FR027C1', 'Ajaccio', 'ons_per_res_pop', null), ('2015', 'FR027C1', 'Ajaccio', 'beds_per_1000res_pop', null), ('2015', 'FR028C1', 'Saint Denis', 'ons', null), ('2015', 'FR028C1', 'Saint Denis', 'beds', '1288'), ('2015', 'FR028C1', 'Saint Denis', 'ons_per_res_pop', null), ('2015', 'FR028C1', 'Saint Denis', 'beds_per_1000res_pop', '8.8'), ('2015', 'FR030C1', 'Fort-de-France', 'ons', null), ('2015', 'FR030C1', 'Fort-de-France', 'beds', '916'), ('2015', 'FR030C1', 'Fort-de-France', 'ons_per_res_pop', null), ('2015', 'FR030C1', 'Fort-de-France', 'beds_per_1000res_pop', '8.9'), ('2015', 'FR032C2', 'Toulon', 'ons', '1156750'), ('2015', 'FR032C2', 'Toulon', 'beds', '14145'), ('2015', 'FR032C2', 'Toulon', 'ons_per_res_pop', '3.5'), ('2015', 'FR032C2', 'Toulon', 'beds_per_1000res_pop', '42.8'), ('2015', 'FR034C2', 'Valenciennes', 'ons', '46928'), ('2015', 'FR034C2', 'Valenciennes', 'beds', '1640'), ('2015', 'FR034C2', 'Valenciennes', 'ons_per_res_pop', '0.5'), ('2015', 'FR034C2', 'Valenciennes', 'beds_per_1000res_pop', '15.8'), ('2015', 'FR035C2', 'Tours', 'ons', '225508'), ('2015', 'FR035C2', 'Tours', 'beds', '7983'), ('2015', 'FR035C2', 'Tours', 'ons_per_res_pop', '0.9'), ('2015', 'FR035C2', 'Tours', 'beds_per_1000res_pop', '33'), ('2015', 'FR036C2', 'Angers', 'ons', '179320'), ('2015', 'FR036C2', 'Angers', 'beds', '4038'), ('2015', 'FR036C2', 'Angers', 'ons_per_res_pop', '1'), ('2015', 'FR036C2', 'Angers', 'beds_per_1000res_pop', '22.7'), ('2015', 'FR037C1', 'Brest', 'ons', '188874'), ('2015', 'FR037C1', 'Brest', 'beds', '3657'), ('2015', 'FR037C1', 'Brest', 'ons_per_res_pop', '1.4'), ('2015', 'FR037C1', 'Brest', 'beds_per_1000res_pop', '26.3'), ('2015', 'FR038C2', 'Le Mans', 'ons', '157108'), ('2015', 'FR038C2', 'Le Mans', 'beds', '3273'), ('2015', 'FR038C2', 'Le Mans', 'ons_per_res_pop', '1'), ('2015', 'FR038C2', 'Le Mans', 'beds_per_1000res_pop', '21.7'), ('2015', 'FR039C2', 'Avignon', 'ons', '400790'), ('2015', 'FR039C2', 'Avignon', 'beds', '10260'), ('2015', 'FR039C2', 'Avignon', 'ons_per_res_pop', '3.7'), ('2015', 'FR039C2', 'Avignon', 'beds_per_1000res_pop', '93.5'), ('2015', 'FR040C2', 'Mulhouse', 'ons', '230673'), ('2015', 'FR040C2', 'Mulhouse', 'beds', '4427'), ('2015', 'FR040C2', 'Mulhouse', 'ons_per_res_pop', '1.3'), ('2015', 'FR040C2', 'Mulhouse', 'beds_per_1000res_pop', '24.5'), ('2015', 'FR042C1', 'Dunkerque', 'ons', '202265'), ('2015', 'FR042C1', 'Dunkerque', 'beds', '3674'), ('2015', 'FR042C1', 'Dunkerque', 'ons_per_res_pop', '1.5'), ('2015', 'FR042C1', 'Dunkerque', 'beds_per_1000res_pop', '26.6'), ('2015', 'FR043C2', 'Perpignan', 'ons', '144595'), ('2015', 'FR043C2', 'Perpignan', 'beds', '3857'), ('2015', 'FR043C2', 'Perpignan', 'ons_per_res_pop', '1.1'), ('2015', 'FR043C2', 'Perpignan', 'beds_per_1000res_pop', '29.3'), ('2015', 'FR044C2', 'Nîmes', 'ons', '298218'), ('2015', 'FR044C2', 'Nîmes', 'beds', '4596'), ('2015', 'FR044C2', 'Nîmes', 'ons_per_res_pop', '2'), ('2015', 'FR044C2', 'Nîmes', 'beds_per_1000res_pop', '30.5'), ('2015', 'FR045C2', 'Pau', 'ons', '187794'), ('2015', 'FR045C2', 'Pau', 'beds', '3390'), ('2015', 'FR045C2', 'Pau', 'ons_per_res_pop', '1.7'), ('2015', 'FR045C2', 'Pau', 'beds_per_1000res_pop', '30.8'), ('2015', 'FR046C2', 'Bayonne', 'ons', '1215836'), ('2015', 'FR046C2', 'Bayonne', 'beds', '13212'), ('2015', 'FR046C2', 'Bayonne', 'ons_per_res_pop', '10.8'), ('2015', 'FR046C2', 'Bayonne', 'beds_per_1000res_pop', '117.6'), ('2015', 'FR047C2', 'Annemasse', 'ons', '232098'), ('2015', 'FR047C2', 'Annemasse', 'beds', '2156'), ('2015', 'FR047C2', 'Annemasse', 'ons_per_res_pop', '3.8'), ('2015', 'FR047C2', 'Annemasse', 'beds_per_1000res_pop', '35'), ('2015', 'FR048C1', 'Annecy', 'ons', '440243'), ('2015', 'FR048C1', 'Annecy', 'beds', '5525'), ('2015', 'FR048C1', 'Annecy', 'ons_per_res_pop', '3.5'), ('2015', 'FR048C1', 'Annecy', 'beds_per_1000res_pop', '44'), ('2015', 'FR049C2', 'Lorient', 'ons', '15924'), ('2015', 'FR049C2', 'Lorient', 'beds', '1438'), ('2015', 'FR049C2', 'Lorient', 'ons_per_res_pop', '0.2'), ('2015', 'FR049C2', 'Lorient', 'beds_per_1000res_pop', '18.1'), ('2015', 'FR050C2', 'Montbéliard', 'ons', '230827'), ('2015', 'FR050C2', 'Montbéliard', 'beds', '2158'), ('2015', 'FR050C2', 'Montbéliard', 'ons_per_res_pop', null), ('2015', 'FR050C2', 'Montbéliard', 'beds_per_1000res_pop', null), ('2015', 'FR051C2', 'Troyes', 'ons', '60116'), ('2015', 'FR051C2', 'Troyes', 'beds', '1712'), ('2015', 'FR051C2', 'Troyes', 'ons_per_res_pop', '0.6'), ('2015', 'FR051C2', 'Troyes', 'beds_per_1000res_pop', '16.2'), ('2015', 'FR052C2', 'Saint-Nazaire', 'ons', '374865'), ('2015', 'FR052C2', 'Saint-Nazaire', 'beds', '2927'), ('2015', 'FR052C2', 'Saint-Nazaire', 'ons_per_res_pop', '5.4'), ('2015', 'FR052C2', 'Saint-Nazaire', 'beds_per_1000res_pop', '41.9'), ('2015', 'FR053C1', 'La Rochelle', 'ons', '650312'), ('2015', 'FR053C1', 'La Rochelle', 'beds', '7593'), ('2015', 'FR053C1', 'La Rochelle', 'ons_per_res_pop', '7.9'), ('2015', 'FR053C1', 'La Rochelle', 'beds_per_1000res_pop', '92'), ('2015', 'FR056C1', 'Angoulême', 'ons', '222839'), ('2015', 'FR056C1', 'Angoulême', 'beds', '1976'), ('2015', 'FR056C1', 'Angoulême', 'ons_per_res_pop', null), ('2015', 'FR056C1', 'Angoulême', 'beds_per_1000res_pop', null), ('2015', 'FR057C2', 'Boulogne-sur-Mer', 'ons', '45577'), ('2015', 'FR057C2', 'Boulogne-sur-Mer', 'beds', '3131'), ('2015', 'FR057C2', 'Boulogne-sur-Mer', 'ons_per_res_pop', '0.6'), ('2015', 'FR057C2', 'Boulogne-sur-Mer', 'beds_per_1000res_pop', '40.8'), ('2015', 'FR058C2', 'Chambéry', 'ons', '11082'), ('2015', 'FR058C2', 'Chambéry', 'beds', '1982'), ('2015', 'FR058C2', 'Chambéry', 'ons_per_res_pop', '0.1'), ('2015', 'FR058C2', 'Chambéry', 'beds_per_1000res_pop', '22.7'), ('2015', 'FR059C2', 'Chalon-sur-Saône', 'ons', '426927'), ('2015', 'FR059C2', 'Chalon-sur-Saône', 'beds', '2999'), ('2015', 'FR059C2', 'Chalon-sur-Saône', 'ons_per_res_pop', null), ('2015', 'FR059C2', 'Chalon-sur-Saône', 'beds_per_1000res_pop', null), ('2015', 'FR060C2', 'Chartres', 'ons', '91665'), ('2015', 'FR060C2', 'Chartres', 'beds', '2544'), ('2015', 'FR060C2', 'Chartres', 'ons_per_res_pop', '1.2'), ('2015', 'FR060C2', 'Chartres', 'beds_per_1000res_pop', '33'), ('2015', 'FR061C2', 'Niort', 'ons', '341185'), ('2015', 'FR061C2', 'Niort', 'beds', '3942'), ('2015', 'FR061C2', 'Niort', 'ons_per_res_pop', null), ('2015', 'FR061C2', 'Niort', 'beds_per_1000res_pop', null), ('2015', 'FR062C1', 'Calais', 'ons', '48111'), ('2015', 'FR062C1', 'Calais', 'beds', '1652'), ('2015', 'FR062C1', 'Calais', 'ons_per_res_pop', '0.6'), ('2015', 'FR062C1', 'Calais', 'beds_per_1000res_pop', '21.7'), ('2015', 'FR063C2', 'Béziers', 'ons', '429633'), ('2015', 'FR063C2', 'Béziers', 'beds', '2904'), ('2015', 'FR063C2', 'Béziers', 'ons_per_res_pop', '5.7'), ('2015', 'FR063C2', 'Béziers', 'beds_per_1000res_pop', '38.2'), ('2015', 'FR064C2', 'Arras', 'ons', null), ('2015', 'FR064C2', 'Arras', 'beds', '1428'), ('2015', 'FR064C2', 'Arras', 'ons_per_res_pop', null), ('2015', 'FR064C2', 'Arras', 'beds_per_1000res_pop', '20.7'), ('2015', 'FR065C2', 'Bourges', 'ons', '50229'), ('2015', 'FR065C2', 'Bourges', 'beds', '2084'), ('2015', 'FR065C2', 'Bourges', 'ons_per_res_pop', '0.8'), ('2015', 'FR065C2', 'Bourges', 'beds_per_1000res_pop', '31.5'), ('2015', 'FR066C1', 'Saint-Brieuc', 'ons', '27799'), ('2015', 'FR066C1', 'Saint-Brieuc', 'beds', '1624'), ('2015', 'FR066C1', 'Saint-Brieuc', 'ons_per_res_pop', '0.4'), ('2015', 'FR066C1', 'Saint-Brieuc', 'beds_per_1000res_pop', '25'), ('2015', 'FR067C2', 'Quimper', 'ons', '349265'), ('2015', 'FR067C2', 'Quimper', 'beds', '3843'), ('2015', 'FR067C2', 'Quimper', 'ons_per_res_pop', null), ('2015', 'FR067C2', 'Quimper', 'beds_per_1000res_pop', null), ('2015', 'FR068C2', 'Vannes', 'ons', '1054932'), ('2015', 'FR068C2', 'Vannes', 'beds', '13222'), ('2015', 'FR068C2', 'Vannes', 'ons_per_res_pop', null), ('2015', 'FR068C2', 'Vannes', 'beds_per_1000res_pop', null), ('2015', 'FR069C1', 'Cherbourg', 'ons', '54209'), ('2015', 'FR069C1', 'Cherbourg', 'beds', '2491'), ('2015', 'FR069C1', 'Cherbourg', 'ons_per_res_pop', '0.7'), ('2015', 'FR069C1', 'Cherbourg', 'beds_per_1000res_pop', '30.9'), ('2015', 'FR073C2', 'Tarbes', 'ons', '209135'), ('2015', 'FR073C2', 'Tarbes', 'beds', '1832'), ('2015', 'FR073C2', 'Tarbes', 'ons_per_res_pop', null), ('2015', 'FR073C2', 'Tarbes', 'beds_per_1000res_pop', null), ('2015', 'FR074C2', 'Compiègne', 'ons', '275718'), ('2015', 'FR074C2', 'Compiègne', 'beds', '2035'), ('2015', 'FR074C2', 'Compiègne', 'ons_per_res_pop', null), ('2015', 'FR074C2', 'Compiègne', 'beds_per_1000res_pop', null), ('2015', 'FR076C2', 'Belfort', 'ons', '31038'), ('2015', 'FR076C2', 'Belfort', 'beds', '1686'), ('2015', 'FR076C2', 'Belfort', 'ons_per_res_pop', '0.5'), ('2015', 'FR076C2', 'Belfort', 'beds_per_1000res_pop', '26'), ('2015', 'FR077C1', 'Roanne', 'ons', '10918'), ('2015', 'FR077C1', 'Roanne', 'beds', '442'), ('2015', 'FR077C1', 'Roanne', 'ons_per_res_pop', '0.2'), ('2015', 'FR077C1', 'Roanne', 'beds_per_1000res_pop', '9.7'), ('2015', 'FR079C2', 'Saint-Quentin', 'ons', '3474'), ('2015', 'FR079C2', 'Saint-Quentin', 'beds', '1058'), ('2015', 'FR079C2', 'Saint-Quentin', 'ons_per_res_pop', '0.1'), ('2015', 'FR079C2', 'Saint-Quentin', 'beds_per_1000res_pop', '19'), ('2015', 'FR082C2', 'Beauvais', 'ons', '241644'), ('2015', 'FR082C2', 'Beauvais', 'beds', '1502'), ('2015', 'FR082C2', 'Beauvais', 'ons_per_res_pop', null), ('2015', 'FR082C2', 'Beauvais', 'beds_per_1000res_pop', null), ('2015', 'FR084C1', 'Creil', 'ons', null), ('2015', 'FR084C1', 'Creil', 'beds', '1168'), ('2015', 'FR084C1', 'Creil', 'ons_per_res_pop', null), ('2015', 'FR084C1', 'Creil', 'beds_per_1000res_pop', '15.6'), ('2015', 'FR086C2', 'Evreux', 'ons', '160675'), ('2015', 'FR086C2', 'Evreux', 'beds', '1278'), ('2015', 'FR086C2', 'Evreux', 'ons_per_res_pop', null), ('2015', 'FR086C2', 'Evreux', 'beds_per_1000res_pop', null), ('2015', 'FR090C2', 'Châteauroux', 'ons', '246867'), ('2015', 'FR090C2', 'Châteauroux', 'beds', '2070'), ('2015', 'FR090C2', 'Châteauroux', 'ons_per_res_pop', null), ('2015', 'FR090C2', 'Châteauroux', 'beds_per_1000res_pop', null), ('2015', 'FR093C2', 'Brive-la-Gaillarde', 'ons', '313716'), ('2015', 'FR093C2', 'Brive-la-Gaillarde', 'beds', '2608'), ('2015', 'FR093C2', 'Brive-la-Gaillarde', 'ons_per_res_pop', null), ('2015', 'FR093C2', 'Brive-la-Gaillarde', 'beds_per_1000res_pop', null), ('2015', 'FR096C2', 'Albi', 'ons', '232022'), ('2015', 'FR096C2', 'Albi', 'beds', '1895'), ('2015', 'FR096C2', 'Albi', 'ons_per_res_pop', null), ('2015', 'FR096C2', 'Albi', 'beds_per_1000res_pop', null), ('2015', 'FR099C1', 'Fréjus', 'ons', '5477002'), ('2015', 'FR099C1', 'Fréjus', 'beds', '53901'), ('2015', 'FR099C1', 'Fréjus', 'ons_per_res_pop', '62.1'), ('2015', 'FR099C1', 'Fréjus', 'beds_per_1000res_pop', '611.2'), ('2015', 'FR104C2', 'Châlons-en-Champagne', 'ons', '225015'), ('2015', 'FR104C2', 'Châlons-en-Champagne', 'beds', '1649'), ('2015', 'FR104C2', 'Châlons-en-Champagne', 'ons_per_res_pop', null), ('2015', 'FR104C2', 'Châlons-en-Champagne', 'beds_per_1000res_pop', null), ('2015', 'FR201C1', 'Aubagne', 'ons', '167798'), ('2015', 'FR201C1', 'Aubagne', 'beds', '1330'), ('2015', 'FR201C1', 'Aubagne', 'ons_per_res_pop', null), ('2015', 'FR201C1', 'Aubagne', 'beds_per_1000res_pop', null), ('2015', 'FR202C1', 'Aix-en-Provence', 'ons', '682413'), ('2015', 'FR202C1', 'Aix-en-Provence', 'beds', '8801'), ('2015', 'FR202C1', 'Aix-en-Provence', 'ons_per_res_pop', '4.8'), ('2015', 'FR202C1', 'Aix-en-Provence', 'beds_per_1000res_pop', '61.7'), ('2015', 'FR203C1', 'Marseille', 'ons', '1248283'), ('2015', 'FR203C1', 'Marseille', 'beds', '16822'), ('2015', 'FR203C1', 'Marseille', 'ons_per_res_pop', '1.4'), ('2015', 'FR203C1', 'Marseille', 'beds_per_1000res_pop', '18.8'), ('2015', 'FR205C2', 'Nice', 'ons', '4977363'), ('2015', 'FR205C2', 'Nice', 'beds', '69103'), ('2015', 'FR205C2', 'Nice', 'ons_per_res_pop', '7.4'), ('2015', 'FR205C2', 'Nice', 'beds_per_1000res_pop', '102.8'), ('2015', 'FR206C1', 'CA de Sophia-Antipolis', 'ons', '2838978'), ('2015', 'FR206C1', 'CA de Sophia-Antipolis', 'beds', '27938'), ('2015', 'FR206C1', 'CA de Sophia-Antipolis', 'ons_per_res_pop', null), ('2015', 'FR206C1', 'CA de Sophia-Antipolis', 'beds_per_1000res_pop', null), ('2015', 'FR207C1', 'Lens - Liévin', 'ons', '10436'), ('2015', 'FR207C1', 'Lens - Liévin', 'beds', '440'), ('2015', 'FR207C1', 'Lens - Liévin', 'ons_per_res_pop', '0.1'), ('2015', 'FR207C1', 'Lens - Liévin', 'beds_per_1000res_pop', '2.4'), ('2015', 'FR208C1', 'Hénin - Carvin', 'ons', '188396'), ('2015', 'FR208C1', 'Hénin - Carvin', 'beds', '1258'), ('2015', 'FR208C1', 'Hénin - Carvin', 'ons_per_res_pop', null), ('2015', 'FR208C1', 'Hénin - Carvin', 'beds_per_1000res_pop', null), ('2015', 'FR209C2', 'Douai', 'ons', null), ('2015', 'FR209C2', 'Douai', 'beds', '840'), ('2015', 'FR209C2', 'Douai', 'ons_per_res_pop', null), ('2015', 'FR209C2', 'Douai', 'beds_per_1000res_pop', '9.7'), ('2015', 'FR210C1', 'Marne la Vallée', 'ons', '641610'), ('2015', 'FR210C1', 'Marne la Vallée', 'beds', '3079'), ('2015', 'FR210C1', 'Marne la Vallée', 'ons_per_res_pop', null), ('2015', 'FR210C1', 'Marne la Vallée', 'beds_per_1000res_pop', null), ('2015', 'FR211C1', 'Versailles', 'ons', '664769'), ('2015', 'FR211C1', 'Versailles', 'beds', '4252'), ('2015', 'FR211C1', 'Versailles', 'ons_per_res_pop', null), ('2015', 'FR211C1', 'Versailles', 'beds_per_1000res_pop', null), ('2015', 'FR212C1', 'CC de la Boucle de la Seine', 'ons', '146593'), ('2015', 'FR212C1', 'CC de la Boucle de la Seine', 'beds', '973'), ('2015', 'FR212C1', 'CC de la Boucle de la Seine', 'ons_per_res_pop', null), ('2015', 'FR212C1', 'CC de la Boucle de la Seine', 'beds_per_1000res_pop', null), ('2015', 'FR213C1', 'Sénart en Essonne', 'ons', '51240'), ('2015', 'FR213C1', 'Sénart en Essonne', 'beds', '702'), ('2015', 'FR213C1', 'Sénart en Essonne', 'ons_per_res_pop', null), ('2015', 'FR213C1', 'Sénart en Essonne', 'beds_per_1000res_pop', null), ('2015', 'FR214C1', 'Valence', 'ons', '148260'), ('2015', 'FR214C1', 'Valence', 'beds', '4063'), ('2015', 'FR214C1', 'Valence', 'ons_per_res_pop', '1.6'), ('2015', 'FR214C1', 'Valence', 'beds_per_1000res_pop', '43.5'), ('2015', 'FR215C2', 'Rouen', 'ons', '53829'), ('2015', 'FR215C2', 'Rouen', 'beds', '5740'), ('2015', 'FR215C2', 'Rouen', 'ons_per_res_pop', '0.2'), ('2015', 'FR215C2', 'Rouen', 'beds_per_1000res_pop', '18.6'), ('2015', 'FR216C1', 'CA Marne et Chantereine', 'ons', '279601'), ('2015', 'FR216C1', 'CA Marne et Chantereine', 'beds', '1284'), ('2015', 'FR216C1', 'CA Marne et Chantereine', 'ons_per_res_pop', null), ('2015', 'FR216C1', 'CA Marne et Chantereine', 'beds_per_1000res_pop', null), ('2015', 'FR217C1', 'CA des deux Rives de la Seine', 'ons', '93465'), ('2015', 'FR217C1', 'CA des deux Rives de la Seine', 'beds', '1676'), ('2015', 'FR217C1', 'CA des deux Rives de la Seine', 'ons_per_res_pop', null), ('2015', 'FR217C1', 'CA des deux Rives de la Seine', 'beds_per_1000res_pop', null), ('2015', 'FR218C1', 'CC des Coteaux de la Seine', 'ons', '161774'), ('2015', 'FR218C1', 'CC des Coteaux de la Seine', 'beds', '1087'), ('2015', 'FR218C1', 'CC des Coteaux de la Seine', 'ons_per_res_pop', null), ('2015', 'FR218C1', 'CC des Coteaux de la Seine', 'beds_per_1000res_pop', null), ('2015', 'FR219C1', 'CA Europ'' Essonne', 'ons', '521438'), ('2015', 'FR219C1', 'CA Europ'' Essonne', 'beds', '3224'), ('2015', 'FR219C1', 'CA Europ'' Essonne', 'ons_per_res_pop', null), ('2015', 'FR219C1', 'CA Europ'' Essonne', 'beds_per_1000res_pop', null), ('2015', 'FR220C1', 'CA Brie Francilienne', 'ons', '200744'), ('2015', 'FR220C1', 'CA Brie Francilienne', 'beds', '978'), ('2015', 'FR220C1', 'CA Brie Francilienne', 'ons_per_res_pop', null), ('2015', 'FR220C1', 'CA Brie Francilienne', 'beds_per_1000res_pop', null), ('2015', 'FR221C1', 'CA les Portes de l''Essonne', 'ons', '229710'), ('2015', 'FR221C1', 'CA les Portes de l''Essonne', 'beds', '1268'), ('2015', 'FR221C1', 'CA les Portes de l''Essonne', 'ons_per_res_pop', null), ('2015', 'FR221C1', 'CA les Portes de l''Essonne', 'beds_per_1000res_pop', null), ('2015', 'FR222C1', 'CA Val et Forêt', 'ons', '18956'), ('2015', 'FR222C1', 'CA Val et Forêt', 'beds', '106'), ('2015', 'FR222C1', 'CA Val et Forêt', 'ons_per_res_pop', null), ('2015', 'FR222C1', 'CA Val et Forêt', 'beds_per_1000res_pop', null), ('2015', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons', '22589'), ('2015', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds', '124'), ('2015', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons_per_res_pop', null), ('2015', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds_per_1000res_pop', null), ('2015', 'FR224C1', 'CA le Parisis', 'ons', '117918'), ('2015', 'FR224C1', 'CA le Parisis', 'beds', '656'), ('2015', 'FR224C1', 'CA le Parisis', 'ons_per_res_pop', null), ('2015', 'FR224C1', 'CA le Parisis', 'beds_per_1000res_pop', null), ('2015', 'FR304C1', 'Melun', 'ons', '236707'), ('2015', 'FR304C1', 'Melun', 'beds', '2106'), ('2015', 'FR304C1', 'Melun', 'ons_per_res_pop', '2.8'), ('2015', 'FR304C1', 'Melun', 'beds_per_1000res_pop', '24.9'), ('2015', 'FR305C1', 'Meaux', 'ons', null), ('2015', 'FR305C1', 'Meaux', 'beds', '706'), ('2015', 'FR305C1', 'Meaux', 'ons_per_res_pop', null), ('2015', 'FR305C1', 'Meaux', 'beds_per_1000res_pop', '11.2'), ('2015', 'FR306C1', 'Mantes en Yvelines', 'ons', '9904'), ('2015', 'FR306C1', 'Mantes en Yvelines', 'beds', '596'), ('2015', 'FR306C1', 'Mantes en Yvelines', 'ons_per_res_pop', '0.1'), ('2015', 'FR306C1', 'Mantes en Yvelines', 'beds_per_1000res_pop', '6.9'), ('2015', 'FR308C1', 'Evry', 'ons', '344022'), ('2015', 'FR308C1', 'Evry', 'beds', '2024'), ('2015', 'FR308C1', 'Evry', 'ons_per_res_pop', null), ('2015', 'FR308C1', 'Evry', 'beds_per_1000res_pop', null), ('2015', 'FR309C1', 'CA du Plateau de Saclay', 'ons', '230518'), ('2015', 'FR309C1', 'CA du Plateau de Saclay', 'beds', '1352'), ('2015', 'FR309C1', 'CA du Plateau de Saclay', 'ons_per_res_pop', null), ('2015', 'FR309C1', 'CA du Plateau de Saclay', 'beds_per_1000res_pop', null), ('2015', 'FR310C1', 'CA de Seine Essonne', 'ons', '165960'), ('2015', 'FR310C1', 'CA de Seine Essonne', 'beds', '874'), ('2015', 'FR310C1', 'CA de Seine Essonne', 'ons_per_res_pop', null), ('2015', 'FR310C1', 'CA de Seine Essonne', 'beds_per_1000res_pop', null), ('2015', 'FR311C1', 'CA du Val d''Orge', 'ons', '246335'), ('2015', 'FR311C1', 'CA du Val d''Orge', 'beds', '1638'), ('2015', 'FR311C1', 'CA du Val d''Orge', 'ons_per_res_pop', null), ('2015', 'FR311C1', 'CA du Val d''Orge', 'beds_per_1000res_pop', null), ('2015', 'FR312C1', 'CA du Val d''Yerres', 'ons', '104416'), ('2015', 'FR312C1', 'CA du Val d''Yerres', 'beds', '576'), ('2015', 'FR312C1', 'CA du Val d''Yerres', 'ons_per_res_pop', null), ('2015', 'FR312C1', 'CA du Val d''Yerres', 'beds_per_1000res_pop', null), ('2015', 'FR313C1', 'CA Sénart - Val de Seine', 'ons', '70382'), ('2015', 'FR313C1', 'CA Sénart - Val de Seine', 'beds', '388'), ('2015', 'FR313C1', 'CA Sénart - Val de Seine', 'ons_per_res_pop', null), ('2015', 'FR313C1', 'CA Sénart - Val de Seine', 'beds_per_1000res_pop', null), ('2015', 'FR322C1', 'CA Val de France', 'ons', '195118'), ('2015', 'FR322C1', 'CA Val de France', 'beds', '1018'), ('2015', 'FR322C1', 'CA Val de France', 'ons_per_res_pop', null), ('2015', 'FR322C1', 'CA Val de France', 'beds_per_1000res_pop', null), ('2015', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons', '125473'), ('2015', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds', '756'), ('2015', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons_per_res_pop', null), ('2015', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds_per_1000res_pop', null), ('2015', 'FR324C1', 'Martigues', 'ons', '493928'), ('2015', 'FR324C1', 'Martigues', 'beds', '7085'), ('2015', 'FR324C1', 'Martigues', 'ons_per_res_pop', '7.4'), ('2015', 'FR324C1', 'Martigues', 'beds_per_1000res_pop', '106.6'), ('2015', 'FR501C1', 'Argenteuil - Bezons', 'ons', '154821'), ('2015', 'FR501C1', 'Argenteuil - Bezons', 'beds', '828'), ('2015', 'FR501C1', 'Argenteuil - Bezons', 'ons_per_res_pop', null), ('2015', 'FR501C1', 'Argenteuil - Bezons', 'beds_per_1000res_pop', null), ('2015', 'FR504C1', 'Cergy-Pontoise', 'ons', '604168'), ('2015', 'FR504C1', 'Cergy-Pontoise', 'beds', '3444'), ('2015', 'FR504C1', 'Cergy-Pontoise', 'ons_per_res_pop', null), ('2015', 'FR504C1', 'Cergy-Pontoise', 'beds_per_1000res_pop', null), ('2015', 'FR505C1', 'Charleville-Mézières', 'ons', '142271'), ('2015', 'FR505C1', 'Charleville-Mézières', 'beds', '1646'), ('2015', 'FR505C1', 'Charleville-Mézières', 'ons_per_res_pop', null), ('2015', 'FR505C1', 'Charleville-Mézières', 'beds_per_1000res_pop', null), ('2015', 'FR506C1', 'Colmar', 'ons', '29074'), ('2015', 'FR506C1', 'Colmar', 'beds', '3310'), ('2015', 'FR506C1', 'Colmar', 'ons_per_res_pop', '0.4'), ('2015', 'FR506C1', 'Colmar', 'beds_per_1000res_pop', '47.1'), ('2015', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons', '116952'), ('2015', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds', '628'), ('2015', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons_per_res_pop', null), ('2015', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds_per_1000res_pop', null), ('2015', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons', '498362'), ('2015', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds', '3218'), ('2015', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons_per_res_pop', null), ('2015', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds_per_1000res_pop', null), ('2015', 'FR519C1', 'Cannes', 'ons', null), ('2015', 'FR519C1', 'Cannes', 'beds', null), ('2015', 'FR519C1', 'Cannes', 'ons_per_res_pop', null), ('2015', 'FR519C1', 'Cannes', 'beds_per_1000res_pop', null), ('2015', 'HR001C1', 'Zagreb', 'ons', '1804290'), ('2015', 'HR001C1', 'Zagreb', 'beds', '19868'), ('2015', 'HR001C1', 'Zagreb', 'ons_per_res_pop', '2.3'), ('2015', 'HR001C1', 'Zagreb', 'beds_per_1000res_pop', '24.8'), ('2015', 'HR002C1', 'Rijeka', 'ons', '322756'), ('2015', 'HR002C1', 'Rijeka', 'beds', '4067'), ('2015', 'HR002C1', 'Rijeka', 'ons_per_res_pop', '2.6'), ('2015', 'HR002C1', 'Rijeka', 'beds_per_1000res_pop', '32.9'), ('2015', 'HR003C1', 'Slavonski Brod', 'ons', '28279'), ('2015', 'HR003C1', 'Slavonski Brod', 'beds', '560'), ('2015', 'HR003C1', 'Slavonski Brod', 'ons_per_res_pop', '0.5'), ('2015', 'HR003C1', 'Slavonski Brod', 'beds_per_1000res_pop', '9.7'), ('2015', 'HR004C1', 'Osijek', 'ons', '84806'), ('2015', 'HR004C1', 'Osijek', 'beds', '778'), ('2015', 'HR004C1', 'Osijek', 'ons_per_res_pop', '0.8'), ('2015', 'HR004C1', 'Osijek', 'beds_per_1000res_pop', '7.3'), ('2015', 'HR005C1', 'Split', 'ons', '1339598'), ('2015', 'HR005C1', 'Split', 'beds', '21413'), ('2015', 'HR005C1', 'Split', 'ons_per_res_pop', '7.7'), ('2015', 'HR005C1', 'Split', 'beds_per_1000res_pop', '122.8'), ('2015', 'HR006C1', 'Pula - Pola', 'ons', '1441850'), ('2015', 'HR006C1', 'Pula - Pola', 'beds', '24352'), ('2015', 'HR006C1', 'Pula - Pola', 'ons_per_res_pop', '25.4'), ('2015', 'HR006C1', 'Pula - Pola', 'beds_per_1000res_pop', '429.7'), ('2015', 'HR007C1', 'Zadar', 'ons', '1433701'), ('2015', 'HR007C1', 'Zadar', 'beds', '21886'), ('2015', 'HR007C1', 'Zadar', 'ons_per_res_pop', '19'), ('2015', 'HR007C1', 'Zadar', 'beds_per_1000res_pop', '289.7'), ('2015', 'IT', 'Italy', 'ons', '392874070'), ('2015', 'IT', 'Italy', 'beds', '4879333'), ('2015', 'IT', 'Italy', 'ons_per_res_pop', '6.5'), ('2015', 'IT', 'Italy', 'beds_per_1000res_pop', '80.3'), ('2015', 'IT001C1', 'Roma', 'ons', '24809334'), ('2015', 'IT001C1', 'Roma', 'beds', '183762'), ('2015', 'IT001C1', 'Roma', 'ons_per_res_pop', '8.6'), ('2015', 'IT001C1', 'Roma', 'beds_per_1000res_pop', '64'), ('2015', 'IT002C1', 'Milano', 'ons', '11741374'), ('2015', 'IT002C1', 'Milano', 'beds', '62392'), ('2015', 'IT002C1', 'Milano', 'ons_per_res_pop', '8.8'), ('2015', 'IT002C1', 'Milano', 'beds_per_1000res_pop', '46.7'), ('2015', 'IT003C1', 'Napoli', 'ons', '2908633'), ('2015', 'IT003C1', 'Napoli', 'beds', '13909'), ('2015', 'IT003C1', 'Napoli', 'ons_per_res_pop', '3'), ('2015', 'IT003C1', 'Napoli', 'beds_per_1000res_pop', '14.2'), ('2015', 'IT004C1', 'Torino', 'ons', '3454869'), ('2015', 'IT004C1', 'Torino', 'beds', '21117'), ('2015', 'IT004C1', 'Torino', 'ons_per_res_pop', '3.9'), ('2015', 'IT004C1', 'Torino', 'beds_per_1000res_pop', '23.5'), ('2015', 'IT005C1', 'Palermo', 'ons', '1427388'), ('2015', 'IT005C1', 'Palermo', 'beds', '10503'), ('2015', 'IT005C1', 'Palermo', 'ons_per_res_pop', '2.1'), ('2015', 'IT005C1', 'Palermo', 'beds_per_1000res_pop', '15.5'), ('2015', 'IT006C1', 'Genova', 'ons', '1652405'), ('2015', 'IT006C1', 'Genova', 'beds', '10669'), ('2015', 'IT006C1', 'Genova', 'ons_per_res_pop', '2.8'), ('2015', 'IT006C1', 'Genova', 'beds_per_1000res_pop', '18'), ('2015', 'IT007C1', 'Firenze', 'ons', '9106500'), ('2015', 'IT007C1', 'Firenze', 'beds', '45305'), ('2015', 'IT007C1', 'Firenze', 'ons_per_res_pop', '23.9'), ('2015', 'IT007C1', 'Firenze', 'beds_per_1000res_pop', '118.9'), ('2015', 'IT008C1', 'Bari', 'ons', '629502'), ('2015', 'IT008C1', 'Bari', 'beds', '6103'), ('2015', 'IT008C1', 'Bari', 'ons_per_res_pop', '1.9'), ('2015', 'IT008C1', 'Bari', 'beds_per_1000res_pop', '18.6'), ('2015', 'IT009C1', 'Bologna', 'ons', '2177383'), ('2015', 'IT009C1', 'Bologna', 'beds', '17485'), ('2015', 'IT009C1', 'Bologna', 'ons_per_res_pop', '5.6'), ('2015', 'IT009C1', 'Bologna', 'beds_per_1000res_pop', '45.3'), ('2015', 'IT010C1', 'Catania', 'ons', '905834'), ('2015', 'IT010C1', 'Catania', 'beds', '6656'), ('2015', 'IT010C1', 'Catania', 'ons_per_res_pop', '2.9'), ('2015', 'IT010C1', 'Catania', 'beds_per_1000res_pop', '21.1'), ('2015', 'IT011C1', 'Venezia', 'ons', '10182829'), ('2015', 'IT011C1', 'Venezia', 'beds', '50513'), ('2015', 'IT011C1', 'Venezia', 'ons_per_res_pop', '38.5'), ('2015', 'IT011C1', 'Venezia', 'beds_per_1000res_pop', '190.9'), ('2015', 'IT012C1', 'Verona', 'ons', '1762637'), ('2015', 'IT012C1', 'Verona', 'beds', '13316'), ('2015', 'IT012C1', 'Verona', 'ons_per_res_pop', '6.8'), ('2015', 'IT012C1', 'Verona', 'beds_per_1000res_pop', '51.2'), ('2015', 'IT013C1', 'Cremona', 'ons', '132837'), ('2015', 'IT013C1', 'Cremona', 'beds', '1190'), ('2015', 'IT013C1', 'Cremona', 'ons_per_res_pop', '1.9'), ('2015', 'IT013C1', 'Cremona', 'beds_per_1000res_pop', '16.6'), ('2015', 'IT014C1', 'Trento', 'ons', '839481'), ('2015', 'IT014C1', 'Trento', 'beds', '5539'), ('2015', 'IT014C1', 'Trento', 'ons_per_res_pop', '7.2'), ('2015', 'IT014C1', 'Trento', 'beds_per_1000res_pop', '47.2'), ('2015', 'IT015C1', 'Trieste', 'ons', '780275'), ('2015', 'IT015C1', 'Trieste', 'beds', '7686'), ('2015', 'IT015C1', 'Trieste', 'ons_per_res_pop', '3.8'), ('2015', 'IT015C1', 'Trieste', 'beds_per_1000res_pop', '37.4'), ('2015', 'IT016C1', 'Perugia', 'ons', '937851'), ('2015', 'IT016C1', 'Perugia', 'beds', '9590'), ('2015', 'IT016C1', 'Perugia', 'ons_per_res_pop', '5.7'), ('2015', 'IT016C1', 'Perugia', 'beds_per_1000res_pop', '57.9'), ('2015', 'IT017C1', 'Ancona', 'ons', '476750'), ('2015', 'IT017C1', 'Ancona', 'beds', '4402'), ('2015', 'IT017C1', 'Ancona', 'ons_per_res_pop', '4.7'), ('2015', 'IT017C1', 'Ancona', 'beds_per_1000res_pop', '43.4'), ('2015', 'IT019C1', 'Pescara', 'ons', '184920'), ('2015', 'IT019C1', 'Pescara', 'beds', '2273'), ('2015', 'IT019C1', 'Pescara', 'ons_per_res_pop', '1.5'), ('2015', 'IT019C1', 'Pescara', 'beds_per_1000res_pop', '18.7'), ('2015', 'IT020C1', 'Campobasso', 'ons', '37197'), ('2015', 'IT020C1', 'Campobasso', 'beds', '685'), ('2015', 'IT020C1', 'Campobasso', 'ons_per_res_pop', '0.8'), ('2015', 'IT020C1', 'Campobasso', 'beds_per_1000res_pop', '13.9'), ('2015', 'IT021C1', 'Caserta', 'ons', '197595'), ('2015', 'IT021C1', 'Caserta', 'beds', '1713'), ('2015', 'IT021C1', 'Caserta', 'ons_per_res_pop', '2.6'), ('2015', 'IT021C1', 'Caserta', 'beds_per_1000res_pop', '22.3'), ('2015', 'IT022C1', 'Taranto', 'ons', '178781'), ('2015', 'IT022C1', 'Taranto', 'beds', '2599'), ('2015', 'IT022C1', 'Taranto', 'ons_per_res_pop', '0.9'), ('2015', 'IT022C1', 'Taranto', 'beds_per_1000res_pop', '12.9'), ('2015', 'IT023C1', 'Potenza', 'ons', '60857'), ('2015', 'IT023C1', 'Potenza', 'beds', '1071'), ('2015', 'IT023C1', 'Potenza', 'ons_per_res_pop', '0.9'), ('2015', 'IT023C1', 'Potenza', 'beds_per_1000res_pop', '15.9'), ('2015', 'IT024C1', 'Catanzaro', 'ons', '225861'), ('2015', 'IT024C1', 'Catanzaro', 'beds', '1162'), ('2015', 'IT024C1', 'Catanzaro', 'ons_per_res_pop', '2.5'), ('2015', 'IT024C1', 'Catanzaro', 'beds_per_1000res_pop', '12.8'), ('2015', 'IT025C1', 'Reggio di Calabria', 'ons', '168647'), ('2015', 'IT025C1', 'Reggio di Calabria', 'beds', '2414'), ('2015', 'IT025C1', 'Reggio di Calabria', 'ons_per_res_pop', '0.9'), ('2015', 'IT025C1', 'Reggio di Calabria', 'beds_per_1000res_pop', '13.1'), ('2015', 'IT026C1', 'Sassari', 'ons', '126411'), ('2015', 'IT026C1', 'Sassari', 'beds', '2481'), ('2015', 'IT026C1', 'Sassari', 'ons_per_res_pop', '1'), ('2015', 'IT026C1', 'Sassari', 'beds_per_1000res_pop', '19.4'), ('2015', 'IT027C1', 'Cagliari', 'ons', '419277'), ('2015', 'IT027C1', 'Cagliari', 'beds', '4708'), ('2015', 'IT027C1', 'Cagliari', 'ons_per_res_pop', '2.7'), ('2015', 'IT027C1', 'Cagliari', 'beds_per_1000res_pop', '30.5'), ('2015', 'IT028C1', 'Padova', 'ons', '1438825'), ('2015', 'IT028C1', 'Padova', 'beds', '7879'), ('2015', 'IT028C1', 'Padova', 'ons_per_res_pop', '6.8'), ('2015', 'IT028C1', 'Padova', 'beds_per_1000res_pop', '37.3'), ('2015', 'IT029C1', 'Brescia', 'ons', '607621'), ('2015', 'IT029C1', 'Brescia', 'beds', '4282'), ('2015', 'IT029C1', 'Brescia', 'ons_per_res_pop', '3.1'), ('2015', 'IT029C1', 'Brescia', 'beds_per_1000res_pop', '21.8'), ('2015', 'IT030C1', 'Modena', 'ons', '480070'), ('2015', 'IT030C1', 'Modena', 'beds', '4251'), ('2015', 'IT030C1', 'Modena', 'ons_per_res_pop', '2.6'), ('2015', 'IT030C1', 'Modena', 'beds_per_1000res_pop', '23'), ('2015', 'IT031C1', 'Foggia', 'ons', '101445'), ('2015', 'IT031C1', 'Foggia', 'beds', '1251'), ('2015', 'IT031C1', 'Foggia', 'ons_per_res_pop', '0.7'), ('2015', 'IT031C1', 'Foggia', 'beds_per_1000res_pop', '8.2'), ('2015', 'IT032C1', 'Salerno', 'ons', '619914'), ('2015', 'IT032C1', 'Salerno', 'beds', '2438'), ('2015', 'IT032C1', 'Salerno', 'ons_per_res_pop', '4.6'), ('2015', 'IT032C1', 'Salerno', 'beds_per_1000res_pop', '18'), ('2015', 'IT033C1', 'Piacenza', 'ons', '221311'), ('2015', 'IT033C1', 'Piacenza', 'beds', '1868'), ('2015', 'IT033C1', 'Piacenza', 'ons_per_res_pop', '2.2'), ('2015', 'IT033C1', 'Piacenza', 'beds_per_1000res_pop', '18.3'), ('2015', 'IT034C1', 'Bolzano', 'ons', '584638'), ('2015', 'IT034C1', 'Bolzano', 'beds', '3500'), ('2015', 'IT034C1', 'Bolzano', 'ons_per_res_pop', '5.5'), ('2015', 'IT034C1', 'Bolzano', 'beds_per_1000res_pop', '33'), ('2015', 'IT035C1', 'Udine', 'ons', '351551'), ('2015', 'IT035C1', 'Udine', 'beds', '3668'), ('2015', 'IT035C1', 'Udine', 'ons_per_res_pop', '3.5'), ('2015', 'IT035C1', 'Udine', 'beds_per_1000res_pop', '36.9'), ('2015', 'IT036C1', 'La Spezia', 'ons', '368538'), ('2015', 'IT036C1', 'La Spezia', 'beds', '2363'), ('2015', 'IT036C1', 'La Spezia', 'ons_per_res_pop', '3.9'), ('2015', 'IT036C1', 'La Spezia', 'beds_per_1000res_pop', '25.1'), ('2015', 'IT037C1', 'Lecce', 'ons', '566055'), ('2015', 'IT037C1', 'Lecce', 'beds', '10046'), ('2015', 'IT037C1', 'Lecce', 'ons_per_res_pop', '6'), ('2015', 'IT037C1', 'Lecce', 'beds_per_1000res_pop', '106.7'), ('2015', 'IT038C1', 'Barletta', 'ons', '78034'), ('2015', 'IT038C1', 'Barletta', 'beds', '781'), ('2015', 'IT038C1', 'Barletta', 'ons_per_res_pop', '0.8'), ('2015', 'IT038C1', 'Barletta', 'beds_per_1000res_pop', '8.2'), ('2015', 'IT039C1', 'Pesaro', 'ons', '850123'), ('2015', 'IT039C1', 'Pesaro', 'beds', '9097'), ('2015', 'IT039C1', 'Pesaro', 'ons_per_res_pop', '9'), ('2015', 'IT039C1', 'Pesaro', 'beds_per_1000res_pop', '96.2'), ('2015', 'IT040C1', 'Como', 'ons', '539989'), ('2015', 'IT040C1', 'Como', 'beds', '3399'), ('2015', 'IT040C1', 'Como', 'ons_per_res_pop', '6.4'), ('2015', 'IT040C1', 'Como', 'beds_per_1000res_pop', '40.1'), ('2015', 'IT041C1', 'Pisa', 'ons', '1723044'), ('2015', 'IT041C1', 'Pisa', 'beds', '15014'), ('2015', 'IT041C1', 'Pisa', 'ons_per_res_pop', '19.2'), ('2015', 'IT041C1', 'Pisa', 'beds_per_1000res_pop', '167.7'), ('2015', 'IT042C1', 'Treviso', 'ons', '228974'), ('2015', 'IT042C1', 'Treviso', 'beds', '1797'), ('2015', 'IT042C1', 'Treviso', 'ons_per_res_pop', '2.7'), ('2015', 'IT042C1', 'Treviso', 'beds_per_1000res_pop', '21.5'), ('2015', 'IT043C1', 'Varese', 'ons', '263546'), ('2015', 'IT043C1', 'Varese', 'beds', '1929'), ('2015', 'IT043C1', 'Varese', 'ons_per_res_pop', '3.3'), ('2015', 'IT043C1', 'Varese', 'beds_per_1000res_pop', '23.9'), ('2015', 'IT044C1', 'Busto Arsizio', 'ons', '29507'), ('2015', 'IT044C1', 'Busto Arsizio', 'beds', '262'), ('2015', 'IT044C1', 'Busto Arsizio', 'ons_per_res_pop', '0.4'), ('2015', 'IT044C1', 'Busto Arsizio', 'beds_per_1000res_pop', '3.2'), ('2015', 'IT045C1', 'Asti', 'ons', '104340'), ('2015', 'IT045C1', 'Asti', 'beds', '1760'), ('2015', 'IT045C1', 'Asti', 'ons_per_res_pop', '1.4'), ('2015', 'IT045C1', 'Asti', 'beds_per_1000res_pop', '23'), ('2015', 'IT046C1', 'Pavia', 'ons', '127940'), ('2015', 'IT046C1', 'Pavia', 'beds', '956'), ('2015', 'IT046C1', 'Pavia', 'ons_per_res_pop', '1.8'), ('2015', 'IT046C1', 'Pavia', 'beds_per_1000res_pop', '13.2'), ('2015', 'IT047C1', 'Massa', 'ons', '861009'), ('2015', 'IT047C1', 'Massa', 'beds', '26239'), ('2015', 'IT047C1', 'Massa', 'ons_per_res_pop', '12.3'), ('2015', 'IT047C1', 'Massa', 'beds_per_1000res_pop', '375.7'), ('2015', 'IT048C1', 'Cosenza', 'ons', '111591'), ('2015', 'IT048C1', 'Cosenza', 'beds', '1026'), ('2015', 'IT048C1', 'Cosenza', 'ons_per_res_pop', '1.6'), ('2015', 'IT048C1', 'Cosenza', 'beds_per_1000res_pop', '15.2'), ('2015', 'IT052C1', 'Savona', 'ons', '174324'), ('2015', 'IT052C1', 'Savona', 'beds', '1957'), ('2015', 'IT052C1', 'Savona', 'ons_per_res_pop', '2.8'), ('2015', 'IT052C1', 'Savona', 'beds_per_1000res_pop', '31.8'), ('2015', 'IT054C1', 'Matera', 'ons', '353645'), ('2015', 'IT054C1', 'Matera', 'beds', '3593'), ('2015', 'IT054C1', 'Matera', 'ons_per_res_pop', '5.8'), ('2015', 'IT054C1', 'Matera', 'beds_per_1000res_pop', '59.4'), ('2015', 'IT056C1', 'Acireale', 'ons', '202690'), ('2015', 'IT056C1', 'Acireale', 'beds', '3357'), ('2015', 'IT056C1', 'Acireale', 'ons_per_res_pop', '3.8'), ('2015', 'IT056C1', 'Acireale', 'beds_per_1000res_pop', '63.7'), ('2015', 'IT057C1', 'Avellino', 'ons', '13658'), ('2015', 'IT057C1', 'Avellino', 'beds', '276'), ('2015', 'IT057C1', 'Avellino', 'ons_per_res_pop', '0.2'), ('2015', 'IT057C1', 'Avellino', 'beds_per_1000res_pop', '5'), ('2015', 'IT058C1', 'Pordenone', 'ons', '113375'), ('2015', 'IT058C1', 'Pordenone', 'beds', '1234'), ('2015', 'IT058C1', 'Pordenone', 'ons_per_res_pop', '2.2'), ('2015', 'IT058C1', 'Pordenone', 'beds_per_1000res_pop', '23.9'), ('2015', 'IT060C1', 'Lecco', 'ons', '83686'), ('2015', 'IT060C1', 'Lecco', 'beds', '1025'), ('2015', 'IT060C1', 'Lecco', 'ons_per_res_pop', '1.7'), ('2015', 'IT060C1', 'Lecco', 'beds_per_1000res_pop', '21.3'), ('2015', 'IT061C1', 'Altamura', 'ons', '19072'), ('2015', 'IT061C1', 'Altamura', 'beds', '445'), ('2015', 'IT061C1', 'Altamura', 'ons_per_res_pop', '0.3'), ('2015', 'IT061C1', 'Altamura', 'beds_per_1000res_pop', '6.3'), ('2015', 'IT062C1', 'Bitonto', 'ons', '11809'), ('2015', 'IT062C1', 'Bitonto', 'beds', '223'), ('2015', 'IT062C1', 'Bitonto', 'ons_per_res_pop', '0.2'), ('2015', 'IT062C1', 'Bitonto', 'beds_per_1000res_pop', '4'), ('2015', 'IT063C1', 'Molfetta', 'ons', '17871'), ('2015', 'IT063C1', 'Molfetta', 'beds', '194'), ('2015', 'IT063C1', 'Molfetta', 'ons_per_res_pop', '0.3'), ('2015', 'IT063C1', 'Molfetta', 'beds_per_1000res_pop', '3.2'), ('2015', 'IT064C1', 'Battipaglia', 'ons', '159656'), ('2015', 'IT064C1', 'Battipaglia', 'beds', '3036'), ('2015', 'IT064C1', 'Battipaglia', 'ons_per_res_pop', '3.1'), ('2015', 'IT064C1', 'Battipaglia', 'beds_per_1000res_pop', '59.7'), ('2015', 'IT065C1', 'Bisceglie', 'ons', '66845'), ('2015', 'IT065C1', 'Bisceglie', 'beds', '1006'), ('2015', 'IT065C1', 'Bisceglie', 'ons_per_res_pop', '1.2'), ('2015', 'IT065C1', 'Bisceglie', 'beds_per_1000res_pop', '18.1'), ('2015', 'IT066C1', 'Carpi', 'ons', '84201'), ('2015', 'IT066C1', 'Carpi', 'beds', '546'), ('2015', 'IT066C1', 'Carpi', 'ons_per_res_pop', '1.2'), ('2015', 'IT066C1', 'Carpi', 'beds_per_1000res_pop', '7.8'), ('2015', 'IT067C1', 'Cerignola', 'ons', '8334'), ('2015', 'IT067C1', 'Cerignola', 'beds', '343'), ('2015', 'IT067C1', 'Cerignola', 'ons_per_res_pop', '0.1'), ('2015', 'IT067C1', 'Cerignola', 'beds_per_1000res_pop', '5.9'), ('2015', 'IT068C1', 'Gallarate', 'ons', '38645'), ('2015', 'IT068C1', 'Gallarate', 'beds', '409'), ('2015', 'IT068C1', 'Gallarate', 'ons_per_res_pop', '0.7'), ('2015', 'IT068C1', 'Gallarate', 'beds_per_1000res_pop', '7.7'), ('2015', 'IT069C1', 'Gela', 'ons', '21576'), ('2015', 'IT069C1', 'Gela', 'beds', '541'), ('2015', 'IT069C1', 'Gela', 'ons_per_res_pop', '0.3'), ('2015', 'IT069C1', 'Gela', 'beds_per_1000res_pop', '7.1'), ('2015', 'IT070C1', 'Saronno', 'ons', '251088'), ('2015', 'IT070C1', 'Saronno', 'beds', '1449'), ('2015', 'IT070C1', 'Saronno', 'ons_per_res_pop', '6.4'), ('2015', 'IT070C1', 'Saronno', 'beds_per_1000res_pop', '36.7'), ('2015', 'IT071C1', 'Bagheria', 'ons', '30912'), ('2015', 'IT071C1', 'Bagheria', 'beds', '254'), ('2015', 'IT071C1', 'Bagheria', 'ons_per_res_pop', '0.6'), ('2015', 'IT071C1', 'Bagheria', 'beds_per_1000res_pop', '4.6'), ('2015', 'IT072C1', 'Anzio', 'ons', null), ('2015', 'IT072C1', 'Anzio', 'beds', '9622'), ('2015', 'IT072C1', 'Anzio', 'ons_per_res_pop', null), ('2015', 'IT072C1', 'Anzio', 'beds_per_1000res_pop', '178.2'), ('2015', 'IT073C1', 'Sassuolo', 'ons', '35863'), ('2015', 'IT073C1', 'Sassuolo', 'beds', '556'), ('2015', 'IT073C1', 'Sassuolo', 'ons_per_res_pop', '0.9'), ('2015', 'IT073C1', 'Sassuolo', 'beds_per_1000res_pop', '13.5'), ('2015', 'IT501C1', 'Messina', 'ons', '240134'), ('2015', 'IT501C1', 'Messina', 'beds', '3277'), ('2015', 'IT501C1', 'Messina', 'ons_per_res_pop', '1'), ('2015', 'IT501C1', 'Messina', 'beds_per_1000res_pop', '13.6'), ('2015', 'IT502C1', 'Prato', 'ons', '431887'), ('2015', 'IT502C1', 'Prato', 'beds', '2197'), ('2015', 'IT502C1', 'Prato', 'ons_per_res_pop', '2.3'), ('2015', 'IT502C1', 'Prato', 'beds_per_1000res_pop', '11.5'), ('2015', 'IT503C1', 'Parma', 'ons', '659703'), ('2015', 'IT503C1', 'Parma', 'beds', '4818'), ('2015', 'IT503C1', 'Parma', 'ons_per_res_pop', '3.5'), ('2015', 'IT503C1', 'Parma', 'beds_per_1000res_pop', '25.3'), ('2015', 'IT504C1', 'Livorno', 'ons', '320360'), ('2015', 'IT504C1', 'Livorno', 'beds', '3615'), ('2015', 'IT504C1', 'Livorno', 'ons_per_res_pop', '2'), ('2015', 'IT504C1', 'Livorno', 'beds_per_1000res_pop', '22.7'), ('2015', 'IT505C1', 'Reggio nell''Emilia', 'ons', '299223'), ('2015', 'IT505C1', 'Reggio nell''Emilia', 'beds', '2820'), ('2015', 'IT505C1', 'Reggio nell''Emilia', 'ons_per_res_pop', '1.7'), ('2015', 'IT505C1', 'Reggio nell''Emilia', 'beds_per_1000res_pop', '16.4'), ('2015', 'IT506C1', 'Ravenna', 'ons', '2498541'), ('2015', 'IT506C1', 'Ravenna', 'beds', '38654'), ('2015', 'IT506C1', 'Ravenna', 'ons_per_res_pop', '15.7'), ('2015', 'IT506C1', 'Ravenna', 'beds_per_1000res_pop', '243.2'), ('2015', 'IT507C1', 'Ferrara', 'ons', '385626'), ('2015', 'IT507C1', 'Ferrara', 'beds', '3654'), ('2015', 'IT507C1', 'Ferrara', 'ons_per_res_pop', '2.9'), ('2015', 'IT507C1', 'Ferrara', 'beds_per_1000res_pop', '27.3'), ('2015', 'IT508C1', 'Rimini', 'ons', '6916643'), ('2015', 'IT508C1', 'Rimini', 'beds', '73920'), ('2015', 'IT508C1', 'Rimini', 'ons_per_res_pop', '46.9'), ('2015', 'IT508C1', 'Rimini', 'beds_per_1000res_pop', '500.9'), ('2015', 'IT509C1', 'Siracusa', 'ons', '898789'), ('2015', 'IT509C1', 'Siracusa', 'beds', '7803'), ('2015', 'IT509C1', 'Siracusa', 'ons_per_res_pop', '7.3'), ('2015', 'IT509C1', 'Siracusa', 'beds_per_1000res_pop', '63.7'), ('2015', 'IT510C1', 'Monza', 'ons', '215602'), ('2015', 'IT510C1', 'Monza', 'beds', '1752'), ('2015', 'IT510C1', 'Monza', 'ons_per_res_pop', '1.8'), ('2015', 'IT510C1', 'Monza', 'beds_per_1000res_pop', '14.3'), ('2015', 'IT511C1', 'Bergamo', 'ons', '535444'), ('2015', 'IT511C1', 'Bergamo', 'beds', '4254'), ('2015', 'IT511C1', 'Bergamo', 'ons_per_res_pop', '4.5'), ('2015', 'IT511C1', 'Bergamo', 'beds_per_1000res_pop', '35.7'), ('2015', 'IT512C1', 'Forlì', 'ons', '196021'), ('2015', 'IT512C1', 'Forlì', 'beds', '1500'), ('2015', 'IT512C1', 'Forlì', 'ons_per_res_pop', '1.7'), ('2015', 'IT512C1', 'Forlì', 'beds_per_1000res_pop', '12.7'), ('2015', 'IT513C1', 'Latina', 'ons', '173831'), ('2015', 'IT513C1', 'Latina', 'beds', '5005'), ('2015', 'IT513C1', 'Latina', 'ons_per_res_pop', '1.4'), ('2015', 'IT513C1', 'Latina', 'beds_per_1000res_pop', '39.9'), ('2015', 'IT514C1', 'Vicenza', 'ons', '500734'), ('2015', 'IT514C1', 'Vicenza', 'beds', '3882'), ('2015', 'IT514C1', 'Vicenza', 'ons_per_res_pop', '4.4'), ('2015', 'IT514C1', 'Vicenza', 'beds_per_1000res_pop', '34.2'), ('2015', 'IT515C1', 'Terni', 'ons', '220905'), ('2015', 'IT515C1', 'Terni', 'beds', '2856'), ('2015', 'IT515C1', 'Terni', 'ons_per_res_pop', '2'), ('2015', 'IT515C1', 'Terni', 'beds_per_1000res_pop', '25.5'), ('2015', 'IT516C1', 'Novara', 'ons', '159243'), ('2015', 'IT516C1', 'Novara', 'beds', '1548'), ('2015', 'IT516C1', 'Novara', 'ons_per_res_pop', '1.5'), ('2015', 'IT516C1', 'Novara', 'beds_per_1000res_pop', '14.8'), ('2015', 'IT517C1', 'Giugliano in Campania', 'ons', '164797'), ('2015', 'IT517C1', 'Giugliano in Campania', 'beds', '3942'), ('2015', 'IT517C1', 'Giugliano in Campania', 'ons_per_res_pop', '1.4'), ('2015', 'IT517C1', 'Giugliano in Campania', 'beds_per_1000res_pop', '32.5'), ('2015', 'IT518C1', 'Alessandria', 'ons', '123103'), ('2015', 'IT518C1', 'Alessandria', 'beds', '1318'), ('2015', 'IT518C1', 'Alessandria', 'ons_per_res_pop', '1.3'), ('2015', 'IT518C1', 'Alessandria', 'beds_per_1000res_pop', '14'), ('2015', 'IT519C1', 'Arezzo', 'ons', '301136'), ('2015', 'IT519C1', 'Arezzo', 'beds', '3926'), ('2015', 'IT519C1', 'Arezzo', 'ons_per_res_pop', '3'), ('2015', 'IT519C1', 'Arezzo', 'beds_per_1000res_pop', '39.5'), ('2015', 'IT520C1', 'Grosseto', 'ons', '1127238'), ('2015', 'IT520C1', 'Grosseto', 'beds', '18639'), ('2015', 'IT520C1', 'Grosseto', 'ons_per_res_pop', '13.8'), ('2015', 'IT520C1', 'Grosseto', 'beds_per_1000res_pop', '227.8'), ('2015', 'IT521C1', 'Brindisi', 'ons', '148592'), ('2015', 'IT521C1', 'Brindisi', 'beds', '1600'), ('2015', 'IT521C1', 'Brindisi', 'ons_per_res_pop', '1.7'), ('2015', 'IT521C1', 'Brindisi', 'beds_per_1000res_pop', '18'), ('2015', 'IT522C1', 'Trapani', 'ons', '222228'), ('2015', 'IT522C1', 'Trapani', 'beds', '2189'), ('2015', 'IT522C1', 'Trapani', 'ons_per_res_pop', '3.2'), ('2015', 'IT522C1', 'Trapani', 'beds_per_1000res_pop', '31.6'), ('2015', 'IT523C1', 'Ragusa', 'ons', '544136'), ('2015', 'IT523C1', 'Ragusa', 'beds', '9001'), ('2015', 'IT523C1', 'Ragusa', 'ons_per_res_pop', '7.5'), ('2015', 'IT523C1', 'Ragusa', 'beds_per_1000res_pop', '123.3'), ('2015', 'IT524C1', 'Andria', 'ons', '25700'), ('2015', 'IT524C1', 'Andria', 'beds', '897'), ('2015', 'IT524C1', 'Andria', 'ons_per_res_pop', '0.3'), ('2015', 'IT524C1', 'Andria', 'beds_per_1000res_pop', '8.9'), ('2015', 'IT525C1', 'Trani', 'ons', '68286'), ('2015', 'IT525C1', 'Trani', 'beds', '920'), ('2015', 'IT525C1', 'Trani', 'ons_per_res_pop', '1.2'), ('2015', 'IT525C1', 'Trani', 'beds_per_1000res_pop', '16.4'), ('2015', 'IT526C1', 'L''Aquila', 'ons', '134405'), ('2015', 'IT526C1', 'L''Aquila', 'beds', '2333'), ('2015', 'IT526C1', 'L''Aquila', 'ons_per_res_pop', '1.9'), ('2015', 'IT526C1', 'L''Aquila', 'beds_per_1000res_pop', '33.2'), ('2015', 'CY', 'Cyprus', 'ons', null), ('2015', 'CY', 'Cyprus', 'beds', null), ('2015', 'CY', 'Cyprus', 'ons_per_res_pop', null), ('2015', 'CY', 'Cyprus', 'beds_per_1000res_pop', null), ('2015', 'CY001C1', 'Lefkosia', 'ons', null), ('2015', 'CY001C1', 'Lefkosia', 'beds', null), ('2015', 'CY001C1', 'Lefkosia', 'ons_per_res_pop', null), ('2015', 'CY001C1', 'Lefkosia', 'beds_per_1000res_pop', null), ('2015', 'LV', 'Latvia', 'ons', '4109910'), ('2015', 'LV', 'Latvia', 'beds', '34420'), ('2015', 'LV', 'Latvia', 'ons_per_res_pop', '2.1'), ('2015', 'LV', 'Latvia', 'beds_per_1000res_pop', '17.3'), ('2015', 'LV001C1', 'Riga', 'ons', '2516474'), ('2015', 'LV001C1', 'Riga', 'beds', '14431'), ('2015', 'LV001C1', 'Riga', 'ons_per_res_pop', '3.9'), ('2015', 'LV001C1', 'Riga', 'beds_per_1000res_pop', '22.5'), ('2015', 'LV002C1', 'Liepaja', 'ons', '121639'), ('2015', 'LV002C1', 'Liepaja', 'beds', '942'), ('2015', 'LV002C1', 'Liepaja', 'ons_per_res_pop', '1.7'), ('2015', 'LV002C1', 'Liepaja', 'beds_per_1000res_pop', '13.2'), ('2015', 'LV003C1', 'Jelgava', 'ons', '25317'), ('2015', 'LV003C1', 'Jelgava', 'beds', '264'), ('2015', 'LV003C1', 'Jelgava', 'ons_per_res_pop', '0.4'), ('2015', 'LV003C1', 'Jelgava', 'beds_per_1000res_pop', '4.6'), ('2015', 'LV501C1', 'Daugavpils', 'ons', '54702'), ('2015', 'LV501C1', 'Daugavpils', 'beds', '599'), ('2015', 'LV501C1', 'Daugavpils', 'ons_per_res_pop', '0.6'), ('2015', 'LV501C1', 'Daugavpils', 'beds_per_1000res_pop', '6.9'), ('2015', 'LT', 'Lithuania', 'ons', '6581192'), ('2015', 'LT', 'Lithuania', 'beds', '73762'), ('2015', 'LT', 'Lithuania', 'ons_per_res_pop', '2.3'), ('2015', 'LT', 'Lithuania', 'beds_per_1000res_pop', '25.3'), ('2015', 'LT001C1', 'Vilnius', 'ons', '1833984'), ('2015', 'LT001C1', 'Vilnius', 'beds', '11333'), ('2015', 'LT001C1', 'Vilnius', 'ons_per_res_pop', '3.4'), ('2015', 'LT001C1', 'Vilnius', 'beds_per_1000res_pop', '20.9'), ('2015', 'LT002C1', 'Kaunas', 'ons', '414588'), ('2015', 'LT002C1', 'Kaunas', 'beds', '3644'), ('2015', 'LT002C1', 'Kaunas', 'ons_per_res_pop', '1.4'), ('2015', 'LT002C1', 'Kaunas', 'beds_per_1000res_pop', '12.1'), ('2015', 'LT003C1', 'Panevezys', 'ons', '29863'), ('2015', 'LT003C1', 'Panevezys', 'beds', '342'), ('2015', 'LT003C1', 'Panevezys', 'ons_per_res_pop', '0.3'), ('2015', 'LT003C1', 'Panevezys', 'beds_per_1000res_pop', '3.6'), ('2015', 'LT004C1', 'Alytus', 'ons', '26356'), ('2015', 'LT004C1', 'Alytus', 'beds', '328'), ('2015', 'LT004C1', 'Alytus', 'ons_per_res_pop', '0.5'), ('2015', 'LT004C1', 'Alytus', 'beds_per_1000res_pop', '5.9'), ('2015', 'LT501C1', 'Klaipeda', 'ons', '366383'), ('2015', 'LT501C1', 'Klaipeda', 'beds', '3392'), ('2015', 'LT501C1', 'Klaipeda', 'ons_per_res_pop', '2.3'), ('2015', 'LT501C1', 'Klaipeda', 'beds_per_1000res_pop', '21.7'), ('2015', 'LT502C1', 'Siauliai', 'ons', '137022'), ('2015', 'LT502C1', 'Siauliai', 'beds', '1077'), ('2015', 'LT502C1', 'Siauliai', 'ons_per_res_pop', '1.3'), ('2015', 'LT502C1', 'Siauliai', 'beds_per_1000res_pop', '10.3'), ('2015', 'LU', 'Luxembourg (Grand Duchy)', 'ons', null), ('2015', 'LU', 'Luxembourg (Grand Duchy)', 'beds', null), ('2015', 'LU', 'Luxembourg (Grand Duchy)', 'ons_per_res_pop', null), ('2015', 'LU', 'Luxembourg (Grand Duchy)', 'beds_per_1000res_pop', null), ('2015', 'LU001C1', 'Luxembourg', 'ons', null), ('2015', 'LU001C1', 'Luxembourg', 'beds', null), ('2015', 'LU001C1', 'Luxembourg', 'ons_per_res_pop', null), ('2015', 'LU001C1', 'Luxembourg', 'beds_per_1000res_pop', null), ('2015', 'HU', 'Hungary', 'ons', null), ('2015', 'HU', 'Hungary', 'beds', null), ('2015', 'HU', 'Hungary', 'ons_per_res_pop', null), ('2015', 'HU', 'Hungary', 'beds_per_1000res_pop', null), ('2015', 'HU001C1', 'Budapest', 'ons', '8767826'), ('2015', 'HU001C1', 'Budapest', 'beds', '51054'), ('2015', 'HU001C1', 'Budapest', 'ons_per_res_pop', '5'), ('2015', 'HU001C1', 'Budapest', 'beds_per_1000res_pop', '29'), ('2015', 'HU002C1', 'Miskolc', 'ons', '322640'), ('2015', 'HU002C1', 'Miskolc', 'beds', '5772'), ('2015', 'HU002C1', 'Miskolc', 'ons_per_res_pop', '2'), ('2015', 'HU002C1', 'Miskolc', 'beds_per_1000res_pop', '36.2'), ('2015', 'HU003C1', 'Nyíregyháza', 'ons', '193482'), ('2015', 'HU003C1', 'Nyíregyháza', 'beds', '2967'), ('2015', 'HU003C1', 'Nyíregyháza', 'ons_per_res_pop', '1.6'), ('2015', 'HU003C1', 'Nyíregyháza', 'beds_per_1000res_pop', '25.1'), ('2015', 'HU004C1', 'Pécs', 'ons', '227821'), ('2015', 'HU004C1', 'Pécs', 'beds', '3775'), ('2015', 'HU004C1', 'Pécs', 'ons_per_res_pop', '1.6'), ('2015', 'HU004C1', 'Pécs', 'beds_per_1000res_pop', '25.9'), ('2015', 'HU005C1', 'Debrecen', 'ons', '352140'), ('2015', 'HU005C1', 'Debrecen', 'beds', '6405'), ('2015', 'HU005C1', 'Debrecen', 'ons_per_res_pop', '1.7'), ('2015', 'HU005C1', 'Debrecen', 'beds_per_1000res_pop', '31.5'), ('2015', 'HU006C1', 'Szeged', 'ons', '334089'), ('2015', 'HU006C1', 'Szeged', 'beds', '8394'), ('2015', 'HU006C1', 'Szeged', 'ons_per_res_pop', '2.1'), ('2015', 'HU006C1', 'Szeged', 'beds_per_1000res_pop', '51.6'), ('2015', 'HU007C1', 'Gyõr', 'ons', '344498'), ('2015', 'HU007C1', 'Gyõr', 'beds', '3284'), ('2015', 'HU007C1', 'Gyõr', 'ons_per_res_pop', '2.7'), ('2015', 'HU007C1', 'Gyõr', 'beds_per_1000res_pop', '25.4'), ('2015', 'HU008C1', 'Kecskemét', 'ons', '141284'), ('2015', 'HU008C1', 'Kecskemét', 'beds', '1967'), ('2015', 'HU008C1', 'Kecskemét', 'ons_per_res_pop', '1.3'), ('2015', 'HU008C1', 'Kecskemét', 'beds_per_1000res_pop', '17.6'), ('2015', 'HU009C1', 'Székesfehérvár', 'ons', '116499'), ('2015', 'HU009C1', 'Székesfehérvár', 'beds', '1272'), ('2015', 'HU009C1', 'Székesfehérvár', 'ons_per_res_pop', '1.2'), ('2015', 'HU009C1', 'Székesfehérvár', 'beds_per_1000res_pop', '12.9'), ('2015', 'HU010C1', 'Szombathely', 'ons', '115264'), ('2015', 'HU010C1', 'Szombathely', 'beds', '1649'), ('2015', 'HU010C1', 'Szombathely', 'ons_per_res_pop', '1.5'), ('2015', 'HU010C1', 'Szombathely', 'beds_per_1000res_pop', '21.2'), ('2015', 'HU011C1', 'Szolnok', 'ons', '74452'), ('2015', 'HU011C1', 'Szolnok', 'beds', '1181'), ('2015', 'HU011C1', 'Szolnok', 'ons_per_res_pop', '1'), ('2015', 'HU011C1', 'Szolnok', 'beds_per_1000res_pop', '16.2'), ('2015', 'HU012C1', 'Tatabánya', 'ons', '18912'), ('2015', 'HU012C1', 'Tatabánya', 'beds', '354'), ('2015', 'HU012C1', 'Tatabánya', 'ons_per_res_pop', '0.3'), ('2015', 'HU012C1', 'Tatabánya', 'beds_per_1000res_pop', '5.3'), ('2015', 'HU013C1', 'Veszprém', 'ons', '86540'), ('2015', 'HU013C1', 'Veszprém', 'beds', '1520'), ('2015', 'HU013C1', 'Veszprém', 'ons_per_res_pop', '1.4'), ('2015', 'HU013C1', 'Veszprém', 'beds_per_1000res_pop', '25'), ('2015', 'HU014C1', 'Békéscsaba', 'ons', '49971'), ('2015', 'HU014C1', 'Békéscsaba', 'beds', '913'), ('2015', 'HU014C1', 'Békéscsaba', 'ons_per_res_pop', '0.8'), ('2015', 'HU014C1', 'Békéscsaba', 'beds_per_1000res_pop', '15.1'), ('2015', 'HU015C1', 'Kaposvár', 'ons', '51847'), ('2015', 'HU015C1', 'Kaposvár', 'beds', '2133'), ('2015', 'HU015C1', 'Kaposvár', 'ons_per_res_pop', '0.8'), ('2015', 'HU015C1', 'Kaposvár', 'beds_per_1000res_pop', '33.5'), ('2015', 'HU016C1', 'Eger', 'ons', '448095'), ('2015', 'HU016C1', 'Eger', 'beds', '6061'), ('2015', 'HU016C1', 'Eger', 'ons_per_res_pop', '8.2'), ('2015', 'HU016C1', 'Eger', 'beds_per_1000res_pop', '111'), ('2015', 'HU017C1', 'Dunaújváros', 'ons', '44935'), ('2015', 'HU017C1', 'Dunaújváros', 'beds', '1339'), ('2015', 'HU017C1', 'Dunaújváros', 'ons_per_res_pop', '1'), ('2015', 'HU017C1', 'Dunaújváros', 'beds_per_1000res_pop', '29.1'), ('2015', 'HU018C1', 'Zalaegerszeg', 'ons', '40756'), ('2015', 'HU018C1', 'Zalaegerszeg', 'beds', '1915'), ('2015', 'HU018C1', 'Zalaegerszeg', 'ons_per_res_pop', '0.7'), ('2015', 'HU018C1', 'Zalaegerszeg', 'beds_per_1000res_pop', '32.5'), ('2015', 'HU019C1', 'Sopron', 'ons', '379361'), ('2015', 'HU019C1', 'Sopron', 'beds', '3501'), ('2015', 'HU019C1', 'Sopron', 'ons_per_res_pop', '6.1'), ('2015', 'HU019C1', 'Sopron', 'beds_per_1000res_pop', '56.7'), ('2015', 'MT', 'Malta', 'ons', '8915297'), ('2015', 'MT', 'Malta', 'beds', '42165'), ('2015', 'MT', 'Malta', 'ons_per_res_pop', '20.3'), ('2015', 'MT', 'Malta', 'beds_per_1000res_pop', '95.9'), ('2015', 'MT001C1', 'Valletta', 'ons', '4280404'), ('2015', 'MT001C1', 'Valletta', 'beds', '19691'), ('2015', 'MT001C1', 'Valletta', 'ons_per_res_pop', '20.1'), ('2015', 'MT001C1', 'Valletta', 'beds_per_1000res_pop', '92.5'), ('2015', 'NL', 'Netherlands', 'ons', null), ('2015', 'NL', 'Netherlands', 'beds', null), ('2015', 'NL', 'Netherlands', 'ons_per_res_pop', null), ('2015', 'NL', 'Netherlands', 'beds_per_1000res_pop', null), ('2015', 'NL001C2', 'Greater ''s-Gravenhage', 'ons', null), ('2015', 'NL001C2', 'Greater ''s-Gravenhage', 'beds', null), ('2015', 'NL001C2', 'Greater ''s-Gravenhage', 'ons_per_res_pop', null), ('2015', 'NL001C2', 'Greater ''s-Gravenhage', 'beds_per_1000res_pop', null), ('2015', 'NL002C2', 'Greater Amsterdam', 'ons', null), ('2015', 'NL002C2', 'Greater Amsterdam', 'beds', null), ('2015', 'NL002C2', 'Greater Amsterdam', 'ons_per_res_pop', null), ('2015', 'NL002C2', 'Greater Amsterdam', 'beds_per_1000res_pop', null), ('2015', 'NL003C2', 'Greater Rotterdam', 'ons', null), ('2015', 'NL003C2', 'Greater Rotterdam', 'beds', null), ('2015', 'NL003C2', 'Greater Rotterdam', 'ons_per_res_pop', null), ('2015', 'NL003C2', 'Greater Rotterdam', 'beds_per_1000res_pop', null), ('2015', 'NL004C2', 'Greater Utrecht', 'ons', null), ('2015', 'NL004C2', 'Greater Utrecht', 'beds', null), ('2015', 'NL004C2', 'Greater Utrecht', 'ons_per_res_pop', null), ('2015', 'NL004C2', 'Greater Utrecht', 'beds_per_1000res_pop', null), ('2015', 'NL005C2', 'Greater Eindhoven', 'ons', null), ('2015', 'NL005C2', 'Greater Eindhoven', 'beds', null), ('2015', 'NL005C2', 'Greater Eindhoven', 'ons_per_res_pop', null), ('2015', 'NL005C2', 'Greater Eindhoven', 'beds_per_1000res_pop', null), ('2015', 'NL006C1', 'Tilburg', 'ons', null), ('2015', 'NL006C1', 'Tilburg', 'beds', null), ('2015', 'NL006C1', 'Tilburg', 'ons_per_res_pop', null), ('2015', 'NL006C1', 'Tilburg', 'beds_per_1000res_pop', null), ('2015', 'NL007C1', 'Groningen', 'ons', null), ('2015', 'NL007C1', 'Groningen', 'beds', null), ('2015', 'NL007C1', 'Groningen', 'ons_per_res_pop', null), ('2015', 'NL007C1', 'Groningen', 'beds_per_1000res_pop', null), ('2015', 'NL008C1', 'Enschede', 'ons', null), ('2015', 'NL008C1', 'Enschede', 'beds', null), ('2015', 'NL008C1', 'Enschede', 'ons_per_res_pop', null), ('2015', 'NL008C1', 'Enschede', 'beds_per_1000res_pop', null), ('2015', 'NL009C2', 'Greater Arnhem', 'ons', null), ('2015', 'NL009C2', 'Greater Arnhem', 'beds', null), ('2015', 'NL009C2', 'Greater Arnhem', 'ons_per_res_pop', null), ('2015', 'NL009C2', 'Greater Arnhem', 'beds_per_1000res_pop', null), ('2015', 'NL010C2', 'Greater Heerlen', 'ons', null), ('2015', 'NL010C2', 'Greater Heerlen', 'beds', null), ('2015', 'NL010C2', 'Greater Heerlen', 'ons_per_res_pop', null), ('2015', 'NL010C2', 'Greater Heerlen', 'beds_per_1000res_pop', null), ('2015', 'NL011C1', 'Almere', 'ons', null), ('2015', 'NL011C1', 'Almere', 'beds', null), ('2015', 'NL011C1', 'Almere', 'ons_per_res_pop', null), ('2015', 'NL011C1', 'Almere', 'beds_per_1000res_pop', null), ('2015', 'NL012C1', 'Breda', 'ons', null), ('2015', 'NL012C1', 'Breda', 'beds', null), ('2015', 'NL012C1', 'Breda', 'ons_per_res_pop', null), ('2015', 'NL012C1', 'Breda', 'beds_per_1000res_pop', null), ('2015', 'NL013C1', 'Nijmegen', 'ons', null), ('2015', 'NL013C1', 'Nijmegen', 'beds', null), ('2015', 'NL013C1', 'Nijmegen', 'ons_per_res_pop', null), ('2015', 'NL013C1', 'Nijmegen', 'beds_per_1000res_pop', null), ('2015', 'NL014C1', 'Apeldoorn', 'ons', null), ('2015', 'NL014C1', 'Apeldoorn', 'beds', null), ('2015', 'NL014C1', 'Apeldoorn', 'ons_per_res_pop', null), ('2015', 'NL014C1', 'Apeldoorn', 'beds_per_1000res_pop', null), ('2015', 'NL015C1', 'Leeuwarden', 'ons', null), ('2015', 'NL015C1', 'Leeuwarden', 'beds', null), ('2015', 'NL015C1', 'Leeuwarden', 'ons_per_res_pop', null), ('2015', 'NL015C1', 'Leeuwarden', 'beds_per_1000res_pop', null), ('2015', 'NL016C2', 'Greater Sittard-Geleen', 'ons', null), ('2015', 'NL016C2', 'Greater Sittard-Geleen', 'beds', null), ('2015', 'NL016C2', 'Greater Sittard-Geleen', 'ons_per_res_pop', null), ('2015', 'NL016C2', 'Greater Sittard-Geleen', 'beds_per_1000res_pop', null), ('2015', 'NL018C1', 'Hilversum', 'ons', null), ('2015', 'NL018C1', 'Hilversum', 'beds', null), ('2015', 'NL018C1', 'Hilversum', 'ons_per_res_pop', null), ('2015', 'NL018C1', 'Hilversum', 'beds_per_1000res_pop', null), ('2015', 'NL020C1', 'Roosendaal', 'ons', null), ('2015', 'NL020C1', 'Roosendaal', 'beds', null), ('2015', 'NL020C1', 'Roosendaal', 'ons_per_res_pop', null), ('2015', 'NL020C1', 'Roosendaal', 'beds_per_1000res_pop', null), ('2015', 'NL021C2', 'Greater Nissewaard', 'ons', null), ('2015', 'NL021C2', 'Greater Nissewaard', 'beds', null), ('2015', 'NL021C2', 'Greater Nissewaard', 'ons_per_res_pop', null), ('2015', 'NL021C2', 'Greater Nissewaard', 'beds_per_1000res_pop', null), ('2015', 'NL023C1', 'Purmerend', 'ons', null), ('2015', 'NL023C1', 'Purmerend', 'beds', null), ('2015', 'NL023C1', 'Purmerend', 'ons_per_res_pop', null), ('2015', 'NL023C1', 'Purmerend', 'beds_per_1000res_pop', null), ('2015', 'NL026C1', 'Alphen aan den Rijn', 'ons', null), ('2015', 'NL026C1', 'Alphen aan den Rijn', 'beds', null), ('2015', 'NL026C1', 'Alphen aan den Rijn', 'ons_per_res_pop', null), ('2015', 'NL026C1', 'Alphen aan den Rijn', 'beds_per_1000res_pop', null), ('2015', 'NL028C1', 'Bergen op Zoom', 'ons', null), ('2015', 'NL028C1', 'Bergen op Zoom', 'beds', null), ('2015', 'NL028C1', 'Bergen op Zoom', 'ons_per_res_pop', null), ('2015', 'NL028C1', 'Bergen op Zoom', 'beds_per_1000res_pop', null), ('2015', 'NL030C1', 'Gouda', 'ons', null), ('2015', 'NL030C1', 'Gouda', 'beds', null), ('2015', 'NL030C1', 'Gouda', 'ons_per_res_pop', null), ('2015', 'NL030C1', 'Gouda', 'beds_per_1000res_pop', null), ('2015', 'NL031C1', 'Hoorn', 'ons', null), ('2015', 'NL031C1', 'Hoorn', 'beds', null), ('2015', 'NL031C1', 'Hoorn', 'ons_per_res_pop', null), ('2015', 'NL031C1', 'Hoorn', 'beds_per_1000res_pop', null), ('2015', 'NL032C2', 'Greater Middelburg', 'ons', null), ('2015', 'NL032C2', 'Greater Middelburg', 'beds', null), ('2015', 'NL032C2', 'Greater Middelburg', 'ons_per_res_pop', null), ('2015', 'NL032C2', 'Greater Middelburg', 'beds_per_1000res_pop', null), ('2015', 'NL501C2', 'Greater Haarlem', 'ons', null), ('2015', 'NL501C2', 'Greater Haarlem', 'beds', null), ('2015', 'NL501C2', 'Greater Haarlem', 'ons_per_res_pop', null), ('2015', 'NL501C2', 'Greater Haarlem', 'beds_per_1000res_pop', null), ('2015', 'NL502C1', 'Zaanstad', 'ons', null), ('2015', 'NL502C1', 'Zaanstad', 'beds', null), ('2015', 'NL502C1', 'Zaanstad', 'ons_per_res_pop', null), ('2015', 'NL502C1', 'Zaanstad', 'beds_per_1000res_pop', null), ('2015', 'NL503C1', '''s-Hertogenbosch', 'ons', null), ('2015', 'NL503C1', '''s-Hertogenbosch', 'beds', null), ('2015', 'NL503C1', '''s-Hertogenbosch', 'ons_per_res_pop', null), ('2015', 'NL503C1', '''s-Hertogenbosch', 'beds_per_1000res_pop', null), ('2015', 'NL504C1', 'Amersfoort', 'ons', null), ('2015', 'NL504C1', 'Amersfoort', 'beds', null), ('2015', 'NL504C1', 'Amersfoort', 'ons_per_res_pop', null), ('2015', 'NL504C1', 'Amersfoort', 'beds_per_1000res_pop', null), ('2015', 'NL505C1', 'Maastricht', 'ons', null), ('2015', 'NL505C1', 'Maastricht', 'beds', null), ('2015', 'NL505C1', 'Maastricht', 'ons_per_res_pop', null), ('2015', 'NL505C1', 'Maastricht', 'beds_per_1000res_pop', null), ('2015', 'NL507C2', 'Greater Leiden', 'ons', null), ('2015', 'NL507C2', 'Greater Leiden', 'beds', null), ('2015', 'NL507C2', 'Greater Leiden', 'ons_per_res_pop', null), ('2015', 'NL507C2', 'Greater Leiden', 'beds_per_1000res_pop', null), ('2015', 'NL508C1', 'Haarlemmermeer', 'ons', null), ('2015', 'NL508C1', 'Haarlemmermeer', 'beds', null), ('2015', 'NL508C1', 'Haarlemmermeer', 'ons_per_res_pop', null), ('2015', 'NL508C1', 'Haarlemmermeer', 'beds_per_1000res_pop', null), ('2015', 'NL509C1', 'Zoetermeer', 'ons', null), ('2015', 'NL509C1', 'Zoetermeer', 'beds', null), ('2015', 'NL509C1', 'Zoetermeer', 'ons_per_res_pop', null), ('2015', 'NL509C1', 'Zoetermeer', 'beds_per_1000res_pop', null), ('2015', 'NL511C1', 'Zwolle', 'ons', null), ('2015', 'NL511C1', 'Zwolle', 'beds', null), ('2015', 'NL511C1', 'Zwolle', 'ons_per_res_pop', null), ('2015', 'NL511C1', 'Zwolle', 'beds_per_1000res_pop', null), ('2015', 'NL512C2', 'Greater Ede', 'ons', null), ('2015', 'NL512C2', 'Greater Ede', 'beds', null), ('2015', 'NL512C2', 'Greater Ede', 'ons_per_res_pop', null), ('2015', 'NL512C2', 'Greater Ede', 'beds_per_1000res_pop', null), ('2015', 'NL513C1', 'Deventer', 'ons', null), ('2015', 'NL513C1', 'Deventer', 'beds', null), ('2015', 'NL513C1', 'Deventer', 'ons_per_res_pop', null), ('2015', 'NL513C1', 'Deventer', 'beds_per_1000res_pop', null), ('2015', 'NL514C2', 'Greater Alkmaar', 'ons', null), ('2015', 'NL514C2', 'Greater Alkmaar', 'beds', null), ('2015', 'NL514C2', 'Greater Alkmaar', 'ons_per_res_pop', null), ('2015', 'NL514C2', 'Greater Alkmaar', 'beds_per_1000res_pop', null), ('2015', 'NL515C1', 'Venlo', 'ons', null), ('2015', 'NL515C1', 'Venlo', 'beds', null), ('2015', 'NL515C1', 'Venlo', 'ons_per_res_pop', null), ('2015', 'NL515C1', 'Venlo', 'beds_per_1000res_pop', null), ('2015', 'NL516C1', 'Helmond', 'ons', null), ('2015', 'NL516C1', 'Helmond', 'beds', null), ('2015', 'NL516C1', 'Helmond', 'ons_per_res_pop', null), ('2015', 'NL516C1', 'Helmond', 'beds_per_1000res_pop', null), ('2015', 'NL517C1', 'Hengelo', 'ons', null), ('2015', 'NL517C1', 'Hengelo', 'beds', null), ('2015', 'NL517C1', 'Hengelo', 'ons_per_res_pop', null), ('2015', 'NL517C1', 'Hengelo', 'beds_per_1000res_pop', null), ('2015', 'NL519C1', 'Almelo', 'ons', null), ('2015', 'NL519C1', 'Almelo', 'beds', null), ('2015', 'NL519C1', 'Almelo', 'ons_per_res_pop', null), ('2015', 'NL519C1', 'Almelo', 'beds_per_1000res_pop', null), ('2015', 'NL520C1', 'Lelystad', 'ons', null), ('2015', 'NL520C1', 'Lelystad', 'beds', null), ('2015', 'NL520C1', 'Lelystad', 'ons_per_res_pop', null), ('2015', 'NL520C1', 'Lelystad', 'beds_per_1000res_pop', null), ('2015', 'NL521C1', 'Oss', 'ons', null), ('2015', 'NL521C1', 'Oss', 'beds', null), ('2015', 'NL521C1', 'Oss', 'ons_per_res_pop', null), ('2015', 'NL521C1', 'Oss', 'beds_per_1000res_pop', null), ('2015', 'NL522C1', 'Assen', 'ons', null), ('2015', 'NL522C1', 'Assen', 'beds', null), ('2015', 'NL522C1', 'Assen', 'ons_per_res_pop', null), ('2015', 'NL522C1', 'Assen', 'beds_per_1000res_pop', null), ('2015', 'NL524C1', 'Veenendaal', 'ons', null), ('2015', 'NL524C1', 'Veenendaal', 'beds', null), ('2015', 'NL524C1', 'Veenendaal', 'ons_per_res_pop', null), ('2015', 'NL524C1', 'Veenendaal', 'beds_per_1000res_pop', null), ('2015', 'NL528C1', 'Greater Heemskerk', 'ons', null), ('2015', 'NL528C1', 'Greater Heemskerk', 'beds', null), ('2015', 'NL528C1', 'Greater Heemskerk', 'ons_per_res_pop', null), ('2015', 'NL528C1', 'Greater Heemskerk', 'beds_per_1000res_pop', null), ('2015', 'NL529C1', 'Greater Soest', 'ons', null), ('2015', 'NL529C1', 'Greater Soest', 'beds', null), ('2015', 'NL529C1', 'Greater Soest', 'ons_per_res_pop', null), ('2015', 'NL529C1', 'Greater Soest', 'beds_per_1000res_pop', null), ('2015', 'AT', 'Austria', 'ons', null), ('2015', 'AT', 'Austria', 'beds', null), ('2015', 'AT', 'Austria', 'ons_per_res_pop', null), ('2015', 'AT', 'Austria', 'beds_per_1000res_pop', null), ('2015', 'AT001C1', 'Wien', 'ons', null), ('2015', 'AT001C1', 'Wien', 'beds', null), ('2015', 'AT001C1', 'Wien', 'ons_per_res_pop', null), ('2015', 'AT001C1', 'Wien', 'beds_per_1000res_pop', null), ('2015', 'AT002C1', 'Graz', 'ons', null), ('2015', 'AT002C1', 'Graz', 'beds', null), ('2015', 'AT002C1', 'Graz', 'ons_per_res_pop', null), ('2015', 'AT002C1', 'Graz', 'beds_per_1000res_pop', null), ('2015', 'AT003C1', 'Linz', 'ons', null), ('2015', 'AT003C1', 'Linz', 'beds', null), ('2015', 'AT003C1', 'Linz', 'ons_per_res_pop', null), ('2015', 'AT003C1', 'Linz', 'beds_per_1000res_pop', null), ('2015', 'AT004C1', 'Salzburg', 'ons', null), ('2015', 'AT004C1', 'Salzburg', 'beds', null), ('2015', 'AT004C1', 'Salzburg', 'ons_per_res_pop', null), ('2015', 'AT004C1', 'Salzburg', 'beds_per_1000res_pop', null), ('2015', 'AT005C1', 'Innsbruck', 'ons', null), ('2015', 'AT005C1', 'Innsbruck', 'beds', null), ('2015', 'AT005C1', 'Innsbruck', 'ons_per_res_pop', null), ('2015', 'AT005C1', 'Innsbruck', 'beds_per_1000res_pop', null), ('2015', 'AT006C1', 'Klagenfurt', 'ons', null), ('2015', 'AT006C1', 'Klagenfurt', 'beds', null), ('2015', 'AT006C1', 'Klagenfurt', 'ons_per_res_pop', null), ('2015', 'AT006C1', 'Klagenfurt', 'beds_per_1000res_pop', null), ('2015', 'PL', 'Poland', 'ons', null), ('2015', 'PL', 'Poland', 'beds', null), ('2015', 'PL', 'Poland', 'ons_per_res_pop', null), ('2015', 'PL', 'Poland', 'beds_per_1000res_pop', null), ('2015', 'PL001C1', 'Warszawa', 'ons', null), ('2015', 'PL001C1', 'Warszawa', 'beds', null), ('2015', 'PL001C1', 'Warszawa', 'ons_per_res_pop', null), ('2015', 'PL001C1', 'Warszawa', 'beds_per_1000res_pop', null), ('2015', 'PL002C1', 'Lódz', 'ons', null), ('2015', 'PL002C1', 'Lódz', 'beds', null), ('2015', 'PL002C1', 'Lódz', 'ons_per_res_pop', null), ('2015', 'PL002C1', 'Lódz', 'beds_per_1000res_pop', null), ('2015', 'PL003C1', 'Kraków', 'ons', null), ('2015', 'PL003C1', 'Kraków', 'beds', null), ('2015', 'PL003C1', 'Kraków', 'ons_per_res_pop', null), ('2015', 'PL003C1', 'Kraków', 'beds_per_1000res_pop', null), ('2015', 'PL004C1', 'Wroclaw', 'ons', null), ('2015', 'PL004C1', 'Wroclaw', 'beds', null), ('2015', 'PL004C1', 'Wroclaw', 'ons_per_res_pop', null), ('2015', 'PL004C1', 'Wroclaw', 'beds_per_1000res_pop', null), ('2015', 'PL005C1', 'Poznan', 'ons', null), ('2015', 'PL005C1', 'Poznan', 'beds', null), ('2015', 'PL005C1', 'Poznan', 'ons_per_res_pop', null), ('2015', 'PL005C1', 'Poznan', 'beds_per_1000res_pop', null), ('2015', 'PL006C1', 'Gdansk', 'ons', null), ('2015', 'PL006C1', 'Gdansk', 'beds', null), ('2015', 'PL006C1', 'Gdansk', 'ons_per_res_pop', null), ('2015', 'PL006C1', 'Gdansk', 'beds_per_1000res_pop', null), ('2015', 'PL007C1', 'Szczecin', 'ons', null), ('2015', 'PL007C1', 'Szczecin', 'beds', null), ('2015', 'PL007C1', 'Szczecin', 'ons_per_res_pop', null), ('2015', 'PL007C1', 'Szczecin', 'beds_per_1000res_pop', null), ('2015', 'PL008C1', 'Bydgoszcz', 'ons', null), ('2015', 'PL008C1', 'Bydgoszcz', 'beds', null), ('2015', 'PL008C1', 'Bydgoszcz', 'ons_per_res_pop', null), ('2015', 'PL008C1', 'Bydgoszcz', 'beds_per_1000res_pop', null), ('2015', 'PL009C1', 'Lublin', 'ons', null), ('2015', 'PL009C1', 'Lublin', 'beds', null), ('2015', 'PL009C1', 'Lublin', 'ons_per_res_pop', null), ('2015', 'PL009C1', 'Lublin', 'beds_per_1000res_pop', null), ('2015', 'PL010C1', 'Katowice', 'ons', null), ('2015', 'PL010C1', 'Katowice', 'beds', null), ('2015', 'PL010C1', 'Katowice', 'ons_per_res_pop', null), ('2015', 'PL010C1', 'Katowice', 'beds_per_1000res_pop', null), ('2015', 'PL011C1', 'Bialystok', 'ons', null), ('2015', 'PL011C1', 'Bialystok', 'beds', null), ('2015', 'PL011C1', 'Bialystok', 'ons_per_res_pop', null), ('2015', 'PL011C1', 'Bialystok', 'beds_per_1000res_pop', null), ('2015', 'PL012C1', 'Kielce', 'ons', null), ('2015', 'PL012C1', 'Kielce', 'beds', null), ('2015', 'PL012C1', 'Kielce', 'ons_per_res_pop', null), ('2015', 'PL012C1', 'Kielce', 'beds_per_1000res_pop', null), ('2015', 'PL013C1', 'Torun', 'ons', null), ('2015', 'PL013C1', 'Torun', 'beds', null), ('2015', 'PL013C1', 'Torun', 'ons_per_res_pop', null), ('2015', 'PL013C1', 'Torun', 'beds_per_1000res_pop', null), ('2015', 'PL014C1', 'Olsztyn', 'ons', null), ('2015', 'PL014C1', 'Olsztyn', 'beds', null), ('2015', 'PL014C1', 'Olsztyn', 'ons_per_res_pop', null), ('2015', 'PL014C1', 'Olsztyn', 'beds_per_1000res_pop', null), ('2015', 'PL015C1', 'Rzeszów', 'ons', null), ('2015', 'PL015C1', 'Rzeszów', 'beds', null), ('2015', 'PL015C1', 'Rzeszów', 'ons_per_res_pop', null), ('2015', 'PL015C1', 'Rzeszów', 'beds_per_1000res_pop', null), ('2015', 'PL016C1', 'Opole', 'ons', null), ('2015', 'PL016C1', 'Opole', 'beds', null), ('2015', 'PL016C1', 'Opole', 'ons_per_res_pop', null), ('2015', 'PL016C1', 'Opole', 'beds_per_1000res_pop', null), ('2015', 'PL017C1', 'Gorzów Wielkopolski', 'ons', null), ('2015', 'PL017C1', 'Gorzów Wielkopolski', 'beds', null), ('2015', 'PL017C1', 'Gorzów Wielkopolski', 'ons_per_res_pop', null), ('2015', 'PL017C1', 'Gorzów Wielkopolski', 'beds_per_1000res_pop', null), ('2015', 'PL018C1', 'Zielona Góra', 'ons', null), ('2015', 'PL018C1', 'Zielona Góra', 'beds', null), ('2015', 'PL018C1', 'Zielona Góra', 'ons_per_res_pop', null), ('2015', 'PL018C1', 'Zielona Góra', 'beds_per_1000res_pop', null), ('2015', 'PL019C1', 'Jelenia Góra', 'ons', null), ('2015', 'PL019C1', 'Jelenia Góra', 'beds', null), ('2015', 'PL019C1', 'Jelenia Góra', 'ons_per_res_pop', null), ('2015', 'PL019C1', 'Jelenia Góra', 'beds_per_1000res_pop', null), ('2015', 'PL020C1', 'Nowy Sacz', 'ons', null), ('2015', 'PL020C1', 'Nowy Sacz', 'beds', null), ('2015', 'PL020C1', 'Nowy Sacz', 'ons_per_res_pop', null), ('2015', 'PL020C1', 'Nowy Sacz', 'beds_per_1000res_pop', null), ('2015', 'PL021C1', 'Suwalki', 'ons', null), ('2015', 'PL021C1', 'Suwalki', 'beds', null), ('2015', 'PL021C1', 'Suwalki', 'ons_per_res_pop', null), ('2015', 'PL021C1', 'Suwalki', 'beds_per_1000res_pop', null), ('2015', 'PL022C1', 'Konin', 'ons', null), ('2015', 'PL022C1', 'Konin', 'beds', null), ('2015', 'PL022C1', 'Konin', 'ons_per_res_pop', null), ('2015', 'PL022C1', 'Konin', 'beds_per_1000res_pop', null), ('2015', 'PL023C1', 'Zory', 'ons', null), ('2015', 'PL023C1', 'Zory', 'beds', null), ('2015', 'PL023C1', 'Zory', 'ons_per_res_pop', null), ('2015', 'PL023C1', 'Zory', 'beds_per_1000res_pop', null), ('2015', 'PL024C1', 'Czestochowa', 'ons', null), ('2015', 'PL024C1', 'Czestochowa', 'beds', null), ('2015', 'PL024C1', 'Czestochowa', 'ons_per_res_pop', null), ('2015', 'PL024C1', 'Czestochowa', 'beds_per_1000res_pop', null), ('2015', 'PL025C1', 'Radom', 'ons', null), ('2015', 'PL025C1', 'Radom', 'beds', null), ('2015', 'PL025C1', 'Radom', 'ons_per_res_pop', null), ('2015', 'PL025C1', 'Radom', 'beds_per_1000res_pop', null), ('2015', 'PL026C1', 'Plock', 'ons', null), ('2015', 'PL026C1', 'Plock', 'beds', null), ('2015', 'PL026C1', 'Plock', 'ons_per_res_pop', null), ('2015', 'PL026C1', 'Plock', 'beds_per_1000res_pop', null), ('2015', 'PL027C1', 'Kalisz', 'ons', null), ('2015', 'PL027C1', 'Kalisz', 'beds', null), ('2015', 'PL027C1', 'Kalisz', 'ons_per_res_pop', null), ('2015', 'PL027C1', 'Kalisz', 'beds_per_1000res_pop', null), ('2015', 'PL028C1', 'Koszalin', 'ons', null), ('2015', 'PL028C1', 'Koszalin', 'beds', null), ('2015', 'PL028C1', 'Koszalin', 'ons_per_res_pop', null), ('2015', 'PL028C1', 'Koszalin', 'beds_per_1000res_pop', null), ('2015', 'PL029C1', 'Slupsk', 'ons', null), ('2015', 'PL029C1', 'Slupsk', 'beds', null), ('2015', 'PL029C1', 'Slupsk', 'ons_per_res_pop', null), ('2015', 'PL029C1', 'Slupsk', 'beds_per_1000res_pop', null), ('2015', 'PL030C1', 'Jastrzebie-Zdrój', 'ons', null), ('2015', 'PL030C1', 'Jastrzebie-Zdrój', 'beds', null), ('2015', 'PL030C1', 'Jastrzebie-Zdrój', 'ons_per_res_pop', null), ('2015', 'PL030C1', 'Jastrzebie-Zdrój', 'beds_per_1000res_pop', null), ('2015', 'PL031C1', 'Siedlce', 'ons', null), ('2015', 'PL031C1', 'Siedlce', 'beds', null), ('2015', 'PL031C1', 'Siedlce', 'ons_per_res_pop', null), ('2015', 'PL031C1', 'Siedlce', 'beds_per_1000res_pop', null), ('2015', 'PL032C1', 'Piotrków Trybunalski', 'ons', null), ('2015', 'PL032C1', 'Piotrków Trybunalski', 'beds', null), ('2015', 'PL032C1', 'Piotrków Trybunalski', 'ons_per_res_pop', null), ('2015', 'PL032C1', 'Piotrków Trybunalski', 'beds_per_1000res_pop', null), ('2015', 'PL033C1', 'Lubin', 'ons', null), ('2015', 'PL033C1', 'Lubin', 'beds', null), ('2015', 'PL033C1', 'Lubin', 'ons_per_res_pop', null), ('2015', 'PL033C1', 'Lubin', 'beds_per_1000res_pop', null), ('2015', 'PL034C1', 'Pila', 'ons', null), ('2015', 'PL034C1', 'Pila', 'beds', null), ('2015', 'PL034C1', 'Pila', 'ons_per_res_pop', null), ('2015', 'PL034C1', 'Pila', 'beds_per_1000res_pop', null), ('2015', 'PL035C1', 'Inowroclaw', 'ons', null), ('2015', 'PL035C1', 'Inowroclaw', 'beds', null), ('2015', 'PL035C1', 'Inowroclaw', 'ons_per_res_pop', null), ('2015', 'PL035C1', 'Inowroclaw', 'beds_per_1000res_pop', null), ('2015', 'PL036C1', 'Ostrowiec Swietokrzyski', 'ons', null), ('2015', 'PL036C1', 'Ostrowiec Swietokrzyski', 'beds', null), ('2015', 'PL036C1', 'Ostrowiec Swietokrzyski', 'ons_per_res_pop', null), ('2015', 'PL036C1', 'Ostrowiec Swietokrzyski', 'beds_per_1000res_pop', null), ('2015', 'PL037C1', 'Gniezno', 'ons', null), ('2015', 'PL037C1', 'Gniezno', 'beds', null), ('2015', 'PL037C1', 'Gniezno', 'ons_per_res_pop', null), ('2015', 'PL037C1', 'Gniezno', 'beds_per_1000res_pop', null), ('2015', 'PL038C1', 'Stargard Szczecinski', 'ons', null), ('2015', 'PL038C1', 'Stargard Szczecinski', 'beds', null), ('2015', 'PL038C1', 'Stargard Szczecinski', 'ons_per_res_pop', null), ('2015', 'PL038C1', 'Stargard Szczecinski', 'beds_per_1000res_pop', null), ('2015', 'PL039C1', 'Ostrów Wielkopolski', 'ons', null), ('2015', 'PL039C1', 'Ostrów Wielkopolski', 'beds', null), ('2015', 'PL039C1', 'Ostrów Wielkopolski', 'ons_per_res_pop', null), ('2015', 'PL039C1', 'Ostrów Wielkopolski', 'beds_per_1000res_pop', null), ('2015', 'PL040C1', 'Przemysl', 'ons', null), ('2015', 'PL040C1', 'Przemysl', 'beds', null), ('2015', 'PL040C1', 'Przemysl', 'ons_per_res_pop', null), ('2015', 'PL040C1', 'Przemysl', 'beds_per_1000res_pop', null), ('2015', 'PL041C1', 'Zamosc', 'ons', null), ('2015', 'PL041C1', 'Zamosc', 'beds', null), ('2015', 'PL041C1', 'Zamosc', 'ons_per_res_pop', null), ('2015', 'PL041C1', 'Zamosc', 'beds_per_1000res_pop', null), ('2015', 'PL042C1', 'Chelm', 'ons', null), ('2015', 'PL042C1', 'Chelm', 'beds', null), ('2015', 'PL042C1', 'Chelm', 'ons_per_res_pop', null), ('2015', 'PL042C1', 'Chelm', 'beds_per_1000res_pop', null), ('2015', 'PL043C1', 'Pabianice', 'ons', null), ('2015', 'PL043C1', 'Pabianice', 'beds', null), ('2015', 'PL043C1', 'Pabianice', 'ons_per_res_pop', null), ('2015', 'PL043C1', 'Pabianice', 'beds_per_1000res_pop', null), ('2015', 'PL044C1', 'Glogów', 'ons', null), ('2015', 'PL044C1', 'Glogów', 'beds', null), ('2015', 'PL044C1', 'Glogów', 'ons_per_res_pop', null), ('2015', 'PL044C1', 'Glogów', 'beds_per_1000res_pop', null), ('2015', 'PL045C1', 'Stalowa Wola', 'ons', null), ('2015', 'PL045C1', 'Stalowa Wola', 'beds', null), ('2015', 'PL045C1', 'Stalowa Wola', 'ons_per_res_pop', null), ('2015', 'PL045C1', 'Stalowa Wola', 'beds_per_1000res_pop', null), ('2015', 'PL046C1', 'Tomaszów Mazowiecki', 'ons', null), ('2015', 'PL046C1', 'Tomaszów Mazowiecki', 'beds', null), ('2015', 'PL046C1', 'Tomaszów Mazowiecki', 'ons_per_res_pop', null), ('2015', 'PL046C1', 'Tomaszów Mazowiecki', 'beds_per_1000res_pop', null), ('2015', 'PL047C1', 'Lomza', 'ons', null), ('2015', 'PL047C1', 'Lomza', 'beds', null), ('2015', 'PL047C1', 'Lomza', 'ons_per_res_pop', null), ('2015', 'PL047C1', 'Lomza', 'beds_per_1000res_pop', null), ('2015', 'PL048C1', 'Leszno', 'ons', null), ('2015', 'PL048C1', 'Leszno', 'beds', null), ('2015', 'PL048C1', 'Leszno', 'ons_per_res_pop', null), ('2015', 'PL048C1', 'Leszno', 'beds_per_1000res_pop', null), ('2015', 'PL049C1', 'Swidnica', 'ons', null), ('2015', 'PL049C1', 'Swidnica', 'beds', null), ('2015', 'PL049C1', 'Swidnica', 'ons_per_res_pop', null), ('2015', 'PL049C1', 'Swidnica', 'beds_per_1000res_pop', null), ('2015', 'PL050C1', 'Zgierz', 'ons', null), ('2015', 'PL050C1', 'Zgierz', 'beds', null), ('2015', 'PL050C1', 'Zgierz', 'ons_per_res_pop', null), ('2015', 'PL050C1', 'Zgierz', 'beds_per_1000res_pop', null), ('2015', 'PL051C1', 'Tczew', 'ons', null), ('2015', 'PL051C1', 'Tczew', 'beds', null), ('2015', 'PL051C1', 'Tczew', 'ons_per_res_pop', null), ('2015', 'PL051C1', 'Tczew', 'beds_per_1000res_pop', null), ('2015', 'PL052C1', 'Elk', 'ons', null), ('2015', 'PL052C1', 'Elk', 'beds', null), ('2015', 'PL052C1', 'Elk', 'ons_per_res_pop', null), ('2015', 'PL052C1', 'Elk', 'beds_per_1000res_pop', null), ('2015', 'PL501C1', 'Gdynia', 'ons', null), ('2015', 'PL501C1', 'Gdynia', 'beds', null), ('2015', 'PL501C1', 'Gdynia', 'ons_per_res_pop', null), ('2015', 'PL501C1', 'Gdynia', 'beds_per_1000res_pop', null), ('2015', 'PL502C1', 'Sosnowiec', 'ons', null), ('2015', 'PL502C1', 'Sosnowiec', 'beds', null), ('2015', 'PL502C1', 'Sosnowiec', 'ons_per_res_pop', null), ('2015', 'PL502C1', 'Sosnowiec', 'beds_per_1000res_pop', null), ('2015', 'PL503C1', 'Gliwice', 'ons', null), ('2015', 'PL503C1', 'Gliwice', 'beds', null), ('2015', 'PL503C1', 'Gliwice', 'ons_per_res_pop', null), ('2015', 'PL503C1', 'Gliwice', 'beds_per_1000res_pop', null), ('2015', 'PL504C1', 'Zabrze', 'ons', null), ('2015', 'PL504C1', 'Zabrze', 'beds', null), ('2015', 'PL504C1', 'Zabrze', 'ons_per_res_pop', null), ('2015', 'PL504C1', 'Zabrze', 'beds_per_1000res_pop', null), ('2015', 'PL505C1', 'Bytom', 'ons', null), ('2015', 'PL505C1', 'Bytom', 'beds', null), ('2015', 'PL505C1', 'Bytom', 'ons_per_res_pop', null), ('2015', 'PL505C1', 'Bytom', 'beds_per_1000res_pop', null), ('2015', 'PL506C1', 'Bielsko-Biala', 'ons', null), ('2015', 'PL506C1', 'Bielsko-Biala', 'beds', null), ('2015', 'PL506C1', 'Bielsko-Biala', 'ons_per_res_pop', null), ('2015', 'PL506C1', 'Bielsko-Biala', 'beds_per_1000res_pop', null), ('2015', 'PL507C1', 'Ruda Slaska', 'ons', null), ('2015', 'PL507C1', 'Ruda Slaska', 'beds', null), ('2015', 'PL507C1', 'Ruda Slaska', 'ons_per_res_pop', null), ('2015', 'PL507C1', 'Ruda Slaska', 'beds_per_1000res_pop', null), ('2015', 'PL508C1', 'Rybnik', 'ons', null), ('2015', 'PL508C1', 'Rybnik', 'beds', null), ('2015', 'PL508C1', 'Rybnik', 'ons_per_res_pop', null), ('2015', 'PL508C1', 'Rybnik', 'beds_per_1000res_pop', null), ('2015', 'PL509C1', 'Tychy', 'ons', null), ('2015', 'PL509C1', 'Tychy', 'beds', null), ('2015', 'PL509C1', 'Tychy', 'ons_per_res_pop', null), ('2015', 'PL509C1', 'Tychy', 'beds_per_1000res_pop', null), ('2015', 'PL511C1', 'Walbrzych', 'ons', null), ('2015', 'PL511C1', 'Walbrzych', 'beds', null), ('2015', 'PL511C1', 'Walbrzych', 'ons_per_res_pop', null), ('2015', 'PL511C1', 'Walbrzych', 'beds_per_1000res_pop', null), ('2015', 'PL512C1', 'Elblag', 'ons', null), ('2015', 'PL512C1', 'Elblag', 'beds', null), ('2015', 'PL512C1', 'Elblag', 'ons_per_res_pop', null), ('2015', 'PL512C1', 'Elblag', 'beds_per_1000res_pop', null), ('2015', 'PL513C1', 'Wloclawek', 'ons', null), ('2015', 'PL513C1', 'Wloclawek', 'beds', null), ('2015', 'PL513C1', 'Wloclawek', 'ons_per_res_pop', null), ('2015', 'PL513C1', 'Wloclawek', 'beds_per_1000res_pop', null), ('2015', 'PL514C1', 'Tarnów', 'ons', null), ('2015', 'PL514C1', 'Tarnów', 'beds', null), ('2015', 'PL514C1', 'Tarnów', 'ons_per_res_pop', null), ('2015', 'PL514C1', 'Tarnów', 'beds_per_1000res_pop', null), ('2015', 'PL515C1', 'Chorzów', 'ons', null), ('2015', 'PL515C1', 'Chorzów', 'beds', null), ('2015', 'PL515C1', 'Chorzów', 'ons_per_res_pop', null), ('2015', 'PL515C1', 'Chorzów', 'beds_per_1000res_pop', null), ('2015', 'PL516C1', 'Legnica', 'ons', null), ('2015', 'PL516C1', 'Legnica', 'beds', null), ('2015', 'PL516C1', 'Legnica', 'ons_per_res_pop', null), ('2015', 'PL516C1', 'Legnica', 'beds_per_1000res_pop', null), ('2015', 'PL517C1', 'Grudziadz', 'ons', null), ('2015', 'PL517C1', 'Grudziadz', 'beds', null), ('2015', 'PL517C1', 'Grudziadz', 'ons_per_res_pop', null), ('2015', 'PL517C1', 'Grudziadz', 'beds_per_1000res_pop', null), ('2015', 'PT', 'Portugal', 'ons', '53074176'), ('2015', 'PT', 'Portugal', 'beds', '362005'), ('2015', 'PT', 'Portugal', 'ons_per_res_pop', '5.1'), ('2015', 'PT', 'Portugal', 'beds_per_1000res_pop', '34.9'), ('2015', 'PT001C1', 'Lisboa', 'ons', '9999851'), ('2015', 'PT001C1', 'Lisboa', 'beds', '47627'), ('2015', 'PT001C1', 'Lisboa', 'ons_per_res_pop', '19.6'), ('2015', 'PT001C1', 'Lisboa', 'beds_per_1000res_pop', '93.5'), ('2015', 'PT002C1', 'Porto', 'ons', '2879833'), ('2015', 'PT002C1', 'Porto', 'beds', '15041'), ('2015', 'PT002C1', 'Porto', 'ons_per_res_pop', '13.2'), ('2015', 'PT002C1', 'Porto', 'beds_per_1000res_pop', '68.9'), ('2015', 'PT003C1', 'Braga', 'ons', '412617'), ('2015', 'PT003C1', 'Braga', 'beds', '3009'), ('2015', 'PT003C1', 'Braga', 'ons_per_res_pop', '2.3'), ('2015', 'PT003C1', 'Braga', 'beds_per_1000res_pop', '16.6'), ('2015', 'PT004C1', 'Funchal', 'ons', '4745311'), ('2015', 'PT004C1', 'Funchal', 'beds', '19453'), ('2015', 'PT004C1', 'Funchal', 'ons_per_res_pop', '44.5'), ('2015', 'PT004C1', 'Funchal', 'beds_per_1000res_pop', '182.3'), ('2015', 'PT005C1', 'Coimbra', 'ons', '526235'), ('2015', 'PT005C1', 'Coimbra', 'beds', '3372'), ('2015', 'PT005C1', 'Coimbra', 'ons_per_res_pop', '3.9'), ('2015', 'PT005C1', 'Coimbra', 'beds_per_1000res_pop', '24.9'), ('2015', 'PT006C1', 'Setúbal', 'ons', '264269'), ('2015', 'PT006C1', 'Setúbal', 'beds', '2094'), ('2015', 'PT006C1', 'Setúbal', 'ons_per_res_pop', '2.2'), ('2015', 'PT006C1', 'Setúbal', 'beds_per_1000res_pop', '17.7'), ('2015', 'PT007C1', 'Ponta Delgada', 'ons', '757947'), ('2015', 'PT007C1', 'Ponta Delgada', 'beds', '4051'), ('2015', 'PT007C1', 'Ponta Delgada', 'ons_per_res_pop', '11.1'), ('2015', 'PT007C1', 'Ponta Delgada', 'beds_per_1000res_pop', '59.1'), ('2015', 'PT008C1', 'Aveiro', 'ons', '278438'), ('2015', 'PT008C1', 'Aveiro', 'beds', '1681'), ('2015', 'PT008C1', 'Aveiro', 'ons_per_res_pop', '3.6'), ('2015', 'PT008C1', 'Aveiro', 'beds_per_1000res_pop', '21.8'), ('2015', 'PT009C1', 'Faro', 'ons', '351287'), ('2015', 'PT009C1', 'Faro', 'beds', '2367'), ('2015', 'PT009C1', 'Faro', 'ons_per_res_pop', '5.7'), ('2015', 'PT009C1', 'Faro', 'beds_per_1000res_pop', '38.7'), ('2015', 'PT010C1', 'Seixal', 'ons', null), ('2015', 'PT010C1', 'Seixal', 'beds', null), ('2015', 'PT010C1', 'Seixal', 'ons_per_res_pop', null), ('2015', 'PT010C1', 'Seixal', 'beds_per_1000res_pop', null), ('2015', 'PT011C1', 'Amadora', 'ons', '103061'), ('2015', 'PT011C1', 'Amadora', 'beds', '644'), ('2015', 'PT011C1', 'Amadora', 'ons_per_res_pop', '0.6'), ('2015', 'PT011C1', 'Amadora', 'beds_per_1000res_pop', '3.7'), ('2015', 'PT012C1', 'Almada', 'ons', '327756'), ('2015', 'PT012C1', 'Almada', 'beds', '1980'), ('2015', 'PT012C1', 'Almada', 'ons_per_res_pop', '1.9'), ('2015', 'PT012C1', 'Almada', 'beds_per_1000res_pop', '11.6'), ('2015', 'PT013C1', 'Odivelas', 'ons', '904'), ('2015', 'PT013C1', 'Odivelas', 'beds', '10'), ('2015', 'PT013C1', 'Odivelas', 'ons_per_res_pop', '0'), ('2015', 'PT013C1', 'Odivelas', 'beds_per_1000res_pop', '0.1'), ('2015', 'PT014C1', 'Viseu', 'ons', '146943'), ('2015', 'PT014C1', 'Viseu', 'beds', '1728'), ('2015', 'PT014C1', 'Viseu', 'ons_per_res_pop', '1.5'), ('2015', 'PT014C1', 'Viseu', 'beds_per_1000res_pop', '17.6'), ('2015', 'PT015C1', 'Valongo', 'ons', '82067'), ('2015', 'PT015C1', 'Valongo', 'beds', '431'), ('2015', 'PT015C1', 'Valongo', 'ons_per_res_pop', '0.9'), ('2015', 'PT015C1', 'Valongo', 'beds_per_1000res_pop', '4.5'), ('2015', 'PT016C1', 'Viana do Castelo', 'ons', '158831'), ('2015', 'PT016C1', 'Viana do Castelo', 'beds', '1697'), ('2015', 'PT016C1', 'Viana do Castelo', 'ons_per_res_pop', '1.8'), ('2015', 'PT016C1', 'Viana do Castelo', 'beds_per_1000res_pop', '19.6'), ('2015', 'PT017C1', 'Paredes', 'ons', '39588'), ('2015', 'PT017C1', 'Paredes', 'beds', '388'), ('2015', 'PT017C1', 'Paredes', 'ons_per_res_pop', '0.5'), ('2015', 'PT017C1', 'Paredes', 'beds_per_1000res_pop', '4.5'), ('2015', 'PT018C1', 'Barreiro', 'ons', null), ('2015', 'PT018C1', 'Barreiro', 'beds', null), ('2015', 'PT018C1', 'Barreiro', 'ons_per_res_pop', null), ('2015', 'PT018C1', 'Barreiro', 'beds_per_1000res_pop', null), ('2015', 'PT019C1', 'Póvoa de Varzim', 'ons', '162919'), ('2015', 'PT019C1', 'Póvoa de Varzim', 'beds', '1712'), ('2015', 'PT019C1', 'Póvoa de Varzim', 'ons_per_res_pop', '2.6'), ('2015', 'PT019C1', 'Póvoa de Varzim', 'beds_per_1000res_pop', '27.3'), ('2015', 'PT501C1', 'Sintra', 'ons', '405710'), ('2015', 'PT501C1', 'Sintra', 'beds', '2456'), ('2015', 'PT501C1', 'Sintra', 'ons_per_res_pop', '1.1'), ('2015', 'PT501C1', 'Sintra', 'beds_per_1000res_pop', '6.4'), ('2015', 'PT502C1', 'Vila Nova de Gaia', 'ons', '564340'), ('2015', 'PT502C1', 'Vila Nova de Gaia', 'beds', '3005'), ('2015', 'PT502C1', 'Vila Nova de Gaia', 'ons_per_res_pop', '1.9'), ('2015', 'PT502C1', 'Vila Nova de Gaia', 'beds_per_1000res_pop', '10'), ('2015', 'PT503C1', 'Matosinhos', 'ons', '344839'), ('2015', 'PT503C1', 'Matosinhos', 'beds', '1728'), ('2015', 'PT503C1', 'Matosinhos', 'ons_per_res_pop', '2'), ('2015', 'PT503C1', 'Matosinhos', 'beds_per_1000res_pop', '9.9'), ('2015', 'PT504C1', 'Gondomar', 'ons', '7173'), ('2015', 'PT504C1', 'Gondomar', 'beds', '108'), ('2015', 'PT504C1', 'Gondomar', 'ons_per_res_pop', '0'), ('2015', 'PT504C1', 'Gondomar', 'beds_per_1000res_pop', '0.6'), ('2015', 'PT505C1', 'Guimarães', 'ons', '222534'), ('2015', 'PT505C1', 'Guimarães', 'beds', '1983'), ('2015', 'PT505C1', 'Guimarães', 'ons_per_res_pop', '1.4'), ('2015', 'PT505C1', 'Guimarães', 'beds_per_1000res_pop', '12.8'), ('2015', 'PT508C1', 'Vila Franca de Xira', 'ons', '49624'), ('2015', 'PT508C1', 'Vila Franca de Xira', 'beds', '303'), ('2015', 'PT508C1', 'Vila Franca de Xira', 'ons_per_res_pop', '0.4'), ('2015', 'PT508C1', 'Vila Franca de Xira', 'beds_per_1000res_pop', '2.2'), ('2015', 'RO', 'Romania', 'ons', '23519340'), ('2015', 'RO', 'Romania', 'beds', '328313'), ('2015', 'RO', 'Romania', 'ons_per_res_pop', '1.1'), ('2015', 'RO', 'Romania', 'beds_per_1000res_pop', '14.7'), ('2015', 'RO001C1', 'Bucuresti', 'ons', '2868091'), ('2015', 'RO001C1', 'Bucuresti', 'beds', '19784'), ('2015', 'RO001C1', 'Bucuresti', 'ons_per_res_pop', '1.4'), ('2015', 'RO001C1', 'Bucuresti', 'beds_per_1000res_pop', '9.4'), ('2015', 'RO002C1', 'Cluj-Napoca', 'ons', '608620'), ('2015', 'RO002C1', 'Cluj-Napoca', 'beds', '4957'), ('2015', 'RO002C1', 'Cluj-Napoca', 'ons_per_res_pop', '1.9'), ('2015', 'RO002C1', 'Cluj-Napoca', 'beds_per_1000res_pop', '15.4'), ('2015', 'RO003C1', 'Timisoara', 'ons', '577717'), ('2015', 'RO003C1', 'Timisoara', 'beds', '5277'), ('2015', 'RO003C1', 'Timisoara', 'ons_per_res_pop', '1.7'), ('2015', 'RO003C1', 'Timisoara', 'beds_per_1000res_pop', '15.8'), ('2015', 'RO004C1', 'Craiova', 'ons', '143900'), ('2015', 'RO004C1', 'Craiova', 'beds', '1686'), ('2015', 'RO004C1', 'Craiova', 'ons_per_res_pop', '0.5'), ('2015', 'RO004C1', 'Craiova', 'beds_per_1000res_pop', '5.5'), ('2015', 'RO005C1', 'Braila', 'ons', '204972'), ('2015', 'RO005C1', 'Braila', 'beds', '2160'), ('2015', 'RO005C1', 'Braila', 'ons_per_res_pop', '1'), ('2015', 'RO005C1', 'Braila', 'beds_per_1000res_pop', '10.3'), ('2015', 'RO006C1', 'Oradea', 'ons', '360432'), ('2015', 'RO006C1', 'Oradea', 'beds', '2514'), ('2015', 'RO006C1', 'Oradea', 'ons_per_res_pop', '1.6'), ('2015', 'RO006C1', 'Oradea', 'beds_per_1000res_pop', '11.3'), ('2015', 'RO007C1', 'Bacau', 'ons', '82332'), ('2015', 'RO007C1', 'Bacau', 'beds', '940'), ('2015', 'RO007C1', 'Bacau', 'ons_per_res_pop', '0.4'), ('2015', 'RO007C1', 'Bacau', 'beds_per_1000res_pop', '4.8'), ('2015', 'RO008C1', 'Arad', 'ons', '242462'), ('2015', 'RO008C1', 'Arad', 'beds', '3000'), ('2015', 'RO008C1', 'Arad', 'ons_per_res_pop', '1.4'), ('2015', 'RO008C1', 'Arad', 'beds_per_1000res_pop', '16.7'), ('2015', 'RO009C1', 'Sibiu', 'ons', '520222'), ('2015', 'RO009C1', 'Sibiu', 'beds', '5562'), ('2015', 'RO009C1', 'Sibiu', 'ons_per_res_pop', '3.1'), ('2015', 'RO009C1', 'Sibiu', 'beds_per_1000res_pop', '32.7'), ('2015', 'RO010C1', 'Târgu Mures', 'ons', '307456'), ('2015', 'RO010C1', 'Târgu Mures', 'beds', '2606'), ('2015', 'RO010C1', 'Târgu Mures', 'ons_per_res_pop', '2'), ('2015', 'RO010C1', 'Târgu Mures', 'beds_per_1000res_pop', '17.3'), ('2015', 'RO011C1', 'Piatra Neamt', 'ons', '77745'), ('2015', 'RO011C1', 'Piatra Neamt', 'beds', '1063'), ('2015', 'RO011C1', 'Piatra Neamt', 'ons_per_res_pop', '0.7'), ('2015', 'RO011C1', 'Piatra Neamt', 'beds_per_1000res_pop', '9.2'), ('2015', 'RO012C1', 'Calarasi', 'ons', '30767'), ('2015', 'RO012C1', 'Calarasi', 'beds', '722'), ('2015', 'RO012C1', 'Calarasi', 'ons_per_res_pop', '0.4'), ('2015', 'RO012C1', 'Calarasi', 'beds_per_1000res_pop', '9.3'), ('2015', 'RO013C1', 'Giurgiu', 'ons', '16148'), ('2015', 'RO013C1', 'Giurgiu', 'beds', '376'), ('2015', 'RO013C1', 'Giurgiu', 'ons_per_res_pop', '0.2'), ('2015', 'RO013C1', 'Giurgiu', 'beds_per_1000res_pop', '5.4'), ('2015', 'RO014C1', 'Alba Iulia', 'ons', '111446'), ('2015', 'RO014C1', 'Alba Iulia', 'beds', '1186'), ('2015', 'RO014C1', 'Alba Iulia', 'ons_per_res_pop', '1.5'), ('2015', 'RO014C1', 'Alba Iulia', 'beds_per_1000res_pop', '16'), ('2015', 'RO015C1', 'Focsani', 'ons', '33561'), ('2015', 'RO015C1', 'Focsani', 'beds', '503'), ('2015', 'RO015C1', 'Focsani', 'ons_per_res_pop', '0.4'), ('2015', 'RO015C1', 'Focsani', 'beds_per_1000res_pop', '5.3'), ('2015', 'RO016C1', 'Târgu Jiu', 'ons', '75828'), ('2015', 'RO016C1', 'Târgu Jiu', 'beds', '1058'), ('2015', 'RO016C1', 'Târgu Jiu', 'ons_per_res_pop', '0.8'), ('2015', 'RO016C1', 'Târgu Jiu', 'beds_per_1000res_pop', '10.9'), ('2015', 'RO017C1', 'Tulcea', 'ons', '81580'), ('2015', 'RO017C1', 'Tulcea', 'beds', '1290'), ('2015', 'RO017C1', 'Tulcea', 'ons_per_res_pop', '0.9'), ('2015', 'RO017C1', 'Tulcea', 'beds_per_1000res_pop', '14.4'), ('2015', 'RO018C1', 'Târgoviste', 'ons', '65548'), ('2015', 'RO018C1', 'Târgoviste', 'beds', '657'), ('2015', 'RO018C1', 'Târgoviste', 'ons_per_res_pop', '0.7'), ('2015', 'RO018C1', 'Târgoviste', 'beds_per_1000res_pop', '7'), ('2015', 'RO019C1', 'Slatina', 'ons', '51880'), ('2015', 'RO019C1', 'Slatina', 'beds', '469'), ('2015', 'RO019C1', 'Slatina', 'ons_per_res_pop', '0.6'), ('2015', 'RO019C1', 'Slatina', 'beds_per_1000res_pop', '5.5'), ('2015', 'RO020C1', 'Bârlad', 'ons', '11140'), ('2015', 'RO020C1', 'Bârlad', 'beds', '163'), ('2015', 'RO020C1', 'Bârlad', 'ons_per_res_pop', '0.2'), ('2015', 'RO020C1', 'Bârlad', 'beds_per_1000res_pop', '2.2'), ('2015', 'RO021C1', 'Roman', 'ons', '31942'), ('2015', 'RO021C1', 'Roman', 'beds', '338'), ('2015', 'RO021C1', 'Roman', 'ons_per_res_pop', '0.5'), ('2015', 'RO021C1', 'Roman', 'beds_per_1000res_pop', '4.8'), ('2015', 'RO022C1', 'Bistrita', 'ons', '115054'), ('2015', 'RO022C1', 'Bistrita', 'beds', '1141'), ('2015', 'RO022C1', 'Bistrita', 'ons_per_res_pop', '1.2'), ('2015', 'RO022C1', 'Bistrita', 'beds_per_1000res_pop', '12.2'), ('2015', 'RO501C1', 'Constanta', 'ons', '1699590'), ('2015', 'RO501C1', 'Constanta', 'beds', '24027'), ('2015', 'RO501C1', 'Constanta', 'ons_per_res_pop', '5.3'), ('2015', 'RO501C1', 'Constanta', 'beds_per_1000res_pop', '75.6'), ('2015', 'RO502C1', 'Iasi', 'ons', '410089'), ('2015', 'RO502C1', 'Iasi', 'beds', '3524'), ('2015', 'RO502C1', 'Iasi', 'ons_per_res_pop', '1.1'), ('2015', 'RO502C1', 'Iasi', 'beds_per_1000res_pop', '9.7'), ('2015', 'RO503C1', 'Galati', 'ons', '126759'), ('2015', 'RO503C1', 'Galati', 'beds', '1739'), ('2015', 'RO503C1', 'Galati', 'ons_per_res_pop', '0.4'), ('2015', 'RO503C1', 'Galati', 'beds_per_1000res_pop', '5.7'), ('2015', 'RO504C1', 'Brasov', 'ons', '1025947'), ('2015', 'RO504C1', 'Brasov', 'beds', '9982'), ('2015', 'RO504C1', 'Brasov', 'ons_per_res_pop', '3.5'), ('2015', 'RO504C1', 'Brasov', 'beds_per_1000res_pop', '34.3'), ('2015', 'RO505C1', 'Ploiesti', 'ons', '113212'), ('2015', 'RO505C1', 'Ploiesti', 'beds', '1702'), ('2015', 'RO505C1', 'Ploiesti', 'ons_per_res_pop', '0.5'), ('2015', 'RO505C1', 'Ploiesti', 'beds_per_1000res_pop', '7.3'), ('2015', 'RO506C1', 'Pitesti', 'ons', '122247'), ('2015', 'RO506C1', 'Pitesti', 'beds', '2346'), ('2015', 'RO506C1', 'Pitesti', 'ons_per_res_pop', '0.7'), ('2015', 'RO506C1', 'Pitesti', 'beds_per_1000res_pop', '13.3'), ('2015', 'RO507C1', 'Baia Mare', 'ons', '139003'), ('2015', 'RO507C1', 'Baia Mare', 'beds', '2096'), ('2015', 'RO507C1', 'Baia Mare', 'ons_per_res_pop', '0.9'), ('2015', 'RO507C1', 'Baia Mare', 'beds_per_1000res_pop', '14.2'), ('2015', 'RO508C1', 'Buzau', 'ons', '49870'), ('2015', 'RO508C1', 'Buzau', 'beds', '662'), ('2015', 'RO508C1', 'Buzau', 'ons_per_res_pop', '0.4'), ('2015', 'RO508C1', 'Buzau', 'beds_per_1000res_pop', '4.9'), ('2015', 'RO509C1', 'Satu Mare', 'ons', '91307'), ('2015', 'RO509C1', 'Satu Mare', 'beds', '980'), ('2015', 'RO509C1', 'Satu Mare', 'ons_per_res_pop', '0.7'), ('2015', 'RO509C1', 'Satu Mare', 'beds_per_1000res_pop', '8'), ('2015', 'RO510C1', 'Botosani', 'ons', '57775'), ('2015', 'RO510C1', 'Botosani', 'beds', '836'), ('2015', 'RO510C1', 'Botosani', 'ons_per_res_pop', '0.5'), ('2015', 'RO510C1', 'Botosani', 'beds_per_1000res_pop', '6.8'), ('2015', 'RO511C1', 'Râmnicu Vâlcea', 'ons', '82800'), ('2015', 'RO511C1', 'Râmnicu Vâlcea', 'beds', '1157'), ('2015', 'RO511C1', 'Râmnicu Vâlcea', 'ons_per_res_pop', '0.7'), ('2015', 'RO511C1', 'Râmnicu Vâlcea', 'beds_per_1000res_pop', '9.7'), ('2015', 'RO512C1', 'Suceava', 'ons', '170217'), ('2015', 'RO512C1', 'Suceava', 'beds', '1356'), ('2015', 'RO512C1', 'Suceava', 'ons_per_res_pop', '1.5'), ('2015', 'RO512C1', 'Suceava', 'beds_per_1000res_pop', '11.6'), ('2015', 'RO513C1', 'Drobeta-Turnu Severin', 'ons', '93685'), ('2015', 'RO513C1', 'Drobeta-Turnu Severin', 'beds', '1249'), ('2015', 'RO513C1', 'Drobeta-Turnu Severin', 'ons_per_res_pop', '0.9'), ('2015', 'RO513C1', 'Drobeta-Turnu Severin', 'beds_per_1000res_pop', '11.4'), ('2015', 'SI', 'Slovenia', 'ons', '10341699'), ('2015', 'SI', 'Slovenia', 'beds', '116453'), ('2015', 'SI', 'Slovenia', 'ons_per_res_pop', '5'), ('2015', 'SI', 'Slovenia', 'beds_per_1000res_pop', '56.5'), ('2015', 'SI001C1', 'Ljubljana', 'ons', '1186191'), ('2015', 'SI001C1', 'Ljubljana', 'beds', '9249'), ('2015', 'SI001C1', 'Ljubljana', 'ons_per_res_pop', '4.1'), ('2015', 'SI001C1', 'Ljubljana', 'beds_per_1000res_pop', '32.2'), ('2015', 'SI002C1', 'Maribor', 'ons', '285163'), ('2015', 'SI002C1', 'Maribor', 'beds', '3885'), ('2015', 'SI002C1', 'Maribor', 'ons_per_res_pop', '2.5'), ('2015', 'SI002C1', 'Maribor', 'beds_per_1000res_pop', '34.6'), ('2015', 'SK', 'Slovakia', 'ons', '12350080'), ('2015', 'SK', 'Slovakia', 'beds', '183445'), ('2015', 'SK', 'Slovakia', 'ons_per_res_pop', '2.3'), ('2015', 'SK', 'Slovakia', 'beds_per_1000res_pop', '33.8'), ('2015', 'SK001C1', 'Bratislava', 'ons', '2257218'), ('2015', 'SK001C1', 'Bratislava', 'beds', '18584'), ('2015', 'SK001C1', 'Bratislava', 'ons_per_res_pop', '5.4'), ('2015', 'SK001C1', 'Bratislava', 'beds_per_1000res_pop', '44.3'), ('2015', 'SK002C1', 'Kosice', 'ons', '305620'), ('2015', 'SK002C1', 'Kosice', 'beds', '4853'), ('2015', 'SK002C1', 'Kosice', 'ons_per_res_pop', '1.3'), ('2015', 'SK002C1', 'Kosice', 'beds_per_1000res_pop', '20.3'), ('2015', 'SK003C1', 'Banská Bystrica', 'ons', '73773'), ('2015', 'SK003C1', 'Banská Bystrica', 'beds', '1602'), ('2015', 'SK003C1', 'Banská Bystrica', 'ons_per_res_pop', '0.9'), ('2015', 'SK003C1', 'Banská Bystrica', 'beds_per_1000res_pop', '20.3'), ('2015', 'SK004C1', 'Nitra', 'ons', '166551'), ('2015', 'SK004C1', 'Nitra', 'beds', '2511'), ('2015', 'SK004C1', 'Nitra', 'ons_per_res_pop', '2.1'), ('2015', 'SK004C1', 'Nitra', 'beds_per_1000res_pop', '32.2'), ('2015', 'SK005C1', 'Presov', 'ons', '65944'), ('2015', 'SK005C1', 'Presov', 'beds', '1988'), ('2015', 'SK005C1', 'Presov', 'ons_per_res_pop', '0.7'), ('2015', 'SK005C1', 'Presov', 'beds_per_1000res_pop', '22'), ('2015', 'SK006C1', 'Zilina', 'ons', '204143'), ('2015', 'SK006C1', 'Zilina', 'beds', '2403'), ('2015', 'SK006C1', 'Zilina', 'ons_per_res_pop', '2.5'), ('2015', 'SK006C1', 'Zilina', 'beds_per_1000res_pop', '29.6'), ('2015', 'SK007C1', 'Trnava', 'ons', '161172'), ('2015', 'SK007C1', 'Trnava', 'beds', '1744'), ('2015', 'SK007C1', 'Trnava', 'ons_per_res_pop', '2.5'), ('2015', 'SK007C1', 'Trnava', 'beds_per_1000res_pop', '26.5'), ('2015', 'SK008C1', 'Trencín', 'ons', '88131'), ('2015', 'SK008C1', 'Trencín', 'beds', '1450'), ('2015', 'SK008C1', 'Trencín', 'ons_per_res_pop', '1.6'), ('2015', 'SK008C1', 'Trencín', 'beds_per_1000res_pop', '26'), ('2015', 'FI', 'Finland', 'ons', '19738123'), ('2015', 'FI', 'Finland', 'beds', '161280'), ('2015', 'FI', 'Finland', 'ons_per_res_pop', '3.6'), ('2015', 'FI', 'Finland', 'beds_per_1000res_pop', '29.5'), ('2015', 'FI001C2', 'Helsinki / Helsingfors', 'ons', '3461958'), ('2015', 'FI001C2', 'Helsinki / Helsingfors', 'beds', '17993'), ('2015', 'FI001C2', 'Helsinki / Helsingfors', 'ons_per_res_pop', '5.6'), ('2015', 'FI001C2', 'Helsinki / Helsingfors', 'beds_per_1000res_pop', '29'), ('2015', 'FI002C1', 'Tampere / Tammerfors', 'ons', '1021151'), ('2015', 'FI002C1', 'Tampere / Tammerfors', 'beds', '6606'), ('2015', 'FI002C1', 'Tampere / Tammerfors', 'ons_per_res_pop', '4.6'), ('2015', 'FI002C1', 'Tampere / Tammerfors', 'beds_per_1000res_pop', '29.6'), ('2015', 'FI003C1', 'Turku / Åbo', 'ons', '729309'), ('2015', 'FI003C1', 'Turku / Åbo', 'beds', '5040'), ('2015', 'FI003C1', 'Turku / Åbo', 'ons_per_res_pop', '4'), ('2015', 'FI003C1', 'Turku / Åbo', 'beds_per_1000res_pop', '27.4'), ('2015', 'FI004C3', 'Oulu', 'ons', '611690'), ('2015', 'FI004C3', 'Oulu', 'beds', '3241'), ('2015', 'FI004C3', 'Oulu', 'ons_per_res_pop', '3.1'), ('2015', 'FI004C3', 'Oulu', 'beds_per_1000res_pop', '16.5'), ('2015', 'FI005C1', 'Espoo / Esbo', 'ons', '382124'), ('2015', 'FI005C1', 'Espoo / Esbo', 'beds', '2597'), ('2015', 'FI005C1', 'Espoo / Esbo', 'ons_per_res_pop', '1.4'), ('2015', 'FI005C1', 'Espoo / Esbo', 'beds_per_1000res_pop', '9.8'), ('2015', 'FI006C1', 'Vantaa / Vanda', 'ons', '849725'), ('2015', 'FI006C1', 'Vantaa / Vanda', 'beds', '4027'), ('2015', 'FI006C1', 'Vantaa / Vanda', 'ons_per_res_pop', '4'), ('2015', 'FI006C1', 'Vantaa / Vanda', 'beds_per_1000res_pop', '19.1'), ('2015', 'FI007C2', 'Lahti / Lahtis', 'ons', '250811'), ('2015', 'FI007C2', 'Lahti / Lahtis', 'beds', '1845'), ('2015', 'FI007C2', 'Lahti / Lahtis', 'ons_per_res_pop', '2.1'), ('2015', 'FI007C2', 'Lahti / Lahtis', 'beds_per_1000res_pop', '15.6'), ('2015', 'FI008C3', 'Kuopio', 'ons', '526015'), ('2015', 'FI008C3', 'Kuopio', 'beds', '4150'), ('2015', 'FI008C3', 'Kuopio', 'ons_per_res_pop', '4.5'), ('2015', 'FI008C3', 'Kuopio', 'beds_per_1000res_pop', '35.7'), ('2015', 'FI009C1', 'Jyväskylä', 'ons', '430282'), ('2015', 'FI009C1', 'Jyväskylä', 'beds', '3328'), ('2015', 'FI009C1', 'Jyväskylä', 'ons_per_res_pop', '3.2'), ('2015', 'FI009C1', 'Jyväskylä', 'beds_per_1000res_pop', '24.5'), ('2015', 'SE', 'Sweden', 'ons', null), ('2015', 'SE', 'Sweden', 'beds', null), ('2015', 'SE', 'Sweden', 'ons_per_res_pop', null), ('2015', 'SE', 'Sweden', 'beds_per_1000res_pop', null), ('2015', 'SE001C1', 'Stockholm', 'ons', null), ('2015', 'SE001C1', 'Stockholm', 'beds', null), ('2015', 'SE001C1', 'Stockholm', 'ons_per_res_pop', null), ('2015', 'SE001C1', 'Stockholm', 'beds_per_1000res_pop', null), ('2015', 'SE002C1', 'Göteborg', 'ons', null), ('2015', 'SE002C1', 'Göteborg', 'beds', null), ('2015', 'SE002C1', 'Göteborg', 'ons_per_res_pop', null), ('2015', 'SE002C1', 'Göteborg', 'beds_per_1000res_pop', null), ('2015', 'SE003C1', 'Malmö', 'ons', null), ('2015', 'SE003C1', 'Malmö', 'beds', null), ('2015', 'SE003C1', 'Malmö', 'ons_per_res_pop', null), ('2015', 'SE003C1', 'Malmö', 'beds_per_1000res_pop', null), ('2015', 'SE004C1', 'Jönköping', 'ons', null), ('2015', 'SE004C1', 'Jönköping', 'beds', null), ('2015', 'SE004C1', 'Jönköping', 'ons_per_res_pop', null), ('2015', 'SE004C1', 'Jönköping', 'beds_per_1000res_pop', null), ('2015', 'SE005C1', 'Umeå', 'ons', null), ('2015', 'SE005C1', 'Umeå', 'beds', null), ('2015', 'SE005C1', 'Umeå', 'ons_per_res_pop', null), ('2015', 'SE005C1', 'Umeå', 'beds_per_1000res_pop', null), ('2015', 'SE006C1', 'Uppsala', 'ons', null), ('2015', 'SE006C1', 'Uppsala', 'beds', null), ('2015', 'SE006C1', 'Uppsala', 'ons_per_res_pop', null), ('2015', 'SE006C1', 'Uppsala', 'beds_per_1000res_pop', null), ('2015', 'SE007C1', 'Linköping', 'ons', null), ('2015', 'SE007C1', 'Linköping', 'beds', null), ('2015', 'SE007C1', 'Linköping', 'ons_per_res_pop', null), ('2015', 'SE007C1', 'Linköping', 'beds_per_1000res_pop', null), ('2015', 'SE008C1', 'Örebro', 'ons', null), ('2015', 'SE008C1', 'Örebro', 'beds', null), ('2015', 'SE008C1', 'Örebro', 'ons_per_res_pop', null), ('2015', 'SE008C1', 'Örebro', 'beds_per_1000res_pop', null), ('2015', 'SE501C1', 'Västerås', 'ons', null), ('2015', 'SE501C1', 'Västerås', 'beds', null), ('2015', 'SE501C1', 'Västerås', 'ons_per_res_pop', null), ('2015', 'SE501C1', 'Västerås', 'beds_per_1000res_pop', null), ('2015', 'SE502C1', 'Norrköping', 'ons', null), ('2015', 'SE502C1', 'Norrköping', 'beds', null), ('2015', 'SE502C1', 'Norrköping', 'ons_per_res_pop', null), ('2015', 'SE502C1', 'Norrköping', 'beds_per_1000res_pop', null), ('2015', 'SE503C1', 'Helsingborg', 'ons', null), ('2015', 'SE503C1', 'Helsingborg', 'beds', null), ('2015', 'SE503C1', 'Helsingborg', 'ons_per_res_pop', null), ('2015', 'SE503C1', 'Helsingborg', 'beds_per_1000res_pop', null), ('2015', 'SE504C1', 'Lund', 'ons', null), ('2015', 'SE504C1', 'Lund', 'beds', null), ('2015', 'SE504C1', 'Lund', 'ons_per_res_pop', null), ('2015', 'SE504C1', 'Lund', 'beds_per_1000res_pop', null), ('2015', 'SE505C1', 'Borås', 'ons', null), ('2015', 'SE505C1', 'Borås', 'beds', null), ('2015', 'SE505C1', 'Borås', 'ons_per_res_pop', null), ('2015', 'SE505C1', 'Borås', 'beds_per_1000res_pop', null), ('2015', 'UK', 'United Kingdom', 'ons', null), ('2015', 'UK', 'United Kingdom', 'beds', null), ('2015', 'UK', 'United Kingdom', 'ons_per_res_pop', null), ('2015', 'UK', 'United Kingdom', 'beds_per_1000res_pop', null), ('2015', 'UK002C1', 'Birmingham', 'ons', null), ('2015', 'UK002C1', 'Birmingham', 'beds', null), ('2015', 'UK002C1', 'Birmingham', 'ons_per_res_pop', null), ('2015', 'UK002C1', 'Birmingham', 'beds_per_1000res_pop', null), ('2015', 'UK003C1', 'Leeds', 'ons', null), ('2015', 'UK003C1', 'Leeds', 'beds', null), ('2015', 'UK003C1', 'Leeds', 'ons_per_res_pop', null), ('2015', 'UK003C1', 'Leeds', 'beds_per_1000res_pop', null), ('2015', 'UK004C1', 'Glasgow City', 'ons', null), ('2015', 'UK004C1', 'Glasgow City', 'beds', null), ('2015', 'UK004C1', 'Glasgow City', 'ons_per_res_pop', null), ('2015', 'UK004C1', 'Glasgow City', 'beds_per_1000res_pop', null), ('2015', 'UK005C1', 'Bradford', 'ons', null), ('2015', 'UK005C1', 'Bradford', 'beds', null), ('2015', 'UK005C1', 'Bradford', 'ons_per_res_pop', null), ('2015', 'UK005C1', 'Bradford', 'beds_per_1000res_pop', null), ('2015', 'UK006C1', 'Liverpool', 'ons', null), ('2015', 'UK006C1', 'Liverpool', 'beds', null), ('2015', 'UK006C1', 'Liverpool', 'ons_per_res_pop', null), ('2015', 'UK006C1', 'Liverpool', 'beds_per_1000res_pop', null), ('2015', 'UK007C1', 'City of Edinburgh', 'ons', null), ('2015', 'UK007C1', 'City of Edinburgh', 'beds', null), ('2015', 'UK007C1', 'City of Edinburgh', 'ons_per_res_pop', null), ('2015', 'UK007C1', 'City of Edinburgh', 'beds_per_1000res_pop', null), ('2015', 'UK008C1', 'Manchester', 'ons', null), ('2015', 'UK008C1', 'Manchester', 'beds', null), ('2015', 'UK008C1', 'Manchester', 'ons_per_res_pop', null), ('2015', 'UK008C1', 'Manchester', 'beds_per_1000res_pop', null), ('2015', 'UK009C1', 'Cardiff', 'ons', null), ('2015', 'UK009C1', 'Cardiff', 'beds', null), ('2015', 'UK009C1', 'Cardiff', 'ons_per_res_pop', null), ('2015', 'UK009C1', 'Cardiff', 'beds_per_1000res_pop', null), ('2015', 'UK010C1', 'Sheffield', 'ons', null), ('2015', 'UK010C1', 'Sheffield', 'beds', null), ('2015', 'UK010C1', 'Sheffield', 'ons_per_res_pop', null), ('2015', 'UK010C1', 'Sheffield', 'beds_per_1000res_pop', null), ('2015', 'UK011C1', 'Bristol', 'ons', null), ('2015', 'UK011C1', 'Bristol', 'beds', null), ('2015', 'UK011C1', 'Bristol', 'ons_per_res_pop', null), ('2015', 'UK011C1', 'Bristol', 'beds_per_1000res_pop', null), ('2015', 'UK012C2', 'Belfast', 'ons', '4237733'), ('2015', 'UK012C2', 'Belfast', 'beds', '9096'), ('2015', 'UK012C2', 'Belfast', 'ons_per_res_pop', '12.5'), ('2015', 'UK012C2', 'Belfast', 'beds_per_1000res_pop', '26.9'), ('2015', 'UK013C1', 'Newcastle upon Tyne', 'ons', null), ('2015', 'UK013C1', 'Newcastle upon Tyne', 'beds', null), ('2015', 'UK013C1', 'Newcastle upon Tyne', 'ons_per_res_pop', null), ('2015', 'UK013C1', 'Newcastle upon Tyne', 'beds_per_1000res_pop', null), ('2015', 'UK014C1', 'Leicester', 'ons', null), ('2015', 'UK014C1', 'Leicester', 'beds', null), ('2015', 'UK014C1', 'Leicester', 'ons_per_res_pop', null), ('2015', 'UK014C1', 'Leicester', 'beds_per_1000res_pop', null), ('2015', 'UK016C1', 'Aberdeen City', 'ons', null), ('2015', 'UK016C1', 'Aberdeen City', 'beds', null), ('2015', 'UK016C1', 'Aberdeen City', 'ons_per_res_pop', null), ('2015', 'UK016C1', 'Aberdeen City', 'beds_per_1000res_pop', null), ('2015', 'UK017C1', 'Cambridge', 'ons', null), ('2015', 'UK017C1', 'Cambridge', 'beds', null), ('2015', 'UK017C1', 'Cambridge', 'ons_per_res_pop', null), ('2015', 'UK017C1', 'Cambridge', 'beds_per_1000res_pop', null), ('2015', 'UK018C1', 'Exeter', 'ons', null), ('2015', 'UK018C1', 'Exeter', 'beds', null), ('2015', 'UK018C1', 'Exeter', 'ons_per_res_pop', null), ('2015', 'UK018C1', 'Exeter', 'beds_per_1000res_pop', null), ('2015', 'UK019C1', 'Lincoln', 'ons', null), ('2015', 'UK019C1', 'Lincoln', 'beds', null), ('2015', 'UK019C1', 'Lincoln', 'ons_per_res_pop', null), ('2015', 'UK019C1', 'Lincoln', 'beds_per_1000res_pop', null), ('2015', 'UK020C1', 'Gravesham', 'ons', null), ('2015', 'UK020C1', 'Gravesham', 'beds', null), ('2015', 'UK020C1', 'Gravesham', 'ons_per_res_pop', null), ('2015', 'UK020C1', 'Gravesham', 'beds_per_1000res_pop', null), ('2015', 'UK021C1', 'Stevenage', 'ons', null), ('2015', 'UK021C1', 'Stevenage', 'beds', null), ('2015', 'UK021C1', 'Stevenage', 'ons_per_res_pop', null), ('2015', 'UK021C1', 'Stevenage', 'beds_per_1000res_pop', null), ('2015', 'UK022C1', 'Wrexham', 'ons', null), ('2015', 'UK022C1', 'Wrexham', 'beds', null), ('2015', 'UK022C1', 'Wrexham', 'ons_per_res_pop', null), ('2015', 'UK022C1', 'Wrexham', 'beds_per_1000res_pop', null), ('2015', 'UK023C1', 'Portsmouth', 'ons', null), ('2015', 'UK023C1', 'Portsmouth', 'beds', null), ('2015', 'UK023C1', 'Portsmouth', 'ons_per_res_pop', null), ('2015', 'UK023C1', 'Portsmouth', 'beds_per_1000res_pop', null), ('2015', 'UK024C1', 'Worcester', 'ons', null), ('2015', 'UK024C1', 'Worcester', 'beds', null), ('2015', 'UK024C1', 'Worcester', 'ons_per_res_pop', null), ('2015', 'UK024C1', 'Worcester', 'beds_per_1000res_pop', null), ('2015', 'UK025C1', 'Coventry', 'ons', null), ('2015', 'UK025C1', 'Coventry', 'beds', null), ('2015', 'UK025C1', 'Coventry', 'ons_per_res_pop', null), ('2015', 'UK025C1', 'Coventry', 'beds_per_1000res_pop', null), ('2015', 'UK026C1', 'Kingston-upon-Hull', 'ons', null), ('2015', 'UK026C1', 'Kingston-upon-Hull', 'beds', null), ('2015', 'UK026C1', 'Kingston-upon-Hull', 'ons_per_res_pop', null), ('2015', 'UK026C1', 'Kingston-upon-Hull', 'beds_per_1000res_pop', null), ('2015', 'UK027C1', 'Stoke-on-trent', 'ons', null), ('2015', 'UK027C1', 'Stoke-on-trent', 'beds', null), ('2015', 'UK027C1', 'Stoke-on-trent', 'ons_per_res_pop', null), ('2015', 'UK027C1', 'Stoke-on-trent', 'beds_per_1000res_pop', null), ('2015', 'UK028C1', 'Wolverhampton', 'ons', null), ('2015', 'UK028C1', 'Wolverhampton', 'beds', null), ('2015', 'UK028C1', 'Wolverhampton', 'ons_per_res_pop', null), ('2015', 'UK028C1', 'Wolverhampton', 'beds_per_1000res_pop', null), ('2015', 'UK029C1', 'Nottingham', 'ons', null), ('2015', 'UK029C1', 'Nottingham', 'beds', null), ('2015', 'UK029C1', 'Nottingham', 'ons_per_res_pop', null), ('2015', 'UK029C1', 'Nottingham', 'beds_per_1000res_pop', null), ('2015', 'UK030C1', 'Wirral', 'ons', '226687'), ('2015', 'UK030C1', 'Wirral', 'beds', '4055'), ('2015', 'UK030C1', 'Wirral', 'ons_per_res_pop', '0.7'), ('2015', 'UK030C1', 'Wirral', 'beds_per_1000res_pop', '12.6'), ('2015', 'UK031C1', 'Bath and North East Somerset', 'ons', null), ('2015', 'UK031C1', 'Bath and North East Somerset', 'beds', null), ('2015', 'UK031C1', 'Bath and North East Somerset', 'ons_per_res_pop', null), ('2015', 'UK031C1', 'Bath and North East Somerset', 'beds_per_1000res_pop', null), ('2015', 'UK032C1', 'Thurrock', 'ons', null), ('2015', 'UK032C1', 'Thurrock', 'beds', null), ('2015', 'UK032C1', 'Thurrock', 'ons_per_res_pop', null), ('2015', 'UK032C1', 'Thurrock', 'beds_per_1000res_pop', null), ('2015', 'UK033C1', 'Guildford', 'ons', null), ('2015', 'UK033C1', 'Guildford', 'beds', null), ('2015', 'UK033C1', 'Guildford', 'ons_per_res_pop', null), ('2015', 'UK033C1', 'Guildford', 'beds_per_1000res_pop', null), ('2015', 'UK034C1', 'Thanet', 'ons', null), ('2015', 'UK034C1', 'Thanet', 'beds', null), ('2015', 'UK034C1', 'Thanet', 'ons_per_res_pop', null), ('2015', 'UK034C1', 'Thanet', 'beds_per_1000res_pop', null), ('2015', 'UK035C1', 'Nuneaton and Bedworth', 'ons', null), ('2015', 'UK035C1', 'Nuneaton and Bedworth', 'beds', null), ('2015', 'UK035C1', 'Nuneaton and Bedworth', 'ons_per_res_pop', null), ('2015', 'UK035C1', 'Nuneaton and Bedworth', 'beds_per_1000res_pop', null), ('2015', 'UK038C1', 'Waveney', 'ons', null), ('2015', 'UK038C1', 'Waveney', 'beds', null), ('2015', 'UK038C1', 'Waveney', 'ons_per_res_pop', null), ('2015', 'UK038C1', 'Waveney', 'beds_per_1000res_pop', null), ('2015', 'UK040C1', 'Tunbridge Wells', 'ons', null), ('2015', 'UK040C1', 'Tunbridge Wells', 'beds', null), ('2015', 'UK040C1', 'Tunbridge Wells', 'ons_per_res_pop', null), ('2015', 'UK040C1', 'Tunbridge Wells', 'beds_per_1000res_pop', null), ('2015', 'UK041C1', 'Ashford', 'ons', null), ('2015', 'UK041C1', 'Ashford', 'beds', null), ('2015', 'UK041C1', 'Ashford', 'ons_per_res_pop', null), ('2015', 'UK041C1', 'Ashford', 'beds_per_1000res_pop', null), ('2015', 'UK043C1', 'East Staffordshire', 'ons', null), ('2015', 'UK043C1', 'East Staffordshire', 'beds', null), ('2015', 'UK043C1', 'East Staffordshire', 'ons_per_res_pop', null), ('2015', 'UK043C1', 'East Staffordshire', 'beds_per_1000res_pop', null), ('2015', 'UK044C1', 'Darlington', 'ons', null), ('2015', 'UK044C1', 'Darlington', 'beds', null), ('2015', 'UK044C1', 'Darlington', 'ons_per_res_pop', null), ('2015', 'UK044C1', 'Darlington', 'beds_per_1000res_pop', null), ('2015', 'UK045C1', 'Worthing', 'ons', null), ('2015', 'UK045C1', 'Worthing', 'beds', null), ('2015', 'UK045C1', 'Worthing', 'ons_per_res_pop', null), ('2015', 'UK045C1', 'Worthing', 'beds_per_1000res_pop', null), ('2015', 'UK046C1', 'Mansfield', 'ons', null), ('2015', 'UK046C1', 'Mansfield', 'beds', null), ('2015', 'UK046C1', 'Mansfield', 'ons_per_res_pop', null), ('2015', 'UK046C1', 'Mansfield', 'beds_per_1000res_pop', null), ('2015', 'UK047C1', 'Chesterfield', 'ons', null), ('2015', 'UK047C1', 'Chesterfield', 'beds', null), ('2015', 'UK047C1', 'Chesterfield', 'ons_per_res_pop', null), ('2015', 'UK047C1', 'Chesterfield', 'beds_per_1000res_pop', null), ('2015', 'UK050C1', 'Burnley', 'ons', null), ('2015', 'UK050C1', 'Burnley', 'beds', null), ('2015', 'UK050C1', 'Burnley', 'ons_per_res_pop', null), ('2015', 'UK050C1', 'Burnley', 'beds_per_1000res_pop', null), ('2015', 'UK051C1', 'Great Yarmouth', 'ons', null), ('2015', 'UK051C1', 'Great Yarmouth', 'beds', null), ('2015', 'UK051C1', 'Great Yarmouth', 'ons_per_res_pop', null), ('2015', 'UK051C1', 'Great Yarmouth', 'beds_per_1000res_pop', null), ('2015', 'UK052C1', 'Woking', 'ons', null), ('2015', 'UK052C1', 'Woking', 'beds', null), ('2015', 'UK052C1', 'Woking', 'ons_per_res_pop', null), ('2015', 'UK052C1', 'Woking', 'beds_per_1000res_pop', null), ('2015', 'UK053C1', 'Hartlepool', 'ons', null), ('2015', 'UK053C1', 'Hartlepool', 'beds', null), ('2015', 'UK053C1', 'Hartlepool', 'ons_per_res_pop', null), ('2015', 'UK053C1', 'Hartlepool', 'beds_per_1000res_pop', null), ('2015', 'UK054C1', 'Cannock Chase', 'ons', null), ('2015', 'UK054C1', 'Cannock Chase', 'beds', null), ('2015', 'UK054C1', 'Cannock Chase', 'ons_per_res_pop', null), ('2015', 'UK054C1', 'Cannock Chase', 'beds_per_1000res_pop', null), ('2015', 'UK055C1', 'Eastbourne', 'ons', null), ('2015', 'UK055C1', 'Eastbourne', 'beds', null), ('2015', 'UK055C1', 'Eastbourne', 'ons_per_res_pop', null), ('2015', 'UK055C1', 'Eastbourne', 'beds_per_1000res_pop', null), ('2015', 'UK056C1', 'Hastings', 'ons', null), ('2015', 'UK056C1', 'Hastings', 'beds', null), ('2015', 'UK056C1', 'Hastings', 'ons_per_res_pop', null), ('2015', 'UK056C1', 'Hastings', 'beds_per_1000res_pop', null), ('2015', 'UK057C1', 'Hyndburn', 'ons', null), ('2015', 'UK057C1', 'Hyndburn', 'beds', null), ('2015', 'UK057C1', 'Hyndburn', 'ons_per_res_pop', null), ('2015', 'UK057C1', 'Hyndburn', 'beds_per_1000res_pop', null), ('2015', 'UK059C1', 'Redditch', 'ons', null), ('2015', 'UK059C1', 'Redditch', 'beds', null), ('2015', 'UK059C1', 'Redditch', 'ons_per_res_pop', null), ('2015', 'UK059C1', 'Redditch', 'beds_per_1000res_pop', null), ('2015', 'UK060C1', 'Tamworth', 'ons', null), ('2015', 'UK060C1', 'Tamworth', 'beds', null), ('2015', 'UK060C1', 'Tamworth', 'ons_per_res_pop', null), ('2015', 'UK060C1', 'Tamworth', 'beds_per_1000res_pop', null), ('2015', 'UK061C1', 'Harlow', 'ons', null), ('2015', 'UK061C1', 'Harlow', 'beds', null), ('2015', 'UK061C1', 'Harlow', 'ons_per_res_pop', null), ('2015', 'UK061C1', 'Harlow', 'beds_per_1000res_pop', null), ('2015', 'UK062C1', 'Halton', 'ons', null), ('2015', 'UK062C1', 'Halton', 'beds', null), ('2015', 'UK062C1', 'Halton', 'ons_per_res_pop', null), ('2015', 'UK062C1', 'Halton', 'beds_per_1000res_pop', null), ('2015', 'UK101C1', 'City of London', 'ons', null), ('2015', 'UK101C1', 'City of London', 'beds', null), ('2015', 'UK101C1', 'City of London', 'ons_per_res_pop', null), ('2015', 'UK101C1', 'City of London', 'beds_per_1000res_pop', null), ('2015', 'UK102C1', 'Barking and Dagenham', 'ons', null), ('2015', 'UK102C1', 'Barking and Dagenham', 'beds', null), ('2015', 'UK102C1', 'Barking and Dagenham', 'ons_per_res_pop', null), ('2015', 'UK102C1', 'Barking and Dagenham', 'beds_per_1000res_pop', null), ('2015', 'UK103C1', 'Barnet', 'ons', null), ('2015', 'UK103C1', 'Barnet', 'beds', null), ('2015', 'UK103C1', 'Barnet', 'ons_per_res_pop', null), ('2015', 'UK103C1', 'Barnet', 'beds_per_1000res_pop', null), ('2015', 'UK104C1', 'Bexley', 'ons', null), ('2015', 'UK104C1', 'Bexley', 'beds', null), ('2015', 'UK104C1', 'Bexley', 'ons_per_res_pop', null), ('2015', 'UK104C1', 'Bexley', 'beds_per_1000res_pop', null), ('2015', 'UK105C1', 'Brent', 'ons', null), ('2015', 'UK105C1', 'Brent', 'beds', null), ('2015', 'UK105C1', 'Brent', 'ons_per_res_pop', null), ('2015', 'UK105C1', 'Brent', 'beds_per_1000res_pop', null), ('2015', 'UK106C1', 'Bromley', 'ons', null), ('2015', 'UK106C1', 'Bromley', 'beds', null), ('2015', 'UK106C1', 'Bromley', 'ons_per_res_pop', null), ('2015', 'UK106C1', 'Bromley', 'beds_per_1000res_pop', null), ('2015', 'UK107C1', 'Camden', 'ons', null), ('2015', 'UK107C1', 'Camden', 'beds', null), ('2015', 'UK107C1', 'Camden', 'ons_per_res_pop', null), ('2015', 'UK107C1', 'Camden', 'beds_per_1000res_pop', null), ('2015', 'UK108C1', 'Croydon', 'ons', null), ('2015', 'UK108C1', 'Croydon', 'beds', null), ('2015', 'UK108C1', 'Croydon', 'ons_per_res_pop', null), ('2015', 'UK108C1', 'Croydon', 'beds_per_1000res_pop', null), ('2015', 'UK109C1', 'Ealing', 'ons', null), ('2015', 'UK109C1', 'Ealing', 'beds', null), ('2015', 'UK109C1', 'Ealing', 'ons_per_res_pop', null), ('2015', 'UK109C1', 'Ealing', 'beds_per_1000res_pop', null), ('2015', 'UK110C1', 'Enfield', 'ons', null), ('2015', 'UK110C1', 'Enfield', 'beds', null), ('2015', 'UK110C1', 'Enfield', 'ons_per_res_pop', null), ('2015', 'UK110C1', 'Enfield', 'beds_per_1000res_pop', null), ('2015', 'UK111C1', 'Greenwich', 'ons', null), ('2015', 'UK111C1', 'Greenwich', 'beds', null), ('2015', 'UK111C1', 'Greenwich', 'ons_per_res_pop', null), ('2015', 'UK111C1', 'Greenwich', 'beds_per_1000res_pop', null), ('2015', 'UK112C1', 'Hackney', 'ons', null), ('2015', 'UK112C1', 'Hackney', 'beds', null), ('2015', 'UK112C1', 'Hackney', 'ons_per_res_pop', null), ('2015', 'UK112C1', 'Hackney', 'beds_per_1000res_pop', null), ('2015', 'UK113C1', 'Hammersmith and Fulham', 'ons', null), ('2015', 'UK113C1', 'Hammersmith and Fulham', 'beds', null), ('2015', 'UK113C1', 'Hammersmith and Fulham', 'ons_per_res_pop', null), ('2015', 'UK113C1', 'Hammersmith and Fulham', 'beds_per_1000res_pop', null), ('2015', 'UK114C1', 'Haringey', 'ons', null), ('2015', 'UK114C1', 'Haringey', 'beds', null), ('2015', 'UK114C1', 'Haringey', 'ons_per_res_pop', null), ('2015', 'UK114C1', 'Haringey', 'beds_per_1000res_pop', null), ('2015', 'UK115C1', 'Harrow', 'ons', null), ('2015', 'UK115C1', 'Harrow', 'beds', null), ('2015', 'UK115C1', 'Harrow', 'ons_per_res_pop', null), ('2015', 'UK115C1', 'Harrow', 'beds_per_1000res_pop', null), ('2015', 'UK116C1', 'Havering', 'ons', null), ('2015', 'UK116C1', 'Havering', 'beds', null), ('2015', 'UK116C1', 'Havering', 'ons_per_res_pop', null), ('2015', 'UK116C1', 'Havering', 'beds_per_1000res_pop', null), ('2015', 'UK117C1', 'Hillingdon', 'ons', null), ('2015', 'UK117C1', 'Hillingdon', 'beds', null), ('2015', 'UK117C1', 'Hillingdon', 'ons_per_res_pop', null), ('2015', 'UK117C1', 'Hillingdon', 'beds_per_1000res_pop', null), ('2015', 'UK118C1', 'Hounslow', 'ons', null), ('2015', 'UK118C1', 'Hounslow', 'beds', null), ('2015', 'UK118C1', 'Hounslow', 'ons_per_res_pop', null), ('2015', 'UK118C1', 'Hounslow', 'beds_per_1000res_pop', null), ('2015', 'UK119C1', 'Islington', 'ons', null), ('2015', 'UK119C1', 'Islington', 'beds', null), ('2015', 'UK119C1', 'Islington', 'ons_per_res_pop', null), ('2015', 'UK119C1', 'Islington', 'beds_per_1000res_pop', null), ('2015', 'UK120C1', 'Kensington and Chelsea', 'ons', null), ('2015', 'UK120C1', 'Kensington and Chelsea', 'beds', null), ('2015', 'UK120C1', 'Kensington and Chelsea', 'ons_per_res_pop', null), ('2015', 'UK120C1', 'Kensington and Chelsea', 'beds_per_1000res_pop', null), ('2015', 'UK121C1', 'Kingston upon Thames', 'ons', null), ('2015', 'UK121C1', 'Kingston upon Thames', 'beds', null), ('2015', 'UK121C1', 'Kingston upon Thames', 'ons_per_res_pop', null), ('2015', 'UK121C1', 'Kingston upon Thames', 'beds_per_1000res_pop', null), ('2015', 'UK122C1', 'Lambeth', 'ons', null), ('2015', 'UK122C1', 'Lambeth', 'beds', null), ('2015', 'UK122C1', 'Lambeth', 'ons_per_res_pop', null), ('2015', 'UK122C1', 'Lambeth', 'beds_per_1000res_pop', null), ('2015', 'UK123C1', 'Lewisham', 'ons', null), ('2015', 'UK123C1', 'Lewisham', 'beds', null), ('2015', 'UK123C1', 'Lewisham', 'ons_per_res_pop', null), ('2015', 'UK123C1', 'Lewisham', 'beds_per_1000res_pop', null), ('2015', 'UK124C1', 'Merton', 'ons', null), ('2015', 'UK124C1', 'Merton', 'beds', null), ('2015', 'UK124C1', 'Merton', 'ons_per_res_pop', null), ('2015', 'UK124C1', 'Merton', 'beds_per_1000res_pop', null), ('2015', 'UK125C1', 'Newham', 'ons', null), ('2015', 'UK125C1', 'Newham', 'beds', null), ('2015', 'UK125C1', 'Newham', 'ons_per_res_pop', null), ('2015', 'UK125C1', 'Newham', 'beds_per_1000res_pop', null), ('2015', 'UK126C1', 'Redbridge', 'ons', null), ('2015', 'UK126C1', 'Redbridge', 'beds', null), ('2015', 'UK126C1', 'Redbridge', 'ons_per_res_pop', null), ('2015', 'UK126C1', 'Redbridge', 'beds_per_1000res_pop', null), ('2015', 'UK127C1', 'Richmond upon Thames', 'ons', null), ('2015', 'UK127C1', 'Richmond upon Thames', 'beds', null), ('2015', 'UK127C1', 'Richmond upon Thames', 'ons_per_res_pop', null), ('2015', 'UK127C1', 'Richmond upon Thames', 'beds_per_1000res_pop', null), ('2015', 'UK128C1', 'Southwark', 'ons', null), ('2015', 'UK128C1', 'Southwark', 'beds', null), ('2015', 'UK128C1', 'Southwark', 'ons_per_res_pop', null), ('2015', 'UK128C1', 'Southwark', 'beds_per_1000res_pop', null), ('2015', 'UK129C1', 'Sutton', 'ons', null), ('2015', 'UK129C1', 'Sutton', 'beds', null), ('2015', 'UK129C1', 'Sutton', 'ons_per_res_pop', null), ('2015', 'UK129C1', 'Sutton', 'beds_per_1000res_pop', null), ('2015', 'UK130C1', 'Tower Hamlets', 'ons', null), ('2015', 'UK130C1', 'Tower Hamlets', 'beds', null), ('2015', 'UK130C1', 'Tower Hamlets', 'ons_per_res_pop', null), ('2015', 'UK130C1', 'Tower Hamlets', 'beds_per_1000res_pop', null), ('2015', 'UK131C1', 'Waltham Forest', 'ons', null), ('2015', 'UK131C1', 'Waltham Forest', 'beds', null), ('2015', 'UK131C1', 'Waltham Forest', 'ons_per_res_pop', null), ('2015', 'UK131C1', 'Waltham Forest', 'beds_per_1000res_pop', null), ('2015', 'UK132C1', 'Wandsworth', 'ons', null), ('2015', 'UK132C1', 'Wandsworth', 'beds', null), ('2015', 'UK132C1', 'Wandsworth', 'ons_per_res_pop', null), ('2015', 'UK132C1', 'Wandsworth', 'beds_per_1000res_pop', null), ('2015', 'UK133C1', 'Westminster', 'ons', null), ('2015', 'UK133C1', 'Westminster', 'beds', null), ('2015', 'UK133C1', 'Westminster', 'ons_per_res_pop', null), ('2015', 'UK133C1', 'Westminster', 'beds_per_1000res_pop', null), ('2015', 'UK501C1', 'Kirklees', 'ons', null), ('2015', 'UK501C1', 'Kirklees', 'beds', null), ('2015', 'UK501C1', 'Kirklees', 'ons_per_res_pop', null), ('2015', 'UK501C1', 'Kirklees', 'beds_per_1000res_pop', null), ('2015', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'ons', null), ('2015', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'beds', null), ('2015', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'ons_per_res_pop', null), ('2015', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'beds_per_1000res_pop', null), ('2015', 'UK503C1', 'Wakefield', 'ons', null), ('2015', 'UK503C1', 'Wakefield', 'beds', null), ('2015', 'UK503C1', 'Wakefield', 'ons_per_res_pop', null), ('2015', 'UK503C1', 'Wakefield', 'beds_per_1000res_pop', null), ('2015', 'UK504C1', 'Dudley', 'ons', null), ('2015', 'UK504C1', 'Dudley', 'beds', null), ('2015', 'UK504C1', 'Dudley', 'ons_per_res_pop', null), ('2015', 'UK504C1', 'Dudley', 'beds_per_1000res_pop', null), ('2015', 'UK505C1', 'Wigan', 'ons', null), ('2015', 'UK505C1', 'Wigan', 'beds', null), ('2015', 'UK505C1', 'Wigan', 'ons_per_res_pop', null), ('2015', 'UK505C1', 'Wigan', 'beds_per_1000res_pop', null), ('2015', 'UK506C1', 'Doncaster', 'ons', null), ('2015', 'UK506C1', 'Doncaster', 'beds', null), ('2015', 'UK506C1', 'Doncaster', 'ons_per_res_pop', null), ('2015', 'UK506C1', 'Doncaster', 'beds_per_1000res_pop', null), ('2015', 'UK507C1', 'Stockport', 'ons', null), ('2015', 'UK507C1', 'Stockport', 'beds', null), ('2015', 'UK507C1', 'Stockport', 'ons_per_res_pop', null), ('2015', 'UK507C1', 'Stockport', 'beds_per_1000res_pop', null), ('2015', 'UK508C1', 'Sefton', 'ons', null), ('2015', 'UK508C1', 'Sefton', 'beds', null), ('2015', 'UK508C1', 'Sefton', 'ons_per_res_pop', null), ('2015', 'UK508C1', 'Sefton', 'beds_per_1000res_pop', null), ('2015', 'UK509C1', 'Sandwell', 'ons', null), ('2015', 'UK509C1', 'Sandwell', 'beds', null), ('2015', 'UK509C1', 'Sandwell', 'ons_per_res_pop', null), ('2015', 'UK509C1', 'Sandwell', 'beds_per_1000res_pop', null), ('2015', 'UK510C1', 'Sunderland', 'ons', null), ('2015', 'UK510C1', 'Sunderland', 'beds', null), ('2015', 'UK510C1', 'Sunderland', 'ons_per_res_pop', null), ('2015', 'UK510C1', 'Sunderland', 'beds_per_1000res_pop', null), ('2015', 'UK511C1', 'Bolton', 'ons', null), ('2015', 'UK511C1', 'Bolton', 'beds', null), ('2015', 'UK511C1', 'Bolton', 'ons_per_res_pop', null), ('2015', 'UK511C1', 'Bolton', 'beds_per_1000res_pop', null), ('2015', 'UK512C1', 'Walsall', 'ons', null), ('2015', 'UK512C1', 'Walsall', 'beds', null), ('2015', 'UK512C1', 'Walsall', 'ons_per_res_pop', null), ('2015', 'UK512C1', 'Walsall', 'beds_per_1000res_pop', null), ('2015', 'UK513C1', 'Medway', 'ons', null), ('2015', 'UK513C1', 'Medway', 'beds', null), ('2015', 'UK513C1', 'Medway', 'ons_per_res_pop', null), ('2015', 'UK513C1', 'Medway', 'beds_per_1000res_pop', null), ('2015', 'UK514C1', 'Rotherham', 'ons', null), ('2015', 'UK514C1', 'Rotherham', 'beds', null), ('2015', 'UK514C1', 'Rotherham', 'ons_per_res_pop', null), ('2015', 'UK514C1', 'Rotherham', 'beds_per_1000res_pop', null), ('2015', 'UK515C1', 'Brighton and Hove', 'ons', null), ('2015', 'UK515C1', 'Brighton and Hove', 'beds', null), ('2015', 'UK515C1', 'Brighton and Hove', 'ons_per_res_pop', null), ('2015', 'UK515C1', 'Brighton and Hove', 'beds_per_1000res_pop', null), ('2015', 'UK516C1', 'Plymouth', 'ons', null), ('2015', 'UK516C1', 'Plymouth', 'beds', null), ('2015', 'UK516C1', 'Plymouth', 'ons_per_res_pop', null), ('2015', 'UK516C1', 'Plymouth', 'beds_per_1000res_pop', null), ('2015', 'UK517C1', 'Swansea', 'ons', null), ('2015', 'UK517C1', 'Swansea', 'beds', null), ('2015', 'UK517C1', 'Swansea', 'ons_per_res_pop', null), ('2015', 'UK517C1', 'Swansea', 'beds_per_1000res_pop', null), ('2015', 'UK518C1', 'Derby', 'ons', null), ('2015', 'UK518C1', 'Derby', 'beds', null), ('2015', 'UK518C1', 'Derby', 'ons_per_res_pop', null), ('2015', 'UK518C1', 'Derby', 'beds_per_1000res_pop', null), ('2015', 'UK519C1', 'Barnsley', 'ons', null), ('2015', 'UK519C1', 'Barnsley', 'beds', null), ('2015', 'UK519C1', 'Barnsley', 'ons_per_res_pop', null), ('2015', 'UK519C1', 'Barnsley', 'beds_per_1000res_pop', null), ('2015', 'UK520C1', 'Southampton', 'ons', null), ('2015', 'UK520C1', 'Southampton', 'beds', null), ('2015', 'UK520C1', 'Southampton', 'ons_per_res_pop', null), ('2015', 'UK520C1', 'Southampton', 'beds_per_1000res_pop', null), ('2015', 'UK521C1', 'Oldham', 'ons', null), ('2015', 'UK521C1', 'Oldham', 'beds', null), ('2015', 'UK521C1', 'Oldham', 'ons_per_res_pop', null), ('2015', 'UK521C1', 'Oldham', 'beds_per_1000res_pop', null), ('2015', 'UK522C1', 'Salford', 'ons', '1610000'), ('2015', 'UK522C1', 'Salford', 'beds', '5626'), ('2015', 'UK522C1', 'Salford', 'ons_per_res_pop', '6.6'), ('2015', 'UK522C1', 'Salford', 'beds_per_1000res_pop', '23.1'), ('2015', 'UK523C1', 'Tameside', 'ons', null), ('2015', 'UK523C1', 'Tameside', 'beds', null), ('2015', 'UK523C1', 'Tameside', 'ons_per_res_pop', null), ('2015', 'UK523C1', 'Tameside', 'beds_per_1000res_pop', null), ('2015', 'UK524C1', 'Trafford', 'ons', null), ('2015', 'UK524C1', 'Trafford', 'beds', null), ('2015', 'UK524C1', 'Trafford', 'ons_per_res_pop', null), ('2015', 'UK524C1', 'Trafford', 'beds_per_1000res_pop', null), ('2015', 'UK525C1', 'Milton Keynes', 'ons', null), ('2015', 'UK525C1', 'Milton Keynes', 'beds', null), ('2015', 'UK525C1', 'Milton Keynes', 'ons_per_res_pop', null), ('2015', 'UK525C1', 'Milton Keynes', 'beds_per_1000res_pop', null), ('2015', 'UK526C1', 'Rochdale', 'ons', null), ('2015', 'UK526C1', 'Rochdale', 'beds', null), ('2015', 'UK526C1', 'Rochdale', 'ons_per_res_pop', null), ('2015', 'UK526C1', 'Rochdale', 'beds_per_1000res_pop', null), ('2015', 'UK527C1', 'Solihull', 'ons', null), ('2015', 'UK527C1', 'Solihull', 'beds', null), ('2015', 'UK527C1', 'Solihull', 'ons_per_res_pop', null), ('2015', 'UK527C1', 'Solihull', 'beds_per_1000res_pop', null), ('2015', 'UK528C1', 'Northampton', 'ons', null), ('2015', 'UK528C1', 'Northampton', 'beds', null), ('2015', 'UK528C1', 'Northampton', 'ons_per_res_pop', null), ('2015', 'UK528C1', 'Northampton', 'beds_per_1000res_pop', null), ('2015', 'UK529C1', 'North Tyneside', 'ons', null), ('2015', 'UK529C1', 'North Tyneside', 'beds', null), ('2015', 'UK529C1', 'North Tyneside', 'ons_per_res_pop', null), ('2015', 'UK529C1', 'North Tyneside', 'beds_per_1000res_pop', null), ('2015', 'UK530C1', 'Gateshead', 'ons', null), ('2015', 'UK530C1', 'Gateshead', 'beds', null), ('2015', 'UK530C1', 'Gateshead', 'ons_per_res_pop', null), ('2015', 'UK530C1', 'Gateshead', 'beds_per_1000res_pop', null), ('2015', 'UK531C1', 'Warrington', 'ons', null), ('2015', 'UK531C1', 'Warrington', 'beds', null), ('2015', 'UK531C1', 'Warrington', 'ons_per_res_pop', null), ('2015', 'UK531C1', 'Warrington', 'beds_per_1000res_pop', null), ('2015', 'UK532C1', 'Luton', 'ons', null), ('2015', 'UK532C1', 'Luton', 'beds', null), ('2015', 'UK532C1', 'Luton', 'ons_per_res_pop', null), ('2015', 'UK532C1', 'Luton', 'beds_per_1000res_pop', null), ('2015', 'UK533C1', 'York', 'ons', null), ('2015', 'UK533C1', 'York', 'beds', null), ('2015', 'UK533C1', 'York', 'ons_per_res_pop', null), ('2015', 'UK533C1', 'York', 'beds_per_1000res_pop', null), ('2015', 'UK534C1', 'Bury', 'ons', null), ('2015', 'UK534C1', 'Bury', 'beds', null), ('2015', 'UK534C1', 'Bury', 'ons_per_res_pop', null), ('2015', 'UK534C1', 'Bury', 'beds_per_1000res_pop', null), ('2015', 'UK535C1', 'Swindon', 'ons', null), ('2015', 'UK535C1', 'Swindon', 'beds', null), ('2015', 'UK535C1', 'Swindon', 'ons_per_res_pop', null), ('2015', 'UK535C1', 'Swindon', 'beds_per_1000res_pop', null), ('2015', 'UK536C1', 'Stockton-on-Tees', 'ons', null), ('2015', 'UK536C1', 'Stockton-on-Tees', 'beds', null), ('2015', 'UK536C1', 'Stockton-on-Tees', 'ons_per_res_pop', null), ('2015', 'UK536C1', 'Stockton-on-Tees', 'beds_per_1000res_pop', null), ('2015', 'UK537C1', 'St. Helens', 'ons', null), ('2015', 'UK537C1', 'St. Helens', 'beds', null), ('2015', 'UK537C1', 'St. Helens', 'ons_per_res_pop', null), ('2015', 'UK537C1', 'St. Helens', 'beds_per_1000res_pop', null), ('2015', 'UK538C1', 'Basildon', 'ons', null), ('2015', 'UK538C1', 'Basildon', 'beds', null), ('2015', 'UK538C1', 'Basildon', 'ons_per_res_pop', null), ('2015', 'UK538C1', 'Basildon', 'beds_per_1000res_pop', null), ('2015', 'UK539C1', 'Bournemouth', 'ons', '4038000'), ('2015', 'UK539C1', 'Bournemouth', 'beds', '14197'), ('2015', 'UK539C1', 'Bournemouth', 'ons_per_res_pop', '20.9'), ('2015', 'UK539C1', 'Bournemouth', 'beds_per_1000res_pop', '73.6'), ('2015', 'UK540C1', 'Wycombe', 'ons', null), ('2015', 'UK540C1', 'Wycombe', 'beds', null), ('2015', 'UK540C1', 'Wycombe', 'ons_per_res_pop', null), ('2015', 'UK540C1', 'Wycombe', 'beds_per_1000res_pop', null), ('2015', 'UK541C1', 'Southend-on-Sea', 'ons', null), ('2015', 'UK541C1', 'Southend-on-Sea', 'beds', null), ('2015', 'UK541C1', 'Southend-on-Sea', 'ons_per_res_pop', null), ('2015', 'UK541C1', 'Southend-on-Sea', 'beds_per_1000res_pop', null), ('2015', 'UK542C1', 'Telford and Wrekin', 'ons', null), ('2015', 'UK542C1', 'Telford and Wrekin', 'beds', null), ('2015', 'UK542C1', 'Telford and Wrekin', 'ons_per_res_pop', null), ('2015', 'UK542C1', 'Telford and Wrekin', 'beds_per_1000res_pop', null), ('2015', 'UK543C1', 'North East Lincolnshire', 'ons', null), ('2015', 'UK543C1', 'North East Lincolnshire', 'beds', null), ('2015', 'UK543C1', 'North East Lincolnshire', 'ons_per_res_pop', null), ('2015', 'UK543C1', 'North East Lincolnshire', 'beds_per_1000res_pop', null), ('2015', 'UK544C1', 'Chelmsford', 'ons', null), ('2015', 'UK544C1', 'Chelmsford', 'beds', null), ('2015', 'UK544C1', 'Chelmsford', 'ons_per_res_pop', null), ('2015', 'UK544C1', 'Chelmsford', 'beds_per_1000res_pop', null), ('2015', 'UK545C1', 'Peterborough', 'ons', null), ('2015', 'UK545C1', 'Peterborough', 'beds', null), ('2015', 'UK545C1', 'Peterborough', 'ons_per_res_pop', null), ('2015', 'UK545C1', 'Peterborough', 'beds_per_1000res_pop', null), ('2015', 'UK546C1', 'Colchester', 'ons', null), ('2015', 'UK546C1', 'Colchester', 'beds', null), ('2015', 'UK546C1', 'Colchester', 'ons_per_res_pop', null), ('2015', 'UK546C1', 'Colchester', 'beds_per_1000res_pop', null), ('2015', 'UK547C1', 'South Tyneside', 'ons', null), ('2015', 'UK547C1', 'South Tyneside', 'beds', null), ('2015', 'UK547C1', 'South Tyneside', 'ons_per_res_pop', null), ('2015', 'UK547C1', 'South Tyneside', 'beds_per_1000res_pop', null), ('2015', 'UK548C1', 'Basingstoke and Deane', 'ons', null), ('2015', 'UK548C1', 'Basingstoke and Deane', 'beds', null), ('2015', 'UK548C1', 'Basingstoke and Deane', 'ons_per_res_pop', null), ('2015', 'UK548C1', 'Basingstoke and Deane', 'beds_per_1000res_pop', null), ('2015', 'UK549C1', 'Bedford', 'ons', null), ('2015', 'UK549C1', 'Bedford', 'beds', null), ('2015', 'UK549C1', 'Bedford', 'ons_per_res_pop', null), ('2015', 'UK549C1', 'Bedford', 'beds_per_1000res_pop', null), ('2015', 'UK550C1', 'Dundee City', 'ons', null), ('2015', 'UK550C1', 'Dundee City', 'beds', null), ('2015', 'UK550C1', 'Dundee City', 'ons_per_res_pop', null), ('2015', 'UK550C1', 'Dundee City', 'beds_per_1000res_pop', null), ('2015', 'UK551C1', 'Falkirk', 'ons', null), ('2015', 'UK551C1', 'Falkirk', 'beds', null), ('2015', 'UK551C1', 'Falkirk', 'ons_per_res_pop', null), ('2015', 'UK551C1', 'Falkirk', 'beds_per_1000res_pop', null), ('2015', 'UK552C1', 'Reading', 'ons', null), ('2015', 'UK552C1', 'Reading', 'beds', null), ('2015', 'UK552C1', 'Reading', 'ons_per_res_pop', null), ('2015', 'UK552C1', 'Reading', 'beds_per_1000res_pop', null), ('2015', 'UK553C1', 'Blackpool', 'ons', null), ('2015', 'UK553C1', 'Blackpool', 'beds', null), ('2015', 'UK553C1', 'Blackpool', 'ons_per_res_pop', null), ('2015', 'UK553C1', 'Blackpool', 'beds_per_1000res_pop', null), ('2015', 'UK554C1', 'Maidstone', 'ons', null), ('2015', 'UK554C1', 'Maidstone', 'beds', null), ('2015', 'UK554C1', 'Maidstone', 'ons_per_res_pop', null), ('2015', 'UK554C1', 'Maidstone', 'beds_per_1000res_pop', null), ('2015', 'UK555C1', 'Poole', 'ons', '1649000'), ('2015', 'UK555C1', 'Poole', 'beds', '6381'), ('2015', 'UK555C1', 'Poole', 'ons_per_res_pop', '11'), ('2015', 'UK555C1', 'Poole', 'beds_per_1000res_pop', '42.4'), ('2015', 'UK556C1', 'Dacorum', 'ons', null), ('2015', 'UK556C1', 'Dacorum', 'beds', null), ('2015', 'UK556C1', 'Dacorum', 'ons_per_res_pop', null), ('2015', 'UK556C1', 'Dacorum', 'beds_per_1000res_pop', null), ('2015', 'UK557C1', 'Blackburn with Darwen', 'ons', null), ('2015', 'UK557C1', 'Blackburn with Darwen', 'beds', null), ('2015', 'UK557C1', 'Blackburn with Darwen', 'ons_per_res_pop', null), ('2015', 'UK557C1', 'Blackburn with Darwen', 'beds_per_1000res_pop', null), ('2015', 'UK558C1', 'Newport', 'ons', null), ('2015', 'UK558C1', 'Newport', 'beds', null), ('2015', 'UK558C1', 'Newport', 'ons_per_res_pop', null), ('2015', 'UK558C1', 'Newport', 'beds_per_1000res_pop', null), ('2015', 'UK559C1', 'Middlesbrough', 'ons', null), ('2015', 'UK559C1', 'Middlesbrough', 'beds', null), ('2015', 'UK559C1', 'Middlesbrough', 'ons_per_res_pop', null), ('2015', 'UK559C1', 'Middlesbrough', 'beds_per_1000res_pop', null), ('2015', 'UK560C1', 'Oxford', 'ons', null), ('2015', 'UK560C1', 'Oxford', 'beds', null), ('2015', 'UK560C1', 'Oxford', 'ons_per_res_pop', null), ('2015', 'UK560C1', 'Oxford', 'beds_per_1000res_pop', null), ('2015', 'UK561C1', 'Torbay', 'ons', null), ('2015', 'UK561C1', 'Torbay', 'beds', null), ('2015', 'UK561C1', 'Torbay', 'ons_per_res_pop', null), ('2015', 'UK561C1', 'Torbay', 'beds_per_1000res_pop', null), ('2015', 'UK562C1', 'Preston', 'ons', null), ('2015', 'UK562C1', 'Preston', 'beds', null), ('2015', 'UK562C1', 'Preston', 'ons_per_res_pop', null), ('2015', 'UK562C1', 'Preston', 'beds_per_1000res_pop', null), ('2015', 'UK563C1', 'St Albans', 'ons', null), ('2015', 'UK563C1', 'St Albans', 'beds', null), ('2015', 'UK563C1', 'St Albans', 'ons_per_res_pop', null), ('2015', 'UK563C1', 'St Albans', 'beds_per_1000res_pop', null), ('2015', 'UK564C1', 'Warwick', 'ons', null), ('2015', 'UK564C1', 'Warwick', 'beds', null), ('2015', 'UK564C1', 'Warwick', 'ons_per_res_pop', null), ('2015', 'UK564C1', 'Warwick', 'beds_per_1000res_pop', null), ('2015', 'UK565C1', 'Newcastle-under-Lyme', 'ons', null), ('2015', 'UK565C1', 'Newcastle-under-Lyme', 'beds', null), ('2015', 'UK565C1', 'Newcastle-under-Lyme', 'ons_per_res_pop', null), ('2015', 'UK565C1', 'Newcastle-under-Lyme', 'beds_per_1000res_pop', null), ('2015', 'UK566C1', 'Norwich', 'ons', null), ('2015', 'UK566C1', 'Norwich', 'beds', null), ('2015', 'UK566C1', 'Norwich', 'ons_per_res_pop', null), ('2015', 'UK566C1', 'Norwich', 'beds_per_1000res_pop', null), ('2015', 'UK567C1', 'Slough', 'ons', null), ('2015', 'UK567C1', 'Slough', 'beds', null), ('2015', 'UK567C1', 'Slough', 'ons_per_res_pop', null), ('2015', 'UK567C1', 'Slough', 'beds_per_1000res_pop', null), ('2015', 'UK568C2', 'Cheshire West and Chester', 'ons', null), ('2015', 'UK568C2', 'Cheshire West and Chester', 'beds', null), ('2015', 'UK568C2', 'Cheshire West and Chester', 'ons_per_res_pop', null), ('2015', 'UK568C2', 'Cheshire West and Chester', 'beds_per_1000res_pop', null), ('2015', 'UK569C1', 'Ipswich', 'ons', null), ('2015', 'UK569C1', 'Ipswich', 'beds', null), ('2015', 'UK569C1', 'Ipswich', 'ons_per_res_pop', null), ('2015', 'UK569C1', 'Ipswich', 'beds_per_1000res_pop', null), ('2015', 'UK571C1', 'Cheltenham', 'ons', null), ('2015', 'UK571C1', 'Cheltenham', 'beds', null), ('2015', 'UK571C1', 'Cheltenham', 'ons_per_res_pop', null), ('2015', 'UK571C1', 'Cheltenham', 'beds_per_1000res_pop', null), ('2015', 'UK572C1', 'Gloucester', 'ons', null), ('2015', 'UK572C1', 'Gloucester', 'beds', null), ('2015', 'UK572C1', 'Gloucester', 'ons_per_res_pop', null), ('2015', 'UK572C1', 'Gloucester', 'beds_per_1000res_pop', null), ('2015', 'UK573C1', 'Bracknell Forest', 'ons', null), ('2015', 'UK573C1', 'Bracknell Forest', 'beds', null), ('2015', 'UK573C1', 'Bracknell Forest', 'ons_per_res_pop', null), ('2015', 'UK573C1', 'Bracknell Forest', 'beds_per_1000res_pop', null), ('2015', 'UK575C1', 'Carlisle', 'ons', null), ('2015', 'UK575C1', 'Carlisle', 'beds', null), ('2015', 'UK575C1', 'Carlisle', 'ons_per_res_pop', null), ('2015', 'UK575C1', 'Carlisle', 'beds_per_1000res_pop', null), ('2015', 'UK576C1', 'Crawley', 'ons', null), ('2015', 'UK576C1', 'Crawley', 'beds', null), ('2015', 'UK576C1', 'Crawley', 'ons_per_res_pop', null), ('2015', 'UK576C1', 'Crawley', 'beds_per_1000res_pop', null), ('2015', 'UK577C1', 'Watford', 'ons', null), ('2015', 'UK577C1', 'Watford', 'beds', null), ('2015', 'UK577C1', 'Watford', 'ons_per_res_pop', null), ('2015', 'UK577C1', 'Watford', 'beds_per_1000res_pop', null), ('2015', 'UK578C1', 'Gosport', 'ons', null), ('2015', 'UK578C1', 'Gosport', 'beds', null), ('2015', 'UK578C1', 'Gosport', 'ons_per_res_pop', null), ('2015', 'UK578C1', 'Gosport', 'beds_per_1000res_pop', null), ('2015', 'UK579C1', 'Eastleigh', 'ons', null), ('2015', 'UK579C1', 'Eastleigh', 'beds', null), ('2015', 'UK579C1', 'Eastleigh', 'ons_per_res_pop', null), ('2015', 'UK579C1', 'Eastleigh', 'beds_per_1000res_pop', null), ('2015', 'UK580C1', 'Rushmoor', 'ons', null), ('2015', 'UK580C1', 'Rushmoor', 'beds', null), ('2015', 'UK580C1', 'Rushmoor', 'ons_per_res_pop', null), ('2015', 'UK580C1', 'Rushmoor', 'beds_per_1000res_pop', null), ('2015', 'UK581C1', 'Rugby', 'ons', null), ('2015', 'UK581C1', 'Rugby', 'beds', null), ('2015', 'UK581C1', 'Rugby', 'ons_per_res_pop', null), ('2015', 'UK581C1', 'Rugby', 'beds_per_1000res_pop', null), ('2015', 'UK582C1', 'Corby', 'ons', null), ('2015', 'UK582C1', 'Corby', 'beds', null), ('2015', 'UK582C1', 'Corby', 'ons_per_res_pop', null), ('2015', 'UK582C1', 'Corby', 'beds_per_1000res_pop', null), ('2015', 'UK583C1', 'Kettering', 'ons', null), ('2015', 'UK583C1', 'Kettering', 'beds', null), ('2015', 'UK583C1', 'Kettering', 'ons_per_res_pop', null), ('2015', 'UK583C1', 'Kettering', 'beds_per_1000res_pop', null), ('2015', 'UK584C1', 'Inverclyde (Greenock)', 'ons', null), ('2015', 'UK584C1', 'Inverclyde (Greenock)', 'beds', null), ('2015', 'UK584C1', 'Inverclyde (Greenock)', 'ons_per_res_pop', null), ('2015', 'UK584C1', 'Inverclyde (Greenock)', 'beds_per_1000res_pop', null), ('2015', 'UK585C1', 'Renfrewshire (Paisley)', 'ons', null), ('2015', 'UK585C1', 'Renfrewshire (Paisley)', 'beds', null), ('2015', 'UK585C1', 'Renfrewshire (Paisley)', 'ons_per_res_pop', null), ('2015', 'UK585C1', 'Renfrewshire (Paisley)', 'beds_per_1000res_pop', null), ('2015', 'UK586C1', 'Derry & Strabane Local Government District', 'ons', '889416'), ('2015', 'UK586C1', 'Derry & Strabane Local Government District', 'beds', '2779'), ('2015', 'UK586C1', 'Derry & Strabane Local Government District', 'ons_per_res_pop', '6'), ('2015', 'UK586C1', 'Derry & Strabane Local Government District', 'beds_per_1000res_pop', '18.6'), ('2015', 'TR001C1', 'Ankara', 'ons', null), ('2015', 'TR001C1', 'Ankara', 'beds', null), ('2015', 'TR001C1', 'Ankara', 'ons_per_res_pop', null), ('2015', 'TR001C1', 'Ankara', 'beds_per_1000res_pop', null), ('2015', 'TR002C1', 'Adana', 'ons', null), ('2015', 'TR002C1', 'Adana', 'beds', null), ('2015', 'TR002C1', 'Adana', 'ons_per_res_pop', null), ('2015', 'TR002C1', 'Adana', 'beds_per_1000res_pop', null), ('2015', 'TR003C1', 'Antalya', 'ons', null), ('2015', 'TR003C1', 'Antalya', 'beds', null), ('2015', 'TR003C1', 'Antalya', 'ons_per_res_pop', null), ('2015', 'TR003C1', 'Antalya', 'beds_per_1000res_pop', null), ('2015', 'TR004C1', 'Balikesir', 'ons', null), ('2015', 'TR004C1', 'Balikesir', 'beds', null), ('2015', 'TR004C1', 'Balikesir', 'ons_per_res_pop', null), ('2015', 'TR004C1', 'Balikesir', 'beds_per_1000res_pop', null), ('2015', 'TR005C1', 'Bursa', 'ons', null), ('2015', 'TR005C1', 'Bursa', 'beds', null), ('2015', 'TR005C1', 'Bursa', 'ons_per_res_pop', null), ('2015', 'TR005C1', 'Bursa', 'beds_per_1000res_pop', null), ('2015', 'TR006C1', 'Denizli', 'ons', null), ('2015', 'TR006C1', 'Denizli', 'beds', null), ('2015', 'TR006C1', 'Denizli', 'ons_per_res_pop', null), ('2015', 'TR006C1', 'Denizli', 'beds_per_1000res_pop', null), ('2015', 'TR007C1', 'Diyarbakir', 'ons', null), ('2015', 'TR007C1', 'Diyarbakir', 'beds', null), ('2015', 'TR007C1', 'Diyarbakir', 'ons_per_res_pop', null), ('2015', 'TR007C1', 'Diyarbakir', 'beds_per_1000res_pop', null), ('2015', 'TR008C1', 'Edirne', 'ons', null), ('2015', 'TR008C1', 'Edirne', 'beds', null), ('2015', 'TR008C1', 'Edirne', 'ons_per_res_pop', null), ('2015', 'TR008C1', 'Edirne', 'beds_per_1000res_pop', null), ('2015', 'TR009C1', 'Erzurum', 'ons', null), ('2015', 'TR009C1', 'Erzurum', 'beds', null), ('2015', 'TR009C1', 'Erzurum', 'ons_per_res_pop', null), ('2015', 'TR009C1', 'Erzurum', 'beds_per_1000res_pop', null), ('2015', 'TR010C1', 'Gaziantep', 'ons', null), ('2015', 'TR010C1', 'Gaziantep', 'beds', null), ('2015', 'TR010C1', 'Gaziantep', 'ons_per_res_pop', null), ('2015', 'TR010C1', 'Gaziantep', 'beds_per_1000res_pop', null), ('2015', 'TR011C1', 'Hatay', 'ons', null), ('2015', 'TR011C1', 'Hatay', 'beds', null), ('2015', 'TR011C1', 'Hatay', 'ons_per_res_pop', null), ('2015', 'TR011C1', 'Hatay', 'beds_per_1000res_pop', null), ('2015', 'TR012C1', 'Istanbul', 'ons', null), ('2015', 'TR012C1', 'Istanbul', 'beds', null), ('2015', 'TR012C1', 'Istanbul', 'ons_per_res_pop', null), ('2015', 'TR012C1', 'Istanbul', 'beds_per_1000res_pop', null), ('2015', 'TR013C1', 'Izmir', 'ons', null), ('2015', 'TR013C1', 'Izmir', 'beds', null), ('2015', 'TR013C1', 'Izmir', 'ons_per_res_pop', null), ('2015', 'TR013C1', 'Izmir', 'beds_per_1000res_pop', null), ('2015', 'TR014C1', 'Kars', 'ons', null), ('2015', 'TR014C1', 'Kars', 'beds', null), ('2015', 'TR014C1', 'Kars', 'ons_per_res_pop', null), ('2015', 'TR014C1', 'Kars', 'beds_per_1000res_pop', null), ('2015', 'TR015C1', 'Kastamonu', 'ons', null), ('2015', 'TR015C1', 'Kastamonu', 'beds', null), ('2015', 'TR015C1', 'Kastamonu', 'ons_per_res_pop', null), ('2015', 'TR015C1', 'Kastamonu', 'beds_per_1000res_pop', null), ('2015', 'TR016C1', 'Kayseri', 'ons', null), ('2015', 'TR016C1', 'Kayseri', 'beds', null), ('2015', 'TR016C1', 'Kayseri', 'ons_per_res_pop', null), ('2015', 'TR016C1', 'Kayseri', 'beds_per_1000res_pop', null), ('2015', 'TR017C1', 'Kocaeli', 'ons', null), ('2015', 'TR017C1', 'Kocaeli', 'beds', null), ('2015', 'TR017C1', 'Kocaeli', 'ons_per_res_pop', null), ('2015', 'TR017C1', 'Kocaeli', 'beds_per_1000res_pop', null), ('2015', 'TR018C1', 'Konya', 'ons', null), ('2015', 'TR018C1', 'Konya', 'beds', null), ('2015', 'TR018C1', 'Konya', 'ons_per_res_pop', null), ('2015', 'TR018C1', 'Konya', 'beds_per_1000res_pop', null), ('2015', 'TR019C1', 'Malatya', 'ons', null), ('2015', 'TR019C1', 'Malatya', 'beds', null), ('2015', 'TR019C1', 'Malatya', 'ons_per_res_pop', null), ('2015', 'TR019C1', 'Malatya', 'beds_per_1000res_pop', null), ('2015', 'TR020C1', 'Manisa', 'ons', null), ('2015', 'TR020C1', 'Manisa', 'beds', null), ('2015', 'TR020C1', 'Manisa', 'ons_per_res_pop', null), ('2015', 'TR020C1', 'Manisa', 'beds_per_1000res_pop', null), ('2015', 'TR021C1', 'Nevsehir', 'ons', null), ('2015', 'TR021C1', 'Nevsehir', 'beds', null), ('2015', 'TR021C1', 'Nevsehir', 'ons_per_res_pop', null), ('2015', 'TR021C1', 'Nevsehir', 'beds_per_1000res_pop', null), ('2015', 'TR022C1', 'Samsun', 'ons', null), ('2015', 'TR022C1', 'Samsun', 'beds', null), ('2015', 'TR022C1', 'Samsun', 'ons_per_res_pop', null), ('2015', 'TR022C1', 'Samsun', 'beds_per_1000res_pop', null), ('2015', 'TR023C1', 'Siirt', 'ons', null), ('2015', 'TR023C1', 'Siirt', 'beds', null), ('2015', 'TR023C1', 'Siirt', 'ons_per_res_pop', null), ('2015', 'TR023C1', 'Siirt', 'beds_per_1000res_pop', null), ('2015', 'TR024C1', 'Trabzon', 'ons', null), ('2015', 'TR024C1', 'Trabzon', 'beds', null), ('2015', 'TR024C1', 'Trabzon', 'ons_per_res_pop', null), ('2015', 'TR024C1', 'Trabzon', 'beds_per_1000res_pop', null), ('2015', 'TR025C1', 'Van', 'ons', null), ('2015', 'TR025C1', 'Van', 'beds', null), ('2015', 'TR025C1', 'Van', 'ons_per_res_pop', null), ('2015', 'TR025C1', 'Van', 'beds_per_1000res_pop', null), ('2015', 'TR026C1', 'Zonguldak', 'ons', null), ('2015', 'TR026C1', 'Zonguldak', 'beds', null), ('2015', 'TR026C1', 'Zonguldak', 'ons_per_res_pop', null), ('2015', 'TR026C1', 'Zonguldak', 'beds_per_1000res_pop', null), ('2015', 'NO', 'Norge', 'ons', null), ('2015', 'NO', 'Norge', 'beds', null), ('2015', 'NO', 'Norge', 'ons_per_res_pop', null), ('2015', 'NO', 'Norge', 'beds_per_1000res_pop', null), ('2015', 'NO001C1', 'Oslo', 'ons', null), ('2015', 'NO001C1', 'Oslo', 'beds', null), ('2015', 'NO001C1', 'Oslo', 'ons_per_res_pop', null), ('2015', 'NO001C1', 'Oslo', 'beds_per_1000res_pop', null), ('2015', 'NO002C1', 'Bergen', 'ons', null), ('2015', 'NO002C1', 'Bergen', 'beds', null), ('2015', 'NO002C1', 'Bergen', 'ons_per_res_pop', null), ('2015', 'NO002C1', 'Bergen', 'beds_per_1000res_pop', null), ('2015', 'NO003C1', 'Trondheim', 'ons', null), ('2015', 'NO003C1', 'Trondheim', 'beds', null), ('2015', 'NO003C1', 'Trondheim', 'ons_per_res_pop', null), ('2015', 'NO003C1', 'Trondheim', 'beds_per_1000res_pop', null), ('2015', 'NO004C1', 'Stavanger', 'ons', null), ('2015', 'NO004C1', 'Stavanger', 'beds', null), ('2015', 'NO004C1', 'Stavanger', 'ons_per_res_pop', null), ('2015', 'NO004C1', 'Stavanger', 'beds_per_1000res_pop', null), ('2015', 'NO005C1', 'Kristiansand', 'ons', null), ('2015', 'NO005C1', 'Kristiansand', 'beds', null), ('2015', 'NO005C1', 'Kristiansand', 'ons_per_res_pop', null), ('2015', 'NO005C1', 'Kristiansand', 'beds_per_1000res_pop', null), ('2015', 'NO006C1', 'Tromsø', 'ons', null), ('2015', 'NO006C1', 'Tromsø', 'beds', null), ('2015', 'NO006C1', 'Tromsø', 'ons_per_res_pop', null), ('2015', 'NO006C1', 'Tromsø', 'beds_per_1000res_pop', null), ('2015', 'CH', 'Schweiz/Suisse', 'ons', null), ('2015', 'CH', 'Schweiz/Suisse', 'beds', null), ('2015', 'CH', 'Schweiz/Suisse', 'ons_per_res_pop', null), ('2015', 'CH', 'Schweiz/Suisse', 'beds_per_1000res_pop', null), ('2015', 'CH001C1', 'Zürich', 'ons', null), ('2015', 'CH001C1', 'Zürich', 'beds', null), ('2015', 'CH001C1', 'Zürich', 'ons_per_res_pop', null), ('2015', 'CH001C1', 'Zürich', 'beds_per_1000res_pop', null), ('2015', 'CH002C1', 'Genève', 'ons', null), ('2015', 'CH002C1', 'Genève', 'beds', null), ('2015', 'CH002C1', 'Genève', 'ons_per_res_pop', null), ('2015', 'CH002C1', 'Genève', 'beds_per_1000res_pop', null), ('2015', 'CH003C1', 'Basel', 'ons', null), ('2015', 'CH003C1', 'Basel', 'beds', null), ('2015', 'CH003C1', 'Basel', 'ons_per_res_pop', null), ('2015', 'CH003C1', 'Basel', 'beds_per_1000res_pop', null), ('2015', 'CH004C1', 'Bern', 'ons', null), ('2015', 'CH004C1', 'Bern', 'beds', null), ('2015', 'CH004C1', 'Bern', 'ons_per_res_pop', null), ('2015', 'CH004C1', 'Bern', 'beds_per_1000res_pop', null), ('2015', 'CH005C1', 'Lausanne', 'ons', null), ('2015', 'CH005C1', 'Lausanne', 'beds', null), ('2015', 'CH005C1', 'Lausanne', 'ons_per_res_pop', null), ('2015', 'CH005C1', 'Lausanne', 'beds_per_1000res_pop', null), ('2015', 'CH006C1', 'Winterthur', 'ons', null), ('2015', 'CH006C1', 'Winterthur', 'beds', null), ('2015', 'CH006C1', 'Winterthur', 'ons_per_res_pop', null), ('2015', 'CH006C1', 'Winterthur', 'beds_per_1000res_pop', null), ('2015', 'CH007C1', 'St. Gallen', 'ons', null), ('2015', 'CH007C1', 'St. Gallen', 'beds', null), ('2015', 'CH007C1', 'St. Gallen', 'ons_per_res_pop', null), ('2015', 'CH007C1', 'St. Gallen', 'beds_per_1000res_pop', null), ('2015', 'CH008C1', 'Luzern', 'ons', null), ('2015', 'CH008C1', 'Luzern', 'beds', null), ('2015', 'CH008C1', 'Luzern', 'ons_per_res_pop', null), ('2015', 'CH008C1', 'Luzern', 'beds_per_1000res_pop', null), ('2015', 'CH009C2', 'Lugano', 'ons', null), ('2015', 'CH009C2', 'Lugano', 'beds', null), ('2015', 'CH009C2', 'Lugano', 'ons_per_res_pop', null), ('2015', 'CH009C2', 'Lugano', 'beds_per_1000res_pop', null), ('2015', 'CH010C1', 'Biel/Bienne', 'ons', null), ('2015', 'CH010C1', 'Biel/Bienne', 'beds', null), ('2015', 'CH010C1', 'Biel/Bienne', 'ons_per_res_pop', null), ('2015', 'CH010C1', 'Biel/Bienne', 'beds_per_1000res_pop', null), ('2016', 'BE', 'Belgium', 'ons', '34083462'), ('2016', 'BE', 'Belgium', 'beds', '280991'), ('2016', 'BE', 'Belgium', 'ons_per_res_pop', '3'), ('2016', 'BE', 'Belgium', 'beds_per_1000res_pop', '24.9'), ('2016', 'BE001C1', 'Bruxelles / Brussel', 'ons', '5210495'), ('2016', 'BE001C1', 'Bruxelles / Brussel', 'beds', '38908'), ('2016', 'BE001C1', 'Bruxelles / Brussel', 'ons_per_res_pop', '4.3'), ('2016', 'BE001C1', 'Bruxelles / Brussel', 'beds_per_1000res_pop', '32.4'), ('2016', 'BE002C1', 'Antwerpen', 'ons', null), ('2016', 'BE002C1', 'Antwerpen', 'beds', '12447'), ('2016', 'BE002C1', 'Antwerpen', 'ons_per_res_pop', null), ('2016', 'BE002C1', 'Antwerpen', 'beds_per_1000res_pop', '24'), ('2016', 'BE003C1', 'Gent', 'ons', null), ('2016', 'BE003C1', 'Gent', 'beds', '6611'), ('2016', 'BE003C1', 'Gent', 'ons_per_res_pop', null), ('2016', 'BE003C1', 'Gent', 'beds_per_1000res_pop', '25.7'), ('2016', 'BE004C1', 'Charleroi', 'ons', '247045'), ('2016', 'BE004C1', 'Charleroi', 'beds', '1462'), ('2016', 'BE004C1', 'Charleroi', 'ons_per_res_pop', '1.2'), ('2016', 'BE004C1', 'Charleroi', 'beds_per_1000res_pop', '7.2'), ('2016', 'BE005C1', 'Liège', 'ons', null), ('2016', 'BE005C1', 'Liège', 'beds', '2713'), ('2016', 'BE005C1', 'Liège', 'ons_per_res_pop', null), ('2016', 'BE005C1', 'Liège', 'beds_per_1000res_pop', '7.1'), ('2016', 'BE006C1', 'Brugge', 'ons', null), ('2016', 'BE006C1', 'Brugge', 'beds', '10817'), ('2016', 'BE006C1', 'Brugge', 'ons_per_res_pop', null), ('2016', 'BE006C1', 'Brugge', 'beds_per_1000res_pop', '91.5'), ('2016', 'BE007C1', 'Namur', 'ons', null), ('2016', 'BE007C1', 'Namur', 'beds', '1291'), ('2016', 'BE007C1', 'Namur', 'ons_per_res_pop', null), ('2016', 'BE007C1', 'Namur', 'beds_per_1000res_pop', '11.7'), ('2016', 'BE008C1', 'Leuven', 'ons', '487960'), ('2016', 'BE008C1', 'Leuven', 'beds', '3503'), ('2016', 'BE008C1', 'Leuven', 'ons_per_res_pop', '4.9'), ('2016', 'BE008C1', 'Leuven', 'beds_per_1000res_pop', '35.3'), ('2016', 'BE009C1', 'Mons', 'ons', '173259'), ('2016', 'BE009C1', 'Mons', 'beds', '1398'), ('2016', 'BE009C1', 'Mons', 'ons_per_res_pop', '1.8'), ('2016', 'BE009C1', 'Mons', 'beds_per_1000res_pop', '14.7'), ('2016', 'BE010C1', 'Kortrijk', 'ons', '232184'), ('2016', 'BE010C1', 'Kortrijk', 'beds', '1844'), ('2016', 'BE010C1', 'Kortrijk', 'ons_per_res_pop', '3.1'), ('2016', 'BE010C1', 'Kortrijk', 'beds_per_1000res_pop', '24.4'), ('2016', 'BE011C1', 'Oostende', 'ons', '1254283'), ('2016', 'BE011C1', 'Oostende', 'beds', '6768'), ('2016', 'BE011C1', 'Oostende', 'ons_per_res_pop', '17.7'), ('2016', 'BE011C1', 'Oostende', 'beds_per_1000res_pop', '95.6'), ('2016', 'BG', 'Bulgaria', 'ons', '25185996'), ('2016', 'BG', 'Bulgaria', 'beds', '328264'), ('2016', 'BG', 'Bulgaria', 'ons_per_res_pop', '3.5'), ('2016', 'BG', 'Bulgaria', 'beds_per_1000res_pop', '45.9'), ('2016', 'BG001C1', 'Sofia', 'ons', '1751999'), ('2016', 'BG001C1', 'Sofia', 'beds', '11612'), ('2016', 'BG001C1', 'Sofia', 'ons_per_res_pop', '1.4'), ('2016', 'BG001C1', 'Sofia', 'beds_per_1000res_pop', '9.4'), ('2016', 'BG002C1', 'Plovdiv', 'ons', '483762'), ('2016', 'BG002C1', 'Plovdiv', 'beds', '4025'), ('2016', 'BG002C1', 'Plovdiv', 'ons_per_res_pop', '1.4'), ('2016', 'BG002C1', 'Plovdiv', 'beds_per_1000res_pop', '11.8'), ('2016', 'BG003C1', 'Varna', 'ons', '5059435'), ('2016', 'BG003C1', 'Varna', 'beds', '57807'), ('2016', 'BG003C1', 'Varna', 'ons_per_res_pop', '15.1'), ('2016', 'BG003C1', 'Varna', 'beds_per_1000res_pop', '172.8'), ('2016', 'BG004C1', 'Burgas', 'ons', '361207'), ('2016', 'BG004C1', 'Burgas', 'beds', '4033'), ('2016', 'BG004C1', 'Burgas', 'ons_per_res_pop', '1.8'), ('2016', 'BG004C1', 'Burgas', 'beds_per_1000res_pop', '19.9'), ('2016', 'BG005C1', 'Pleven', 'ons', '68251'), ('2016', 'BG005C1', 'Pleven', 'beds', '892'), ('2016', 'BG005C1', 'Pleven', 'ons_per_res_pop', '0.7'), ('2016', 'BG005C1', 'Pleven', 'beds_per_1000res_pop', '9'), ('2016', 'BG006C1', 'Ruse', 'ons', '134091'), ('2016', 'BG006C1', 'Ruse', 'beds', '1518'), ('2016', 'BG006C1', 'Ruse', 'ons_per_res_pop', '0.9'), ('2016', 'BG006C1', 'Ruse', 'beds_per_1000res_pop', '10.4'), ('2016', 'BG007C1', 'Vidin', 'ons', '35602'), ('2016', 'BG007C1', 'Vidin', 'beds', '576'), ('2016', 'BG007C1', 'Vidin', 'ons_per_res_pop', '0.8'), ('2016', 'BG007C1', 'Vidin', 'beds_per_1000res_pop', '13.2'), ('2016', 'BG008C1', 'Stara Zagora', 'ons', '117771'), ('2016', 'BG008C1', 'Stara Zagora', 'beds', '1070'), ('2016', 'BG008C1', 'Stara Zagora', 'ons_per_res_pop', '0.9'), ('2016', 'BG008C1', 'Stara Zagora', 'beds_per_1000res_pop', '7.8'), ('2016', 'BG009C1', 'Sliven', 'ons', '57752'), ('2016', 'BG009C1', 'Sliven', 'beds', '1296'), ('2016', 'BG009C1', 'Sliven', 'ons_per_res_pop', '0.7'), ('2016', 'BG009C1', 'Sliven', 'beds_per_1000res_pop', '14.7'), ('2016', 'BG010C1', 'Dobrich', 'ons', '46019'), ('2016', 'BG010C1', 'Dobrich', 'beds', '634'), ('2016', 'BG010C1', 'Dobrich', 'ons_per_res_pop', '0.5'), ('2016', 'BG010C1', 'Dobrich', 'beds_per_1000res_pop', '7.3'), ('2016', 'BG011C1', 'Shumen', 'ons', '57959'), ('2016', 'BG011C1', 'Shumen', 'beds', '1060'), ('2016', 'BG011C1', 'Shumen', 'ons_per_res_pop', '0.7'), ('2016', 'BG011C1', 'Shumen', 'beds_per_1000res_pop', '13.6'), ('2016', 'BG012C1', 'Pernik', 'ons', '15093'), ('2016', 'BG012C1', 'Pernik', 'beds', '260'), ('2016', 'BG012C1', 'Pernik', 'ons_per_res_pop', '0.2'), ('2016', 'BG012C1', 'Pernik', 'beds_per_1000res_pop', '3.5'), ('2016', 'BG013C1', 'Yambol', 'ons', '40002'), ('2016', 'BG013C1', 'Yambol', 'beds', '799'), ('2016', 'BG013C1', 'Yambol', 'ons_per_res_pop', '0.6'), ('2016', 'BG013C1', 'Yambol', 'beds_per_1000res_pop', '11.4'), ('2016', 'BG014C1', 'Haskovo', 'ons', '30935'), ('2016', 'BG014C1', 'Haskovo', 'beds', '423'), ('2016', 'BG014C1', 'Haskovo', 'ons_per_res_pop', '0.4'), ('2016', 'BG014C1', 'Haskovo', 'beds_per_1000res_pop', '5.8'), ('2016', 'BG015C1', 'Pazardzhik', 'ons', '34871'), ('2016', 'BG015C1', 'Pazardzhik', 'beds', '448'), ('2016', 'BG015C1', 'Pazardzhik', 'ons_per_res_pop', '0.5'), ('2016', 'BG015C1', 'Pazardzhik', 'beds_per_1000res_pop', '6.5'), ('2016', 'BG016C1', 'Blagoevgrad', 'ons', '57963'), ('2016', 'BG016C1', 'Blagoevgrad', 'beds', '1109'), ('2016', 'BG016C1', 'Blagoevgrad', 'ons_per_res_pop', '0.8'), ('2016', 'BG016C1', 'Blagoevgrad', 'beds_per_1000res_pop', '15.9'), ('2016', 'BG017C1', 'Veliko Tarnovo', 'ons', '164366'), ('2016', 'BG017C1', 'Veliko Tarnovo', 'beds', '2212'), ('2016', 'BG017C1', 'Veliko Tarnovo', 'ons_per_res_pop', '2.4'), ('2016', 'BG017C1', 'Veliko Tarnovo', 'beds_per_1000res_pop', '32.4'), ('2016', 'BG018C1', 'Vratsa', 'ons', '64430'), ('2016', 'BG018C1', 'Vratsa', 'beds', '456'), ('2016', 'BG018C1', 'Vratsa', 'ons_per_res_pop', '1.2'), ('2016', 'BG018C1', 'Vratsa', 'beds_per_1000res_pop', '8.4'), ('2016', 'CZ', 'Czech Republic', 'ons', null), ('2016', 'CZ', 'Czech Republic', 'beds', null), ('2016', 'CZ', 'Czech Republic', 'ons_per_res_pop', null), ('2016', 'CZ', 'Czech Republic', 'beds_per_1000res_pop', null), ('2016', 'CZ001C1', 'Praha', 'ons', null), ('2016', 'CZ001C1', 'Praha', 'beds', null), ('2016', 'CZ001C1', 'Praha', 'ons_per_res_pop', null), ('2016', 'CZ001C1', 'Praha', 'beds_per_1000res_pop', null), ('2016', 'CZ002C1', 'Brno', 'ons', null), ('2016', 'CZ002C1', 'Brno', 'beds', null), ('2016', 'CZ002C1', 'Brno', 'ons_per_res_pop', null), ('2016', 'CZ002C1', 'Brno', 'beds_per_1000res_pop', null), ('2016', 'CZ003C1', 'Ostrava', 'ons', null), ('2016', 'CZ003C1', 'Ostrava', 'beds', null), ('2016', 'CZ003C1', 'Ostrava', 'ons_per_res_pop', null), ('2016', 'CZ003C1', 'Ostrava', 'beds_per_1000res_pop', null), ('2016', 'CZ004C1', 'Plzen', 'ons', null), ('2016', 'CZ004C1', 'Plzen', 'beds', null), ('2016', 'CZ004C1', 'Plzen', 'ons_per_res_pop', null), ('2016', 'CZ004C1', 'Plzen', 'beds_per_1000res_pop', null), ('2016', 'CZ005C1', 'Ústí nad Labem', 'ons', null), ('2016', 'CZ005C1', 'Ústí nad Labem', 'beds', null), ('2016', 'CZ005C1', 'Ústí nad Labem', 'ons_per_res_pop', null), ('2016', 'CZ005C1', 'Ústí nad Labem', 'beds_per_1000res_pop', null), ('2016', 'CZ006C1', 'Olomouc', 'ons', null), ('2016', 'CZ006C1', 'Olomouc', 'beds', null), ('2016', 'CZ006C1', 'Olomouc', 'ons_per_res_pop', null), ('2016', 'CZ006C1', 'Olomouc', 'beds_per_1000res_pop', null), ('2016', 'CZ007C1', 'Liberec', 'ons', null), ('2016', 'CZ007C1', 'Liberec', 'beds', null), ('2016', 'CZ007C1', 'Liberec', 'ons_per_res_pop', null), ('2016', 'CZ007C1', 'Liberec', 'beds_per_1000res_pop', null), ('2016', 'CZ008C1', 'Ceské Budejovice', 'ons', null), ('2016', 'CZ008C1', 'Ceské Budejovice', 'beds', null), ('2016', 'CZ008C1', 'Ceské Budejovice', 'ons_per_res_pop', null), ('2016', 'CZ008C1', 'Ceské Budejovice', 'beds_per_1000res_pop', null), ('2016', 'CZ009C1', 'Hradec Králové', 'ons', null), ('2016', 'CZ009C1', 'Hradec Králové', 'beds', null), ('2016', 'CZ009C1', 'Hradec Králové', 'ons_per_res_pop', null), ('2016', 'CZ009C1', 'Hradec Králové', 'beds_per_1000res_pop', null), ('2016', 'CZ010C1', 'Pardubice', 'ons', null), ('2016', 'CZ010C1', 'Pardubice', 'beds', null), ('2016', 'CZ010C1', 'Pardubice', 'ons_per_res_pop', null), ('2016', 'CZ010C1', 'Pardubice', 'beds_per_1000res_pop', null), ('2016', 'CZ011C1', 'Zlín', 'ons', null), ('2016', 'CZ011C1', 'Zlín', 'beds', null), ('2016', 'CZ011C1', 'Zlín', 'ons_per_res_pop', null), ('2016', 'CZ011C1', 'Zlín', 'beds_per_1000res_pop', null), ('2016', 'CZ012C1', 'Kladno', 'ons', null), ('2016', 'CZ012C1', 'Kladno', 'beds', null), ('2016', 'CZ012C1', 'Kladno', 'ons_per_res_pop', null), ('2016', 'CZ012C1', 'Kladno', 'beds_per_1000res_pop', null), ('2016', 'CZ013C1', 'Karlovy Vary', 'ons', null), ('2016', 'CZ013C1', 'Karlovy Vary', 'beds', null), ('2016', 'CZ013C1', 'Karlovy Vary', 'ons_per_res_pop', null), ('2016', 'CZ013C1', 'Karlovy Vary', 'beds_per_1000res_pop', null), ('2016', 'CZ014C1', 'Jihlava', 'ons', null), ('2016', 'CZ014C1', 'Jihlava', 'beds', null), ('2016', 'CZ014C1', 'Jihlava', 'ons_per_res_pop', null), ('2016', 'CZ014C1', 'Jihlava', 'beds_per_1000res_pop', null), ('2016', 'CZ015C1', 'Havírov', 'ons', null), ('2016', 'CZ015C1', 'Havírov', 'beds', null), ('2016', 'CZ015C1', 'Havírov', 'ons_per_res_pop', null), ('2016', 'CZ015C1', 'Havírov', 'beds_per_1000res_pop', null), ('2016', 'CZ016C1', 'Most', 'ons', null), ('2016', 'CZ016C1', 'Most', 'beds', null), ('2016', 'CZ016C1', 'Most', 'ons_per_res_pop', null), ('2016', 'CZ016C1', 'Most', 'beds_per_1000res_pop', null), ('2016', 'CZ017C1', 'Karviná', 'ons', null), ('2016', 'CZ017C1', 'Karviná', 'beds', null), ('2016', 'CZ017C1', 'Karviná', 'ons_per_res_pop', null), ('2016', 'CZ017C1', 'Karviná', 'beds_per_1000res_pop', null), ('2016', 'CZ018C2', 'Chomutov-Jirkov', 'ons', null), ('2016', 'CZ018C2', 'Chomutov-Jirkov', 'beds', null), ('2016', 'CZ018C2', 'Chomutov-Jirkov', 'ons_per_res_pop', null), ('2016', 'CZ018C2', 'Chomutov-Jirkov', 'beds_per_1000res_pop', null), ('2016', 'DK', 'Denmark', 'ons', null), ('2016', 'DK', 'Denmark', 'beds', null), ('2016', 'DK', 'Denmark', 'ons_per_res_pop', null), ('2016', 'DK', 'Denmark', 'beds_per_1000res_pop', null), ('2016', 'DK001C1', 'København', 'ons', null), ('2016', 'DK001C1', 'København', 'beds', null), ('2016', 'DK001C1', 'København', 'ons_per_res_pop', null), ('2016', 'DK001C1', 'København', 'beds_per_1000res_pop', null), ('2016', 'DK002C1', 'Århus', 'ons', null), ('2016', 'DK002C1', 'Århus', 'beds', null), ('2016', 'DK002C1', 'Århus', 'ons_per_res_pop', null), ('2016', 'DK002C1', 'Århus', 'beds_per_1000res_pop', null), ('2016', 'DK003C1', 'Odense', 'ons', null), ('2016', 'DK003C1', 'Odense', 'beds', null), ('2016', 'DK003C1', 'Odense', 'ons_per_res_pop', null), ('2016', 'DK003C1', 'Odense', 'beds_per_1000res_pop', null), ('2016', 'DK004C2', 'Aalborg', 'ons', null), ('2016', 'DK004C2', 'Aalborg', 'beds', null), ('2016', 'DK004C2', 'Aalborg', 'ons_per_res_pop', null), ('2016', 'DK004C2', 'Aalborg', 'beds_per_1000res_pop', null), ('2016', 'DE', 'Germany', 'ons', '447177524'), ('2016', 'DE', 'Germany', 'beds', '3566749'), ('2016', 'DE', 'Germany', 'ons_per_res_pop', '5.4'), ('2016', 'DE', 'Germany', 'beds_per_1000res_pop', '43.4'), ('2016', 'DE001C1', 'Berlin', 'ons', '31067775'), ('2016', 'DE001C1', 'Berlin', 'beds', '139181'), ('2016', 'DE001C1', 'Berlin', 'ons_per_res_pop', '8.8'), ('2016', 'DE001C1', 'Berlin', 'beds_per_1000res_pop', '39.5'), ('2016', 'DE002C1', 'Hamburg', 'ons', '13193476'), ('2016', 'DE002C1', 'Hamburg', 'beds', '59093'), ('2016', 'DE002C1', 'Hamburg', 'ons_per_res_pop', '7.4'), ('2016', 'DE002C1', 'Hamburg', 'beds_per_1000res_pop', '33.1'), ('2016', 'DE003C1', 'München', 'ons', '14041090'), ('2016', 'DE003C1', 'München', 'beds', '67578'), ('2016', 'DE003C1', 'München', 'ons_per_res_pop', '9.7'), ('2016', 'DE003C1', 'München', 'beds_per_1000res_pop', '46.6'), ('2016', 'DE004C1', 'Köln', 'ons', '5774890'), ('2016', 'DE004C1', 'Köln', 'beds', '31301'), ('2016', 'DE004C1', 'Köln', 'ons_per_res_pop', '5.4'), ('2016', 'DE004C1', 'Köln', 'beds_per_1000res_pop', '29.5'), ('2016', 'DE005C1', 'Frankfurt am Main', 'ons', '8806738'), ('2016', 'DE005C1', 'Frankfurt am Main', 'beds', '47209'), ('2016', 'DE005C1', 'Frankfurt am Main', 'ons_per_res_pop', '12'), ('2016', 'DE005C1', 'Frankfurt am Main', 'beds_per_1000res_pop', '64.4'), ('2016', 'DE006C1', 'Essen', 'ons', '1383934'), ('2016', 'DE006C1', 'Essen', 'beds', '8397'), ('2016', 'DE006C1', 'Essen', 'ons_per_res_pop', '2.4'), ('2016', 'DE006C1', 'Essen', 'beds_per_1000res_pop', '14.4'), ('2016', 'DE007C1', 'Stuttgart', 'ons', '3706017'), ('2016', 'DE007C1', 'Stuttgart', 'beds', '20418'), ('2016', 'DE007C1', 'Stuttgart', 'ons_per_res_pop', '5.9'), ('2016', 'DE007C1', 'Stuttgart', 'beds_per_1000res_pop', '32.7'), ('2016', 'DE008C1', 'Leipzig', 'ons', '2899393'), ('2016', 'DE008C1', 'Leipzig', 'beds', '15033'), ('2016', 'DE008C1', 'Leipzig', 'ons_per_res_pop', '5.2'), ('2016', 'DE008C1', 'Leipzig', 'beds_per_1000res_pop', '26.8'), ('2016', 'DE009C1', 'Dresden', 'ons', '4273074'), ('2016', 'DE009C1', 'Dresden', 'beds', '22181'), ('2016', 'DE009C1', 'Dresden', 'ons_per_res_pop', '7.9'), ('2016', 'DE009C1', 'Dresden', 'beds_per_1000res_pop', '40.8'), ('2016', 'DE010C1', 'Dortmund', 'ons', '1214528'), ('2016', 'DE010C1', 'Dortmund', 'beds', '7102'), ('2016', 'DE010C1', 'Dortmund', 'ons_per_res_pop', '2.1'), ('2016', 'DE010C1', 'Dortmund', 'beds_per_1000res_pop', '12.1'), ('2016', 'DE011C1', 'Düsseldorf', 'ons', '4604675'), ('2016', 'DE011C1', 'Düsseldorf', 'beds', '25354'), ('2016', 'DE011C1', 'Düsseldorf', 'ons_per_res_pop', '7.5'), ('2016', 'DE011C1', 'Düsseldorf', 'beds_per_1000res_pop', '41.4'), ('2016', 'DE012C1', 'Bremen', 'ons', '2004635'), ('2016', 'DE012C1', 'Bremen', 'beds', '11995'), ('2016', 'DE012C1', 'Bremen', 'ons_per_res_pop', '3.6'), ('2016', 'DE012C1', 'Bremen', 'beds_per_1000res_pop', '21.5'), ('2016', 'DE013C1', 'Hannover', 'ons', '2240346'), ('2016', 'DE013C1', 'Hannover', 'beds', '13339'), ('2016', 'DE013C1', 'Hannover', 'ons_per_res_pop', '4.2'), ('2016', 'DE013C1', 'Hannover', 'beds_per_1000res_pop', '25.1'), ('2016', 'DE014C1', 'Nürnberg', 'ons', '3218835'), ('2016', 'DE014C1', 'Nürnberg', 'beds', '18221'), ('2016', 'DE014C1', 'Nürnberg', 'ons_per_res_pop', '6.3'), ('2016', 'DE014C1', 'Nürnberg', 'beds_per_1000res_pop', '35.7'), ('2016', 'DE015C1', 'Bochum', 'ons', '642217'), ('2016', 'DE015C1', 'Bochum', 'beds', '3966'), ('2016', 'DE015C1', 'Bochum', 'ons_per_res_pop', '1.8'), ('2016', 'DE015C1', 'Bochum', 'beds_per_1000res_pop', '10.9'), ('2016', 'DE017C1', 'Bielefeld', 'ons', '619986'), ('2016', 'DE017C1', 'Bielefeld', 'beds', '4076'), ('2016', 'DE017C1', 'Bielefeld', 'ons_per_res_pop', '1.9'), ('2016', 'DE017C1', 'Bielefeld', 'beds_per_1000res_pop', '12.2'), ('2016', 'DE018C1', 'Halle an der Saale', 'ons', '402095'), ('2016', 'DE018C1', 'Halle an der Saale', 'beds', '2669'), ('2016', 'DE018C1', 'Halle an der Saale', 'ons_per_res_pop', '1.7'), ('2016', 'DE018C1', 'Halle an der Saale', 'beds_per_1000res_pop', '11.3'), ('2016', 'DE019C1', 'Magdeburg', 'ons', '629559'), ('2016', 'DE019C1', 'Magdeburg', 'beds', '5095'), ('2016', 'DE019C1', 'Magdeburg', 'ons_per_res_pop', '2.7'), ('2016', 'DE019C1', 'Magdeburg', 'beds_per_1000res_pop', '21.6'), ('2016', 'DE020C1', 'Wiesbaden', 'ons', '1223457'), ('2016', 'DE020C1', 'Wiesbaden', 'beds', '7572'), ('2016', 'DE020C1', 'Wiesbaden', 'ons_per_res_pop', '4.4'), ('2016', 'DE020C1', 'Wiesbaden', 'beds_per_1000res_pop', '27.4'), ('2016', 'DE021C1', 'Göttingen', 'ons', null), ('2016', 'DE021C1', 'Göttingen', 'beds', null), ('2016', 'DE021C1', 'Göttingen', 'ons_per_res_pop', null), ('2016', 'DE021C1', 'Göttingen', 'beds_per_1000res_pop', null), ('2016', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons', '196000'), ('2016', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds', '1631'), ('2016', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons_per_res_pop', '1.2'), ('2016', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds_per_1000res_pop', '9.6'), ('2016', 'DE023C1', 'Moers', 'ons', '109711'), ('2016', 'DE023C1', 'Moers', 'beds', '727'), ('2016', 'DE023C1', 'Moers', 'ons_per_res_pop', '1'), ('2016', 'DE023C1', 'Moers', 'beds_per_1000res_pop', '7'), ('2016', 'DE025C1', 'Darmstadt', 'ons', '714544'), ('2016', 'DE025C1', 'Darmstadt', 'beds', '4530'), ('2016', 'DE025C1', 'Darmstadt', 'ons_per_res_pop', '4.6'), ('2016', 'DE025C1', 'Darmstadt', 'beds_per_1000res_pop', '29.2'), ('2016', 'DE026C1', 'Trier', 'ons', '788651'), ('2016', 'DE026C1', 'Trier', 'beds', '4843'), ('2016', 'DE026C1', 'Trier', 'ons_per_res_pop', '6.9'), ('2016', 'DE026C1', 'Trier', 'beds_per_1000res_pop', '42.1'), ('2016', 'DE027C1', 'Freiburg im Breisgau', 'ons', '1438319'), ('2016', 'DE027C1', 'Freiburg im Breisgau', 'beds', '8444'), ('2016', 'DE027C1', 'Freiburg im Breisgau', 'ons_per_res_pop', '6.4'), ('2016', 'DE027C1', 'Freiburg im Breisgau', 'beds_per_1000res_pop', '37.3'), ('2016', 'DE028C1', 'Regensburg', 'ons', '1064094'), ('2016', 'DE028C1', 'Regensburg', 'beds', '6066'), ('2016', 'DE028C1', 'Regensburg', 'ons_per_res_pop', '7.3'), ('2016', 'DE028C1', 'Regensburg', 'beds_per_1000res_pop', '41.7'), ('2016', 'DE029C1', 'Frankfurt (Oder)', 'ons', '128208'), ('2016', 'DE029C1', 'Frankfurt (Oder)', 'beds', '863'), ('2016', 'DE029C1', 'Frankfurt (Oder)', 'ons_per_res_pop', '2.2'), ('2016', 'DE029C1', 'Frankfurt (Oder)', 'beds_per_1000res_pop', '14.9'), ('2016', 'DE030C1', 'Weimar', 'ons', '715437'), ('2016', 'DE030C1', 'Weimar', 'beds', '4281'), ('2016', 'DE030C1', 'Weimar', 'ons_per_res_pop', '11.2'), ('2016', 'DE030C1', 'Weimar', 'beds_per_1000res_pop', '66.8'), ('2016', 'DE031C1', 'Schwerin', 'ons', '347974'), ('2016', 'DE031C1', 'Schwerin', 'beds', '2665'), ('2016', 'DE031C1', 'Schwerin', 'ons_per_res_pop', '3.6'), ('2016', 'DE031C1', 'Schwerin', 'beds_per_1000res_pop', '27.5'), ('2016', 'DE032C1', 'Erfurt', 'ons', '873682'), ('2016', 'DE032C1', 'Erfurt', 'beds', '5296'), ('2016', 'DE032C1', 'Erfurt', 'ons_per_res_pop', '4.2'), ('2016', 'DE032C1', 'Erfurt', 'beds_per_1000res_pop', '25.2'), ('2016', 'DE033C1', 'Augsburg', 'ons', '759478'), ('2016', 'DE033C1', 'Augsburg', 'beds', '4350'), ('2016', 'DE033C1', 'Augsburg', 'ons_per_res_pop', '2.7'), ('2016', 'DE033C1', 'Augsburg', 'beds_per_1000res_pop', '15.2'), ('2016', 'DE034C1', 'Bonn', 'ons', '1539367'), ('2016', 'DE034C1', 'Bonn', 'beds', '9123'), ('2016', 'DE034C1', 'Bonn', 'ons_per_res_pop', '4.8'), ('2016', 'DE034C1', 'Bonn', 'beds_per_1000res_pop', '28.6'), ('2016', 'DE035C1', 'Karlsruhe', 'ons', '1101223'), ('2016', 'DE035C1', 'Karlsruhe', 'beds', '6698'), ('2016', 'DE035C1', 'Karlsruhe', 'ons_per_res_pop', '3.6'), ('2016', 'DE035C1', 'Karlsruhe', 'beds_per_1000res_pop', '21.8'), ('2016', 'DE036C1', 'Mönchengladbach', 'ons', '324198'), ('2016', 'DE036C1', 'Mönchengladbach', 'beds', '2221'), ('2016', 'DE036C1', 'Mönchengladbach', 'ons_per_res_pop', '1.2'), ('2016', 'DE036C1', 'Mönchengladbach', 'beds_per_1000res_pop', '8.5'), ('2016', 'DE037C1', 'Mainz', 'ons', '934642'), ('2016', 'DE037C1', 'Mainz', 'beds', '5641'), ('2016', 'DE037C1', 'Mainz', 'ons_per_res_pop', '4.5'), ('2016', 'DE037C1', 'Mainz', 'beds_per_1000res_pop', '26.9'), ('2016', 'DE039C1', 'Kiel', 'ons', '668141'), ('2016', 'DE039C1', 'Kiel', 'beds', '4290'), ('2016', 'DE039C1', 'Kiel', 'ons_per_res_pop', '2.7'), ('2016', 'DE039C1', 'Kiel', 'beds_per_1000res_pop', '17.4'), ('2016', 'DE040C1', 'Saarbrücken', 'ons', '544637'), ('2016', 'DE040C1', 'Saarbrücken', 'beds', '3498'), ('2016', 'DE040C1', 'Saarbrücken', 'ons_per_res_pop', '3.1'), ('2016', 'DE040C1', 'Saarbrücken', 'beds_per_1000res_pop', '19.6'), ('2016', 'DE041C1', 'Potsdam', 'ons', '1139389'), ('2016', 'DE041C1', 'Potsdam', 'beds', '5706'), ('2016', 'DE041C1', 'Potsdam', 'ons_per_res_pop', '6.8'), ('2016', 'DE041C1', 'Potsdam', 'beds_per_1000res_pop', '34'), ('2016', 'DE042C1', 'Koblenz', 'ons', '672924'), ('2016', 'DE042C1', 'Koblenz', 'beds', '3859'), ('2016', 'DE042C1', 'Koblenz', 'ons_per_res_pop', '6'), ('2016', 'DE042C1', 'Koblenz', 'beds_per_1000res_pop', '34.3'), ('2016', 'DE043C1', 'Rostock', 'ons', '1966750'), ('2016', 'DE043C1', 'Rostock', 'beds', '14379'), ('2016', 'DE043C1', 'Rostock', 'ons_per_res_pop', '9.5'), ('2016', 'DE043C1', 'Rostock', 'beds_per_1000res_pop', '69.8'), ('2016', 'DE044C1', 'Kaiserslautern', 'ons', '237944'), ('2016', 'DE044C1', 'Kaiserslautern', 'beds', '1615'), ('2016', 'DE044C1', 'Kaiserslautern', 'ons_per_res_pop', '2.4'), ('2016', 'DE044C1', 'Kaiserslautern', 'beds_per_1000res_pop', '16.4'), ('2016', 'DE045C1', 'Iserlohn', 'ons', '72440'), ('2016', 'DE045C1', 'Iserlohn', 'beds', '535'), ('2016', 'DE045C1', 'Iserlohn', 'ons_per_res_pop', '0.8'), ('2016', 'DE045C1', 'Iserlohn', 'beds_per_1000res_pop', '5.7'), ('2016', 'DE046C1', 'Esslingen am Neckar', 'ons', '212441'), ('2016', 'DE046C1', 'Esslingen am Neckar', 'beds', '1314'), ('2016', 'DE046C1', 'Esslingen am Neckar', 'ons_per_res_pop', '2.3'), ('2016', 'DE046C1', 'Esslingen am Neckar', 'beds_per_1000res_pop', '14.4'), ('2016', 'DE047C1', 'Hanau', 'ons', '159457'), ('2016', 'DE047C1', 'Hanau', 'beds', '1198'), ('2016', 'DE047C1', 'Hanau', 'ons_per_res_pop', '1.7'), ('2016', 'DE047C1', 'Hanau', 'beds_per_1000res_pop', '12.9'), ('2016', 'DE048C1', 'Wilhelmshaven', 'ons', '347728'), ('2016', 'DE048C1', 'Wilhelmshaven', 'beds', '2123'), ('2016', 'DE048C1', 'Wilhelmshaven', 'ons_per_res_pop', '4.6'), ('2016', 'DE048C1', 'Wilhelmshaven', 'beds_per_1000res_pop', '27.9'), ('2016', 'DE049C1', 'Ludwigsburg', 'ons', '301255'), ('2016', 'DE049C1', 'Ludwigsburg', 'beds', '2100'), ('2016', 'DE049C1', 'Ludwigsburg', 'ons_per_res_pop', '3.2'), ('2016', 'DE049C1', 'Ludwigsburg', 'beds_per_1000res_pop', '22.6'), ('2016', 'DE050C1', 'Tübingen', 'ons', '263852'), ('2016', 'DE050C1', 'Tübingen', 'beds', '1891'), ('2016', 'DE050C1', 'Tübingen', 'ons_per_res_pop', '3'), ('2016', 'DE050C1', 'Tübingen', 'beds_per_1000res_pop', '21.6'), ('2016', 'DE051C1', 'Villingen-Schwenningen', 'ons', '141957'), ('2016', 'DE051C1', 'Villingen-Schwenningen', 'beds', '1310'), ('2016', 'DE051C1', 'Villingen-Schwenningen', 'ons_per_res_pop', '1.7'), ('2016', 'DE051C1', 'Villingen-Schwenningen', 'beds_per_1000res_pop', '15.5'), ('2016', 'DE052C1', 'Flensburg', 'ons', '286161'), ('2016', 'DE052C1', 'Flensburg', 'beds', '1516'), ('2016', 'DE052C1', 'Flensburg', 'ons_per_res_pop', '3.3'), ('2016', 'DE052C1', 'Flensburg', 'beds_per_1000res_pop', '17.6'), ('2016', 'DE053C1', 'Marburg', 'ons', '361216'), ('2016', 'DE053C1', 'Marburg', 'beds', '2034'), ('2016', 'DE053C1', 'Marburg', 'ons_per_res_pop', '4.9'), ('2016', 'DE053C1', 'Marburg', 'beds_per_1000res_pop', '27.5'), ('2016', 'DE054C1', 'Konstanz', 'ons', '866123'), ('2016', 'DE054C1', 'Konstanz', 'beds', '5186'), ('2016', 'DE054C1', 'Konstanz', 'ons_per_res_pop', '10.5'), ('2016', 'DE054C1', 'Konstanz', 'beds_per_1000res_pop', '62.6'), ('2016', 'DE055C1', 'Neumünster', 'ons', '157878'), ('2016', 'DE055C1', 'Neumünster', 'beds', '953'), ('2016', 'DE055C1', 'Neumünster', 'ons_per_res_pop', '2'), ('2016', 'DE055C1', 'Neumünster', 'beds_per_1000res_pop', '12'), ('2016', 'DE056C1', 'Brandenburg an der Havel', 'ons', '228895'), ('2016', 'DE056C1', 'Brandenburg an der Havel', 'beds', '1722'), ('2016', 'DE056C1', 'Brandenburg an der Havel', 'ons_per_res_pop', '3.2'), ('2016', 'DE056C1', 'Brandenburg an der Havel', 'beds_per_1000res_pop', '24.1'), ('2016', 'DE057C1', 'Gießen', 'ons', '165586'), ('2016', 'DE057C1', 'Gießen', 'beds', '1235'), ('2016', 'DE057C1', 'Gießen', 'ons_per_res_pop', '2'), ('2016', 'DE057C1', 'Gießen', 'beds_per_1000res_pop', '14.6'), ('2016', 'DE058C1', 'Lüneburg', 'ons', '334175'), ('2016', 'DE058C1', 'Lüneburg', 'beds', '2045'), ('2016', 'DE058C1', 'Lüneburg', 'ons_per_res_pop', '4.5'), ('2016', 'DE058C1', 'Lüneburg', 'beds_per_1000res_pop', '27.6'), ('2016', 'DE059C1', 'Bayreuth', 'ons', '393299'), ('2016', 'DE059C1', 'Bayreuth', 'beds', '2103'), ('2016', 'DE059C1', 'Bayreuth', 'ons_per_res_pop', '5.5'), ('2016', 'DE059C1', 'Bayreuth', 'beds_per_1000res_pop', '29.1'), ('2016', 'DE060C1', 'Celle', 'ons', '284564'), ('2016', 'DE060C1', 'Celle', 'beds', '2398'), ('2016', 'DE060C1', 'Celle', 'ons_per_res_pop', '4.1'), ('2016', 'DE060C1', 'Celle', 'beds_per_1000res_pop', '34.4'), ('2016', 'DE061C1', 'Aschaffenburg', 'ons', '172643'), ('2016', 'DE061C1', 'Aschaffenburg', 'beds', '1048'), ('2016', 'DE061C1', 'Aschaffenburg', 'ons_per_res_pop', '2.5'), ('2016', 'DE061C1', 'Aschaffenburg', 'beds_per_1000res_pop', '15.2'), ('2016', 'DE062C1', 'Bamberg', 'ons', '659854'), ('2016', 'DE062C1', 'Bamberg', 'beds', '3499'), ('2016', 'DE062C1', 'Bamberg', 'ons_per_res_pop', '9'), ('2016', 'DE062C1', 'Bamberg', 'beds_per_1000res_pop', '47.7'), ('2016', 'DE063C1', 'Plauen', 'ons', '113393'), ('2016', 'DE063C1', 'Plauen', 'beds', '809'), ('2016', 'DE063C1', 'Plauen', 'ons_per_res_pop', '1.7'), ('2016', 'DE063C1', 'Plauen', 'beds_per_1000res_pop', '12.4'), ('2016', 'DE064C1', 'Neubrandenburg', 'ons', '106282'), ('2016', 'DE064C1', 'Neubrandenburg', 'beds', '669'), ('2016', 'DE064C1', 'Neubrandenburg', 'ons_per_res_pop', '1.7'), ('2016', 'DE064C1', 'Neubrandenburg', 'beds_per_1000res_pop', '10.5'), ('2016', 'DE065C1', 'Fulda', 'ons', '596002'), ('2016', 'DE065C1', 'Fulda', 'beds', '3740'), ('2016', 'DE065C1', 'Fulda', 'ons_per_res_pop', '8.9'), ('2016', 'DE065C1', 'Fulda', 'beds_per_1000res_pop', '55.6'), ('2016', 'DE066C1', 'Kempten (Allgäu)', 'ons', '279642'), ('2016', 'DE066C1', 'Kempten (Allgäu)', 'beds', '1344'), ('2016', 'DE066C1', 'Kempten (Allgäu)', 'ons_per_res_pop', '4.2'), ('2016', 'DE066C1', 'Kempten (Allgäu)', 'beds_per_1000res_pop', '20.1'), ('2016', 'DE067C1', 'Landshut', 'ons', '225630'), ('2016', 'DE067C1', 'Landshut', 'beds', '1644'), ('2016', 'DE067C1', 'Landshut', 'ons_per_res_pop', '3.3'), ('2016', 'DE067C1', 'Landshut', 'beds_per_1000res_pop', '23.8'), ('2016', 'DE068C1', 'Sindelfingen', 'ons', '469776'), ('2016', 'DE068C1', 'Sindelfingen', 'beds', '2503'), ('2016', 'DE068C1', 'Sindelfingen', 'ons_per_res_pop', '7.3'), ('2016', 'DE068C1', 'Sindelfingen', 'beds_per_1000res_pop', '39.1'), ('2016', 'DE069C1', 'Rosenheim', 'ons', '184303'), ('2016', 'DE069C1', 'Rosenheim', 'beds', '1076'), ('2016', 'DE069C1', 'Rosenheim', 'ons_per_res_pop', '3'), ('2016', 'DE069C1', 'Rosenheim', 'beds_per_1000res_pop', '17.4'), ('2016', 'DE070C1', 'Frankenthal (Pfalz)', 'ons', '88959'), ('2016', 'DE070C1', 'Frankenthal (Pfalz)', 'beds', '617'), ('2016', 'DE070C1', 'Frankenthal (Pfalz)', 'ons_per_res_pop', '1.8'), ('2016', 'DE070C1', 'Frankenthal (Pfalz)', 'beds_per_1000res_pop', '12.8'), ('2016', 'DE071C1', 'Stralsund', 'ons', '505183'), ('2016', 'DE071C1', 'Stralsund', 'beds', '2879'), ('2016', 'DE071C1', 'Stralsund', 'ons_per_res_pop', '8.7'), ('2016', 'DE071C1', 'Stralsund', 'beds_per_1000res_pop', '49.6'), ('2016', 'DE072C1', 'Friedrichshafen', 'ons', '738571'), ('2016', 'DE072C1', 'Friedrichshafen', 'beds', '4295'), ('2016', 'DE072C1', 'Friedrichshafen', 'ons_per_res_pop', '12.5'), ('2016', 'DE072C1', 'Friedrichshafen', 'beds_per_1000res_pop', '72.7'), ('2016', 'DE073C1', 'Offenburg', 'ons', '136947'), ('2016', 'DE073C1', 'Offenburg', 'beds', '693'), ('2016', 'DE073C1', 'Offenburg', 'ons_per_res_pop', '2.3'), ('2016', 'DE073C1', 'Offenburg', 'beds_per_1000res_pop', '11.9'), ('2016', 'DE074C1', 'Görlitz', 'ons', '281779'), ('2016', 'DE074C1', 'Görlitz', 'beds', '1950'), ('2016', 'DE074C1', 'Görlitz', 'ons_per_res_pop', '5.1'), ('2016', 'DE074C1', 'Görlitz', 'beds_per_1000res_pop', '35.3'), ('2016', 'DE075C1', 'Sankt Augustin', 'ons', '22357'), ('2016', 'DE075C1', 'Sankt Augustin', 'beds', '126'), ('2016', 'DE075C1', 'Sankt Augustin', 'ons_per_res_pop', '0.4'), ('2016', 'DE075C1', 'Sankt Augustin', 'beds_per_1000res_pop', '2.3'), ('2016', 'DE076C1', 'Neu-Ulm', 'ons', '197581'), ('2016', 'DE076C1', 'Neu-Ulm', 'beds', '1098'), ('2016', 'DE076C1', 'Neu-Ulm', 'ons_per_res_pop', '3.5'), ('2016', 'DE076C1', 'Neu-Ulm', 'beds_per_1000res_pop', '19.2'), ('2016', 'DE077C1', 'Schweinfurt', 'ons', '226023'), ('2016', 'DE077C1', 'Schweinfurt', 'beds', '1529'), ('2016', 'DE077C1', 'Schweinfurt', 'ons_per_res_pop', '4.3'), ('2016', 'DE077C1', 'Schweinfurt', 'beds_per_1000res_pop', '29.4'), ('2016', 'DE078C1', 'Greifswald', 'ons', '226278'), ('2016', 'DE078C1', 'Greifswald', 'beds', '1878'), ('2016', 'DE078C1', 'Greifswald', 'ons_per_res_pop', '3.9'), ('2016', 'DE078C1', 'Greifswald', 'beds_per_1000res_pop', '32.8'), ('2016', 'DE079C1', 'Wetzlar', 'ons', '216951'), ('2016', 'DE079C1', 'Wetzlar', 'beds', '1556'), ('2016', 'DE079C1', 'Wetzlar', 'ons_per_res_pop', '4.2'), ('2016', 'DE079C1', 'Wetzlar', 'beds_per_1000res_pop', '30.1'), ('2016', 'DE080C1', 'Speyer', 'ons', '266085'), ('2016', 'DE080C1', 'Speyer', 'beds', '1412'), ('2016', 'DE080C1', 'Speyer', 'ons_per_res_pop', '5.3'), ('2016', 'DE080C1', 'Speyer', 'beds_per_1000res_pop', '28.1'), ('2016', 'DE081C1', 'Passau', 'ons', '549777'), ('2016', 'DE081C1', 'Passau', 'beds', '2970'), ('2016', 'DE081C1', 'Passau', 'ons_per_res_pop', '10.9'), ('2016', 'DE081C1', 'Passau', 'beds_per_1000res_pop', '58.7'), ('2016', 'DE082C1', 'Dessau-Roßlau', 'ons', '201162'), ('2016', 'DE082C1', 'Dessau-Roßlau', 'beds', '1408'), ('2016', 'DE082C1', 'Dessau-Roßlau', 'ons_per_res_pop', '2.4'), ('2016', 'DE082C1', 'Dessau-Roßlau', 'beds_per_1000res_pop', '17'), ('2016', 'DE501C1', 'Duisburg', 'ons', '516230'), ('2016', 'DE501C1', 'Duisburg', 'beds', '3457'), ('2016', 'DE501C1', 'Duisburg', 'ons_per_res_pop', '1.1'), ('2016', 'DE501C1', 'Duisburg', 'beds_per_1000res_pop', '7'), ('2016', 'DE502C1', 'Mannheim', 'ons', '1300255'), ('2016', 'DE502C1', 'Mannheim', 'beds', '7487'), ('2016', 'DE502C1', 'Mannheim', 'ons_per_res_pop', '4.3'), ('2016', 'DE502C1', 'Mannheim', 'beds_per_1000res_pop', '24.5'), ('2016', 'DE503C1', 'Gelsenkirchen', 'ons', '349339'), ('2016', 'DE503C1', 'Gelsenkirchen', 'beds', '2104'), ('2016', 'DE503C1', 'Gelsenkirchen', 'ons_per_res_pop', '1.3'), ('2016', 'DE503C1', 'Gelsenkirchen', 'beds_per_1000res_pop', '8.1'), ('2016', 'DE504C1', 'Münster', 'ons', '1323282'), ('2016', 'DE504C1', 'Münster', 'beds', '7809'), ('2016', 'DE504C1', 'Münster', 'ons_per_res_pop', '4.3'), ('2016', 'DE504C1', 'Münster', 'beds_per_1000res_pop', '25.2'), ('2016', 'DE505C1', 'Chemnitz', 'ons', '494018'), ('2016', 'DE505C1', 'Chemnitz', 'beds', '3701'), ('2016', 'DE505C1', 'Chemnitz', 'ons_per_res_pop', '2'), ('2016', 'DE505C1', 'Chemnitz', 'beds_per_1000res_pop', '14.9'), ('2016', 'DE506C1', 'Braunschweig', 'ons', '614717'), ('2016', 'DE506C1', 'Braunschweig', 'beds', '4639'), ('2016', 'DE506C1', 'Braunschweig', 'ons_per_res_pop', '2.4'), ('2016', 'DE506C1', 'Braunschweig', 'beds_per_1000res_pop', '18.5'), ('2016', 'DE507C1', 'Aachen', 'ons', '988665'), ('2016', 'DE507C1', 'Aachen', 'beds', '5392'), ('2016', 'DE507C1', 'Aachen', 'ons_per_res_pop', '4'), ('2016', 'DE507C1', 'Aachen', 'beds_per_1000res_pop', '21.9'), ('2016', 'DE508C1', 'Krefeld', 'ons', '245506'), ('2016', 'DE508C1', 'Krefeld', 'beds', '1700'), ('2016', 'DE508C1', 'Krefeld', 'ons_per_res_pop', '1.1'), ('2016', 'DE508C1', 'Krefeld', 'beds_per_1000res_pop', '7.6'), ('2016', 'DE509C1', 'Oberhausen', 'ons', '464872'), ('2016', 'DE509C1', 'Oberhausen', 'beds', '2230'), ('2016', 'DE509C1', 'Oberhausen', 'ons_per_res_pop', '2.2'), ('2016', 'DE509C1', 'Oberhausen', 'beds_per_1000res_pop', '10.6'), ('2016', 'DE510C1', 'Lübeck', 'ons', '1653105'), ('2016', 'DE510C1', 'Lübeck', 'beds', '9168'), ('2016', 'DE510C1', 'Lübeck', 'ons_per_res_pop', '7.6'), ('2016', 'DE510C1', 'Lübeck', 'beds_per_1000res_pop', '42.4'), ('2016', 'DE511C1', 'Hagen', 'ons', '262526'), ('2016', 'DE511C1', 'Hagen', 'beds', '1493'), ('2016', 'DE511C1', 'Hagen', 'ons_per_res_pop', '1.4'), ('2016', 'DE511C1', 'Hagen', 'beds_per_1000res_pop', '7.9'), ('2016', 'DE513C1', 'Kassel', 'ons', '879727'), ('2016', 'DE513C1', 'Kassel', 'beds', '6072'), ('2016', 'DE513C1', 'Kassel', 'ons_per_res_pop', '4.4'), ('2016', 'DE513C1', 'Kassel', 'beds_per_1000res_pop', '30.7'), ('2016', 'DE514C1', 'Hamm', 'ons', '147144'), ('2016', 'DE514C1', 'Hamm', 'beds', '1331'), ('2016', 'DE514C1', 'Hamm', 'ons_per_res_pop', '0.8'), ('2016', 'DE514C1', 'Hamm', 'beds_per_1000res_pop', '7.4'), ('2016', 'DE515C1', 'Herne', 'ons', '68434'), ('2016', 'DE515C1', 'Herne', 'beds', '591'), ('2016', 'DE515C1', 'Herne', 'ons_per_res_pop', '0.4'), ('2016', 'DE515C1', 'Herne', 'beds_per_1000res_pop', '3.8'), ('2016', 'DE516C1', 'Solingen', 'ons', '130645'), ('2016', 'DE516C1', 'Solingen', 'beds', '972'), ('2016', 'DE516C1', 'Solingen', 'ons_per_res_pop', '0.8'), ('2016', 'DE516C1', 'Solingen', 'beds_per_1000res_pop', '6.1'), ('2016', 'DE517C1', 'Osnabrück', 'ons', '470418'), ('2016', 'DE517C1', 'Osnabrück', 'beds', '3425'), ('2016', 'DE517C1', 'Osnabrück', 'ons_per_res_pop', '2.9'), ('2016', 'DE517C1', 'Osnabrück', 'beds_per_1000res_pop', '21.1'), ('2016', 'DE518C1', 'Ludwigshafen am Rhein', 'ons', null), ('2016', 'DE518C1', 'Ludwigshafen am Rhein', 'beds', null), ('2016', 'DE518C1', 'Ludwigshafen am Rhein', 'ons_per_res_pop', null), ('2016', 'DE518C1', 'Ludwigshafen am Rhein', 'beds_per_1000res_pop', null), ('2016', 'DE519C1', 'Leverkusen', 'ons', '242403'), ('2016', 'DE519C1', 'Leverkusen', 'beds', '1465'), ('2016', 'DE519C1', 'Leverkusen', 'ons_per_res_pop', '1.5'), ('2016', 'DE519C1', 'Leverkusen', 'beds_per_1000res_pop', '9'), ('2016', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons', '353858'), ('2016', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds', '2347'), ('2016', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons_per_res_pop', '2.2'), ('2016', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds_per_1000res_pop', '14.3'), ('2016', 'DE521C1', 'Neuss', 'ons', '442488'), ('2016', 'DE521C1', 'Neuss', 'beds', '3105'), ('2016', 'DE521C1', 'Neuss', 'ons_per_res_pop', '2.8'), ('2016', 'DE521C1', 'Neuss', 'beds_per_1000res_pop', '20'), ('2016', 'DE522C1', 'Heidelberg', 'ons', '1412887'), ('2016', 'DE522C1', 'Heidelberg', 'beds', '7281'), ('2016', 'DE522C1', 'Heidelberg', 'ons_per_res_pop', '9'), ('2016', 'DE522C1', 'Heidelberg', 'beds_per_1000res_pop', '46.6'), ('2016', 'DE523C1', 'Paderborn', 'ons', '295390'), ('2016', 'DE523C1', 'Paderborn', 'beds', '2063'), ('2016', 'DE523C1', 'Paderborn', 'ons_per_res_pop', '2'), ('2016', 'DE523C1', 'Paderborn', 'beds_per_1000res_pop', '13.9'), ('2016', 'DE524C1', 'Würzburg', 'ons', '915898'), ('2016', 'DE524C1', 'Würzburg', 'beds', '4443'), ('2016', 'DE524C1', 'Würzburg', 'ons_per_res_pop', '7.3'), ('2016', 'DE524C1', 'Würzburg', 'beds_per_1000res_pop', '35.6'), ('2016', 'DE525C1', 'Recklinghausen', 'ons', '92917'), ('2016', 'DE525C1', 'Recklinghausen', 'beds', '574'), ('2016', 'DE525C1', 'Recklinghausen', 'ons_per_res_pop', '0.8'), ('2016', 'DE525C1', 'Recklinghausen', 'beds_per_1000res_pop', '5'), ('2016', 'DE526C1', 'Wolfsburg', 'ons', '543474'), ('2016', 'DE526C1', 'Wolfsburg', 'beds', '4361'), ('2016', 'DE526C1', 'Wolfsburg', 'ons_per_res_pop', '4.4'), ('2016', 'DE526C1', 'Wolfsburg', 'beds_per_1000res_pop', '35.2'), ('2016', 'DE527C1', 'Bremerhaven', 'ons', '398611'), ('2016', 'DE527C1', 'Bremerhaven', 'beds', '2751'), ('2016', 'DE527C1', 'Bremerhaven', 'ons_per_res_pop', '3.5'), ('2016', 'DE527C1', 'Bremerhaven', 'beds_per_1000res_pop', '24.1'), ('2016', 'DE528C1', 'Bottrop', 'ons', '82959'), ('2016', 'DE528C1', 'Bottrop', 'beds', '619'), ('2016', 'DE528C1', 'Bottrop', 'ons_per_res_pop', '0.7'), ('2016', 'DE528C1', 'Bottrop', 'beds_per_1000res_pop', '5.3'), ('2016', 'DE529C1', 'Heilbronn', 'ons', '346311'), ('2016', 'DE529C1', 'Heilbronn', 'beds', '1928'), ('2016', 'DE529C1', 'Heilbronn', 'ons_per_res_pop', '2.8'), ('2016', 'DE529C1', 'Heilbronn', 'beds_per_1000res_pop', '15.7'), ('2016', 'DE530C1', 'Remscheid', 'ons', '108936'), ('2016', 'DE530C1', 'Remscheid', 'beds', '900'), ('2016', 'DE530C1', 'Remscheid', 'ons_per_res_pop', '1'), ('2016', 'DE530C1', 'Remscheid', 'beds_per_1000res_pop', '8.2'), ('2016', 'DE531C1', 'Offenbach am Main', 'ons', '421441'), ('2016', 'DE531C1', 'Offenbach am Main', 'beds', '3026'), ('2016', 'DE531C1', 'Offenbach am Main', 'ons_per_res_pop', '3.4'), ('2016', 'DE531C1', 'Offenbach am Main', 'beds_per_1000res_pop', '24.5'), ('2016', 'DE532C1', 'Ulm', 'ons', '611466'), ('2016', 'DE532C1', 'Ulm', 'beds', '3429'), ('2016', 'DE532C1', 'Ulm', 'ons_per_res_pop', '5'), ('2016', 'DE532C1', 'Ulm', 'beds_per_1000res_pop', '28'), ('2016', 'DE533C1', 'Pforzheim', 'ons', '247784'), ('2016', 'DE533C1', 'Pforzheim', 'beds', '1709'), ('2016', 'DE533C1', 'Pforzheim', 'ons_per_res_pop', '2'), ('2016', 'DE533C1', 'Pforzheim', 'beds_per_1000res_pop', '14'), ('2016', 'DE534C1', 'Ingolstadt', 'ons', '513444'), ('2016', 'DE534C1', 'Ingolstadt', 'beds', '3366'), ('2016', 'DE534C1', 'Ingolstadt', 'ons_per_res_pop', '3.9'), ('2016', 'DE534C1', 'Ingolstadt', 'beds_per_1000res_pop', '25.4'), ('2016', 'DE535C1', 'Gera', 'ons', '205155'), ('2016', 'DE535C1', 'Gera', 'beds', '1476'), ('2016', 'DE535C1', 'Gera', 'ons_per_res_pop', '2.1'), ('2016', 'DE535C1', 'Gera', 'beds_per_1000res_pop', '15.4'), ('2016', 'DE536C1', 'Salzgitter', 'ons', '148709'), ('2016', 'DE536C1', 'Salzgitter', 'beds', '1187'), ('2016', 'DE536C1', 'Salzgitter', 'ons_per_res_pop', '1.5'), ('2016', 'DE536C1', 'Salzgitter', 'beds_per_1000res_pop', '11.7'), ('2016', 'DE537C1', 'Reutlingen', 'ons', '196678'), ('2016', 'DE537C1', 'Reutlingen', 'beds', '1235'), ('2016', 'DE537C1', 'Reutlingen', 'ons_per_res_pop', '1.7'), ('2016', 'DE537C1', 'Reutlingen', 'beds_per_1000res_pop', '10.8'), ('2016', 'DE538C1', 'Fürth', 'ons', '258986'), ('2016', 'DE538C1', 'Fürth', 'beds', '1605'), ('2016', 'DE538C1', 'Fürth', 'ons_per_res_pop', '2.1'), ('2016', 'DE538C1', 'Fürth', 'beds_per_1000res_pop', '12.9'), ('2016', 'DE539C1', 'Cottbus', 'ons', '260345'), ('2016', 'DE539C1', 'Cottbus', 'beds', '1779'), ('2016', 'DE539C1', 'Cottbus', 'ons_per_res_pop', '2.6'), ('2016', 'DE539C1', 'Cottbus', 'beds_per_1000res_pop', '17.8'), ('2016', 'DE540C1', 'Siegen', 'ons', '123262'), ('2016', 'DE540C1', 'Siegen', 'beds', '844'), ('2016', 'DE540C1', 'Siegen', 'ons_per_res_pop', '1.2'), ('2016', 'DE540C1', 'Siegen', 'beds_per_1000res_pop', '8.2'), ('2016', 'DE541C1', 'Bergisch Gladbach', 'ons', '166925'), ('2016', 'DE541C1', 'Bergisch Gladbach', 'beds', '1177'), ('2016', 'DE541C1', 'Bergisch Gladbach', 'ons_per_res_pop', '1.5'), ('2016', 'DE541C1', 'Bergisch Gladbach', 'beds_per_1000res_pop', '10.6'), ('2016', 'DE542C1', 'Hildesheim', 'ons', '300369'), ('2016', 'DE542C1', 'Hildesheim', 'beds', '2243'), ('2016', 'DE542C1', 'Hildesheim', 'ons_per_res_pop', '3'), ('2016', 'DE542C1', 'Hildesheim', 'beds_per_1000res_pop', '22.1'), ('2016', 'DE543C1', 'Witten', 'ons', '50003'), ('2016', 'DE543C1', 'Witten', 'beds', '412'), ('2016', 'DE543C1', 'Witten', 'ons_per_res_pop', '0.5'), ('2016', 'DE543C1', 'Witten', 'beds_per_1000res_pop', '4.3'), ('2016', 'DE544C1', 'Zwickau', 'ons', '149726'), ('2016', 'DE544C1', 'Zwickau', 'beds', '1070'), ('2016', 'DE544C1', 'Zwickau', 'ons_per_res_pop', '1.6'), ('2016', 'DE544C1', 'Zwickau', 'beds_per_1000res_pop', '11.7'), ('2016', 'DE545C1', 'Erlangen', 'ons', '526482'), ('2016', 'DE545C1', 'Erlangen', 'beds', '3103'), ('2016', 'DE545C1', 'Erlangen', 'ons_per_res_pop', '4.9'), ('2016', 'DE545C1', 'Erlangen', 'beds_per_1000res_pop', '28.6'), ('2016', 'DE546C1', 'Wuppertal', 'ons', '617556'), ('2016', 'DE546C1', 'Wuppertal', 'beds', '3551'), ('2016', 'DE546C1', 'Wuppertal', 'ons_per_res_pop', '1.8'), ('2016', 'DE546C1', 'Wuppertal', 'beds_per_1000res_pop', '10.1'), ('2016', 'DE547C1', 'Jena', 'ons', '316492'), ('2016', 'DE547C1', 'Jena', 'beds', '1900'), ('2016', 'DE547C1', 'Jena', 'ons_per_res_pop', '2.9'), ('2016', 'DE547C1', 'Jena', 'beds_per_1000res_pop', '17.3'), ('2016', 'DE548C1', 'Düren, Stadt', 'ons', null), ('2016', 'DE548C1', 'Düren, Stadt', 'beds', null), ('2016', 'DE548C1', 'Düren, Stadt', 'ons_per_res_pop', null), ('2016', 'DE548C1', 'Düren, Stadt', 'beds_per_1000res_pop', null), ('2016', 'DE549C1', 'Bocholt, Stadt', 'ons', null), ('2016', 'DE549C1', 'Bocholt, Stadt', 'beds', null), ('2016', 'DE549C1', 'Bocholt, Stadt', 'ons_per_res_pop', null), ('2016', 'DE549C1', 'Bocholt, Stadt', 'beds_per_1000res_pop', null), ('2016', 'EE', 'Estonia', 'ons', '6228128'), ('2016', 'EE', 'Estonia', 'beds', '59471'), ('2016', 'EE', 'Estonia', 'ons_per_res_pop', '4.7'), ('2016', 'EE', 'Estonia', 'beds_per_1000res_pop', '45.2'), ('2016', 'EE001C1', 'Tallinn', 'ons', '2997156'), ('2016', 'EE001C1', 'Tallinn', 'beds', '16130'), ('2016', 'EE001C1', 'Tallinn', 'ons_per_res_pop', '7.1'), ('2016', 'EE001C1', 'Tallinn', 'beds_per_1000res_pop', '38.1'), ('2016', 'EE002C1', 'Tartu', 'ons', '361903'), ('2016', 'EE002C1', 'Tartu', 'beds', '2579'), ('2016', 'EE002C1', 'Tartu', 'ons_per_res_pop', '3.9'), ('2016', 'EE002C1', 'Tartu', 'beds_per_1000res_pop', '27.5'), ('2016', 'EE003C1', 'Narva', 'ons', '40885'), ('2016', 'EE003C1', 'Narva', 'beds', '448'), ('2016', 'EE003C1', 'Narva', 'ons_per_res_pop', '0.7'), ('2016', 'EE003C1', 'Narva', 'beds_per_1000res_pop', '7.7'), ('2016', 'IE', 'Ireland', 'ons', null), ('2016', 'IE', 'Ireland', 'beds', null), ('2016', 'IE', 'Ireland', 'ons_per_res_pop', null), ('2016', 'IE', 'Ireland', 'beds_per_1000res_pop', null), ('2016', 'IE001C1', 'Dublin', 'ons', null), ('2016', 'IE001C1', 'Dublin', 'beds', null), ('2016', 'IE001C1', 'Dublin', 'ons_per_res_pop', null), ('2016', 'IE001C1', 'Dublin', 'beds_per_1000res_pop', null), ('2016', 'IE002C1', 'Cork', 'ons', null), ('2016', 'IE002C1', 'Cork', 'beds', null), ('2016', 'IE002C1', 'Cork', 'ons_per_res_pop', null), ('2016', 'IE002C1', 'Cork', 'beds_per_1000res_pop', null), ('2016', 'IE003C1', 'Limerick', 'ons', null), ('2016', 'IE003C1', 'Limerick', 'beds', null), ('2016', 'IE003C1', 'Limerick', 'ons_per_res_pop', null), ('2016', 'IE003C1', 'Limerick', 'beds_per_1000res_pop', null), ('2016', 'IE004C1', 'Galway', 'ons', null), ('2016', 'IE004C1', 'Galway', 'beds', null), ('2016', 'IE004C1', 'Galway', 'ons_per_res_pop', null), ('2016', 'IE004C1', 'Galway', 'beds_per_1000res_pop', null), ('2016', 'IE005C1', 'Waterford', 'ons', null), ('2016', 'IE005C1', 'Waterford', 'beds', null), ('2016', 'IE005C1', 'Waterford', 'ons_per_res_pop', null), ('2016', 'IE005C1', 'Waterford', 'beds_per_1000res_pop', null), ('2016', 'EL', 'Greece', 'ons', null), ('2016', 'EL', 'Greece', 'beds', null), ('2016', 'EL', 'Greece', 'ons_per_res_pop', null), ('2016', 'EL', 'Greece', 'beds_per_1000res_pop', null), ('2016', 'EL001C1', 'Athina', 'ons', null), ('2016', 'EL001C1', 'Athina', 'beds', null), ('2016', 'EL001C1', 'Athina', 'ons_per_res_pop', null), ('2016', 'EL001C1', 'Athina', 'beds_per_1000res_pop', null), ('2016', 'EL002C1', 'Thessaloniki', 'ons', null), ('2016', 'EL002C1', 'Thessaloniki', 'beds', null), ('2016', 'EL002C1', 'Thessaloniki', 'ons_per_res_pop', null), ('2016', 'EL002C1', 'Thessaloniki', 'beds_per_1000res_pop', null), ('2016', 'EL003C1', 'Pátra', 'ons', null), ('2016', 'EL003C1', 'Pátra', 'beds', null), ('2016', 'EL003C1', 'Pátra', 'ons_per_res_pop', null), ('2016', 'EL003C1', 'Pátra', 'beds_per_1000res_pop', null), ('2016', 'EL004C1', 'Irakleio', 'ons', null), ('2016', 'EL004C1', 'Irakleio', 'beds', null), ('2016', 'EL004C1', 'Irakleio', 'ons_per_res_pop', null), ('2016', 'EL004C1', 'Irakleio', 'beds_per_1000res_pop', null), ('2016', 'EL005C1', 'Larisa', 'ons', null), ('2016', 'EL005C1', 'Larisa', 'beds', null), ('2016', 'EL005C1', 'Larisa', 'ons_per_res_pop', null), ('2016', 'EL005C1', 'Larisa', 'beds_per_1000res_pop', null), ('2016', 'EL006C1', 'Volos', 'ons', null), ('2016', 'EL006C1', 'Volos', 'beds', null), ('2016', 'EL006C1', 'Volos', 'ons_per_res_pop', null), ('2016', 'EL006C1', 'Volos', 'beds_per_1000res_pop', null), ('2016', 'EL007C1', 'Ioannina', 'ons', null), ('2016', 'EL007C1', 'Ioannina', 'beds', null), ('2016', 'EL007C1', 'Ioannina', 'ons_per_res_pop', null), ('2016', 'EL007C1', 'Ioannina', 'beds_per_1000res_pop', null), ('2016', 'EL008C1', 'Kavala', 'ons', null), ('2016', 'EL008C1', 'Kavala', 'beds', null), ('2016', 'EL008C1', 'Kavala', 'ons_per_res_pop', null), ('2016', 'EL008C1', 'Kavala', 'beds_per_1000res_pop', null), ('2016', 'EL009C1', 'Kalamata', 'ons', null), ('2016', 'EL009C1', 'Kalamata', 'beds', null), ('2016', 'EL009C1', 'Kalamata', 'ons_per_res_pop', null), ('2016', 'EL009C1', 'Kalamata', 'beds_per_1000res_pop', null), ('2016', 'ES', 'Spain', 'ons', '452543731'), ('2016', 'ES', 'Spain', 'beds', '2594041'), ('2016', 'ES', 'Spain', 'ons_per_res_pop', '9.7'), ('2016', 'ES', 'Spain', 'beds_per_1000res_pop', '55.9'), ('2016', 'ES001C1', 'Madrid', 'ons', '19844222'), ('2016', 'ES001C1', 'Madrid', 'beds', '92583'), ('2016', 'ES001C1', 'Madrid', 'ons_per_res_pop', '6.3'), ('2016', 'ES001C1', 'Madrid', 'beds_per_1000res_pop', '29.2'), ('2016', 'ES002C1', 'Barcelona', 'ons', '20338806'), ('2016', 'ES002C1', 'Barcelona', 'beds', '81188'), ('2016', 'ES002C1', 'Barcelona', 'ons_per_res_pop', '12.6'), ('2016', 'ES002C1', 'Barcelona', 'beds_per_1000res_pop', '50.5'), ('2016', 'ES003C1', 'Valencia', 'ons', '4601594'), ('2016', 'ES003C1', 'Valencia', 'beds', '25597'), ('2016', 'ES003C1', 'Valencia', 'ons_per_res_pop', '5.8'), ('2016', 'ES003C1', 'Valencia', 'beds_per_1000res_pop', '32.4'), ('2016', 'ES004C1', 'Sevilla', 'ons', '5531156'), ('2016', 'ES004C1', 'Sevilla', 'beds', '25275'), ('2016', 'ES004C1', 'Sevilla', 'ons_per_res_pop', '8'), ('2016', 'ES004C1', 'Sevilla', 'beds_per_1000res_pop', '36.6'), ('2016', 'ES005C1', 'Zaragoza', 'ons', '1891515'), ('2016', 'ES005C1', 'Zaragoza', 'beds', '11628'), ('2016', 'ES005C1', 'Zaragoza', 'ons_per_res_pop', '2.9'), ('2016', 'ES005C1', 'Zaragoza', 'beds_per_1000res_pop', '17.6'), ('2016', 'ES006C1', 'Málaga', 'ons', '2666060'), ('2016', 'ES006C1', 'Málaga', 'beds', '12900'), ('2016', 'ES006C1', 'Málaga', 'ons_per_res_pop', '4.7'), ('2016', 'ES006C1', 'Málaga', 'beds_per_1000res_pop', '22.7'), ('2016', 'ES007C1', 'Murcia', 'ons', '743979'), ('2016', 'ES007C1', 'Murcia', 'beds', '5311'), ('2016', 'ES007C1', 'Murcia', 'ons_per_res_pop', '1.7'), ('2016', 'ES007C1', 'Murcia', 'beds_per_1000res_pop', '12'), ('2016', 'ES008C1', 'Las Palmas', 'ons', '1504506'), ('2016', 'ES008C1', 'Las Palmas', 'beds', '7139'), ('2016', 'ES008C1', 'Las Palmas', 'ons_per_res_pop', '4'), ('2016', 'ES008C1', 'Las Palmas', 'beds_per_1000res_pop', '18.8'), ('2016', 'ES009C1', 'Valladolid', 'ons', '724977'), ('2016', 'ES009C1', 'Valladolid', 'beds', '4021'), ('2016', 'ES009C1', 'Valladolid', 'ons_per_res_pop', '2.4'), ('2016', 'ES009C1', 'Valladolid', 'beds_per_1000res_pop', '13.3'), ('2016', 'ES010C1', 'Palma de Mallorca', 'ons', '8930728'), ('2016', 'ES010C1', 'Palma de Mallorca', 'beds', '44798'), ('2016', 'ES010C1', 'Palma de Mallorca', 'ons_per_res_pop', '22.2'), ('2016', 'ES010C1', 'Palma de Mallorca', 'beds_per_1000res_pop', '111.2'), ('2016', 'ES011C1', 'Santiago de Compostela', 'ons', '1421921'), ('2016', 'ES011C1', 'Santiago de Compostela', 'beds', '8970'), ('2016', 'ES011C1', 'Santiago de Compostela', 'ons_per_res_pop', '14.8'), ('2016', 'ES011C1', 'Santiago de Compostela', 'beds_per_1000res_pop', '93.5'), ('2016', 'ES012C1', 'Vitoria/Gasteiz', 'ons', '585068'), ('2016', 'ES012C1', 'Vitoria/Gasteiz', 'beds', '3985'), ('2016', 'ES012C1', 'Vitoria/Gasteiz', 'ons_per_res_pop', '2.4'), ('2016', 'ES012C1', 'Vitoria/Gasteiz', 'beds_per_1000res_pop', '16.3'), ('2016', 'ES013C1', 'Oviedo', 'ons', '940855'), ('2016', 'ES013C1', 'Oviedo', 'beds', '5880'), ('2016', 'ES013C1', 'Oviedo', 'ons_per_res_pop', '4.3'), ('2016', 'ES013C1', 'Oviedo', 'beds_per_1000res_pop', '26.7'), ('2016', 'ES014C1', 'Pamplona/Iruña', 'ons', '692569'), ('2016', 'ES014C1', 'Pamplona/Iruña', 'beds', '3863'), ('2016', 'ES014C1', 'Pamplona/Iruña', 'ons_per_res_pop', '3.5'), ('2016', 'ES014C1', 'Pamplona/Iruña', 'beds_per_1000res_pop', '19.7'), ('2016', 'ES015C1', 'Santander', 'ons', '905509'), ('2016', 'ES015C1', 'Santander', 'beds', '6737'), ('2016', 'ES015C1', 'Santander', 'ons_per_res_pop', '5.2'), ('2016', 'ES015C1', 'Santander', 'beds_per_1000res_pop', '39'), ('2016', 'ES016C1', 'Toledo', 'ons', '941024'), ('2016', 'ES016C1', 'Toledo', 'beds', '5159'), ('2016', 'ES016C1', 'Toledo', 'ons_per_res_pop', '11.3'), ('2016', 'ES016C1', 'Toledo', 'beds_per_1000res_pop', '61.8'), ('2016', 'ES017C1', 'Badajoz', 'ons', '285897'), ('2016', 'ES017C1', 'Badajoz', 'beds', '2315'), ('2016', 'ES017C1', 'Badajoz', 'ons_per_res_pop', '1.9'), ('2016', 'ES017C1', 'Badajoz', 'beds_per_1000res_pop', '15.4'), ('2016', 'ES018C1', 'Logroño', 'ons', '555328'), ('2016', 'ES018C1', 'Logroño', 'beds', '3177'), ('2016', 'ES018C1', 'Logroño', 'ons_per_res_pop', '3.7'), ('2016', 'ES018C1', 'Logroño', 'beds_per_1000res_pop', '21.1'), ('2016', 'ES019C1', 'Bilbao', 'ons', '1739147'), ('2016', 'ES019C1', 'Bilbao', 'beds', '8658'), ('2016', 'ES019C1', 'Bilbao', 'ons_per_res_pop', '5'), ('2016', 'ES019C1', 'Bilbao', 'beds_per_1000res_pop', '25.1'), ('2016', 'ES020C1', 'Córdoba', 'ons', '1693967'), ('2016', 'ES020C1', 'Córdoba', 'beds', '8387'), ('2016', 'ES020C1', 'Córdoba', 'ons_per_res_pop', '5.2'), ('2016', 'ES020C1', 'Córdoba', 'beds_per_1000res_pop', '25.7'), ('2016', 'ES021C1', 'Alicante/Alacant', 'ons', '2136748'), ('2016', 'ES021C1', 'Alicante/Alacant', 'beds', '11326'), ('2016', 'ES021C1', 'Alicante/Alacant', 'ons_per_res_pop', '6.5'), ('2016', 'ES021C1', 'Alicante/Alacant', 'beds_per_1000res_pop', '34.3'), ('2016', 'ES022C1', 'Vigo', 'ons', '801469'), ('2016', 'ES022C1', 'Vigo', 'beds', '5780'), ('2016', 'ES022C1', 'Vigo', 'ons_per_res_pop', '2.7'), ('2016', 'ES022C1', 'Vigo', 'beds_per_1000res_pop', '19.7'), ('2016', 'ES023C1', 'Gijón', 'ons', '898553'), ('2016', 'ES023C1', 'Gijón', 'beds', '6817'), ('2016', 'ES023C1', 'Gijón', 'ons_per_res_pop', '3.3'), ('2016', 'ES023C1', 'Gijón', 'beds_per_1000res_pop', '24.9'), ('2016', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons', null), ('2016', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds', null), ('2016', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons_per_res_pop', null), ('2016', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds_per_1000res_pop', null), ('2016', 'ES025C1', 'Santa Cruz de Tenerife', 'ons', '547885'), ('2016', 'ES025C1', 'Santa Cruz de Tenerife', 'beds', '2797'), ('2016', 'ES025C1', 'Santa Cruz de Tenerife', 'ons_per_res_pop', '2.7'), ('2016', 'ES025C1', 'Santa Cruz de Tenerife', 'beds_per_1000res_pop', '13.7'), ('2016', 'ES026C1', 'A Coruña', 'ons', '934608'), ('2016', 'ES026C1', 'A Coruña', 'beds', '5634'), ('2016', 'ES026C1', 'A Coruña', 'ons_per_res_pop', '3.8'), ('2016', 'ES026C1', 'A Coruña', 'beds_per_1000res_pop', '23.1'), ('2016', 'ES027C1', 'Barakaldo', 'ons', null), ('2016', 'ES027C1', 'Barakaldo', 'beds', null), ('2016', 'ES027C1', 'Barakaldo', 'ons_per_res_pop', null), ('2016', 'ES027C1', 'Barakaldo', 'beds_per_1000res_pop', null), ('2016', 'ES028C1', 'Reus', 'ons', null), ('2016', 'ES028C1', 'Reus', 'beds', null), ('2016', 'ES028C1', 'Reus', 'ons_per_res_pop', null), ('2016', 'ES028C1', 'Reus', 'beds_per_1000res_pop', null), ('2016', 'ES029C1', 'Telde', 'ons', null), ('2016', 'ES029C1', 'Telde', 'beds', null), ('2016', 'ES029C1', 'Telde', 'ons_per_res_pop', null), ('2016', 'ES029C1', 'Telde', 'beds_per_1000res_pop', null), ('2016', 'ES030C1', 'Parla', 'ons', null), ('2016', 'ES030C1', 'Parla', 'beds', null), ('2016', 'ES030C1', 'Parla', 'ons_per_res_pop', null), ('2016', 'ES030C1', 'Parla', 'beds_per_1000res_pop', null), ('2016', 'ES031C1', 'Lugo', 'ons', '290182'), ('2016', 'ES031C1', 'Lugo', 'beds', '1884'), ('2016', 'ES031C1', 'Lugo', 'ons_per_res_pop', '3'), ('2016', 'ES031C1', 'Lugo', 'beds_per_1000res_pop', '19.2'), ('2016', 'ES032C1', 'San Fernando', 'ons', null), ('2016', 'ES032C1', 'San Fernando', 'beds', null), ('2016', 'ES032C1', 'San Fernando', 'ons_per_res_pop', null), ('2016', 'ES032C1', 'San Fernando', 'beds_per_1000res_pop', null), ('2016', 'ES033C1', 'Girona', 'ons', '465295'), ('2016', 'ES033C1', 'Girona', 'beds', '2435'), ('2016', 'ES033C1', 'Girona', 'ons_per_res_pop', '4.7'), ('2016', 'ES033C1', 'Girona', 'beds_per_1000res_pop', '24.8'), ('2016', 'ES034C1', 'Cáceres', 'ons', '515072'), ('2016', 'ES034C1', 'Cáceres', 'beds', '3350'), ('2016', 'ES034C1', 'Cáceres', 'ons_per_res_pop', '5.4'), ('2016', 'ES034C1', 'Cáceres', 'beds_per_1000res_pop', '35'), ('2016', 'ES035C1', 'Torrevieja', 'ons', '567017'), ('2016', 'ES035C1', 'Torrevieja', 'beds', '5144'), ('2016', 'ES035C1', 'Torrevieja', 'ons_per_res_pop', '6.7'), ('2016', 'ES035C1', 'Torrevieja', 'beds_per_1000res_pop', '61.1'), ('2016', 'ES036C1', 'Pozuelo de Alarcón', 'ons', null), ('2016', 'ES036C1', 'Pozuelo de Alarcón', 'beds', null), ('2016', 'ES036C1', 'Pozuelo de Alarcón', 'ons_per_res_pop', null), ('2016', 'ES036C1', 'Pozuelo de Alarcón', 'beds_per_1000res_pop', null), ('2016', 'ES037C1', 'Puerto de Santa María, El', 'ons', '578791'), ('2016', 'ES037C1', 'Puerto de Santa María, El', 'beds', '5196'), ('2016', 'ES037C1', 'Puerto de Santa María, El', 'ons_per_res_pop', '6.6'), ('2016', 'ES037C1', 'Puerto de Santa María, El', 'beds_per_1000res_pop', '58.9'), ('2016', 'ES038C1', 'Coslada', 'ons', null), ('2016', 'ES038C1', 'Coslada', 'beds', null), ('2016', 'ES038C1', 'Coslada', 'ons_per_res_pop', null), ('2016', 'ES038C1', 'Coslada', 'beds_per_1000res_pop', null), ('2016', 'ES039C1', 'Avilés', 'ons', null), ('2016', 'ES039C1', 'Avilés', 'beds', null), ('2016', 'ES039C1', 'Avilés', 'ons_per_res_pop', null), ('2016', 'ES039C1', 'Avilés', 'beds_per_1000res_pop', null), ('2016', 'ES040C1', 'Talavera de la Reina', 'ons', null), ('2016', 'ES040C1', 'Talavera de la Reina', 'beds', null), ('2016', 'ES040C1', 'Talavera de la Reina', 'ons_per_res_pop', null), ('2016', 'ES040C1', 'Talavera de la Reina', 'beds_per_1000res_pop', null), ('2016', 'ES041C1', 'Palencia', 'ons', null), ('2016', 'ES041C1', 'Palencia', 'beds', null), ('2016', 'ES041C1', 'Palencia', 'ons_per_res_pop', null), ('2016', 'ES041C1', 'Palencia', 'beds_per_1000res_pop', null), ('2016', 'ES042C1', 'Sant Boi de Llobregat', 'ons', null), ('2016', 'ES042C1', 'Sant Boi de Llobregat', 'beds', null), ('2016', 'ES042C1', 'Sant Boi de Llobregat', 'ons_per_res_pop', null), ('2016', 'ES042C1', 'Sant Boi de Llobregat', 'beds_per_1000res_pop', null), ('2016', 'ES043C1', 'Ferrol', 'ons', null), ('2016', 'ES043C1', 'Ferrol', 'beds', null), ('2016', 'ES043C1', 'Ferrol', 'ons_per_res_pop', null), ('2016', 'ES043C1', 'Ferrol', 'beds_per_1000res_pop', null), ('2016', 'ES044C1', 'Pontevedra', 'ons', '177096'), ('2016', 'ES044C1', 'Pontevedra', 'beds', '1315'), ('2016', 'ES044C1', 'Pontevedra', 'ons_per_res_pop', '2.1'), ('2016', 'ES044C1', 'Pontevedra', 'beds_per_1000res_pop', '15.9'), ('2016', 'ES045C1', 'Ceuta', 'ons', '185235'), ('2016', 'ES045C1', 'Ceuta', 'beds', '791'), ('2016', 'ES045C1', 'Ceuta', 'ons_per_res_pop', '2.2'), ('2016', 'ES045C1', 'Ceuta', 'beds_per_1000res_pop', '9.4'), ('2016', 'ES046C1', 'Gandia', 'ons', '1693738'), ('2016', 'ES046C1', 'Gandia', 'beds', '13888'), ('2016', 'ES046C1', 'Gandia', 'ons_per_res_pop', '22.6'), ('2016', 'ES046C1', 'Gandia', 'beds_per_1000res_pop', '185.6'), ('2016', 'ES047C1', 'Rozas de Madrid, Las', 'ons', null), ('2016', 'ES047C1', 'Rozas de Madrid, Las', 'beds', null), ('2016', 'ES047C1', 'Rozas de Madrid, Las', 'ons_per_res_pop', null), ('2016', 'ES047C1', 'Rozas de Madrid, Las', 'beds_per_1000res_pop', null), ('2016', 'ES048C1', 'Guadalajara', 'ons', '198297'), ('2016', 'ES048C1', 'Guadalajara', 'beds', '1394'), ('2016', 'ES048C1', 'Guadalajara', 'ons_per_res_pop', '2.4'), ('2016', 'ES048C1', 'Guadalajara', 'beds_per_1000res_pop', '16.7'), ('2016', 'ES049C1', 'Sant Cugat del Vallès', 'ons', null), ('2016', 'ES049C1', 'Sant Cugat del Vallès', 'beds', null), ('2016', 'ES049C1', 'Sant Cugat del Vallès', 'ons_per_res_pop', null), ('2016', 'ES049C1', 'Sant Cugat del Vallès', 'beds_per_1000res_pop', null), ('2016', 'ES050C1', 'Manresa', 'ons', null), ('2016', 'ES050C1', 'Manresa', 'beds', null), ('2016', 'ES050C1', 'Manresa', 'ons_per_res_pop', null), ('2016', 'ES050C1', 'Manresa', 'beds_per_1000res_pop', null), ('2016', 'ES051C1', 'Getxo', 'ons', null), ('2016', 'ES051C1', 'Getxo', 'beds', null), ('2016', 'ES051C1', 'Getxo', 'ons_per_res_pop', null), ('2016', 'ES051C1', 'Getxo', 'beds_per_1000res_pop', null), ('2016', 'ES052C1', 'Rubí', 'ons', null), ('2016', 'ES052C1', 'Rubí', 'beds', null), ('2016', 'ES052C1', 'Rubí', 'ons_per_res_pop', null), ('2016', 'ES052C1', 'Rubí', 'beds_per_1000res_pop', null), ('2016', 'ES053C1', 'Ciudad Real', 'ons', '190625'), ('2016', 'ES053C1', 'Ciudad Real', 'beds', '1462'), ('2016', 'ES053C1', 'Ciudad Real', 'ons_per_res_pop', '2.6'), ('2016', 'ES053C1', 'Ciudad Real', 'beds_per_1000res_pop', '19.7'), ('2016', 'ES054C1', 'Benidorm', 'ons', '16549833'), ('2016', 'ES054C1', 'Benidorm', 'beds', '76955'), ('2016', 'ES054C1', 'Benidorm', 'ons_per_res_pop', '248.3'), ('2016', 'ES054C1', 'Benidorm', 'beds_per_1000res_pop', '1154.8'), ('2016', 'ES055C1', 'Melilla', 'ons', null), ('2016', 'ES055C1', 'Melilla', 'beds', null), ('2016', 'ES055C1', 'Melilla', 'ons_per_res_pop', null), ('2016', 'ES055C1', 'Melilla', 'beds_per_1000res_pop', null), ('2016', 'ES056C1', 'Viladecans', 'ons', null), ('2016', 'ES056C1', 'Viladecans', 'beds', null), ('2016', 'ES056C1', 'Viladecans', 'ons_per_res_pop', null), ('2016', 'ES056C1', 'Viladecans', 'beds_per_1000res_pop', null), ('2016', 'ES057C1', 'Ponferrada', 'ons', '189117'), ('2016', 'ES057C1', 'Ponferrada', 'beds', '1745'), ('2016', 'ES057C1', 'Ponferrada', 'ons_per_res_pop', '2.8'), ('2016', 'ES057C1', 'Ponferrada', 'beds_per_1000res_pop', '26.3'), ('2016', 'ES058C1', 'San Sebastián de los Reyes', 'ons', null), ('2016', 'ES058C1', 'San Sebastián de los Reyes', 'beds', null), ('2016', 'ES058C1', 'San Sebastián de los Reyes', 'ons_per_res_pop', null), ('2016', 'ES058C1', 'San Sebastián de los Reyes', 'beds_per_1000res_pop', null), ('2016', 'ES059C1', 'Zamora', 'ons', '182882'), ('2016', 'ES059C1', 'Zamora', 'beds', '1027'), ('2016', 'ES059C1', 'Zamora', 'ons_per_res_pop', '2.9'), ('2016', 'ES059C1', 'Zamora', 'beds_per_1000res_pop', '16.2'), ('2016', 'ES060C1', 'Fuengirola', 'ons', '3212118'), ('2016', 'ES060C1', 'Fuengirola', 'beds', '15277'), ('2016', 'ES060C1', 'Fuengirola', 'ons_per_res_pop', '41.5'), ('2016', 'ES060C1', 'Fuengirola', 'beds_per_1000res_pop', '197.2'), ('2016', 'ES061C1', 'Cerdanyola del Vallès', 'ons', null), ('2016', 'ES061C1', 'Cerdanyola del Vallès', 'beds', null), ('2016', 'ES061C1', 'Cerdanyola del Vallès', 'ons_per_res_pop', null), ('2016', 'ES061C1', 'Cerdanyola del Vallès', 'beds_per_1000res_pop', null), ('2016', 'ES062C1', 'Sanlúcar de Barrameda', 'ons', null), ('2016', 'ES062C1', 'Sanlúcar de Barrameda', 'beds', null), ('2016', 'ES062C1', 'Sanlúcar de Barrameda', 'ons_per_res_pop', null), ('2016', 'ES062C1', 'Sanlúcar de Barrameda', 'beds_per_1000res_pop', null), ('2016', 'ES063C1', 'Vilanova i la Geltrú', 'ons', '628306'), ('2016', 'ES063C1', 'Vilanova i la Geltrú', 'beds', '9755'), ('2016', 'ES063C1', 'Vilanova i la Geltrú', 'ons_per_res_pop', '9.5'), ('2016', 'ES063C1', 'Vilanova i la Geltrú', 'beds_per_1000res_pop', '147.9'), ('2016', 'ES064C1', 'Prat de Llobregat, El', 'ons', null), ('2016', 'ES064C1', 'Prat de Llobregat, El', 'beds', null), ('2016', 'ES064C1', 'Prat de Llobregat, El', 'ons_per_res_pop', null), ('2016', 'ES064C1', 'Prat de Llobregat, El', 'beds_per_1000res_pop', null), ('2016', 'ES065C1', 'Línea de la Concepción, La', 'ons', null), ('2016', 'ES065C1', 'Línea de la Concepción, La', 'beds', null), ('2016', 'ES065C1', 'Línea de la Concepción, La', 'ons_per_res_pop', null), ('2016', 'ES065C1', 'Línea de la Concepción, La', 'beds_per_1000res_pop', null), ('2016', 'ES066C1', 'Cornellà de Llobregat', 'ons', null), ('2016', 'ES066C1', 'Cornellà de Llobregat', 'beds', null), ('2016', 'ES066C1', 'Cornellà de Llobregat', 'ons_per_res_pop', null), ('2016', 'ES066C1', 'Cornellà de Llobregat', 'beds_per_1000res_pop', null), ('2016', 'ES067C1', 'Majadahonda', 'ons', null), ('2016', 'ES067C1', 'Majadahonda', 'beds', null), ('2016', 'ES067C1', 'Majadahonda', 'ons_per_res_pop', null), ('2016', 'ES067C1', 'Majadahonda', 'beds_per_1000res_pop', null), ('2016', 'ES068C1', 'Torremolinos', 'ons', '5737216'), ('2016', 'ES068C1', 'Torremolinos', 'beds', '25223'), ('2016', 'ES068C1', 'Torremolinos', 'ons_per_res_pop', '84.6'), ('2016', 'ES068C1', 'Torremolinos', 'beds_per_1000res_pop', '372.1'), ('2016', 'ES069C1', 'Castelldefels', 'ons', '855085'), ('2016', 'ES069C1', 'Castelldefels', 'beds', '4970'), ('2016', 'ES069C1', 'Castelldefels', 'ons_per_res_pop', '13.2'), ('2016', 'ES069C1', 'Castelldefels', 'beds_per_1000res_pop', '76.6'), ('2016', 'ES070C1', 'Irun', 'ons', null), ('2016', 'ES070C1', 'Irun', 'beds', null), ('2016', 'ES070C1', 'Irun', 'ons_per_res_pop', null), ('2016', 'ES070C1', 'Irun', 'beds_per_1000res_pop', null), ('2016', 'ES071C1', 'Granollers', 'ons', null), ('2016', 'ES071C1', 'Granollers', 'beds', null), ('2016', 'ES071C1', 'Granollers', 'ons_per_res_pop', null), ('2016', 'ES071C1', 'Granollers', 'beds_per_1000res_pop', null), ('2016', 'ES072C1', 'Arrecife', 'ons', null), ('2016', 'ES072C1', 'Arrecife', 'beds', null), ('2016', 'ES072C1', 'Arrecife', 'ons_per_res_pop', null), ('2016', 'ES072C1', 'Arrecife', 'beds_per_1000res_pop', null), ('2016', 'ES073C1', 'Elda', 'ons', null), ('2016', 'ES073C1', 'Elda', 'beds', null), ('2016', 'ES073C1', 'Elda', 'ons_per_res_pop', null), ('2016', 'ES073C1', 'Elda', 'beds_per_1000res_pop', null), ('2016', 'ES074C1', 'Santa Lucía de Tirajana', 'ons', null), ('2016', 'ES074C1', 'Santa Lucía de Tirajana', 'beds', null), ('2016', 'ES074C1', 'Santa Lucía de Tirajana', 'ons_per_res_pop', null), ('2016', 'ES074C1', 'Santa Lucía de Tirajana', 'beds_per_1000res_pop', null), ('2016', 'ES075C1', 'Mollet del Vallès', 'ons', null), ('2016', 'ES075C1', 'Mollet del Vallès', 'beds', null), ('2016', 'ES075C1', 'Mollet del Vallès', 'ons_per_res_pop', null), ('2016', 'ES075C1', 'Mollet del Vallès', 'beds_per_1000res_pop', null), ('2016', 'ES501C1', 'Granada', 'ons', '3555306'), ('2016', 'ES501C1', 'Granada', 'beds', '16362'), ('2016', 'ES501C1', 'Granada', 'ons_per_res_pop', '15.1'), ('2016', 'ES501C1', 'Granada', 'beds_per_1000res_pop', '69.7'), ('2016', 'ES503C1', 'Badalona', 'ons', null), ('2016', 'ES503C1', 'Badalona', 'beds', null), ('2016', 'ES503C1', 'Badalona', 'ons_per_res_pop', null), ('2016', 'ES503C1', 'Badalona', 'beds_per_1000res_pop', null), ('2016', 'ES504C1', 'Móstoles', 'ons', null), ('2016', 'ES504C1', 'Móstoles', 'beds', null), ('2016', 'ES504C1', 'Móstoles', 'ons_per_res_pop', null), ('2016', 'ES504C1', 'Móstoles', 'beds_per_1000res_pop', null), ('2016', 'ES505C1', 'Elche/Elx', 'ons', '741126'), ('2016', 'ES505C1', 'Elche/Elx', 'beds', '3690'), ('2016', 'ES505C1', 'Elche/Elx', 'ons_per_res_pop', '3.3'), ('2016', 'ES505C1', 'Elche/Elx', 'beds_per_1000res_pop', '16.2'), ('2016', 'ES506C1', 'Cartagena', 'ons', '1872436'), ('2016', 'ES506C1', 'Cartagena', 'beds', '16762'), ('2016', 'ES506C1', 'Cartagena', 'ons_per_res_pop', '8.7'), ('2016', 'ES506C1', 'Cartagena', 'beds_per_1000res_pop', '78.1'), ('2016', 'ES507C1', 'Sabadell', 'ons', null), ('2016', 'ES507C1', 'Sabadell', 'beds', null), ('2016', 'ES507C1', 'Sabadell', 'ons_per_res_pop', null), ('2016', 'ES507C1', 'Sabadell', 'beds_per_1000res_pop', null), ('2016', 'ES508C1', 'Jerez de la Frontera', 'ons', '651306'), ('2016', 'ES508C1', 'Jerez de la Frontera', 'beds', '3856'), ('2016', 'ES508C1', 'Jerez de la Frontera', 'ons_per_res_pop', '3.1'), ('2016', 'ES508C1', 'Jerez de la Frontera', 'beds_per_1000res_pop', '18.1'), ('2016', 'ES509C1', 'Fuenlabrada', 'ons', null), ('2016', 'ES509C1', 'Fuenlabrada', 'beds', null), ('2016', 'ES509C1', 'Fuenlabrada', 'ons_per_res_pop', null), ('2016', 'ES509C1', 'Fuenlabrada', 'beds_per_1000res_pop', null), ('2016', 'ES510C1', 'San Sebastián/Donostia', 'ons', '1575538'), ('2016', 'ES510C1', 'San Sebastián/Donostia', 'beds', '9217'), ('2016', 'ES510C1', 'San Sebastián/Donostia', 'ons_per_res_pop', '8.5'), ('2016', 'ES510C1', 'San Sebastián/Donostia', 'beds_per_1000res_pop', '49.5'), ('2016', 'ES511C1', 'Alcalá de Henares', 'ons', null), ('2016', 'ES511C1', 'Alcalá de Henares', 'beds', null), ('2016', 'ES511C1', 'Alcalá de Henares', 'ons_per_res_pop', null), ('2016', 'ES511C1', 'Alcalá de Henares', 'beds_per_1000res_pop', null), ('2016', 'ES512C1', 'Terrassa', 'ons', null), ('2016', 'ES512C1', 'Terrassa', 'beds', null), ('2016', 'ES512C1', 'Terrassa', 'ons_per_res_pop', null), ('2016', 'ES512C1', 'Terrassa', 'beds_per_1000res_pop', null), ('2016', 'ES513C1', 'Leganés', 'ons', null), ('2016', 'ES513C1', 'Leganés', 'beds', null), ('2016', 'ES513C1', 'Leganés', 'ons_per_res_pop', null), ('2016', 'ES513C1', 'Leganés', 'beds_per_1000res_pop', null), ('2016', 'ES514C1', 'Almería', 'ons', '861157'), ('2016', 'ES514C1', 'Almería', 'beds', '6036'), ('2016', 'ES514C1', 'Almería', 'ons_per_res_pop', '4.4'), ('2016', 'ES514C1', 'Almería', 'beds_per_1000res_pop', '31'), ('2016', 'ES515C1', 'Burgos', 'ons', '788678'), ('2016', 'ES515C1', 'Burgos', 'beds', '5156'), ('2016', 'ES515C1', 'Burgos', 'ons_per_res_pop', '4.5'), ('2016', 'ES515C1', 'Burgos', 'beds_per_1000res_pop', '29.2'), ('2016', 'ES516C1', 'Salamanca', 'ons', '1105003'), ('2016', 'ES516C1', 'Salamanca', 'beds', '6009'), ('2016', 'ES516C1', 'Salamanca', 'ons_per_res_pop', '7.6'), ('2016', 'ES516C1', 'Salamanca', 'beds_per_1000res_pop', '41.5'), ('2016', 'ES517C1', 'Alcorcón', 'ons', null), ('2016', 'ES517C1', 'Alcorcón', 'beds', null), ('2016', 'ES517C1', 'Alcorcón', 'ons_per_res_pop', null), ('2016', 'ES517C1', 'Alcorcón', 'beds_per_1000res_pop', null), ('2016', 'ES518C1', 'Getafe', 'ons', null), ('2016', 'ES518C1', 'Getafe', 'beds', null), ('2016', 'ES518C1', 'Getafe', 'ons_per_res_pop', null), ('2016', 'ES518C1', 'Getafe', 'beds_per_1000res_pop', null), ('2016', 'ES519C1', 'Albacete', 'ons', '285154'), ('2016', 'ES519C1', 'Albacete', 'beds', '2595'), ('2016', 'ES519C1', 'Albacete', 'ons_per_res_pop', '1.7'), ('2016', 'ES519C1', 'Albacete', 'beds_per_1000res_pop', '15'), ('2016', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons', '438990'), ('2016', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds', '3203'), ('2016', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons_per_res_pop', '2.6'), ('2016', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds_per_1000res_pop', '18.7'), ('2016', 'ES521C1', 'Huelva', 'ons', null), ('2016', 'ES521C1', 'Huelva', 'beds', null), ('2016', 'ES521C1', 'Huelva', 'ons_per_res_pop', null), ('2016', 'ES521C1', 'Huelva', 'beds_per_1000res_pop', null), ('2016', 'ES522C1', 'Cádiz', 'ons', '588318'), ('2016', 'ES522C1', 'Cádiz', 'beds', '2823'), ('2016', 'ES522C1', 'Cádiz', 'ons_per_res_pop', '4.9'), ('2016', 'ES522C1', 'Cádiz', 'beds_per_1000res_pop', '23.7'), ('2016', 'ES523C1', 'León', 'ons', '751117'), ('2016', 'ES523C1', 'León', 'beds', '3956'), ('2016', 'ES523C1', 'León', 'ons_per_res_pop', '6'), ('2016', 'ES523C1', 'León', 'beds_per_1000res_pop', '31.3'), ('2016', 'ES524C1', 'San Cristóbal de la Laguna', 'ons', null), ('2016', 'ES524C1', 'San Cristóbal de la Laguna', 'beds', null), ('2016', 'ES524C1', 'San Cristóbal de la Laguna', 'ons_per_res_pop', null), ('2016', 'ES524C1', 'San Cristóbal de la Laguna', 'beds_per_1000res_pop', null), ('2016', 'ES525C1', 'Tarragona', 'ons', '1107198'), ('2016', 'ES525C1', 'Tarragona', 'beds', '12529'), ('2016', 'ES525C1', 'Tarragona', 'ons_per_res_pop', '8.4'), ('2016', 'ES525C1', 'Tarragona', 'beds_per_1000res_pop', '95.6'), ('2016', 'ES526C1', 'Santa Coloma de Gramenet', 'ons', null), ('2016', 'ES526C1', 'Santa Coloma de Gramenet', 'beds', null), ('2016', 'ES526C1', 'Santa Coloma de Gramenet', 'ons_per_res_pop', null), ('2016', 'ES526C1', 'Santa Coloma de Gramenet', 'beds_per_1000res_pop', null), ('2016', 'ES527C1', 'Jaén', 'ons', null), ('2016', 'ES527C1', 'Jaén', 'beds', null), ('2016', 'ES527C1', 'Jaén', 'ons_per_res_pop', null), ('2016', 'ES527C1', 'Jaén', 'beds_per_1000res_pop', null), ('2016', 'ES528C1', 'Lleida', 'ons', '269963'), ('2016', 'ES528C1', 'Lleida', 'beds', '2170'), ('2016', 'ES528C1', 'Lleida', 'ons_per_res_pop', '2'), ('2016', 'ES528C1', 'Lleida', 'beds_per_1000res_pop', '15.7'), ('2016', 'ES529C1', 'Ourense', 'ons', '217465'), ('2016', 'ES529C1', 'Ourense', 'beds', '1282'), ('2016', 'ES529C1', 'Ourense', 'ons_per_res_pop', '2.1'), ('2016', 'ES529C1', 'Ourense', 'beds_per_1000res_pop', '12.1'), ('2016', 'ES530C1', 'Mataró', 'ons', null), ('2016', 'ES530C1', 'Mataró', 'beds', null), ('2016', 'ES530C1', 'Mataró', 'ons_per_res_pop', null), ('2016', 'ES530C1', 'Mataró', 'beds_per_1000res_pop', null), ('2016', 'ES531C1', 'Dos Hermanas', 'ons', null), ('2016', 'ES531C1', 'Dos Hermanas', 'beds', null), ('2016', 'ES531C1', 'Dos Hermanas', 'ons_per_res_pop', null), ('2016', 'ES531C1', 'Dos Hermanas', 'beds_per_1000res_pop', null), ('2016', 'ES532C1', 'Algeciras', 'ons', null), ('2016', 'ES532C1', 'Algeciras', 'beds', null), ('2016', 'ES532C1', 'Algeciras', 'ons_per_res_pop', null), ('2016', 'ES532C1', 'Algeciras', 'beds_per_1000res_pop', null), ('2016', 'ES533C1', 'Marbella', 'ons', '4125465'), ('2016', 'ES533C1', 'Marbella', 'beds', '27279'), ('2016', 'ES533C1', 'Marbella', 'ons_per_res_pop', '29.3'), ('2016', 'ES533C1', 'Marbella', 'beds_per_1000res_pop', '193.8'), ('2016', 'ES534C1', 'Torrejón de Ardoz', 'ons', null), ('2016', 'ES534C1', 'Torrejón de Ardoz', 'beds', null), ('2016', 'ES534C1', 'Torrejón de Ardoz', 'ons_per_res_pop', null), ('2016', 'ES534C1', 'Torrejón de Ardoz', 'beds_per_1000res_pop', null), ('2016', 'ES535C1', 'Alcobendas', 'ons', null), ('2016', 'ES535C1', 'Alcobendas', 'beds', null), ('2016', 'ES535C1', 'Alcobendas', 'ons_per_res_pop', null), ('2016', 'ES535C1', 'Alcobendas', 'beds_per_1000res_pop', null), ('2016', 'ES536C1', 'Alcalá de Guadaíra', 'ons', null), ('2016', 'ES536C1', 'Alcalá de Guadaíra', 'beds', null), ('2016', 'ES536C1', 'Alcalá de Guadaíra', 'ons_per_res_pop', null), ('2016', 'ES536C1', 'Alcalá de Guadaíra', 'beds_per_1000res_pop', null), ('2016', 'ES537C1', 'Alcoy', 'ons', null), ('2016', 'ES537C1', 'Alcoy', 'beds', null), ('2016', 'ES537C1', 'Alcoy', 'ons_per_res_pop', null), ('2016', 'ES537C1', 'Alcoy', 'beds_per_1000res_pop', null), ('2016', 'ES538C1', 'Ávila', 'ons', '406915'), ('2016', 'ES538C1', 'Ávila', 'beds', '2923'), ('2016', 'ES538C1', 'Ávila', 'ons_per_res_pop', '7'), ('2016', 'ES538C1', 'Ávila', 'beds_per_1000res_pop', '50.3'), ('2016', 'ES539C1', 'Benalmádena', 'ons', '4339586'), ('2016', 'ES539C1', 'Benalmádena', 'beds', '21043'), ('2016', 'ES539C1', 'Benalmádena', 'ons_per_res_pop', '64.5'), ('2016', 'ES539C1', 'Benalmádena', 'beds_per_1000res_pop', '312.9'), ('2016', 'ES540C1', 'Chiclana de la Frontera', 'ons', '2156007'), ('2016', 'ES540C1', 'Chiclana de la Frontera', 'beds', '14585'), ('2016', 'ES540C1', 'Chiclana de la Frontera', 'ons_per_res_pop', '26.1'), ('2016', 'ES540C1', 'Chiclana de la Frontera', 'beds_per_1000res_pop', '176.5'), ('2016', 'ES541C1', 'Collado Villalba', 'ons', null), ('2016', 'ES541C1', 'Collado Villalba', 'beds', null), ('2016', 'ES541C1', 'Collado Villalba', 'ons_per_res_pop', null), ('2016', 'ES541C1', 'Collado Villalba', 'beds_per_1000res_pop', null), ('2016', 'ES542C1', 'Cuenca', 'ons', '413788'), ('2016', 'ES542C1', 'Cuenca', 'beds', '4517'), ('2016', 'ES542C1', 'Cuenca', 'ons_per_res_pop', '7.5'), ('2016', 'ES542C1', 'Cuenca', 'beds_per_1000res_pop', '82'), ('2016', 'ES543C1', 'Eivissa', 'ons', '1888172'), ('2016', 'ES543C1', 'Eivissa', 'beds', '13398'), ('2016', 'ES543C1', 'Eivissa', 'ons_per_res_pop', '38.1'), ('2016', 'ES543C1', 'Eivissa', 'beds_per_1000res_pop', '270.4'), ('2016', 'ES544C1', 'Linares', 'ons', null), ('2016', 'ES544C1', 'Linares', 'beds', null), ('2016', 'ES544C1', 'Linares', 'ons_per_res_pop', null), ('2016', 'ES544C1', 'Linares', 'beds_per_1000res_pop', null), ('2016', 'ES545C1', 'Lorca', 'ons', null), ('2016', 'ES545C1', 'Lorca', 'beds', null), ('2016', 'ES545C1', 'Lorca', 'ons_per_res_pop', null), ('2016', 'ES545C1', 'Lorca', 'beds_per_1000res_pop', null), ('2016', 'ES546C1', 'Mérida', 'ons', '346862'), ('2016', 'ES546C1', 'Mérida', 'beds', '2318'), ('2016', 'ES546C1', 'Mérida', 'ons_per_res_pop', '5.9'), ('2016', 'ES546C1', 'Mérida', 'beds_per_1000res_pop', '39.2'), ('2016', 'ES547C1', 'Sagunto', 'ons', null), ('2016', 'ES547C1', 'Sagunto', 'beds', null), ('2016', 'ES547C1', 'Sagunto', 'ons_per_res_pop', null), ('2016', 'ES547C1', 'Sagunto', 'beds_per_1000res_pop', null), ('2016', 'ES548C1', 'Torrelavega', 'ons', null), ('2016', 'ES548C1', 'Torrelavega', 'beds', null), ('2016', 'ES548C1', 'Torrelavega', 'ons_per_res_pop', null), ('2016', 'ES548C1', 'Torrelavega', 'beds_per_1000res_pop', null), ('2016', 'ES549C1', 'Valdemoro', 'ons', null), ('2016', 'ES549C1', 'Valdemoro', 'beds', null), ('2016', 'ES549C1', 'Valdemoro', 'ons_per_res_pop', null), ('2016', 'ES549C1', 'Valdemoro', 'beds_per_1000res_pop', null), ('2016', 'ES550C1', 'Puerto de la Cruz', 'ons', '5737266'), ('2016', 'ES550C1', 'Puerto de la Cruz', 'beds', '21285'), ('2016', 'ES550C1', 'Puerto de la Cruz', 'ons_per_res_pop', '194.5'), ('2016', 'ES550C1', 'Puerto de la Cruz', 'beds_per_1000res_pop', '721.6'), ('2016', 'ES551C1', 'Paterna', 'ons', null), ('2016', 'ES551C1', 'Paterna', 'beds', null), ('2016', 'ES551C1', 'Paterna', 'ons_per_res_pop', null), ('2016', 'ES551C1', 'Paterna', 'beds_per_1000res_pop', null), ('2016', 'ES552C1', 'Igualada', 'ons', '28193'), ('2016', 'ES552C1', 'Igualada', 'beds', '186'), ('2016', 'ES552C1', 'Igualada', 'ons_per_res_pop', '0.7'), ('2016', 'ES552C1', 'Igualada', 'beds_per_1000res_pop', '4.8'), ('2016', 'ES553C1', 'Torrent', 'ons', null), ('2016', 'ES553C1', 'Torrent', 'beds', null), ('2016', 'ES553C1', 'Torrent', 'ons_per_res_pop', null), ('2016', 'ES553C1', 'Torrent', 'beds_per_1000res_pop', null), ('2016', 'ES554C1', 'Mislata', 'ons', null), ('2016', 'ES554C1', 'Mislata', 'beds', null), ('2016', 'ES554C1', 'Mislata', 'ons_per_res_pop', null), ('2016', 'ES554C1', 'Mislata', 'beds_per_1000res_pop', null), ('2016', 'ES555C1', 'Rivas-Vaciamadrid', 'ons', null), ('2016', 'ES555C1', 'Rivas-Vaciamadrid', 'beds', null), ('2016', 'ES555C1', 'Rivas-Vaciamadrid', 'ons_per_res_pop', null), ('2016', 'ES555C1', 'Rivas-Vaciamadrid', 'beds_per_1000res_pop', null), ('2016', 'ES556C1', 'Santurtzi', 'ons', '58114'), ('2016', 'ES556C1', 'Santurtzi', 'beds', '297'), ('2016', 'ES556C1', 'Santurtzi', 'ons_per_res_pop', '1.3'), ('2016', 'ES556C1', 'Santurtzi', 'beds_per_1000res_pop', '6.5'), ('2016', 'ES557C1', 'Esplugues de Llobregat', 'ons', '97977'), ('2016', 'ES557C1', 'Esplugues de Llobregat', 'beds', '474'), ('2016', 'ES557C1', 'Esplugues de Llobregat', 'ons_per_res_pop', '2.1'), ('2016', 'ES557C1', 'Esplugues de Llobregat', 'beds_per_1000res_pop', '10.4'), ('2016', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons', null), ('2016', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds', null), ('2016', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons_per_res_pop', null), ('2016', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds_per_1000res_pop', null), ('2016', 'FR', 'France', 'ons', '292350000'), ('2016', 'FR', 'France', 'beds', '5019994'), ('2016', 'FR', 'France', 'ons_per_res_pop', '4.4'), ('2016', 'FR', 'France', 'beds_per_1000res_pop', '75.6'), ('2016', 'FR001C1', 'Paris', 'ons', '13058510'), ('2016', 'FR001C1', 'Paris', 'beds', '306626'), ('2016', 'FR001C1', 'Paris', 'ons_per_res_pop', '1.3'), ('2016', 'FR001C1', 'Paris', 'beds_per_1000res_pop', '31.3'), ('2016', 'FR003C2', 'Lyon', 'ons', '2558804'), ('2016', 'FR003C2', 'Lyon', 'beds', '29561'), ('2016', 'FR003C2', 'Lyon', 'ons_per_res_pop', '2.4'), ('2016', 'FR003C2', 'Lyon', 'beds_per_1000res_pop', '27.5'), ('2016', 'FR004C2', 'Toulouse', 'ons', '2035314'), ('2016', 'FR004C2', 'Toulouse', 'beds', '23845'), ('2016', 'FR004C2', 'Toulouse', 'ons_per_res_pop', '3.4'), ('2016', 'FR004C2', 'Toulouse', 'beds_per_1000res_pop', '39.3'), ('2016', 'FR006C2', 'Strasbourg', 'ons', '1256722'), ('2016', 'FR006C2', 'Strasbourg', 'beds', '15828'), ('2016', 'FR006C2', 'Strasbourg', 'ons_per_res_pop', '3.1'), ('2016', 'FR006C2', 'Strasbourg', 'beds_per_1000res_pop', '39.1'), ('2016', 'FR007C1', 'Bordeaux', 'ons', '2127247'), ('2016', 'FR007C1', 'Bordeaux', 'beds', '22888'), ('2016', 'FR007C1', 'Bordeaux', 'ons_per_res_pop', '3.3'), ('2016', 'FR007C1', 'Bordeaux', 'beds_per_1000res_pop', '35.6'), ('2016', 'FR008C1', 'Nantes', 'ons', '1327571'), ('2016', 'FR008C1', 'Nantes', 'beds', '13996'), ('2016', 'FR008C1', 'Nantes', 'ons_per_res_pop', '3'), ('2016', 'FR008C1', 'Nantes', 'beds_per_1000res_pop', '31.3'), ('2016', 'FR009C1', 'Lille', 'ons', '569665'), ('2016', 'FR009C1', 'Lille', 'beds', '15793'), ('2016', 'FR009C1', 'Lille', 'ons_per_res_pop', '0.6'), ('2016', 'FR009C1', 'Lille', 'beds_per_1000res_pop', '17.4'), ('2016', 'FR010C1', 'Montpellier', 'ons', '740760'), ('2016', 'FR010C1', 'Montpellier', 'beds', '8876'), ('2016', 'FR010C1', 'Montpellier', 'ons_per_res_pop', '2.5'), ('2016', 'FR010C1', 'Montpellier', 'beds_per_1000res_pop', '29.5'), ('2016', 'FR011C1', 'Saint-Etienne', 'ons', '236203'), ('2016', 'FR011C1', 'Saint-Etienne', 'beds', '3538'), ('2016', 'FR011C1', 'Saint-Etienne', 'ons_per_res_pop', '1.2'), ('2016', 'FR011C1', 'Saint-Etienne', 'beds_per_1000res_pop', '18.2'), ('2016', 'FR012C1', 'Le Havre', 'ons', '170136'), ('2016', 'FR012C1', 'Le Havre', 'beds', '3610'), ('2016', 'FR012C1', 'Le Havre', 'ons_per_res_pop', '0.9'), ('2016', 'FR012C1', 'Le Havre', 'beds_per_1000res_pop', '18.5'), ('2016', 'FR013C2', 'Rennes', 'ons', '673703'), ('2016', 'FR013C2', 'Rennes', 'beds', '6380'), ('2016', 'FR013C2', 'Rennes', 'ons_per_res_pop', '3.1'), ('2016', 'FR013C2', 'Rennes', 'beds_per_1000res_pop', '29.5'), ('2016', 'FR014C2', 'Amiens', 'ons', '174933'), ('2016', 'FR014C2', 'Amiens', 'beds', '2520'), ('2016', 'FR014C2', 'Amiens', 'ons_per_res_pop', '1.3'), ('2016', 'FR014C2', 'Amiens', 'beds_per_1000res_pop', '18.4'), ('2016', 'FR016C1', 'Nancy', 'ons', '375373'), ('2016', 'FR016C1', 'Nancy', 'beds', '5086'), ('2016', 'FR016C1', 'Nancy', 'ons_per_res_pop', '1.8'), ('2016', 'FR016C1', 'Nancy', 'beds_per_1000res_pop', '25'), ('2016', 'FR017C2', 'Metz', 'ons', '175941'), ('2016', 'FR017C2', 'Metz', 'beds', '4687'), ('2016', 'FR017C2', 'Metz', 'ons_per_res_pop', '1.1'), ('2016', 'FR017C2', 'Metz', 'beds_per_1000res_pop', '28'), ('2016', 'FR018C1', 'Reims', 'ons', '339541'), ('2016', 'FR018C1', 'Reims', 'beds', '6501'), ('2016', 'FR018C1', 'Reims', 'ons_per_res_pop', '1.6'), ('2016', 'FR018C1', 'Reims', 'beds_per_1000res_pop', '31'), ('2016', 'FR019C1', 'Orléans', 'ons', '252054'), ('2016', 'FR019C1', 'Orléans', 'beds', '4612'), ('2016', 'FR019C1', 'Orléans', 'ons_per_res_pop', '1.2'), ('2016', 'FR019C1', 'Orléans', 'beds_per_1000res_pop', '22.4'), ('2016', 'FR020C2', 'Dijon', 'ons', '352213'), ('2016', 'FR020C2', 'Dijon', 'beds', '6442'), ('2016', 'FR020C2', 'Dijon', 'ons_per_res_pop', '1.8'), ('2016', 'FR020C2', 'Dijon', 'beds_per_1000res_pop', '32.7'), ('2016', 'FR021C2', 'Poitiers', 'ons', '133218'), ('2016', 'FR021C2', 'Poitiers', 'beds', '3120'), ('2016', 'FR021C2', 'Poitiers', 'ons_per_res_pop', '1.4'), ('2016', 'FR021C2', 'Poitiers', 'beds_per_1000res_pop', '31.8'), ('2016', 'FR022C2', 'Clermont-Ferrand', 'ons', '367330'), ('2016', 'FR022C2', 'Clermont-Ferrand', 'beds', '8319'), ('2016', 'FR022C2', 'Clermont-Ferrand', 'ons_per_res_pop', '1.9'), ('2016', 'FR022C2', 'Clermont-Ferrand', 'beds_per_1000res_pop', '42.8'), ('2016', 'FR023C2', 'Caen', 'ons', '314305'), ('2016', 'FR023C2', 'Caen', 'beds', '4763'), ('2016', 'FR023C2', 'Caen', 'ons_per_res_pop', '2.2'), ('2016', 'FR023C2', 'Caen', 'beds_per_1000res_pop', '32.9'), ('2016', 'FR024C2', 'Limoges', 'ons', '163504'), ('2016', 'FR024C2', 'Limoges', 'beds', '4684'), ('2016', 'FR024C2', 'Limoges', 'ons_per_res_pop', '1.1'), ('2016', 'FR024C2', 'Limoges', 'beds_per_1000res_pop', '32.6'), ('2016', 'FR025C1', 'Besançon', 'ons', '143924'), ('2016', 'FR025C1', 'Besançon', 'beds', '3121'), ('2016', 'FR025C1', 'Besançon', 'ons_per_res_pop', '1.2'), ('2016', 'FR025C1', 'Besançon', 'beds_per_1000res_pop', '26.8'), ('2016', 'FR026C2', 'Grenoble', 'ons', '593361'), ('2016', 'FR026C2', 'Grenoble', 'beds', '8233'), ('2016', 'FR026C2', 'Grenoble', 'ons_per_res_pop', '1.9'), ('2016', 'FR026C2', 'Grenoble', 'beds_per_1000res_pop', '27.1'), ('2016', 'FR027C1', 'Ajaccio', 'ons', '654925'), ('2016', 'FR027C1', 'Ajaccio', 'beds', '4910'), ('2016', 'FR027C1', 'Ajaccio', 'ons_per_res_pop', null), ('2016', 'FR027C1', 'Ajaccio', 'beds_per_1000res_pop', null), ('2016', 'FR028C1', 'Saint Denis', 'ons', null), ('2016', 'FR028C1', 'Saint Denis', 'beds', '1288'), ('2016', 'FR028C1', 'Saint Denis', 'ons_per_res_pop', null), ('2016', 'FR028C1', 'Saint Denis', 'beds_per_1000res_pop', '8.7'), ('2016', 'FR030C1', 'Fort-de-France', 'ons', null), ('2016', 'FR030C1', 'Fort-de-France', 'beds', '896'), ('2016', 'FR030C1', 'Fort-de-France', 'ons_per_res_pop', null), ('2016', 'FR030C1', 'Fort-de-France', 'beds_per_1000res_pop', '8.9'), ('2016', 'FR032C2', 'Toulon', 'ons', '1099859'), ('2016', 'FR032C2', 'Toulon', 'beds', '14342'), ('2016', 'FR032C2', 'Toulon', 'ons_per_res_pop', '3.3'), ('2016', 'FR032C2', 'Toulon', 'beds_per_1000res_pop', '43'), ('2016', 'FR034C2', 'Valenciennes', 'ons', '47700'), ('2016', 'FR034C2', 'Valenciennes', 'beds', '1734'), ('2016', 'FR034C2', 'Valenciennes', 'ons_per_res_pop', '0.5'), ('2016', 'FR034C2', 'Valenciennes', 'beds_per_1000res_pop', '16.8'), ('2016', 'FR035C2', 'Tours', 'ons', '240987'), ('2016', 'FR035C2', 'Tours', 'beds', '8053'), ('2016', 'FR035C2', 'Tours', 'ons_per_res_pop', '1'), ('2016', 'FR035C2', 'Tours', 'beds_per_1000res_pop', '33.2'), ('2016', 'FR036C2', 'Angers', 'ons', '186474'), ('2016', 'FR036C2', 'Angers', 'beds', '4048'), ('2016', 'FR036C2', 'Angers', 'ons_per_res_pop', '1'), ('2016', 'FR036C2', 'Angers', 'beds_per_1000res_pop', '22.7'), ('2016', 'FR037C1', 'Brest', 'ons', '271916'), ('2016', 'FR037C1', 'Brest', 'beds', '3675'), ('2016', 'FR037C1', 'Brest', 'ons_per_res_pop', '2'), ('2016', 'FR037C1', 'Brest', 'beds_per_1000res_pop', '26.4'), ('2016', 'FR038C2', 'Le Mans', 'ons', '160682'), ('2016', 'FR038C2', 'Le Mans', 'beds', '3277'), ('2016', 'FR038C2', 'Le Mans', 'ons_per_res_pop', '1.1'), ('2016', 'FR038C2', 'Le Mans', 'beds_per_1000res_pop', '21.8'), ('2016', 'FR039C2', 'Avignon', 'ons', '445893'), ('2016', 'FR039C2', 'Avignon', 'beds', '10257'), ('2016', 'FR039C2', 'Avignon', 'ons_per_res_pop', '4.1'), ('2016', 'FR039C2', 'Avignon', 'beds_per_1000res_pop', '93.3'), ('2016', 'FR040C2', 'Mulhouse', 'ons', '251833'), ('2016', 'FR040C2', 'Mulhouse', 'beds', '4360'), ('2016', 'FR040C2', 'Mulhouse', 'ons_per_res_pop', '1.4'), ('2016', 'FR040C2', 'Mulhouse', 'beds_per_1000res_pop', '24.3'), ('2016', 'FR042C1', 'Dunkerque', 'ons', '266256'), ('2016', 'FR042C1', 'Dunkerque', 'beds', '3682'), ('2016', 'FR042C1', 'Dunkerque', 'ons_per_res_pop', '1.9'), ('2016', 'FR042C1', 'Dunkerque', 'beds_per_1000res_pop', '26.9'), ('2016', 'FR043C2', 'Perpignan', 'ons', '178933'), ('2016', 'FR043C2', 'Perpignan', 'beds', '4109'), ('2016', 'FR043C2', 'Perpignan', 'ons_per_res_pop', '1.4'), ('2016', 'FR043C2', 'Perpignan', 'beds_per_1000res_pop', '31.2'), ('2016', 'FR044C2', 'Nîmes', 'ons', '294568'), ('2016', 'FR044C2', 'Nîmes', 'beds', '4554'), ('2016', 'FR044C2', 'Nîmes', 'ons_per_res_pop', '2'), ('2016', 'FR044C2', 'Nîmes', 'beds_per_1000res_pop', '30.2'), ('2016', 'FR045C2', 'Pau', 'ons', '206569'), ('2016', 'FR045C2', 'Pau', 'beds', '3456'), ('2016', 'FR045C2', 'Pau', 'ons_per_res_pop', '1.9'), ('2016', 'FR045C2', 'Pau', 'beds_per_1000res_pop', '31.4'), ('2016', 'FR046C2', 'Bayonne', 'ons', '1164995'), ('2016', 'FR046C2', 'Bayonne', 'beds', '13262'), ('2016', 'FR046C2', 'Bayonne', 'ons_per_res_pop', '10.2'), ('2016', 'FR046C2', 'Bayonne', 'beds_per_1000res_pop', '116.3'), ('2016', 'FR047C2', 'Annemasse', 'ons', '295925'), ('2016', 'FR047C2', 'Annemasse', 'beds', '2176'), ('2016', 'FR047C2', 'Annemasse', 'ons_per_res_pop', '4.8'), ('2016', 'FR047C2', 'Annemasse', 'beds_per_1000res_pop', '35.6'), ('2016', 'FR048C1', 'Annecy', 'ons', '390581'), ('2016', 'FR048C1', 'Annecy', 'beds', '5455'), ('2016', 'FR048C1', 'Annecy', 'ons_per_res_pop', '3.1'), ('2016', 'FR048C1', 'Annecy', 'beds_per_1000res_pop', '43.2'), ('2016', 'FR049C2', 'Lorient', 'ons', '21280'), ('2016', 'FR049C2', 'Lorient', 'beds', '1438'), ('2016', 'FR049C2', 'Lorient', 'ons_per_res_pop', '0.3'), ('2016', 'FR049C2', 'Lorient', 'beds_per_1000res_pop', '18'), ('2016', 'FR050C2', 'Montbéliard', 'ons', '233714'), ('2016', 'FR050C2', 'Montbéliard', 'beds', '2114'), ('2016', 'FR050C2', 'Montbéliard', 'ons_per_res_pop', null), ('2016', 'FR050C2', 'Montbéliard', 'beds_per_1000res_pop', null), ('2016', 'FR051C2', 'Troyes', 'ons', '49953'), ('2016', 'FR051C2', 'Troyes', 'beds', '1762'), ('2016', 'FR051C2', 'Troyes', 'ons_per_res_pop', '0.5'), ('2016', 'FR051C2', 'Troyes', 'beds_per_1000res_pop', '16.6'), ('2016', 'FR052C2', 'Saint-Nazaire', 'ons', '339710'), ('2016', 'FR052C2', 'Saint-Nazaire', 'beds', '2925'), ('2016', 'FR052C2', 'Saint-Nazaire', 'ons_per_res_pop', '4.9'), ('2016', 'FR052C2', 'Saint-Nazaire', 'beds_per_1000res_pop', '42'), ('2016', 'FR053C1', 'La Rochelle', 'ons', '673503'), ('2016', 'FR053C1', 'La Rochelle', 'beds', '7517'), ('2016', 'FR053C1', 'La Rochelle', 'ons_per_res_pop', '8.1'), ('2016', 'FR053C1', 'La Rochelle', 'beds_per_1000res_pop', '90.7'), ('2016', 'FR056C1', 'Angoulême', 'ons', '238584'), ('2016', 'FR056C1', 'Angoulême', 'beds', '1968'), ('2016', 'FR056C1', 'Angoulême', 'ons_per_res_pop', null), ('2016', 'FR056C1', 'Angoulême', 'beds_per_1000res_pop', null), ('2016', 'FR057C2', 'Boulogne-sur-Mer', 'ons', '50770'), ('2016', 'FR057C2', 'Boulogne-sur-Mer', 'beds', '2693'), ('2016', 'FR057C2', 'Boulogne-sur-Mer', 'ons_per_res_pop', '0.7'), ('2016', 'FR057C2', 'Boulogne-sur-Mer', 'beds_per_1000res_pop', '35.5'), ('2016', 'FR058C2', 'Chambéry', 'ons', '11556'), ('2016', 'FR058C2', 'Chambéry', 'beds', '2232'), ('2016', 'FR058C2', 'Chambéry', 'ons_per_res_pop', '0.1'), ('2016', 'FR058C2', 'Chambéry', 'beds_per_1000res_pop', '25.5'), ('2016', 'FR059C2', 'Chalon-sur-Saône', 'ons', '449783'), ('2016', 'FR059C2', 'Chalon-sur-Saône', 'beds', '3207'), ('2016', 'FR059C2', 'Chalon-sur-Saône', 'ons_per_res_pop', null), ('2016', 'FR059C2', 'Chalon-sur-Saône', 'beds_per_1000res_pop', null), ('2016', 'FR060C2', 'Chartres', 'ons', '144522'), ('2016', 'FR060C2', 'Chartres', 'beds', '3131'), ('2016', 'FR060C2', 'Chartres', 'ons_per_res_pop', '1.9'), ('2016', 'FR060C2', 'Chartres', 'beds_per_1000res_pop', '40.8'), ('2016', 'FR061C2', 'Niort', 'ons', '350630'), ('2016', 'FR061C2', 'Niort', 'beds', '3928'), ('2016', 'FR061C2', 'Niort', 'ons_per_res_pop', null), ('2016', 'FR061C2', 'Niort', 'beds_per_1000res_pop', null), ('2016', 'FR062C1', 'Calais', 'ons', '66073'), ('2016', 'FR062C1', 'Calais', 'beds', '1652'), ('2016', 'FR062C1', 'Calais', 'ons_per_res_pop', '0.9'), ('2016', 'FR062C1', 'Calais', 'beds_per_1000res_pop', '22'), ('2016', 'FR063C2', 'Béziers', 'ons', '402674'), ('2016', 'FR063C2', 'Béziers', 'beds', '2993'), ('2016', 'FR063C2', 'Béziers', 'ons_per_res_pop', '5.3'), ('2016', 'FR063C2', 'Béziers', 'beds_per_1000res_pop', '39.1'), ('2016', 'FR064C2', 'Arras', 'ons', null), ('2016', 'FR064C2', 'Arras', 'beds', '1564'), ('2016', 'FR064C2', 'Arras', 'ons_per_res_pop', null), ('2016', 'FR064C2', 'Arras', 'beds_per_1000res_pop', '22.6'), ('2016', 'FR065C2', 'Bourges', 'ons', '61032'), ('2016', 'FR065C2', 'Bourges', 'beds', '2186'), ('2016', 'FR065C2', 'Bourges', 'ons_per_res_pop', '0.9'), ('2016', 'FR065C2', 'Bourges', 'beds_per_1000res_pop', '33.3'), ('2016', 'FR066C1', 'Saint-Brieuc', 'ons', '36102'), ('2016', 'FR066C1', 'Saint-Brieuc', 'beds', '1609'), ('2016', 'FR066C1', 'Saint-Brieuc', 'ons_per_res_pop', '0.6'), ('2016', 'FR066C1', 'Saint-Brieuc', 'beds_per_1000res_pop', '24.8'), ('2016', 'FR067C2', 'Quimper', 'ons', '350211'), ('2016', 'FR067C2', 'Quimper', 'beds', '3817'), ('2016', 'FR067C2', 'Quimper', 'ons_per_res_pop', null), ('2016', 'FR067C2', 'Quimper', 'beds_per_1000res_pop', null), ('2016', 'FR068C2', 'Vannes', 'ons', '1025207'), ('2016', 'FR068C2', 'Vannes', 'beds', '13111'), ('2016', 'FR068C2', 'Vannes', 'ons_per_res_pop', null), ('2016', 'FR068C2', 'Vannes', 'beds_per_1000res_pop', null), ('2016', 'FR069C1', 'Cherbourg', 'ons', '95177'), ('2016', 'FR069C1', 'Cherbourg', 'beds', '2731'), ('2016', 'FR069C1', 'Cherbourg', 'ons_per_res_pop', '1.2'), ('2016', 'FR069C1', 'Cherbourg', 'beds_per_1000res_pop', '34.1'), ('2016', 'FR073C2', 'Tarbes', 'ons', '221871'), ('2016', 'FR073C2', 'Tarbes', 'beds', '1832'), ('2016', 'FR073C2', 'Tarbes', 'ons_per_res_pop', null), ('2016', 'FR073C2', 'Tarbes', 'beds_per_1000res_pop', null), ('2016', 'FR074C2', 'Compiègne', 'ons', '279366'), ('2016', 'FR074C2', 'Compiègne', 'beds', '2035'), ('2016', 'FR074C2', 'Compiègne', 'ons_per_res_pop', null), ('2016', 'FR074C2', 'Compiègne', 'beds_per_1000res_pop', null), ('2016', 'FR076C2', 'Belfort', 'ons', '35025'), ('2016', 'FR076C2', 'Belfort', 'beds', '1686'), ('2016', 'FR076C2', 'Belfort', 'ons_per_res_pop', '0.5'), ('2016', 'FR076C2', 'Belfort', 'beds_per_1000res_pop', '26.2'), ('2016', 'FR077C1', 'Roanne', 'ons', '10564'), ('2016', 'FR077C1', 'Roanne', 'beds', '442'), ('2016', 'FR077C1', 'Roanne', 'ons_per_res_pop', '0.2'), ('2016', 'FR077C1', 'Roanne', 'beds_per_1000res_pop', '9.7'), ('2016', 'FR079C2', 'Saint-Quentin', 'ons', '2941'), ('2016', 'FR079C2', 'Saint-Quentin', 'beds', '1088'), ('2016', 'FR079C2', 'Saint-Quentin', 'ons_per_res_pop', '0.1'), ('2016', 'FR079C2', 'Saint-Quentin', 'beds_per_1000res_pop', '20'), ('2016', 'FR082C2', 'Beauvais', 'ons', '244129'), ('2016', 'FR082C2', 'Beauvais', 'beds', '1488'), ('2016', 'FR082C2', 'Beauvais', 'ons_per_res_pop', null), ('2016', 'FR082C2', 'Beauvais', 'beds_per_1000res_pop', null), ('2016', 'FR084C1', 'Creil', 'ons', '28306'), ('2016', 'FR084C1', 'Creil', 'beds', '1168'), ('2016', 'FR084C1', 'Creil', 'ons_per_res_pop', '0.4'), ('2016', 'FR084C1', 'Creil', 'beds_per_1000res_pop', '15.5'), ('2016', 'FR086C2', 'Evreux', 'ons', '172773'), ('2016', 'FR086C2', 'Evreux', 'beds', '1276'), ('2016', 'FR086C2', 'Evreux', 'ons_per_res_pop', null), ('2016', 'FR086C2', 'Evreux', 'beds_per_1000res_pop', null), ('2016', 'FR090C2', 'Châteauroux', 'ons', '240922'), ('2016', 'FR090C2', 'Châteauroux', 'beds', '2070'), ('2016', 'FR090C2', 'Châteauroux', 'ons_per_res_pop', null), ('2016', 'FR090C2', 'Châteauroux', 'beds_per_1000res_pop', null), ('2016', 'FR093C2', 'Brive-la-Gaillarde', 'ons', '324877'), ('2016', 'FR093C2', 'Brive-la-Gaillarde', 'beds', '2542'), ('2016', 'FR093C2', 'Brive-la-Gaillarde', 'ons_per_res_pop', null), ('2016', 'FR093C2', 'Brive-la-Gaillarde', 'beds_per_1000res_pop', null), ('2016', 'FR096C2', 'Albi', 'ons', '252402'), ('2016', 'FR096C2', 'Albi', 'beds', '2063'), ('2016', 'FR096C2', 'Albi', 'ons_per_res_pop', null), ('2016', 'FR096C2', 'Albi', 'beds_per_1000res_pop', null), ('2016', 'FR099C1', 'Fréjus', 'ons', '4628907'), ('2016', 'FR099C1', 'Fréjus', 'beds', '53676'), ('2016', 'FR099C1', 'Fréjus', 'ons_per_res_pop', '52.4'), ('2016', 'FR099C1', 'Fréjus', 'beds_per_1000res_pop', '607.3'), ('2016', 'FR104C2', 'Châlons-en-Champagne', 'ons', '226184'), ('2016', 'FR104C2', 'Châlons-en-Champagne', 'beds', '1596'), ('2016', 'FR104C2', 'Châlons-en-Champagne', 'ons_per_res_pop', null), ('2016', 'FR104C2', 'Châlons-en-Champagne', 'beds_per_1000res_pop', null), ('2016', 'FR201C1', 'Aubagne', 'ons', '143528'), ('2016', 'FR201C1', 'Aubagne', 'beds', '1390'), ('2016', 'FR201C1', 'Aubagne', 'ons_per_res_pop', null), ('2016', 'FR201C1', 'Aubagne', 'beds_per_1000res_pop', null), ('2016', 'FR202C1', 'Aix-en-Provence', 'ons', '631837'), ('2016', 'FR202C1', 'Aix-en-Provence', 'beds', '8735'), ('2016', 'FR202C1', 'Aix-en-Provence', 'ons_per_res_pop', '4.4'), ('2016', 'FR202C1', 'Aix-en-Provence', 'beds_per_1000res_pop', '61.1'), ('2016', 'FR203C1', 'Marseille', 'ons', '1296770'), ('2016', 'FR203C1', 'Marseille', 'beds', '17201'), ('2016', 'FR203C1', 'Marseille', 'ons_per_res_pop', '1.5'), ('2016', 'FR203C1', 'Marseille', 'beds_per_1000res_pop', '19.2'), ('2016', 'FR205C2', 'Nice', 'ons', '4633422'), ('2016', 'FR205C2', 'Nice', 'beds', '68623'), ('2016', 'FR205C2', 'Nice', 'ons_per_res_pop', '6.9'), ('2016', 'FR205C2', 'Nice', 'beds_per_1000res_pop', '102'), ('2016', 'FR206C1', 'CA de Sophia-Antipolis', 'ons', '2568416'), ('2016', 'FR206C1', 'CA de Sophia-Antipolis', 'beds', '27826'), ('2016', 'FR206C1', 'CA de Sophia-Antipolis', 'ons_per_res_pop', null), ('2016', 'FR206C1', 'CA de Sophia-Antipolis', 'beds_per_1000res_pop', null), ('2016', 'FR207C1', 'Lens - Liévin', 'ons', '10516'), ('2016', 'FR207C1', 'Lens - Liévin', 'beds', '490'), ('2016', 'FR207C1', 'Lens - Liévin', 'ons_per_res_pop', '0.1'), ('2016', 'FR207C1', 'Lens - Liévin', 'beds_per_1000res_pop', '2.7'), ('2016', 'FR208C1', 'Hénin - Carvin', 'ons', '191140'), ('2016', 'FR208C1', 'Hénin - Carvin', 'beds', '1258'), ('2016', 'FR208C1', 'Hénin - Carvin', 'ons_per_res_pop', null), ('2016', 'FR208C1', 'Hénin - Carvin', 'beds_per_1000res_pop', null), ('2016', 'FR209C2', 'Douai', 'ons', null), ('2016', 'FR209C2', 'Douai', 'beds', '920'), ('2016', 'FR209C2', 'Douai', 'ons_per_res_pop', null), ('2016', 'FR209C2', 'Douai', 'beds_per_1000res_pop', '10.7'), ('2016', 'FR210C1', 'Marne la Vallée', 'ons', '486074'), ('2016', 'FR210C1', 'Marne la Vallée', 'beds', '3197'), ('2016', 'FR210C1', 'Marne la Vallée', 'ons_per_res_pop', null), ('2016', 'FR210C1', 'Marne la Vallée', 'beds_per_1000res_pop', null), ('2016', 'FR211C1', 'Versailles', 'ons', '652586'), ('2016', 'FR211C1', 'Versailles', 'beds', '4272'), ('2016', 'FR211C1', 'Versailles', 'ons_per_res_pop', null), ('2016', 'FR211C1', 'Versailles', 'beds_per_1000res_pop', null), ('2016', 'FR212C1', 'CC de la Boucle de la Seine', 'ons', '135616'), ('2016', 'FR212C1', 'CC de la Boucle de la Seine', 'beds', '965'), ('2016', 'FR212C1', 'CC de la Boucle de la Seine', 'ons_per_res_pop', null), ('2016', 'FR212C1', 'CC de la Boucle de la Seine', 'beds_per_1000res_pop', null), ('2016', 'FR213C1', 'Sénart en Essonne', 'ons', '54390'), ('2016', 'FR213C1', 'Sénart en Essonne', 'beds', '702'), ('2016', 'FR213C1', 'Sénart en Essonne', 'ons_per_res_pop', null), ('2016', 'FR213C1', 'Sénart en Essonne', 'beds_per_1000res_pop', null), ('2016', 'FR214C1', 'Valence', 'ons', '147547'), ('2016', 'FR214C1', 'Valence', 'beds', '3430'), ('2016', 'FR214C1', 'Valence', 'ons_per_res_pop', '1.6'), ('2016', 'FR214C1', 'Valence', 'beds_per_1000res_pop', '36.6'), ('2016', 'FR215C2', 'Rouen', 'ons', '55311'), ('2016', 'FR215C2', 'Rouen', 'beds', '5734'), ('2016', 'FR215C2', 'Rouen', 'ons_per_res_pop', '0.2'), ('2016', 'FR215C2', 'Rouen', 'beds_per_1000res_pop', '18.6'), ('2016', 'FR216C1', 'CA Marne et Chantereine', 'ons', '239283'), ('2016', 'FR216C1', 'CA Marne et Chantereine', 'beds', '1280'), ('2016', 'FR216C1', 'CA Marne et Chantereine', 'ons_per_res_pop', null), ('2016', 'FR216C1', 'CA Marne et Chantereine', 'beds_per_1000res_pop', null), ('2016', 'FR217C1', 'CA des deux Rives de la Seine', 'ons', '87562'), ('2016', 'FR217C1', 'CA des deux Rives de la Seine', 'beds', '1682'), ('2016', 'FR217C1', 'CA des deux Rives de la Seine', 'ons_per_res_pop', null), ('2016', 'FR217C1', 'CA des deux Rives de la Seine', 'beds_per_1000res_pop', null), ('2016', 'FR218C1', 'CC des Coteaux de la Seine', 'ons', '140159'), ('2016', 'FR218C1', 'CC des Coteaux de la Seine', 'beds', '1087'), ('2016', 'FR218C1', 'CC des Coteaux de la Seine', 'ons_per_res_pop', null), ('2016', 'FR218C1', 'CC des Coteaux de la Seine', 'beds_per_1000res_pop', null), ('2016', 'FR219C1', 'CA Europ'' Essonne', 'ons', '534459'), ('2016', 'FR219C1', 'CA Europ'' Essonne', 'beds', '3064'), ('2016', 'FR219C1', 'CA Europ'' Essonne', 'ons_per_res_pop', null), ('2016', 'FR219C1', 'CA Europ'' Essonne', 'beds_per_1000res_pop', null), ('2016', 'FR220C1', 'CA Brie Francilienne', 'ons', '155505'), ('2016', 'FR220C1', 'CA Brie Francilienne', 'beds', '980'), ('2016', 'FR220C1', 'CA Brie Francilienne', 'ons_per_res_pop', null), ('2016', 'FR220C1', 'CA Brie Francilienne', 'beds_per_1000res_pop', null), ('2016', 'FR221C1', 'CA les Portes de l''Essonne', 'ons', '211381'), ('2016', 'FR221C1', 'CA les Portes de l''Essonne', 'beds', '1268'), ('2016', 'FR221C1', 'CA les Portes de l''Essonne', 'ons_per_res_pop', null), ('2016', 'FR221C1', 'CA les Portes de l''Essonne', 'beds_per_1000res_pop', null), ('2016', 'FR222C1', 'CA Val et Forêt', 'ons', '17676'), ('2016', 'FR222C1', 'CA Val et Forêt', 'beds', '106'), ('2016', 'FR222C1', 'CA Val et Forêt', 'ons_per_res_pop', null), ('2016', 'FR222C1', 'CA Val et Forêt', 'beds_per_1000res_pop', null), ('2016', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons', '21721'), ('2016', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds', '124'), ('2016', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons_per_res_pop', null), ('2016', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds_per_1000res_pop', null), ('2016', 'FR224C1', 'CA le Parisis', 'ons', '107777'), ('2016', 'FR224C1', 'CA le Parisis', 'beds', '656'), ('2016', 'FR224C1', 'CA le Parisis', 'ons_per_res_pop', null), ('2016', 'FR224C1', 'CA le Parisis', 'beds_per_1000res_pop', null), ('2016', 'FR304C1', 'Melun', 'ons', '166127'), ('2016', 'FR304C1', 'Melun', 'beds', '2106'), ('2016', 'FR304C1', 'Melun', 'ons_per_res_pop', '2'), ('2016', 'FR304C1', 'Melun', 'beds_per_1000res_pop', '24.8'), ('2016', 'FR305C1', 'Meaux', 'ons', null), ('2016', 'FR305C1', 'Meaux', 'beds', '380'), ('2016', 'FR305C1', 'Meaux', 'ons_per_res_pop', null), ('2016', 'FR305C1', 'Meaux', 'beds_per_1000res_pop', '6'), ('2016', 'FR306C1', 'Mantes en Yvelines', 'ons', '9118'), ('2016', 'FR306C1', 'Mantes en Yvelines', 'beds', '714'), ('2016', 'FR306C1', 'Mantes en Yvelines', 'ons_per_res_pop', '0.1'), ('2016', 'FR306C1', 'Mantes en Yvelines', 'beds_per_1000res_pop', '8.3'), ('2016', 'FR308C1', 'Evry', 'ons', '313945'), ('2016', 'FR308C1', 'Evry', 'beds', '2024'), ('2016', 'FR308C1', 'Evry', 'ons_per_res_pop', null), ('2016', 'FR308C1', 'Evry', 'beds_per_1000res_pop', null), ('2016', 'FR309C1', 'CA du Plateau de Saclay', 'ons', '212980'), ('2016', 'FR309C1', 'CA du Plateau de Saclay', 'beds', '1352'), ('2016', 'FR309C1', 'CA du Plateau de Saclay', 'ons_per_res_pop', null), ('2016', 'FR309C1', 'CA du Plateau de Saclay', 'beds_per_1000res_pop', null), ('2016', 'FR310C1', 'CA de Seine Essonne', 'ons', '135485'), ('2016', 'FR310C1', 'CA de Seine Essonne', 'beds', '970'), ('2016', 'FR310C1', 'CA de Seine Essonne', 'ons_per_res_pop', null), ('2016', 'FR310C1', 'CA de Seine Essonne', 'beds_per_1000res_pop', null), ('2016', 'FR311C1', 'CA du Val d''Orge', 'ons', '238189'), ('2016', 'FR311C1', 'CA du Val d''Orge', 'beds', '1658'), ('2016', 'FR311C1', 'CA du Val d''Orge', 'ons_per_res_pop', null), ('2016', 'FR311C1', 'CA du Val d''Orge', 'beds_per_1000res_pop', null), ('2016', 'FR312C1', 'CA du Val d''Yerres', 'ons', '88166'), ('2016', 'FR312C1', 'CA du Val d''Yerres', 'beds', '574'), ('2016', 'FR312C1', 'CA du Val d''Yerres', 'ons_per_res_pop', null), ('2016', 'FR312C1', 'CA du Val d''Yerres', 'beds_per_1000res_pop', null), ('2016', 'FR313C1', 'CA Sénart - Val de Seine', 'ons', '81026'), ('2016', 'FR313C1', 'CA Sénart - Val de Seine', 'beds', '388'), ('2016', 'FR313C1', 'CA Sénart - Val de Seine', 'ons_per_res_pop', null), ('2016', 'FR313C1', 'CA Sénart - Val de Seine', 'beds_per_1000res_pop', null), ('2016', 'FR322C1', 'CA Val de France', 'ons', '199929'), ('2016', 'FR322C1', 'CA Val de France', 'beds', '1018'), ('2016', 'FR322C1', 'CA Val de France', 'ons_per_res_pop', null), ('2016', 'FR322C1', 'CA Val de France', 'beds_per_1000res_pop', null), ('2016', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons', '121263'), ('2016', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds', '756'), ('2016', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons_per_res_pop', null), ('2016', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds_per_1000res_pop', null), ('2016', 'FR324C1', 'Martigues', 'ons', '516899'), ('2016', 'FR324C1', 'Martigues', 'beds', '7491'), ('2016', 'FR324C1', 'Martigues', 'ons_per_res_pop', '7.9'), ('2016', 'FR324C1', 'Martigues', 'beds_per_1000res_pop', '114.4'), ('2016', 'FR501C1', 'Argenteuil - Bezons', 'ons', '157801'), ('2016', 'FR501C1', 'Argenteuil - Bezons', 'beds', '896'), ('2016', 'FR501C1', 'Argenteuil - Bezons', 'ons_per_res_pop', null), ('2016', 'FR501C1', 'Argenteuil - Bezons', 'beds_per_1000res_pop', null), ('2016', 'FR504C1', 'Cergy-Pontoise', 'ons', '571927'), ('2016', 'FR504C1', 'Cergy-Pontoise', 'beds', '3444'), ('2016', 'FR504C1', 'Cergy-Pontoise', 'ons_per_res_pop', null), ('2016', 'FR504C1', 'Cergy-Pontoise', 'beds_per_1000res_pop', null), ('2016', 'FR505C1', 'Charleville-Mézières', 'ons', '143574'), ('2016', 'FR505C1', 'Charleville-Mézières', 'beds', '1655'), ('2016', 'FR505C1', 'Charleville-Mézières', 'ons_per_res_pop', null), ('2016', 'FR505C1', 'Charleville-Mézières', 'beds_per_1000res_pop', null), ('2016', 'FR506C1', 'Colmar', 'ons', '97783'), ('2016', 'FR506C1', 'Colmar', 'beds', '3270'), ('2016', 'FR506C1', 'Colmar', 'ons_per_res_pop', '1.4'), ('2016', 'FR506C1', 'Colmar', 'beds_per_1000res_pop', '46.8'), ('2016', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons', '101202'), ('2016', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds', '628'), ('2016', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons_per_res_pop', null), ('2016', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds_per_1000res_pop', null), ('2016', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons', '482452'), ('2016', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds', '3060'), ('2016', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons_per_res_pop', null), ('2016', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds_per_1000res_pop', null), ('2016', 'FR519C1', 'Cannes', 'ons', '2491900'), ('2016', 'FR519C1', 'Cannes', 'beds', null), ('2016', 'FR519C1', 'Cannes', 'ons_per_res_pop', null), ('2016', 'FR519C1', 'Cannes', 'beds_per_1000res_pop', null), ('2016', 'HR001C1', 'Zagreb', 'ons', '2016107'), ('2016', 'HR001C1', 'Zagreb', 'beds', '24501'), ('2016', 'HR001C1', 'Zagreb', 'ons_per_res_pop', '2.5'), ('2016', 'HR001C1', 'Zagreb', 'beds_per_1000res_pop', '30.6'), ('2016', 'HR002C1', 'Rijeka', 'ons', '334594'), ('2016', 'HR002C1', 'Rijeka', 'beds', '4363'), ('2016', 'HR002C1', 'Rijeka', 'ons_per_res_pop', '2.7'), ('2016', 'HR002C1', 'Rijeka', 'beds_per_1000res_pop', '35.8'), ('2016', 'HR003C1', 'Slavonski Brod', 'ons', '30412'), ('2016', 'HR003C1', 'Slavonski Brod', 'beds', '551'), ('2016', 'HR003C1', 'Slavonski Brod', 'ons_per_res_pop', '0.5'), ('2016', 'HR003C1', 'Slavonski Brod', 'beds_per_1000res_pop', '9.7'), ('2016', 'HR004C1', 'Osijek', 'ons', '87961'), ('2016', 'HR004C1', 'Osijek', 'beds', '1006'), ('2016', 'HR004C1', 'Osijek', 'ons_per_res_pop', '0.8'), ('2016', 'HR004C1', 'Osijek', 'beds_per_1000res_pop', '9.5'), ('2016', 'HR005C1', 'Split', 'ons', '1717396'), ('2016', 'HR005C1', 'Split', 'beds', '26487'), ('2016', 'HR005C1', 'Split', 'ons_per_res_pop', '9.9'), ('2016', 'HR005C1', 'Split', 'beds_per_1000res_pop', '153'), ('2016', 'HR006C1', 'Pula - Pola', 'ons', '1606582'), ('2016', 'HR006C1', 'Pula - Pola', 'beds', '26983'), ('2016', 'HR006C1', 'Pula - Pola', 'ons_per_res_pop', '28.4'), ('2016', 'HR006C1', 'Pula - Pola', 'beds_per_1000res_pop', '477.2'), ('2016', 'HR007C1', 'Zadar', 'ons', '1550495'), ('2016', 'HR007C1', 'Zadar', 'beds', '24452'), ('2016', 'HR007C1', 'Zadar', 'ons_per_res_pop', '20.6'), ('2016', 'HR007C1', 'Zadar', 'beds_per_1000res_pop', '324.5'), ('2016', 'IT', 'Italy', 'ons', '402962113'), ('2016', 'IT', 'Italy', 'beds', '4942512'), ('2016', 'IT', 'Italy', 'ons_per_res_pop', '6.6'), ('2016', 'IT', 'Italy', 'beds_per_1000res_pop', '81.5'), ('2016', 'IT001C1', 'Roma', 'ons', '25191580'), ('2016', 'IT001C1', 'Roma', 'beds', '204202'), ('2016', 'IT001C1', 'Roma', 'ons_per_res_pop', '8.8'), ('2016', 'IT001C1', 'Roma', 'beds_per_1000res_pop', '71.3'), ('2016', 'IT002C1', 'Milano', 'ons', '10976244'), ('2016', 'IT002C1', 'Milano', 'beds', '67013'), ('2016', 'IT002C1', 'Milano', 'ons_per_res_pop', '8.2'), ('2016', 'IT002C1', 'Milano', 'beds_per_1000res_pop', '49.8'), ('2016', 'IT003C1', 'Napoli', 'ons', '3292057'), ('2016', 'IT003C1', 'Napoli', 'beds', '13909'), ('2016', 'IT003C1', 'Napoli', 'ons_per_res_pop', '3.4'), ('2016', 'IT003C1', 'Napoli', 'beds_per_1000res_pop', '14.3'), ('2016', 'IT004C1', 'Torino', 'ons', '3662487'), ('2016', 'IT004C1', 'Torino', 'beds', '21931'), ('2016', 'IT004C1', 'Torino', 'ons_per_res_pop', '4.1'), ('2016', 'IT004C1', 'Torino', 'beds_per_1000res_pop', '24.6'), ('2016', 'IT005C1', 'Palermo', 'ons', '1190951'), ('2016', 'IT005C1', 'Palermo', 'beds', '11400'), ('2016', 'IT005C1', 'Palermo', 'ons_per_res_pop', '1.8'), ('2016', 'IT005C1', 'Palermo', 'beds_per_1000res_pop', '16.9'), ('2016', 'IT006C1', 'Genova', 'ons', '1767704'), ('2016', 'IT006C1', 'Genova', 'beds', '10815'), ('2016', 'IT006C1', 'Genova', 'ons_per_res_pop', '3'), ('2016', 'IT006C1', 'Genova', 'beds_per_1000res_pop', '18.4'), ('2016', 'IT007C1', 'Firenze', 'ons', '9334085'), ('2016', 'IT007C1', 'Firenze', 'beds', '46184'), ('2016', 'IT007C1', 'Firenze', 'ons_per_res_pop', '24.4'), ('2016', 'IT007C1', 'Firenze', 'beds_per_1000res_pop', '120.6'), ('2016', 'IT008C1', 'Bari', 'ons', '721182'), ('2016', 'IT008C1', 'Bari', 'beds', '5987'), ('2016', 'IT008C1', 'Bari', 'ons_per_res_pop', '2.2'), ('2016', 'IT008C1', 'Bari', 'beds_per_1000res_pop', '18.3'), ('2016', 'IT009C1', 'Bologna', 'ons', '2587122'), ('2016', 'IT009C1', 'Bologna', 'beds', '17767'), ('2016', 'IT009C1', 'Bologna', 'ons_per_res_pop', '6.7'), ('2016', 'IT009C1', 'Bologna', 'beds_per_1000res_pop', '45.9'), ('2016', 'IT010C1', 'Catania', 'ons', '794925'), ('2016', 'IT010C1', 'Catania', 'beds', '7273'), ('2016', 'IT010C1', 'Catania', 'ons_per_res_pop', '2.5'), ('2016', 'IT010C1', 'Catania', 'beds_per_1000res_pop', '23.1'), ('2016', 'IT011C1', 'Venezia', 'ons', '10511788'), ('2016', 'IT011C1', 'Venezia', 'beds', '52350'), ('2016', 'IT011C1', 'Venezia', 'ons_per_res_pop', '39.9'), ('2016', 'IT011C1', 'Venezia', 'beds_per_1000res_pop', '198.8'), ('2016', 'IT012C1', 'Verona', 'ons', '2085845'), ('2016', 'IT012C1', 'Verona', 'beds', '16540'), ('2016', 'IT012C1', 'Verona', 'ons_per_res_pop', '8.1'), ('2016', 'IT012C1', 'Verona', 'beds_per_1000res_pop', '63.9'), ('2016', 'IT013C1', 'Cremona', 'ons', '130414'), ('2016', 'IT013C1', 'Cremona', 'beds', '1263'), ('2016', 'IT013C1', 'Cremona', 'ons_per_res_pop', '1.8'), ('2016', 'IT013C1', 'Cremona', 'beds_per_1000res_pop', '17.6'), ('2016', 'IT014C1', 'Trento', 'ons', '906901'), ('2016', 'IT014C1', 'Trento', 'beds', '5597'), ('2016', 'IT014C1', 'Trento', 'ons_per_res_pop', '7.7'), ('2016', 'IT014C1', 'Trento', 'beds_per_1000res_pop', '47.7'), ('2016', 'IT015C1', 'Trieste', 'ons', '845400'), ('2016', 'IT015C1', 'Trieste', 'beds', '8235'), ('2016', 'IT015C1', 'Trieste', 'ons_per_res_pop', '4.1'), ('2016', 'IT015C1', 'Trieste', 'beds_per_1000res_pop', '40.3'), ('2016', 'IT016C1', 'Perugia', 'ons', '947602'), ('2016', 'IT016C1', 'Perugia', 'beds', '9289'), ('2016', 'IT016C1', 'Perugia', 'ons_per_res_pop', '5.7'), ('2016', 'IT016C1', 'Perugia', 'beds_per_1000res_pop', '55.9'), ('2016', 'IT017C1', 'Ancona', 'ons', '373421'), ('2016', 'IT017C1', 'Ancona', 'beds', '4473'), ('2016', 'IT017C1', 'Ancona', 'ons_per_res_pop', '3.7'), ('2016', 'IT017C1', 'Ancona', 'beds_per_1000res_pop', '44.3'), ('2016', 'IT019C1', 'Pescara', 'ons', '220965'), ('2016', 'IT019C1', 'Pescara', 'beds', '2279'), ('2016', 'IT019C1', 'Pescara', 'ons_per_res_pop', '1.8'), ('2016', 'IT019C1', 'Pescara', 'beds_per_1000res_pop', '18.8'), ('2016', 'IT020C1', 'Campobasso', 'ons', '24928'), ('2016', 'IT020C1', 'Campobasso', 'beds', '708'), ('2016', 'IT020C1', 'Campobasso', 'ons_per_res_pop', '0.5'), ('2016', 'IT020C1', 'Campobasso', 'beds_per_1000res_pop', '14.3'), ('2016', 'IT021C1', 'Caserta', 'ons', '228568'), ('2016', 'IT021C1', 'Caserta', 'beds', '1713'), ('2016', 'IT021C1', 'Caserta', 'ons_per_res_pop', '3'), ('2016', 'IT021C1', 'Caserta', 'beds_per_1000res_pop', '22.4'), ('2016', 'IT022C1', 'Taranto', 'ons', '208470'), ('2016', 'IT022C1', 'Taranto', 'beds', '3198'), ('2016', 'IT022C1', 'Taranto', 'ons_per_res_pop', '1'), ('2016', 'IT022C1', 'Taranto', 'beds_per_1000res_pop', '15.9'), ('2016', 'IT023C1', 'Potenza', 'ons', '63464'), ('2016', 'IT023C1', 'Potenza', 'beds', '1091'), ('2016', 'IT023C1', 'Potenza', 'ons_per_res_pop', '0.9'), ('2016', 'IT023C1', 'Potenza', 'beds_per_1000res_pop', '16.3'), ('2016', 'IT024C1', 'Catanzaro', 'ons', '156375'), ('2016', 'IT024C1', 'Catanzaro', 'beds', '1280'), ('2016', 'IT024C1', 'Catanzaro', 'ons_per_res_pop', '1.7'), ('2016', 'IT024C1', 'Catanzaro', 'beds_per_1000res_pop', '14.1'), ('2016', 'IT025C1', 'Reggio di Calabria', 'ons', '189835'), ('2016', 'IT025C1', 'Reggio di Calabria', 'beds', '2559'), ('2016', 'IT025C1', 'Reggio di Calabria', 'ons_per_res_pop', '1'), ('2016', 'IT025C1', 'Reggio di Calabria', 'beds_per_1000res_pop', '14'), ('2016', 'IT026C1', 'Sassari', 'ons', '142884'), ('2016', 'IT026C1', 'Sassari', 'beds', '1896'), ('2016', 'IT026C1', 'Sassari', 'ons_per_res_pop', '1.1'), ('2016', 'IT026C1', 'Sassari', 'beds_per_1000res_pop', '14.9'), ('2016', 'IT027C1', 'Cagliari', 'ons', '510040'), ('2016', 'IT027C1', 'Cagliari', 'beds', '5401'), ('2016', 'IT027C1', 'Cagliari', 'ons_per_res_pop', '3.3'), ('2016', 'IT027C1', 'Cagliari', 'beds_per_1000res_pop', '35'), ('2016', 'IT028C1', 'Padova', 'ons', '1494981'), ('2016', 'IT028C1', 'Padova', 'beds', '8680'), ('2016', 'IT028C1', 'Padova', 'ons_per_res_pop', '7.1'), ('2016', 'IT028C1', 'Padova', 'beds_per_1000res_pop', '41.3'), ('2016', 'IT029C1', 'Brescia', 'ons', '615310'), ('2016', 'IT029C1', 'Brescia', 'beds', '4205'), ('2016', 'IT029C1', 'Brescia', 'ons_per_res_pop', '3.1'), ('2016', 'IT029C1', 'Brescia', 'beds_per_1000res_pop', '21.4'), ('2016', 'IT030C1', 'Modena', 'ons', '542964'), ('2016', 'IT030C1', 'Modena', 'beds', '4331'), ('2016', 'IT030C1', 'Modena', 'ons_per_res_pop', '2.9'), ('2016', 'IT030C1', 'Modena', 'beds_per_1000res_pop', '23.4'), ('2016', 'IT031C1', 'Foggia', 'ons', '126376'), ('2016', 'IT031C1', 'Foggia', 'beds', '1273'), ('2016', 'IT031C1', 'Foggia', 'ons_per_res_pop', '0.8'), ('2016', 'IT031C1', 'Foggia', 'beds_per_1000res_pop', '8.4'), ('2016', 'IT032C1', 'Salerno', 'ons', '537253'), ('2016', 'IT032C1', 'Salerno', 'beds', '2438'), ('2016', 'IT032C1', 'Salerno', 'ons_per_res_pop', '4'), ('2016', 'IT032C1', 'Salerno', 'beds_per_1000res_pop', '18'), ('2016', 'IT033C1', 'Piacenza', 'ons', '254950'), ('2016', 'IT033C1', 'Piacenza', 'beds', '1951'), ('2016', 'IT033C1', 'Piacenza', 'ons_per_res_pop', '2.5'), ('2016', 'IT033C1', 'Piacenza', 'beds_per_1000res_pop', '19.1'), ('2016', 'IT034C1', 'Bolzano', 'ons', '638853'), ('2016', 'IT034C1', 'Bolzano', 'beds', '3613'), ('2016', 'IT034C1', 'Bolzano', 'ons_per_res_pop', '6'), ('2016', 'IT034C1', 'Bolzano', 'beds_per_1000res_pop', '33.9'), ('2016', 'IT035C1', 'Udine', 'ons', '357187'), ('2016', 'IT035C1', 'Udine', 'beds', '3728'), ('2016', 'IT035C1', 'Udine', 'ons_per_res_pop', '3.6'), ('2016', 'IT035C1', 'Udine', 'beds_per_1000res_pop', '37.6'), ('2016', 'IT036C1', 'La Spezia', 'ons', '428675'), ('2016', 'IT036C1', 'La Spezia', 'beds', '2723'), ('2016', 'IT036C1', 'La Spezia', 'ons_per_res_pop', '4.6'), ('2016', 'IT036C1', 'La Spezia', 'beds_per_1000res_pop', '29'), ('2016', 'IT037C1', 'Lecce', 'ons', '644522'), ('2016', 'IT037C1', 'Lecce', 'beds', '10704'), ('2016', 'IT037C1', 'Lecce', 'ons_per_res_pop', '6.8'), ('2016', 'IT037C1', 'Lecce', 'beds_per_1000res_pop', '112.9'), ('2016', 'IT038C1', 'Barletta', 'ons', '85668'), ('2016', 'IT038C1', 'Barletta', 'beds', '717'), ('2016', 'IT038C1', 'Barletta', 'ons_per_res_pop', '0.9'), ('2016', 'IT038C1', 'Barletta', 'beds_per_1000res_pop', '7.6'), ('2016', 'IT039C1', 'Pesaro', 'ons', '824272'), ('2016', 'IT039C1', 'Pesaro', 'beds', '8893'), ('2016', 'IT039C1', 'Pesaro', 'ons_per_res_pop', '8.7'), ('2016', 'IT039C1', 'Pesaro', 'beds_per_1000res_pop', '94'), ('2016', 'IT040C1', 'Como', 'ons', '587486'), ('2016', 'IT040C1', 'Como', 'beds', '3519'), ('2016', 'IT040C1', 'Como', 'ons_per_res_pop', '7'), ('2016', 'IT040C1', 'Como', 'beds_per_1000res_pop', '41.6'), ('2016', 'IT041C1', 'Pisa', 'ons', '1673591'), ('2016', 'IT041C1', 'Pisa', 'beds', '15194'), ('2016', 'IT041C1', 'Pisa', 'ons_per_res_pop', '18.8'), ('2016', 'IT041C1', 'Pisa', 'beds_per_1000res_pop', '170.4'), ('2016', 'IT042C1', 'Treviso', 'ons', '238982'), ('2016', 'IT042C1', 'Treviso', 'beds', '1999'), ('2016', 'IT042C1', 'Treviso', 'ons_per_res_pop', '2.9'), ('2016', 'IT042C1', 'Treviso', 'beds_per_1000res_pop', '23.9'), ('2016', 'IT043C1', 'Varese', 'ons', '277206'), ('2016', 'IT043C1', 'Varese', 'beds', '1958'), ('2016', 'IT043C1', 'Varese', 'ons_per_res_pop', '3.4'), ('2016', 'IT043C1', 'Varese', 'beds_per_1000res_pop', '24.2'), ('2016', 'IT044C1', 'Busto Arsizio', 'ons', '24567'), ('2016', 'IT044C1', 'Busto Arsizio', 'beds', '252'), ('2016', 'IT044C1', 'Busto Arsizio', 'ons_per_res_pop', '0.3'), ('2016', 'IT044C1', 'Busto Arsizio', 'beds_per_1000res_pop', '3'), ('2016', 'IT045C1', 'Asti', 'ons', '107901'), ('2016', 'IT045C1', 'Asti', 'beds', '1778'), ('2016', 'IT045C1', 'Asti', 'ons_per_res_pop', '1.4'), ('2016', 'IT045C1', 'Asti', 'beds_per_1000res_pop', '23.3'), ('2016', 'IT046C1', 'Pavia', 'ons', '125029'), ('2016', 'IT046C1', 'Pavia', 'beds', '1001'), ('2016', 'IT046C1', 'Pavia', 'ons_per_res_pop', '1.7'), ('2016', 'IT046C1', 'Pavia', 'beds_per_1000res_pop', '13.8'), ('2016', 'IT047C1', 'Massa', 'ons', '836324'), ('2016', 'IT047C1', 'Massa', 'beds', '26116'), ('2016', 'IT047C1', 'Massa', 'ons_per_res_pop', '12'), ('2016', 'IT047C1', 'Massa', 'beds_per_1000res_pop', '375.9'), ('2016', 'IT048C1', 'Cosenza', 'ons', '114914'), ('2016', 'IT048C1', 'Cosenza', 'beds', '1029'), ('2016', 'IT048C1', 'Cosenza', 'ons_per_res_pop', '1.7'), ('2016', 'IT048C1', 'Cosenza', 'beds_per_1000res_pop', '15.2'), ('2016', 'IT052C1', 'Savona', 'ons', '185454'), ('2016', 'IT052C1', 'Savona', 'beds', '1678'), ('2016', 'IT052C1', 'Savona', 'ons_per_res_pop', '3'), ('2016', 'IT052C1', 'Savona', 'beds_per_1000res_pop', '27.4'), ('2016', 'IT054C1', 'Matera', 'ons', '409421'), ('2016', 'IT054C1', 'Matera', 'beds', '4527'), ('2016', 'IT054C1', 'Matera', 'ons_per_res_pop', '6.8'), ('2016', 'IT054C1', 'Matera', 'beds_per_1000res_pop', '74.9'), ('2016', 'IT056C1', 'Acireale', 'ons', '209194'), ('2016', 'IT056C1', 'Acireale', 'beds', '3206'), ('2016', 'IT056C1', 'Acireale', 'ons_per_res_pop', '4'), ('2016', 'IT056C1', 'Acireale', 'beds_per_1000res_pop', '60.9'), ('2016', 'IT057C1', 'Avellino', 'ons', '25233'), ('2016', 'IT057C1', 'Avellino', 'beds', '297'), ('2016', 'IT057C1', 'Avellino', 'ons_per_res_pop', '0.5'), ('2016', 'IT057C1', 'Avellino', 'beds_per_1000res_pop', '5.4'), ('2016', 'IT058C1', 'Pordenone', 'ons', '121197'), ('2016', 'IT058C1', 'Pordenone', 'beds', '1249'), ('2016', 'IT058C1', 'Pordenone', 'ons_per_res_pop', '2.4'), ('2016', 'IT058C1', 'Pordenone', 'beds_per_1000res_pop', '24.4'), ('2016', 'IT060C1', 'Lecco', 'ons', '88627'), ('2016', 'IT060C1', 'Lecco', 'beds', '1023'), ('2016', 'IT060C1', 'Lecco', 'ons_per_res_pop', '1.8'), ('2016', 'IT060C1', 'Lecco', 'beds_per_1000res_pop', '21.3'), ('2016', 'IT061C1', 'Altamura', 'ons', '21339'), ('2016', 'IT061C1', 'Altamura', 'beds', '596'), ('2016', 'IT061C1', 'Altamura', 'ons_per_res_pop', '0.3'), ('2016', 'IT061C1', 'Altamura', 'beds_per_1000res_pop', '8.5'), ('2016', 'IT062C1', 'Bitonto', 'ons', '16628'), ('2016', 'IT062C1', 'Bitonto', 'beds', '270'), ('2016', 'IT062C1', 'Bitonto', 'ons_per_res_pop', '0.3'), ('2016', 'IT062C1', 'Bitonto', 'beds_per_1000res_pop', '4.9'), ('2016', 'IT063C1', 'Molfetta', 'ons', '19235'), ('2016', 'IT063C1', 'Molfetta', 'beds', '201'), ('2016', 'IT063C1', 'Molfetta', 'ons_per_res_pop', '0.3'), ('2016', 'IT063C1', 'Molfetta', 'beds_per_1000res_pop', '3.4'), ('2016', 'IT064C1', 'Battipaglia', 'ons', '139298'), ('2016', 'IT064C1', 'Battipaglia', 'beds', '3036'), ('2016', 'IT064C1', 'Battipaglia', 'ons_per_res_pop', '2.7'), ('2016', 'IT064C1', 'Battipaglia', 'beds_per_1000res_pop', '59.8'), ('2016', 'IT065C1', 'Bisceglie', 'ons', '73674'), ('2016', 'IT065C1', 'Bisceglie', 'beds', '983'), ('2016', 'IT065C1', 'Bisceglie', 'ons_per_res_pop', '1.3'), ('2016', 'IT065C1', 'Bisceglie', 'beds_per_1000res_pop', '17.7'), ('2016', 'IT066C1', 'Carpi', 'ons', '91053'), ('2016', 'IT066C1', 'Carpi', 'beds', '591'), ('2016', 'IT066C1', 'Carpi', 'ons_per_res_pop', '1.3'), ('2016', 'IT066C1', 'Carpi', 'beds_per_1000res_pop', '8.4'), ('2016', 'IT067C1', 'Cerignola', 'ons', '9756'), ('2016', 'IT067C1', 'Cerignola', 'beds', '271'), ('2016', 'IT067C1', 'Cerignola', 'ons_per_res_pop', '0.2'), ('2016', 'IT067C1', 'Cerignola', 'beds_per_1000res_pop', '4.6'), ('2016', 'IT068C1', 'Gallarate', 'ons', '30718'), ('2016', 'IT068C1', 'Gallarate', 'beds', '405'), ('2016', 'IT068C1', 'Gallarate', 'ons_per_res_pop', '0.6'), ('2016', 'IT068C1', 'Gallarate', 'beds_per_1000res_pop', '7.6'), ('2016', 'IT069C1', 'Gela', 'ons', '18190'), ('2016', 'IT069C1', 'Gela', 'beds', '572'), ('2016', 'IT069C1', 'Gela', 'ons_per_res_pop', '0.2'), ('2016', 'IT069C1', 'Gela', 'beds_per_1000res_pop', '7.5'), ('2016', 'IT070C1', 'Saronno', 'ons', '240852'), ('2016', 'IT070C1', 'Saronno', 'beds', '1427'), ('2016', 'IT070C1', 'Saronno', 'ons_per_res_pop', '6.1'), ('2016', 'IT070C1', 'Saronno', 'beds_per_1000res_pop', '36.2'), ('2016', 'IT071C1', 'Bagheria', 'ons', '13876'), ('2016', 'IT071C1', 'Bagheria', 'beds', '270'), ('2016', 'IT071C1', 'Bagheria', 'ons_per_res_pop', '0.3'), ('2016', 'IT071C1', 'Bagheria', 'beds_per_1000res_pop', '4.9'), ('2016', 'IT072C1', 'Anzio', 'ons', null), ('2016', 'IT072C1', 'Anzio', 'beds', '9627'), ('2016', 'IT072C1', 'Anzio', 'ons_per_res_pop', null), ('2016', 'IT072C1', 'Anzio', 'beds_per_1000res_pop', '177.6'), ('2016', 'IT073C1', 'Sassuolo', 'ons', '54600'), ('2016', 'IT073C1', 'Sassuolo', 'beds', '558'), ('2016', 'IT073C1', 'Sassuolo', 'ons_per_res_pop', '1.3'), ('2016', 'IT073C1', 'Sassuolo', 'beds_per_1000res_pop', '13.7'), ('2016', 'IT501C1', 'Messina', 'ons', '119448'), ('2016', 'IT501C1', 'Messina', 'beds', '2113'), ('2016', 'IT501C1', 'Messina', 'ons_per_res_pop', '0.5'), ('2016', 'IT501C1', 'Messina', 'beds_per_1000res_pop', '8.9'), ('2016', 'IT502C1', 'Prato', 'ons', '406296'), ('2016', 'IT502C1', 'Prato', 'beds', '2178'), ('2016', 'IT502C1', 'Prato', 'ons_per_res_pop', '2.1'), ('2016', 'IT502C1', 'Prato', 'beds_per_1000res_pop', '11.4'), ('2016', 'IT503C1', 'Parma', 'ons', '700934'), ('2016', 'IT503C1', 'Parma', 'beds', '5418'), ('2016', 'IT503C1', 'Parma', 'ons_per_res_pop', '3.6'), ('2016', 'IT503C1', 'Parma', 'beds_per_1000res_pop', '28.1'), ('2016', 'IT504C1', 'Livorno', 'ons', '307351'), ('2016', 'IT504C1', 'Livorno', 'beds', '3814'), ('2016', 'IT504C1', 'Livorno', 'ons_per_res_pop', '1.9'), ('2016', 'IT504C1', 'Livorno', 'beds_per_1000res_pop', '24'), ('2016', 'IT505C1', 'Reggio nell''Emilia', 'ons', '336620'), ('2016', 'IT505C1', 'Reggio nell''Emilia', 'beds', '3006'), ('2016', 'IT505C1', 'Reggio nell''Emilia', 'ons_per_res_pop', '2'), ('2016', 'IT505C1', 'Reggio nell''Emilia', 'beds_per_1000res_pop', '17.5'), ('2016', 'IT506C1', 'Ravenna', 'ons', '2670111'), ('2016', 'IT506C1', 'Ravenna', 'beds', '38231'), ('2016', 'IT506C1', 'Ravenna', 'ons_per_res_pop', '16.8'), ('2016', 'IT506C1', 'Ravenna', 'beds_per_1000res_pop', '240.3'), ('2016', 'IT507C1', 'Ferrara', 'ons', '425546'), ('2016', 'IT507C1', 'Ferrara', 'beds', '3672'), ('2016', 'IT507C1', 'Ferrara', 'ons_per_res_pop', '3.2'), ('2016', 'IT507C1', 'Ferrara', 'beds_per_1000res_pop', '27.6'), ('2016', 'IT508C1', 'Rimini', 'ons', '7093796'), ('2016', 'IT508C1', 'Rimini', 'beds', '74638'), ('2016', 'IT508C1', 'Rimini', 'ons_per_res_pop', '48'), ('2016', 'IT508C1', 'Rimini', 'beds_per_1000res_pop', '505.2'), ('2016', 'IT509C1', 'Siracusa', 'ons', '746223'), ('2016', 'IT509C1', 'Siracusa', 'beds', '9633'), ('2016', 'IT509C1', 'Siracusa', 'ons_per_res_pop', '6.1'), ('2016', 'IT509C1', 'Siracusa', 'beds_per_1000res_pop', '78.8'), ('2016', 'IT510C1', 'Monza', 'ons', '207234'), ('2016', 'IT510C1', 'Monza', 'beds', '1844'), ('2016', 'IT510C1', 'Monza', 'ons_per_res_pop', '1.7'), ('2016', 'IT510C1', 'Monza', 'beds_per_1000res_pop', '15'), ('2016', 'IT511C1', 'Bergamo', 'ons', '563884'), ('2016', 'IT511C1', 'Bergamo', 'beds', '4614'), ('2016', 'IT511C1', 'Bergamo', 'ons_per_res_pop', '4.7'), ('2016', 'IT511C1', 'Bergamo', 'beds_per_1000res_pop', '38.6'), ('2016', 'IT512C1', 'Forlì', 'ons', '200915'), ('2016', 'IT512C1', 'Forlì', 'beds', '1559'), ('2016', 'IT512C1', 'Forlì', 'ons_per_res_pop', '1.7'), ('2016', 'IT512C1', 'Forlì', 'beds_per_1000res_pop', '13.2'), ('2016', 'IT513C1', 'Latina', 'ons', '180123'), ('2016', 'IT513C1', 'Latina', 'beds', '4923'), ('2016', 'IT513C1', 'Latina', 'ons_per_res_pop', '1.4'), ('2016', 'IT513C1', 'Latina', 'beds_per_1000res_pop', '39.1'), ('2016', 'IT514C1', 'Vicenza', 'ons', '564456'), ('2016', 'IT514C1', 'Vicenza', 'beds', '4096'), ('2016', 'IT514C1', 'Vicenza', 'ons_per_res_pop', '5'), ('2016', 'IT514C1', 'Vicenza', 'beds_per_1000res_pop', '36.3'), ('2016', 'IT515C1', 'Terni', 'ons', '225988'), ('2016', 'IT515C1', 'Terni', 'beds', '2824'), ('2016', 'IT515C1', 'Terni', 'ons_per_res_pop', '2'), ('2016', 'IT515C1', 'Terni', 'beds_per_1000res_pop', '25.3'), ('2016', 'IT516C1', 'Novara', 'ons', '137672'), ('2016', 'IT516C1', 'Novara', 'beds', '1554'), ('2016', 'IT516C1', 'Novara', 'ons_per_res_pop', '1.3'), ('2016', 'IT516C1', 'Novara', 'beds_per_1000res_pop', '14.9'), ('2016', 'IT517C1', 'Giugliano in Campania', 'ons', '245057'), ('2016', 'IT517C1', 'Giugliano in Campania', 'beds', '3942'), ('2016', 'IT517C1', 'Giugliano in Campania', 'ons_per_res_pop', '2'), ('2016', 'IT517C1', 'Giugliano in Campania', 'beds_per_1000res_pop', '32.1'), ('2016', 'IT518C1', 'Alessandria', 'ons', '121333'), ('2016', 'IT518C1', 'Alessandria', 'beds', '1314'), ('2016', 'IT518C1', 'Alessandria', 'ons_per_res_pop', '1.3'), ('2016', 'IT518C1', 'Alessandria', 'beds_per_1000res_pop', '14'), ('2016', 'IT519C1', 'Arezzo', 'ons', '316962'), ('2016', 'IT519C1', 'Arezzo', 'beds', '4141'), ('2016', 'IT519C1', 'Arezzo', 'ons_per_res_pop', '3.2'), ('2016', 'IT519C1', 'Arezzo', 'beds_per_1000res_pop', '41.6'), ('2016', 'IT520C1', 'Grosseto', 'ons', '1046152'), ('2016', 'IT520C1', 'Grosseto', 'beds', '19008'), ('2016', 'IT520C1', 'Grosseto', 'ons_per_res_pop', '12.7'), ('2016', 'IT520C1', 'Grosseto', 'beds_per_1000res_pop', '231.6'), ('2016', 'IT521C1', 'Brindisi', 'ons', '149125'), ('2016', 'IT521C1', 'Brindisi', 'beds', '1733'), ('2016', 'IT521C1', 'Brindisi', 'ons_per_res_pop', '1.7'), ('2016', 'IT521C1', 'Brindisi', 'beds_per_1000res_pop', '19.6'), ('2016', 'IT522C1', 'Trapani', 'ons', '206319'), ('2016', 'IT522C1', 'Trapani', 'beds', '2172'), ('2016', 'IT522C1', 'Trapani', 'ons_per_res_pop', '3'), ('2016', 'IT522C1', 'Trapani', 'beds_per_1000res_pop', '31.6'), ('2016', 'IT523C1', 'Ragusa', 'ons', '855046'), ('2016', 'IT523C1', 'Ragusa', 'beds', '9777'), ('2016', 'IT523C1', 'Ragusa', 'ons_per_res_pop', '11.7'), ('2016', 'IT523C1', 'Ragusa', 'beds_per_1000res_pop', '133.4'), ('2016', 'IT524C1', 'Andria', 'ons', '33682'), ('2016', 'IT524C1', 'Andria', 'beds', '893'), ('2016', 'IT524C1', 'Andria', 'ons_per_res_pop', '0.3'), ('2016', 'IT524C1', 'Andria', 'beds_per_1000res_pop', '8.9'), ('2016', 'IT525C1', 'Trani', 'ons', '75660'), ('2016', 'IT525C1', 'Trani', 'beds', '1114'), ('2016', 'IT525C1', 'Trani', 'ons_per_res_pop', '1.3'), ('2016', 'IT525C1', 'Trani', 'beds_per_1000res_pop', '19.8'), ('2016', 'IT526C1', 'L''Aquila', 'ons', '125698'), ('2016', 'IT526C1', 'L''Aquila', 'beds', '2415'), ('2016', 'IT526C1', 'L''Aquila', 'ons_per_res_pop', '1.8'), ('2016', 'IT526C1', 'L''Aquila', 'beds_per_1000res_pop', '34.6'), ('2016', 'CY', 'Cyprus', 'ons', null), ('2016', 'CY', 'Cyprus', 'beds', null), ('2016', 'CY', 'Cyprus', 'ons_per_res_pop', null), ('2016', 'CY', 'Cyprus', 'beds_per_1000res_pop', null), ('2016', 'CY001C1', 'Lefkosia', 'ons', null), ('2016', 'CY001C1', 'Lefkosia', 'beds', null), ('2016', 'CY001C1', 'Lefkosia', 'ons_per_res_pop', null), ('2016', 'CY001C1', 'Lefkosia', 'beds_per_1000res_pop', null), ('2016', 'LV', 'Latvia', 'ons', '4416597'), ('2016', 'LV', 'Latvia', 'beds', '37453'), ('2016', 'LV', 'Latvia', 'ons_per_res_pop', '2.2'), ('2016', 'LV', 'Latvia', 'beds_per_1000res_pop', '19'), ('2016', 'LV001C1', 'Riga', 'ons', '2721156'), ('2016', 'LV001C1', 'Riga', 'beds', '15097'), ('2016', 'LV001C1', 'Riga', 'ons_per_res_pop', '4.3'), ('2016', 'LV001C1', 'Riga', 'beds_per_1000res_pop', '23.6'), ('2016', 'LV002C1', 'Liepaja', 'ons', '135082'), ('2016', 'LV002C1', 'Liepaja', 'beds', '1093'), ('2016', 'LV002C1', 'Liepaja', 'ons_per_res_pop', '1.9'), ('2016', 'LV002C1', 'Liepaja', 'beds_per_1000res_pop', '15.5'), ('2016', 'LV003C1', 'Jelgava', 'ons', '21652'), ('2016', 'LV003C1', 'Jelgava', 'beds', '230'), ('2016', 'LV003C1', 'Jelgava', 'ons_per_res_pop', '0.4'), ('2016', 'LV003C1', 'Jelgava', 'beds_per_1000res_pop', '4'), ('2016', 'LV501C1', 'Daugavpils', 'ons', '61729'), ('2016', 'LV501C1', 'Daugavpils', 'beds', '600'), ('2016', 'LV501C1', 'Daugavpils', 'ons_per_res_pop', '0.7'), ('2016', 'LV501C1', 'Daugavpils', 'beds_per_1000res_pop', '7'), ('2016', 'LT', 'Lithuania', 'ons', '6992674'), ('2016', 'LT', 'Lithuania', 'beds', '77024'), ('2016', 'LT', 'Lithuania', 'ons_per_res_pop', '2.4'), ('2016', 'LT', 'Lithuania', 'beds_per_1000res_pop', '26.7'), ('2016', 'LT001C1', 'Vilnius', 'ons', '1939019'), ('2016', 'LT001C1', 'Vilnius', 'beds', '12048'), ('2016', 'LT001C1', 'Vilnius', 'ons_per_res_pop', '3.6'), ('2016', 'LT001C1', 'Vilnius', 'beds_per_1000res_pop', '22.2'), ('2016', 'LT002C1', 'Kaunas', 'ons', '458487'), ('2016', 'LT002C1', 'Kaunas', 'beds', '3776'), ('2016', 'LT002C1', 'Kaunas', 'ons_per_res_pop', '1.5'), ('2016', 'LT002C1', 'Kaunas', 'beds_per_1000res_pop', '12.7'), ('2016', 'LT003C1', 'Panevezys', 'ons', '37328'), ('2016', 'LT003C1', 'Panevezys', 'beds', '355'), ('2016', 'LT003C1', 'Panevezys', 'ons_per_res_pop', '0.4'), ('2016', 'LT003C1', 'Panevezys', 'beds_per_1000res_pop', '3.8'), ('2016', 'LT004C1', 'Alytus', 'ons', '15715'), ('2016', 'LT004C1', 'Alytus', 'beds', '255'), ('2016', 'LT004C1', 'Alytus', 'ons_per_res_pop', '0.3'), ('2016', 'LT004C1', 'Alytus', 'beds_per_1000res_pop', '4.7'), ('2016', 'LT501C1', 'Klaipeda', 'ons', '365517'), ('2016', 'LT501C1', 'Klaipeda', 'beds', '3221'), ('2016', 'LT501C1', 'Klaipeda', 'ons_per_res_pop', '2.4'), ('2016', 'LT501C1', 'Klaipeda', 'beds_per_1000res_pop', '20.9'), ('2016', 'LT502C1', 'Siauliai', 'ons', '141008'), ('2016', 'LT502C1', 'Siauliai', 'beds', '1144'), ('2016', 'LT502C1', 'Siauliai', 'ons_per_res_pop', '1.4'), ('2016', 'LT502C1', 'Siauliai', 'beds_per_1000res_pop', '11.1'), ('2016', 'LU', 'Luxembourg (Grand Duchy)', 'ons', null), ('2016', 'LU', 'Luxembourg (Grand Duchy)', 'beds', null), ('2016', 'LU', 'Luxembourg (Grand Duchy)', 'ons_per_res_pop', null), ('2016', 'LU', 'Luxembourg (Grand Duchy)', 'beds_per_1000res_pop', null), ('2016', 'LU001C1', 'Luxembourg', 'ons', null), ('2016', 'LU001C1', 'Luxembourg', 'beds', null), ('2016', 'LU001C1', 'Luxembourg', 'ons_per_res_pop', null), ('2016', 'LU001C1', 'Luxembourg', 'beds_per_1000res_pop', null), ('2016', 'HU', 'Hungary', 'ons', '27629453'), ('2016', 'HU', 'Hungary', 'beds', '381054'), ('2016', 'HU', 'Hungary', 'ons_per_res_pop', '2.8'), ('2016', 'HU', 'Hungary', 'beds_per_1000res_pop', '38.8'), ('2016', 'HU001C1', 'Budapest', 'ons', '9323228'), ('2016', 'HU001C1', 'Budapest', 'beds', '53928'), ('2016', 'HU001C1', 'Budapest', 'ons_per_res_pop', '5.3'), ('2016', 'HU001C1', 'Budapest', 'beds_per_1000res_pop', '30.7'), ('2016', 'HU002C1', 'Miskolc', 'ons', '358730'), ('2016', 'HU002C1', 'Miskolc', 'beds', '5489'), ('2016', 'HU002C1', 'Miskolc', 'ons_per_res_pop', '2.3'), ('2016', 'HU002C1', 'Miskolc', 'beds_per_1000res_pop', '34.7'), ('2016', 'HU003C1', 'Nyíregyháza', 'ons', '196256'), ('2016', 'HU003C1', 'Nyíregyháza', 'beds', '3110'), ('2016', 'HU003C1', 'Nyíregyháza', 'ons_per_res_pop', '1.7'), ('2016', 'HU003C1', 'Nyíregyháza', 'beds_per_1000res_pop', '26.3'), ('2016', 'HU004C1', 'Pécs', 'ons', '223821'), ('2016', 'HU004C1', 'Pécs', 'beds', '4126'), ('2016', 'HU004C1', 'Pécs', 'ons_per_res_pop', '1.5'), ('2016', 'HU004C1', 'Pécs', 'beds_per_1000res_pop', '28.4'), ('2016', 'HU005C1', 'Debrecen', 'ons', '348216'), ('2016', 'HU005C1', 'Debrecen', 'beds', '6506'), ('2016', 'HU005C1', 'Debrecen', 'ons_per_res_pop', '1.7'), ('2016', 'HU005C1', 'Debrecen', 'beds_per_1000res_pop', '32'), ('2016', 'HU006C1', 'Szeged', 'ons', '378876'), ('2016', 'HU006C1', 'Szeged', 'beds', '8366'), ('2016', 'HU006C1', 'Szeged', 'ons_per_res_pop', '2.3'), ('2016', 'HU006C1', 'Szeged', 'beds_per_1000res_pop', '51.4'), ('2016', 'HU007C1', 'Gyõr', 'ons', '369354'), ('2016', 'HU007C1', 'Gyõr', 'beds', '4405'), ('2016', 'HU007C1', 'Gyõr', 'ons_per_res_pop', '2.9'), ('2016', 'HU007C1', 'Gyõr', 'beds_per_1000res_pop', '34'), ('2016', 'HU008C1', 'Kecskemét', 'ons', '159078'), ('2016', 'HU008C1', 'Kecskemét', 'beds', '1986'), ('2016', 'HU008C1', 'Kecskemét', 'ons_per_res_pop', '1.4'), ('2016', 'HU008C1', 'Kecskemét', 'beds_per_1000res_pop', '17.8'), ('2016', 'HU009C1', 'Székesfehérvár', 'ons', '130417'), ('2016', 'HU009C1', 'Székesfehérvár', 'beds', '1386'), ('2016', 'HU009C1', 'Székesfehérvár', 'ons_per_res_pop', '1.3'), ('2016', 'HU009C1', 'Székesfehérvár', 'beds_per_1000res_pop', '14.1'), ('2016', 'HU010C1', 'Szombathely', 'ons', '129398'), ('2016', 'HU010C1', 'Szombathely', 'beds', '1949'), ('2016', 'HU010C1', 'Szombathely', 'ons_per_res_pop', '1.7'), ('2016', 'HU010C1', 'Szombathely', 'beds_per_1000res_pop', '25'), ('2016', 'HU011C1', 'Szolnok', 'ons', '79678'), ('2016', 'HU011C1', 'Szolnok', 'beds', '1016'), ('2016', 'HU011C1', 'Szolnok', 'ons_per_res_pop', '1.1'), ('2016', 'HU011C1', 'Szolnok', 'beds_per_1000res_pop', '14'), ('2016', 'HU012C1', 'Tatabánya', 'ons', '14537'), ('2016', 'HU012C1', 'Tatabánya', 'beds', '303'), ('2016', 'HU012C1', 'Tatabánya', 'ons_per_res_pop', '0.2'), ('2016', 'HU012C1', 'Tatabánya', 'beds_per_1000res_pop', '4.6'), ('2016', 'HU013C1', 'Veszprém', 'ons', '93987'), ('2016', 'HU013C1', 'Veszprém', 'beds', '1510'), ('2016', 'HU013C1', 'Veszprém', 'ons_per_res_pop', '1.6'), ('2016', 'HU013C1', 'Veszprém', 'beds_per_1000res_pop', '25'), ('2016', 'HU014C1', 'Békéscsaba', 'ons', '48310'), ('2016', 'HU014C1', 'Békéscsaba', 'beds', '885'), ('2016', 'HU014C1', 'Békéscsaba', 'ons_per_res_pop', '0.8'), ('2016', 'HU014C1', 'Békéscsaba', 'beds_per_1000res_pop', '14.7'), ('2016', 'HU015C1', 'Kaposvár', 'ons', '60887'), ('2016', 'HU015C1', 'Kaposvár', 'beds', '2160'), ('2016', 'HU015C1', 'Kaposvár', 'ons_per_res_pop', '1'), ('2016', 'HU015C1', 'Kaposvár', 'beds_per_1000res_pop', '34.2'), ('2016', 'HU016C1', 'Eger', 'ons', '449702'), ('2016', 'HU016C1', 'Eger', 'beds', '6096'), ('2016', 'HU016C1', 'Eger', 'ons_per_res_pop', '8.3'), ('2016', 'HU016C1', 'Eger', 'beds_per_1000res_pop', '111.9'), ('2016', 'HU017C1', 'Dunaújváros', 'ons', '49557'), ('2016', 'HU017C1', 'Dunaújváros', 'beds', '1417'), ('2016', 'HU017C1', 'Dunaújváros', 'ons_per_res_pop', '1.1'), ('2016', 'HU017C1', 'Dunaújváros', 'beds_per_1000res_pop', '31.2'), ('2016', 'HU018C1', 'Zalaegerszeg', 'ons', '36324'), ('2016', 'HU018C1', 'Zalaegerszeg', 'beds', '1458'), ('2016', 'HU018C1', 'Zalaegerszeg', 'ons_per_res_pop', '0.6'), ('2016', 'HU018C1', 'Zalaegerszeg', 'beds_per_1000res_pop', '24.8'), ('2016', 'HU019C1', 'Sopron', 'ons', '364542'), ('2016', 'HU019C1', 'Sopron', 'beds', '3166'), ('2016', 'HU019C1', 'Sopron', 'ons_per_res_pop', '5.9'), ('2016', 'HU019C1', 'Sopron', 'beds_per_1000res_pop', '51.2'), ('2016', 'MT', 'Malta', 'ons', '8971191'), ('2016', 'MT', 'Malta', 'beds', '41237'), ('2016', 'MT', 'Malta', 'ons_per_res_pop', '19.9'), ('2016', 'MT', 'Malta', 'beds_per_1000res_pop', '91.6'), ('2016', 'MT001C1', 'Valletta', 'ons', '4155827'), ('2016', 'MT001C1', 'Valletta', 'beds', '18483'), ('2016', 'MT001C1', 'Valletta', 'ons_per_res_pop', '19'), ('2016', 'MT001C1', 'Valletta', 'beds_per_1000res_pop', '84.4'), ('2016', 'NL', 'Netherlands', 'ons', null), ('2016', 'NL', 'Netherlands', 'beds', null), ('2016', 'NL', 'Netherlands', 'ons_per_res_pop', null), ('2016', 'NL', 'Netherlands', 'beds_per_1000res_pop', null), ('2016', 'NL001C2', 'Greater ''s-Gravenhage', 'ons', null), ('2016', 'NL001C2', 'Greater ''s-Gravenhage', 'beds', null), ('2016', 'NL001C2', 'Greater ''s-Gravenhage', 'ons_per_res_pop', null), ('2016', 'NL001C2', 'Greater ''s-Gravenhage', 'beds_per_1000res_pop', null), ('2016', 'NL002C2', 'Greater Amsterdam', 'ons', null), ('2016', 'NL002C2', 'Greater Amsterdam', 'beds', null), ('2016', 'NL002C2', 'Greater Amsterdam', 'ons_per_res_pop', null), ('2016', 'NL002C2', 'Greater Amsterdam', 'beds_per_1000res_pop', null), ('2016', 'NL003C2', 'Greater Rotterdam', 'ons', null), ('2016', 'NL003C2', 'Greater Rotterdam', 'beds', null), ('2016', 'NL003C2', 'Greater Rotterdam', 'ons_per_res_pop', null), ('2016', 'NL003C2', 'Greater Rotterdam', 'beds_per_1000res_pop', null), ('2016', 'NL004C2', 'Greater Utrecht', 'ons', null), ('2016', 'NL004C2', 'Greater Utrecht', 'beds', null), ('2016', 'NL004C2', 'Greater Utrecht', 'ons_per_res_pop', null), ('2016', 'NL004C2', 'Greater Utrecht', 'beds_per_1000res_pop', null), ('2016', 'NL005C2', 'Greater Eindhoven', 'ons', null), ('2016', 'NL005C2', 'Greater Eindhoven', 'beds', null), ('2016', 'NL005C2', 'Greater Eindhoven', 'ons_per_res_pop', null), ('2016', 'NL005C2', 'Greater Eindhoven', 'beds_per_1000res_pop', null), ('2016', 'NL006C1', 'Tilburg', 'ons', null), ('2016', 'NL006C1', 'Tilburg', 'beds', null), ('2016', 'NL006C1', 'Tilburg', 'ons_per_res_pop', null), ('2016', 'NL006C1', 'Tilburg', 'beds_per_1000res_pop', null), ('2016', 'NL007C1', 'Groningen', 'ons', null), ('2016', 'NL007C1', 'Groningen', 'beds', null), ('2016', 'NL007C1', 'Groningen', 'ons_per_res_pop', null), ('2016', 'NL007C1', 'Groningen', 'beds_per_1000res_pop', null), ('2016', 'NL008C1', 'Enschede', 'ons', null), ('2016', 'NL008C1', 'Enschede', 'beds', null), ('2016', 'NL008C1', 'Enschede', 'ons_per_res_pop', null), ('2016', 'NL008C1', 'Enschede', 'beds_per_1000res_pop', null), ('2016', 'NL009C2', 'Greater Arnhem', 'ons', null), ('2016', 'NL009C2', 'Greater Arnhem', 'beds', null), ('2016', 'NL009C2', 'Greater Arnhem', 'ons_per_res_pop', null), ('2016', 'NL009C2', 'Greater Arnhem', 'beds_per_1000res_pop', null), ('2016', 'NL010C2', 'Greater Heerlen', 'ons', null), ('2016', 'NL010C2', 'Greater Heerlen', 'beds', null), ('2016', 'NL010C2', 'Greater Heerlen', 'ons_per_res_pop', null), ('2016', 'NL010C2', 'Greater Heerlen', 'beds_per_1000res_pop', null), ('2016', 'NL011C1', 'Almere', 'ons', null), ('2016', 'NL011C1', 'Almere', 'beds', null), ('2016', 'NL011C1', 'Almere', 'ons_per_res_pop', null), ('2016', 'NL011C1', 'Almere', 'beds_per_1000res_pop', null), ('2016', 'NL012C1', 'Breda', 'ons', null), ('2016', 'NL012C1', 'Breda', 'beds', null), ('2016', 'NL012C1', 'Breda', 'ons_per_res_pop', null), ('2016', 'NL012C1', 'Breda', 'beds_per_1000res_pop', null), ('2016', 'NL013C1', 'Nijmegen', 'ons', null), ('2016', 'NL013C1', 'Nijmegen', 'beds', null), ('2016', 'NL013C1', 'Nijmegen', 'ons_per_res_pop', null), ('2016', 'NL013C1', 'Nijmegen', 'beds_per_1000res_pop', null), ('2016', 'NL014C1', 'Apeldoorn', 'ons', null), ('2016', 'NL014C1', 'Apeldoorn', 'beds', null), ('2016', 'NL014C1', 'Apeldoorn', 'ons_per_res_pop', null), ('2016', 'NL014C1', 'Apeldoorn', 'beds_per_1000res_pop', null), ('2016', 'NL015C1', 'Leeuwarden', 'ons', null), ('2016', 'NL015C1', 'Leeuwarden', 'beds', null), ('2016', 'NL015C1', 'Leeuwarden', 'ons_per_res_pop', null), ('2016', 'NL015C1', 'Leeuwarden', 'beds_per_1000res_pop', null), ('2016', 'NL016C2', 'Greater Sittard-Geleen', 'ons', null), ('2016', 'NL016C2', 'Greater Sittard-Geleen', 'beds', null), ('2016', 'NL016C2', 'Greater Sittard-Geleen', 'ons_per_res_pop', null), ('2016', 'NL016C2', 'Greater Sittard-Geleen', 'beds_per_1000res_pop', null), ('2016', 'NL018C1', 'Hilversum', 'ons', null), ('2016', 'NL018C1', 'Hilversum', 'beds', null), ('2016', 'NL018C1', 'Hilversum', 'ons_per_res_pop', null), ('2016', 'NL018C1', 'Hilversum', 'beds_per_1000res_pop', null), ('2016', 'NL020C1', 'Roosendaal', 'ons', null), ('2016', 'NL020C1', 'Roosendaal', 'beds', null), ('2016', 'NL020C1', 'Roosendaal', 'ons_per_res_pop', null), ('2016', 'NL020C1', 'Roosendaal', 'beds_per_1000res_pop', null), ('2016', 'NL021C2', 'Greater Nissewaard', 'ons', null), ('2016', 'NL021C2', 'Greater Nissewaard', 'beds', null), ('2016', 'NL021C2', 'Greater Nissewaard', 'ons_per_res_pop', null), ('2016', 'NL021C2', 'Greater Nissewaard', 'beds_per_1000res_pop', null), ('2016', 'NL023C1', 'Purmerend', 'ons', null), ('2016', 'NL023C1', 'Purmerend', 'beds', null), ('2016', 'NL023C1', 'Purmerend', 'ons_per_res_pop', null), ('2016', 'NL023C1', 'Purmerend', 'beds_per_1000res_pop', null), ('2016', 'NL026C1', 'Alphen aan den Rijn', 'ons', null), ('2016', 'NL026C1', 'Alphen aan den Rijn', 'beds', null), ('2016', 'NL026C1', 'Alphen aan den Rijn', 'ons_per_res_pop', null), ('2016', 'NL026C1', 'Alphen aan den Rijn', 'beds_per_1000res_pop', null), ('2016', 'NL028C1', 'Bergen op Zoom', 'ons', null), ('2016', 'NL028C1', 'Bergen op Zoom', 'beds', null), ('2016', 'NL028C1', 'Bergen op Zoom', 'ons_per_res_pop', null), ('2016', 'NL028C1', 'Bergen op Zoom', 'beds_per_1000res_pop', null), ('2016', 'NL030C1', 'Gouda', 'ons', null), ('2016', 'NL030C1', 'Gouda', 'beds', null), ('2016', 'NL030C1', 'Gouda', 'ons_per_res_pop', null), ('2016', 'NL030C1', 'Gouda', 'beds_per_1000res_pop', null), ('2016', 'NL031C1', 'Hoorn', 'ons', null), ('2016', 'NL031C1', 'Hoorn', 'beds', null), ('2016', 'NL031C1', 'Hoorn', 'ons_per_res_pop', null), ('2016', 'NL031C1', 'Hoorn', 'beds_per_1000res_pop', null), ('2016', 'NL032C2', 'Greater Middelburg', 'ons', null), ('2016', 'NL032C2', 'Greater Middelburg', 'beds', null), ('2016', 'NL032C2', 'Greater Middelburg', 'ons_per_res_pop', null), ('2016', 'NL032C2', 'Greater Middelburg', 'beds_per_1000res_pop', null), ('2016', 'NL501C2', 'Greater Haarlem', 'ons', null), ('2016', 'NL501C2', 'Greater Haarlem', 'beds', null), ('2016', 'NL501C2', 'Greater Haarlem', 'ons_per_res_pop', null), ('2016', 'NL501C2', 'Greater Haarlem', 'beds_per_1000res_pop', null), ('2016', 'NL502C1', 'Zaanstad', 'ons', null), ('2016', 'NL502C1', 'Zaanstad', 'beds', null), ('2016', 'NL502C1', 'Zaanstad', 'ons_per_res_pop', null), ('2016', 'NL502C1', 'Zaanstad', 'beds_per_1000res_pop', null), ('2016', 'NL503C1', '''s-Hertogenbosch', 'ons', null), ('2016', 'NL503C1', '''s-Hertogenbosch', 'beds', null), ('2016', 'NL503C1', '''s-Hertogenbosch', 'ons_per_res_pop', null), ('2016', 'NL503C1', '''s-Hertogenbosch', 'beds_per_1000res_pop', null), ('2016', 'NL504C1', 'Amersfoort', 'ons', null), ('2016', 'NL504C1', 'Amersfoort', 'beds', null), ('2016', 'NL504C1', 'Amersfoort', 'ons_per_res_pop', null), ('2016', 'NL504C1', 'Amersfoort', 'beds_per_1000res_pop', null), ('2016', 'NL505C1', 'Maastricht', 'ons', null), ('2016', 'NL505C1', 'Maastricht', 'beds', null), ('2016', 'NL505C1', 'Maastricht', 'ons_per_res_pop', null), ('2016', 'NL505C1', 'Maastricht', 'beds_per_1000res_pop', null), ('2016', 'NL507C2', 'Greater Leiden', 'ons', null), ('2016', 'NL507C2', 'Greater Leiden', 'beds', null), ('2016', 'NL507C2', 'Greater Leiden', 'ons_per_res_pop', null), ('2016', 'NL507C2', 'Greater Leiden', 'beds_per_1000res_pop', null), ('2016', 'NL508C1', 'Haarlemmermeer', 'ons', null), ('2016', 'NL508C1', 'Haarlemmermeer', 'beds', null), ('2016', 'NL508C1', 'Haarlemmermeer', 'ons_per_res_pop', null), ('2016', 'NL508C1', 'Haarlemmermeer', 'beds_per_1000res_pop', null), ('2016', 'NL509C1', 'Zoetermeer', 'ons', null), ('2016', 'NL509C1', 'Zoetermeer', 'beds', null), ('2016', 'NL509C1', 'Zoetermeer', 'ons_per_res_pop', null), ('2016', 'NL509C1', 'Zoetermeer', 'beds_per_1000res_pop', null), ('2016', 'NL511C1', 'Zwolle', 'ons', null), ('2016', 'NL511C1', 'Zwolle', 'beds', null), ('2016', 'NL511C1', 'Zwolle', 'ons_per_res_pop', null), ('2016', 'NL511C1', 'Zwolle', 'beds_per_1000res_pop', null), ('2016', 'NL512C2', 'Greater Ede', 'ons', null), ('2016', 'NL512C2', 'Greater Ede', 'beds', null), ('2016', 'NL512C2', 'Greater Ede', 'ons_per_res_pop', null), ('2016', 'NL512C2', 'Greater Ede', 'beds_per_1000res_pop', null), ('2016', 'NL513C1', 'Deventer', 'ons', null), ('2016', 'NL513C1', 'Deventer', 'beds', null), ('2016', 'NL513C1', 'Deventer', 'ons_per_res_pop', null), ('2016', 'NL513C1', 'Deventer', 'beds_per_1000res_pop', null), ('2016', 'NL514C2', 'Greater Alkmaar', 'ons', null), ('2016', 'NL514C2', 'Greater Alkmaar', 'beds', null), ('2016', 'NL514C2', 'Greater Alkmaar', 'ons_per_res_pop', null), ('2016', 'NL514C2', 'Greater Alkmaar', 'beds_per_1000res_pop', null), ('2016', 'NL515C1', 'Venlo', 'ons', null), ('2016', 'NL515C1', 'Venlo', 'beds', null), ('2016', 'NL515C1', 'Venlo', 'ons_per_res_pop', null), ('2016', 'NL515C1', 'Venlo', 'beds_per_1000res_pop', null), ('2016', 'NL516C1', 'Helmond', 'ons', null), ('2016', 'NL516C1', 'Helmond', 'beds', null), ('2016', 'NL516C1', 'Helmond', 'ons_per_res_pop', null), ('2016', 'NL516C1', 'Helmond', 'beds_per_1000res_pop', null), ('2016', 'NL517C1', 'Hengelo', 'ons', null), ('2016', 'NL517C1', 'Hengelo', 'beds', null), ('2016', 'NL517C1', 'Hengelo', 'ons_per_res_pop', null), ('2016', 'NL517C1', 'Hengelo', 'beds_per_1000res_pop', null), ('2016', 'NL519C1', 'Almelo', 'ons', null), ('2016', 'NL519C1', 'Almelo', 'beds', null), ('2016', 'NL519C1', 'Almelo', 'ons_per_res_pop', null), ('2016', 'NL519C1', 'Almelo', 'beds_per_1000res_pop', null), ('2016', 'NL520C1', 'Lelystad', 'ons', null), ('2016', 'NL520C1', 'Lelystad', 'beds', null), ('2016', 'NL520C1', 'Lelystad', 'ons_per_res_pop', null), ('2016', 'NL520C1', 'Lelystad', 'beds_per_1000res_pop', null), ('2016', 'NL521C1', 'Oss', 'ons', null), ('2016', 'NL521C1', 'Oss', 'beds', null), ('2016', 'NL521C1', 'Oss', 'ons_per_res_pop', null), ('2016', 'NL521C1', 'Oss', 'beds_per_1000res_pop', null), ('2016', 'NL522C1', 'Assen', 'ons', null), ('2016', 'NL522C1', 'Assen', 'beds', null), ('2016', 'NL522C1', 'Assen', 'ons_per_res_pop', null), ('2016', 'NL522C1', 'Assen', 'beds_per_1000res_pop', null), ('2016', 'NL524C1', 'Veenendaal', 'ons', null), ('2016', 'NL524C1', 'Veenendaal', 'beds', null), ('2016', 'NL524C1', 'Veenendaal', 'ons_per_res_pop', null), ('2016', 'NL524C1', 'Veenendaal', 'beds_per_1000res_pop', null), ('2016', 'NL528C1', 'Greater Heemskerk', 'ons', null), ('2016', 'NL528C1', 'Greater Heemskerk', 'beds', null), ('2016', 'NL528C1', 'Greater Heemskerk', 'ons_per_res_pop', null), ('2016', 'NL528C1', 'Greater Heemskerk', 'beds_per_1000res_pop', null), ('2016', 'NL529C1', 'Greater Soest', 'ons', null), ('2016', 'NL529C1', 'Greater Soest', 'beds', null), ('2016', 'NL529C1', 'Greater Soest', 'ons_per_res_pop', null), ('2016', 'NL529C1', 'Greater Soest', 'beds_per_1000res_pop', null), ('2016', 'AT', 'Austria', 'ons', null), ('2016', 'AT', 'Austria', 'beds', null), ('2016', 'AT', 'Austria', 'ons_per_res_pop', null), ('2016', 'AT', 'Austria', 'beds_per_1000res_pop', null), ('2016', 'AT001C1', 'Wien', 'ons', null), ('2016', 'AT001C1', 'Wien', 'beds', null), ('2016', 'AT001C1', 'Wien', 'ons_per_res_pop', null), ('2016', 'AT001C1', 'Wien', 'beds_per_1000res_pop', null), ('2016', 'AT002C1', 'Graz', 'ons', null), ('2016', 'AT002C1', 'Graz', 'beds', null), ('2016', 'AT002C1', 'Graz', 'ons_per_res_pop', null), ('2016', 'AT002C1', 'Graz', 'beds_per_1000res_pop', null), ('2016', 'AT003C1', 'Linz', 'ons', null), ('2016', 'AT003C1', 'Linz', 'beds', null), ('2016', 'AT003C1', 'Linz', 'ons_per_res_pop', null), ('2016', 'AT003C1', 'Linz', 'beds_per_1000res_pop', null), ('2016', 'AT004C1', 'Salzburg', 'ons', null), ('2016', 'AT004C1', 'Salzburg', 'beds', null), ('2016', 'AT004C1', 'Salzburg', 'ons_per_res_pop', null), ('2016', 'AT004C1', 'Salzburg', 'beds_per_1000res_pop', null), ('2016', 'AT005C1', 'Innsbruck', 'ons', null), ('2016', 'AT005C1', 'Innsbruck', 'beds', null), ('2016', 'AT005C1', 'Innsbruck', 'ons_per_res_pop', null), ('2016', 'AT005C1', 'Innsbruck', 'beds_per_1000res_pop', null), ('2016', 'AT006C1', 'Klagenfurt', 'ons', null), ('2016', 'AT006C1', 'Klagenfurt', 'beds', null), ('2016', 'AT006C1', 'Klagenfurt', 'ons_per_res_pop', null), ('2016', 'AT006C1', 'Klagenfurt', 'beds_per_1000res_pop', null), ('2016', 'PL', 'Poland', 'ons', null), ('2016', 'PL', 'Poland', 'beds', null), ('2016', 'PL', 'Poland', 'ons_per_res_pop', null), ('2016', 'PL', 'Poland', 'beds_per_1000res_pop', null), ('2016', 'PL001C1', 'Warszawa', 'ons', null), ('2016', 'PL001C1', 'Warszawa', 'beds', null), ('2016', 'PL001C1', 'Warszawa', 'ons_per_res_pop', null), ('2016', 'PL001C1', 'Warszawa', 'beds_per_1000res_pop', null), ('2016', 'PL002C1', 'Lódz', 'ons', null), ('2016', 'PL002C1', 'Lódz', 'beds', null), ('2016', 'PL002C1', 'Lódz', 'ons_per_res_pop', null), ('2016', 'PL002C1', 'Lódz', 'beds_per_1000res_pop', null), ('2016', 'PL003C1', 'Kraków', 'ons', null), ('2016', 'PL003C1', 'Kraków', 'beds', null), ('2016', 'PL003C1', 'Kraków', 'ons_per_res_pop', null), ('2016', 'PL003C1', 'Kraków', 'beds_per_1000res_pop', null), ('2016', 'PL004C1', 'Wroclaw', 'ons', null), ('2016', 'PL004C1', 'Wroclaw', 'beds', null), ('2016', 'PL004C1', 'Wroclaw', 'ons_per_res_pop', null), ('2016', 'PL004C1', 'Wroclaw', 'beds_per_1000res_pop', null), ('2016', 'PL005C1', 'Poznan', 'ons', null), ('2016', 'PL005C1', 'Poznan', 'beds', null), ('2016', 'PL005C1', 'Poznan', 'ons_per_res_pop', null), ('2016', 'PL005C1', 'Poznan', 'beds_per_1000res_pop', null), ('2016', 'PL006C1', 'Gdansk', 'ons', null), ('2016', 'PL006C1', 'Gdansk', 'beds', null), ('2016', 'PL006C1', 'Gdansk', 'ons_per_res_pop', null), ('2016', 'PL006C1', 'Gdansk', 'beds_per_1000res_pop', null), ('2016', 'PL007C1', 'Szczecin', 'ons', null), ('2016', 'PL007C1', 'Szczecin', 'beds', null), ('2016', 'PL007C1', 'Szczecin', 'ons_per_res_pop', null), ('2016', 'PL007C1', 'Szczecin', 'beds_per_1000res_pop', null), ('2016', 'PL008C1', 'Bydgoszcz', 'ons', null), ('2016', 'PL008C1', 'Bydgoszcz', 'beds', null), ('2016', 'PL008C1', 'Bydgoszcz', 'ons_per_res_pop', null), ('2016', 'PL008C1', 'Bydgoszcz', 'beds_per_1000res_pop', null), ('2016', 'PL009C1', 'Lublin', 'ons', null), ('2016', 'PL009C1', 'Lublin', 'beds', null), ('2016', 'PL009C1', 'Lublin', 'ons_per_res_pop', null), ('2016', 'PL009C1', 'Lublin', 'beds_per_1000res_pop', null), ('2016', 'PL010C1', 'Katowice', 'ons', null), ('2016', 'PL010C1', 'Katowice', 'beds', null), ('2016', 'PL010C1', 'Katowice', 'ons_per_res_pop', null), ('2016', 'PL010C1', 'Katowice', 'beds_per_1000res_pop', null), ('2016', 'PL011C1', 'Bialystok', 'ons', null), ('2016', 'PL011C1', 'Bialystok', 'beds', null), ('2016', 'PL011C1', 'Bialystok', 'ons_per_res_pop', null), ('2016', 'PL011C1', 'Bialystok', 'beds_per_1000res_pop', null), ('2016', 'PL012C1', 'Kielce', 'ons', null), ('2016', 'PL012C1', 'Kielce', 'beds', null), ('2016', 'PL012C1', 'Kielce', 'ons_per_res_pop', null), ('2016', 'PL012C1', 'Kielce', 'beds_per_1000res_pop', null), ('2016', 'PL013C1', 'Torun', 'ons', null), ('2016', 'PL013C1', 'Torun', 'beds', null), ('2016', 'PL013C1', 'Torun', 'ons_per_res_pop', null), ('2016', 'PL013C1', 'Torun', 'beds_per_1000res_pop', null), ('2016', 'PL014C1', 'Olsztyn', 'ons', null), ('2016', 'PL014C1', 'Olsztyn', 'beds', null), ('2016', 'PL014C1', 'Olsztyn', 'ons_per_res_pop', null), ('2016', 'PL014C1', 'Olsztyn', 'beds_per_1000res_pop', null), ('2016', 'PL015C1', 'Rzeszów', 'ons', null), ('2016', 'PL015C1', 'Rzeszów', 'beds', null), ('2016', 'PL015C1', 'Rzeszów', 'ons_per_res_pop', null), ('2016', 'PL015C1', 'Rzeszów', 'beds_per_1000res_pop', null), ('2016', 'PL016C1', 'Opole', 'ons', null), ('2016', 'PL016C1', 'Opole', 'beds', null), ('2016', 'PL016C1', 'Opole', 'ons_per_res_pop', null), ('2016', 'PL016C1', 'Opole', 'beds_per_1000res_pop', null), ('2016', 'PL017C1', 'Gorzów Wielkopolski', 'ons', null), ('2016', 'PL017C1', 'Gorzów Wielkopolski', 'beds', null), ('2016', 'PL017C1', 'Gorzów Wielkopolski', 'ons_per_res_pop', null), ('2016', 'PL017C1', 'Gorzów Wielkopolski', 'beds_per_1000res_pop', null), ('2016', 'PL018C1', 'Zielona Góra', 'ons', null), ('2016', 'PL018C1', 'Zielona Góra', 'beds', null), ('2016', 'PL018C1', 'Zielona Góra', 'ons_per_res_pop', null), ('2016', 'PL018C1', 'Zielona Góra', 'beds_per_1000res_pop', null), ('2016', 'PL019C1', 'Jelenia Góra', 'ons', null), ('2016', 'PL019C1', 'Jelenia Góra', 'beds', null), ('2016', 'PL019C1', 'Jelenia Góra', 'ons_per_res_pop', null), ('2016', 'PL019C1', 'Jelenia Góra', 'beds_per_1000res_pop', null), ('2016', 'PL020C1', 'Nowy Sacz', 'ons', null), ('2016', 'PL020C1', 'Nowy Sacz', 'beds', null), ('2016', 'PL020C1', 'Nowy Sacz', 'ons_per_res_pop', null), ('2016', 'PL020C1', 'Nowy Sacz', 'beds_per_1000res_pop', null), ('2016', 'PL021C1', 'Suwalki', 'ons', null), ('2016', 'PL021C1', 'Suwalki', 'beds', null), ('2016', 'PL021C1', 'Suwalki', 'ons_per_res_pop', null), ('2016', 'PL021C1', 'Suwalki', 'beds_per_1000res_pop', null), ('2016', 'PL022C1', 'Konin', 'ons', null), ('2016', 'PL022C1', 'Konin', 'beds', null), ('2016', 'PL022C1', 'Konin', 'ons_per_res_pop', null), ('2016', 'PL022C1', 'Konin', 'beds_per_1000res_pop', null), ('2016', 'PL023C1', 'Zory', 'ons', null), ('2016', 'PL023C1', 'Zory', 'beds', null), ('2016', 'PL023C1', 'Zory', 'ons_per_res_pop', null), ('2016', 'PL023C1', 'Zory', 'beds_per_1000res_pop', null), ('2016', 'PL024C1', 'Czestochowa', 'ons', null), ('2016', 'PL024C1', 'Czestochowa', 'beds', null), ('2016', 'PL024C1', 'Czestochowa', 'ons_per_res_pop', null), ('2016', 'PL024C1', 'Czestochowa', 'beds_per_1000res_pop', null), ('2016', 'PL025C1', 'Radom', 'ons', null), ('2016', 'PL025C1', 'Radom', 'beds', null), ('2016', 'PL025C1', 'Radom', 'ons_per_res_pop', null), ('2016', 'PL025C1', 'Radom', 'beds_per_1000res_pop', null), ('2016', 'PL026C1', 'Plock', 'ons', null), ('2016', 'PL026C1', 'Plock', 'beds', null), ('2016', 'PL026C1', 'Plock', 'ons_per_res_pop', null), ('2016', 'PL026C1', 'Plock', 'beds_per_1000res_pop', null), ('2016', 'PL027C1', 'Kalisz', 'ons', null), ('2016', 'PL027C1', 'Kalisz', 'beds', null), ('2016', 'PL027C1', 'Kalisz', 'ons_per_res_pop', null), ('2016', 'PL027C1', 'Kalisz', 'beds_per_1000res_pop', null), ('2016', 'PL028C1', 'Koszalin', 'ons', null), ('2016', 'PL028C1', 'Koszalin', 'beds', null), ('2016', 'PL028C1', 'Koszalin', 'ons_per_res_pop', null), ('2016', 'PL028C1', 'Koszalin', 'beds_per_1000res_pop', null), ('2016', 'PL029C1', 'Slupsk', 'ons', null), ('2016', 'PL029C1', 'Slupsk', 'beds', null), ('2016', 'PL029C1', 'Slupsk', 'ons_per_res_pop', null), ('2016', 'PL029C1', 'Slupsk', 'beds_per_1000res_pop', null), ('2016', 'PL030C1', 'Jastrzebie-Zdrój', 'ons', null), ('2016', 'PL030C1', 'Jastrzebie-Zdrój', 'beds', null), ('2016', 'PL030C1', 'Jastrzebie-Zdrój', 'ons_per_res_pop', null), ('2016', 'PL030C1', 'Jastrzebie-Zdrój', 'beds_per_1000res_pop', null), ('2016', 'PL031C1', 'Siedlce', 'ons', null), ('2016', 'PL031C1', 'Siedlce', 'beds', null), ('2016', 'PL031C1', 'Siedlce', 'ons_per_res_pop', null), ('2016', 'PL031C1', 'Siedlce', 'beds_per_1000res_pop', null), ('2016', 'PL032C1', 'Piotrków Trybunalski', 'ons', null), ('2016', 'PL032C1', 'Piotrków Trybunalski', 'beds', null), ('2016', 'PL032C1', 'Piotrków Trybunalski', 'ons_per_res_pop', null), ('2016', 'PL032C1', 'Piotrków Trybunalski', 'beds_per_1000res_pop', null), ('2016', 'PL033C1', 'Lubin', 'ons', null), ('2016', 'PL033C1', 'Lubin', 'beds', null), ('2016', 'PL033C1', 'Lubin', 'ons_per_res_pop', null), ('2016', 'PL033C1', 'Lubin', 'beds_per_1000res_pop', null), ('2016', 'PL034C1', 'Pila', 'ons', null), ('2016', 'PL034C1', 'Pila', 'beds', null), ('2016', 'PL034C1', 'Pila', 'ons_per_res_pop', null), ('2016', 'PL034C1', 'Pila', 'beds_per_1000res_pop', null), ('2016', 'PL035C1', 'Inowroclaw', 'ons', null), ('2016', 'PL035C1', 'Inowroclaw', 'beds', null), ('2016', 'PL035C1', 'Inowroclaw', 'ons_per_res_pop', null), ('2016', 'PL035C1', 'Inowroclaw', 'beds_per_1000res_pop', null), ('2016', 'PL036C1', 'Ostrowiec Swietokrzyski', 'ons', null), ('2016', 'PL036C1', 'Ostrowiec Swietokrzyski', 'beds', null), ('2016', 'PL036C1', 'Ostrowiec Swietokrzyski', 'ons_per_res_pop', null), ('2016', 'PL036C1', 'Ostrowiec Swietokrzyski', 'beds_per_1000res_pop', null), ('2016', 'PL037C1', 'Gniezno', 'ons', null), ('2016', 'PL037C1', 'Gniezno', 'beds', null), ('2016', 'PL037C1', 'Gniezno', 'ons_per_res_pop', null), ('2016', 'PL037C1', 'Gniezno', 'beds_per_1000res_pop', null), ('2016', 'PL038C1', 'Stargard Szczecinski', 'ons', null), ('2016', 'PL038C1', 'Stargard Szczecinski', 'beds', null), ('2016', 'PL038C1', 'Stargard Szczecinski', 'ons_per_res_pop', null), ('2016', 'PL038C1', 'Stargard Szczecinski', 'beds_per_1000res_pop', null), ('2016', 'PL039C1', 'Ostrów Wielkopolski', 'ons', null), ('2016', 'PL039C1', 'Ostrów Wielkopolski', 'beds', null), ('2016', 'PL039C1', 'Ostrów Wielkopolski', 'ons_per_res_pop', null), ('2016', 'PL039C1', 'Ostrów Wielkopolski', 'beds_per_1000res_pop', null), ('2016', 'PL040C1', 'Przemysl', 'ons', null), ('2016', 'PL040C1', 'Przemysl', 'beds', null), ('2016', 'PL040C1', 'Przemysl', 'ons_per_res_pop', null), ('2016', 'PL040C1', 'Przemysl', 'beds_per_1000res_pop', null), ('2016', 'PL041C1', 'Zamosc', 'ons', null), ('2016', 'PL041C1', 'Zamosc', 'beds', null), ('2016', 'PL041C1', 'Zamosc', 'ons_per_res_pop', null), ('2016', 'PL041C1', 'Zamosc', 'beds_per_1000res_pop', null), ('2016', 'PL042C1', 'Chelm', 'ons', null), ('2016', 'PL042C1', 'Chelm', 'beds', null), ('2016', 'PL042C1', 'Chelm', 'ons_per_res_pop', null), ('2016', 'PL042C1', 'Chelm', 'beds_per_1000res_pop', null), ('2016', 'PL043C1', 'Pabianice', 'ons', null), ('2016', 'PL043C1', 'Pabianice', 'beds', null), ('2016', 'PL043C1', 'Pabianice', 'ons_per_res_pop', null), ('2016', 'PL043C1', 'Pabianice', 'beds_per_1000res_pop', null), ('2016', 'PL044C1', 'Glogów', 'ons', null), ('2016', 'PL044C1', 'Glogów', 'beds', null), ('2016', 'PL044C1', 'Glogów', 'ons_per_res_pop', null), ('2016', 'PL044C1', 'Glogów', 'beds_per_1000res_pop', null), ('2016', 'PL045C1', 'Stalowa Wola', 'ons', null), ('2016', 'PL045C1', 'Stalowa Wola', 'beds', null), ('2016', 'PL045C1', 'Stalowa Wola', 'ons_per_res_pop', null), ('2016', 'PL045C1', 'Stalowa Wola', 'beds_per_1000res_pop', null), ('2016', 'PL046C1', 'Tomaszów Mazowiecki', 'ons', null), ('2016', 'PL046C1', 'Tomaszów Mazowiecki', 'beds', null), ('2016', 'PL046C1', 'Tomaszów Mazowiecki', 'ons_per_res_pop', null), ('2016', 'PL046C1', 'Tomaszów Mazowiecki', 'beds_per_1000res_pop', null), ('2016', 'PL047C1', 'Lomza', 'ons', null), ('2016', 'PL047C1', 'Lomza', 'beds', null), ('2016', 'PL047C1', 'Lomza', 'ons_per_res_pop', null), ('2016', 'PL047C1', 'Lomza', 'beds_per_1000res_pop', null), ('2016', 'PL048C1', 'Leszno', 'ons', null), ('2016', 'PL048C1', 'Leszno', 'beds', null), ('2016', 'PL048C1', 'Leszno', 'ons_per_res_pop', null), ('2016', 'PL048C1', 'Leszno', 'beds_per_1000res_pop', null), ('2016', 'PL049C1', 'Swidnica', 'ons', null), ('2016', 'PL049C1', 'Swidnica', 'beds', null), ('2016', 'PL049C1', 'Swidnica', 'ons_per_res_pop', null), ('2016', 'PL049C1', 'Swidnica', 'beds_per_1000res_pop', null), ('2016', 'PL050C1', 'Zgierz', 'ons', null), ('2016', 'PL050C1', 'Zgierz', 'beds', null), ('2016', 'PL050C1', 'Zgierz', 'ons_per_res_pop', null), ('2016', 'PL050C1', 'Zgierz', 'beds_per_1000res_pop', null), ('2016', 'PL051C1', 'Tczew', 'ons', null), ('2016', 'PL051C1', 'Tczew', 'beds', null), ('2016', 'PL051C1', 'Tczew', 'ons_per_res_pop', null), ('2016', 'PL051C1', 'Tczew', 'beds_per_1000res_pop', null), ('2016', 'PL052C1', 'Elk', 'ons', null), ('2016', 'PL052C1', 'Elk', 'beds', null), ('2016', 'PL052C1', 'Elk', 'ons_per_res_pop', null), ('2016', 'PL052C1', 'Elk', 'beds_per_1000res_pop', null), ('2016', 'PL501C1', 'Gdynia', 'ons', null), ('2016', 'PL501C1', 'Gdynia', 'beds', null), ('2016', 'PL501C1', 'Gdynia', 'ons_per_res_pop', null), ('2016', 'PL501C1', 'Gdynia', 'beds_per_1000res_pop', null), ('2016', 'PL502C1', 'Sosnowiec', 'ons', null), ('2016', 'PL502C1', 'Sosnowiec', 'beds', null), ('2016', 'PL502C1', 'Sosnowiec', 'ons_per_res_pop', null), ('2016', 'PL502C1', 'Sosnowiec', 'beds_per_1000res_pop', null), ('2016', 'PL503C1', 'Gliwice', 'ons', null), ('2016', 'PL503C1', 'Gliwice', 'beds', null), ('2016', 'PL503C1', 'Gliwice', 'ons_per_res_pop', null), ('2016', 'PL503C1', 'Gliwice', 'beds_per_1000res_pop', null), ('2016', 'PL504C1', 'Zabrze', 'ons', null), ('2016', 'PL504C1', 'Zabrze', 'beds', null), ('2016', 'PL504C1', 'Zabrze', 'ons_per_res_pop', null), ('2016', 'PL504C1', 'Zabrze', 'beds_per_1000res_pop', null), ('2016', 'PL505C1', 'Bytom', 'ons', null), ('2016', 'PL505C1', 'Bytom', 'beds', null), ('2016', 'PL505C1', 'Bytom', 'ons_per_res_pop', null), ('2016', 'PL505C1', 'Bytom', 'beds_per_1000res_pop', null), ('2016', 'PL506C1', 'Bielsko-Biala', 'ons', null), ('2016', 'PL506C1', 'Bielsko-Biala', 'beds', null), ('2016', 'PL506C1', 'Bielsko-Biala', 'ons_per_res_pop', null), ('2016', 'PL506C1', 'Bielsko-Biala', 'beds_per_1000res_pop', null), ('2016', 'PL507C1', 'Ruda Slaska', 'ons', null), ('2016', 'PL507C1', 'Ruda Slaska', 'beds', null), ('2016', 'PL507C1', 'Ruda Slaska', 'ons_per_res_pop', null), ('2016', 'PL507C1', 'Ruda Slaska', 'beds_per_1000res_pop', null), ('2016', 'PL508C1', 'Rybnik', 'ons', null), ('2016', 'PL508C1', 'Rybnik', 'beds', null), ('2016', 'PL508C1', 'Rybnik', 'ons_per_res_pop', null), ('2016', 'PL508C1', 'Rybnik', 'beds_per_1000res_pop', null), ('2016', 'PL509C1', 'Tychy', 'ons', null), ('2016', 'PL509C1', 'Tychy', 'beds', null), ('2016', 'PL509C1', 'Tychy', 'ons_per_res_pop', null), ('2016', 'PL509C1', 'Tychy', 'beds_per_1000res_pop', null), ('2016', 'PL511C1', 'Walbrzych', 'ons', null), ('2016', 'PL511C1', 'Walbrzych', 'beds', null), ('2016', 'PL511C1', 'Walbrzych', 'ons_per_res_pop', null), ('2016', 'PL511C1', 'Walbrzych', 'beds_per_1000res_pop', null), ('2016', 'PL512C1', 'Elblag', 'ons', null), ('2016', 'PL512C1', 'Elblag', 'beds', null), ('2016', 'PL512C1', 'Elblag', 'ons_per_res_pop', null), ('2016', 'PL512C1', 'Elblag', 'beds_per_1000res_pop', null), ('2016', 'PL513C1', 'Wloclawek', 'ons', null), ('2016', 'PL513C1', 'Wloclawek', 'beds', null), ('2016', 'PL513C1', 'Wloclawek', 'ons_per_res_pop', null), ('2016', 'PL513C1', 'Wloclawek', 'beds_per_1000res_pop', null), ('2016', 'PL514C1', 'Tarnów', 'ons', null), ('2016', 'PL514C1', 'Tarnów', 'beds', null), ('2016', 'PL514C1', 'Tarnów', 'ons_per_res_pop', null), ('2016', 'PL514C1', 'Tarnów', 'beds_per_1000res_pop', null), ('2016', 'PL515C1', 'Chorzów', 'ons', null), ('2016', 'PL515C1', 'Chorzów', 'beds', null), ('2016', 'PL515C1', 'Chorzów', 'ons_per_res_pop', null), ('2016', 'PL515C1', 'Chorzów', 'beds_per_1000res_pop', null), ('2016', 'PL516C1', 'Legnica', 'ons', null), ('2016', 'PL516C1', 'Legnica', 'beds', null), ('2016', 'PL516C1', 'Legnica', 'ons_per_res_pop', null), ('2016', 'PL516C1', 'Legnica', 'beds_per_1000res_pop', null), ('2016', 'PL517C1', 'Grudziadz', 'ons', null), ('2016', 'PL517C1', 'Grudziadz', 'beds', null), ('2016', 'PL517C1', 'Grudziadz', 'ons_per_res_pop', null), ('2016', 'PL517C1', 'Grudziadz', 'beds_per_1000res_pop', null), ('2016', 'PT', 'Portugal', 'ons', '59122640'), ('2016', 'PT', 'Portugal', 'beds', '380818'), ('2016', 'PT', 'Portugal', 'ons_per_res_pop', '5.7'), ('2016', 'PT', 'Portugal', 'beds_per_1000res_pop', '36.8'), ('2016', 'PT001C1', 'Lisboa', 'ons', '11066130'), ('2016', 'PT001C1', 'Lisboa', 'beds', '51627'), ('2016', 'PT001C1', 'Lisboa', 'ons_per_res_pop', '21.9'), ('2016', 'PT001C1', 'Lisboa', 'beds_per_1000res_pop', '102.3'), ('2016', 'PT002C1', 'Porto', 'ons', '3300011'), ('2016', 'PT002C1', 'Porto', 'beds', '16025'), ('2016', 'PT002C1', 'Porto', 'ons_per_res_pop', '15.4'), ('2016', 'PT002C1', 'Porto', 'beds_per_1000res_pop', '74.7'), ('2016', 'PT003C1', 'Braga', 'ons', '483956'), ('2016', 'PT003C1', 'Braga', 'beds', '3010'), ('2016', 'PT003C1', 'Braga', 'ons_per_res_pop', '2.7'), ('2016', 'PT003C1', 'Braga', 'beds_per_1000res_pop', '16.6'), ('2016', 'PT004C1', 'Funchal', 'ons', '5188974'), ('2016', 'PT004C1', 'Funchal', 'beds', '21057'), ('2016', 'PT004C1', 'Funchal', 'ons_per_res_pop', '49.2'), ('2016', 'PT004C1', 'Funchal', 'beds_per_1000res_pop', '199.5'), ('2016', 'PT005C1', 'Coimbra', 'ons', '572651'), ('2016', 'PT005C1', 'Coimbra', 'beds', '3580'), ('2016', 'PT005C1', 'Coimbra', 'ons_per_res_pop', '4.3'), ('2016', 'PT005C1', 'Coimbra', 'beds_per_1000res_pop', '26.6'), ('2016', 'PT006C1', 'Setúbal', 'ons', '273637'), ('2016', 'PT006C1', 'Setúbal', 'beds', '2165'), ('2016', 'PT006C1', 'Setúbal', 'ons_per_res_pop', '2.3'), ('2016', 'PT006C1', 'Setúbal', 'beds_per_1000res_pop', '18.4'), ('2016', 'PT007C1', 'Ponta Delgada', 'ons', '880013'), ('2016', 'PT007C1', 'Ponta Delgada', 'beds', '4629'), ('2016', 'PT007C1', 'Ponta Delgada', 'ons_per_res_pop', '12.9'), ('2016', 'PT007C1', 'Ponta Delgada', 'beds_per_1000res_pop', '67.7'), ('2016', 'PT008C1', 'Aveiro', 'ons', '284641'), ('2016', 'PT008C1', 'Aveiro', 'beds', '1699'), ('2016', 'PT008C1', 'Aveiro', 'ons_per_res_pop', '3.7'), ('2016', 'PT008C1', 'Aveiro', 'beds_per_1000res_pop', '22.1'), ('2016', 'PT009C1', 'Faro', 'ons', '428475'), ('2016', 'PT009C1', 'Faro', 'beds', '2395'), ('2016', 'PT009C1', 'Faro', 'ons_per_res_pop', '7'), ('2016', 'PT009C1', 'Faro', 'beds_per_1000res_pop', '39.3'), ('2016', 'PT010C1', 'Seixal', 'ons', null), ('2016', 'PT010C1', 'Seixal', 'beds', null), ('2016', 'PT010C1', 'Seixal', 'ons_per_res_pop', null), ('2016', 'PT010C1', 'Seixal', 'beds_per_1000res_pop', null), ('2016', 'PT011C1', 'Amadora', 'ons', '120978'), ('2016', 'PT011C1', 'Amadora', 'beds', '644'), ('2016', 'PT011C1', 'Amadora', 'ons_per_res_pop', '0.7'), ('2016', 'PT011C1', 'Amadora', 'beds_per_1000res_pop', '3.6'), ('2016', 'PT012C1', 'Almada', 'ons', '355426'), ('2016', 'PT012C1', 'Almada', 'beds', '2043'), ('2016', 'PT012C1', 'Almada', 'ons_per_res_pop', '2.1'), ('2016', 'PT012C1', 'Almada', 'beds_per_1000res_pop', '12'), ('2016', 'PT013C1', 'Odivelas', 'ons', '0'), ('2016', 'PT013C1', 'Odivelas', 'beds', '0'), ('2016', 'PT013C1', 'Odivelas', 'ons_per_res_pop', '0'), ('2016', 'PT013C1', 'Odivelas', 'beds_per_1000res_pop', '0'), ('2016', 'PT014C1', 'Viseu', 'ons', '164658'), ('2016', 'PT014C1', 'Viseu', 'beds', '1761'), ('2016', 'PT014C1', 'Viseu', 'ons_per_res_pop', '1.7'), ('2016', 'PT014C1', 'Viseu', 'beds_per_1000res_pop', '17.9'), ('2016', 'PT015C1', 'Valongo', 'ons', '87419'), ('2016', 'PT015C1', 'Valongo', 'beds', '431'), ('2016', 'PT015C1', 'Valongo', 'ons_per_res_pop', '0.9'), ('2016', 'PT015C1', 'Valongo', 'beds_per_1000res_pop', '4.5'), ('2016', 'PT016C1', 'Viana do Castelo', 'ons', '175225'), ('2016', 'PT016C1', 'Viana do Castelo', 'beds', '1719'), ('2016', 'PT016C1', 'Viana do Castelo', 'ons_per_res_pop', '2'), ('2016', 'PT016C1', 'Viana do Castelo', 'beds_per_1000res_pop', '20'), ('2016', 'PT017C1', 'Paredes', 'ons', '50165'), ('2016', 'PT017C1', 'Paredes', 'beds', '393'), ('2016', 'PT017C1', 'Paredes', 'ons_per_res_pop', '0.6'), ('2016', 'PT017C1', 'Paredes', 'beds_per_1000res_pop', '4.5'), ('2016', 'PT018C1', 'Barreiro', 'ons', null), ('2016', 'PT018C1', 'Barreiro', 'beds', null), ('2016', 'PT018C1', 'Barreiro', 'ons_per_res_pop', null), ('2016', 'PT018C1', 'Barreiro', 'beds_per_1000res_pop', null), ('2016', 'PT019C1', 'Póvoa de Varzim', 'ons', '172669'), ('2016', 'PT019C1', 'Póvoa de Varzim', 'beds', '1606'), ('2016', 'PT019C1', 'Póvoa de Varzim', 'ons_per_res_pop', '2.8'), ('2016', 'PT019C1', 'Póvoa de Varzim', 'beds_per_1000res_pop', '25.7'), ('2016', 'PT501C1', 'Sintra', 'ons', '446615'), ('2016', 'PT501C1', 'Sintra', 'beds', '2639'), ('2016', 'PT501C1', 'Sintra', 'ons_per_res_pop', '1.2'), ('2016', 'PT501C1', 'Sintra', 'beds_per_1000res_pop', '6.9'), ('2016', 'PT502C1', 'Vila Nova de Gaia', 'ons', '592587'), ('2016', 'PT502C1', 'Vila Nova de Gaia', 'beds', '3031'), ('2016', 'PT502C1', 'Vila Nova de Gaia', 'ons_per_res_pop', '2'), ('2016', 'PT502C1', 'Vila Nova de Gaia', 'beds_per_1000res_pop', '10.1'), ('2016', 'PT503C1', 'Matosinhos', 'ons', '424422'), ('2016', 'PT503C1', 'Matosinhos', 'beds', '2043'), ('2016', 'PT503C1', 'Matosinhos', 'ons_per_res_pop', '2.4'), ('2016', 'PT503C1', 'Matosinhos', 'beds_per_1000res_pop', '11.8'), ('2016', 'PT504C1', 'Gondomar', 'ons', null), ('2016', 'PT504C1', 'Gondomar', 'beds', null), ('2016', 'PT504C1', 'Gondomar', 'ons_per_res_pop', null), ('2016', 'PT504C1', 'Gondomar', 'beds_per_1000res_pop', null), ('2016', 'PT505C1', 'Guimarães', 'ons', '256531'), ('2016', 'PT505C1', 'Guimarães', 'beds', '1924'), ('2016', 'PT505C1', 'Guimarães', 'ons_per_res_pop', '1.7'), ('2016', 'PT505C1', 'Guimarães', 'beds_per_1000res_pop', '12.4'), ('2016', 'PT508C1', 'Vila Franca de Xira', 'ons', '54900'), ('2016', 'PT508C1', 'Vila Franca de Xira', 'beds', '305'), ('2016', 'PT508C1', 'Vila Franca de Xira', 'ons_per_res_pop', '0.4'), ('2016', 'PT508C1', 'Vila Franca de Xira', 'beds_per_1000res_pop', '2.2'), ('2016', 'RO', 'Romania', 'ons', '25440957'), ('2016', 'RO', 'Romania', 'beds', '328888'), ('2016', 'RO', 'Romania', 'ons_per_res_pop', null), ('2016', 'RO', 'Romania', 'beds_per_1000res_pop', null), ('2016', 'RO001C1', 'Bucuresti', 'ons', '3149970'), ('2016', 'RO001C1', 'Bucuresti', 'beds', '20247'), ('2016', 'RO001C1', 'Bucuresti', 'ons_per_res_pop', null), ('2016', 'RO001C1', 'Bucuresti', 'beds_per_1000res_pop', null), ('2016', 'RO002C1', 'Cluj-Napoca', 'ons', '704921'), ('2016', 'RO002C1', 'Cluj-Napoca', 'beds', '4899'), ('2016', 'RO002C1', 'Cluj-Napoca', 'ons_per_res_pop', null), ('2016', 'RO002C1', 'Cluj-Napoca', 'beds_per_1000res_pop', null), ('2016', 'RO003C1', 'Timisoara', 'ons', '665285'), ('2016', 'RO003C1', 'Timisoara', 'beds', '5155'), ('2016', 'RO003C1', 'Timisoara', 'ons_per_res_pop', null), ('2016', 'RO003C1', 'Timisoara', 'beds_per_1000res_pop', null), ('2016', 'RO004C1', 'Craiova', 'ons', '134215'), ('2016', 'RO004C1', 'Craiova', 'beds', '1805'), ('2016', 'RO004C1', 'Craiova', 'ons_per_res_pop', null), ('2016', 'RO004C1', 'Craiova', 'beds_per_1000res_pop', null), ('2016', 'RO005C1', 'Braila', 'ons', '213873'), ('2016', 'RO005C1', 'Braila', 'beds', '2160'), ('2016', 'RO005C1', 'Braila', 'ons_per_res_pop', null), ('2016', 'RO005C1', 'Braila', 'beds_per_1000res_pop', null), ('2016', 'RO006C1', 'Oradea', 'ons', '421062'), ('2016', 'RO006C1', 'Oradea', 'beds', '2525'), ('2016', 'RO006C1', 'Oradea', 'ons_per_res_pop', null), ('2016', 'RO006C1', 'Oradea', 'beds_per_1000res_pop', null), ('2016', 'RO007C1', 'Bacau', 'ons', '122667'), ('2016', 'RO007C1', 'Bacau', 'beds', '927'), ('2016', 'RO007C1', 'Bacau', 'ons_per_res_pop', null), ('2016', 'RO007C1', 'Bacau', 'beds_per_1000res_pop', null), ('2016', 'RO008C1', 'Arad', 'ons', '243686'), ('2016', 'RO008C1', 'Arad', 'beds', '3008'), ('2016', 'RO008C1', 'Arad', 'ons_per_res_pop', null), ('2016', 'RO008C1', 'Arad', 'beds_per_1000res_pop', null), ('2016', 'RO009C1', 'Sibiu', 'ons', '600250'), ('2016', 'RO009C1', 'Sibiu', 'beds', '5453'), ('2016', 'RO009C1', 'Sibiu', 'ons_per_res_pop', null), ('2016', 'RO009C1', 'Sibiu', 'beds_per_1000res_pop', null), ('2016', 'RO010C1', 'Târgu Mures', 'ons', '308304'), ('2016', 'RO010C1', 'Târgu Mures', 'beds', '2687'), ('2016', 'RO010C1', 'Târgu Mures', 'ons_per_res_pop', null), ('2016', 'RO010C1', 'Târgu Mures', 'beds_per_1000res_pop', null), ('2016', 'RO011C1', 'Piatra Neamt', 'ons', '96794'), ('2016', 'RO011C1', 'Piatra Neamt', 'beds', '1075'), ('2016', 'RO011C1', 'Piatra Neamt', 'ons_per_res_pop', null), ('2016', 'RO011C1', 'Piatra Neamt', 'beds_per_1000res_pop', null), ('2016', 'RO012C1', 'Calarasi', 'ons', '31514'), ('2016', 'RO012C1', 'Calarasi', 'beds', '747'), ('2016', 'RO012C1', 'Calarasi', 'ons_per_res_pop', null), ('2016', 'RO012C1', 'Calarasi', 'beds_per_1000res_pop', null), ('2016', 'RO013C1', 'Giurgiu', 'ons', '15700'), ('2016', 'RO013C1', 'Giurgiu', 'beds', '382'), ('2016', 'RO013C1', 'Giurgiu', 'ons_per_res_pop', null), ('2016', 'RO013C1', 'Giurgiu', 'beds_per_1000res_pop', null), ('2016', 'RO014C1', 'Alba Iulia', 'ons', '116432'), ('2016', 'RO014C1', 'Alba Iulia', 'beds', '1169'), ('2016', 'RO014C1', 'Alba Iulia', 'ons_per_res_pop', null), ('2016', 'RO014C1', 'Alba Iulia', 'beds_per_1000res_pop', null), ('2016', 'RO015C1', 'Focsani', 'ons', '27554'), ('2016', 'RO015C1', 'Focsani', 'beds', '446'), ('2016', 'RO015C1', 'Focsani', 'ons_per_res_pop', null), ('2016', 'RO015C1', 'Focsani', 'beds_per_1000res_pop', null), ('2016', 'RO016C1', 'Târgu Jiu', 'ons', '70982'), ('2016', 'RO016C1', 'Târgu Jiu', 'beds', '1082'), ('2016', 'RO016C1', 'Târgu Jiu', 'ons_per_res_pop', null), ('2016', 'RO016C1', 'Târgu Jiu', 'beds_per_1000res_pop', null), ('2016', 'RO017C1', 'Tulcea', 'ons', '79429'), ('2016', 'RO017C1', 'Tulcea', 'beds', '1289'), ('2016', 'RO017C1', 'Tulcea', 'ons_per_res_pop', null), ('2016', 'RO017C1', 'Tulcea', 'beds_per_1000res_pop', null), ('2016', 'RO018C1', 'Târgoviste', 'ons', '63884'), ('2016', 'RO018C1', 'Târgoviste', 'beds', '708'), ('2016', 'RO018C1', 'Târgoviste', 'ons_per_res_pop', null), ('2016', 'RO018C1', 'Târgoviste', 'beds_per_1000res_pop', null), ('2016', 'RO019C1', 'Slatina', 'ons', '53811'), ('2016', 'RO019C1', 'Slatina', 'beds', '445'), ('2016', 'RO019C1', 'Slatina', 'ons_per_res_pop', null), ('2016', 'RO019C1', 'Slatina', 'beds_per_1000res_pop', null), ('2016', 'RO020C1', 'Bârlad', 'ons', '10199'), ('2016', 'RO020C1', 'Bârlad', 'beds', '163'), ('2016', 'RO020C1', 'Bârlad', 'ons_per_res_pop', null), ('2016', 'RO020C1', 'Bârlad', 'beds_per_1000res_pop', null), ('2016', 'RO021C1', 'Roman', 'ons', '35985'), ('2016', 'RO021C1', 'Roman', 'beds', '338'), ('2016', 'RO021C1', 'Roman', 'ons_per_res_pop', null), ('2016', 'RO021C1', 'Roman', 'beds_per_1000res_pop', null), ('2016', 'RO022C1', 'Bistrita', 'ons', '107535'), ('2016', 'RO022C1', 'Bistrita', 'beds', '1174'), ('2016', 'RO022C1', 'Bistrita', 'ons_per_res_pop', null), ('2016', 'RO022C1', 'Bistrita', 'beds_per_1000res_pop', null), ('2016', 'RO501C1', 'Constanta', 'ons', '1666702'), ('2016', 'RO501C1', 'Constanta', 'beds', '22575'), ('2016', 'RO501C1', 'Constanta', 'ons_per_res_pop', null), ('2016', 'RO501C1', 'Constanta', 'beds_per_1000res_pop', null), ('2016', 'RO502C1', 'Iasi', 'ons', '496510'), ('2016', 'RO502C1', 'Iasi', 'beds', '3489'), ('2016', 'RO502C1', 'Iasi', 'ons_per_res_pop', null), ('2016', 'RO502C1', 'Iasi', 'beds_per_1000res_pop', null), ('2016', 'RO503C1', 'Galati', 'ons', '129463'), ('2016', 'RO503C1', 'Galati', 'beds', '1756'), ('2016', 'RO503C1', 'Galati', 'ons_per_res_pop', null), ('2016', 'RO503C1', 'Galati', 'beds_per_1000res_pop', null), ('2016', 'RO504C1', 'Brasov', 'ons', '1091694'), ('2016', 'RO504C1', 'Brasov', 'beds', '10024'), ('2016', 'RO504C1', 'Brasov', 'ons_per_res_pop', null), ('2016', 'RO504C1', 'Brasov', 'beds_per_1000res_pop', null), ('2016', 'RO505C1', 'Ploiesti', 'ons', '109130'), ('2016', 'RO505C1', 'Ploiesti', 'beds', '1536'), ('2016', 'RO505C1', 'Ploiesti', 'ons_per_res_pop', null), ('2016', 'RO505C1', 'Ploiesti', 'beds_per_1000res_pop', null), ('2016', 'RO506C1', 'Pitesti', 'ons', '128637'), ('2016', 'RO506C1', 'Pitesti', 'beds', '2368'), ('2016', 'RO506C1', 'Pitesti', 'ons_per_res_pop', null), ('2016', 'RO506C1', 'Pitesti', 'beds_per_1000res_pop', null), ('2016', 'RO507C1', 'Baia Mare', 'ons', '141084'), ('2016', 'RO507C1', 'Baia Mare', 'beds', '2076'), ('2016', 'RO507C1', 'Baia Mare', 'ons_per_res_pop', null), ('2016', 'RO507C1', 'Baia Mare', 'beds_per_1000res_pop', null), ('2016', 'RO508C1', 'Buzau', 'ons', '51889'), ('2016', 'RO508C1', 'Buzau', 'beds', '692'), ('2016', 'RO508C1', 'Buzau', 'ons_per_res_pop', null), ('2016', 'RO508C1', 'Buzau', 'beds_per_1000res_pop', null), ('2016', 'RO509C1', 'Satu Mare', 'ons', '77138'), ('2016', 'RO509C1', 'Satu Mare', 'beds', '960'), ('2016', 'RO509C1', 'Satu Mare', 'ons_per_res_pop', null), ('2016', 'RO509C1', 'Satu Mare', 'beds_per_1000res_pop', null), ('2016', 'RO510C1', 'Botosani', 'ons', '64918'), ('2016', 'RO510C1', 'Botosani', 'beds', '878'), ('2016', 'RO510C1', 'Botosani', 'ons_per_res_pop', null), ('2016', 'RO510C1', 'Botosani', 'beds_per_1000res_pop', null), ('2016', 'RO511C1', 'Râmnicu Vâlcea', 'ons', '98459'), ('2016', 'RO511C1', 'Râmnicu Vâlcea', 'beds', '1054'), ('2016', 'RO511C1', 'Râmnicu Vâlcea', 'ons_per_res_pop', null), ('2016', 'RO511C1', 'Râmnicu Vâlcea', 'beds_per_1000res_pop', null), ('2016', 'RO512C1', 'Suceava', 'ons', '140053'), ('2016', 'RO512C1', 'Suceava', 'beds', '1283'), ('2016', 'RO512C1', 'Suceava', 'ons_per_res_pop', null), ('2016', 'RO512C1', 'Suceava', 'beds_per_1000res_pop', null), ('2016', 'RO513C1', 'Drobeta-Turnu Severin', 'ons', '112593'), ('2016', 'RO513C1', 'Drobeta-Turnu Severin', 'beds', '1240'), ('2016', 'RO513C1', 'Drobeta-Turnu Severin', 'ons_per_res_pop', null), ('2016', 'RO513C1', 'Drobeta-Turnu Severin', 'beds_per_1000res_pop', null), ('2016', 'SI', 'Slovenia', 'ons', '11179879'), ('2016', 'SI', 'Slovenia', 'beds', '119536'), ('2016', 'SI', 'Slovenia', 'ons_per_res_pop', '5.4'), ('2016', 'SI', 'Slovenia', 'beds_per_1000res_pop', '57.9'), ('2016', 'SI001C1', 'Ljubljana', 'ons', '1334603'), ('2016', 'SI001C1', 'Ljubljana', 'beds', '9753'), ('2016', 'SI001C1', 'Ljubljana', 'ons_per_res_pop', '4.6'), ('2016', 'SI001C1', 'Ljubljana', 'beds_per_1000res_pop', '33.8'), ('2016', 'SI002C1', 'Maribor', 'ons', '312404'), ('2016', 'SI002C1', 'Maribor', 'beds', '3958'), ('2016', 'SI002C1', 'Maribor', 'ons_per_res_pop', '2.8'), ('2016', 'SI002C1', 'Maribor', 'beds_per_1000res_pop', '35.4'), ('2016', 'SK', 'Slovakia', 'ons', '14138420'), ('2016', 'SK', 'Slovakia', 'beds', '176956'), ('2016', 'SK', 'Slovakia', 'ons_per_res_pop', '2.6'), ('2016', 'SK', 'Slovakia', 'beds_per_1000res_pop', '32.6'), ('2016', 'SK001C1', 'Bratislava', 'ons', '2603883'), ('2016', 'SK001C1', 'Bratislava', 'beds', '18051'), ('2016', 'SK001C1', 'Bratislava', 'ons_per_res_pop', '6.2'), ('2016', 'SK001C1', 'Bratislava', 'beds_per_1000res_pop', '42.7'), ('2016', 'SK002C1', 'Kosice', 'ons', '350145'), ('2016', 'SK002C1', 'Kosice', 'beds', '5430'), ('2016', 'SK002C1', 'Kosice', 'ons_per_res_pop', '1.5'), ('2016', 'SK002C1', 'Kosice', 'beds_per_1000res_pop', '22.7'), ('2016', 'SK003C1', 'Banská Bystrica', 'ons', '94273'), ('2016', 'SK003C1', 'Banská Bystrica', 'beds', '1467'), ('2016', 'SK003C1', 'Banská Bystrica', 'ons_per_res_pop', '1.2'), ('2016', 'SK003C1', 'Banská Bystrica', 'beds_per_1000res_pop', '18.6'), ('2016', 'SK004C1', 'Nitra', 'ons', '237087'), ('2016', 'SK004C1', 'Nitra', 'beds', '2558'), ('2016', 'SK004C1', 'Nitra', 'ons_per_res_pop', '3.1'), ('2016', 'SK004C1', 'Nitra', 'beds_per_1000res_pop', '32.9'), ('2016', 'SK005C1', 'Presov', 'ons', '80665'), ('2016', 'SK005C1', 'Presov', 'beds', '2120'), ('2016', 'SK005C1', 'Presov', 'ons_per_res_pop', '0.9'), ('2016', 'SK005C1', 'Presov', 'beds_per_1000res_pop', '23.6'), ('2016', 'SK006C1', 'Zilina', 'ons', '216720'), ('2016', 'SK006C1', 'Zilina', 'beds', '2186'), ('2016', 'SK006C1', 'Zilina', 'ons_per_res_pop', '2.7'), ('2016', 'SK006C1', 'Zilina', 'beds_per_1000res_pop', '26.9'), ('2016', 'SK007C1', 'Trnava', 'ons', '119102'), ('2016', 'SK007C1', 'Trnava', 'beds', '1803'), ('2016', 'SK007C1', 'Trnava', 'ons_per_res_pop', '1.8'), ('2016', 'SK007C1', 'Trnava', 'beds_per_1000res_pop', '27.5'), ('2016', 'SK008C1', 'Trencín', 'ons', '109528'), ('2016', 'SK008C1', 'Trencín', 'beds', '1477'), ('2016', 'SK008C1', 'Trencín', 'ons_per_res_pop', '2'), ('2016', 'SK008C1', 'Trencín', 'beds_per_1000res_pop', '26.5'), ('2016', 'FI', 'Finland', 'ons', '20343433'), ('2016', 'FI', 'Finland', 'beds', '162482'), ('2016', 'FI', 'Finland', 'ons_per_res_pop', '3.7'), ('2016', 'FI', 'Finland', 'beds_per_1000res_pop', '29.6'), ('2016', 'FI001C2', 'Helsinki / Helsingfors', 'ons', '3576710'), ('2016', 'FI001C2', 'Helsinki / Helsingfors', 'beds', '19631'), ('2016', 'FI001C2', 'Helsinki / Helsingfors', 'ons_per_res_pop', '5.7'), ('2016', 'FI001C2', 'Helsinki / Helsingfors', 'beds_per_1000res_pop', '31.2'), ('2016', 'FI002C1', 'Tampere / Tammerfors', 'ons', '1030564'), ('2016', 'FI002C1', 'Tampere / Tammerfors', 'beds', '6500'), ('2016', 'FI002C1', 'Tampere / Tammerfors', 'ons_per_res_pop', '4.6'), ('2016', 'FI002C1', 'Tampere / Tammerfors', 'beds_per_1000res_pop', '28.9'), ('2016', 'FI003C1', 'Turku / Åbo', 'ons', '766126'), ('2016', 'FI003C1', 'Turku / Åbo', 'beds', '4828'), ('2016', 'FI003C1', 'Turku / Åbo', 'ons_per_res_pop', '4.1'), ('2016', 'FI003C1', 'Turku / Åbo', 'beds_per_1000res_pop', '26'), ('2016', 'FI004C3', 'Oulu', 'ons', '584068'), ('2016', 'FI004C3', 'Oulu', 'beds', '3175'), ('2016', 'FI004C3', 'Oulu', 'ons_per_res_pop', '2.9'), ('2016', 'FI004C3', 'Oulu', 'beds_per_1000res_pop', '16'), ('2016', 'FI005C1', 'Espoo / Esbo', 'ons', '356528'), ('2016', 'FI005C1', 'Espoo / Esbo', 'beds', '2475'), ('2016', 'FI005C1', 'Espoo / Esbo', 'ons_per_res_pop', '1.3'), ('2016', 'FI005C1', 'Espoo / Esbo', 'beds_per_1000res_pop', '9.2'), ('2016', 'FI006C1', 'Vantaa / Vanda', 'ons', '907999'), ('2016', 'FI006C1', 'Vantaa / Vanda', 'beds', '4606'), ('2016', 'FI006C1', 'Vantaa / Vanda', 'ons_per_res_pop', '4.2'), ('2016', 'FI006C1', 'Vantaa / Vanda', 'beds_per_1000res_pop', '21.5'), ('2016', 'FI007C2', 'Lahti / Lahtis', 'ons', '239916'), ('2016', 'FI007C2', 'Lahti / Lahtis', 'beds', '1671'), ('2016', 'FI007C2', 'Lahti / Lahtis', 'ons_per_res_pop', '2'), ('2016', 'FI007C2', 'Lahti / Lahtis', 'beds_per_1000res_pop', '14.1'), ('2016', 'FI008C3', 'Kuopio', 'ons', '549970'), ('2016', 'FI008C3', 'Kuopio', 'beds', '4318'), ('2016', 'FI008C3', 'Kuopio', 'ons_per_res_pop', '4.7'), ('2016', 'FI008C3', 'Kuopio', 'beds_per_1000res_pop', '36.9'), ('2016', 'FI009C1', 'Jyväskylä', 'ons', '444245'), ('2016', 'FI009C1', 'Jyväskylä', 'beds', '3295'), ('2016', 'FI009C1', 'Jyväskylä', 'ons_per_res_pop', '3.2'), ('2016', 'FI009C1', 'Jyväskylä', 'beds_per_1000res_pop', '24'), ('2016', 'SE', 'Sweden', 'ons', null), ('2016', 'SE', 'Sweden', 'beds', null), ('2016', 'SE', 'Sweden', 'ons_per_res_pop', null), ('2016', 'SE', 'Sweden', 'beds_per_1000res_pop', null), ('2016', 'SE001C1', 'Stockholm', 'ons', null), ('2016', 'SE001C1', 'Stockholm', 'beds', null), ('2016', 'SE001C1', 'Stockholm', 'ons_per_res_pop', null), ('2016', 'SE001C1', 'Stockholm', 'beds_per_1000res_pop', null), ('2016', 'SE002C1', 'Göteborg', 'ons', null), ('2016', 'SE002C1', 'Göteborg', 'beds', null), ('2016', 'SE002C1', 'Göteborg', 'ons_per_res_pop', null), ('2016', 'SE002C1', 'Göteborg', 'beds_per_1000res_pop', null), ('2016', 'SE003C1', 'Malmö', 'ons', null), ('2016', 'SE003C1', 'Malmö', 'beds', null), ('2016', 'SE003C1', 'Malmö', 'ons_per_res_pop', null), ('2016', 'SE003C1', 'Malmö', 'beds_per_1000res_pop', null), ('2016', 'SE004C1', 'Jönköping', 'ons', null), ('2016', 'SE004C1', 'Jönköping', 'beds', null), ('2016', 'SE004C1', 'Jönköping', 'ons_per_res_pop', null), ('2016', 'SE004C1', 'Jönköping', 'beds_per_1000res_pop', null), ('2016', 'SE005C1', 'Umeå', 'ons', null), ('2016', 'SE005C1', 'Umeå', 'beds', null), ('2016', 'SE005C1', 'Umeå', 'ons_per_res_pop', null), ('2016', 'SE005C1', 'Umeå', 'beds_per_1000res_pop', null), ('2016', 'SE006C1', 'Uppsala', 'ons', null), ('2016', 'SE006C1', 'Uppsala', 'beds', null), ('2016', 'SE006C1', 'Uppsala', 'ons_per_res_pop', null), ('2016', 'SE006C1', 'Uppsala', 'beds_per_1000res_pop', null), ('2016', 'SE007C1', 'Linköping', 'ons', null), ('2016', 'SE007C1', 'Linköping', 'beds', null), ('2016', 'SE007C1', 'Linköping', 'ons_per_res_pop', null), ('2016', 'SE007C1', 'Linköping', 'beds_per_1000res_pop', null), ('2016', 'SE008C1', 'Örebro', 'ons', null), ('2016', 'SE008C1', 'Örebro', 'beds', null), ('2016', 'SE008C1', 'Örebro', 'ons_per_res_pop', null), ('2016', 'SE008C1', 'Örebro', 'beds_per_1000res_pop', null), ('2016', 'SE501C1', 'Västerås', 'ons', null), ('2016', 'SE501C1', 'Västerås', 'beds', null), ('2016', 'SE501C1', 'Västerås', 'ons_per_res_pop', null), ('2016', 'SE501C1', 'Västerås', 'beds_per_1000res_pop', null), ('2016', 'SE502C1', 'Norrköping', 'ons', null), ('2016', 'SE502C1', 'Norrköping', 'beds', null), ('2016', 'SE502C1', 'Norrköping', 'ons_per_res_pop', null), ('2016', 'SE502C1', 'Norrköping', 'beds_per_1000res_pop', null), ('2016', 'SE503C1', 'Helsingborg', 'ons', null), ('2016', 'SE503C1', 'Helsingborg', 'beds', null), ('2016', 'SE503C1', 'Helsingborg', 'ons_per_res_pop', null), ('2016', 'SE503C1', 'Helsingborg', 'beds_per_1000res_pop', null), ('2016', 'SE504C1', 'Lund', 'ons', null), ('2016', 'SE504C1', 'Lund', 'beds', null), ('2016', 'SE504C1', 'Lund', 'ons_per_res_pop', null), ('2016', 'SE504C1', 'Lund', 'beds_per_1000res_pop', null), ('2016', 'SE505C1', 'Borås', 'ons', null), ('2016', 'SE505C1', 'Borås', 'beds', null), ('2016', 'SE505C1', 'Borås', 'ons_per_res_pop', null), ('2016', 'SE505C1', 'Borås', 'beds_per_1000res_pop', null), ('2016', 'UK', 'United Kingdom', 'ons', null), ('2016', 'UK', 'United Kingdom', 'beds', null), ('2016', 'UK', 'United Kingdom', 'ons_per_res_pop', null), ('2016', 'UK', 'United Kingdom', 'beds_per_1000res_pop', null), ('2016', 'UK002C1', 'Birmingham', 'ons', null), ('2016', 'UK002C1', 'Birmingham', 'beds', null), ('2016', 'UK002C1', 'Birmingham', 'ons_per_res_pop', null), ('2016', 'UK002C1', 'Birmingham', 'beds_per_1000res_pop', null), ('2016', 'UK003C1', 'Leeds', 'ons', null), ('2016', 'UK003C1', 'Leeds', 'beds', null), ('2016', 'UK003C1', 'Leeds', 'ons_per_res_pop', null), ('2016', 'UK003C1', 'Leeds', 'beds_per_1000res_pop', null), ('2016', 'UK004C1', 'Glasgow City', 'ons', null), ('2016', 'UK004C1', 'Glasgow City', 'beds', null), ('2016', 'UK004C1', 'Glasgow City', 'ons_per_res_pop', null), ('2016', 'UK004C1', 'Glasgow City', 'beds_per_1000res_pop', null), ('2016', 'UK005C1', 'Bradford', 'ons', null), ('2016', 'UK005C1', 'Bradford', 'beds', null), ('2016', 'UK005C1', 'Bradford', 'ons_per_res_pop', null), ('2016', 'UK005C1', 'Bradford', 'beds_per_1000res_pop', null), ('2016', 'UK006C1', 'Liverpool', 'ons', null), ('2016', 'UK006C1', 'Liverpool', 'beds', null), ('2016', 'UK006C1', 'Liverpool', 'ons_per_res_pop', null), ('2016', 'UK006C1', 'Liverpool', 'beds_per_1000res_pop', null), ('2016', 'UK007C1', 'City of Edinburgh', 'ons', null), ('2016', 'UK007C1', 'City of Edinburgh', 'beds', null), ('2016', 'UK007C1', 'City of Edinburgh', 'ons_per_res_pop', null), ('2016', 'UK007C1', 'City of Edinburgh', 'beds_per_1000res_pop', null), ('2016', 'UK008C1', 'Manchester', 'ons', null), ('2016', 'UK008C1', 'Manchester', 'beds', null), ('2016', 'UK008C1', 'Manchester', 'ons_per_res_pop', null), ('2016', 'UK008C1', 'Manchester', 'beds_per_1000res_pop', null), ('2016', 'UK009C1', 'Cardiff', 'ons', null), ('2016', 'UK009C1', 'Cardiff', 'beds', null), ('2016', 'UK009C1', 'Cardiff', 'ons_per_res_pop', null), ('2016', 'UK009C1', 'Cardiff', 'beds_per_1000res_pop', null), ('2016', 'UK010C1', 'Sheffield', 'ons', null), ('2016', 'UK010C1', 'Sheffield', 'beds', null), ('2016', 'UK010C1', 'Sheffield', 'ons_per_res_pop', null), ('2016', 'UK010C1', 'Sheffield', 'beds_per_1000res_pop', null), ('2016', 'UK011C1', 'Bristol', 'ons', null), ('2016', 'UK011C1', 'Bristol', 'beds', null), ('2016', 'UK011C1', 'Bristol', 'ons_per_res_pop', null), ('2016', 'UK011C1', 'Bristol', 'beds_per_1000res_pop', null), ('2016', 'UK012C2', 'Belfast', 'ons', '4433128'), ('2016', 'UK012C2', 'Belfast', 'beds', '9643'), ('2016', 'UK012C2', 'Belfast', 'ons_per_res_pop', '13.1'), ('2016', 'UK012C2', 'Belfast', 'beds_per_1000res_pop', '28.4'), ('2016', 'UK013C1', 'Newcastle upon Tyne', 'ons', null), ('2016', 'UK013C1', 'Newcastle upon Tyne', 'beds', null), ('2016', 'UK013C1', 'Newcastle upon Tyne', 'ons_per_res_pop', null), ('2016', 'UK013C1', 'Newcastle upon Tyne', 'beds_per_1000res_pop', null), ('2016', 'UK014C1', 'Leicester', 'ons', null), ('2016', 'UK014C1', 'Leicester', 'beds', null), ('2016', 'UK014C1', 'Leicester', 'ons_per_res_pop', null), ('2016', 'UK014C1', 'Leicester', 'beds_per_1000res_pop', null), ('2016', 'UK016C1', 'Aberdeen City', 'ons', null), ('2016', 'UK016C1', 'Aberdeen City', 'beds', null), ('2016', 'UK016C1', 'Aberdeen City', 'ons_per_res_pop', null), ('2016', 'UK016C1', 'Aberdeen City', 'beds_per_1000res_pop', null), ('2016', 'UK017C1', 'Cambridge', 'ons', null), ('2016', 'UK017C1', 'Cambridge', 'beds', null), ('2016', 'UK017C1', 'Cambridge', 'ons_per_res_pop', null), ('2016', 'UK017C1', 'Cambridge', 'beds_per_1000res_pop', null), ('2016', 'UK018C1', 'Exeter', 'ons', null), ('2016', 'UK018C1', 'Exeter', 'beds', null), ('2016', 'UK018C1', 'Exeter', 'ons_per_res_pop', null), ('2016', 'UK018C1', 'Exeter', 'beds_per_1000res_pop', null), ('2016', 'UK019C1', 'Lincoln', 'ons', '2111000'), ('2016', 'UK019C1', 'Lincoln', 'beds', '77491'), ('2016', 'UK019C1', 'Lincoln', 'ons_per_res_pop', '21.7'), ('2016', 'UK019C1', 'Lincoln', 'beds_per_1000res_pop', '795.4'), ('2016', 'UK020C1', 'Gravesham', 'ons', null), ('2016', 'UK020C1', 'Gravesham', 'beds', null), ('2016', 'UK020C1', 'Gravesham', 'ons_per_res_pop', null), ('2016', 'UK020C1', 'Gravesham', 'beds_per_1000res_pop', null), ('2016', 'UK021C1', 'Stevenage', 'ons', null), ('2016', 'UK021C1', 'Stevenage', 'beds', null), ('2016', 'UK021C1', 'Stevenage', 'ons_per_res_pop', null), ('2016', 'UK021C1', 'Stevenage', 'beds_per_1000res_pop', null), ('2016', 'UK022C1', 'Wrexham', 'ons', null), ('2016', 'UK022C1', 'Wrexham', 'beds', null), ('2016', 'UK022C1', 'Wrexham', 'ons_per_res_pop', null), ('2016', 'UK022C1', 'Wrexham', 'beds_per_1000res_pop', null), ('2016', 'UK023C1', 'Portsmouth', 'ons', null), ('2016', 'UK023C1', 'Portsmouth', 'beds', null), ('2016', 'UK023C1', 'Portsmouth', 'ons_per_res_pop', null), ('2016', 'UK023C1', 'Portsmouth', 'beds_per_1000res_pop', null), ('2016', 'UK024C1', 'Worcester', 'ons', null), ('2016', 'UK024C1', 'Worcester', 'beds', null), ('2016', 'UK024C1', 'Worcester', 'ons_per_res_pop', null), ('2016', 'UK024C1', 'Worcester', 'beds_per_1000res_pop', null), ('2016', 'UK025C1', 'Coventry', 'ons', null), ('2016', 'UK025C1', 'Coventry', 'beds', null), ('2016', 'UK025C1', 'Coventry', 'ons_per_res_pop', null), ('2016', 'UK025C1', 'Coventry', 'beds_per_1000res_pop', null), ('2016', 'UK026C1', 'Kingston-upon-Hull', 'ons', null), ('2016', 'UK026C1', 'Kingston-upon-Hull', 'beds', null), ('2016', 'UK026C1', 'Kingston-upon-Hull', 'ons_per_res_pop', null), ('2016', 'UK026C1', 'Kingston-upon-Hull', 'beds_per_1000res_pop', null), ('2016', 'UK027C1', 'Stoke-on-trent', 'ons', null), ('2016', 'UK027C1', 'Stoke-on-trent', 'beds', null), ('2016', 'UK027C1', 'Stoke-on-trent', 'ons_per_res_pop', null), ('2016', 'UK027C1', 'Stoke-on-trent', 'beds_per_1000res_pop', null), ('2016', 'UK028C1', 'Wolverhampton', 'ons', null), ('2016', 'UK028C1', 'Wolverhampton', 'beds', null), ('2016', 'UK028C1', 'Wolverhampton', 'ons_per_res_pop', null), ('2016', 'UK028C1', 'Wolverhampton', 'beds_per_1000res_pop', null), ('2016', 'UK029C1', 'Nottingham', 'ons', null), ('2016', 'UK029C1', 'Nottingham', 'beds', null), ('2016', 'UK029C1', 'Nottingham', 'ons_per_res_pop', null), ('2016', 'UK029C1', 'Nottingham', 'beds_per_1000res_pop', null), ('2016', 'UK030C1', 'Wirral', 'ons', '223808'), ('2016', 'UK030C1', 'Wirral', 'beds', '4085'), ('2016', 'UK030C1', 'Wirral', 'ons_per_res_pop', '0.7'), ('2016', 'UK030C1', 'Wirral', 'beds_per_1000res_pop', '12.7'), ('2016', 'UK031C1', 'Bath and North East Somerset', 'ons', null), ('2016', 'UK031C1', 'Bath and North East Somerset', 'beds', null), ('2016', 'UK031C1', 'Bath and North East Somerset', 'ons_per_res_pop', null), ('2016', 'UK031C1', 'Bath and North East Somerset', 'beds_per_1000res_pop', null), ('2016', 'UK032C1', 'Thurrock', 'ons', null), ('2016', 'UK032C1', 'Thurrock', 'beds', null), ('2016', 'UK032C1', 'Thurrock', 'ons_per_res_pop', null), ('2016', 'UK032C1', 'Thurrock', 'beds_per_1000res_pop', null), ('2016', 'UK033C1', 'Guildford', 'ons', null), ('2016', 'UK033C1', 'Guildford', 'beds', null), ('2016', 'UK033C1', 'Guildford', 'ons_per_res_pop', null), ('2016', 'UK033C1', 'Guildford', 'beds_per_1000res_pop', null), ('2016', 'UK034C1', 'Thanet', 'ons', null), ('2016', 'UK034C1', 'Thanet', 'beds', null), ('2016', 'UK034C1', 'Thanet', 'ons_per_res_pop', null), ('2016', 'UK034C1', 'Thanet', 'beds_per_1000res_pop', null), ('2016', 'UK035C1', 'Nuneaton and Bedworth', 'ons', null), ('2016', 'UK035C1', 'Nuneaton and Bedworth', 'beds', null), ('2016', 'UK035C1', 'Nuneaton and Bedworth', 'ons_per_res_pop', null), ('2016', 'UK035C1', 'Nuneaton and Bedworth', 'beds_per_1000res_pop', null), ('2016', 'UK038C1', 'Waveney', 'ons', null), ('2016', 'UK038C1', 'Waveney', 'beds', null), ('2016', 'UK038C1', 'Waveney', 'ons_per_res_pop', null), ('2016', 'UK038C1', 'Waveney', 'beds_per_1000res_pop', null), ('2016', 'UK040C1', 'Tunbridge Wells', 'ons', null), ('2016', 'UK040C1', 'Tunbridge Wells', 'beds', null), ('2016', 'UK040C1', 'Tunbridge Wells', 'ons_per_res_pop', null), ('2016', 'UK040C1', 'Tunbridge Wells', 'beds_per_1000res_pop', null), ('2016', 'UK041C1', 'Ashford', 'ons', null), ('2016', 'UK041C1', 'Ashford', 'beds', null), ('2016', 'UK041C1', 'Ashford', 'ons_per_res_pop', null), ('2016', 'UK041C1', 'Ashford', 'beds_per_1000res_pop', null), ('2016', 'UK043C1', 'East Staffordshire', 'ons', null), ('2016', 'UK043C1', 'East Staffordshire', 'beds', null), ('2016', 'UK043C1', 'East Staffordshire', 'ons_per_res_pop', null), ('2016', 'UK043C1', 'East Staffordshire', 'beds_per_1000res_pop', null), ('2016', 'UK044C1', 'Darlington', 'ons', null), ('2016', 'UK044C1', 'Darlington', 'beds', null), ('2016', 'UK044C1', 'Darlington', 'ons_per_res_pop', null), ('2016', 'UK044C1', 'Darlington', 'beds_per_1000res_pop', null), ('2016', 'UK045C1', 'Worthing', 'ons', null), ('2016', 'UK045C1', 'Worthing', 'beds', null), ('2016', 'UK045C1', 'Worthing', 'ons_per_res_pop', null), ('2016', 'UK045C1', 'Worthing', 'beds_per_1000res_pop', null), ('2016', 'UK046C1', 'Mansfield', 'ons', null), ('2016', 'UK046C1', 'Mansfield', 'beds', null), ('2016', 'UK046C1', 'Mansfield', 'ons_per_res_pop', null), ('2016', 'UK046C1', 'Mansfield', 'beds_per_1000res_pop', null), ('2016', 'UK047C1', 'Chesterfield', 'ons', null), ('2016', 'UK047C1', 'Chesterfield', 'beds', null), ('2016', 'UK047C1', 'Chesterfield', 'ons_per_res_pop', null), ('2016', 'UK047C1', 'Chesterfield', 'beds_per_1000res_pop', null), ('2016', 'UK050C1', 'Burnley', 'ons', null), ('2016', 'UK050C1', 'Burnley', 'beds', null), ('2016', 'UK050C1', 'Burnley', 'ons_per_res_pop', null), ('2016', 'UK050C1', 'Burnley', 'beds_per_1000res_pop', null), ('2016', 'UK051C1', 'Great Yarmouth', 'ons', null), ('2016', 'UK051C1', 'Great Yarmouth', 'beds', null), ('2016', 'UK051C1', 'Great Yarmouth', 'ons_per_res_pop', null), ('2016', 'UK051C1', 'Great Yarmouth', 'beds_per_1000res_pop', null), ('2016', 'UK052C1', 'Woking', 'ons', null), ('2016', 'UK052C1', 'Woking', 'beds', null), ('2016', 'UK052C1', 'Woking', 'ons_per_res_pop', null), ('2016', 'UK052C1', 'Woking', 'beds_per_1000res_pop', null), ('2016', 'UK053C1', 'Hartlepool', 'ons', null), ('2016', 'UK053C1', 'Hartlepool', 'beds', null), ('2016', 'UK053C1', 'Hartlepool', 'ons_per_res_pop', null), ('2016', 'UK053C1', 'Hartlepool', 'beds_per_1000res_pop', null), ('2016', 'UK054C1', 'Cannock Chase', 'ons', null), ('2016', 'UK054C1', 'Cannock Chase', 'beds', null), ('2016', 'UK054C1', 'Cannock Chase', 'ons_per_res_pop', null), ('2016', 'UK054C1', 'Cannock Chase', 'beds_per_1000res_pop', null), ('2016', 'UK055C1', 'Eastbourne', 'ons', null), ('2016', 'UK055C1', 'Eastbourne', 'beds', null), ('2016', 'UK055C1', 'Eastbourne', 'ons_per_res_pop', null), ('2016', 'UK055C1', 'Eastbourne', 'beds_per_1000res_pop', null), ('2016', 'UK056C1', 'Hastings', 'ons', null), ('2016', 'UK056C1', 'Hastings', 'beds', null), ('2016', 'UK056C1', 'Hastings', 'ons_per_res_pop', null), ('2016', 'UK056C1', 'Hastings', 'beds_per_1000res_pop', null), ('2016', 'UK057C1', 'Hyndburn', 'ons', null), ('2016', 'UK057C1', 'Hyndburn', 'beds', null), ('2016', 'UK057C1', 'Hyndburn', 'ons_per_res_pop', null), ('2016', 'UK057C1', 'Hyndburn', 'beds_per_1000res_pop', null), ('2016', 'UK059C1', 'Redditch', 'ons', null), ('2016', 'UK059C1', 'Redditch', 'beds', null), ('2016', 'UK059C1', 'Redditch', 'ons_per_res_pop', null), ('2016', 'UK059C1', 'Redditch', 'beds_per_1000res_pop', null), ('2016', 'UK060C1', 'Tamworth', 'ons', null), ('2016', 'UK060C1', 'Tamworth', 'beds', null), ('2016', 'UK060C1', 'Tamworth', 'ons_per_res_pop', null), ('2016', 'UK060C1', 'Tamworth', 'beds_per_1000res_pop', null), ('2016', 'UK061C1', 'Harlow', 'ons', null), ('2016', 'UK061C1', 'Harlow', 'beds', null), ('2016', 'UK061C1', 'Harlow', 'ons_per_res_pop', null), ('2016', 'UK061C1', 'Harlow', 'beds_per_1000res_pop', null), ('2016', 'UK062C1', 'Halton', 'ons', null), ('2016', 'UK062C1', 'Halton', 'beds', null), ('2016', 'UK062C1', 'Halton', 'ons_per_res_pop', null), ('2016', 'UK062C1', 'Halton', 'beds_per_1000res_pop', null), ('2016', 'UK101C1', 'City of London', 'ons', null), ('2016', 'UK101C1', 'City of London', 'beds', null), ('2016', 'UK101C1', 'City of London', 'ons_per_res_pop', null), ('2016', 'UK101C1', 'City of London', 'beds_per_1000res_pop', null), ('2016', 'UK102C1', 'Barking and Dagenham', 'ons', null), ('2016', 'UK102C1', 'Barking and Dagenham', 'beds', null), ('2016', 'UK102C1', 'Barking and Dagenham', 'ons_per_res_pop', null), ('2016', 'UK102C1', 'Barking and Dagenham', 'beds_per_1000res_pop', null), ('2016', 'UK103C1', 'Barnet', 'ons', null), ('2016', 'UK103C1', 'Barnet', 'beds', null), ('2016', 'UK103C1', 'Barnet', 'ons_per_res_pop', null), ('2016', 'UK103C1', 'Barnet', 'beds_per_1000res_pop', null), ('2016', 'UK104C1', 'Bexley', 'ons', null), ('2016', 'UK104C1', 'Bexley', 'beds', null), ('2016', 'UK104C1', 'Bexley', 'ons_per_res_pop', null), ('2016', 'UK104C1', 'Bexley', 'beds_per_1000res_pop', null), ('2016', 'UK105C1', 'Brent', 'ons', null), ('2016', 'UK105C1', 'Brent', 'beds', null), ('2016', 'UK105C1', 'Brent', 'ons_per_res_pop', null), ('2016', 'UK105C1', 'Brent', 'beds_per_1000res_pop', null), ('2016', 'UK106C1', 'Bromley', 'ons', null), ('2016', 'UK106C1', 'Bromley', 'beds', null), ('2016', 'UK106C1', 'Bromley', 'ons_per_res_pop', null), ('2016', 'UK106C1', 'Bromley', 'beds_per_1000res_pop', null), ('2016', 'UK107C1', 'Camden', 'ons', null), ('2016', 'UK107C1', 'Camden', 'beds', null), ('2016', 'UK107C1', 'Camden', 'ons_per_res_pop', null), ('2016', 'UK107C1', 'Camden', 'beds_per_1000res_pop', null), ('2016', 'UK108C1', 'Croydon', 'ons', null), ('2016', 'UK108C1', 'Croydon', 'beds', null), ('2016', 'UK108C1', 'Croydon', 'ons_per_res_pop', null), ('2016', 'UK108C1', 'Croydon', 'beds_per_1000res_pop', null), ('2016', 'UK109C1', 'Ealing', 'ons', null), ('2016', 'UK109C1', 'Ealing', 'beds', null), ('2016', 'UK109C1', 'Ealing', 'ons_per_res_pop', null), ('2016', 'UK109C1', 'Ealing', 'beds_per_1000res_pop', null), ('2016', 'UK110C1', 'Enfield', 'ons', null), ('2016', 'UK110C1', 'Enfield', 'beds', null), ('2016', 'UK110C1', 'Enfield', 'ons_per_res_pop', null), ('2016', 'UK110C1', 'Enfield', 'beds_per_1000res_pop', null), ('2016', 'UK111C1', 'Greenwich', 'ons', null), ('2016', 'UK111C1', 'Greenwich', 'beds', null), ('2016', 'UK111C1', 'Greenwich', 'ons_per_res_pop', null), ('2016', 'UK111C1', 'Greenwich', 'beds_per_1000res_pop', null), ('2016', 'UK112C1', 'Hackney', 'ons', null), ('2016', 'UK112C1', 'Hackney', 'beds', null), ('2016', 'UK112C1', 'Hackney', 'ons_per_res_pop', null), ('2016', 'UK112C1', 'Hackney', 'beds_per_1000res_pop', null), ('2016', 'UK113C1', 'Hammersmith and Fulham', 'ons', null), ('2016', 'UK113C1', 'Hammersmith and Fulham', 'beds', null), ('2016', 'UK113C1', 'Hammersmith and Fulham', 'ons_per_res_pop', null), ('2016', 'UK113C1', 'Hammersmith and Fulham', 'beds_per_1000res_pop', null), ('2016', 'UK114C1', 'Haringey', 'ons', null), ('2016', 'UK114C1', 'Haringey', 'beds', null), ('2016', 'UK114C1', 'Haringey', 'ons_per_res_pop', null), ('2016', 'UK114C1', 'Haringey', 'beds_per_1000res_pop', null), ('2016', 'UK115C1', 'Harrow', 'ons', null), ('2016', 'UK115C1', 'Harrow', 'beds', null), ('2016', 'UK115C1', 'Harrow', 'ons_per_res_pop', null), ('2016', 'UK115C1', 'Harrow', 'beds_per_1000res_pop', null), ('2016', 'UK116C1', 'Havering', 'ons', null), ('2016', 'UK116C1', 'Havering', 'beds', null), ('2016', 'UK116C1', 'Havering', 'ons_per_res_pop', null), ('2016', 'UK116C1', 'Havering', 'beds_per_1000res_pop', null), ('2016', 'UK117C1', 'Hillingdon', 'ons', null), ('2016', 'UK117C1', 'Hillingdon', 'beds', null), ('2016', 'UK117C1', 'Hillingdon', 'ons_per_res_pop', null), ('2016', 'UK117C1', 'Hillingdon', 'beds_per_1000res_pop', null), ('2016', 'UK118C1', 'Hounslow', 'ons', null), ('2016', 'UK118C1', 'Hounslow', 'beds', null), ('2016', 'UK118C1', 'Hounslow', 'ons_per_res_pop', null), ('2016', 'UK118C1', 'Hounslow', 'beds_per_1000res_pop', null), ('2016', 'UK119C1', 'Islington', 'ons', null), ('2016', 'UK119C1', 'Islington', 'beds', null), ('2016', 'UK119C1', 'Islington', 'ons_per_res_pop', null), ('2016', 'UK119C1', 'Islington', 'beds_per_1000res_pop', null), ('2016', 'UK120C1', 'Kensington and Chelsea', 'ons', null), ('2016', 'UK120C1', 'Kensington and Chelsea', 'beds', null), ('2016', 'UK120C1', 'Kensington and Chelsea', 'ons_per_res_pop', null), ('2016', 'UK120C1', 'Kensington and Chelsea', 'beds_per_1000res_pop', null), ('2016', 'UK121C1', 'Kingston upon Thames', 'ons', null), ('2016', 'UK121C1', 'Kingston upon Thames', 'beds', null), ('2016', 'UK121C1', 'Kingston upon Thames', 'ons_per_res_pop', null), ('2016', 'UK121C1', 'Kingston upon Thames', 'beds_per_1000res_pop', null), ('2016', 'UK122C1', 'Lambeth', 'ons', null), ('2016', 'UK122C1', 'Lambeth', 'beds', null), ('2016', 'UK122C1', 'Lambeth', 'ons_per_res_pop', null), ('2016', 'UK122C1', 'Lambeth', 'beds_per_1000res_pop', null), ('2016', 'UK123C1', 'Lewisham', 'ons', null), ('2016', 'UK123C1', 'Lewisham', 'beds', null), ('2016', 'UK123C1', 'Lewisham', 'ons_per_res_pop', null), ('2016', 'UK123C1', 'Lewisham', 'beds_per_1000res_pop', null), ('2016', 'UK124C1', 'Merton', 'ons', null), ('2016', 'UK124C1', 'Merton', 'beds', null), ('2016', 'UK124C1', 'Merton', 'ons_per_res_pop', null), ('2016', 'UK124C1', 'Merton', 'beds_per_1000res_pop', null), ('2016', 'UK125C1', 'Newham', 'ons', null), ('2016', 'UK125C1', 'Newham', 'beds', null), ('2016', 'UK125C1', 'Newham', 'ons_per_res_pop', null), ('2016', 'UK125C1', 'Newham', 'beds_per_1000res_pop', null), ('2016', 'UK126C1', 'Redbridge', 'ons', null), ('2016', 'UK126C1', 'Redbridge', 'beds', null), ('2016', 'UK126C1', 'Redbridge', 'ons_per_res_pop', null), ('2016', 'UK126C1', 'Redbridge', 'beds_per_1000res_pop', null), ('2016', 'UK127C1', 'Richmond upon Thames', 'ons', null), ('2016', 'UK127C1', 'Richmond upon Thames', 'beds', null), ('2016', 'UK127C1', 'Richmond upon Thames', 'ons_per_res_pop', null), ('2016', 'UK127C1', 'Richmond upon Thames', 'beds_per_1000res_pop', null), ('2016', 'UK128C1', 'Southwark', 'ons', null), ('2016', 'UK128C1', 'Southwark', 'beds', null), ('2016', 'UK128C1', 'Southwark', 'ons_per_res_pop', null), ('2016', 'UK128C1', 'Southwark', 'beds_per_1000res_pop', null), ('2016', 'UK129C1', 'Sutton', 'ons', null), ('2016', 'UK129C1', 'Sutton', 'beds', null), ('2016', 'UK129C1', 'Sutton', 'ons_per_res_pop', null), ('2016', 'UK129C1', 'Sutton', 'beds_per_1000res_pop', null), ('2016', 'UK130C1', 'Tower Hamlets', 'ons', null), ('2016', 'UK130C1', 'Tower Hamlets', 'beds', null), ('2016', 'UK130C1', 'Tower Hamlets', 'ons_per_res_pop', null), ('2016', 'UK130C1', 'Tower Hamlets', 'beds_per_1000res_pop', null), ('2016', 'UK131C1', 'Waltham Forest', 'ons', null), ('2016', 'UK131C1', 'Waltham Forest', 'beds', null), ('2016', 'UK131C1', 'Waltham Forest', 'ons_per_res_pop', null), ('2016', 'UK131C1', 'Waltham Forest', 'beds_per_1000res_pop', null), ('2016', 'UK132C1', 'Wandsworth', 'ons', null), ('2016', 'UK132C1', 'Wandsworth', 'beds', null), ('2016', 'UK132C1', 'Wandsworth', 'ons_per_res_pop', null), ('2016', 'UK132C1', 'Wandsworth', 'beds_per_1000res_pop', null), ('2016', 'UK133C1', 'Westminster', 'ons', null), ('2016', 'UK133C1', 'Westminster', 'beds', null), ('2016', 'UK133C1', 'Westminster', 'ons_per_res_pop', null), ('2016', 'UK133C1', 'Westminster', 'beds_per_1000res_pop', null), ('2016', 'UK501C1', 'Kirklees', 'ons', null), ('2016', 'UK501C1', 'Kirklees', 'beds', null), ('2016', 'UK501C1', 'Kirklees', 'ons_per_res_pop', null), ('2016', 'UK501C1', 'Kirklees', 'beds_per_1000res_pop', null), ('2016', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'ons', null), ('2016', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'beds', null), ('2016', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'ons_per_res_pop', null), ('2016', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'beds_per_1000res_pop', null), ('2016', 'UK503C1', 'Wakefield', 'ons', null), ('2016', 'UK503C1', 'Wakefield', 'beds', null), ('2016', 'UK503C1', 'Wakefield', 'ons_per_res_pop', null), ('2016', 'UK503C1', 'Wakefield', 'beds_per_1000res_pop', null), ('2016', 'UK504C1', 'Dudley', 'ons', null), ('2016', 'UK504C1', 'Dudley', 'beds', null), ('2016', 'UK504C1', 'Dudley', 'ons_per_res_pop', null), ('2016', 'UK504C1', 'Dudley', 'beds_per_1000res_pop', null), ('2016', 'UK505C1', 'Wigan', 'ons', null), ('2016', 'UK505C1', 'Wigan', 'beds', null), ('2016', 'UK505C1', 'Wigan', 'ons_per_res_pop', null), ('2016', 'UK505C1', 'Wigan', 'beds_per_1000res_pop', null), ('2016', 'UK506C1', 'Doncaster', 'ons', null), ('2016', 'UK506C1', 'Doncaster', 'beds', null), ('2016', 'UK506C1', 'Doncaster', 'ons_per_res_pop', null), ('2016', 'UK506C1', 'Doncaster', 'beds_per_1000res_pop', null), ('2016', 'UK507C1', 'Stockport', 'ons', null), ('2016', 'UK507C1', 'Stockport', 'beds', null), ('2016', 'UK507C1', 'Stockport', 'ons_per_res_pop', null), ('2016', 'UK507C1', 'Stockport', 'beds_per_1000res_pop', null), ('2016', 'UK508C1', 'Sefton', 'ons', null), ('2016', 'UK508C1', 'Sefton', 'beds', null), ('2016', 'UK508C1', 'Sefton', 'ons_per_res_pop', null), ('2016', 'UK508C1', 'Sefton', 'beds_per_1000res_pop', null), ('2016', 'UK509C1', 'Sandwell', 'ons', null), ('2016', 'UK509C1', 'Sandwell', 'beds', null), ('2016', 'UK509C1', 'Sandwell', 'ons_per_res_pop', null), ('2016', 'UK509C1', 'Sandwell', 'beds_per_1000res_pop', null), ('2016', 'UK510C1', 'Sunderland', 'ons', null), ('2016', 'UK510C1', 'Sunderland', 'beds', null), ('2016', 'UK510C1', 'Sunderland', 'ons_per_res_pop', null), ('2016', 'UK510C1', 'Sunderland', 'beds_per_1000res_pop', null), ('2016', 'UK511C1', 'Bolton', 'ons', null), ('2016', 'UK511C1', 'Bolton', 'beds', null), ('2016', 'UK511C1', 'Bolton', 'ons_per_res_pop', null), ('2016', 'UK511C1', 'Bolton', 'beds_per_1000res_pop', null), ('2016', 'UK512C1', 'Walsall', 'ons', null), ('2016', 'UK512C1', 'Walsall', 'beds', null), ('2016', 'UK512C1', 'Walsall', 'ons_per_res_pop', null), ('2016', 'UK512C1', 'Walsall', 'beds_per_1000res_pop', null), ('2016', 'UK513C1', 'Medway', 'ons', null), ('2016', 'UK513C1', 'Medway', 'beds', null), ('2016', 'UK513C1', 'Medway', 'ons_per_res_pop', null), ('2016', 'UK513C1', 'Medway', 'beds_per_1000res_pop', null), ('2016', 'UK514C1', 'Rotherham', 'ons', null), ('2016', 'UK514C1', 'Rotherham', 'beds', null), ('2016', 'UK514C1', 'Rotherham', 'ons_per_res_pop', null), ('2016', 'UK514C1', 'Rotherham', 'beds_per_1000res_pop', null), ('2016', 'UK515C1', 'Brighton and Hove', 'ons', null), ('2016', 'UK515C1', 'Brighton and Hove', 'beds', null), ('2016', 'UK515C1', 'Brighton and Hove', 'ons_per_res_pop', null), ('2016', 'UK515C1', 'Brighton and Hove', 'beds_per_1000res_pop', null), ('2016', 'UK516C1', 'Plymouth', 'ons', null), ('2016', 'UK516C1', 'Plymouth', 'beds', null), ('2016', 'UK516C1', 'Plymouth', 'ons_per_res_pop', null), ('2016', 'UK516C1', 'Plymouth', 'beds_per_1000res_pop', null), ('2016', 'UK517C1', 'Swansea', 'ons', null), ('2016', 'UK517C1', 'Swansea', 'beds', null), ('2016', 'UK517C1', 'Swansea', 'ons_per_res_pop', null), ('2016', 'UK517C1', 'Swansea', 'beds_per_1000res_pop', null), ('2016', 'UK518C1', 'Derby', 'ons', null), ('2016', 'UK518C1', 'Derby', 'beds', null), ('2016', 'UK518C1', 'Derby', 'ons_per_res_pop', null), ('2016', 'UK518C1', 'Derby', 'beds_per_1000res_pop', null), ('2016', 'UK519C1', 'Barnsley', 'ons', null), ('2016', 'UK519C1', 'Barnsley', 'beds', null), ('2016', 'UK519C1', 'Barnsley', 'ons_per_res_pop', null), ('2016', 'UK519C1', 'Barnsley', 'beds_per_1000res_pop', null), ('2016', 'UK520C1', 'Southampton', 'ons', null), ('2016', 'UK520C1', 'Southampton', 'beds', null), ('2016', 'UK520C1', 'Southampton', 'ons_per_res_pop', null), ('2016', 'UK520C1', 'Southampton', 'beds_per_1000res_pop', null), ('2016', 'UK521C1', 'Oldham', 'ons', null), ('2016', 'UK521C1', 'Oldham', 'beds', null), ('2016', 'UK521C1', 'Oldham', 'ons_per_res_pop', null), ('2016', 'UK521C1', 'Oldham', 'beds_per_1000res_pop', null), ('2016', 'UK522C1', 'Salford', 'ons', '1650000'), ('2016', 'UK522C1', 'Salford', 'beds', '5958'), ('2016', 'UK522C1', 'Salford', 'ons_per_res_pop', '6.7'), ('2016', 'UK522C1', 'Salford', 'beds_per_1000res_pop', '24.1'), ('2016', 'UK523C1', 'Tameside', 'ons', null), ('2016', 'UK523C1', 'Tameside', 'beds', null), ('2016', 'UK523C1', 'Tameside', 'ons_per_res_pop', null), ('2016', 'UK523C1', 'Tameside', 'beds_per_1000res_pop', null), ('2016', 'UK524C1', 'Trafford', 'ons', null), ('2016', 'UK524C1', 'Trafford', 'beds', null), ('2016', 'UK524C1', 'Trafford', 'ons_per_res_pop', null), ('2016', 'UK524C1', 'Trafford', 'beds_per_1000res_pop', null), ('2016', 'UK525C1', 'Milton Keynes', 'ons', null), ('2016', 'UK525C1', 'Milton Keynes', 'beds', null), ('2016', 'UK525C1', 'Milton Keynes', 'ons_per_res_pop', null), ('2016', 'UK525C1', 'Milton Keynes', 'beds_per_1000res_pop', null), ('2016', 'UK526C1', 'Rochdale', 'ons', null), ('2016', 'UK526C1', 'Rochdale', 'beds', null), ('2016', 'UK526C1', 'Rochdale', 'ons_per_res_pop', null), ('2016', 'UK526C1', 'Rochdale', 'beds_per_1000res_pop', null), ('2016', 'UK527C1', 'Solihull', 'ons', null), ('2016', 'UK527C1', 'Solihull', 'beds', null), ('2016', 'UK527C1', 'Solihull', 'ons_per_res_pop', null), ('2016', 'UK527C1', 'Solihull', 'beds_per_1000res_pop', null), ('2016', 'UK528C1', 'Northampton', 'ons', null), ('2016', 'UK528C1', 'Northampton', 'beds', null), ('2016', 'UK528C1', 'Northampton', 'ons_per_res_pop', null), ('2016', 'UK528C1', 'Northampton', 'beds_per_1000res_pop', null), ('2016', 'UK529C1', 'North Tyneside', 'ons', null), ('2016', 'UK529C1', 'North Tyneside', 'beds', null), ('2016', 'UK529C1', 'North Tyneside', 'ons_per_res_pop', null), ('2016', 'UK529C1', 'North Tyneside', 'beds_per_1000res_pop', null), ('2016', 'UK530C1', 'Gateshead', 'ons', null), ('2016', 'UK530C1', 'Gateshead', 'beds', null), ('2016', 'UK530C1', 'Gateshead', 'ons_per_res_pop', null), ('2016', 'UK530C1', 'Gateshead', 'beds_per_1000res_pop', null), ('2016', 'UK531C1', 'Warrington', 'ons', null), ('2016', 'UK531C1', 'Warrington', 'beds', null), ('2016', 'UK531C1', 'Warrington', 'ons_per_res_pop', null), ('2016', 'UK531C1', 'Warrington', 'beds_per_1000res_pop', null), ('2016', 'UK532C1', 'Luton', 'ons', null), ('2016', 'UK532C1', 'Luton', 'beds', null), ('2016', 'UK532C1', 'Luton', 'ons_per_res_pop', null), ('2016', 'UK532C1', 'Luton', 'beds_per_1000res_pop', null), ('2016', 'UK533C1', 'York', 'ons', null), ('2016', 'UK533C1', 'York', 'beds', null), ('2016', 'UK533C1', 'York', 'ons_per_res_pop', null), ('2016', 'UK533C1', 'York', 'beds_per_1000res_pop', null), ('2016', 'UK534C1', 'Bury', 'ons', null), ('2016', 'UK534C1', 'Bury', 'beds', null), ('2016', 'UK534C1', 'Bury', 'ons_per_res_pop', null), ('2016', 'UK534C1', 'Bury', 'beds_per_1000res_pop', null), ('2016', 'UK535C1', 'Swindon', 'ons', null), ('2016', 'UK535C1', 'Swindon', 'beds', null), ('2016', 'UK535C1', 'Swindon', 'ons_per_res_pop', null), ('2016', 'UK535C1', 'Swindon', 'beds_per_1000res_pop', null), ('2016', 'UK536C1', 'Stockton-on-Tees', 'ons', null), ('2016', 'UK536C1', 'Stockton-on-Tees', 'beds', null), ('2016', 'UK536C1', 'Stockton-on-Tees', 'ons_per_res_pop', null), ('2016', 'UK536C1', 'Stockton-on-Tees', 'beds_per_1000res_pop', null), ('2016', 'UK537C1', 'St. Helens', 'ons', null), ('2016', 'UK537C1', 'St. Helens', 'beds', null), ('2016', 'UK537C1', 'St. Helens', 'ons_per_res_pop', null), ('2016', 'UK537C1', 'St. Helens', 'beds_per_1000res_pop', null), ('2016', 'UK538C1', 'Basildon', 'ons', null), ('2016', 'UK538C1', 'Basildon', 'beds', null), ('2016', 'UK538C1', 'Basildon', 'ons_per_res_pop', null), ('2016', 'UK538C1', 'Basildon', 'beds_per_1000res_pop', null), ('2016', 'UK539C1', 'Bournemouth', 'ons', '4222000'), ('2016', 'UK539C1', 'Bournemouth', 'beds', '13783'), ('2016', 'UK539C1', 'Bournemouth', 'ons_per_res_pop', '21.5'), ('2016', 'UK539C1', 'Bournemouth', 'beds_per_1000res_pop', '70.3'), ('2016', 'UK540C1', 'Wycombe', 'ons', null), ('2016', 'UK540C1', 'Wycombe', 'beds', null), ('2016', 'UK540C1', 'Wycombe', 'ons_per_res_pop', null), ('2016', 'UK540C1', 'Wycombe', 'beds_per_1000res_pop', null), ('2016', 'UK541C1', 'Southend-on-Sea', 'ons', null), ('2016', 'UK541C1', 'Southend-on-Sea', 'beds', null), ('2016', 'UK541C1', 'Southend-on-Sea', 'ons_per_res_pop', null), ('2016', 'UK541C1', 'Southend-on-Sea', 'beds_per_1000res_pop', null), ('2016', 'UK542C1', 'Telford and Wrekin', 'ons', null), ('2016', 'UK542C1', 'Telford and Wrekin', 'beds', null), ('2016', 'UK542C1', 'Telford and Wrekin', 'ons_per_res_pop', null), ('2016', 'UK542C1', 'Telford and Wrekin', 'beds_per_1000res_pop', null), ('2016', 'UK543C1', 'North East Lincolnshire', 'ons', null), ('2016', 'UK543C1', 'North East Lincolnshire', 'beds', null), ('2016', 'UK543C1', 'North East Lincolnshire', 'ons_per_res_pop', null), ('2016', 'UK543C1', 'North East Lincolnshire', 'beds_per_1000res_pop', null), ('2016', 'UK544C1', 'Chelmsford', 'ons', null), ('2016', 'UK544C1', 'Chelmsford', 'beds', null), ('2016', 'UK544C1', 'Chelmsford', 'ons_per_res_pop', null), ('2016', 'UK544C1', 'Chelmsford', 'beds_per_1000res_pop', null), ('2016', 'UK545C1', 'Peterborough', 'ons', null), ('2016', 'UK545C1', 'Peterborough', 'beds', null), ('2016', 'UK545C1', 'Peterborough', 'ons_per_res_pop', null), ('2016', 'UK545C1', 'Peterborough', 'beds_per_1000res_pop', null), ('2016', 'UK546C1', 'Colchester', 'ons', null), ('2016', 'UK546C1', 'Colchester', 'beds', null), ('2016', 'UK546C1', 'Colchester', 'ons_per_res_pop', null), ('2016', 'UK546C1', 'Colchester', 'beds_per_1000res_pop', null), ('2016', 'UK547C1', 'South Tyneside', 'ons', null), ('2016', 'UK547C1', 'South Tyneside', 'beds', null), ('2016', 'UK547C1', 'South Tyneside', 'ons_per_res_pop', null), ('2016', 'UK547C1', 'South Tyneside', 'beds_per_1000res_pop', null), ('2016', 'UK548C1', 'Basingstoke and Deane', 'ons', null), ('2016', 'UK548C1', 'Basingstoke and Deane', 'beds', null), ('2016', 'UK548C1', 'Basingstoke and Deane', 'ons_per_res_pop', null), ('2016', 'UK548C1', 'Basingstoke and Deane', 'beds_per_1000res_pop', null), ('2016', 'UK549C1', 'Bedford', 'ons', null), ('2016', 'UK549C1', 'Bedford', 'beds', null), ('2016', 'UK549C1', 'Bedford', 'ons_per_res_pop', null), ('2016', 'UK549C1', 'Bedford', 'beds_per_1000res_pop', null), ('2016', 'UK550C1', 'Dundee City', 'ons', null), ('2016', 'UK550C1', 'Dundee City', 'beds', null), ('2016', 'UK550C1', 'Dundee City', 'ons_per_res_pop', null), ('2016', 'UK550C1', 'Dundee City', 'beds_per_1000res_pop', null), ('2016', 'UK551C1', 'Falkirk', 'ons', null), ('2016', 'UK551C1', 'Falkirk', 'beds', null), ('2016', 'UK551C1', 'Falkirk', 'ons_per_res_pop', null), ('2016', 'UK551C1', 'Falkirk', 'beds_per_1000res_pop', null), ('2016', 'UK552C1', 'Reading', 'ons', null), ('2016', 'UK552C1', 'Reading', 'beds', null), ('2016', 'UK552C1', 'Reading', 'ons_per_res_pop', null), ('2016', 'UK552C1', 'Reading', 'beds_per_1000res_pop', null), ('2016', 'UK553C1', 'Blackpool', 'ons', null), ('2016', 'UK553C1', 'Blackpool', 'beds', null), ('2016', 'UK553C1', 'Blackpool', 'ons_per_res_pop', null), ('2016', 'UK553C1', 'Blackpool', 'beds_per_1000res_pop', null), ('2016', 'UK554C1', 'Maidstone', 'ons', null), ('2016', 'UK554C1', 'Maidstone', 'beds', null), ('2016', 'UK554C1', 'Maidstone', 'ons_per_res_pop', null), ('2016', 'UK554C1', 'Maidstone', 'beds_per_1000res_pop', null), ('2016', 'UK555C1', 'Poole', 'ons', '1596000'), ('2016', 'UK555C1', 'Poole', 'beds', '6381'), ('2016', 'UK555C1', 'Poole', 'ons_per_res_pop', '10.6'), ('2016', 'UK555C1', 'Poole', 'beds_per_1000res_pop', '42.2'), ('2016', 'UK556C1', 'Dacorum', 'ons', null), ('2016', 'UK556C1', 'Dacorum', 'beds', null), ('2016', 'UK556C1', 'Dacorum', 'ons_per_res_pop', null), ('2016', 'UK556C1', 'Dacorum', 'beds_per_1000res_pop', null), ('2016', 'UK557C1', 'Blackburn with Darwen', 'ons', null), ('2016', 'UK557C1', 'Blackburn with Darwen', 'beds', null), ('2016', 'UK557C1', 'Blackburn with Darwen', 'ons_per_res_pop', null), ('2016', 'UK557C1', 'Blackburn with Darwen', 'beds_per_1000res_pop', null), ('2016', 'UK558C1', 'Newport', 'ons', null), ('2016', 'UK558C1', 'Newport', 'beds', null), ('2016', 'UK558C1', 'Newport', 'ons_per_res_pop', null), ('2016', 'UK558C1', 'Newport', 'beds_per_1000res_pop', null), ('2016', 'UK559C1', 'Middlesbrough', 'ons', null), ('2016', 'UK559C1', 'Middlesbrough', 'beds', null), ('2016', 'UK559C1', 'Middlesbrough', 'ons_per_res_pop', null), ('2016', 'UK559C1', 'Middlesbrough', 'beds_per_1000res_pop', null), ('2016', 'UK560C1', 'Oxford', 'ons', null), ('2016', 'UK560C1', 'Oxford', 'beds', null), ('2016', 'UK560C1', 'Oxford', 'ons_per_res_pop', null), ('2016', 'UK560C1', 'Oxford', 'beds_per_1000res_pop', null), ('2016', 'UK561C1', 'Torbay', 'ons', null), ('2016', 'UK561C1', 'Torbay', 'beds', null), ('2016', 'UK561C1', 'Torbay', 'ons_per_res_pop', null), ('2016', 'UK561C1', 'Torbay', 'beds_per_1000res_pop', null), ('2016', 'UK562C1', 'Preston', 'ons', null), ('2016', 'UK562C1', 'Preston', 'beds', null), ('2016', 'UK562C1', 'Preston', 'ons_per_res_pop', null), ('2016', 'UK562C1', 'Preston', 'beds_per_1000res_pop', null), ('2016', 'UK563C1', 'St Albans', 'ons', null), ('2016', 'UK563C1', 'St Albans', 'beds', null), ('2016', 'UK563C1', 'St Albans', 'ons_per_res_pop', null), ('2016', 'UK563C1', 'St Albans', 'beds_per_1000res_pop', null), ('2016', 'UK564C1', 'Warwick', 'ons', null), ('2016', 'UK564C1', 'Warwick', 'beds', null), ('2016', 'UK564C1', 'Warwick', 'ons_per_res_pop', null), ('2016', 'UK564C1', 'Warwick', 'beds_per_1000res_pop', null), ('2016', 'UK565C1', 'Newcastle-under-Lyme', 'ons', null), ('2016', 'UK565C1', 'Newcastle-under-Lyme', 'beds', null), ('2016', 'UK565C1', 'Newcastle-under-Lyme', 'ons_per_res_pop', null), ('2016', 'UK565C1', 'Newcastle-under-Lyme', 'beds_per_1000res_pop', null), ('2016', 'UK566C1', 'Norwich', 'ons', null), ('2016', 'UK566C1', 'Norwich', 'beds', null), ('2016', 'UK566C1', 'Norwich', 'ons_per_res_pop', null), ('2016', 'UK566C1', 'Norwich', 'beds_per_1000res_pop', null), ('2016', 'UK567C1', 'Slough', 'ons', null), ('2016', 'UK567C1', 'Slough', 'beds', null), ('2016', 'UK567C1', 'Slough', 'ons_per_res_pop', null), ('2016', 'UK567C1', 'Slough', 'beds_per_1000res_pop', null), ('2016', 'UK568C2', 'Cheshire West and Chester', 'ons', null), ('2016', 'UK568C2', 'Cheshire West and Chester', 'beds', null), ('2016', 'UK568C2', 'Cheshire West and Chester', 'ons_per_res_pop', null), ('2016', 'UK568C2', 'Cheshire West and Chester', 'beds_per_1000res_pop', null), ('2016', 'UK569C1', 'Ipswich', 'ons', null), ('2016', 'UK569C1', 'Ipswich', 'beds', null), ('2016', 'UK569C1', 'Ipswich', 'ons_per_res_pop', null), ('2016', 'UK569C1', 'Ipswich', 'beds_per_1000res_pop', null), ('2016', 'UK571C1', 'Cheltenham', 'ons', null), ('2016', 'UK571C1', 'Cheltenham', 'beds', null), ('2016', 'UK571C1', 'Cheltenham', 'ons_per_res_pop', null), ('2016', 'UK571C1', 'Cheltenham', 'beds_per_1000res_pop', null), ('2016', 'UK572C1', 'Gloucester', 'ons', null), ('2016', 'UK572C1', 'Gloucester', 'beds', null), ('2016', 'UK572C1', 'Gloucester', 'ons_per_res_pop', null), ('2016', 'UK572C1', 'Gloucester', 'beds_per_1000res_pop', null), ('2016', 'UK573C1', 'Bracknell Forest', 'ons', null), ('2016', 'UK573C1', 'Bracknell Forest', 'beds', null), ('2016', 'UK573C1', 'Bracknell Forest', 'ons_per_res_pop', null), ('2016', 'UK573C1', 'Bracknell Forest', 'beds_per_1000res_pop', null), ('2016', 'UK575C1', 'Carlisle', 'ons', null), ('2016', 'UK575C1', 'Carlisle', 'beds', null), ('2016', 'UK575C1', 'Carlisle', 'ons_per_res_pop', null), ('2016', 'UK575C1', 'Carlisle', 'beds_per_1000res_pop', null), ('2016', 'UK576C1', 'Crawley', 'ons', null), ('2016', 'UK576C1', 'Crawley', 'beds', null), ('2016', 'UK576C1', 'Crawley', 'ons_per_res_pop', null), ('2016', 'UK576C1', 'Crawley', 'beds_per_1000res_pop', null), ('2016', 'UK577C1', 'Watford', 'ons', null), ('2016', 'UK577C1', 'Watford', 'beds', null), ('2016', 'UK577C1', 'Watford', 'ons_per_res_pop', null), ('2016', 'UK577C1', 'Watford', 'beds_per_1000res_pop', null), ('2016', 'UK578C1', 'Gosport', 'ons', null), ('2016', 'UK578C1', 'Gosport', 'beds', null), ('2016', 'UK578C1', 'Gosport', 'ons_per_res_pop', null), ('2016', 'UK578C1', 'Gosport', 'beds_per_1000res_pop', null), ('2016', 'UK579C1', 'Eastleigh', 'ons', null), ('2016', 'UK579C1', 'Eastleigh', 'beds', null), ('2016', 'UK579C1', 'Eastleigh', 'ons_per_res_pop', null), ('2016', 'UK579C1', 'Eastleigh', 'beds_per_1000res_pop', null), ('2016', 'UK580C1', 'Rushmoor', 'ons', null), ('2016', 'UK580C1', 'Rushmoor', 'beds', null), ('2016', 'UK580C1', 'Rushmoor', 'ons_per_res_pop', null), ('2016', 'UK580C1', 'Rushmoor', 'beds_per_1000res_pop', null), ('2016', 'UK581C1', 'Rugby', 'ons', null), ('2016', 'UK581C1', 'Rugby', 'beds', null), ('2016', 'UK581C1', 'Rugby', 'ons_per_res_pop', null), ('2016', 'UK581C1', 'Rugby', 'beds_per_1000res_pop', null), ('2016', 'UK582C1', 'Corby', 'ons', null), ('2016', 'UK582C1', 'Corby', 'beds', null), ('2016', 'UK582C1', 'Corby', 'ons_per_res_pop', null), ('2016', 'UK582C1', 'Corby', 'beds_per_1000res_pop', null), ('2016', 'UK583C1', 'Kettering', 'ons', null), ('2016', 'UK583C1', 'Kettering', 'beds', null), ('2016', 'UK583C1', 'Kettering', 'ons_per_res_pop', null), ('2016', 'UK583C1', 'Kettering', 'beds_per_1000res_pop', null), ('2016', 'UK584C1', 'Inverclyde (Greenock)', 'ons', null), ('2016', 'UK584C1', 'Inverclyde (Greenock)', 'beds', null), ('2016', 'UK584C1', 'Inverclyde (Greenock)', 'ons_per_res_pop', null), ('2016', 'UK584C1', 'Inverclyde (Greenock)', 'beds_per_1000res_pop', null), ('2016', 'UK585C1', 'Renfrewshire (Paisley)', 'ons', null), ('2016', 'UK585C1', 'Renfrewshire (Paisley)', 'beds', null), ('2016', 'UK585C1', 'Renfrewshire (Paisley)', 'ons_per_res_pop', null), ('2016', 'UK585C1', 'Renfrewshire (Paisley)', 'beds_per_1000res_pop', null), ('2016', 'UK586C1', 'Derry & Strabane Local Government District', 'ons', '909898'), ('2016', 'UK586C1', 'Derry & Strabane Local Government District', 'beds', '2894'), ('2016', 'UK586C1', 'Derry & Strabane Local Government District', 'ons_per_res_pop', '6.1'), ('2016', 'UK586C1', 'Derry & Strabane Local Government District', 'beds_per_1000res_pop', '19.3'), ('2016', 'TR001C1', 'Ankara', 'ons', null), ('2016', 'TR001C1', 'Ankara', 'beds', null), ('2016', 'TR001C1', 'Ankara', 'ons_per_res_pop', null), ('2016', 'TR001C1', 'Ankara', 'beds_per_1000res_pop', null), ('2016', 'TR002C1', 'Adana', 'ons', null), ('2016', 'TR002C1', 'Adana', 'beds', null), ('2016', 'TR002C1', 'Adana', 'ons_per_res_pop', null), ('2016', 'TR002C1', 'Adana', 'beds_per_1000res_pop', null), ('2016', 'TR003C1', 'Antalya', 'ons', null), ('2016', 'TR003C1', 'Antalya', 'beds', null), ('2016', 'TR003C1', 'Antalya', 'ons_per_res_pop', null), ('2016', 'TR003C1', 'Antalya', 'beds_per_1000res_pop', null), ('2016', 'TR004C1', 'Balikesir', 'ons', null), ('2016', 'TR004C1', 'Balikesir', 'beds', null), ('2016', 'TR004C1', 'Balikesir', 'ons_per_res_pop', null), ('2016', 'TR004C1', 'Balikesir', 'beds_per_1000res_pop', null), ('2016', 'TR005C1', 'Bursa', 'ons', null), ('2016', 'TR005C1', 'Bursa', 'beds', null), ('2016', 'TR005C1', 'Bursa', 'ons_per_res_pop', null), ('2016', 'TR005C1', 'Bursa', 'beds_per_1000res_pop', null), ('2016', 'TR006C1', 'Denizli', 'ons', null), ('2016', 'TR006C1', 'Denizli', 'beds', null), ('2016', 'TR006C1', 'Denizli', 'ons_per_res_pop', null), ('2016', 'TR006C1', 'Denizli', 'beds_per_1000res_pop', null), ('2016', 'TR007C1', 'Diyarbakir', 'ons', null), ('2016', 'TR007C1', 'Diyarbakir', 'beds', null), ('2016', 'TR007C1', 'Diyarbakir', 'ons_per_res_pop', null), ('2016', 'TR007C1', 'Diyarbakir', 'beds_per_1000res_pop', null), ('2016', 'TR008C1', 'Edirne', 'ons', null), ('2016', 'TR008C1', 'Edirne', 'beds', null), ('2016', 'TR008C1', 'Edirne', 'ons_per_res_pop', null), ('2016', 'TR008C1', 'Edirne', 'beds_per_1000res_pop', null), ('2016', 'TR009C1', 'Erzurum', 'ons', null), ('2016', 'TR009C1', 'Erzurum', 'beds', null), ('2016', 'TR009C1', 'Erzurum', 'ons_per_res_pop', null), ('2016', 'TR009C1', 'Erzurum', 'beds_per_1000res_pop', null), ('2016', 'TR010C1', 'Gaziantep', 'ons', null), ('2016', 'TR010C1', 'Gaziantep', 'beds', null), ('2016', 'TR010C1', 'Gaziantep', 'ons_per_res_pop', null), ('2016', 'TR010C1', 'Gaziantep', 'beds_per_1000res_pop', null), ('2016', 'TR011C1', 'Hatay', 'ons', null), ('2016', 'TR011C1', 'Hatay', 'beds', null), ('2016', 'TR011C1', 'Hatay', 'ons_per_res_pop', null), ('2016', 'TR011C1', 'Hatay', 'beds_per_1000res_pop', null), ('2016', 'TR012C1', 'Istanbul', 'ons', null), ('2016', 'TR012C1', 'Istanbul', 'beds', null), ('2016', 'TR012C1', 'Istanbul', 'ons_per_res_pop', null), ('2016', 'TR012C1', 'Istanbul', 'beds_per_1000res_pop', null), ('2016', 'TR013C1', 'Izmir', 'ons', null), ('2016', 'TR013C1', 'Izmir', 'beds', null), ('2016', 'TR013C1', 'Izmir', 'ons_per_res_pop', null), ('2016', 'TR013C1', 'Izmir', 'beds_per_1000res_pop', null), ('2016', 'TR014C1', 'Kars', 'ons', null), ('2016', 'TR014C1', 'Kars', 'beds', null), ('2016', 'TR014C1', 'Kars', 'ons_per_res_pop', null), ('2016', 'TR014C1', 'Kars', 'beds_per_1000res_pop', null), ('2016', 'TR015C1', 'Kastamonu', 'ons', null), ('2016', 'TR015C1', 'Kastamonu', 'beds', null), ('2016', 'TR015C1', 'Kastamonu', 'ons_per_res_pop', null), ('2016', 'TR015C1', 'Kastamonu', 'beds_per_1000res_pop', null), ('2016', 'TR016C1', 'Kayseri', 'ons', null), ('2016', 'TR016C1', 'Kayseri', 'beds', null), ('2016', 'TR016C1', 'Kayseri', 'ons_per_res_pop', null), ('2016', 'TR016C1', 'Kayseri', 'beds_per_1000res_pop', null), ('2016', 'TR017C1', 'Kocaeli', 'ons', null), ('2016', 'TR017C1', 'Kocaeli', 'beds', null), ('2016', 'TR017C1', 'Kocaeli', 'ons_per_res_pop', null), ('2016', 'TR017C1', 'Kocaeli', 'beds_per_1000res_pop', null), ('2016', 'TR018C1', 'Konya', 'ons', null), ('2016', 'TR018C1', 'Konya', 'beds', null), ('2016', 'TR018C1', 'Konya', 'ons_per_res_pop', null), ('2016', 'TR018C1', 'Konya', 'beds_per_1000res_pop', null), ('2016', 'TR019C1', 'Malatya', 'ons', null), ('2016', 'TR019C1', 'Malatya', 'beds', null), ('2016', 'TR019C1', 'Malatya', 'ons_per_res_pop', null), ('2016', 'TR019C1', 'Malatya', 'beds_per_1000res_pop', null), ('2016', 'TR020C1', 'Manisa', 'ons', null), ('2016', 'TR020C1', 'Manisa', 'beds', null), ('2016', 'TR020C1', 'Manisa', 'ons_per_res_pop', null), ('2016', 'TR020C1', 'Manisa', 'beds_per_1000res_pop', null), ('2016', 'TR021C1', 'Nevsehir', 'ons', null), ('2016', 'TR021C1', 'Nevsehir', 'beds', null), ('2016', 'TR021C1', 'Nevsehir', 'ons_per_res_pop', null), ('2016', 'TR021C1', 'Nevsehir', 'beds_per_1000res_pop', null), ('2016', 'TR022C1', 'Samsun', 'ons', null), ('2016', 'TR022C1', 'Samsun', 'beds', null), ('2016', 'TR022C1', 'Samsun', 'ons_per_res_pop', null), ('2016', 'TR022C1', 'Samsun', 'beds_per_1000res_pop', null), ('2016', 'TR023C1', 'Siirt', 'ons', null), ('2016', 'TR023C1', 'Siirt', 'beds', null), ('2016', 'TR023C1', 'Siirt', 'ons_per_res_pop', null), ('2016', 'TR023C1', 'Siirt', 'beds_per_1000res_pop', null), ('2016', 'TR024C1', 'Trabzon', 'ons', null), ('2016', 'TR024C1', 'Trabzon', 'beds', null), ('2016', 'TR024C1', 'Trabzon', 'ons_per_res_pop', null), ('2016', 'TR024C1', 'Trabzon', 'beds_per_1000res_pop', null), ('2016', 'TR025C1', 'Van', 'ons', null), ('2016', 'TR025C1', 'Van', 'beds', null), ('2016', 'TR025C1', 'Van', 'ons_per_res_pop', null), ('2016', 'TR025C1', 'Van', 'beds_per_1000res_pop', null), ('2016', 'TR026C1', 'Zonguldak', 'ons', null), ('2016', 'TR026C1', 'Zonguldak', 'beds', null), ('2016', 'TR026C1', 'Zonguldak', 'ons_per_res_pop', null), ('2016', 'TR026C1', 'Zonguldak', 'beds_per_1000res_pop', null), ('2016', 'NO', 'Norge', 'ons', null), ('2016', 'NO', 'Norge', 'beds', null), ('2016', 'NO', 'Norge', 'ons_per_res_pop', null), ('2016', 'NO', 'Norge', 'beds_per_1000res_pop', null), ('2016', 'NO001C1', 'Oslo', 'ons', null), ('2016', 'NO001C1', 'Oslo', 'beds', null), ('2016', 'NO001C1', 'Oslo', 'ons_per_res_pop', null), ('2016', 'NO001C1', 'Oslo', 'beds_per_1000res_pop', null), ('2016', 'NO002C1', 'Bergen', 'ons', null), ('2016', 'NO002C1', 'Bergen', 'beds', null), ('2016', 'NO002C1', 'Bergen', 'ons_per_res_pop', null), ('2016', 'NO002C1', 'Bergen', 'beds_per_1000res_pop', null), ('2016', 'NO003C1', 'Trondheim', 'ons', null), ('2016', 'NO003C1', 'Trondheim', 'beds', null), ('2016', 'NO003C1', 'Trondheim', 'ons_per_res_pop', null), ('2016', 'NO003C1', 'Trondheim', 'beds_per_1000res_pop', null), ('2016', 'NO004C1', 'Stavanger', 'ons', null), ('2016', 'NO004C1', 'Stavanger', 'beds', null), ('2016', 'NO004C1', 'Stavanger', 'ons_per_res_pop', null), ('2016', 'NO004C1', 'Stavanger', 'beds_per_1000res_pop', null), ('2016', 'NO005C1', 'Kristiansand', 'ons', null), ('2016', 'NO005C1', 'Kristiansand', 'beds', null), ('2016', 'NO005C1', 'Kristiansand', 'ons_per_res_pop', null), ('2016', 'NO005C1', 'Kristiansand', 'beds_per_1000res_pop', null), ('2016', 'NO006C1', 'Tromsø', 'ons', null), ('2016', 'NO006C1', 'Tromsø', 'beds', null), ('2016', 'NO006C1', 'Tromsø', 'ons_per_res_pop', null), ('2016', 'NO006C1', 'Tromsø', 'beds_per_1000res_pop', null), ('2016', 'CH', 'Schweiz/Suisse', 'ons', null), ('2016', 'CH', 'Schweiz/Suisse', 'beds', null), ('2016', 'CH', 'Schweiz/Suisse', 'ons_per_res_pop', null), ('2016', 'CH', 'Schweiz/Suisse', 'beds_per_1000res_pop', null), ('2016', 'CH001C1', 'Zürich', 'ons', null), ('2016', 'CH001C1', 'Zürich', 'beds', null), ('2016', 'CH001C1', 'Zürich', 'ons_per_res_pop', null), ('2016', 'CH001C1', 'Zürich', 'beds_per_1000res_pop', null), ('2016', 'CH002C1', 'Genève', 'ons', null), ('2016', 'CH002C1', 'Genève', 'beds', null), ('2016', 'CH002C1', 'Genève', 'ons_per_res_pop', null), ('2016', 'CH002C1', 'Genève', 'beds_per_1000res_pop', null), ('2016', 'CH003C1', 'Basel', 'ons', null), ('2016', 'CH003C1', 'Basel', 'beds', null), ('2016', 'CH003C1', 'Basel', 'ons_per_res_pop', null), ('2016', 'CH003C1', 'Basel', 'beds_per_1000res_pop', null), ('2016', 'CH004C1', 'Bern', 'ons', null), ('2016', 'CH004C1', 'Bern', 'beds', null), ('2016', 'CH004C1', 'Bern', 'ons_per_res_pop', null), ('2016', 'CH004C1', 'Bern', 'beds_per_1000res_pop', null), ('2016', 'CH005C1', 'Lausanne', 'ons', null), ('2016', 'CH005C1', 'Lausanne', 'beds', null), ('2016', 'CH005C1', 'Lausanne', 'ons_per_res_pop', null), ('2016', 'CH005C1', 'Lausanne', 'beds_per_1000res_pop', null), ('2016', 'CH006C1', 'Winterthur', 'ons', null), ('2016', 'CH006C1', 'Winterthur', 'beds', null), ('2016', 'CH006C1', 'Winterthur', 'ons_per_res_pop', null), ('2016', 'CH006C1', 'Winterthur', 'beds_per_1000res_pop', null), ('2016', 'CH007C1', 'St. Gallen', 'ons', null), ('2016', 'CH007C1', 'St. Gallen', 'beds', null), ('2016', 'CH007C1', 'St. Gallen', 'ons_per_res_pop', null), ('2016', 'CH007C1', 'St. Gallen', 'beds_per_1000res_pop', null), ('2016', 'CH008C1', 'Luzern', 'ons', null), ('2016', 'CH008C1', 'Luzern', 'beds', null), ('2016', 'CH008C1', 'Luzern', 'ons_per_res_pop', null), ('2016', 'CH008C1', 'Luzern', 'beds_per_1000res_pop', null), ('2016', 'CH009C2', 'Lugano', 'ons', null), ('2016', 'CH009C2', 'Lugano', 'beds', null), ('2016', 'CH009C2', 'Lugano', 'ons_per_res_pop', null), ('2016', 'CH009C2', 'Lugano', 'beds_per_1000res_pop', null), ('2016', 'CH010C1', 'Biel/Bienne', 'ons', null), ('2016', 'CH010C1', 'Biel/Bienne', 'beds', null), ('2016', 'CH010C1', 'Biel/Bienne', 'ons_per_res_pop', null), ('2016', 'CH010C1', 'Biel/Bienne', 'beds_per_1000res_pop', null), ('2017', 'BE', 'Belgium', 'ons', '35936565'), ('2017', 'BE', 'Belgium', 'beds', '285725'), ('2017', 'BE', 'Belgium', 'ons_per_res_pop', '3.2'), ('2017', 'BE', 'Belgium', 'beds_per_1000res_pop', '25.2'), ('2017', 'BE001C1', 'Bruxelles / Brussel', 'ons', '6335177'), ('2017', 'BE001C1', 'Bruxelles / Brussel', 'beds', '38578'), ('2017', 'BE001C1', 'Bruxelles / Brussel', 'ons_per_res_pop', '5.3'), ('2017', 'BE001C1', 'Bruxelles / Brussel', 'beds_per_1000res_pop', '32.2'), ('2017', 'BE002C1', 'Antwerpen', 'ons', '1889173'), ('2017', 'BE002C1', 'Antwerpen', 'beds', '13154'), ('2017', 'BE002C1', 'Antwerpen', 'ons_per_res_pop', '3.6'), ('2017', 'BE002C1', 'Antwerpen', 'beds_per_1000res_pop', '25.3'), ('2017', 'BE003C1', 'Gent', 'ons', '1020842'), ('2017', 'BE003C1', 'Gent', 'beds', '7072'), ('2017', 'BE003C1', 'Gent', 'ons_per_res_pop', '3.9'), ('2017', 'BE003C1', 'Gent', 'beds_per_1000res_pop', '27.3'), ('2017', 'BE004C1', 'Charleroi', 'ons', '272373'), ('2017', 'BE004C1', 'Charleroi', 'beds', '1554'), ('2017', 'BE004C1', 'Charleroi', 'ons_per_res_pop', '1.3'), ('2017', 'BE004C1', 'Charleroi', 'beds_per_1000res_pop', '7.7'), ('2017', 'BE005C1', 'Liège', 'ons', '471203'), ('2017', 'BE005C1', 'Liège', 'beds', '2779'), ('2017', 'BE005C1', 'Liège', 'ons_per_res_pop', '1.2'), ('2017', 'BE005C1', 'Liège', 'beds_per_1000res_pop', '7.2'), ('2017', 'BE006C1', 'Brugge', 'ons', '1968274'), ('2017', 'BE006C1', 'Brugge', 'beds', '11174'), ('2017', 'BE006C1', 'Brugge', 'ons_per_res_pop', '16.6'), ('2017', 'BE006C1', 'Brugge', 'beds_per_1000res_pop', '94.4'), ('2017', 'BE007C1', 'Namur', 'ons', '174482'), ('2017', 'BE007C1', 'Namur', 'beds', '1332'), ('2017', 'BE007C1', 'Namur', 'ons_per_res_pop', '1.6'), ('2017', 'BE007C1', 'Namur', 'beds_per_1000res_pop', '12'), ('2017', 'BE008C1', 'Leuven', 'ons', '512214'), ('2017', 'BE008C1', 'Leuven', 'beds', '3857'), ('2017', 'BE008C1', 'Leuven', 'ons_per_res_pop', '5.1'), ('2017', 'BE008C1', 'Leuven', 'beds_per_1000res_pop', '38.7'), ('2017', 'BE009C1', 'Mons', 'ons', '190254'), ('2017', 'BE009C1', 'Mons', 'beds', '1438'), ('2017', 'BE009C1', 'Mons', 'ons_per_res_pop', '2'), ('2017', 'BE009C1', 'Mons', 'beds_per_1000res_pop', '15.1'), ('2017', 'BE010C1', 'Kortrijk', 'ons', '240516'), ('2017', 'BE010C1', 'Kortrijk', 'beds', '1726'), ('2017', 'BE010C1', 'Kortrijk', 'ons_per_res_pop', '3.2'), ('2017', 'BE010C1', 'Kortrijk', 'beds_per_1000res_pop', '22.8'), ('2017', 'BE011C1', 'Oostende', 'ons', '1286214'), ('2017', 'BE011C1', 'Oostende', 'beds', '6706'), ('2017', 'BE011C1', 'Oostende', 'ons_per_res_pop', '18.1'), ('2017', 'BE011C1', 'Oostende', 'beds_per_1000res_pop', '94.2'), ('2017', 'BG', 'Bulgaria', 'ons', '26054096'), ('2017', 'BG', 'Bulgaria', 'beds', '348724'), ('2017', 'BG', 'Bulgaria', 'ons_per_res_pop', '3.7'), ('2017', 'BG', 'Bulgaria', 'beds_per_1000res_pop', '49.1'), ('2017', 'BG001C1', 'Sofia', 'ons', '1966516'), ('2017', 'BG001C1', 'Sofia', 'beds', '13288'), ('2017', 'BG001C1', 'Sofia', 'ons_per_res_pop', '1.6'), ('2017', 'BG001C1', 'Sofia', 'beds_per_1000res_pop', '10.8'), ('2017', 'BG002C1', 'Plovdiv', 'ons', '516776'), ('2017', 'BG002C1', 'Plovdiv', 'beds', '4033'), ('2017', 'BG002C1', 'Plovdiv', 'ons_per_res_pop', '1.5'), ('2017', 'BG002C1', 'Plovdiv', 'beds_per_1000res_pop', '11.7'), ('2017', 'BG003C1', 'Varna', 'ons', '5027527'), ('2017', 'BG003C1', 'Varna', 'beds', '59484'), ('2017', 'BG003C1', 'Varna', 'ons_per_res_pop', '15'), ('2017', 'BG003C1', 'Varna', 'beds_per_1000res_pop', '177.5'), ('2017', 'BG004C1', 'Burgas', 'ons', '381291'), ('2017', 'BG004C1', 'Burgas', 'beds', '4472'), ('2017', 'BG004C1', 'Burgas', 'ons_per_res_pop', '1.9'), ('2017', 'BG004C1', 'Burgas', 'beds_per_1000res_pop', '22.1'), ('2017', 'BG005C1', 'Pleven', 'ons', '65962'), ('2017', 'BG005C1', 'Pleven', 'beds', '892'), ('2017', 'BG005C1', 'Pleven', 'ons_per_res_pop', '0.7'), ('2017', 'BG005C1', 'Pleven', 'beds_per_1000res_pop', '9.1'), ('2017', 'BG006C1', 'Ruse', 'ons', '130254'), ('2017', 'BG006C1', 'Ruse', 'beds', '1490'), ('2017', 'BG006C1', 'Ruse', 'ons_per_res_pop', '0.9'), ('2017', 'BG006C1', 'Ruse', 'beds_per_1000res_pop', '10.3'), ('2017', 'BG007C1', 'Vidin', 'ons', '39851'), ('2017', 'BG007C1', 'Vidin', 'beds', '548'), ('2017', 'BG007C1', 'Vidin', 'ons_per_res_pop', '0.9'), ('2017', 'BG007C1', 'Vidin', 'beds_per_1000res_pop', '12.8'), ('2017', 'BG008C1', 'Stara Zagora', 'ons', '128583'), ('2017', 'BG008C1', 'Stara Zagora', 'beds', '1070'), ('2017', 'BG008C1', 'Stara Zagora', 'ons_per_res_pop', '0.9'), ('2017', 'BG008C1', 'Stara Zagora', 'beds_per_1000res_pop', '7.8'), ('2017', 'BG009C1', 'Sliven', 'ons', '58777'), ('2017', 'BG009C1', 'Sliven', 'beds', '1163'), ('2017', 'BG009C1', 'Sliven', 'ons_per_res_pop', '0.7'), ('2017', 'BG009C1', 'Sliven', 'beds_per_1000res_pop', '13.3'), ('2017', 'BG010C1', 'Dobrich', 'ons', '49224'), ('2017', 'BG010C1', 'Dobrich', 'beds', '672'), ('2017', 'BG010C1', 'Dobrich', 'ons_per_res_pop', '0.6'), ('2017', 'BG010C1', 'Dobrich', 'beds_per_1000res_pop', '7.9'), ('2017', 'BG011C1', 'Shumen', 'ons', '62253'), ('2017', 'BG011C1', 'Shumen', 'beds', '1072'), ('2017', 'BG011C1', 'Shumen', 'ons_per_res_pop', '0.8'), ('2017', 'BG011C1', 'Shumen', 'beds_per_1000res_pop', '13.9'), ('2017', 'BG012C1', 'Pernik', 'ons', '12041'), ('2017', 'BG012C1', 'Pernik', 'beds', '260'), ('2017', 'BG012C1', 'Pernik', 'ons_per_res_pop', '0.2'), ('2017', 'BG012C1', 'Pernik', 'beds_per_1000res_pop', '3.5'), ('2017', 'BG013C1', 'Yambol', 'ons', '39694'), ('2017', 'BG013C1', 'Yambol', 'beds', '491'), ('2017', 'BG013C1', 'Yambol', 'ons_per_res_pop', '0.6'), ('2017', 'BG013C1', 'Yambol', 'beds_per_1000res_pop', '7.1'), ('2017', 'BG014C1', 'Haskovo', 'ons', '35022'), ('2017', 'BG014C1', 'Haskovo', 'beds', '379'), ('2017', 'BG014C1', 'Haskovo', 'ons_per_res_pop', '0.5'), ('2017', 'BG014C1', 'Haskovo', 'beds_per_1000res_pop', '5.3'), ('2017', 'BG015C1', 'Pazardzhik', 'ons', '28461'), ('2017', 'BG015C1', 'Pazardzhik', 'beds', '433'), ('2017', 'BG015C1', 'Pazardzhik', 'ons_per_res_pop', '0.4'), ('2017', 'BG015C1', 'Pazardzhik', 'beds_per_1000res_pop', '6.3'), ('2017', 'BG016C1', 'Blagoevgrad', 'ons', '66940'), ('2017', 'BG016C1', 'Blagoevgrad', 'beds', '1142'), ('2017', 'BG016C1', 'Blagoevgrad', 'ons_per_res_pop', '1'), ('2017', 'BG016C1', 'Blagoevgrad', 'beds_per_1000res_pop', '16.4'), ('2017', 'BG017C1', 'Veliko Tarnovo', 'ons', '170395'), ('2017', 'BG017C1', 'Veliko Tarnovo', 'beds', '2099'), ('2017', 'BG017C1', 'Veliko Tarnovo', 'ons_per_res_pop', '2.5'), ('2017', 'BG017C1', 'Veliko Tarnovo', 'beds_per_1000res_pop', '30.7'), ('2017', 'BG018C1', 'Vratsa', 'ons', '62776'), ('2017', 'BG018C1', 'Vratsa', 'beds', '453'), ('2017', 'BG018C1', 'Vratsa', 'ons_per_res_pop', '1.2'), ('2017', 'BG018C1', 'Vratsa', 'beds_per_1000res_pop', '8.5'), ('2017', 'CZ', 'Czech Republic', 'ons', null), ('2017', 'CZ', 'Czech Republic', 'beds', null), ('2017', 'CZ', 'Czech Republic', 'ons_per_res_pop', null), ('2017', 'CZ', 'Czech Republic', 'beds_per_1000res_pop', null), ('2017', 'CZ001C1', 'Praha', 'ons', null), ('2017', 'CZ001C1', 'Praha', 'beds', null), ('2017', 'CZ001C1', 'Praha', 'ons_per_res_pop', null), ('2017', 'CZ001C1', 'Praha', 'beds_per_1000res_pop', null), ('2017', 'CZ002C1', 'Brno', 'ons', null), ('2017', 'CZ002C1', 'Brno', 'beds', null), ('2017', 'CZ002C1', 'Brno', 'ons_per_res_pop', null), ('2017', 'CZ002C1', 'Brno', 'beds_per_1000res_pop', null), ('2017', 'CZ003C1', 'Ostrava', 'ons', null), ('2017', 'CZ003C1', 'Ostrava', 'beds', null), ('2017', 'CZ003C1', 'Ostrava', 'ons_per_res_pop', null), ('2017', 'CZ003C1', 'Ostrava', 'beds_per_1000res_pop', null), ('2017', 'CZ004C1', 'Plzen', 'ons', null), ('2017', 'CZ004C1', 'Plzen', 'beds', null), ('2017', 'CZ004C1', 'Plzen', 'ons_per_res_pop', null), ('2017', 'CZ004C1', 'Plzen', 'beds_per_1000res_pop', null), ('2017', 'CZ005C1', 'Ústí nad Labem', 'ons', null), ('2017', 'CZ005C1', 'Ústí nad Labem', 'beds', null), ('2017', 'CZ005C1', 'Ústí nad Labem', 'ons_per_res_pop', null), ('2017', 'CZ005C1', 'Ústí nad Labem', 'beds_per_1000res_pop', null), ('2017', 'CZ006C1', 'Olomouc', 'ons', null), ('2017', 'CZ006C1', 'Olomouc', 'beds', null), ('2017', 'CZ006C1', 'Olomouc', 'ons_per_res_pop', null), ('2017', 'CZ006C1', 'Olomouc', 'beds_per_1000res_pop', null), ('2017', 'CZ007C1', 'Liberec', 'ons', null), ('2017', 'CZ007C1', 'Liberec', 'beds', null), ('2017', 'CZ007C1', 'Liberec', 'ons_per_res_pop', null), ('2017', 'CZ007C1', 'Liberec', 'beds_per_1000res_pop', null), ('2017', 'CZ008C1', 'Ceské Budejovice', 'ons', null), ('2017', 'CZ008C1', 'Ceské Budejovice', 'beds', null), ('2017', 'CZ008C1', 'Ceské Budejovice', 'ons_per_res_pop', null), ('2017', 'CZ008C1', 'Ceské Budejovice', 'beds_per_1000res_pop', null), ('2017', 'CZ009C1', 'Hradec Králové', 'ons', null), ('2017', 'CZ009C1', 'Hradec Králové', 'beds', null), ('2017', 'CZ009C1', 'Hradec Králové', 'ons_per_res_pop', null), ('2017', 'CZ009C1', 'Hradec Králové', 'beds_per_1000res_pop', null), ('2017', 'CZ010C1', 'Pardubice', 'ons', null), ('2017', 'CZ010C1', 'Pardubice', 'beds', null), ('2017', 'CZ010C1', 'Pardubice', 'ons_per_res_pop', null), ('2017', 'CZ010C1', 'Pardubice', 'beds_per_1000res_pop', null), ('2017', 'CZ011C1', 'Zlín', 'ons', null), ('2017', 'CZ011C1', 'Zlín', 'beds', null), ('2017', 'CZ011C1', 'Zlín', 'ons_per_res_pop', null), ('2017', 'CZ011C1', 'Zlín', 'beds_per_1000res_pop', null), ('2017', 'CZ012C1', 'Kladno', 'ons', null), ('2017', 'CZ012C1', 'Kladno', 'beds', null), ('2017', 'CZ012C1', 'Kladno', 'ons_per_res_pop', null), ('2017', 'CZ012C1', 'Kladno', 'beds_per_1000res_pop', null), ('2017', 'CZ013C1', 'Karlovy Vary', 'ons', null), ('2017', 'CZ013C1', 'Karlovy Vary', 'beds', null), ('2017', 'CZ013C1', 'Karlovy Vary', 'ons_per_res_pop', null), ('2017', 'CZ013C1', 'Karlovy Vary', 'beds_per_1000res_pop', null), ('2017', 'CZ014C1', 'Jihlava', 'ons', null), ('2017', 'CZ014C1', 'Jihlava', 'beds', null), ('2017', 'CZ014C1', 'Jihlava', 'ons_per_res_pop', null), ('2017', 'CZ014C1', 'Jihlava', 'beds_per_1000res_pop', null), ('2017', 'CZ015C1', 'Havírov', 'ons', null), ('2017', 'CZ015C1', 'Havírov', 'beds', null), ('2017', 'CZ015C1', 'Havírov', 'ons_per_res_pop', null), ('2017', 'CZ015C1', 'Havírov', 'beds_per_1000res_pop', null), ('2017', 'CZ016C1', 'Most', 'ons', null), ('2017', 'CZ016C1', 'Most', 'beds', null), ('2017', 'CZ016C1', 'Most', 'ons_per_res_pop', null), ('2017', 'CZ016C1', 'Most', 'beds_per_1000res_pop', null), ('2017', 'CZ017C1', 'Karviná', 'ons', null), ('2017', 'CZ017C1', 'Karviná', 'beds', null), ('2017', 'CZ017C1', 'Karviná', 'ons_per_res_pop', null), ('2017', 'CZ017C1', 'Karviná', 'beds_per_1000res_pop', null), ('2017', 'CZ018C2', 'Chomutov-Jirkov', 'ons', null), ('2017', 'CZ018C2', 'Chomutov-Jirkov', 'beds', null), ('2017', 'CZ018C2', 'Chomutov-Jirkov', 'ons_per_res_pop', null), ('2017', 'CZ018C2', 'Chomutov-Jirkov', 'beds_per_1000res_pop', null), ('2017', 'DK', 'Denmark', 'ons', null), ('2017', 'DK', 'Denmark', 'beds', null), ('2017', 'DK', 'Denmark', 'ons_per_res_pop', null), ('2017', 'DK', 'Denmark', 'beds_per_1000res_pop', null), ('2017', 'DK001C1', 'København', 'ons', null), ('2017', 'DK001C1', 'København', 'beds', null), ('2017', 'DK001C1', 'København', 'ons_per_res_pop', null), ('2017', 'DK001C1', 'København', 'beds_per_1000res_pop', null), ('2017', 'DK002C1', 'Århus', 'ons', null), ('2017', 'DK002C1', 'Århus', 'beds', null), ('2017', 'DK002C1', 'Århus', 'ons_per_res_pop', null), ('2017', 'DK002C1', 'Århus', 'beds_per_1000res_pop', null), ('2017', 'DK003C1', 'Odense', 'ons', null), ('2017', 'DK003C1', 'Odense', 'beds', null), ('2017', 'DK003C1', 'Odense', 'ons_per_res_pop', null), ('2017', 'DK003C1', 'Odense', 'beds_per_1000res_pop', null), ('2017', 'DK004C2', 'Aalborg', 'ons', null), ('2017', 'DK004C2', 'Aalborg', 'beds', null), ('2017', 'DK004C2', 'Aalborg', 'ons_per_res_pop', null), ('2017', 'DK004C2', 'Aalborg', 'beds_per_1000res_pop', null), ('2017', 'DE', 'Germany', 'ons', null), ('2017', 'DE', 'Germany', 'beds', null), ('2017', 'DE', 'Germany', 'ons_per_res_pop', null), ('2017', 'DE', 'Germany', 'beds_per_1000res_pop', null), ('2017', 'DE001C1', 'Berlin', 'ons', null), ('2017', 'DE001C1', 'Berlin', 'beds', null), ('2017', 'DE001C1', 'Berlin', 'ons_per_res_pop', null), ('2017', 'DE001C1', 'Berlin', 'beds_per_1000res_pop', null), ('2017', 'DE002C1', 'Hamburg', 'ons', null), ('2017', 'DE002C1', 'Hamburg', 'beds', null), ('2017', 'DE002C1', 'Hamburg', 'ons_per_res_pop', null), ('2017', 'DE002C1', 'Hamburg', 'beds_per_1000res_pop', null), ('2017', 'DE003C1', 'München', 'ons', null), ('2017', 'DE003C1', 'München', 'beds', null), ('2017', 'DE003C1', 'München', 'ons_per_res_pop', null), ('2017', 'DE003C1', 'München', 'beds_per_1000res_pop', null), ('2017', 'DE004C1', 'Köln', 'ons', null), ('2017', 'DE004C1', 'Köln', 'beds', null), ('2017', 'DE004C1', 'Köln', 'ons_per_res_pop', null), ('2017', 'DE004C1', 'Köln', 'beds_per_1000res_pop', null), ('2017', 'DE005C1', 'Frankfurt am Main', 'ons', null), ('2017', 'DE005C1', 'Frankfurt am Main', 'beds', null), ('2017', 'DE005C1', 'Frankfurt am Main', 'ons_per_res_pop', null), ('2017', 'DE005C1', 'Frankfurt am Main', 'beds_per_1000res_pop', null), ('2017', 'DE006C1', 'Essen', 'ons', null), ('2017', 'DE006C1', 'Essen', 'beds', null), ('2017', 'DE006C1', 'Essen', 'ons_per_res_pop', null), ('2017', 'DE006C1', 'Essen', 'beds_per_1000res_pop', null), ('2017', 'DE007C1', 'Stuttgart', 'ons', null), ('2017', 'DE007C1', 'Stuttgart', 'beds', null), ('2017', 'DE007C1', 'Stuttgart', 'ons_per_res_pop', null), ('2017', 'DE007C1', 'Stuttgart', 'beds_per_1000res_pop', null), ('2017', 'DE008C1', 'Leipzig', 'ons', null), ('2017', 'DE008C1', 'Leipzig', 'beds', null), ('2017', 'DE008C1', 'Leipzig', 'ons_per_res_pop', null), ('2017', 'DE008C1', 'Leipzig', 'beds_per_1000res_pop', null), ('2017', 'DE009C1', 'Dresden', 'ons', null), ('2017', 'DE009C1', 'Dresden', 'beds', null), ('2017', 'DE009C1', 'Dresden', 'ons_per_res_pop', null), ('2017', 'DE009C1', 'Dresden', 'beds_per_1000res_pop', null), ('2017', 'DE010C1', 'Dortmund', 'ons', null), ('2017', 'DE010C1', 'Dortmund', 'beds', null), ('2017', 'DE010C1', 'Dortmund', 'ons_per_res_pop', null), ('2017', 'DE010C1', 'Dortmund', 'beds_per_1000res_pop', null), ('2017', 'DE011C1', 'Düsseldorf', 'ons', null), ('2017', 'DE011C1', 'Düsseldorf', 'beds', null), ('2017', 'DE011C1', 'Düsseldorf', 'ons_per_res_pop', null), ('2017', 'DE011C1', 'Düsseldorf', 'beds_per_1000res_pop', null), ('2017', 'DE012C1', 'Bremen', 'ons', null), ('2017', 'DE012C1', 'Bremen', 'beds', null), ('2017', 'DE012C1', 'Bremen', 'ons_per_res_pop', null), ('2017', 'DE012C1', 'Bremen', 'beds_per_1000res_pop', null), ('2017', 'DE013C1', 'Hannover', 'ons', null), ('2017', 'DE013C1', 'Hannover', 'beds', null), ('2017', 'DE013C1', 'Hannover', 'ons_per_res_pop', null), ('2017', 'DE013C1', 'Hannover', 'beds_per_1000res_pop', null), ('2017', 'DE014C1', 'Nürnberg', 'ons', null), ('2017', 'DE014C1', 'Nürnberg', 'beds', null), ('2017', 'DE014C1', 'Nürnberg', 'ons_per_res_pop', null), ('2017', 'DE014C1', 'Nürnberg', 'beds_per_1000res_pop', null), ('2017', 'DE015C1', 'Bochum', 'ons', null), ('2017', 'DE015C1', 'Bochum', 'beds', null), ('2017', 'DE015C1', 'Bochum', 'ons_per_res_pop', null), ('2017', 'DE015C1', 'Bochum', 'beds_per_1000res_pop', null), ('2017', 'DE017C1', 'Bielefeld', 'ons', null), ('2017', 'DE017C1', 'Bielefeld', 'beds', null), ('2017', 'DE017C1', 'Bielefeld', 'ons_per_res_pop', null), ('2017', 'DE017C1', 'Bielefeld', 'beds_per_1000res_pop', null), ('2017', 'DE018C1', 'Halle an der Saale', 'ons', null), ('2017', 'DE018C1', 'Halle an der Saale', 'beds', null), ('2017', 'DE018C1', 'Halle an der Saale', 'ons_per_res_pop', null), ('2017', 'DE018C1', 'Halle an der Saale', 'beds_per_1000res_pop', null), ('2017', 'DE019C1', 'Magdeburg', 'ons', null), ('2017', 'DE019C1', 'Magdeburg', 'beds', null), ('2017', 'DE019C1', 'Magdeburg', 'ons_per_res_pop', null), ('2017', 'DE019C1', 'Magdeburg', 'beds_per_1000res_pop', null), ('2017', 'DE020C1', 'Wiesbaden', 'ons', null), ('2017', 'DE020C1', 'Wiesbaden', 'beds', null), ('2017', 'DE020C1', 'Wiesbaden', 'ons_per_res_pop', null), ('2017', 'DE020C1', 'Wiesbaden', 'beds_per_1000res_pop', null), ('2017', 'DE021C1', 'Göttingen', 'ons', null), ('2017', 'DE021C1', 'Göttingen', 'beds', null), ('2017', 'DE021C1', 'Göttingen', 'ons_per_res_pop', null), ('2017', 'DE021C1', 'Göttingen', 'beds_per_1000res_pop', null), ('2017', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons', null), ('2017', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds', null), ('2017', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons_per_res_pop', null), ('2017', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds_per_1000res_pop', null), ('2017', 'DE023C1', 'Moers', 'ons', null), ('2017', 'DE023C1', 'Moers', 'beds', null), ('2017', 'DE023C1', 'Moers', 'ons_per_res_pop', null), ('2017', 'DE023C1', 'Moers', 'beds_per_1000res_pop', null), ('2017', 'DE025C1', 'Darmstadt', 'ons', null), ('2017', 'DE025C1', 'Darmstadt', 'beds', null), ('2017', 'DE025C1', 'Darmstadt', 'ons_per_res_pop', null), ('2017', 'DE025C1', 'Darmstadt', 'beds_per_1000res_pop', null), ('2017', 'DE026C1', 'Trier', 'ons', null), ('2017', 'DE026C1', 'Trier', 'beds', null), ('2017', 'DE026C1', 'Trier', 'ons_per_res_pop', null), ('2017', 'DE026C1', 'Trier', 'beds_per_1000res_pop', null), ('2017', 'DE027C1', 'Freiburg im Breisgau', 'ons', null), ('2017', 'DE027C1', 'Freiburg im Breisgau', 'beds', null), ('2017', 'DE027C1', 'Freiburg im Breisgau', 'ons_per_res_pop', null), ('2017', 'DE027C1', 'Freiburg im Breisgau', 'beds_per_1000res_pop', null), ('2017', 'DE028C1', 'Regensburg', 'ons', null), ('2017', 'DE028C1', 'Regensburg', 'beds', null), ('2017', 'DE028C1', 'Regensburg', 'ons_per_res_pop', null), ('2017', 'DE028C1', 'Regensburg', 'beds_per_1000res_pop', null), ('2017', 'DE029C1', 'Frankfurt (Oder)', 'ons', null), ('2017', 'DE029C1', 'Frankfurt (Oder)', 'beds', null), ('2017', 'DE029C1', 'Frankfurt (Oder)', 'ons_per_res_pop', null), ('2017', 'DE029C1', 'Frankfurt (Oder)', 'beds_per_1000res_pop', null), ('2017', 'DE030C1', 'Weimar', 'ons', null), ('2017', 'DE030C1', 'Weimar', 'beds', null), ('2017', 'DE030C1', 'Weimar', 'ons_per_res_pop', null), ('2017', 'DE030C1', 'Weimar', 'beds_per_1000res_pop', null), ('2017', 'DE031C1', 'Schwerin', 'ons', null), ('2017', 'DE031C1', 'Schwerin', 'beds', null), ('2017', 'DE031C1', 'Schwerin', 'ons_per_res_pop', null), ('2017', 'DE031C1', 'Schwerin', 'beds_per_1000res_pop', null), ('2017', 'DE032C1', 'Erfurt', 'ons', null), ('2017', 'DE032C1', 'Erfurt', 'beds', null), ('2017', 'DE032C1', 'Erfurt', 'ons_per_res_pop', null), ('2017', 'DE032C1', 'Erfurt', 'beds_per_1000res_pop', null), ('2017', 'DE033C1', 'Augsburg', 'ons', null), ('2017', 'DE033C1', 'Augsburg', 'beds', null), ('2017', 'DE033C1', 'Augsburg', 'ons_per_res_pop', null), ('2017', 'DE033C1', 'Augsburg', 'beds_per_1000res_pop', null), ('2017', 'DE034C1', 'Bonn', 'ons', null), ('2017', 'DE034C1', 'Bonn', 'beds', null), ('2017', 'DE034C1', 'Bonn', 'ons_per_res_pop', null), ('2017', 'DE034C1', 'Bonn', 'beds_per_1000res_pop', null), ('2017', 'DE035C1', 'Karlsruhe', 'ons', null), ('2017', 'DE035C1', 'Karlsruhe', 'beds', null), ('2017', 'DE035C1', 'Karlsruhe', 'ons_per_res_pop', null), ('2017', 'DE035C1', 'Karlsruhe', 'beds_per_1000res_pop', null), ('2017', 'DE036C1', 'Mönchengladbach', 'ons', null), ('2017', 'DE036C1', 'Mönchengladbach', 'beds', null), ('2017', 'DE036C1', 'Mönchengladbach', 'ons_per_res_pop', null), ('2017', 'DE036C1', 'Mönchengladbach', 'beds_per_1000res_pop', null), ('2017', 'DE037C1', 'Mainz', 'ons', null), ('2017', 'DE037C1', 'Mainz', 'beds', null), ('2017', 'DE037C1', 'Mainz', 'ons_per_res_pop', null), ('2017', 'DE037C1', 'Mainz', 'beds_per_1000res_pop', null), ('2017', 'DE039C1', 'Kiel', 'ons', null), ('2017', 'DE039C1', 'Kiel', 'beds', null), ('2017', 'DE039C1', 'Kiel', 'ons_per_res_pop', null), ('2017', 'DE039C1', 'Kiel', 'beds_per_1000res_pop', null), ('2017', 'DE040C1', 'Saarbrücken', 'ons', null), ('2017', 'DE040C1', 'Saarbrücken', 'beds', null), ('2017', 'DE040C1', 'Saarbrücken', 'ons_per_res_pop', null), ('2017', 'DE040C1', 'Saarbrücken', 'beds_per_1000res_pop', null), ('2017', 'DE041C1', 'Potsdam', 'ons', null), ('2017', 'DE041C1', 'Potsdam', 'beds', null), ('2017', 'DE041C1', 'Potsdam', 'ons_per_res_pop', null), ('2017', 'DE041C1', 'Potsdam', 'beds_per_1000res_pop', null), ('2017', 'DE042C1', 'Koblenz', 'ons', null), ('2017', 'DE042C1', 'Koblenz', 'beds', null), ('2017', 'DE042C1', 'Koblenz', 'ons_per_res_pop', null), ('2017', 'DE042C1', 'Koblenz', 'beds_per_1000res_pop', null), ('2017', 'DE043C1', 'Rostock', 'ons', null), ('2017', 'DE043C1', 'Rostock', 'beds', null), ('2017', 'DE043C1', 'Rostock', 'ons_per_res_pop', null), ('2017', 'DE043C1', 'Rostock', 'beds_per_1000res_pop', null), ('2017', 'DE044C1', 'Kaiserslautern', 'ons', null), ('2017', 'DE044C1', 'Kaiserslautern', 'beds', null), ('2017', 'DE044C1', 'Kaiserslautern', 'ons_per_res_pop', null), ('2017', 'DE044C1', 'Kaiserslautern', 'beds_per_1000res_pop', null), ('2017', 'DE045C1', 'Iserlohn', 'ons', null), ('2017', 'DE045C1', 'Iserlohn', 'beds', null), ('2017', 'DE045C1', 'Iserlohn', 'ons_per_res_pop', null), ('2017', 'DE045C1', 'Iserlohn', 'beds_per_1000res_pop', null), ('2017', 'DE046C1', 'Esslingen am Neckar', 'ons', null), ('2017', 'DE046C1', 'Esslingen am Neckar', 'beds', null), ('2017', 'DE046C1', 'Esslingen am Neckar', 'ons_per_res_pop', null), ('2017', 'DE046C1', 'Esslingen am Neckar', 'beds_per_1000res_pop', null), ('2017', 'DE047C1', 'Hanau', 'ons', null), ('2017', 'DE047C1', 'Hanau', 'beds', null), ('2017', 'DE047C1', 'Hanau', 'ons_per_res_pop', null), ('2017', 'DE047C1', 'Hanau', 'beds_per_1000res_pop', null), ('2017', 'DE048C1', 'Wilhelmshaven', 'ons', null), ('2017', 'DE048C1', 'Wilhelmshaven', 'beds', null), ('2017', 'DE048C1', 'Wilhelmshaven', 'ons_per_res_pop', null), ('2017', 'DE048C1', 'Wilhelmshaven', 'beds_per_1000res_pop', null), ('2017', 'DE049C1', 'Ludwigsburg', 'ons', null), ('2017', 'DE049C1', 'Ludwigsburg', 'beds', null), ('2017', 'DE049C1', 'Ludwigsburg', 'ons_per_res_pop', null), ('2017', 'DE049C1', 'Ludwigsburg', 'beds_per_1000res_pop', null), ('2017', 'DE050C1', 'Tübingen', 'ons', null), ('2017', 'DE050C1', 'Tübingen', 'beds', null), ('2017', 'DE050C1', 'Tübingen', 'ons_per_res_pop', null), ('2017', 'DE050C1', 'Tübingen', 'beds_per_1000res_pop', null), ('2017', 'DE051C1', 'Villingen-Schwenningen', 'ons', null), ('2017', 'DE051C1', 'Villingen-Schwenningen', 'beds', null), ('2017', 'DE051C1', 'Villingen-Schwenningen', 'ons_per_res_pop', null), ('2017', 'DE051C1', 'Villingen-Schwenningen', 'beds_per_1000res_pop', null), ('2017', 'DE052C1', 'Flensburg', 'ons', null), ('2017', 'DE052C1', 'Flensburg', 'beds', null), ('2017', 'DE052C1', 'Flensburg', 'ons_per_res_pop', null), ('2017', 'DE052C1', 'Flensburg', 'beds_per_1000res_pop', null), ('2017', 'DE053C1', 'Marburg', 'ons', null), ('2017', 'DE053C1', 'Marburg', 'beds', null), ('2017', 'DE053C1', 'Marburg', 'ons_per_res_pop', null), ('2017', 'DE053C1', 'Marburg', 'beds_per_1000res_pop', null), ('2017', 'DE054C1', 'Konstanz', 'ons', null), ('2017', 'DE054C1', 'Konstanz', 'beds', null), ('2017', 'DE054C1', 'Konstanz', 'ons_per_res_pop', null), ('2017', 'DE054C1', 'Konstanz', 'beds_per_1000res_pop', null), ('2017', 'DE055C1', 'Neumünster', 'ons', null), ('2017', 'DE055C1', 'Neumünster', 'beds', null), ('2017', 'DE055C1', 'Neumünster', 'ons_per_res_pop', null), ('2017', 'DE055C1', 'Neumünster', 'beds_per_1000res_pop', null), ('2017', 'DE056C1', 'Brandenburg an der Havel', 'ons', null), ('2017', 'DE056C1', 'Brandenburg an der Havel', 'beds', null), ('2017', 'DE056C1', 'Brandenburg an der Havel', 'ons_per_res_pop', null), ('2017', 'DE056C1', 'Brandenburg an der Havel', 'beds_per_1000res_pop', null), ('2017', 'DE057C1', 'Gießen', 'ons', null), ('2017', 'DE057C1', 'Gießen', 'beds', null), ('2017', 'DE057C1', 'Gießen', 'ons_per_res_pop', null), ('2017', 'DE057C1', 'Gießen', 'beds_per_1000res_pop', null), ('2017', 'DE058C1', 'Lüneburg', 'ons', null), ('2017', 'DE058C1', 'Lüneburg', 'beds', null), ('2017', 'DE058C1', 'Lüneburg', 'ons_per_res_pop', null), ('2017', 'DE058C1', 'Lüneburg', 'beds_per_1000res_pop', null), ('2017', 'DE059C1', 'Bayreuth', 'ons', null), ('2017', 'DE059C1', 'Bayreuth', 'beds', null), ('2017', 'DE059C1', 'Bayreuth', 'ons_per_res_pop', null), ('2017', 'DE059C1', 'Bayreuth', 'beds_per_1000res_pop', null), ('2017', 'DE060C1', 'Celle', 'ons', null), ('2017', 'DE060C1', 'Celle', 'beds', null), ('2017', 'DE060C1', 'Celle', 'ons_per_res_pop', null), ('2017', 'DE060C1', 'Celle', 'beds_per_1000res_pop', null), ('2017', 'DE061C1', 'Aschaffenburg', 'ons', null), ('2017', 'DE061C1', 'Aschaffenburg', 'beds', null), ('2017', 'DE061C1', 'Aschaffenburg', 'ons_per_res_pop', null), ('2017', 'DE061C1', 'Aschaffenburg', 'beds_per_1000res_pop', null), ('2017', 'DE062C1', 'Bamberg', 'ons', null), ('2017', 'DE062C1', 'Bamberg', 'beds', null), ('2017', 'DE062C1', 'Bamberg', 'ons_per_res_pop', null), ('2017', 'DE062C1', 'Bamberg', 'beds_per_1000res_pop', null), ('2017', 'DE063C1', 'Plauen', 'ons', null), ('2017', 'DE063C1', 'Plauen', 'beds', null), ('2017', 'DE063C1', 'Plauen', 'ons_per_res_pop', null), ('2017', 'DE063C1', 'Plauen', 'beds_per_1000res_pop', null), ('2017', 'DE064C1', 'Neubrandenburg', 'ons', null), ('2017', 'DE064C1', 'Neubrandenburg', 'beds', null), ('2017', 'DE064C1', 'Neubrandenburg', 'ons_per_res_pop', null), ('2017', 'DE064C1', 'Neubrandenburg', 'beds_per_1000res_pop', null), ('2017', 'DE065C1', 'Fulda', 'ons', null), ('2017', 'DE065C1', 'Fulda', 'beds', null), ('2017', 'DE065C1', 'Fulda', 'ons_per_res_pop', null), ('2017', 'DE065C1', 'Fulda', 'beds_per_1000res_pop', null), ('2017', 'DE066C1', 'Kempten (Allgäu)', 'ons', null), ('2017', 'DE066C1', 'Kempten (Allgäu)', 'beds', null), ('2017', 'DE066C1', 'Kempten (Allgäu)', 'ons_per_res_pop', null), ('2017', 'DE066C1', 'Kempten (Allgäu)', 'beds_per_1000res_pop', null), ('2017', 'DE067C1', 'Landshut', 'ons', null), ('2017', 'DE067C1', 'Landshut', 'beds', null), ('2017', 'DE067C1', 'Landshut', 'ons_per_res_pop', null), ('2017', 'DE067C1', 'Landshut', 'beds_per_1000res_pop', null), ('2017', 'DE068C1', 'Sindelfingen', 'ons', null), ('2017', 'DE068C1', 'Sindelfingen', 'beds', null), ('2017', 'DE068C1', 'Sindelfingen', 'ons_per_res_pop', null), ('2017', 'DE068C1', 'Sindelfingen', 'beds_per_1000res_pop', null), ('2017', 'DE069C1', 'Rosenheim', 'ons', null), ('2017', 'DE069C1', 'Rosenheim', 'beds', null), ('2017', 'DE069C1', 'Rosenheim', 'ons_per_res_pop', null), ('2017', 'DE069C1', 'Rosenheim', 'beds_per_1000res_pop', null), ('2017', 'DE070C1', 'Frankenthal (Pfalz)', 'ons', null), ('2017', 'DE070C1', 'Frankenthal (Pfalz)', 'beds', null), ('2017', 'DE070C1', 'Frankenthal (Pfalz)', 'ons_per_res_pop', null), ('2017', 'DE070C1', 'Frankenthal (Pfalz)', 'beds_per_1000res_pop', null), ('2017', 'DE071C1', 'Stralsund', 'ons', null), ('2017', 'DE071C1', 'Stralsund', 'beds', null), ('2017', 'DE071C1', 'Stralsund', 'ons_per_res_pop', null), ('2017', 'DE071C1', 'Stralsund', 'beds_per_1000res_pop', null), ('2017', 'DE072C1', 'Friedrichshafen', 'ons', null), ('2017', 'DE072C1', 'Friedrichshafen', 'beds', null), ('2017', 'DE072C1', 'Friedrichshafen', 'ons_per_res_pop', null), ('2017', 'DE072C1', 'Friedrichshafen', 'beds_per_1000res_pop', null), ('2017', 'DE073C1', 'Offenburg', 'ons', null), ('2017', 'DE073C1', 'Offenburg', 'beds', null), ('2017', 'DE073C1', 'Offenburg', 'ons_per_res_pop', null), ('2017', 'DE073C1', 'Offenburg', 'beds_per_1000res_pop', null), ('2017', 'DE074C1', 'Görlitz', 'ons', null), ('2017', 'DE074C1', 'Görlitz', 'beds', null), ('2017', 'DE074C1', 'Görlitz', 'ons_per_res_pop', null), ('2017', 'DE074C1', 'Görlitz', 'beds_per_1000res_pop', null), ('2017', 'DE075C1', 'Sankt Augustin', 'ons', null), ('2017', 'DE075C1', 'Sankt Augustin', 'beds', null), ('2017', 'DE075C1', 'Sankt Augustin', 'ons_per_res_pop', null), ('2017', 'DE075C1', 'Sankt Augustin', 'beds_per_1000res_pop', null), ('2017', 'DE076C1', 'Neu-Ulm', 'ons', null), ('2017', 'DE076C1', 'Neu-Ulm', 'beds', null), ('2017', 'DE076C1', 'Neu-Ulm', 'ons_per_res_pop', null), ('2017', 'DE076C1', 'Neu-Ulm', 'beds_per_1000res_pop', null), ('2017', 'DE077C1', 'Schweinfurt', 'ons', null), ('2017', 'DE077C1', 'Schweinfurt', 'beds', null), ('2017', 'DE077C1', 'Schweinfurt', 'ons_per_res_pop', null), ('2017', 'DE077C1', 'Schweinfurt', 'beds_per_1000res_pop', null), ('2017', 'DE078C1', 'Greifswald', 'ons', null), ('2017', 'DE078C1', 'Greifswald', 'beds', null), ('2017', 'DE078C1', 'Greifswald', 'ons_per_res_pop', null), ('2017', 'DE078C1', 'Greifswald', 'beds_per_1000res_pop', null), ('2017', 'DE079C1', 'Wetzlar', 'ons', null), ('2017', 'DE079C1', 'Wetzlar', 'beds', null), ('2017', 'DE079C1', 'Wetzlar', 'ons_per_res_pop', null), ('2017', 'DE079C1', 'Wetzlar', 'beds_per_1000res_pop', null), ('2017', 'DE080C1', 'Speyer', 'ons', null), ('2017', 'DE080C1', 'Speyer', 'beds', null), ('2017', 'DE080C1', 'Speyer', 'ons_per_res_pop', null), ('2017', 'DE080C1', 'Speyer', 'beds_per_1000res_pop', null), ('2017', 'DE081C1', 'Passau', 'ons', null), ('2017', 'DE081C1', 'Passau', 'beds', null), ('2017', 'DE081C1', 'Passau', 'ons_per_res_pop', null), ('2017', 'DE081C1', 'Passau', 'beds_per_1000res_pop', null), ('2017', 'DE082C1', 'Dessau-Roßlau', 'ons', null), ('2017', 'DE082C1', 'Dessau-Roßlau', 'beds', null), ('2017', 'DE082C1', 'Dessau-Roßlau', 'ons_per_res_pop', null), ('2017', 'DE082C1', 'Dessau-Roßlau', 'beds_per_1000res_pop', null), ('2017', 'DE501C1', 'Duisburg', 'ons', null), ('2017', 'DE501C1', 'Duisburg', 'beds', null), ('2017', 'DE501C1', 'Duisburg', 'ons_per_res_pop', null), ('2017', 'DE501C1', 'Duisburg', 'beds_per_1000res_pop', null), ('2017', 'DE502C1', 'Mannheim', 'ons', null), ('2017', 'DE502C1', 'Mannheim', 'beds', null), ('2017', 'DE502C1', 'Mannheim', 'ons_per_res_pop', null), ('2017', 'DE502C1', 'Mannheim', 'beds_per_1000res_pop', null), ('2017', 'DE503C1', 'Gelsenkirchen', 'ons', null), ('2017', 'DE503C1', 'Gelsenkirchen', 'beds', null), ('2017', 'DE503C1', 'Gelsenkirchen', 'ons_per_res_pop', null), ('2017', 'DE503C1', 'Gelsenkirchen', 'beds_per_1000res_pop', null), ('2017', 'DE504C1', 'Münster', 'ons', null), ('2017', 'DE504C1', 'Münster', 'beds', null), ('2017', 'DE504C1', 'Münster', 'ons_per_res_pop', null), ('2017', 'DE504C1', 'Münster', 'beds_per_1000res_pop', null), ('2017', 'DE505C1', 'Chemnitz', 'ons', null), ('2017', 'DE505C1', 'Chemnitz', 'beds', null), ('2017', 'DE505C1', 'Chemnitz', 'ons_per_res_pop', null), ('2017', 'DE505C1', 'Chemnitz', 'beds_per_1000res_pop', null), ('2017', 'DE506C1', 'Braunschweig', 'ons', null), ('2017', 'DE506C1', 'Braunschweig', 'beds', null), ('2017', 'DE506C1', 'Braunschweig', 'ons_per_res_pop', null), ('2017', 'DE506C1', 'Braunschweig', 'beds_per_1000res_pop', null), ('2017', 'DE507C1', 'Aachen', 'ons', null), ('2017', 'DE507C1', 'Aachen', 'beds', null), ('2017', 'DE507C1', 'Aachen', 'ons_per_res_pop', null), ('2017', 'DE507C1', 'Aachen', 'beds_per_1000res_pop', null), ('2017', 'DE508C1', 'Krefeld', 'ons', null), ('2017', 'DE508C1', 'Krefeld', 'beds', null), ('2017', 'DE508C1', 'Krefeld', 'ons_per_res_pop', null), ('2017', 'DE508C1', 'Krefeld', 'beds_per_1000res_pop', null), ('2017', 'DE509C1', 'Oberhausen', 'ons', null), ('2017', 'DE509C1', 'Oberhausen', 'beds', null), ('2017', 'DE509C1', 'Oberhausen', 'ons_per_res_pop', null), ('2017', 'DE509C1', 'Oberhausen', 'beds_per_1000res_pop', null), ('2017', 'DE510C1', 'Lübeck', 'ons', null), ('2017', 'DE510C1', 'Lübeck', 'beds', null), ('2017', 'DE510C1', 'Lübeck', 'ons_per_res_pop', null), ('2017', 'DE510C1', 'Lübeck', 'beds_per_1000res_pop', null), ('2017', 'DE511C1', 'Hagen', 'ons', null), ('2017', 'DE511C1', 'Hagen', 'beds', null), ('2017', 'DE511C1', 'Hagen', 'ons_per_res_pop', null), ('2017', 'DE511C1', 'Hagen', 'beds_per_1000res_pop', null), ('2017', 'DE513C1', 'Kassel', 'ons', null), ('2017', 'DE513C1', 'Kassel', 'beds', null), ('2017', 'DE513C1', 'Kassel', 'ons_per_res_pop', null), ('2017', 'DE513C1', 'Kassel', 'beds_per_1000res_pop', null), ('2017', 'DE514C1', 'Hamm', 'ons', null), ('2017', 'DE514C1', 'Hamm', 'beds', null), ('2017', 'DE514C1', 'Hamm', 'ons_per_res_pop', null), ('2017', 'DE514C1', 'Hamm', 'beds_per_1000res_pop', null), ('2017', 'DE515C1', 'Herne', 'ons', null), ('2017', 'DE515C1', 'Herne', 'beds', null), ('2017', 'DE515C1', 'Herne', 'ons_per_res_pop', null), ('2017', 'DE515C1', 'Herne', 'beds_per_1000res_pop', null), ('2017', 'DE516C1', 'Solingen', 'ons', null), ('2017', 'DE516C1', 'Solingen', 'beds', null), ('2017', 'DE516C1', 'Solingen', 'ons_per_res_pop', null), ('2017', 'DE516C1', 'Solingen', 'beds_per_1000res_pop', null), ('2017', 'DE517C1', 'Osnabrück', 'ons', null), ('2017', 'DE517C1', 'Osnabrück', 'beds', null), ('2017', 'DE517C1', 'Osnabrück', 'ons_per_res_pop', null), ('2017', 'DE517C1', 'Osnabrück', 'beds_per_1000res_pop', null), ('2017', 'DE518C1', 'Ludwigshafen am Rhein', 'ons', null), ('2017', 'DE518C1', 'Ludwigshafen am Rhein', 'beds', null), ('2017', 'DE518C1', 'Ludwigshafen am Rhein', 'ons_per_res_pop', null), ('2017', 'DE518C1', 'Ludwigshafen am Rhein', 'beds_per_1000res_pop', null), ('2017', 'DE519C1', 'Leverkusen', 'ons', null), ('2017', 'DE519C1', 'Leverkusen', 'beds', null), ('2017', 'DE519C1', 'Leverkusen', 'ons_per_res_pop', null), ('2017', 'DE519C1', 'Leverkusen', 'beds_per_1000res_pop', null), ('2017', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons', null), ('2017', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds', null), ('2017', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons_per_res_pop', null), ('2017', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds_per_1000res_pop', null), ('2017', 'DE521C1', 'Neuss', 'ons', null), ('2017', 'DE521C1', 'Neuss', 'beds', null), ('2017', 'DE521C1', 'Neuss', 'ons_per_res_pop', null), ('2017', 'DE521C1', 'Neuss', 'beds_per_1000res_pop', null), ('2017', 'DE522C1', 'Heidelberg', 'ons', null), ('2017', 'DE522C1', 'Heidelberg', 'beds', null), ('2017', 'DE522C1', 'Heidelberg', 'ons_per_res_pop', null), ('2017', 'DE522C1', 'Heidelberg', 'beds_per_1000res_pop', null), ('2017', 'DE523C1', 'Paderborn', 'ons', null), ('2017', 'DE523C1', 'Paderborn', 'beds', null), ('2017', 'DE523C1', 'Paderborn', 'ons_per_res_pop', null), ('2017', 'DE523C1', 'Paderborn', 'beds_per_1000res_pop', null), ('2017', 'DE524C1', 'Würzburg', 'ons', null), ('2017', 'DE524C1', 'Würzburg', 'beds', null), ('2017', 'DE524C1', 'Würzburg', 'ons_per_res_pop', null), ('2017', 'DE524C1', 'Würzburg', 'beds_per_1000res_pop', null), ('2017', 'DE525C1', 'Recklinghausen', 'ons', null), ('2017', 'DE525C1', 'Recklinghausen', 'beds', null), ('2017', 'DE525C1', 'Recklinghausen', 'ons_per_res_pop', null), ('2017', 'DE525C1', 'Recklinghausen', 'beds_per_1000res_pop', null), ('2017', 'DE526C1', 'Wolfsburg', 'ons', null), ('2017', 'DE526C1', 'Wolfsburg', 'beds', null), ('2017', 'DE526C1', 'Wolfsburg', 'ons_per_res_pop', null), ('2017', 'DE526C1', 'Wolfsburg', 'beds_per_1000res_pop', null), ('2017', 'DE527C1', 'Bremerhaven', 'ons', null), ('2017', 'DE527C1', 'Bremerhaven', 'beds', null), ('2017', 'DE527C1', 'Bremerhaven', 'ons_per_res_pop', null), ('2017', 'DE527C1', 'Bremerhaven', 'beds_per_1000res_pop', null), ('2017', 'DE528C1', 'Bottrop', 'ons', null), ('2017', 'DE528C1', 'Bottrop', 'beds', null), ('2017', 'DE528C1', 'Bottrop', 'ons_per_res_pop', null), ('2017', 'DE528C1', 'Bottrop', 'beds_per_1000res_pop', null), ('2017', 'DE529C1', 'Heilbronn', 'ons', null), ('2017', 'DE529C1', 'Heilbronn', 'beds', null), ('2017', 'DE529C1', 'Heilbronn', 'ons_per_res_pop', null), ('2017', 'DE529C1', 'Heilbronn', 'beds_per_1000res_pop', null), ('2017', 'DE530C1', 'Remscheid', 'ons', null), ('2017', 'DE530C1', 'Remscheid', 'beds', null), ('2017', 'DE530C1', 'Remscheid', 'ons_per_res_pop', null), ('2017', 'DE530C1', 'Remscheid', 'beds_per_1000res_pop', null), ('2017', 'DE531C1', 'Offenbach am Main', 'ons', null), ('2017', 'DE531C1', 'Offenbach am Main', 'beds', null), ('2017', 'DE531C1', 'Offenbach am Main', 'ons_per_res_pop', null), ('2017', 'DE531C1', 'Offenbach am Main', 'beds_per_1000res_pop', null), ('2017', 'DE532C1', 'Ulm', 'ons', null), ('2017', 'DE532C1', 'Ulm', 'beds', null), ('2017', 'DE532C1', 'Ulm', 'ons_per_res_pop', null), ('2017', 'DE532C1', 'Ulm', 'beds_per_1000res_pop', null), ('2017', 'DE533C1', 'Pforzheim', 'ons', null), ('2017', 'DE533C1', 'Pforzheim', 'beds', null), ('2017', 'DE533C1', 'Pforzheim', 'ons_per_res_pop', null), ('2017', 'DE533C1', 'Pforzheim', 'beds_per_1000res_pop', null), ('2017', 'DE534C1', 'Ingolstadt', 'ons', null), ('2017', 'DE534C1', 'Ingolstadt', 'beds', null), ('2017', 'DE534C1', 'Ingolstadt', 'ons_per_res_pop', null), ('2017', 'DE534C1', 'Ingolstadt', 'beds_per_1000res_pop', null), ('2017', 'DE535C1', 'Gera', 'ons', null), ('2017', 'DE535C1', 'Gera', 'beds', null), ('2017', 'DE535C1', 'Gera', 'ons_per_res_pop', null), ('2017', 'DE535C1', 'Gera', 'beds_per_1000res_pop', null), ('2017', 'DE536C1', 'Salzgitter', 'ons', null), ('2017', 'DE536C1', 'Salzgitter', 'beds', null), ('2017', 'DE536C1', 'Salzgitter', 'ons_per_res_pop', null), ('2017', 'DE536C1', 'Salzgitter', 'beds_per_1000res_pop', null), ('2017', 'DE537C1', 'Reutlingen', 'ons', null), ('2017', 'DE537C1', 'Reutlingen', 'beds', null), ('2017', 'DE537C1', 'Reutlingen', 'ons_per_res_pop', null), ('2017', 'DE537C1', 'Reutlingen', 'beds_per_1000res_pop', null), ('2017', 'DE538C1', 'Fürth', 'ons', null), ('2017', 'DE538C1', 'Fürth', 'beds', null), ('2017', 'DE538C1', 'Fürth', 'ons_per_res_pop', null), ('2017', 'DE538C1', 'Fürth', 'beds_per_1000res_pop', null), ('2017', 'DE539C1', 'Cottbus', 'ons', null), ('2017', 'DE539C1', 'Cottbus', 'beds', null), ('2017', 'DE539C1', 'Cottbus', 'ons_per_res_pop', null), ('2017', 'DE539C1', 'Cottbus', 'beds_per_1000res_pop', null), ('2017', 'DE540C1', 'Siegen', 'ons', null), ('2017', 'DE540C1', 'Siegen', 'beds', null), ('2017', 'DE540C1', 'Siegen', 'ons_per_res_pop', null), ('2017', 'DE540C1', 'Siegen', 'beds_per_1000res_pop', null), ('2017', 'DE541C1', 'Bergisch Gladbach', 'ons', null), ('2017', 'DE541C1', 'Bergisch Gladbach', 'beds', null), ('2017', 'DE541C1', 'Bergisch Gladbach', 'ons_per_res_pop', null), ('2017', 'DE541C1', 'Bergisch Gladbach', 'beds_per_1000res_pop', null), ('2017', 'DE542C1', 'Hildesheim', 'ons', null), ('2017', 'DE542C1', 'Hildesheim', 'beds', null), ('2017', 'DE542C1', 'Hildesheim', 'ons_per_res_pop', null), ('2017', 'DE542C1', 'Hildesheim', 'beds_per_1000res_pop', null), ('2017', 'DE543C1', 'Witten', 'ons', null), ('2017', 'DE543C1', 'Witten', 'beds', null), ('2017', 'DE543C1', 'Witten', 'ons_per_res_pop', null), ('2017', 'DE543C1', 'Witten', 'beds_per_1000res_pop', null), ('2017', 'DE544C1', 'Zwickau', 'ons', null), ('2017', 'DE544C1', 'Zwickau', 'beds', null), ('2017', 'DE544C1', 'Zwickau', 'ons_per_res_pop', null), ('2017', 'DE544C1', 'Zwickau', 'beds_per_1000res_pop', null), ('2017', 'DE545C1', 'Erlangen', 'ons', null), ('2017', 'DE545C1', 'Erlangen', 'beds', null), ('2017', 'DE545C1', 'Erlangen', 'ons_per_res_pop', null), ('2017', 'DE545C1', 'Erlangen', 'beds_per_1000res_pop', null), ('2017', 'DE546C1', 'Wuppertal', 'ons', null), ('2017', 'DE546C1', 'Wuppertal', 'beds', null), ('2017', 'DE546C1', 'Wuppertal', 'ons_per_res_pop', null), ('2017', 'DE546C1', 'Wuppertal', 'beds_per_1000res_pop', null), ('2017', 'DE547C1', 'Jena', 'ons', null), ('2017', 'DE547C1', 'Jena', 'beds', null), ('2017', 'DE547C1', 'Jena', 'ons_per_res_pop', null), ('2017', 'DE547C1', 'Jena', 'beds_per_1000res_pop', null), ('2017', 'DE548C1', 'Düren, Stadt', 'ons', null), ('2017', 'DE548C1', 'Düren, Stadt', 'beds', null), ('2017', 'DE548C1', 'Düren, Stadt', 'ons_per_res_pop', null), ('2017', 'DE548C1', 'Düren, Stadt', 'beds_per_1000res_pop', null), ('2017', 'DE549C1', 'Bocholt, Stadt', 'ons', null), ('2017', 'DE549C1', 'Bocholt, Stadt', 'beds', null), ('2017', 'DE549C1', 'Bocholt, Stadt', 'ons_per_res_pop', null), ('2017', 'DE549C1', 'Bocholt, Stadt', 'beds_per_1000res_pop', null), ('2017', 'EE', 'Estonia', 'ons', '6509299'), ('2017', 'EE', 'Estonia', 'beds', '61663'), ('2017', 'EE', 'Estonia', 'ons_per_res_pop', '4.9'), ('2017', 'EE', 'Estonia', 'beds_per_1000res_pop', '46.9'), ('2017', 'EE001C1', 'Tallinn', 'ons', '3099102'), ('2017', 'EE001C1', 'Tallinn', 'beds', '18234'), ('2017', 'EE001C1', 'Tallinn', 'ons_per_res_pop', '7.3'), ('2017', 'EE001C1', 'Tallinn', 'beds_per_1000res_pop', '42.7'), ('2017', 'EE002C1', 'Tartu', 'ons', '474579'), ('2017', 'EE002C1', 'Tartu', 'beds', '2858'), ('2017', 'EE002C1', 'Tartu', 'ons_per_res_pop', '5.1'), ('2017', 'EE002C1', 'Tartu', 'beds_per_1000res_pop', '30.7'), ('2017', 'EE003C1', 'Narva', 'ons', '50536'), ('2017', 'EE003C1', 'Narva', 'beds', '458'), ('2017', 'EE003C1', 'Narva', 'ons_per_res_pop', '0.9'), ('2017', 'EE003C1', 'Narva', 'beds_per_1000res_pop', '8'), ('2017', 'IE', 'Ireland', 'ons', null), ('2017', 'IE', 'Ireland', 'beds', null), ('2017', 'IE', 'Ireland', 'ons_per_res_pop', null), ('2017', 'IE', 'Ireland', 'beds_per_1000res_pop', null), ('2017', 'IE001C1', 'Dublin', 'ons', null), ('2017', 'IE001C1', 'Dublin', 'beds', null), ('2017', 'IE001C1', 'Dublin', 'ons_per_res_pop', null), ('2017', 'IE001C1', 'Dublin', 'beds_per_1000res_pop', null), ('2017', 'IE002C1', 'Cork', 'ons', null), ('2017', 'IE002C1', 'Cork', 'beds', null), ('2017', 'IE002C1', 'Cork', 'ons_per_res_pop', null), ('2017', 'IE002C1', 'Cork', 'beds_per_1000res_pop', null), ('2017', 'IE003C1', 'Limerick', 'ons', null), ('2017', 'IE003C1', 'Limerick', 'beds', null), ('2017', 'IE003C1', 'Limerick', 'ons_per_res_pop', null), ('2017', 'IE003C1', 'Limerick', 'beds_per_1000res_pop', null), ('2017', 'IE004C1', 'Galway', 'ons', null), ('2017', 'IE004C1', 'Galway', 'beds', null), ('2017', 'IE004C1', 'Galway', 'ons_per_res_pop', null), ('2017', 'IE004C1', 'Galway', 'beds_per_1000res_pop', null), ('2017', 'IE005C1', 'Waterford', 'ons', null), ('2017', 'IE005C1', 'Waterford', 'beds', null), ('2017', 'IE005C1', 'Waterford', 'ons_per_res_pop', null), ('2017', 'IE005C1', 'Waterford', 'beds_per_1000res_pop', null), ('2017', 'EL', 'Greece', 'ons', null), ('2017', 'EL', 'Greece', 'beds', null), ('2017', 'EL', 'Greece', 'ons_per_res_pop', null), ('2017', 'EL', 'Greece', 'beds_per_1000res_pop', null), ('2017', 'EL001C1', 'Athina', 'ons', null), ('2017', 'EL001C1', 'Athina', 'beds', null), ('2017', 'EL001C1', 'Athina', 'ons_per_res_pop', null), ('2017', 'EL001C1', 'Athina', 'beds_per_1000res_pop', null), ('2017', 'EL002C1', 'Thessaloniki', 'ons', null), ('2017', 'EL002C1', 'Thessaloniki', 'beds', null), ('2017', 'EL002C1', 'Thessaloniki', 'ons_per_res_pop', null), ('2017', 'EL002C1', 'Thessaloniki', 'beds_per_1000res_pop', null), ('2017', 'EL003C1', 'Pátra', 'ons', null), ('2017', 'EL003C1', 'Pátra', 'beds', null), ('2017', 'EL003C1', 'Pátra', 'ons_per_res_pop', null), ('2017', 'EL003C1', 'Pátra', 'beds_per_1000res_pop', null), ('2017', 'EL004C1', 'Irakleio', 'ons', null), ('2017', 'EL004C1', 'Irakleio', 'beds', null), ('2017', 'EL004C1', 'Irakleio', 'ons_per_res_pop', null), ('2017', 'EL004C1', 'Irakleio', 'beds_per_1000res_pop', null), ('2017', 'EL005C1', 'Larisa', 'ons', null), ('2017', 'EL005C1', 'Larisa', 'beds', null), ('2017', 'EL005C1', 'Larisa', 'ons_per_res_pop', null), ('2017', 'EL005C1', 'Larisa', 'beds_per_1000res_pop', null), ('2017', 'EL006C1', 'Volos', 'ons', null), ('2017', 'EL006C1', 'Volos', 'beds', null), ('2017', 'EL006C1', 'Volos', 'ons_per_res_pop', null), ('2017', 'EL006C1', 'Volos', 'beds_per_1000res_pop', null), ('2017', 'EL007C1', 'Ioannina', 'ons', null), ('2017', 'EL007C1', 'Ioannina', 'beds', null), ('2017', 'EL007C1', 'Ioannina', 'ons_per_res_pop', null), ('2017', 'EL007C1', 'Ioannina', 'beds_per_1000res_pop', null), ('2017', 'EL008C1', 'Kavala', 'ons', null), ('2017', 'EL008C1', 'Kavala', 'beds', null), ('2017', 'EL008C1', 'Kavala', 'ons_per_res_pop', null), ('2017', 'EL008C1', 'Kavala', 'beds_per_1000res_pop', null), ('2017', 'EL009C1', 'Kalamata', 'ons', null), ('2017', 'EL009C1', 'Kalamata', 'beds', null), ('2017', 'EL009C1', 'Kalamata', 'ons_per_res_pop', null), ('2017', 'EL009C1', 'Kalamata', 'beds_per_1000res_pop', null), ('2017', 'ES', 'Spain', 'ons', '468476741'), ('2017', 'ES', 'Spain', 'beds', '2646193'), ('2017', 'ES', 'Spain', 'ons_per_res_pop', '10.1'), ('2017', 'ES', 'Spain', 'beds_per_1000res_pop', '56.9'), ('2017', 'ES001C1', 'Madrid', 'ons', '21144254'), ('2017', 'ES001C1', 'Madrid', 'beds', '95537'), ('2017', 'ES001C1', 'Madrid', 'ons_per_res_pop', '6.6'), ('2017', 'ES001C1', 'Madrid', 'beds_per_1000res_pop', '30'), ('2017', 'ES002C1', 'Barcelona', 'ons', '20428815'), ('2017', 'ES002C1', 'Barcelona', 'beds', '84057'), ('2017', 'ES002C1', 'Barcelona', 'ons_per_res_pop', '12.6'), ('2017', 'ES002C1', 'Barcelona', 'beds_per_1000res_pop', '51.9'), ('2017', 'ES003C1', 'Valencia', 'ons', '4897418'), ('2017', 'ES003C1', 'Valencia', 'beds', '25941'), ('2017', 'ES003C1', 'Valencia', 'ons_per_res_pop', '6.2'), ('2017', 'ES003C1', 'Valencia', 'beds_per_1000res_pop', '32.9'), ('2017', 'ES004C1', 'Sevilla', 'ons', '5931524'), ('2017', 'ES004C1', 'Sevilla', 'beds', '25946'), ('2017', 'ES004C1', 'Sevilla', 'ons_per_res_pop', '8.6'), ('2017', 'ES004C1', 'Sevilla', 'beds_per_1000res_pop', '37.6'), ('2017', 'ES005C1', 'Zaragoza', 'ons', '1985441'), ('2017', 'ES005C1', 'Zaragoza', 'beds', '11850'), ('2017', 'ES005C1', 'Zaragoza', 'ons_per_res_pop', '3'), ('2017', 'ES005C1', 'Zaragoza', 'beds_per_1000res_pop', '17.8'), ('2017', 'ES006C1', 'Málaga', 'ons', '3060499'), ('2017', 'ES006C1', 'Málaga', 'beds', '14636'), ('2017', 'ES006C1', 'Málaga', 'ons_per_res_pop', '5.4'), ('2017', 'ES006C1', 'Málaga', 'beds_per_1000res_pop', '25.7'), ('2017', 'ES007C1', 'Murcia', 'ons', '798606'), ('2017', 'ES007C1', 'Murcia', 'beds', '5392'), ('2017', 'ES007C1', 'Murcia', 'ons_per_res_pop', '1.8'), ('2017', 'ES007C1', 'Murcia', 'beds_per_1000res_pop', '12.2'), ('2017', 'ES008C1', 'Las Palmas', 'ons', '1647652'), ('2017', 'ES008C1', 'Las Palmas', 'beds', '7103'), ('2017', 'ES008C1', 'Las Palmas', 'ons_per_res_pop', '4.4'), ('2017', 'ES008C1', 'Las Palmas', 'beds_per_1000res_pop', '18.8'), ('2017', 'ES009C1', 'Valladolid', 'ons', '795190'), ('2017', 'ES009C1', 'Valladolid', 'beds', '4056'), ('2017', 'ES009C1', 'Valladolid', 'ons_per_res_pop', '2.7'), ('2017', 'ES009C1', 'Valladolid', 'beds_per_1000res_pop', '13.5'), ('2017', 'ES010C1', 'Palma de Mallorca', 'ons', '9106285'), ('2017', 'ES010C1', 'Palma de Mallorca', 'beds', '47727'), ('2017', 'ES010C1', 'Palma de Mallorca', 'ons_per_res_pop', '22.4'), ('2017', 'ES010C1', 'Palma de Mallorca', 'beds_per_1000res_pop', '117.4'), ('2017', 'ES011C1', 'Santiago de Compostela', 'ons', '1514429'), ('2017', 'ES011C1', 'Santiago de Compostela', 'beds', '8811'), ('2017', 'ES011C1', 'Santiago de Compostela', 'ons_per_res_pop', '15.7'), ('2017', 'ES011C1', 'Santiago de Compostela', 'beds_per_1000res_pop', '91.3'), ('2017', 'ES012C1', 'Vitoria/Gasteiz', 'ons', '637288'), ('2017', 'ES012C1', 'Vitoria/Gasteiz', 'beds', '4023'), ('2017', 'ES012C1', 'Vitoria/Gasteiz', 'ons_per_res_pop', '2.6'), ('2017', 'ES012C1', 'Vitoria/Gasteiz', 'beds_per_1000res_pop', '16.3'), ('2017', 'ES013C1', 'Oviedo', 'ons', '934256'), ('2017', 'ES013C1', 'Oviedo', 'beds', '6032'), ('2017', 'ES013C1', 'Oviedo', 'ons_per_res_pop', '4.2'), ('2017', 'ES013C1', 'Oviedo', 'beds_per_1000res_pop', '27.4'), ('2017', 'ES014C1', 'Pamplona/Iruña', 'ons', '749250'), ('2017', 'ES014C1', 'Pamplona/Iruña', 'beds', '4262'), ('2017', 'ES014C1', 'Pamplona/Iruña', 'ons_per_res_pop', '3.8'), ('2017', 'ES014C1', 'Pamplona/Iruña', 'beds_per_1000res_pop', '21.6'), ('2017', 'ES015C1', 'Santander', 'ons', '1030586'), ('2017', 'ES015C1', 'Santander', 'beds', '7108'), ('2017', 'ES015C1', 'Santander', 'ons_per_res_pop', '6'), ('2017', 'ES015C1', 'Santander', 'beds_per_1000res_pop', '41.3'), ('2017', 'ES016C1', 'Toledo', 'ons', '957754'), ('2017', 'ES016C1', 'Toledo', 'beds', '5184'), ('2017', 'ES016C1', 'Toledo', 'ons_per_res_pop', '11.4'), ('2017', 'ES016C1', 'Toledo', 'beds_per_1000res_pop', '61.9'), ('2017', 'ES017C1', 'Badajoz', 'ons', '302225'), ('2017', 'ES017C1', 'Badajoz', 'beds', '2171'), ('2017', 'ES017C1', 'Badajoz', 'ons_per_res_pop', '2'), ('2017', 'ES017C1', 'Badajoz', 'beds_per_1000res_pop', '14.4'), ('2017', 'ES018C1', 'Logroño', 'ons', '561876'), ('2017', 'ES018C1', 'Logroño', 'beds', '3285'), ('2017', 'ES018C1', 'Logroño', 'ons_per_res_pop', '3.7'), ('2017', 'ES018C1', 'Logroño', 'beds_per_1000res_pop', '21.8'), ('2017', 'ES019C1', 'Bilbao', 'ons', '1836818'), ('2017', 'ES019C1', 'Bilbao', 'beds', '8736'), ('2017', 'ES019C1', 'Bilbao', 'ons_per_res_pop', '5.3'), ('2017', 'ES019C1', 'Bilbao', 'beds_per_1000res_pop', '25.3'), ('2017', 'ES020C1', 'Córdoba', 'ons', '1737585'), ('2017', 'ES020C1', 'Córdoba', 'beds', '8560'), ('2017', 'ES020C1', 'Córdoba', 'ons_per_res_pop', '5.3'), ('2017', 'ES020C1', 'Córdoba', 'beds_per_1000res_pop', '26.3'), ('2017', 'ES021C1', 'Alicante/Alacant', 'ons', '2354385'), ('2017', 'ES021C1', 'Alicante/Alacant', 'beds', '12011'), ('2017', 'ES021C1', 'Alicante/Alacant', 'ons_per_res_pop', '7.1'), ('2017', 'ES021C1', 'Alicante/Alacant', 'beds_per_1000res_pop', '36.4'), ('2017', 'ES022C1', 'Vigo', 'ons', '887915'), ('2017', 'ES022C1', 'Vigo', 'beds', '6093'), ('2017', 'ES022C1', 'Vigo', 'ons_per_res_pop', '3'), ('2017', 'ES022C1', 'Vigo', 'beds_per_1000res_pop', '20.8'), ('2017', 'ES023C1', 'Gijón', 'ons', '917260'), ('2017', 'ES023C1', 'Gijón', 'beds', '6975'), ('2017', 'ES023C1', 'Gijón', 'ons_per_res_pop', '3.4'), ('2017', 'ES023C1', 'Gijón', 'beds_per_1000res_pop', '25.6'), ('2017', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons', null), ('2017', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds', null), ('2017', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons_per_res_pop', null), ('2017', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds_per_1000res_pop', null), ('2017', 'ES025C1', 'Santa Cruz de Tenerife', 'ons', '581132'), ('2017', 'ES025C1', 'Santa Cruz de Tenerife', 'beds', '3080'), ('2017', 'ES025C1', 'Santa Cruz de Tenerife', 'ons_per_res_pop', '2.9'), ('2017', 'ES025C1', 'Santa Cruz de Tenerife', 'beds_per_1000res_pop', '15.1'), ('2017', 'ES026C1', 'A Coruña', 'ons', '986768'), ('2017', 'ES026C1', 'A Coruña', 'beds', '5574'), ('2017', 'ES026C1', 'A Coruña', 'ons_per_res_pop', '4'), ('2017', 'ES026C1', 'A Coruña', 'beds_per_1000res_pop', '22.8'), ('2017', 'ES027C1', 'Barakaldo', 'ons', null), ('2017', 'ES027C1', 'Barakaldo', 'beds', null), ('2017', 'ES027C1', 'Barakaldo', 'ons_per_res_pop', null), ('2017', 'ES027C1', 'Barakaldo', 'beds_per_1000res_pop', null), ('2017', 'ES028C1', 'Reus', 'ons', null), ('2017', 'ES028C1', 'Reus', 'beds', null), ('2017', 'ES028C1', 'Reus', 'ons_per_res_pop', null), ('2017', 'ES028C1', 'Reus', 'beds_per_1000res_pop', null), ('2017', 'ES029C1', 'Telde', 'ons', null), ('2017', 'ES029C1', 'Telde', 'beds', null), ('2017', 'ES029C1', 'Telde', 'ons_per_res_pop', null), ('2017', 'ES029C1', 'Telde', 'beds_per_1000res_pop', null), ('2017', 'ES030C1', 'Parla', 'ons', null), ('2017', 'ES030C1', 'Parla', 'beds', null), ('2017', 'ES030C1', 'Parla', 'ons_per_res_pop', null), ('2017', 'ES030C1', 'Parla', 'beds_per_1000res_pop', null), ('2017', 'ES031C1', 'Lugo', 'ons', '314769'), ('2017', 'ES031C1', 'Lugo', 'beds', '1823'), ('2017', 'ES031C1', 'Lugo', 'ons_per_res_pop', '3.2'), ('2017', 'ES031C1', 'Lugo', 'beds_per_1000res_pop', '18.6'), ('2017', 'ES032C1', 'San Fernando', 'ons', null), ('2017', 'ES032C1', 'San Fernando', 'beds', null), ('2017', 'ES032C1', 'San Fernando', 'ons_per_res_pop', null), ('2017', 'ES032C1', 'San Fernando', 'beds_per_1000res_pop', null), ('2017', 'ES033C1', 'Girona', 'ons', '499808'), ('2017', 'ES033C1', 'Girona', 'beds', '2544'), ('2017', 'ES033C1', 'Girona', 'ons_per_res_pop', '5'), ('2017', 'ES033C1', 'Girona', 'beds_per_1000res_pop', '25.7'), ('2017', 'ES034C1', 'Cáceres', 'ons', '509581'), ('2017', 'ES034C1', 'Cáceres', 'beds', '3349'), ('2017', 'ES034C1', 'Cáceres', 'ons_per_res_pop', '5.3'), ('2017', 'ES034C1', 'Cáceres', 'beds_per_1000res_pop', '34.9'), ('2017', 'ES035C1', 'Torrevieja', 'ons', '698567'), ('2017', 'ES035C1', 'Torrevieja', 'beds', '7495'), ('2017', 'ES035C1', 'Torrevieja', 'ons_per_res_pop', '8.4'), ('2017', 'ES035C1', 'Torrevieja', 'beds_per_1000res_pop', '90'), ('2017', 'ES036C1', 'Pozuelo de Alarcón', 'ons', null), ('2017', 'ES036C1', 'Pozuelo de Alarcón', 'beds', null), ('2017', 'ES036C1', 'Pozuelo de Alarcón', 'ons_per_res_pop', null), ('2017', 'ES036C1', 'Pozuelo de Alarcón', 'beds_per_1000res_pop', null), ('2017', 'ES037C1', 'Puerto de Santa María, El', 'ons', '666784'), ('2017', 'ES037C1', 'Puerto de Santa María, El', 'beds', '5471'), ('2017', 'ES037C1', 'Puerto de Santa María, El', 'ons_per_res_pop', '7.5'), ('2017', 'ES037C1', 'Puerto de Santa María, El', 'beds_per_1000res_pop', '61.9'), ('2017', 'ES038C1', 'Coslada', 'ons', null), ('2017', 'ES038C1', 'Coslada', 'beds', null), ('2017', 'ES038C1', 'Coslada', 'ons_per_res_pop', null), ('2017', 'ES038C1', 'Coslada', 'beds_per_1000res_pop', null), ('2017', 'ES039C1', 'Avilés', 'ons', null), ('2017', 'ES039C1', 'Avilés', 'beds', null), ('2017', 'ES039C1', 'Avilés', 'ons_per_res_pop', null), ('2017', 'ES039C1', 'Avilés', 'beds_per_1000res_pop', null), ('2017', 'ES040C1', 'Talavera de la Reina', 'ons', null), ('2017', 'ES040C1', 'Talavera de la Reina', 'beds', null), ('2017', 'ES040C1', 'Talavera de la Reina', 'ons_per_res_pop', null), ('2017', 'ES040C1', 'Talavera de la Reina', 'beds_per_1000res_pop', null), ('2017', 'ES041C1', 'Palencia', 'ons', '158146'), ('2017', 'ES041C1', 'Palencia', 'beds', '986'), ('2017', 'ES041C1', 'Palencia', 'ons_per_res_pop', '2'), ('2017', 'ES041C1', 'Palencia', 'beds_per_1000res_pop', '12.5'), ('2017', 'ES042C1', 'Sant Boi de Llobregat', 'ons', null), ('2017', 'ES042C1', 'Sant Boi de Llobregat', 'beds', null), ('2017', 'ES042C1', 'Sant Boi de Llobregat', 'ons_per_res_pop', null), ('2017', 'ES042C1', 'Sant Boi de Llobregat', 'beds_per_1000res_pop', null), ('2017', 'ES043C1', 'Ferrol', 'ons', null), ('2017', 'ES043C1', 'Ferrol', 'beds', null), ('2017', 'ES043C1', 'Ferrol', 'ons_per_res_pop', null), ('2017', 'ES043C1', 'Ferrol', 'beds_per_1000res_pop', null), ('2017', 'ES044C1', 'Pontevedra', 'ons', null), ('2017', 'ES044C1', 'Pontevedra', 'beds', null), ('2017', 'ES044C1', 'Pontevedra', 'ons_per_res_pop', null), ('2017', 'ES044C1', 'Pontevedra', 'beds_per_1000res_pop', null), ('2017', 'ES045C1', 'Ceuta', 'ons', '182114'), ('2017', 'ES045C1', 'Ceuta', 'beds', '780'), ('2017', 'ES045C1', 'Ceuta', 'ons_per_res_pop', '2.1'), ('2017', 'ES045C1', 'Ceuta', 'beds_per_1000res_pop', '9.2'), ('2017', 'ES046C1', 'Gandia', 'ons', '1658157'), ('2017', 'ES046C1', 'Gandia', 'beds', '15061'), ('2017', 'ES046C1', 'Gandia', 'ons_per_res_pop', '22.4'), ('2017', 'ES046C1', 'Gandia', 'beds_per_1000res_pop', '203.2'), ('2017', 'ES047C1', 'Rozas de Madrid, Las', 'ons', null), ('2017', 'ES047C1', 'Rozas de Madrid, Las', 'beds', null), ('2017', 'ES047C1', 'Rozas de Madrid, Las', 'ons_per_res_pop', null), ('2017', 'ES047C1', 'Rozas de Madrid, Las', 'beds_per_1000res_pop', null), ('2017', 'ES048C1', 'Guadalajara', 'ons', '219937'), ('2017', 'ES048C1', 'Guadalajara', 'beds', '1403'), ('2017', 'ES048C1', 'Guadalajara', 'ons_per_res_pop', '2.6'), ('2017', 'ES048C1', 'Guadalajara', 'beds_per_1000res_pop', '16.7'), ('2017', 'ES049C1', 'Sant Cugat del Vallès', 'ons', null), ('2017', 'ES049C1', 'Sant Cugat del Vallès', 'beds', null), ('2017', 'ES049C1', 'Sant Cugat del Vallès', 'ons_per_res_pop', null), ('2017', 'ES049C1', 'Sant Cugat del Vallès', 'beds_per_1000res_pop', null), ('2017', 'ES050C1', 'Manresa', 'ons', null), ('2017', 'ES050C1', 'Manresa', 'beds', null), ('2017', 'ES050C1', 'Manresa', 'ons_per_res_pop', null), ('2017', 'ES050C1', 'Manresa', 'beds_per_1000res_pop', null), ('2017', 'ES051C1', 'Getxo', 'ons', null), ('2017', 'ES051C1', 'Getxo', 'beds', null), ('2017', 'ES051C1', 'Getxo', 'ons_per_res_pop', null), ('2017', 'ES051C1', 'Getxo', 'beds_per_1000res_pop', null), ('2017', 'ES052C1', 'Rubí', 'ons', null), ('2017', 'ES052C1', 'Rubí', 'beds', null), ('2017', 'ES052C1', 'Rubí', 'ons_per_res_pop', null), ('2017', 'ES052C1', 'Rubí', 'beds_per_1000res_pop', null), ('2017', 'ES053C1', 'Ciudad Real', 'ons', '208120'), ('2017', 'ES053C1', 'Ciudad Real', 'beds', '1594'), ('2017', 'ES053C1', 'Ciudad Real', 'ons_per_res_pop', '2.8'), ('2017', 'ES053C1', 'Ciudad Real', 'beds_per_1000res_pop', '21.4'), ('2017', 'ES054C1', 'Benidorm', 'ons', '16603087'), ('2017', 'ES054C1', 'Benidorm', 'beds', '79339'), ('2017', 'ES054C1', 'Benidorm', 'ons_per_res_pop', '248.4'), ('2017', 'ES054C1', 'Benidorm', 'beds_per_1000res_pop', '1187.2'), ('2017', 'ES055C1', 'Melilla', 'ons', null), ('2017', 'ES055C1', 'Melilla', 'beds', null), ('2017', 'ES055C1', 'Melilla', 'ons_per_res_pop', null), ('2017', 'ES055C1', 'Melilla', 'beds_per_1000res_pop', null), ('2017', 'ES056C1', 'Viladecans', 'ons', null), ('2017', 'ES056C1', 'Viladecans', 'beds', null), ('2017', 'ES056C1', 'Viladecans', 'ons_per_res_pop', null), ('2017', 'ES056C1', 'Viladecans', 'beds_per_1000res_pop', null), ('2017', 'ES057C1', 'Ponferrada', 'ons', '182589'), ('2017', 'ES057C1', 'Ponferrada', 'beds', '1701'), ('2017', 'ES057C1', 'Ponferrada', 'ons_per_res_pop', '2.8'), ('2017', 'ES057C1', 'Ponferrada', 'beds_per_1000res_pop', '25.9'), ('2017', 'ES058C1', 'San Sebastián de los Reyes', 'ons', null), ('2017', 'ES058C1', 'San Sebastián de los Reyes', 'beds', null), ('2017', 'ES058C1', 'San Sebastián de los Reyes', 'ons_per_res_pop', null), ('2017', 'ES058C1', 'San Sebastián de los Reyes', 'beds_per_1000res_pop', null), ('2017', 'ES059C1', 'Zamora', 'ons', '194059'), ('2017', 'ES059C1', 'Zamora', 'beds', '1162'), ('2017', 'ES059C1', 'Zamora', 'ons_per_res_pop', '3.1'), ('2017', 'ES059C1', 'Zamora', 'beds_per_1000res_pop', '18.6'), ('2017', 'ES060C1', 'Fuengirola', 'ons', '3216365'), ('2017', 'ES060C1', 'Fuengirola', 'beds', '15341'), ('2017', 'ES060C1', 'Fuengirola', 'ons_per_res_pop', '42.9'), ('2017', 'ES060C1', 'Fuengirola', 'beds_per_1000res_pop', '204.7'), ('2017', 'ES061C1', 'Cerdanyola del Vallès', 'ons', null), ('2017', 'ES061C1', 'Cerdanyola del Vallès', 'beds', null), ('2017', 'ES061C1', 'Cerdanyola del Vallès', 'ons_per_res_pop', null), ('2017', 'ES061C1', 'Cerdanyola del Vallès', 'beds_per_1000res_pop', null), ('2017', 'ES062C1', 'Sanlúcar de Barrameda', 'ons', null), ('2017', 'ES062C1', 'Sanlúcar de Barrameda', 'beds', null), ('2017', 'ES062C1', 'Sanlúcar de Barrameda', 'ons_per_res_pop', null), ('2017', 'ES062C1', 'Sanlúcar de Barrameda', 'beds_per_1000res_pop', null), ('2017', 'ES063C1', 'Vilanova i la Geltrú', 'ons', null), ('2017', 'ES063C1', 'Vilanova i la Geltrú', 'beds', null), ('2017', 'ES063C1', 'Vilanova i la Geltrú', 'ons_per_res_pop', null), ('2017', 'ES063C1', 'Vilanova i la Geltrú', 'beds_per_1000res_pop', null), ('2017', 'ES064C1', 'Prat de Llobregat, El', 'ons', null), ('2017', 'ES064C1', 'Prat de Llobregat, El', 'beds', null), ('2017', 'ES064C1', 'Prat de Llobregat, El', 'ons_per_res_pop', null), ('2017', 'ES064C1', 'Prat de Llobregat, El', 'beds_per_1000res_pop', null), ('2017', 'ES065C1', 'Línea de la Concepción, La', 'ons', null), ('2017', 'ES065C1', 'Línea de la Concepción, La', 'beds', null), ('2017', 'ES065C1', 'Línea de la Concepción, La', 'ons_per_res_pop', null), ('2017', 'ES065C1', 'Línea de la Concepción, La', 'beds_per_1000res_pop', null), ('2017', 'ES066C1', 'Cornellà de Llobregat', 'ons', null), ('2017', 'ES066C1', 'Cornellà de Llobregat', 'beds', null), ('2017', 'ES066C1', 'Cornellà de Llobregat', 'ons_per_res_pop', null), ('2017', 'ES066C1', 'Cornellà de Llobregat', 'beds_per_1000res_pop', null), ('2017', 'ES067C1', 'Majadahonda', 'ons', null), ('2017', 'ES067C1', 'Majadahonda', 'beds', null), ('2017', 'ES067C1', 'Majadahonda', 'ons_per_res_pop', null), ('2017', 'ES067C1', 'Majadahonda', 'beds_per_1000res_pop', null), ('2017', 'ES068C1', 'Torremolinos', 'ons', '5576645'), ('2017', 'ES068C1', 'Torremolinos', 'beds', '25646'), ('2017', 'ES068C1', 'Torremolinos', 'ons_per_res_pop', '82.4'), ('2017', 'ES068C1', 'Torremolinos', 'beds_per_1000res_pop', '378.8'), ('2017', 'ES069C1', 'Castelldefels', 'ons', '895873'), ('2017', 'ES069C1', 'Castelldefels', 'beds', '5146'), ('2017', 'ES069C1', 'Castelldefels', 'ons_per_res_pop', '13.6'), ('2017', 'ES069C1', 'Castelldefels', 'beds_per_1000res_pop', '78'), ('2017', 'ES070C1', 'Irun', 'ons', null), ('2017', 'ES070C1', 'Irun', 'beds', null), ('2017', 'ES070C1', 'Irun', 'ons_per_res_pop', null), ('2017', 'ES070C1', 'Irun', 'beds_per_1000res_pop', null), ('2017', 'ES071C1', 'Granollers', 'ons', null), ('2017', 'ES071C1', 'Granollers', 'beds', null), ('2017', 'ES071C1', 'Granollers', 'ons_per_res_pop', null), ('2017', 'ES071C1', 'Granollers', 'beds_per_1000res_pop', null), ('2017', 'ES072C1', 'Arrecife', 'ons', null), ('2017', 'ES072C1', 'Arrecife', 'beds', null), ('2017', 'ES072C1', 'Arrecife', 'ons_per_res_pop', null), ('2017', 'ES072C1', 'Arrecife', 'beds_per_1000res_pop', null), ('2017', 'ES073C1', 'Elda', 'ons', null), ('2017', 'ES073C1', 'Elda', 'beds', null), ('2017', 'ES073C1', 'Elda', 'ons_per_res_pop', null), ('2017', 'ES073C1', 'Elda', 'beds_per_1000res_pop', null), ('2017', 'ES074C1', 'Santa Lucía de Tirajana', 'ons', null), ('2017', 'ES074C1', 'Santa Lucía de Tirajana', 'beds', null), ('2017', 'ES074C1', 'Santa Lucía de Tirajana', 'ons_per_res_pop', null), ('2017', 'ES074C1', 'Santa Lucía de Tirajana', 'beds_per_1000res_pop', null), ('2017', 'ES075C1', 'Mollet del Vallès', 'ons', null), ('2017', 'ES075C1', 'Mollet del Vallès', 'beds', null), ('2017', 'ES075C1', 'Mollet del Vallès', 'ons_per_res_pop', null), ('2017', 'ES075C1', 'Mollet del Vallès', 'beds_per_1000res_pop', null), ('2017', 'ES501C1', 'Granada', 'ons', '3509802'), ('2017', 'ES501C1', 'Granada', 'beds', '15989'), ('2017', 'ES501C1', 'Granada', 'ons_per_res_pop', '15.1'), ('2017', 'ES501C1', 'Granada', 'beds_per_1000res_pop', '68.7'), ('2017', 'ES503C1', 'Badalona', 'ons', null), ('2017', 'ES503C1', 'Badalona', 'beds', null), ('2017', 'ES503C1', 'Badalona', 'ons_per_res_pop', null), ('2017', 'ES503C1', 'Badalona', 'beds_per_1000res_pop', null), ('2017', 'ES504C1', 'Móstoles', 'ons', null), ('2017', 'ES504C1', 'Móstoles', 'beds', null), ('2017', 'ES504C1', 'Móstoles', 'ons_per_res_pop', null), ('2017', 'ES504C1', 'Móstoles', 'beds_per_1000res_pop', null), ('2017', 'ES505C1', 'Elche/Elx', 'ons', '790788'), ('2017', 'ES505C1', 'Elche/Elx', 'beds', '3974'), ('2017', 'ES505C1', 'Elche/Elx', 'ons_per_res_pop', '3.5'), ('2017', 'ES505C1', 'Elche/Elx', 'beds_per_1000res_pop', '17.4'), ('2017', 'ES506C1', 'Cartagena', 'ons', '1963075'), ('2017', 'ES506C1', 'Cartagena', 'beds', '18202'), ('2017', 'ES506C1', 'Cartagena', 'ons_per_res_pop', '9.2'), ('2017', 'ES506C1', 'Cartagena', 'beds_per_1000res_pop', '85'), ('2017', 'ES507C1', 'Sabadell', 'ons', null), ('2017', 'ES507C1', 'Sabadell', 'beds', null), ('2017', 'ES507C1', 'Sabadell', 'ons_per_res_pop', null), ('2017', 'ES507C1', 'Sabadell', 'beds_per_1000res_pop', null), ('2017', 'ES508C1', 'Jerez de la Frontera', 'ons', '684712'), ('2017', 'ES508C1', 'Jerez de la Frontera', 'beds', '3821'), ('2017', 'ES508C1', 'Jerez de la Frontera', 'ons_per_res_pop', '3.2'), ('2017', 'ES508C1', 'Jerez de la Frontera', 'beds_per_1000res_pop', '17.9'), ('2017', 'ES509C1', 'Fuenlabrada', 'ons', null), ('2017', 'ES509C1', 'Fuenlabrada', 'beds', null), ('2017', 'ES509C1', 'Fuenlabrada', 'ons_per_res_pop', null), ('2017', 'ES509C1', 'Fuenlabrada', 'beds_per_1000res_pop', null), ('2017', 'ES510C1', 'San Sebastián/Donostia', 'ons', '1700931'), ('2017', 'ES510C1', 'San Sebastián/Donostia', 'beds', '9949'), ('2017', 'ES510C1', 'San Sebastián/Donostia', 'ons_per_res_pop', '9.1'), ('2017', 'ES510C1', 'San Sebastián/Donostia', 'beds_per_1000res_pop', '53.4'), ('2017', 'ES511C1', 'Alcalá de Henares', 'ons', '484820'), ('2017', 'ES511C1', 'Alcalá de Henares', 'beds', '2487'), ('2017', 'ES511C1', 'Alcalá de Henares', 'ons_per_res_pop', '2.5'), ('2017', 'ES511C1', 'Alcalá de Henares', 'beds_per_1000res_pop', '12.8'), ('2017', 'ES512C1', 'Terrassa', 'ons', null), ('2017', 'ES512C1', 'Terrassa', 'beds', null), ('2017', 'ES512C1', 'Terrassa', 'ons_per_res_pop', null), ('2017', 'ES512C1', 'Terrassa', 'beds_per_1000res_pop', null), ('2017', 'ES513C1', 'Leganés', 'ons', null), ('2017', 'ES513C1', 'Leganés', 'beds', null), ('2017', 'ES513C1', 'Leganés', 'ons_per_res_pop', null), ('2017', 'ES513C1', 'Leganés', 'beds_per_1000res_pop', null), ('2017', 'ES514C1', 'Almería', 'ons', '970300'), ('2017', 'ES514C1', 'Almería', 'beds', '6051'), ('2017', 'ES514C1', 'Almería', 'ons_per_res_pop', '5'), ('2017', 'ES514C1', 'Almería', 'beds_per_1000res_pop', '31'), ('2017', 'ES515C1', 'Burgos', 'ons', '796837'), ('2017', 'ES515C1', 'Burgos', 'beds', '5113'), ('2017', 'ES515C1', 'Burgos', 'ons_per_res_pop', '4.5'), ('2017', 'ES515C1', 'Burgos', 'beds_per_1000res_pop', '29.1'), ('2017', 'ES516C1', 'Salamanca', 'ons', '1144476'), ('2017', 'ES516C1', 'Salamanca', 'beds', '6188'), ('2017', 'ES516C1', 'Salamanca', 'ons_per_res_pop', '7.9'), ('2017', 'ES516C1', 'Salamanca', 'beds_per_1000res_pop', '42.8'), ('2017', 'ES517C1', 'Alcorcón', 'ons', null), ('2017', 'ES517C1', 'Alcorcón', 'beds', null), ('2017', 'ES517C1', 'Alcorcón', 'ons_per_res_pop', null), ('2017', 'ES517C1', 'Alcorcón', 'beds_per_1000res_pop', null), ('2017', 'ES518C1', 'Getafe', 'ons', null), ('2017', 'ES518C1', 'Getafe', 'beds', null), ('2017', 'ES518C1', 'Getafe', 'ons_per_res_pop', null), ('2017', 'ES518C1', 'Getafe', 'beds_per_1000res_pop', null), ('2017', 'ES519C1', 'Albacete', 'ons', '309782'), ('2017', 'ES519C1', 'Albacete', 'beds', '2691'), ('2017', 'ES519C1', 'Albacete', 'ons_per_res_pop', '1.8'), ('2017', 'ES519C1', 'Albacete', 'beds_per_1000res_pop', '15.6'), ('2017', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons', '506987'), ('2017', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds', '3280'), ('2017', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons_per_res_pop', '3'), ('2017', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds_per_1000res_pop', '19.4'), ('2017', 'ES521C1', 'Huelva', 'ons', null), ('2017', 'ES521C1', 'Huelva', 'beds', null), ('2017', 'ES521C1', 'Huelva', 'ons_per_res_pop', null), ('2017', 'ES521C1', 'Huelva', 'beds_per_1000res_pop', null), ('2017', 'ES522C1', 'Cádiz', 'ons', '626522'), ('2017', 'ES522C1', 'Cádiz', 'beds', '3005'), ('2017', 'ES522C1', 'Cádiz', 'ons_per_res_pop', '5.3'), ('2017', 'ES522C1', 'Cádiz', 'beds_per_1000res_pop', '25.5'), ('2017', 'ES523C1', 'León', 'ons', '751039'), ('2017', 'ES523C1', 'León', 'beds', '3989'), ('2017', 'ES523C1', 'León', 'ons_per_res_pop', '6'), ('2017', 'ES523C1', 'León', 'beds_per_1000res_pop', '31.8'), ('2017', 'ES524C1', 'San Cristóbal de la Laguna', 'ons', null), ('2017', 'ES524C1', 'San Cristóbal de la Laguna', 'beds', null), ('2017', 'ES524C1', 'San Cristóbal de la Laguna', 'ons_per_res_pop', null), ('2017', 'ES524C1', 'San Cristóbal de la Laguna', 'beds_per_1000res_pop', null), ('2017', 'ES525C1', 'Tarragona', 'ons', '1218378'), ('2017', 'ES525C1', 'Tarragona', 'beds', '12369'), ('2017', 'ES525C1', 'Tarragona', 'ons_per_res_pop', '9.3'), ('2017', 'ES525C1', 'Tarragona', 'beds_per_1000res_pop', '94.1'), ('2017', 'ES526C1', 'Santa Coloma de Gramenet', 'ons', null), ('2017', 'ES526C1', 'Santa Coloma de Gramenet', 'beds', null), ('2017', 'ES526C1', 'Santa Coloma de Gramenet', 'ons_per_res_pop', null), ('2017', 'ES526C1', 'Santa Coloma de Gramenet', 'beds_per_1000res_pop', null), ('2017', 'ES527C1', 'Jaén', 'ons', null), ('2017', 'ES527C1', 'Jaén', 'beds', null), ('2017', 'ES527C1', 'Jaén', 'ons_per_res_pop', null), ('2017', 'ES527C1', 'Jaén', 'beds_per_1000res_pop', null), ('2017', 'ES528C1', 'Lleida', 'ons', '310501'), ('2017', 'ES528C1', 'Lleida', 'beds', '2197'), ('2017', 'ES528C1', 'Lleida', 'ons_per_res_pop', '2.3'), ('2017', 'ES528C1', 'Lleida', 'beds_per_1000res_pop', '16'), ('2017', 'ES529C1', 'Ourense', 'ons', '206997'), ('2017', 'ES529C1', 'Ourense', 'beds', '1257'), ('2017', 'ES529C1', 'Ourense', 'ons_per_res_pop', '2'), ('2017', 'ES529C1', 'Ourense', 'beds_per_1000res_pop', '11.9'), ('2017', 'ES530C1', 'Mataró', 'ons', null), ('2017', 'ES530C1', 'Mataró', 'beds', null), ('2017', 'ES530C1', 'Mataró', 'ons_per_res_pop', null), ('2017', 'ES530C1', 'Mataró', 'beds_per_1000res_pop', null), ('2017', 'ES531C1', 'Dos Hermanas', 'ons', null), ('2017', 'ES531C1', 'Dos Hermanas', 'beds', null), ('2017', 'ES531C1', 'Dos Hermanas', 'ons_per_res_pop', null), ('2017', 'ES531C1', 'Dos Hermanas', 'beds_per_1000res_pop', null), ('2017', 'ES532C1', 'Algeciras', 'ons', '362094'), ('2017', 'ES532C1', 'Algeciras', 'beds', '2052'), ('2017', 'ES532C1', 'Algeciras', 'ons_per_res_pop', '3'), ('2017', 'ES532C1', 'Algeciras', 'beds_per_1000res_pop', '16.9'), ('2017', 'ES533C1', 'Marbella', 'ons', '4314312'), ('2017', 'ES533C1', 'Marbella', 'beds', '27605'), ('2017', 'ES533C1', 'Marbella', 'ons_per_res_pop', '30.6'), ('2017', 'ES533C1', 'Marbella', 'beds_per_1000res_pop', '195.5'), ('2017', 'ES534C1', 'Torrejón de Ardoz', 'ons', null), ('2017', 'ES534C1', 'Torrejón de Ardoz', 'beds', null), ('2017', 'ES534C1', 'Torrejón de Ardoz', 'ons_per_res_pop', null), ('2017', 'ES534C1', 'Torrejón de Ardoz', 'beds_per_1000res_pop', null), ('2017', 'ES535C1', 'Alcobendas', 'ons', null), ('2017', 'ES535C1', 'Alcobendas', 'beds', null), ('2017', 'ES535C1', 'Alcobendas', 'ons_per_res_pop', null), ('2017', 'ES535C1', 'Alcobendas', 'beds_per_1000res_pop', null), ('2017', 'ES536C1', 'Alcalá de Guadaíra', 'ons', null), ('2017', 'ES536C1', 'Alcalá de Guadaíra', 'beds', null), ('2017', 'ES536C1', 'Alcalá de Guadaíra', 'ons_per_res_pop', null), ('2017', 'ES536C1', 'Alcalá de Guadaíra', 'beds_per_1000res_pop', null), ('2017', 'ES537C1', 'Alcoy', 'ons', null), ('2017', 'ES537C1', 'Alcoy', 'beds', null), ('2017', 'ES537C1', 'Alcoy', 'ons_per_res_pop', null), ('2017', 'ES537C1', 'Alcoy', 'beds_per_1000res_pop', null), ('2017', 'ES538C1', 'Ávila', 'ons', '463172'), ('2017', 'ES538C1', 'Ávila', 'beds', '3006'), ('2017', 'ES538C1', 'Ávila', 'ons_per_res_pop', '8'), ('2017', 'ES538C1', 'Ávila', 'beds_per_1000res_pop', '51.7'), ('2017', 'ES539C1', 'Benalmádena', 'ons', '4432167'), ('2017', 'ES539C1', 'Benalmádena', 'beds', '21801'), ('2017', 'ES539C1', 'Benalmádena', 'ons_per_res_pop', '64.4'), ('2017', 'ES539C1', 'Benalmádena', 'beds_per_1000res_pop', '316.6'), ('2017', 'ES540C1', 'Chiclana de la Frontera', 'ons', '2202819'), ('2017', 'ES540C1', 'Chiclana de la Frontera', 'beds', '14381'), ('2017', 'ES540C1', 'Chiclana de la Frontera', 'ons_per_res_pop', '26.5'), ('2017', 'ES540C1', 'Chiclana de la Frontera', 'beds_per_1000res_pop', '173'), ('2017', 'ES541C1', 'Collado Villalba', 'ons', null), ('2017', 'ES541C1', 'Collado Villalba', 'beds', null), ('2017', 'ES541C1', 'Collado Villalba', 'ons_per_res_pop', null), ('2017', 'ES541C1', 'Collado Villalba', 'beds_per_1000res_pop', null), ('2017', 'ES542C1', 'Cuenca', 'ons', '417108'), ('2017', 'ES542C1', 'Cuenca', 'beds', '4692'), ('2017', 'ES542C1', 'Cuenca', 'ons_per_res_pop', '7.6'), ('2017', 'ES542C1', 'Cuenca', 'beds_per_1000res_pop', '85.5'), ('2017', 'ES543C1', 'Eivissa', 'ons', '1991478'), ('2017', 'ES543C1', 'Eivissa', 'beds', '14114'), ('2017', 'ES543C1', 'Eivissa', 'ons_per_res_pop', '40.1'), ('2017', 'ES543C1', 'Eivissa', 'beds_per_1000res_pop', '284'), ('2017', 'ES544C1', 'Linares', 'ons', null), ('2017', 'ES544C1', 'Linares', 'beds', null), ('2017', 'ES544C1', 'Linares', 'ons_per_res_pop', null), ('2017', 'ES544C1', 'Linares', 'beds_per_1000res_pop', null), ('2017', 'ES545C1', 'Lorca', 'ons', null), ('2017', 'ES545C1', 'Lorca', 'beds', null), ('2017', 'ES545C1', 'Lorca', 'ons_per_res_pop', null), ('2017', 'ES545C1', 'Lorca', 'beds_per_1000res_pop', null), ('2017', 'ES546C1', 'Mérida', 'ons', '385641'), ('2017', 'ES546C1', 'Mérida', 'beds', '2384'), ('2017', 'ES546C1', 'Mérida', 'ons_per_res_pop', '6.5'), ('2017', 'ES546C1', 'Mérida', 'beds_per_1000res_pop', '40.3'), ('2017', 'ES547C1', 'Sagunto', 'ons', null), ('2017', 'ES547C1', 'Sagunto', 'beds', null), ('2017', 'ES547C1', 'Sagunto', 'ons_per_res_pop', null), ('2017', 'ES547C1', 'Sagunto', 'beds_per_1000res_pop', null), ('2017', 'ES548C1', 'Torrelavega', 'ons', null), ('2017', 'ES548C1', 'Torrelavega', 'beds', null), ('2017', 'ES548C1', 'Torrelavega', 'ons_per_res_pop', null), ('2017', 'ES548C1', 'Torrelavega', 'beds_per_1000res_pop', null), ('2017', 'ES549C1', 'Valdemoro', 'ons', null), ('2017', 'ES549C1', 'Valdemoro', 'beds', null), ('2017', 'ES549C1', 'Valdemoro', 'ons_per_res_pop', null), ('2017', 'ES549C1', 'Valdemoro', 'beds_per_1000res_pop', null), ('2017', 'ES550C1', 'Puerto de la Cruz', 'ons', '5878859'), ('2017', 'ES550C1', 'Puerto de la Cruz', 'beds', '21442'), ('2017', 'ES550C1', 'Puerto de la Cruz', 'ons_per_res_pop', '195.7'), ('2017', 'ES550C1', 'Puerto de la Cruz', 'beds_per_1000res_pop', '713.9'), ('2017', 'ES551C1', 'Paterna', 'ons', null), ('2017', 'ES551C1', 'Paterna', 'beds', null), ('2017', 'ES551C1', 'Paterna', 'ons_per_res_pop', null), ('2017', 'ES551C1', 'Paterna', 'beds_per_1000res_pop', null), ('2017', 'ES552C1', 'Igualada', 'ons', null), ('2017', 'ES552C1', 'Igualada', 'beds', null), ('2017', 'ES552C1', 'Igualada', 'ons_per_res_pop', null), ('2017', 'ES552C1', 'Igualada', 'beds_per_1000res_pop', null), ('2017', 'ES553C1', 'Torrent', 'ons', null), ('2017', 'ES553C1', 'Torrent', 'beds', null), ('2017', 'ES553C1', 'Torrent', 'ons_per_res_pop', null), ('2017', 'ES553C1', 'Torrent', 'beds_per_1000res_pop', null), ('2017', 'ES554C1', 'Mislata', 'ons', null), ('2017', 'ES554C1', 'Mislata', 'beds', null), ('2017', 'ES554C1', 'Mislata', 'ons_per_res_pop', null), ('2017', 'ES554C1', 'Mislata', 'beds_per_1000res_pop', null), ('2017', 'ES555C1', 'Rivas-Vaciamadrid', 'ons', null), ('2017', 'ES555C1', 'Rivas-Vaciamadrid', 'beds', null), ('2017', 'ES555C1', 'Rivas-Vaciamadrid', 'ons_per_res_pop', null), ('2017', 'ES555C1', 'Rivas-Vaciamadrid', 'beds_per_1000res_pop', null), ('2017', 'ES556C1', 'Santurtzi', 'ons', null), ('2017', 'ES556C1', 'Santurtzi', 'beds', null), ('2017', 'ES556C1', 'Santurtzi', 'ons_per_res_pop', null), ('2017', 'ES556C1', 'Santurtzi', 'beds_per_1000res_pop', null), ('2017', 'ES557C1', 'Esplugues de Llobregat', 'ons', null), ('2017', 'ES557C1', 'Esplugues de Llobregat', 'beds', null), ('2017', 'ES557C1', 'Esplugues de Llobregat', 'ons_per_res_pop', null), ('2017', 'ES557C1', 'Esplugues de Llobregat', 'beds_per_1000res_pop', null), ('2017', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons', null), ('2017', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds', null), ('2017', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons_per_res_pop', null), ('2017', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds_per_1000res_pop', null), ('2017', 'FR', 'France', 'ons', '313600000'), ('2017', 'FR', 'France', 'beds', '4993927'), ('2017', 'FR', 'France', 'ons_per_res_pop', null), ('2017', 'FR', 'France', 'beds_per_1000res_pop', null), ('2017', 'FR001C1', 'Paris', 'ons', '15932230'), ('2017', 'FR001C1', 'Paris', 'beds', '310782'), ('2017', 'FR001C1', 'Paris', 'ons_per_res_pop', null), ('2017', 'FR001C1', 'Paris', 'beds_per_1000res_pop', null), ('2017', 'FR003C2', 'Lyon', 'ons', '2683694'), ('2017', 'FR003C2', 'Lyon', 'beds', '30566'), ('2017', 'FR003C2', 'Lyon', 'ons_per_res_pop', null), ('2017', 'FR003C2', 'Lyon', 'beds_per_1000res_pop', null), ('2017', 'FR004C2', 'Toulouse', 'ons', '2418660'), ('2017', 'FR004C2', 'Toulouse', 'beds', '24102'), ('2017', 'FR004C2', 'Toulouse', 'ons_per_res_pop', null), ('2017', 'FR004C2', 'Toulouse', 'beds_per_1000res_pop', null), ('2017', 'FR006C2', 'Strasbourg', 'ons', '1496183'), ('2017', 'FR006C2', 'Strasbourg', 'beds', '16226'), ('2017', 'FR006C2', 'Strasbourg', 'ons_per_res_pop', null), ('2017', 'FR006C2', 'Strasbourg', 'beds_per_1000res_pop', null), ('2017', 'FR007C1', 'Bordeaux', 'ons', '2581733'), ('2017', 'FR007C1', 'Bordeaux', 'beds', '23394'), ('2017', 'FR007C1', 'Bordeaux', 'ons_per_res_pop', null), ('2017', 'FR007C1', 'Bordeaux', 'beds_per_1000res_pop', null), ('2017', 'FR008C1', 'Nantes', 'ons', '1553388'), ('2017', 'FR008C1', 'Nantes', 'beds', '14056'), ('2017', 'FR008C1', 'Nantes', 'ons_per_res_pop', null), ('2017', 'FR008C1', 'Nantes', 'beds_per_1000res_pop', null), ('2017', 'FR009C1', 'Lille', 'ons', '684478'), ('2017', 'FR009C1', 'Lille', 'beds', '15949'), ('2017', 'FR009C1', 'Lille', 'ons_per_res_pop', null), ('2017', 'FR009C1', 'Lille', 'beds_per_1000res_pop', null), ('2017', 'FR010C1', 'Montpellier', 'ons', '855348'), ('2017', 'FR010C1', 'Montpellier', 'beds', '9004'), ('2017', 'FR010C1', 'Montpellier', 'ons_per_res_pop', null), ('2017', 'FR010C1', 'Montpellier', 'beds_per_1000res_pop', null), ('2017', 'FR011C1', 'Saint-Etienne', 'ons', '229195'), ('2017', 'FR011C1', 'Saint-Etienne', 'beds', '3542'), ('2017', 'FR011C1', 'Saint-Etienne', 'ons_per_res_pop', null), ('2017', 'FR011C1', 'Saint-Etienne', 'beds_per_1000res_pop', null), ('2017', 'FR012C1', 'Le Havre', 'ons', '178901'), ('2017', 'FR012C1', 'Le Havre', 'beds', '4126'), ('2017', 'FR012C1', 'Le Havre', 'ons_per_res_pop', null), ('2017', 'FR012C1', 'Le Havre', 'beds_per_1000res_pop', null), ('2017', 'FR013C2', 'Rennes', 'ons', '705701'), ('2017', 'FR013C2', 'Rennes', 'beds', '6655'), ('2017', 'FR013C2', 'Rennes', 'ons_per_res_pop', null), ('2017', 'FR013C2', 'Rennes', 'beds_per_1000res_pop', null), ('2017', 'FR014C2', 'Amiens', 'ons', '205361'), ('2017', 'FR014C2', 'Amiens', 'beds', '2548'), ('2017', 'FR014C2', 'Amiens', 'ons_per_res_pop', null), ('2017', 'FR014C2', 'Amiens', 'beds_per_1000res_pop', null), ('2017', 'FR016C1', 'Nancy', 'ons', '469583'), ('2017', 'FR016C1', 'Nancy', 'beds', '5302'), ('2017', 'FR016C1', 'Nancy', 'ons_per_res_pop', null), ('2017', 'FR016C1', 'Nancy', 'beds_per_1000res_pop', null), ('2017', 'FR017C2', 'Metz', 'ons', '203255'), ('2017', 'FR017C2', 'Metz', 'beds', '4617'), ('2017', 'FR017C2', 'Metz', 'ons_per_res_pop', null), ('2017', 'FR017C2', 'Metz', 'beds_per_1000res_pop', null), ('2017', 'FR018C1', 'Reims', 'ons', '471841'), ('2017', 'FR018C1', 'Reims', 'beds', '6497'), ('2017', 'FR018C1', 'Reims', 'ons_per_res_pop', null), ('2017', 'FR018C1', 'Reims', 'beds_per_1000res_pop', null), ('2017', 'FR019C1', 'Orléans', 'ons', '258682'), ('2017', 'FR019C1', 'Orléans', 'beds', '4558'), ('2017', 'FR019C1', 'Orléans', 'ons_per_res_pop', null), ('2017', 'FR019C1', 'Orléans', 'beds_per_1000res_pop', null), ('2017', 'FR020C2', 'Dijon', 'ons', '370349'), ('2017', 'FR020C2', 'Dijon', 'beds', '6627'), ('2017', 'FR020C2', 'Dijon', 'ons_per_res_pop', null), ('2017', 'FR020C2', 'Dijon', 'beds_per_1000res_pop', null), ('2017', 'FR021C2', 'Poitiers', 'ons', '158118'), ('2017', 'FR021C2', 'Poitiers', 'beds', '2980'), ('2017', 'FR021C2', 'Poitiers', 'ons_per_res_pop', null), ('2017', 'FR021C2', 'Poitiers', 'beds_per_1000res_pop', null), ('2017', 'FR022C2', 'Clermont-Ferrand', 'ons', '500514'), ('2017', 'FR022C2', 'Clermont-Ferrand', 'beds', '7982'), ('2017', 'FR022C2', 'Clermont-Ferrand', 'ons_per_res_pop', null), ('2017', 'FR022C2', 'Clermont-Ferrand', 'beds_per_1000res_pop', null), ('2017', 'FR023C2', 'Caen', 'ons', '340773'), ('2017', 'FR023C2', 'Caen', 'beds', '4947'), ('2017', 'FR023C2', 'Caen', 'ons_per_res_pop', null), ('2017', 'FR023C2', 'Caen', 'beds_per_1000res_pop', null), ('2017', 'FR024C2', 'Limoges', 'ons', '175101'), ('2017', 'FR024C2', 'Limoges', 'beds', '4686'), ('2017', 'FR024C2', 'Limoges', 'ons_per_res_pop', null), ('2017', 'FR024C2', 'Limoges', 'beds_per_1000res_pop', null), ('2017', 'FR025C1', 'Besançon', 'ons', '156962'), ('2017', 'FR025C1', 'Besançon', 'beds', '3173'), ('2017', 'FR025C1', 'Besançon', 'ons_per_res_pop', null), ('2017', 'FR025C1', 'Besançon', 'beds_per_1000res_pop', null), ('2017', 'FR026C2', 'Grenoble', 'ons', '635458'), ('2017', 'FR026C2', 'Grenoble', 'beds', '7839'), ('2017', 'FR026C2', 'Grenoble', 'ons_per_res_pop', null), ('2017', 'FR026C2', 'Grenoble', 'beds_per_1000res_pop', null), ('2017', 'FR027C1', 'Ajaccio', 'ons', null), ('2017', 'FR027C1', 'Ajaccio', 'beds', '4962'), ('2017', 'FR027C1', 'Ajaccio', 'ons_per_res_pop', null), ('2017', 'FR027C1', 'Ajaccio', 'beds_per_1000res_pop', null), ('2017', 'FR028C1', 'Saint Denis', 'ons', null), ('2017', 'FR028C1', 'Saint Denis', 'beds', '1336'), ('2017', 'FR028C1', 'Saint Denis', 'ons_per_res_pop', null), ('2017', 'FR028C1', 'Saint Denis', 'beds_per_1000res_pop', null), ('2017', 'FR030C1', 'Fort-de-France', 'ons', null), ('2017', 'FR030C1', 'Fort-de-France', 'beds', '894'), ('2017', 'FR030C1', 'Fort-de-France', 'ons_per_res_pop', null), ('2017', 'FR030C1', 'Fort-de-France', 'beds_per_1000res_pop', null), ('2017', 'FR032C2', 'Toulon', 'ons', '1078632'), ('2017', 'FR032C2', 'Toulon', 'beds', '14803'), ('2017', 'FR032C2', 'Toulon', 'ons_per_res_pop', null), ('2017', 'FR032C2', 'Toulon', 'beds_per_1000res_pop', null), ('2017', 'FR034C2', 'Valenciennes', 'ons', '52222'), ('2017', 'FR034C2', 'Valenciennes', 'beds', '1734'), ('2017', 'FR034C2', 'Valenciennes', 'ons_per_res_pop', null), ('2017', 'FR034C2', 'Valenciennes', 'beds_per_1000res_pop', null), ('2017', 'FR035C2', 'Tours', 'ons', '327903'), ('2017', 'FR035C2', 'Tours', 'beds', '7959'), ('2017', 'FR035C2', 'Tours', 'ons_per_res_pop', null), ('2017', 'FR035C2', 'Tours', 'beds_per_1000res_pop', null), ('2017', 'FR036C2', 'Angers', 'ons', '264528'), ('2017', 'FR036C2', 'Angers', 'beds', '4001'), ('2017', 'FR036C2', 'Angers', 'ons_per_res_pop', null), ('2017', 'FR036C2', 'Angers', 'beds_per_1000res_pop', null), ('2017', 'FR037C1', 'Brest', 'ons', '223762'), ('2017', 'FR037C1', 'Brest', 'beds', '4005'), ('2017', 'FR037C1', 'Brest', 'ons_per_res_pop', null), ('2017', 'FR037C1', 'Brest', 'beds_per_1000res_pop', null), ('2017', 'FR038C2', 'Le Mans', 'ons', '149273'), ('2017', 'FR038C2', 'Le Mans', 'beds', '3473'), ('2017', 'FR038C2', 'Le Mans', 'ons_per_res_pop', null), ('2017', 'FR038C2', 'Le Mans', 'beds_per_1000res_pop', null), ('2017', 'FR039C2', 'Avignon', 'ons', '487390'), ('2017', 'FR039C2', 'Avignon', 'beds', '10322'), ('2017', 'FR039C2', 'Avignon', 'ons_per_res_pop', null), ('2017', 'FR039C2', 'Avignon', 'beds_per_1000res_pop', null), ('2017', 'FR040C2', 'Mulhouse', 'ons', '282067'), ('2017', 'FR040C2', 'Mulhouse', 'beds', '4676'), ('2017', 'FR040C2', 'Mulhouse', 'ons_per_res_pop', null), ('2017', 'FR040C2', 'Mulhouse', 'beds_per_1000res_pop', null), ('2017', 'FR042C1', 'Dunkerque', 'ons', '241000'), ('2017', 'FR042C1', 'Dunkerque', 'beds', '3654'), ('2017', 'FR042C1', 'Dunkerque', 'ons_per_res_pop', null), ('2017', 'FR042C1', 'Dunkerque', 'beds_per_1000res_pop', null), ('2017', 'FR043C2', 'Perpignan', 'ons', '230863'), ('2017', 'FR043C2', 'Perpignan', 'beds', '4063'), ('2017', 'FR043C2', 'Perpignan', 'ons_per_res_pop', null), ('2017', 'FR043C2', 'Perpignan', 'beds_per_1000res_pop', null), ('2017', 'FR044C2', 'Nîmes', 'ons', '396519'), ('2017', 'FR044C2', 'Nîmes', 'beds', '4517'), ('2017', 'FR044C2', 'Nîmes', 'ons_per_res_pop', null), ('2017', 'FR044C2', 'Nîmes', 'beds_per_1000res_pop', null), ('2017', 'FR045C2', 'Pau', 'ons', '240143'), ('2017', 'FR045C2', 'Pau', 'beds', '3453'), ('2017', 'FR045C2', 'Pau', 'ons_per_res_pop', null), ('2017', 'FR045C2', 'Pau', 'beds_per_1000res_pop', null), ('2017', 'FR046C2', 'Bayonne', 'ons', '1268411'), ('2017', 'FR046C2', 'Bayonne', 'beds', '13257'), ('2017', 'FR046C2', 'Bayonne', 'ons_per_res_pop', null), ('2017', 'FR046C2', 'Bayonne', 'beds_per_1000res_pop', null), ('2017', 'FR047C2', 'Annemasse', 'ons', '352078'), ('2017', 'FR047C2', 'Annemasse', 'beds', '2376'), ('2017', 'FR047C2', 'Annemasse', 'ons_per_res_pop', null), ('2017', 'FR047C2', 'Annemasse', 'beds_per_1000res_pop', null), ('2017', 'FR048C1', 'Annecy', 'ons', '230926'), ('2017', 'FR048C1', 'Annecy', 'beds', '5469'), ('2017', 'FR048C1', 'Annecy', 'ons_per_res_pop', null), ('2017', 'FR048C1', 'Annecy', 'beds_per_1000res_pop', null), ('2017', 'FR049C2', 'Lorient', 'ons', '21411'), ('2017', 'FR049C2', 'Lorient', 'beds', '1396'), ('2017', 'FR049C2', 'Lorient', 'ons_per_res_pop', null), ('2017', 'FR049C2', 'Lorient', 'beds_per_1000res_pop', null), ('2017', 'FR050C2', 'Montbéliard', 'ons', null), ('2017', 'FR050C2', 'Montbéliard', 'beds', '2110'), ('2017', 'FR050C2', 'Montbéliard', 'ons_per_res_pop', null), ('2017', 'FR050C2', 'Montbéliard', 'beds_per_1000res_pop', null), ('2017', 'FR051C2', 'Troyes', 'ons', '57644'), ('2017', 'FR051C2', 'Troyes', 'beds', '2004'), ('2017', 'FR051C2', 'Troyes', 'ons_per_res_pop', null), ('2017', 'FR051C2', 'Troyes', 'beds_per_1000res_pop', null), ('2017', 'FR052C2', 'Saint-Nazaire', 'ons', '455597'), ('2017', 'FR052C2', 'Saint-Nazaire', 'beds', '2766'), ('2017', 'FR052C2', 'Saint-Nazaire', 'ons_per_res_pop', null), ('2017', 'FR052C2', 'Saint-Nazaire', 'beds_per_1000res_pop', null), ('2017', 'FR053C1', 'La Rochelle', 'ons', '689915'), ('2017', 'FR053C1', 'La Rochelle', 'beds', '7707'), ('2017', 'FR053C1', 'La Rochelle', 'ons_per_res_pop', null), ('2017', 'FR053C1', 'La Rochelle', 'beds_per_1000res_pop', null), ('2017', 'FR056C1', 'Angoulême', 'ons', null), ('2017', 'FR056C1', 'Angoulême', 'beds', '1990'), ('2017', 'FR056C1', 'Angoulême', 'ons_per_res_pop', null), ('2017', 'FR056C1', 'Angoulême', 'beds_per_1000res_pop', null), ('2017', 'FR057C2', 'Boulogne-sur-Mer', 'ons', '51543'), ('2017', 'FR057C2', 'Boulogne-sur-Mer', 'beds', '2580'), ('2017', 'FR057C2', 'Boulogne-sur-Mer', 'ons_per_res_pop', null), ('2017', 'FR057C2', 'Boulogne-sur-Mer', 'beds_per_1000res_pop', null), ('2017', 'FR058C2', 'Chambéry', 'ons', '10852'), ('2017', 'FR058C2', 'Chambéry', 'beds', '2200'), ('2017', 'FR058C2', 'Chambéry', 'ons_per_res_pop', null), ('2017', 'FR058C2', 'Chambéry', 'beds_per_1000res_pop', null), ('2017', 'FR059C2', 'Chalon-sur-Saône', 'ons', null), ('2017', 'FR059C2', 'Chalon-sur-Saône', 'beds', '3219'), ('2017', 'FR059C2', 'Chalon-sur-Saône', 'ons_per_res_pop', null), ('2017', 'FR059C2', 'Chalon-sur-Saône', 'beds_per_1000res_pop', null), ('2017', 'FR060C2', 'Chartres', 'ons', '139001'), ('2017', 'FR060C2', 'Chartres', 'beds', '3079'), ('2017', 'FR060C2', 'Chartres', 'ons_per_res_pop', null), ('2017', 'FR060C2', 'Chartres', 'beds_per_1000res_pop', null), ('2017', 'FR061C2', 'Niort', 'ons', null), ('2017', 'FR061C2', 'Niort', 'beds', '3793'), ('2017', 'FR061C2', 'Niort', 'ons_per_res_pop', null), ('2017', 'FR061C2', 'Niort', 'beds_per_1000res_pop', null), ('2017', 'FR062C1', 'Calais', 'ons', '68818'), ('2017', 'FR062C1', 'Calais', 'beds', '1650'), ('2017', 'FR062C1', 'Calais', 'ons_per_res_pop', null), ('2017', 'FR062C1', 'Calais', 'beds_per_1000res_pop', null), ('2017', 'FR063C2', 'Béziers', 'ons', '203876'), ('2017', 'FR063C2', 'Béziers', 'beds', '2985'), ('2017', 'FR063C2', 'Béziers', 'ons_per_res_pop', null), ('2017', 'FR063C2', 'Béziers', 'beds_per_1000res_pop', null), ('2017', 'FR064C2', 'Arras', 'ons', null), ('2017', 'FR064C2', 'Arras', 'beds', '1548'), ('2017', 'FR064C2', 'Arras', 'ons_per_res_pop', null), ('2017', 'FR064C2', 'Arras', 'beds_per_1000res_pop', null), ('2017', 'FR065C2', 'Bourges', 'ons', '62192'), ('2017', 'FR065C2', 'Bourges', 'beds', '2186'), ('2017', 'FR065C2', 'Bourges', 'ons_per_res_pop', null), ('2017', 'FR065C2', 'Bourges', 'beds_per_1000res_pop', null), ('2017', 'FR066C1', 'Saint-Brieuc', 'ons', '38260'), ('2017', 'FR066C1', 'Saint-Brieuc', 'beds', '1636'), ('2017', 'FR066C1', 'Saint-Brieuc', 'ons_per_res_pop', null), ('2017', 'FR066C1', 'Saint-Brieuc', 'beds_per_1000res_pop', null), ('2017', 'FR067C2', 'Quimper', 'ons', null), ('2017', 'FR067C2', 'Quimper', 'beds', '3905'), ('2017', 'FR067C2', 'Quimper', 'ons_per_res_pop', null), ('2017', 'FR067C2', 'Quimper', 'beds_per_1000res_pop', null), ('2017', 'FR068C2', 'Vannes', 'ons', null), ('2017', 'FR068C2', 'Vannes', 'beds', '12495'), ('2017', 'FR068C2', 'Vannes', 'ons_per_res_pop', null), ('2017', 'FR068C2', 'Vannes', 'beds_per_1000res_pop', null), ('2017', 'FR069C1', 'Cherbourg', 'ons', '133922'), ('2017', 'FR069C1', 'Cherbourg', 'beds', '2731'), ('2017', 'FR069C1', 'Cherbourg', 'ons_per_res_pop', null), ('2017', 'FR069C1', 'Cherbourg', 'beds_per_1000res_pop', null), ('2017', 'FR073C2', 'Tarbes', 'ons', null), ('2017', 'FR073C2', 'Tarbes', 'beds', '1770'), ('2017', 'FR073C2', 'Tarbes', 'ons_per_res_pop', null), ('2017', 'FR073C2', 'Tarbes', 'beds_per_1000res_pop', null), ('2017', 'FR074C2', 'Compiègne', 'ons', null), ('2017', 'FR074C2', 'Compiègne', 'beds', '1957'), ('2017', 'FR074C2', 'Compiègne', 'ons_per_res_pop', null), ('2017', 'FR074C2', 'Compiègne', 'beds_per_1000res_pop', null), ('2017', 'FR076C2', 'Belfort', 'ons', '39840'), ('2017', 'FR076C2', 'Belfort', 'beds', '1930'), ('2017', 'FR076C2', 'Belfort', 'ons_per_res_pop', null), ('2017', 'FR076C2', 'Belfort', 'beds_per_1000res_pop', null), ('2017', 'FR077C1', 'Roanne', 'ons', '10616'), ('2017', 'FR077C1', 'Roanne', 'beds', '474'), ('2017', 'FR077C1', 'Roanne', 'ons_per_res_pop', null), ('2017', 'FR077C1', 'Roanne', 'beds_per_1000res_pop', null), ('2017', 'FR079C2', 'Saint-Quentin', 'ons', '4247'), ('2017', 'FR079C2', 'Saint-Quentin', 'beds', '1182'), ('2017', 'FR079C2', 'Saint-Quentin', 'ons_per_res_pop', null), ('2017', 'FR079C2', 'Saint-Quentin', 'beds_per_1000res_pop', null), ('2017', 'FR082C2', 'Beauvais', 'ons', null), ('2017', 'FR082C2', 'Beauvais', 'beds', '1488'), ('2017', 'FR082C2', 'Beauvais', 'ons_per_res_pop', null), ('2017', 'FR082C2', 'Beauvais', 'beds_per_1000res_pop', null), ('2017', 'FR084C1', 'Creil', 'ons', null), ('2017', 'FR084C1', 'Creil', 'beds', '1164'), ('2017', 'FR084C1', 'Creil', 'ons_per_res_pop', null), ('2017', 'FR084C1', 'Creil', 'beds_per_1000res_pop', null), ('2017', 'FR086C2', 'Evreux', 'ons', null), ('2017', 'FR086C2', 'Evreux', 'beds', '1276'), ('2017', 'FR086C2', 'Evreux', 'ons_per_res_pop', null), ('2017', 'FR086C2', 'Evreux', 'beds_per_1000res_pop', null), ('2017', 'FR090C2', 'Châteauroux', 'ons', null), ('2017', 'FR090C2', 'Châteauroux', 'beds', '1932'), ('2017', 'FR090C2', 'Châteauroux', 'ons_per_res_pop', null), ('2017', 'FR090C2', 'Châteauroux', 'beds_per_1000res_pop', null), ('2017', 'FR093C2', 'Brive-la-Gaillarde', 'ons', null), ('2017', 'FR093C2', 'Brive-la-Gaillarde', 'beds', '2542'), ('2017', 'FR093C2', 'Brive-la-Gaillarde', 'ons_per_res_pop', null), ('2017', 'FR093C2', 'Brive-la-Gaillarde', 'beds_per_1000res_pop', null), ('2017', 'FR096C2', 'Albi', 'ons', null), ('2017', 'FR096C2', 'Albi', 'beds', '2059'), ('2017', 'FR096C2', 'Albi', 'ons_per_res_pop', null), ('2017', 'FR096C2', 'Albi', 'beds_per_1000res_pop', null), ('2017', 'FR099C1', 'Fréjus', 'ons', '4875801'), ('2017', 'FR099C1', 'Fréjus', 'beds', '50803'), ('2017', 'FR099C1', 'Fréjus', 'ons_per_res_pop', null), ('2017', 'FR099C1', 'Fréjus', 'beds_per_1000res_pop', null), ('2017', 'FR104C2', 'Châlons-en-Champagne', 'ons', null), ('2017', 'FR104C2', 'Châlons-en-Champagne', 'beds', '1600'), ('2017', 'FR104C2', 'Châlons-en-Champagne', 'ons_per_res_pop', null), ('2017', 'FR104C2', 'Châlons-en-Champagne', 'beds_per_1000res_pop', null), ('2017', 'FR201C1', 'Aubagne', 'ons', null), ('2017', 'FR201C1', 'Aubagne', 'beds', '1242'), ('2017', 'FR201C1', 'Aubagne', 'ons_per_res_pop', null), ('2017', 'FR201C1', 'Aubagne', 'beds_per_1000res_pop', null), ('2017', 'FR202C1', 'Aix-en-Provence', 'ons', '684724'), ('2017', 'FR202C1', 'Aix-en-Provence', 'beds', '8357'), ('2017', 'FR202C1', 'Aix-en-Provence', 'ons_per_res_pop', null), ('2017', 'FR202C1', 'Aix-en-Provence', 'beds_per_1000res_pop', null), ('2017', 'FR203C1', 'Marseille', 'ons', '1546638'), ('2017', 'FR203C1', 'Marseille', 'beds', '17670'), ('2017', 'FR203C1', 'Marseille', 'ons_per_res_pop', null), ('2017', 'FR203C1', 'Marseille', 'beds_per_1000res_pop', null), ('2017', 'FR205C2', 'Nice', 'ons', '4803917'), ('2017', 'FR205C2', 'Nice', 'beds', '65866'), ('2017', 'FR205C2', 'Nice', 'ons_per_res_pop', null), ('2017', 'FR205C2', 'Nice', 'beds_per_1000res_pop', null), ('2017', 'FR206C1', 'CA de Sophia-Antipolis', 'ons', null), ('2017', 'FR206C1', 'CA de Sophia-Antipolis', 'beds', '25084'), ('2017', 'FR206C1', 'CA de Sophia-Antipolis', 'ons_per_res_pop', null), ('2017', 'FR206C1', 'CA de Sophia-Antipolis', 'beds_per_1000res_pop', null), ('2017', 'FR207C1', 'Lens - Liévin', 'ons', '8900'), ('2017', 'FR207C1', 'Lens - Liévin', 'beds', '650'), ('2017', 'FR207C1', 'Lens - Liévin', 'ons_per_res_pop', null), ('2017', 'FR207C1', 'Lens - Liévin', 'beds_per_1000res_pop', null), ('2017', 'FR208C1', 'Hénin - Carvin', 'ons', null), ('2017', 'FR208C1', 'Hénin - Carvin', 'beds', '1254'), ('2017', 'FR208C1', 'Hénin - Carvin', 'ons_per_res_pop', null), ('2017', 'FR208C1', 'Hénin - Carvin', 'beds_per_1000res_pop', null), ('2017', 'FR209C2', 'Douai', 'ons', null), ('2017', 'FR209C2', 'Douai', 'beds', '922'), ('2017', 'FR209C2', 'Douai', 'ons_per_res_pop', null), ('2017', 'FR209C2', 'Douai', 'beds_per_1000res_pop', null), ('2017', 'FR210C1', 'Marne la Vallée', 'ons', null), ('2017', 'FR210C1', 'Marne la Vallée', 'beds', '1742'), ('2017', 'FR210C1', 'Marne la Vallée', 'ons_per_res_pop', null), ('2017', 'FR210C1', 'Marne la Vallée', 'beds_per_1000res_pop', null), ('2017', 'FR211C1', 'Versailles', 'ons', null), ('2017', 'FR211C1', 'Versailles', 'beds', '4224'), ('2017', 'FR211C1', 'Versailles', 'ons_per_res_pop', null), ('2017', 'FR211C1', 'Versailles', 'beds_per_1000res_pop', null), ('2017', 'FR212C1', 'CC de la Boucle de la Seine', 'ons', null), ('2017', 'FR212C1', 'CC de la Boucle de la Seine', 'beds', '965'), ('2017', 'FR212C1', 'CC de la Boucle de la Seine', 'ons_per_res_pop', null), ('2017', 'FR212C1', 'CC de la Boucle de la Seine', 'beds_per_1000res_pop', null), ('2017', 'FR213C1', 'Sénart en Essonne', 'ons', null), ('2017', 'FR213C1', 'Sénart en Essonne', 'beds', '635'), ('2017', 'FR213C1', 'Sénart en Essonne', 'ons_per_res_pop', null), ('2017', 'FR213C1', 'Sénart en Essonne', 'beds_per_1000res_pop', null), ('2017', 'FR214C1', 'Valence', 'ons', '162015'), ('2017', 'FR214C1', 'Valence', 'beds', '3440'), ('2017', 'FR214C1', 'Valence', 'ons_per_res_pop', null), ('2017', 'FR214C1', 'Valence', 'beds_per_1000res_pop', null), ('2017', 'FR215C2', 'Rouen', 'ons', '63750'), ('2017', 'FR215C2', 'Rouen', 'beds', '5730'), ('2017', 'FR215C2', 'Rouen', 'ons_per_res_pop', null), ('2017', 'FR215C2', 'Rouen', 'beds_per_1000res_pop', null), ('2017', 'FR216C1', 'CA Marne et Chantereine', 'ons', null), ('2017', 'FR216C1', 'CA Marne et Chantereine', 'beds', '1280'), ('2017', 'FR216C1', 'CA Marne et Chantereine', 'ons_per_res_pop', null), ('2017', 'FR216C1', 'CA Marne et Chantereine', 'beds_per_1000res_pop', null), ('2017', 'FR217C1', 'CA des deux Rives de la Seine', 'ons', null), ('2017', 'FR217C1', 'CA des deux Rives de la Seine', 'beds', '1721'), ('2017', 'FR217C1', 'CA des deux Rives de la Seine', 'ons_per_res_pop', null), ('2017', 'FR217C1', 'CA des deux Rives de la Seine', 'beds_per_1000res_pop', null), ('2017', 'FR218C1', 'CC des Coteaux de la Seine', 'ons', null), ('2017', 'FR218C1', 'CC des Coteaux de la Seine', 'beds', '1087'), ('2017', 'FR218C1', 'CC des Coteaux de la Seine', 'ons_per_res_pop', null), ('2017', 'FR218C1', 'CC des Coteaux de la Seine', 'beds_per_1000res_pop', null), ('2017', 'FR219C1', 'CA Europ'' Essonne', 'ons', null), ('2017', 'FR219C1', 'CA Europ'' Essonne', 'beds', '3466'), ('2017', 'FR219C1', 'CA Europ'' Essonne', 'ons_per_res_pop', null), ('2017', 'FR219C1', 'CA Europ'' Essonne', 'beds_per_1000res_pop', null), ('2017', 'FR220C1', 'CA Brie Francilienne', 'ons', null), ('2017', 'FR220C1', 'CA Brie Francilienne', 'beds', '980'), ('2017', 'FR220C1', 'CA Brie Francilienne', 'ons_per_res_pop', null), ('2017', 'FR220C1', 'CA Brie Francilienne', 'beds_per_1000res_pop', null), ('2017', 'FR221C1', 'CA les Portes de l''Essonne', 'ons', null), ('2017', 'FR221C1', 'CA les Portes de l''Essonne', 'beds', '1268'), ('2017', 'FR221C1', 'CA les Portes de l''Essonne', 'ons_per_res_pop', null), ('2017', 'FR221C1', 'CA les Portes de l''Essonne', 'beds_per_1000res_pop', null), ('2017', 'FR222C1', 'CA Val et Forêt', 'ons', null), ('2017', 'FR222C1', 'CA Val et Forêt', 'beds', '106'), ('2017', 'FR222C1', 'CA Val et Forêt', 'ons_per_res_pop', null), ('2017', 'FR222C1', 'CA Val et Forêt', 'beds_per_1000res_pop', null), ('2017', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons', null), ('2017', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds', '124'), ('2017', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons_per_res_pop', null), ('2017', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds_per_1000res_pop', null), ('2017', 'FR224C1', 'CA le Parisis', 'ons', null), ('2017', 'FR224C1', 'CA le Parisis', 'beds', '654'), ('2017', 'FR224C1', 'CA le Parisis', 'ons_per_res_pop', null), ('2017', 'FR224C1', 'CA le Parisis', 'beds_per_1000res_pop', null), ('2017', 'FR304C1', 'Melun', 'ons', '180613'), ('2017', 'FR304C1', 'Melun', 'beds', '1982'), ('2017', 'FR304C1', 'Melun', 'ons_per_res_pop', null), ('2017', 'FR304C1', 'Melun', 'beds_per_1000res_pop', null), ('2017', 'FR305C1', 'Meaux', 'ons', null), ('2017', 'FR305C1', 'Meaux', 'beds', '380'), ('2017', 'FR305C1', 'Meaux', 'ons_per_res_pop', null), ('2017', 'FR305C1', 'Meaux', 'beds_per_1000res_pop', null), ('2017', 'FR306C1', 'Mantes en Yvelines', 'ons', '8534'), ('2017', 'FR306C1', 'Mantes en Yvelines', 'beds', '602'), ('2017', 'FR306C1', 'Mantes en Yvelines', 'ons_per_res_pop', null), ('2017', 'FR306C1', 'Mantes en Yvelines', 'beds_per_1000res_pop', null), ('2017', 'FR308C1', 'Evry', 'ons', null), ('2017', 'FR308C1', 'Evry', 'beds', '2022'), ('2017', 'FR308C1', 'Evry', 'ons_per_res_pop', null), ('2017', 'FR308C1', 'Evry', 'beds_per_1000res_pop', null), ('2017', 'FR309C1', 'CA du Plateau de Saclay', 'ons', null), ('2017', 'FR309C1', 'CA du Plateau de Saclay', 'beds', '1344'), ('2017', 'FR309C1', 'CA du Plateau de Saclay', 'ons_per_res_pop', null), ('2017', 'FR309C1', 'CA du Plateau de Saclay', 'beds_per_1000res_pop', null), ('2017', 'FR310C1', 'CA de Seine Essonne', 'ons', null), ('2017', 'FR310C1', 'CA de Seine Essonne', 'beds', '874'), ('2017', 'FR310C1', 'CA de Seine Essonne', 'ons_per_res_pop', null), ('2017', 'FR310C1', 'CA de Seine Essonne', 'beds_per_1000res_pop', null), ('2017', 'FR311C1', 'CA du Val d''Orge', 'ons', null), ('2017', 'FR311C1', 'CA du Val d''Orge', 'beds', '1658'), ('2017', 'FR311C1', 'CA du Val d''Orge', 'ons_per_res_pop', null), ('2017', 'FR311C1', 'CA du Val d''Orge', 'beds_per_1000res_pop', null), ('2017', 'FR312C1', 'CA du Val d''Yerres', 'ons', null), ('2017', 'FR312C1', 'CA du Val d''Yerres', 'beds', '574'), ('2017', 'FR312C1', 'CA du Val d''Yerres', 'ons_per_res_pop', null), ('2017', 'FR312C1', 'CA du Val d''Yerres', 'beds_per_1000res_pop', null), ('2017', 'FR313C1', 'CA Sénart - Val de Seine', 'ons', null), ('2017', 'FR313C1', 'CA Sénart - Val de Seine', 'beds', '388'), ('2017', 'FR313C1', 'CA Sénart - Val de Seine', 'ons_per_res_pop', null), ('2017', 'FR313C1', 'CA Sénart - Val de Seine', 'beds_per_1000res_pop', null), ('2017', 'FR322C1', 'CA Val de France', 'ons', null), ('2017', 'FR322C1', 'CA Val de France', 'beds', '882'), ('2017', 'FR322C1', 'CA Val de France', 'ons_per_res_pop', null), ('2017', 'FR322C1', 'CA Val de France', 'beds_per_1000res_pop', null), ('2017', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons', null), ('2017', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds', '756'), ('2017', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons_per_res_pop', null), ('2017', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds_per_1000res_pop', null), ('2017', 'FR324C1', 'Martigues', 'ons', '557996'), ('2017', 'FR324C1', 'Martigues', 'beds', '6965'), ('2017', 'FR324C1', 'Martigues', 'ons_per_res_pop', null), ('2017', 'FR324C1', 'Martigues', 'beds_per_1000res_pop', null), ('2017', 'FR501C1', 'Argenteuil - Bezons', 'ons', null), ('2017', 'FR501C1', 'Argenteuil - Bezons', 'beds', '896'), ('2017', 'FR501C1', 'Argenteuil - Bezons', 'ons_per_res_pop', null), ('2017', 'FR501C1', 'Argenteuil - Bezons', 'beds_per_1000res_pop', null), ('2017', 'FR504C1', 'Cergy-Pontoise', 'ons', null), ('2017', 'FR504C1', 'Cergy-Pontoise', 'beds', '3442'), ('2017', 'FR504C1', 'Cergy-Pontoise', 'ons_per_res_pop', null), ('2017', 'FR504C1', 'Cergy-Pontoise', 'beds_per_1000res_pop', null), ('2017', 'FR505C1', 'Charleville-Mézières', 'ons', null), ('2017', 'FR505C1', 'Charleville-Mézières', 'beds', '1609'), ('2017', 'FR505C1', 'Charleville-Mézières', 'ons_per_res_pop', null), ('2017', 'FR505C1', 'Charleville-Mézières', 'beds_per_1000res_pop', null), ('2017', 'FR506C1', 'Colmar', 'ons', '193212'), ('2017', 'FR506C1', 'Colmar', 'beds', '3990'), ('2017', 'FR506C1', 'Colmar', 'ons_per_res_pop', null), ('2017', 'FR506C1', 'Colmar', 'beds_per_1000res_pop', null), ('2017', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons', null), ('2017', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds', '628'), ('2017', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons_per_res_pop', null), ('2017', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds_per_1000res_pop', null), ('2017', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons', null), ('2017', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds', '3420'), ('2017', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons_per_res_pop', null), ('2017', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds_per_1000res_pop', null), ('2017', 'FR519C1', 'Cannes', 'ons', null), ('2017', 'FR519C1', 'Cannes', 'beds', '18856'), ('2017', 'FR519C1', 'Cannes', 'ons_per_res_pop', null), ('2017', 'FR519C1', 'Cannes', 'beds_per_1000res_pop', null), ('2017', 'HR001C1', 'Zagreb', 'ons', '2263758'), ('2017', 'HR001C1', 'Zagreb', 'beds', '26060'), ('2017', 'HR001C1', 'Zagreb', 'ons_per_res_pop', '2.8'), ('2017', 'HR001C1', 'Zagreb', 'beds_per_1000res_pop', '32.5'), ('2017', 'HR002C1', 'Rijeka', 'ons', '306990'), ('2017', 'HR002C1', 'Rijeka', 'beds', '4927'), ('2017', 'HR002C1', 'Rijeka', 'ons_per_res_pop', '2.6'), ('2017', 'HR002C1', 'Rijeka', 'beds_per_1000res_pop', '41'), ('2017', 'HR003C1', 'Slavonski Brod', 'ons', '34476'), ('2017', 'HR003C1', 'Slavonski Brod', 'beds', '743'), ('2017', 'HR003C1', 'Slavonski Brod', 'ons_per_res_pop', '0.6'), ('2017', 'HR003C1', 'Slavonski Brod', 'beds_per_1000res_pop', '13.3'), ('2017', 'HR004C1', 'Osijek', 'ons', '99910'), ('2017', 'HR004C1', 'Osijek', 'beds', '1205'), ('2017', 'HR004C1', 'Osijek', 'ons_per_res_pop', '0.9'), ('2017', 'HR004C1', 'Osijek', 'beds_per_1000res_pop', '11.5'), ('2017', 'HR005C1', 'Split', 'ons', '2127350'), ('2017', 'HR005C1', 'Split', 'beds', '33445'), ('2017', 'HR005C1', 'Split', 'ons_per_res_pop', '12.4'), ('2017', 'HR005C1', 'Split', 'beds_per_1000res_pop', '194.6'), ('2017', 'HR006C1', 'Pula - Pola', 'ons', '1878244'), ('2017', 'HR006C1', 'Pula - Pola', 'beds', '28762'), ('2017', 'HR006C1', 'Pula - Pola', 'ons_per_res_pop', '33.3'), ('2017', 'HR006C1', 'Pula - Pola', 'beds_per_1000res_pop', '509.9'), ('2017', 'HR007C1', 'Zadar', 'ons', '1832729'), ('2017', 'HR007C1', 'Zadar', 'beds', '27869'), ('2017', 'HR007C1', 'Zadar', 'ons_per_res_pop', '24.4'), ('2017', 'HR007C1', 'Zadar', 'beds_per_1000res_pop', '370.8'), ('2017', 'IT', 'Italy', 'ons', '420629155'), ('2017', 'IT', 'Italy', 'beds', '5037798'), ('2017', 'IT', 'Italy', 'ons_per_res_pop', '6.9'), ('2017', 'IT', 'Italy', 'beds_per_1000res_pop', '83.1'), ('2017', 'IT001C1', 'Roma', 'ons', '26944569'), ('2017', 'IT001C1', 'Roma', 'beds', '214214'), ('2017', 'IT001C1', 'Roma', 'ons_per_res_pop', '9.4'), ('2017', 'IT001C1', 'Roma', 'beds_per_1000res_pop', '74.5'), ('2017', 'IT002C1', 'Milano', 'ons', '11852973'), ('2017', 'IT002C1', 'Milano', 'beds', '69008'), ('2017', 'IT002C1', 'Milano', 'ons_per_res_pop', '8.8'), ('2017', 'IT002C1', 'Milano', 'beds_per_1000res_pop', '51.1'), ('2017', 'IT003C1', 'Napoli', 'ons', '3243737'), ('2017', 'IT003C1', 'Napoli', 'beds', '15954'), ('2017', 'IT003C1', 'Napoli', 'ons_per_res_pop', '3.3'), ('2017', 'IT003C1', 'Napoli', 'beds_per_1000res_pop', '16.4'), ('2017', 'IT004C1', 'Torino', 'ons', '3717634'), ('2017', 'IT004C1', 'Torino', 'beds', '21752'), ('2017', 'IT004C1', 'Torino', 'ons_per_res_pop', '4.2'), ('2017', 'IT004C1', 'Torino', 'beds_per_1000res_pop', '24.5'), ('2017', 'IT005C1', 'Palermo', 'ons', '1349385'), ('2017', 'IT005C1', 'Palermo', 'beds', '12139'), ('2017', 'IT005C1', 'Palermo', 'ons_per_res_pop', '2'), ('2017', 'IT005C1', 'Palermo', 'beds_per_1000res_pop', '18'), ('2017', 'IT006C1', 'Genova', 'ons', '1861432'), ('2017', 'IT006C1', 'Genova', 'beds', '11040'), ('2017', 'IT006C1', 'Genova', 'ons_per_res_pop', '3.2'), ('2017', 'IT006C1', 'Genova', 'beds_per_1000res_pop', '18.9'), ('2017', 'IT007C1', 'Firenze', 'ons', '10056157'), ('2017', 'IT007C1', 'Firenze', 'beds', '49130'), ('2017', 'IT007C1', 'Firenze', 'ons_per_res_pop', '26.3'), ('2017', 'IT007C1', 'Firenze', 'beds_per_1000res_pop', '128.5'), ('2017', 'IT008C1', 'Bari', 'ons', '779146'), ('2017', 'IT008C1', 'Bari', 'beds', '6539'), ('2017', 'IT008C1', 'Bari', 'ons_per_res_pop', '2.4'), ('2017', 'IT008C1', 'Bari', 'beds_per_1000res_pop', '20.2'), ('2017', 'IT009C1', 'Bologna', 'ons', '2986733'), ('2017', 'IT009C1', 'Bologna', 'beds', '18040'), ('2017', 'IT009C1', 'Bologna', 'ons_per_res_pop', '7.7'), ('2017', 'IT009C1', 'Bologna', 'beds_per_1000res_pop', '46.5'), ('2017', 'IT010C1', 'Catania', 'ons', '946029'), ('2017', 'IT010C1', 'Catania', 'beds', '8489'), ('2017', 'IT010C1', 'Catania', 'ons_per_res_pop', '3'), ('2017', 'IT010C1', 'Catania', 'beds_per_1000res_pop', '27.1'), ('2017', 'IT011C1', 'Venezia', 'ons', '11685819'), ('2017', 'IT011C1', 'Venezia', 'beds', '63217'), ('2017', 'IT011C1', 'Venezia', 'ons_per_res_pop', '44.6'), ('2017', 'IT011C1', 'Venezia', 'beds_per_1000res_pop', '241.4'), ('2017', 'IT012C1', 'Verona', 'ons', '2317359'), ('2017', 'IT012C1', 'Verona', 'beds', '19494'), ('2017', 'IT012C1', 'Verona', 'ons_per_res_pop', '9'), ('2017', 'IT012C1', 'Verona', 'beds_per_1000res_pop', '75.7'), ('2017', 'IT013C1', 'Cremona', 'ons', '120393'), ('2017', 'IT013C1', 'Cremona', 'beds', '1719'), ('2017', 'IT013C1', 'Cremona', 'ons_per_res_pop', '1.7'), ('2017', 'IT013C1', 'Cremona', 'beds_per_1000res_pop', '23.9'), ('2017', 'IT014C1', 'Trento', 'ons', '946376'), ('2017', 'IT014C1', 'Trento', 'beds', '5595'), ('2017', 'IT014C1', 'Trento', 'ons_per_res_pop', '8.1'), ('2017', 'IT014C1', 'Trento', 'beds_per_1000res_pop', '47.7'), ('2017', 'IT015C1', 'Trieste', 'ons', '878192'), ('2017', 'IT015C1', 'Trieste', 'beds', '8790'), ('2017', 'IT015C1', 'Trieste', 'ons_per_res_pop', '4.3'), ('2017', 'IT015C1', 'Trieste', 'beds_per_1000res_pop', '43'), ('2017', 'IT016C1', 'Perugia', 'ons', '878747'), ('2017', 'IT016C1', 'Perugia', 'beds', '9277'), ('2017', 'IT016C1', 'Perugia', 'ons_per_res_pop', '5.3'), ('2017', 'IT016C1', 'Perugia', 'beds_per_1000res_pop', '55.7'), ('2017', 'IT017C1', 'Ancona', 'ons', '437139'), ('2017', 'IT017C1', 'Ancona', 'beds', '4481'), ('2017', 'IT017C1', 'Ancona', 'ons_per_res_pop', '4.3'), ('2017', 'IT017C1', 'Ancona', 'beds_per_1000res_pop', '44.5'), ('2017', 'IT019C1', 'Pescara', 'ons', '233920'), ('2017', 'IT019C1', 'Pescara', 'beds', '2527'), ('2017', 'IT019C1', 'Pescara', 'ons_per_res_pop', '1.9'), ('2017', 'IT019C1', 'Pescara', 'beds_per_1000res_pop', '21'), ('2017', 'IT020C1', 'Campobasso', 'ons', '21485'), ('2017', 'IT020C1', 'Campobasso', 'beds', '731'), ('2017', 'IT020C1', 'Campobasso', 'ons_per_res_pop', '0.4'), ('2017', 'IT020C1', 'Campobasso', 'beds_per_1000res_pop', '14.8'), ('2017', 'IT021C1', 'Caserta', 'ons', '242510'), ('2017', 'IT021C1', 'Caserta', 'beds', '1694'), ('2017', 'IT021C1', 'Caserta', 'ons_per_res_pop', '3.2'), ('2017', 'IT021C1', 'Caserta', 'beds_per_1000res_pop', '22.3'), ('2017', 'IT022C1', 'Taranto', 'ons', '231646'), ('2017', 'IT022C1', 'Taranto', 'beds', '2953'), ('2017', 'IT022C1', 'Taranto', 'ons_per_res_pop', '1.2'), ('2017', 'IT022C1', 'Taranto', 'beds_per_1000res_pop', '14.8'), ('2017', 'IT023C1', 'Potenza', 'ons', '64729'), ('2017', 'IT023C1', 'Potenza', 'beds', '948'), ('2017', 'IT023C1', 'Potenza', 'ons_per_res_pop', '1'), ('2017', 'IT023C1', 'Potenza', 'beds_per_1000res_pop', '14.1'), ('2017', 'IT024C1', 'Catanzaro', 'ons', '139143'), ('2017', 'IT024C1', 'Catanzaro', 'beds', '1321'), ('2017', 'IT024C1', 'Catanzaro', 'ons_per_res_pop', '1.5'), ('2017', 'IT024C1', 'Catanzaro', 'beds_per_1000res_pop', '14.6'), ('2017', 'IT025C1', 'Reggio di Calabria', 'ons', '187880'), ('2017', 'IT025C1', 'Reggio di Calabria', 'beds', '2809'), ('2017', 'IT025C1', 'Reggio di Calabria', 'ons_per_res_pop', '1'), ('2017', 'IT025C1', 'Reggio di Calabria', 'beds_per_1000res_pop', '15.4'), ('2017', 'IT026C1', 'Sassari', 'ons', '156853'), ('2017', 'IT026C1', 'Sassari', 'beds', '1847'), ('2017', 'IT026C1', 'Sassari', 'ons_per_res_pop', '1.2'), ('2017', 'IT026C1', 'Sassari', 'beds_per_1000res_pop', '14.5'), ('2017', 'IT027C1', 'Cagliari', 'ons', '582137'), ('2017', 'IT027C1', 'Cagliari', 'beds', '5535'), ('2017', 'IT027C1', 'Cagliari', 'ons_per_res_pop', '3.8'), ('2017', 'IT027C1', 'Cagliari', 'beds_per_1000res_pop', '35.9'), ('2017', 'IT028C1', 'Padova', 'ons', '1601192'), ('2017', 'IT028C1', 'Padova', 'beds', '9133'), ('2017', 'IT028C1', 'Padova', 'ons_per_res_pop', '7.6'), ('2017', 'IT028C1', 'Padova', 'beds_per_1000res_pop', '43.5'), ('2017', 'IT029C1', 'Brescia', 'ons', '673100'), ('2017', 'IT029C1', 'Brescia', 'beds', '4208'), ('2017', 'IT029C1', 'Brescia', 'ons_per_res_pop', '3.4'), ('2017', 'IT029C1', 'Brescia', 'beds_per_1000res_pop', '21.4'), ('2017', 'IT030C1', 'Modena', 'ons', '581873'), ('2017', 'IT030C1', 'Modena', 'beds', '3936'), ('2017', 'IT030C1', 'Modena', 'ons_per_res_pop', '3.1'), ('2017', 'IT030C1', 'Modena', 'beds_per_1000res_pop', '21.3'), ('2017', 'IT031C1', 'Foggia', 'ons', '125152'), ('2017', 'IT031C1', 'Foggia', 'beds', '1439'), ('2017', 'IT031C1', 'Foggia', 'ons_per_res_pop', '0.8'), ('2017', 'IT031C1', 'Foggia', 'beds_per_1000res_pop', '9.5'), ('2017', 'IT032C1', 'Salerno', 'ons', '668229'), ('2017', 'IT032C1', 'Salerno', 'beds', '3426'), ('2017', 'IT032C1', 'Salerno', 'ons_per_res_pop', '5'), ('2017', 'IT032C1', 'Salerno', 'beds_per_1000res_pop', '25.4'), ('2017', 'IT033C1', 'Piacenza', 'ons', '263872'), ('2017', 'IT033C1', 'Piacenza', 'beds', '1917'), ('2017', 'IT033C1', 'Piacenza', 'ons_per_res_pop', '2.6'), ('2017', 'IT033C1', 'Piacenza', 'beds_per_1000res_pop', '18.7'), ('2017', 'IT034C1', 'Bolzano', 'ons', '664881'), ('2017', 'IT034C1', 'Bolzano', 'beds', '3758'), ('2017', 'IT034C1', 'Bolzano', 'ons_per_res_pop', '6.2'), ('2017', 'IT034C1', 'Bolzano', 'beds_per_1000res_pop', '35.1'), ('2017', 'IT035C1', 'Udine', 'ons', '380184'), ('2017', 'IT035C1', 'Udine', 'beds', '3792'), ('2017', 'IT035C1', 'Udine', 'ons_per_res_pop', '3.8'), ('2017', 'IT035C1', 'Udine', 'beds_per_1000res_pop', '38.2'), ('2017', 'IT036C1', 'La Spezia', 'ons', '477943'), ('2017', 'IT036C1', 'La Spezia', 'beds', '3096'), ('2017', 'IT036C1', 'La Spezia', 'ons_per_res_pop', '5.1'), ('2017', 'IT036C1', 'La Spezia', 'beds_per_1000res_pop', '33'), ('2017', 'IT037C1', 'Lecce', 'ons', '746450'), ('2017', 'IT037C1', 'Lecce', 'beds', '10126'), ('2017', 'IT037C1', 'Lecce', 'ons_per_res_pop', '7.9'), ('2017', 'IT037C1', 'Lecce', 'beds_per_1000res_pop', '106.6'), ('2017', 'IT038C1', 'Barletta', 'ons', '84049'), ('2017', 'IT038C1', 'Barletta', 'beds', '749'), ('2017', 'IT038C1', 'Barletta', 'ons_per_res_pop', '0.9'), ('2017', 'IT038C1', 'Barletta', 'beds_per_1000res_pop', '7.9'), ('2017', 'IT039C1', 'Pesaro', 'ons', '889005'), ('2017', 'IT039C1', 'Pesaro', 'beds', '8969'), ('2017', 'IT039C1', 'Pesaro', 'ons_per_res_pop', '9.4'), ('2017', 'IT039C1', 'Pesaro', 'beds_per_1000res_pop', '94.6'), ('2017', 'IT040C1', 'Como', 'ons', '634147'), ('2017', 'IT040C1', 'Como', 'beds', '3694'), ('2017', 'IT040C1', 'Como', 'ons_per_res_pop', '7.5'), ('2017', 'IT040C1', 'Como', 'beds_per_1000res_pop', '43.8'), ('2017', 'IT041C1', 'Pisa', 'ons', '1616787'), ('2017', 'IT041C1', 'Pisa', 'beds', '15451'), ('2017', 'IT041C1', 'Pisa', 'ons_per_res_pop', '17.9'), ('2017', 'IT041C1', 'Pisa', 'beds_per_1000res_pop', '170.8'), ('2017', 'IT042C1', 'Treviso', 'ons', '276025'), ('2017', 'IT042C1', 'Treviso', 'beds', '2362'), ('2017', 'IT042C1', 'Treviso', 'ons_per_res_pop', '3.3'), ('2017', 'IT042C1', 'Treviso', 'beds_per_1000res_pop', '28.1'), ('2017', 'IT043C1', 'Varese', 'ons', '270724'), ('2017', 'IT043C1', 'Varese', 'beds', '1964'), ('2017', 'IT043C1', 'Varese', 'ons_per_res_pop', '3.4'), ('2017', 'IT043C1', 'Varese', 'beds_per_1000res_pop', '24.3'), ('2017', 'IT044C1', 'Busto Arsizio', 'ons', '32454'), ('2017', 'IT044C1', 'Busto Arsizio', 'beds', '258'), ('2017', 'IT044C1', 'Busto Arsizio', 'ons_per_res_pop', '0.4'), ('2017', 'IT044C1', 'Busto Arsizio', 'beds_per_1000res_pop', '3.1'), ('2017', 'IT045C1', 'Asti', 'ons', '107809'), ('2017', 'IT045C1', 'Asti', 'beds', '1768'), ('2017', 'IT045C1', 'Asti', 'ons_per_res_pop', '1.4'), ('2017', 'IT045C1', 'Asti', 'beds_per_1000res_pop', '23.2'), ('2017', 'IT046C1', 'Pavia', 'ons', '137586'), ('2017', 'IT046C1', 'Pavia', 'beds', '1013'), ('2017', 'IT046C1', 'Pavia', 'ons_per_res_pop', '1.9'), ('2017', 'IT046C1', 'Pavia', 'beds_per_1000res_pop', '14'), ('2017', 'IT047C1', 'Massa', 'ons', '892819'), ('2017', 'IT047C1', 'Massa', 'beds', '26535'), ('2017', 'IT047C1', 'Massa', 'ons_per_res_pop', '12.9'), ('2017', 'IT047C1', 'Massa', 'beds_per_1000res_pop', '383.3'), ('2017', 'IT048C1', 'Cosenza', 'ons', '95547'), ('2017', 'IT048C1', 'Cosenza', 'beds', '767'), ('2017', 'IT048C1', 'Cosenza', 'ons_per_res_pop', '1.4'), ('2017', 'IT048C1', 'Cosenza', 'beds_per_1000res_pop', '11.4'), ('2017', 'IT052C1', 'Savona', 'ons', '212313'), ('2017', 'IT052C1', 'Savona', 'beds', '1825'), ('2017', 'IT052C1', 'Savona', 'ons_per_res_pop', '3.5'), ('2017', 'IT052C1', 'Savona', 'beds_per_1000res_pop', '29.9'), ('2017', 'IT054C1', 'Matera', 'ons', '447721'), ('2017', 'IT054C1', 'Matera', 'beds', '4285'), ('2017', 'IT054C1', 'Matera', 'ons_per_res_pop', '7.4'), ('2017', 'IT054C1', 'Matera', 'beds_per_1000res_pop', '71'), ('2017', 'IT056C1', 'Acireale', 'ons', '215327'), ('2017', 'IT056C1', 'Acireale', 'beds', '3472'), ('2017', 'IT056C1', 'Acireale', 'ons_per_res_pop', '4.1'), ('2017', 'IT056C1', 'Acireale', 'beds_per_1000res_pop', '66'), ('2017', 'IT057C1', 'Avellino', 'ons', '35013'), ('2017', 'IT057C1', 'Avellino', 'beds', '329'), ('2017', 'IT057C1', 'Avellino', 'ons_per_res_pop', '0.6'), ('2017', 'IT057C1', 'Avellino', 'beds_per_1000res_pop', '6'), ('2017', 'IT058C1', 'Pordenone', 'ons', '137170'), ('2017', 'IT058C1', 'Pordenone', 'beds', '1272'), ('2017', 'IT058C1', 'Pordenone', 'ons_per_res_pop', '2.7'), ('2017', 'IT058C1', 'Pordenone', 'beds_per_1000res_pop', '24.9'), ('2017', 'IT060C1', 'Lecco', 'ons', '97119'), ('2017', 'IT060C1', 'Lecco', 'beds', '1092'), ('2017', 'IT060C1', 'Lecco', 'ons_per_res_pop', '2'), ('2017', 'IT060C1', 'Lecco', 'beds_per_1000res_pop', '22.7'), ('2017', 'IT061C1', 'Altamura', 'ons', '34976'), ('2017', 'IT061C1', 'Altamura', 'beds', '638'), ('2017', 'IT061C1', 'Altamura', 'ons_per_res_pop', '0.5'), ('2017', 'IT061C1', 'Altamura', 'beds_per_1000res_pop', '9'), ('2017', 'IT062C1', 'Bitonto', 'ons', '17415'), ('2017', 'IT062C1', 'Bitonto', 'beds', '255'), ('2017', 'IT062C1', 'Bitonto', 'ons_per_res_pop', '0.3'), ('2017', 'IT062C1', 'Bitonto', 'beds_per_1000res_pop', '4.6'), ('2017', 'IT063C1', 'Molfetta', 'ons', '18842'), ('2017', 'IT063C1', 'Molfetta', 'beds', '224'), ('2017', 'IT063C1', 'Molfetta', 'ons_per_res_pop', '0.3'), ('2017', 'IT063C1', 'Molfetta', 'beds_per_1000res_pop', '3.8'), ('2017', 'IT064C1', 'Battipaglia', 'ons', '167729'), ('2017', 'IT064C1', 'Battipaglia', 'beds', '3511'), ('2017', 'IT064C1', 'Battipaglia', 'ons_per_res_pop', '3.3'), ('2017', 'IT064C1', 'Battipaglia', 'beds_per_1000res_pop', '69'), ('2017', 'IT065C1', 'Bisceglie', 'ons', '80927'), ('2017', 'IT065C1', 'Bisceglie', 'beds', '1023'), ('2017', 'IT065C1', 'Bisceglie', 'ons_per_res_pop', '1.5'), ('2017', 'IT065C1', 'Bisceglie', 'beds_per_1000res_pop', '18.5'), ('2017', 'IT066C1', 'Carpi', 'ons', '67130'), ('2017', 'IT066C1', 'Carpi', 'beds', '581'), ('2017', 'IT066C1', 'Carpi', 'ons_per_res_pop', '0.9'), ('2017', 'IT066C1', 'Carpi', 'beds_per_1000res_pop', '8.2'), ('2017', 'IT067C1', 'Cerignola', 'ons', '10243'), ('2017', 'IT067C1', 'Cerignola', 'beds', '279'), ('2017', 'IT067C1', 'Cerignola', 'ons_per_res_pop', '0.2'), ('2017', 'IT067C1', 'Cerignola', 'beds_per_1000res_pop', '4.8'), ('2017', 'IT068C1', 'Gallarate', 'ons', '33018'), ('2017', 'IT068C1', 'Gallarate', 'beds', '405'), ('2017', 'IT068C1', 'Gallarate', 'ons_per_res_pop', '0.6'), ('2017', 'IT068C1', 'Gallarate', 'beds_per_1000res_pop', '7.6'), ('2017', 'IT069C1', 'Gela', 'ons', '27866'), ('2017', 'IT069C1', 'Gela', 'beds', '513'), ('2017', 'IT069C1', 'Gela', 'ons_per_res_pop', '0.4'), ('2017', 'IT069C1', 'Gela', 'beds_per_1000res_pop', '6.8'), ('2017', 'IT070C1', 'Saronno', 'ons', '256123'), ('2017', 'IT070C1', 'Saronno', 'beds', '1456'), ('2017', 'IT070C1', 'Saronno', 'ons_per_res_pop', '6.5'), ('2017', 'IT070C1', 'Saronno', 'beds_per_1000res_pop', '37'), ('2017', 'IT071C1', 'Bagheria', 'ons', '13407'), ('2017', 'IT071C1', 'Bagheria', 'beds', '213'), ('2017', 'IT071C1', 'Bagheria', 'ons_per_res_pop', '0.2'), ('2017', 'IT071C1', 'Bagheria', 'beds_per_1000res_pop', '3.8'), ('2017', 'IT072C1', 'Anzio', 'ons', '120267'), ('2017', 'IT072C1', 'Anzio', 'beds', '9569'), ('2017', 'IT072C1', 'Anzio', 'ons_per_res_pop', '2.2'), ('2017', 'IT072C1', 'Anzio', 'beds_per_1000res_pop', '176.2'), ('2017', 'IT073C1', 'Sassuolo', 'ons', '62951'), ('2017', 'IT073C1', 'Sassuolo', 'beds', '568'), ('2017', 'IT073C1', 'Sassuolo', 'ons_per_res_pop', '1.5'), ('2017', 'IT073C1', 'Sassuolo', 'beds_per_1000res_pop', '13.9'), ('2017', 'IT501C1', 'Messina', 'ons', '112180'), ('2017', 'IT501C1', 'Messina', 'beds', '2197'), ('2017', 'IT501C1', 'Messina', 'ons_per_res_pop', '0.5'), ('2017', 'IT501C1', 'Messina', 'beds_per_1000res_pop', '9.3'), ('2017', 'IT502C1', 'Prato', 'ons', '407053'), ('2017', 'IT502C1', 'Prato', 'beds', '2358'), ('2017', 'IT502C1', 'Prato', 'ons_per_res_pop', '2.1'), ('2017', 'IT502C1', 'Prato', 'beds_per_1000res_pop', '12.3'), ('2017', 'IT503C1', 'Parma', 'ons', '663316'), ('2017', 'IT503C1', 'Parma', 'beds', '5101'), ('2017', 'IT503C1', 'Parma', 'ons_per_res_pop', '3.4'), ('2017', 'IT503C1', 'Parma', 'beds_per_1000res_pop', '26.2'), ('2017', 'IT504C1', 'Livorno', 'ons', '319796'), ('2017', 'IT504C1', 'Livorno', 'beds', '3814'), ('2017', 'IT504C1', 'Livorno', 'ons_per_res_pop', '2'), ('2017', 'IT504C1', 'Livorno', 'beds_per_1000res_pop', '24'), ('2017', 'IT505C1', 'Reggio nell''Emilia', 'ons', '360540'), ('2017', 'IT505C1', 'Reggio nell''Emilia', 'beds', '2815'), ('2017', 'IT505C1', 'Reggio nell''Emilia', 'ons_per_res_pop', '2.1'), ('2017', 'IT505C1', 'Reggio nell''Emilia', 'beds_per_1000res_pop', '16.4'), ('2017', 'IT506C1', 'Ravenna', 'ons', '2779203'), ('2017', 'IT506C1', 'Ravenna', 'beds', '36565'), ('2017', 'IT506C1', 'Ravenna', 'ons_per_res_pop', '17.5'), ('2017', 'IT506C1', 'Ravenna', 'beds_per_1000res_pop', '229.9'), ('2017', 'IT507C1', 'Ferrara', 'ons', '455743'), ('2017', 'IT507C1', 'Ferrara', 'beds', '3641'), ('2017', 'IT507C1', 'Ferrara', 'ons_per_res_pop', '3.5'), ('2017', 'IT507C1', 'Ferrara', 'beds_per_1000res_pop', '27.6'), ('2017', 'IT508C1', 'Rimini', 'ons', '7376990'), ('2017', 'IT508C1', 'Rimini', 'beds', '75028'), ('2017', 'IT508C1', 'Rimini', 'ons_per_res_pop', '49.5'), ('2017', 'IT508C1', 'Rimini', 'beds_per_1000res_pop', '503.9'), ('2017', 'IT509C1', 'Siracusa', 'ons', '780755'), ('2017', 'IT509C1', 'Siracusa', 'beds', '9936'), ('2017', 'IT509C1', 'Siracusa', 'ons_per_res_pop', '6.4'), ('2017', 'IT509C1', 'Siracusa', 'beds_per_1000res_pop', '81.4'), ('2017', 'IT510C1', 'Monza', 'ons', '245955'), ('2017', 'IT510C1', 'Monza', 'beds', '1872'), ('2017', 'IT510C1', 'Monza', 'ons_per_res_pop', '2'), ('2017', 'IT510C1', 'Monza', 'beds_per_1000res_pop', '15.2'), ('2017', 'IT511C1', 'Bergamo', 'ons', '677331'), ('2017', 'IT511C1', 'Bergamo', 'beds', '5526'), ('2017', 'IT511C1', 'Bergamo', 'ons_per_res_pop', '5.6'), ('2017', 'IT511C1', 'Bergamo', 'beds_per_1000res_pop', '45.9'), ('2017', 'IT512C1', 'Forlì', 'ons', '220093'), ('2017', 'IT512C1', 'Forlì', 'beds', '1441'), ('2017', 'IT512C1', 'Forlì', 'ons_per_res_pop', '1.9'), ('2017', 'IT512C1', 'Forlì', 'beds_per_1000res_pop', '12.2'), ('2017', 'IT513C1', 'Latina', 'ons', '158083'), ('2017', 'IT513C1', 'Latina', 'beds', '4933'), ('2017', 'IT513C1', 'Latina', 'ons_per_res_pop', '1.3'), ('2017', 'IT513C1', 'Latina', 'beds_per_1000res_pop', '39.1'), ('2017', 'IT514C1', 'Vicenza', 'ons', '604240'), ('2017', 'IT514C1', 'Vicenza', 'beds', '4241'), ('2017', 'IT514C1', 'Vicenza', 'ons_per_res_pop', '5.4'), ('2017', 'IT514C1', 'Vicenza', 'beds_per_1000res_pop', '37.8'), ('2017', 'IT515C1', 'Terni', 'ons', '231017'), ('2017', 'IT515C1', 'Terni', 'beds', '2834'), ('2017', 'IT515C1', 'Terni', 'ons_per_res_pop', '2.1'), ('2017', 'IT515C1', 'Terni', 'beds_per_1000res_pop', '25.4'), ('2017', 'IT516C1', 'Novara', 'ons', '143553'), ('2017', 'IT516C1', 'Novara', 'beds', '1512'), ('2017', 'IT516C1', 'Novara', 'ons_per_res_pop', '1.4'), ('2017', 'IT516C1', 'Novara', 'beds_per_1000res_pop', '14.5'), ('2017', 'IT517C1', 'Giugliano in Campania', 'ons', '214122'), ('2017', 'IT517C1', 'Giugliano in Campania', 'beds', '2916'), ('2017', 'IT517C1', 'Giugliano in Campania', 'ons_per_res_pop', '1.7'), ('2017', 'IT517C1', 'Giugliano in Campania', 'beds_per_1000res_pop', '23.5'), ('2017', 'IT518C1', 'Alessandria', 'ons', '137022'), ('2017', 'IT518C1', 'Alessandria', 'beds', '1316'), ('2017', 'IT518C1', 'Alessandria', 'ons_per_res_pop', '1.5'), ('2017', 'IT518C1', 'Alessandria', 'beds_per_1000res_pop', '14'), ('2017', 'IT519C1', 'Arezzo', 'ons', '365860'), ('2017', 'IT519C1', 'Arezzo', 'beds', '4370'), ('2017', 'IT519C1', 'Arezzo', 'ons_per_res_pop', '3.7'), ('2017', 'IT519C1', 'Arezzo', 'beds_per_1000res_pop', '43.9'), ('2017', 'IT520C1', 'Grosseto', 'ons', '1082521'), ('2017', 'IT520C1', 'Grosseto', 'beds', '19300'), ('2017', 'IT520C1', 'Grosseto', 'ons_per_res_pop', '13.2'), ('2017', 'IT520C1', 'Grosseto', 'beds_per_1000res_pop', '235'), ('2017', 'IT521C1', 'Brindisi', 'ons', '155419'), ('2017', 'IT521C1', 'Brindisi', 'beds', '1737'), ('2017', 'IT521C1', 'Brindisi', 'ons_per_res_pop', '1.8'), ('2017', 'IT521C1', 'Brindisi', 'beds_per_1000res_pop', '19.8'), ('2017', 'IT522C1', 'Trapani', 'ons', '215936'), ('2017', 'IT522C1', 'Trapani', 'beds', '2356'), ('2017', 'IT522C1', 'Trapani', 'ons_per_res_pop', '3.2'), ('2017', 'IT522C1', 'Trapani', 'beds_per_1000res_pop', '34.4'), ('2017', 'IT523C1', 'Ragusa', 'ons', '507549'), ('2017', 'IT523C1', 'Ragusa', 'beds', '10107'), ('2017', 'IT523C1', 'Ragusa', 'ons_per_res_pop', '6.9'), ('2017', 'IT523C1', 'Ragusa', 'beds_per_1000res_pop', '137.5'), ('2017', 'IT524C1', 'Andria', 'ons', '28476'), ('2017', 'IT524C1', 'Andria', 'beds', '928'), ('2017', 'IT524C1', 'Andria', 'ons_per_res_pop', '0.3'), ('2017', 'IT524C1', 'Andria', 'beds_per_1000res_pop', '9.2'), ('2017', 'IT525C1', 'Trani', 'ons', '80409'), ('2017', 'IT525C1', 'Trani', 'beds', '1494'), ('2017', 'IT525C1', 'Trani', 'ons_per_res_pop', '1.4'), ('2017', 'IT525C1', 'Trani', 'beds_per_1000res_pop', '26.6'), ('2017', 'IT526C1', 'L''Aquila', 'ons', '120252'), ('2017', 'IT526C1', 'L''Aquila', 'beds', '2524'), ('2017', 'IT526C1', 'L''Aquila', 'ons_per_res_pop', '1.7'), ('2017', 'IT526C1', 'L''Aquila', 'beds_per_1000res_pop', '36.3'), ('2017', 'CY', 'Cyprus', 'ons', null), ('2017', 'CY', 'Cyprus', 'beds', null), ('2017', 'CY', 'Cyprus', 'ons_per_res_pop', null), ('2017', 'CY', 'Cyprus', 'beds_per_1000res_pop', null), ('2017', 'CY001C1', 'Lefkosia', 'ons', null), ('2017', 'CY001C1', 'Lefkosia', 'beds', null), ('2017', 'CY001C1', 'Lefkosia', 'ons_per_res_pop', null), ('2017', 'CY001C1', 'Lefkosia', 'beds_per_1000res_pop', null), ('2017', 'LV', 'Latvia', 'ons', '4950929'), ('2017', 'LV', 'Latvia', 'beds', null), ('2017', 'LV', 'Latvia', 'ons_per_res_pop', '2.5'), ('2017', 'LV', 'Latvia', 'beds_per_1000res_pop', null), ('2017', 'LV001C1', 'Riga', 'ons', null), ('2017', 'LV001C1', 'Riga', 'beds', null), ('2017', 'LV001C1', 'Riga', 'ons_per_res_pop', null), ('2017', 'LV001C1', 'Riga', 'beds_per_1000res_pop', null), ('2017', 'LV002C1', 'Liepaja', 'ons', null), ('2017', 'LV002C1', 'Liepaja', 'beds', null), ('2017', 'LV002C1', 'Liepaja', 'ons_per_res_pop', null), ('2017', 'LV002C1', 'Liepaja', 'beds_per_1000res_pop', null), ('2017', 'LV003C1', 'Jelgava', 'ons', '25867'), ('2017', 'LV003C1', 'Jelgava', 'beds', null), ('2017', 'LV003C1', 'Jelgava', 'ons_per_res_pop', '0.5'), ('2017', 'LV003C1', 'Jelgava', 'beds_per_1000res_pop', null), ('2017', 'LV501C1', 'Daugavpils', 'ons', '83350'), ('2017', 'LV501C1', 'Daugavpils', 'beds', '862'), ('2017', 'LV501C1', 'Daugavpils', 'ons_per_res_pop', '1'), ('2017', 'LV501C1', 'Daugavpils', 'beds_per_1000res_pop', '10.2'), ('2017', 'LT', 'Lithuania', 'ons', '7364924'), ('2017', 'LT', 'Lithuania', 'beds', '80766'), ('2017', 'LT', 'Lithuania', 'ons_per_res_pop', '2.6'), ('2017', 'LT', 'Lithuania', 'beds_per_1000res_pop', '28.4'), ('2017', 'LT001C1', 'Vilnius', 'ons', '1989252'), ('2017', 'LT001C1', 'Vilnius', 'beds', '12883'), ('2017', 'LT001C1', 'Vilnius', 'ons_per_res_pop', '3.6'), ('2017', 'LT001C1', 'Vilnius', 'beds_per_1000res_pop', '23.6'), ('2017', 'LT002C1', 'Kaunas', 'ons', '508641'), ('2017', 'LT002C1', 'Kaunas', 'beds', '3837'), ('2017', 'LT002C1', 'Kaunas', 'ons_per_res_pop', '1.7'), ('2017', 'LT002C1', 'Kaunas', 'beds_per_1000res_pop', '13.1'), ('2017', 'LT003C1', 'Panevezys', 'ons', '37478'), ('2017', 'LT003C1', 'Panevezys', 'beds', '465'), ('2017', 'LT003C1', 'Panevezys', 'ons_per_res_pop', '0.4'), ('2017', 'LT003C1', 'Panevezys', 'beds_per_1000res_pop', '5.1'), ('2017', 'LT004C1', 'Alytus', 'ons', '21166'), ('2017', 'LT004C1', 'Alytus', 'beds', '336'), ('2017', 'LT004C1', 'Alytus', 'ons_per_res_pop', '0.4'), ('2017', 'LT004C1', 'Alytus', 'beds_per_1000res_pop', '6.4'), ('2017', 'LT501C1', 'Klaipeda', 'ons', '405121'), ('2017', 'LT501C1', 'Klaipeda', 'beds', '3239'), ('2017', 'LT501C1', 'Klaipeda', 'ons_per_res_pop', '2.7'), ('2017', 'LT501C1', 'Klaipeda', 'beds_per_1000res_pop', '21.4'), ('2017', 'LT502C1', 'Siauliai', 'ons', '126186'), ('2017', 'LT502C1', 'Siauliai', 'beds', '1108'), ('2017', 'LT502C1', 'Siauliai', 'ons_per_res_pop', '1.2'), ('2017', 'LT502C1', 'Siauliai', 'beds_per_1000res_pop', '10.9'), ('2017', 'LU', 'Luxembourg (Grand Duchy)', 'ons', null), ('2017', 'LU', 'Luxembourg (Grand Duchy)', 'beds', null), ('2017', 'LU', 'Luxembourg (Grand Duchy)', 'ons_per_res_pop', null), ('2017', 'LU', 'Luxembourg (Grand Duchy)', 'beds_per_1000res_pop', null), ('2017', 'LU001C1', 'Luxembourg', 'ons', null), ('2017', 'LU001C1', 'Luxembourg', 'beds', null), ('2017', 'LU001C1', 'Luxembourg', 'ons_per_res_pop', null), ('2017', 'LU001C1', 'Luxembourg', 'beds_per_1000res_pop', null), ('2017', 'HU', 'Hungary', 'ons', '29768770'), ('2017', 'HU', 'Hungary', 'beds', '351685'), ('2017', 'HU', 'Hungary', 'ons_per_res_pop', '3'), ('2017', 'HU', 'Hungary', 'beds_per_1000res_pop', '35.9'), ('2017', 'HU001C1', 'Budapest', 'ons', '10071847'), ('2017', 'HU001C1', 'Budapest', 'beds', '52479'), ('2017', 'HU001C1', 'Budapest', 'ons_per_res_pop', '5.7'), ('2017', 'HU001C1', 'Budapest', 'beds_per_1000res_pop', '29.9'), ('2017', 'HU002C1', 'Miskolc', 'ons', '388418'), ('2017', 'HU002C1', 'Miskolc', 'beds', '5671'), ('2017', 'HU002C1', 'Miskolc', 'ons_per_res_pop', '2.5'), ('2017', 'HU002C1', 'Miskolc', 'beds_per_1000res_pop', '36.1'), ('2017', 'HU003C1', 'Nyíregyháza', 'ons', '181566'), ('2017', 'HU003C1', 'Nyíregyháza', 'beds', '3122'), ('2017', 'HU003C1', 'Nyíregyháza', 'ons_per_res_pop', '1.5'), ('2017', 'HU003C1', 'Nyíregyháza', 'beds_per_1000res_pop', '26.5'), ('2017', 'HU004C1', 'Pécs', 'ons', '249618'), ('2017', 'HU004C1', 'Pécs', 'beds', '3826'), ('2017', 'HU004C1', 'Pécs', 'ons_per_res_pop', '1.7'), ('2017', 'HU004C1', 'Pécs', 'beds_per_1000res_pop', '26.4'), ('2017', 'HU005C1', 'Debrecen', 'ons', '374016'), ('2017', 'HU005C1', 'Debrecen', 'beds', '6153'), ('2017', 'HU005C1', 'Debrecen', 'ons_per_res_pop', '1.9'), ('2017', 'HU005C1', 'Debrecen', 'beds_per_1000res_pop', '30.5'), ('2017', 'HU006C1', 'Szeged', 'ons', '415092'), ('2017', 'HU006C1', 'Szeged', 'beds', '8055'), ('2017', 'HU006C1', 'Szeged', 'ons_per_res_pop', '2.6'), ('2017', 'HU006C1', 'Szeged', 'beds_per_1000res_pop', '50'), ('2017', 'HU007C1', 'Gyõr', 'ons', '417491'), ('2017', 'HU007C1', 'Gyõr', 'beds', '3351'), ('2017', 'HU007C1', 'Gyõr', 'ons_per_res_pop', '3.2'), ('2017', 'HU007C1', 'Gyõr', 'beds_per_1000res_pop', '25.9'), ('2017', 'HU008C1', 'Kecskemét', 'ons', '222207'), ('2017', 'HU008C1', 'Kecskemét', 'beds', '1996'), ('2017', 'HU008C1', 'Kecskemét', 'ons_per_res_pop', '2'), ('2017', 'HU008C1', 'Kecskemét', 'beds_per_1000res_pop', '18'), ('2017', 'HU009C1', 'Székesfehérvár', 'ons', '154757'), ('2017', 'HU009C1', 'Székesfehérvár', 'beds', '1314'), ('2017', 'HU009C1', 'Székesfehérvár', 'ons_per_res_pop', '1.6'), ('2017', 'HU009C1', 'Székesfehérvár', 'beds_per_1000res_pop', '13.5'), ('2017', 'HU010C1', 'Szombathely', 'ons', '136282'), ('2017', 'HU010C1', 'Szombathely', 'beds', '1998'), ('2017', 'HU010C1', 'Szombathely', 'ons_per_res_pop', '1.7'), ('2017', 'HU010C1', 'Szombathely', 'beds_per_1000res_pop', '25.6'), ('2017', 'HU011C1', 'Szolnok', 'ons', '87025'), ('2017', 'HU011C1', 'Szolnok', 'beds', '1252'), ('2017', 'HU011C1', 'Szolnok', 'ons_per_res_pop', '1.2'), ('2017', 'HU011C1', 'Szolnok', 'beds_per_1000res_pop', '17.4'), ('2017', 'HU012C1', 'Tatabánya', 'ons', '23264'), ('2017', 'HU012C1', 'Tatabánya', 'beds', '300'), ('2017', 'HU012C1', 'Tatabánya', 'ons_per_res_pop', '0.4'), ('2017', 'HU012C1', 'Tatabánya', 'beds_per_1000res_pop', '4.6'), ('2017', 'HU013C1', 'Veszprém', 'ons', '91218'), ('2017', 'HU013C1', 'Veszprém', 'beds', '1490'), ('2017', 'HU013C1', 'Veszprém', 'ons_per_res_pop', '1.5'), ('2017', 'HU013C1', 'Veszprém', 'beds_per_1000res_pop', '24.9'), ('2017', 'HU014C1', 'Békéscsaba', 'ons', '51208'), ('2017', 'HU014C1', 'Békéscsaba', 'beds', '745'), ('2017', 'HU014C1', 'Békéscsaba', 'ons_per_res_pop', '0.9'), ('2017', 'HU014C1', 'Békéscsaba', 'beds_per_1000res_pop', '12.5'), ('2017', 'HU015C1', 'Kaposvár', 'ons', '52170'), ('2017', 'HU015C1', 'Kaposvár', 'beds', '1676'), ('2017', 'HU015C1', 'Kaposvár', 'ons_per_res_pop', '0.8'), ('2017', 'HU015C1', 'Kaposvár', 'beds_per_1000res_pop', '26.8'), ('2017', 'HU016C1', 'Eger', 'ons', '443131'), ('2017', 'HU016C1', 'Eger', 'beds', '5045'), ('2017', 'HU016C1', 'Eger', 'ons_per_res_pop', '8.2'), ('2017', 'HU016C1', 'Eger', 'beds_per_1000res_pop', '93.6'), ('2017', 'HU017C1', 'Dunaújváros', 'ons', '44345'), ('2017', 'HU017C1', 'Dunaújváros', 'beds', '1254'), ('2017', 'HU017C1', 'Dunaújváros', 'ons_per_res_pop', '1'), ('2017', 'HU017C1', 'Dunaújváros', 'beds_per_1000res_pop', '28.1'), ('2017', 'HU018C1', 'Zalaegerszeg', 'ons', '42576'), ('2017', 'HU018C1', 'Zalaegerszeg', 'beds', '1272'), ('2017', 'HU018C1', 'Zalaegerszeg', 'ons_per_res_pop', '0.7'), ('2017', 'HU018C1', 'Zalaegerszeg', 'beds_per_1000res_pop', '21.9'), ('2017', 'HU019C1', 'Sopron', 'ons', '376038'), ('2017', 'HU019C1', 'Sopron', 'beds', '3172'), ('2017', 'HU019C1', 'Sopron', 'ons_per_res_pop', '6'), ('2017', 'HU019C1', 'Sopron', 'beds_per_1000res_pop', '51'), ('2017', 'MT', 'Malta', 'ons', '9580329'), ('2017', 'MT', 'Malta', 'beds', '42927'), ('2017', 'MT', 'Malta', 'ons_per_res_pop', '20.8'), ('2017', 'MT', 'Malta', 'beds_per_1000res_pop', '93.3'), ('2017', 'MT001C1', 'Valletta', 'ons', '4398723'), ('2017', 'MT001C1', 'Valletta', 'beds', '18965'), ('2017', 'MT001C1', 'Valletta', 'ons_per_res_pop', '19.6'), ('2017', 'MT001C1', 'Valletta', 'beds_per_1000res_pop', '84.5'), ('2017', 'NL', 'Netherlands', 'ons', null), ('2017', 'NL', 'Netherlands', 'beds', null), ('2017', 'NL', 'Netherlands', 'ons_per_res_pop', null), ('2017', 'NL', 'Netherlands', 'beds_per_1000res_pop', null), ('2017', 'NL001C2', 'Greater ''s-Gravenhage', 'ons', null), ('2017', 'NL001C2', 'Greater ''s-Gravenhage', 'beds', null), ('2017', 'NL001C2', 'Greater ''s-Gravenhage', 'ons_per_res_pop', null), ('2017', 'NL001C2', 'Greater ''s-Gravenhage', 'beds_per_1000res_pop', null), ('2017', 'NL002C2', 'Greater Amsterdam', 'ons', null), ('2017', 'NL002C2', 'Greater Amsterdam', 'beds', null), ('2017', 'NL002C2', 'Greater Amsterdam', 'ons_per_res_pop', null), ('2017', 'NL002C2', 'Greater Amsterdam', 'beds_per_1000res_pop', null), ('2017', 'NL003C2', 'Greater Rotterdam', 'ons', null), ('2017', 'NL003C2', 'Greater Rotterdam', 'beds', null), ('2017', 'NL003C2', 'Greater Rotterdam', 'ons_per_res_pop', null), ('2017', 'NL003C2', 'Greater Rotterdam', 'beds_per_1000res_pop', null), ('2017', 'NL004C2', 'Greater Utrecht', 'ons', null), ('2017', 'NL004C2', 'Greater Utrecht', 'beds', null), ('2017', 'NL004C2', 'Greater Utrecht', 'ons_per_res_pop', null), ('2017', 'NL004C2', 'Greater Utrecht', 'beds_per_1000res_pop', null), ('2017', 'NL005C2', 'Greater Eindhoven', 'ons', null), ('2017', 'NL005C2', 'Greater Eindhoven', 'beds', null), ('2017', 'NL005C2', 'Greater Eindhoven', 'ons_per_res_pop', null), ('2017', 'NL005C2', 'Greater Eindhoven', 'beds_per_1000res_pop', null), ('2017', 'NL006C1', 'Tilburg', 'ons', null), ('2017', 'NL006C1', 'Tilburg', 'beds', null), ('2017', 'NL006C1', 'Tilburg', 'ons_per_res_pop', null), ('2017', 'NL006C1', 'Tilburg', 'beds_per_1000res_pop', null), ('2017', 'NL007C1', 'Groningen', 'ons', null), ('2017', 'NL007C1', 'Groningen', 'beds', null), ('2017', 'NL007C1', 'Groningen', 'ons_per_res_pop', null), ('2017', 'NL007C1', 'Groningen', 'beds_per_1000res_pop', null), ('2017', 'NL008C1', 'Enschede', 'ons', null), ('2017', 'NL008C1', 'Enschede', 'beds', null), ('2017', 'NL008C1', 'Enschede', 'ons_per_res_pop', null), ('2017', 'NL008C1', 'Enschede', 'beds_per_1000res_pop', null), ('2017', 'NL009C2', 'Greater Arnhem', 'ons', null), ('2017', 'NL009C2', 'Greater Arnhem', 'beds', null), ('2017', 'NL009C2', 'Greater Arnhem', 'ons_per_res_pop', null), ('2017', 'NL009C2', 'Greater Arnhem', 'beds_per_1000res_pop', null), ('2017', 'NL010C2', 'Greater Heerlen', 'ons', null), ('2017', 'NL010C2', 'Greater Heerlen', 'beds', null), ('2017', 'NL010C2', 'Greater Heerlen', 'ons_per_res_pop', null), ('2017', 'NL010C2', 'Greater Heerlen', 'beds_per_1000res_pop', null), ('2017', 'NL011C1', 'Almere', 'ons', null), ('2017', 'NL011C1', 'Almere', 'beds', null), ('2017', 'NL011C1', 'Almere', 'ons_per_res_pop', null), ('2017', 'NL011C1', 'Almere', 'beds_per_1000res_pop', null), ('2017', 'NL012C1', 'Breda', 'ons', null), ('2017', 'NL012C1', 'Breda', 'beds', null), ('2017', 'NL012C1', 'Breda', 'ons_per_res_pop', null), ('2017', 'NL012C1', 'Breda', 'beds_per_1000res_pop', null), ('2017', 'NL013C1', 'Nijmegen', 'ons', null), ('2017', 'NL013C1', 'Nijmegen', 'beds', null), ('2017', 'NL013C1', 'Nijmegen', 'ons_per_res_pop', null), ('2017', 'NL013C1', 'Nijmegen', 'beds_per_1000res_pop', null), ('2017', 'NL014C1', 'Apeldoorn', 'ons', null), ('2017', 'NL014C1', 'Apeldoorn', 'beds', null), ('2017', 'NL014C1', 'Apeldoorn', 'ons_per_res_pop', null), ('2017', 'NL014C1', 'Apeldoorn', 'beds_per_1000res_pop', null), ('2017', 'NL015C1', 'Leeuwarden', 'ons', null), ('2017', 'NL015C1', 'Leeuwarden', 'beds', null), ('2017', 'NL015C1', 'Leeuwarden', 'ons_per_res_pop', null), ('2017', 'NL015C1', 'Leeuwarden', 'beds_per_1000res_pop', null), ('2017', 'NL016C2', 'Greater Sittard-Geleen', 'ons', null), ('2017', 'NL016C2', 'Greater Sittard-Geleen', 'beds', null), ('2017', 'NL016C2', 'Greater Sittard-Geleen', 'ons_per_res_pop', null), ('2017', 'NL016C2', 'Greater Sittard-Geleen', 'beds_per_1000res_pop', null), ('2017', 'NL018C1', 'Hilversum', 'ons', null), ('2017', 'NL018C1', 'Hilversum', 'beds', null), ('2017', 'NL018C1', 'Hilversum', 'ons_per_res_pop', null), ('2017', 'NL018C1', 'Hilversum', 'beds_per_1000res_pop', null), ('2017', 'NL020C1', 'Roosendaal', 'ons', null), ('2017', 'NL020C1', 'Roosendaal', 'beds', null), ('2017', 'NL020C1', 'Roosendaal', 'ons_per_res_pop', null), ('2017', 'NL020C1', 'Roosendaal', 'beds_per_1000res_pop', null), ('2017', 'NL021C2', 'Greater Nissewaard', 'ons', null), ('2017', 'NL021C2', 'Greater Nissewaard', 'beds', null), ('2017', 'NL021C2', 'Greater Nissewaard', 'ons_per_res_pop', null), ('2017', 'NL021C2', 'Greater Nissewaard', 'beds_per_1000res_pop', null), ('2017', 'NL023C1', 'Purmerend', 'ons', null), ('2017', 'NL023C1', 'Purmerend', 'beds', null), ('2017', 'NL023C1', 'Purmerend', 'ons_per_res_pop', null), ('2017', 'NL023C1', 'Purmerend', 'beds_per_1000res_pop', null), ('2017', 'NL026C1', 'Alphen aan den Rijn', 'ons', null), ('2017', 'NL026C1', 'Alphen aan den Rijn', 'beds', null), ('2017', 'NL026C1', 'Alphen aan den Rijn', 'ons_per_res_pop', null), ('2017', 'NL026C1', 'Alphen aan den Rijn', 'beds_per_1000res_pop', null), ('2017', 'NL028C1', 'Bergen op Zoom', 'ons', null), ('2017', 'NL028C1', 'Bergen op Zoom', 'beds', null), ('2017', 'NL028C1', 'Bergen op Zoom', 'ons_per_res_pop', null), ('2017', 'NL028C1', 'Bergen op Zoom', 'beds_per_1000res_pop', null), ('2017', 'NL030C1', 'Gouda', 'ons', null), ('2017', 'NL030C1', 'Gouda', 'beds', null), ('2017', 'NL030C1', 'Gouda', 'ons_per_res_pop', null), ('2017', 'NL030C1', 'Gouda', 'beds_per_1000res_pop', null), ('2017', 'NL031C1', 'Hoorn', 'ons', null), ('2017', 'NL031C1', 'Hoorn', 'beds', null), ('2017', 'NL031C1', 'Hoorn', 'ons_per_res_pop', null), ('2017', 'NL031C1', 'Hoorn', 'beds_per_1000res_pop', null), ('2017', 'NL032C2', 'Greater Middelburg', 'ons', null), ('2017', 'NL032C2', 'Greater Middelburg', 'beds', null), ('2017', 'NL032C2', 'Greater Middelburg', 'ons_per_res_pop', null), ('2017', 'NL032C2', 'Greater Middelburg', 'beds_per_1000res_pop', null), ('2017', 'NL501C2', 'Greater Haarlem', 'ons', null), ('2017', 'NL501C2', 'Greater Haarlem', 'beds', null), ('2017', 'NL501C2', 'Greater Haarlem', 'ons_per_res_pop', null), ('2017', 'NL501C2', 'Greater Haarlem', 'beds_per_1000res_pop', null), ('2017', 'NL502C1', 'Zaanstad', 'ons', null), ('2017', 'NL502C1', 'Zaanstad', 'beds', null), ('2017', 'NL502C1', 'Zaanstad', 'ons_per_res_pop', null), ('2017', 'NL502C1', 'Zaanstad', 'beds_per_1000res_pop', null), ('2017', 'NL503C1', '''s-Hertogenbosch', 'ons', null), ('2017', 'NL503C1', '''s-Hertogenbosch', 'beds', null), ('2017', 'NL503C1', '''s-Hertogenbosch', 'ons_per_res_pop', null), ('2017', 'NL503C1', '''s-Hertogenbosch', 'beds_per_1000res_pop', null), ('2017', 'NL504C1', 'Amersfoort', 'ons', null), ('2017', 'NL504C1', 'Amersfoort', 'beds', null), ('2017', 'NL504C1', 'Amersfoort', 'ons_per_res_pop', null), ('2017', 'NL504C1', 'Amersfoort', 'beds_per_1000res_pop', null), ('2017', 'NL505C1', 'Maastricht', 'ons', null), ('2017', 'NL505C1', 'Maastricht', 'beds', null), ('2017', 'NL505C1', 'Maastricht', 'ons_per_res_pop', null), ('2017', 'NL505C1', 'Maastricht', 'beds_per_1000res_pop', null), ('2017', 'NL507C2', 'Greater Leiden', 'ons', null), ('2017', 'NL507C2', 'Greater Leiden', 'beds', null), ('2017', 'NL507C2', 'Greater Leiden', 'ons_per_res_pop', null), ('2017', 'NL507C2', 'Greater Leiden', 'beds_per_1000res_pop', null), ('2017', 'NL508C1', 'Haarlemmermeer', 'ons', null), ('2017', 'NL508C1', 'Haarlemmermeer', 'beds', null), ('2017', 'NL508C1', 'Haarlemmermeer', 'ons_per_res_pop', null), ('2017', 'NL508C1', 'Haarlemmermeer', 'beds_per_1000res_pop', null), ('2017', 'NL509C1', 'Zoetermeer', 'ons', null), ('2017', 'NL509C1', 'Zoetermeer', 'beds', null), ('2017', 'NL509C1', 'Zoetermeer', 'ons_per_res_pop', null), ('2017', 'NL509C1', 'Zoetermeer', 'beds_per_1000res_pop', null), ('2017', 'NL511C1', 'Zwolle', 'ons', null), ('2017', 'NL511C1', 'Zwolle', 'beds', null), ('2017', 'NL511C1', 'Zwolle', 'ons_per_res_pop', null), ('2017', 'NL511C1', 'Zwolle', 'beds_per_1000res_pop', null), ('2017', 'NL512C2', 'Greater Ede', 'ons', null), ('2017', 'NL512C2', 'Greater Ede', 'beds', null), ('2017', 'NL512C2', 'Greater Ede', 'ons_per_res_pop', null), ('2017', 'NL512C2', 'Greater Ede', 'beds_per_1000res_pop', null), ('2017', 'NL513C1', 'Deventer', 'ons', null), ('2017', 'NL513C1', 'Deventer', 'beds', null), ('2017', 'NL513C1', 'Deventer', 'ons_per_res_pop', null), ('2017', 'NL513C1', 'Deventer', 'beds_per_1000res_pop', null), ('2017', 'NL514C2', 'Greater Alkmaar', 'ons', null), ('2017', 'NL514C2', 'Greater Alkmaar', 'beds', null), ('2017', 'NL514C2', 'Greater Alkmaar', 'ons_per_res_pop', null), ('2017', 'NL514C2', 'Greater Alkmaar', 'beds_per_1000res_pop', null), ('2017', 'NL515C1', 'Venlo', 'ons', null), ('2017', 'NL515C1', 'Venlo', 'beds', null), ('2017', 'NL515C1', 'Venlo', 'ons_per_res_pop', null), ('2017', 'NL515C1', 'Venlo', 'beds_per_1000res_pop', null), ('2017', 'NL516C1', 'Helmond', 'ons', null), ('2017', 'NL516C1', 'Helmond', 'beds', null), ('2017', 'NL516C1', 'Helmond', 'ons_per_res_pop', null), ('2017', 'NL516C1', 'Helmond', 'beds_per_1000res_pop', null), ('2017', 'NL517C1', 'Hengelo', 'ons', null), ('2017', 'NL517C1', 'Hengelo', 'beds', null), ('2017', 'NL517C1', 'Hengelo', 'ons_per_res_pop', null), ('2017', 'NL517C1', 'Hengelo', 'beds_per_1000res_pop', null), ('2017', 'NL519C1', 'Almelo', 'ons', null), ('2017', 'NL519C1', 'Almelo', 'beds', null), ('2017', 'NL519C1', 'Almelo', 'ons_per_res_pop', null), ('2017', 'NL519C1', 'Almelo', 'beds_per_1000res_pop', null), ('2017', 'NL520C1', 'Lelystad', 'ons', null), ('2017', 'NL520C1', 'Lelystad', 'beds', null), ('2017', 'NL520C1', 'Lelystad', 'ons_per_res_pop', null), ('2017', 'NL520C1', 'Lelystad', 'beds_per_1000res_pop', null), ('2017', 'NL521C1', 'Oss', 'ons', null), ('2017', 'NL521C1', 'Oss', 'beds', null), ('2017', 'NL521C1', 'Oss', 'ons_per_res_pop', null), ('2017', 'NL521C1', 'Oss', 'beds_per_1000res_pop', null), ('2017', 'NL522C1', 'Assen', 'ons', null), ('2017', 'NL522C1', 'Assen', 'beds', null), ('2017', 'NL522C1', 'Assen', 'ons_per_res_pop', null), ('2017', 'NL522C1', 'Assen', 'beds_per_1000res_pop', null), ('2017', 'NL524C1', 'Veenendaal', 'ons', null), ('2017', 'NL524C1', 'Veenendaal', 'beds', null), ('2017', 'NL524C1', 'Veenendaal', 'ons_per_res_pop', null), ('2017', 'NL524C1', 'Veenendaal', 'beds_per_1000res_pop', null), ('2017', 'NL528C1', 'Greater Heemskerk', 'ons', null), ('2017', 'NL528C1', 'Greater Heemskerk', 'beds', null), ('2017', 'NL528C1', 'Greater Heemskerk', 'ons_per_res_pop', null), ('2017', 'NL528C1', 'Greater Heemskerk', 'beds_per_1000res_pop', null), ('2017', 'NL529C1', 'Greater Soest', 'ons', null), ('2017', 'NL529C1', 'Greater Soest', 'beds', null), ('2017', 'NL529C1', 'Greater Soest', 'ons_per_res_pop', null), ('2017', 'NL529C1', 'Greater Soest', 'beds_per_1000res_pop', null), ('2017', 'AT', 'Austria', 'ons', null), ('2017', 'AT', 'Austria', 'beds', null), ('2017', 'AT', 'Austria', 'ons_per_res_pop', null), ('2017', 'AT', 'Austria', 'beds_per_1000res_pop', null), ('2017', 'AT001C1', 'Wien', 'ons', null), ('2017', 'AT001C1', 'Wien', 'beds', null), ('2017', 'AT001C1', 'Wien', 'ons_per_res_pop', null), ('2017', 'AT001C1', 'Wien', 'beds_per_1000res_pop', null), ('2017', 'AT002C1', 'Graz', 'ons', null), ('2017', 'AT002C1', 'Graz', 'beds', null), ('2017', 'AT002C1', 'Graz', 'ons_per_res_pop', null), ('2017', 'AT002C1', 'Graz', 'beds_per_1000res_pop', null), ('2017', 'AT003C1', 'Linz', 'ons', null), ('2017', 'AT003C1', 'Linz', 'beds', null), ('2017', 'AT003C1', 'Linz', 'ons_per_res_pop', null), ('2017', 'AT003C1', 'Linz', 'beds_per_1000res_pop', null), ('2017', 'AT004C1', 'Salzburg', 'ons', null), ('2017', 'AT004C1', 'Salzburg', 'beds', null), ('2017', 'AT004C1', 'Salzburg', 'ons_per_res_pop', null), ('2017', 'AT004C1', 'Salzburg', 'beds_per_1000res_pop', null), ('2017', 'AT005C1', 'Innsbruck', 'ons', null), ('2017', 'AT005C1', 'Innsbruck', 'beds', null), ('2017', 'AT005C1', 'Innsbruck', 'ons_per_res_pop', null), ('2017', 'AT005C1', 'Innsbruck', 'beds_per_1000res_pop', null), ('2017', 'AT006C1', 'Klagenfurt', 'ons', null), ('2017', 'AT006C1', 'Klagenfurt', 'beds', null), ('2017', 'AT006C1', 'Klagenfurt', 'ons_per_res_pop', null), ('2017', 'AT006C1', 'Klagenfurt', 'beds_per_1000res_pop', null), ('2017', 'PL', 'Poland', 'ons', null), ('2017', 'PL', 'Poland', 'beds', null), ('2017', 'PL', 'Poland', 'ons_per_res_pop', null), ('2017', 'PL', 'Poland', 'beds_per_1000res_pop', null), ('2017', 'PL001C1', 'Warszawa', 'ons', null), ('2017', 'PL001C1', 'Warszawa', 'beds', null), ('2017', 'PL001C1', 'Warszawa', 'ons_per_res_pop', null), ('2017', 'PL001C1', 'Warszawa', 'beds_per_1000res_pop', null), ('2017', 'PL002C1', 'Lódz', 'ons', null), ('2017', 'PL002C1', 'Lódz', 'beds', null), ('2017', 'PL002C1', 'Lódz', 'ons_per_res_pop', null), ('2017', 'PL002C1', 'Lódz', 'beds_per_1000res_pop', null), ('2017', 'PL003C1', 'Kraków', 'ons', null), ('2017', 'PL003C1', 'Kraków', 'beds', null), ('2017', 'PL003C1', 'Kraków', 'ons_per_res_pop', null), ('2017', 'PL003C1', 'Kraków', 'beds_per_1000res_pop', null), ('2017', 'PL004C1', 'Wroclaw', 'ons', null), ('2017', 'PL004C1', 'Wroclaw', 'beds', null), ('2017', 'PL004C1', 'Wroclaw', 'ons_per_res_pop', null), ('2017', 'PL004C1', 'Wroclaw', 'beds_per_1000res_pop', null), ('2017', 'PL005C1', 'Poznan', 'ons', null), ('2017', 'PL005C1', 'Poznan', 'beds', null), ('2017', 'PL005C1', 'Poznan', 'ons_per_res_pop', null), ('2017', 'PL005C1', 'Poznan', 'beds_per_1000res_pop', null), ('2017', 'PL006C1', 'Gdansk', 'ons', null), ('2017', 'PL006C1', 'Gdansk', 'beds', null), ('2017', 'PL006C1', 'Gdansk', 'ons_per_res_pop', null), ('2017', 'PL006C1', 'Gdansk', 'beds_per_1000res_pop', null), ('2017', 'PL007C1', 'Szczecin', 'ons', null), ('2017', 'PL007C1', 'Szczecin', 'beds', null), ('2017', 'PL007C1', 'Szczecin', 'ons_per_res_pop', null), ('2017', 'PL007C1', 'Szczecin', 'beds_per_1000res_pop', null), ('2017', 'PL008C1', 'Bydgoszcz', 'ons', null), ('2017', 'PL008C1', 'Bydgoszcz', 'beds', null), ('2017', 'PL008C1', 'Bydgoszcz', 'ons_per_res_pop', null), ('2017', 'PL008C1', 'Bydgoszcz', 'beds_per_1000res_pop', null), ('2017', 'PL009C1', 'Lublin', 'ons', null), ('2017', 'PL009C1', 'Lublin', 'beds', null), ('2017', 'PL009C1', 'Lublin', 'ons_per_res_pop', null), ('2017', 'PL009C1', 'Lublin', 'beds_per_1000res_pop', null), ('2017', 'PL010C1', 'Katowice', 'ons', null), ('2017', 'PL010C1', 'Katowice', 'beds', null), ('2017', 'PL010C1', 'Katowice', 'ons_per_res_pop', null), ('2017', 'PL010C1', 'Katowice', 'beds_per_1000res_pop', null), ('2017', 'PL011C1', 'Bialystok', 'ons', null), ('2017', 'PL011C1', 'Bialystok', 'beds', null), ('2017', 'PL011C1', 'Bialystok', 'ons_per_res_pop', null), ('2017', 'PL011C1', 'Bialystok', 'beds_per_1000res_pop', null), ('2017', 'PL012C1', 'Kielce', 'ons', null), ('2017', 'PL012C1', 'Kielce', 'beds', null), ('2017', 'PL012C1', 'Kielce', 'ons_per_res_pop', null), ('2017', 'PL012C1', 'Kielce', 'beds_per_1000res_pop', null), ('2017', 'PL013C1', 'Torun', 'ons', null), ('2017', 'PL013C1', 'Torun', 'beds', null), ('2017', 'PL013C1', 'Torun', 'ons_per_res_pop', null), ('2017', 'PL013C1', 'Torun', 'beds_per_1000res_pop', null), ('2017', 'PL014C1', 'Olsztyn', 'ons', null), ('2017', 'PL014C1', 'Olsztyn', 'beds', null), ('2017', 'PL014C1', 'Olsztyn', 'ons_per_res_pop', null), ('2017', 'PL014C1', 'Olsztyn', 'beds_per_1000res_pop', null), ('2017', 'PL015C1', 'Rzeszów', 'ons', null), ('2017', 'PL015C1', 'Rzeszów', 'beds', null), ('2017', 'PL015C1', 'Rzeszów', 'ons_per_res_pop', null), ('2017', 'PL015C1', 'Rzeszów', 'beds_per_1000res_pop', null), ('2017', 'PL016C1', 'Opole', 'ons', null), ('2017', 'PL016C1', 'Opole', 'beds', null), ('2017', 'PL016C1', 'Opole', 'ons_per_res_pop', null), ('2017', 'PL016C1', 'Opole', 'beds_per_1000res_pop', null), ('2017', 'PL017C1', 'Gorzów Wielkopolski', 'ons', null), ('2017', 'PL017C1', 'Gorzów Wielkopolski', 'beds', null), ('2017', 'PL017C1', 'Gorzów Wielkopolski', 'ons_per_res_pop', null), ('2017', 'PL017C1', 'Gorzów Wielkopolski', 'beds_per_1000res_pop', null), ('2017', 'PL018C1', 'Zielona Góra', 'ons', null), ('2017', 'PL018C1', 'Zielona Góra', 'beds', null), ('2017', 'PL018C1', 'Zielona Góra', 'ons_per_res_pop', null), ('2017', 'PL018C1', 'Zielona Góra', 'beds_per_1000res_pop', null), ('2017', 'PL019C1', 'Jelenia Góra', 'ons', null), ('2017', 'PL019C1', 'Jelenia Góra', 'beds', null), ('2017', 'PL019C1', 'Jelenia Góra', 'ons_per_res_pop', null), ('2017', 'PL019C1', 'Jelenia Góra', 'beds_per_1000res_pop', null), ('2017', 'PL020C1', 'Nowy Sacz', 'ons', null), ('2017', 'PL020C1', 'Nowy Sacz', 'beds', null), ('2017', 'PL020C1', 'Nowy Sacz', 'ons_per_res_pop', null), ('2017', 'PL020C1', 'Nowy Sacz', 'beds_per_1000res_pop', null), ('2017', 'PL021C1', 'Suwalki', 'ons', null), ('2017', 'PL021C1', 'Suwalki', 'beds', null), ('2017', 'PL021C1', 'Suwalki', 'ons_per_res_pop', null), ('2017', 'PL021C1', 'Suwalki', 'beds_per_1000res_pop', null), ('2017', 'PL022C1', 'Konin', 'ons', null), ('2017', 'PL022C1', 'Konin', 'beds', null), ('2017', 'PL022C1', 'Konin', 'ons_per_res_pop', null), ('2017', 'PL022C1', 'Konin', 'beds_per_1000res_pop', null), ('2017', 'PL023C1', 'Zory', 'ons', null), ('2017', 'PL023C1', 'Zory', 'beds', null), ('2017', 'PL023C1', 'Zory', 'ons_per_res_pop', null), ('2017', 'PL023C1', 'Zory', 'beds_per_1000res_pop', null), ('2017', 'PL024C1', 'Czestochowa', 'ons', null), ('2017', 'PL024C1', 'Czestochowa', 'beds', null), ('2017', 'PL024C1', 'Czestochowa', 'ons_per_res_pop', null), ('2017', 'PL024C1', 'Czestochowa', 'beds_per_1000res_pop', null), ('2017', 'PL025C1', 'Radom', 'ons', null), ('2017', 'PL025C1', 'Radom', 'beds', null), ('2017', 'PL025C1', 'Radom', 'ons_per_res_pop', null), ('2017', 'PL025C1', 'Radom', 'beds_per_1000res_pop', null), ('2017', 'PL026C1', 'Plock', 'ons', null), ('2017', 'PL026C1', 'Plock', 'beds', null), ('2017', 'PL026C1', 'Plock', 'ons_per_res_pop', null), ('2017', 'PL026C1', 'Plock', 'beds_per_1000res_pop', null), ('2017', 'PL027C1', 'Kalisz', 'ons', null), ('2017', 'PL027C1', 'Kalisz', 'beds', null), ('2017', 'PL027C1', 'Kalisz', 'ons_per_res_pop', null), ('2017', 'PL027C1', 'Kalisz', 'beds_per_1000res_pop', null), ('2017', 'PL028C1', 'Koszalin', 'ons', null), ('2017', 'PL028C1', 'Koszalin', 'beds', null), ('2017', 'PL028C1', 'Koszalin', 'ons_per_res_pop', null), ('2017', 'PL028C1', 'Koszalin', 'beds_per_1000res_pop', null), ('2017', 'PL029C1', 'Slupsk', 'ons', null), ('2017', 'PL029C1', 'Slupsk', 'beds', null), ('2017', 'PL029C1', 'Slupsk', 'ons_per_res_pop', null), ('2017', 'PL029C1', 'Slupsk', 'beds_per_1000res_pop', null), ('2017', 'PL030C1', 'Jastrzebie-Zdrój', 'ons', null), ('2017', 'PL030C1', 'Jastrzebie-Zdrój', 'beds', null), ('2017', 'PL030C1', 'Jastrzebie-Zdrój', 'ons_per_res_pop', null), ('2017', 'PL030C1', 'Jastrzebie-Zdrój', 'beds_per_1000res_pop', null), ('2017', 'PL031C1', 'Siedlce', 'ons', null), ('2017', 'PL031C1', 'Siedlce', 'beds', null), ('2017', 'PL031C1', 'Siedlce', 'ons_per_res_pop', null), ('2017', 'PL031C1', 'Siedlce', 'beds_per_1000res_pop', null), ('2017', 'PL032C1', 'Piotrków Trybunalski', 'ons', null), ('2017', 'PL032C1', 'Piotrków Trybunalski', 'beds', null), ('2017', 'PL032C1', 'Piotrków Trybunalski', 'ons_per_res_pop', null), ('2017', 'PL032C1', 'Piotrków Trybunalski', 'beds_per_1000res_pop', null), ('2017', 'PL033C1', 'Lubin', 'ons', null), ('2017', 'PL033C1', 'Lubin', 'beds', null), ('2017', 'PL033C1', 'Lubin', 'ons_per_res_pop', null), ('2017', 'PL033C1', 'Lubin', 'beds_per_1000res_pop', null), ('2017', 'PL034C1', 'Pila', 'ons', null), ('2017', 'PL034C1', 'Pila', 'beds', null), ('2017', 'PL034C1', 'Pila', 'ons_per_res_pop', null), ('2017', 'PL034C1', 'Pila', 'beds_per_1000res_pop', null), ('2017', 'PL035C1', 'Inowroclaw', 'ons', null), ('2017', 'PL035C1', 'Inowroclaw', 'beds', null), ('2017', 'PL035C1', 'Inowroclaw', 'ons_per_res_pop', null), ('2017', 'PL035C1', 'Inowroclaw', 'beds_per_1000res_pop', null), ('2017', 'PL036C1', 'Ostrowiec Swietokrzyski', 'ons', null), ('2017', 'PL036C1', 'Ostrowiec Swietokrzyski', 'beds', null), ('2017', 'PL036C1', 'Ostrowiec Swietokrzyski', 'ons_per_res_pop', null), ('2017', 'PL036C1', 'Ostrowiec Swietokrzyski', 'beds_per_1000res_pop', null), ('2017', 'PL037C1', 'Gniezno', 'ons', null), ('2017', 'PL037C1', 'Gniezno', 'beds', null), ('2017', 'PL037C1', 'Gniezno', 'ons_per_res_pop', null), ('2017', 'PL037C1', 'Gniezno', 'beds_per_1000res_pop', null), ('2017', 'PL038C1', 'Stargard Szczecinski', 'ons', null), ('2017', 'PL038C1', 'Stargard Szczecinski', 'beds', null), ('2017', 'PL038C1', 'Stargard Szczecinski', 'ons_per_res_pop', null), ('2017', 'PL038C1', 'Stargard Szczecinski', 'beds_per_1000res_pop', null), ('2017', 'PL039C1', 'Ostrów Wielkopolski', 'ons', null), ('2017', 'PL039C1', 'Ostrów Wielkopolski', 'beds', null), ('2017', 'PL039C1', 'Ostrów Wielkopolski', 'ons_per_res_pop', null), ('2017', 'PL039C1', 'Ostrów Wielkopolski', 'beds_per_1000res_pop', null), ('2017', 'PL040C1', 'Przemysl', 'ons', null), ('2017', 'PL040C1', 'Przemysl', 'beds', null), ('2017', 'PL040C1', 'Przemysl', 'ons_per_res_pop', null), ('2017', 'PL040C1', 'Przemysl', 'beds_per_1000res_pop', null), ('2017', 'PL041C1', 'Zamosc', 'ons', null), ('2017', 'PL041C1', 'Zamosc', 'beds', null), ('2017', 'PL041C1', 'Zamosc', 'ons_per_res_pop', null), ('2017', 'PL041C1', 'Zamosc', 'beds_per_1000res_pop', null), ('2017', 'PL042C1', 'Chelm', 'ons', null), ('2017', 'PL042C1', 'Chelm', 'beds', null), ('2017', 'PL042C1', 'Chelm', 'ons_per_res_pop', null), ('2017', 'PL042C1', 'Chelm', 'beds_per_1000res_pop', null), ('2017', 'PL043C1', 'Pabianice', 'ons', null), ('2017', 'PL043C1', 'Pabianice', 'beds', null), ('2017', 'PL043C1', 'Pabianice', 'ons_per_res_pop', null), ('2017', 'PL043C1', 'Pabianice', 'beds_per_1000res_pop', null), ('2017', 'PL044C1', 'Glogów', 'ons', null), ('2017', 'PL044C1', 'Glogów', 'beds', null), ('2017', 'PL044C1', 'Glogów', 'ons_per_res_pop', null), ('2017', 'PL044C1', 'Glogów', 'beds_per_1000res_pop', null), ('2017', 'PL045C1', 'Stalowa Wola', 'ons', null), ('2017', 'PL045C1', 'Stalowa Wola', 'beds', null), ('2017', 'PL045C1', 'Stalowa Wola', 'ons_per_res_pop', null), ('2017', 'PL045C1', 'Stalowa Wola', 'beds_per_1000res_pop', null), ('2017', 'PL046C1', 'Tomaszów Mazowiecki', 'ons', null), ('2017', 'PL046C1', 'Tomaszów Mazowiecki', 'beds', null), ('2017', 'PL046C1', 'Tomaszów Mazowiecki', 'ons_per_res_pop', null), ('2017', 'PL046C1', 'Tomaszów Mazowiecki', 'beds_per_1000res_pop', null), ('2017', 'PL047C1', 'Lomza', 'ons', null), ('2017', 'PL047C1', 'Lomza', 'beds', null), ('2017', 'PL047C1', 'Lomza', 'ons_per_res_pop', null), ('2017', 'PL047C1', 'Lomza', 'beds_per_1000res_pop', null), ('2017', 'PL048C1', 'Leszno', 'ons', null), ('2017', 'PL048C1', 'Leszno', 'beds', null), ('2017', 'PL048C1', 'Leszno', 'ons_per_res_pop', null), ('2017', 'PL048C1', 'Leszno', 'beds_per_1000res_pop', null), ('2017', 'PL049C1', 'Swidnica', 'ons', null), ('2017', 'PL049C1', 'Swidnica', 'beds', null), ('2017', 'PL049C1', 'Swidnica', 'ons_per_res_pop', null), ('2017', 'PL049C1', 'Swidnica', 'beds_per_1000res_pop', null), ('2017', 'PL050C1', 'Zgierz', 'ons', null), ('2017', 'PL050C1', 'Zgierz', 'beds', null), ('2017', 'PL050C1', 'Zgierz', 'ons_per_res_pop', null), ('2017', 'PL050C1', 'Zgierz', 'beds_per_1000res_pop', null), ('2017', 'PL051C1', 'Tczew', 'ons', null), ('2017', 'PL051C1', 'Tczew', 'beds', null), ('2017', 'PL051C1', 'Tczew', 'ons_per_res_pop', null), ('2017', 'PL051C1', 'Tczew', 'beds_per_1000res_pop', null), ('2017', 'PL052C1', 'Elk', 'ons', null), ('2017', 'PL052C1', 'Elk', 'beds', null), ('2017', 'PL052C1', 'Elk', 'ons_per_res_pop', null), ('2017', 'PL052C1', 'Elk', 'beds_per_1000res_pop', null), ('2017', 'PL501C1', 'Gdynia', 'ons', null), ('2017', 'PL501C1', 'Gdynia', 'beds', null), ('2017', 'PL501C1', 'Gdynia', 'ons_per_res_pop', null), ('2017', 'PL501C1', 'Gdynia', 'beds_per_1000res_pop', null), ('2017', 'PL502C1', 'Sosnowiec', 'ons', null), ('2017', 'PL502C1', 'Sosnowiec', 'beds', null), ('2017', 'PL502C1', 'Sosnowiec', 'ons_per_res_pop', null), ('2017', 'PL502C1', 'Sosnowiec', 'beds_per_1000res_pop', null), ('2017', 'PL503C1', 'Gliwice', 'ons', null), ('2017', 'PL503C1', 'Gliwice', 'beds', null), ('2017', 'PL503C1', 'Gliwice', 'ons_per_res_pop', null), ('2017', 'PL503C1', 'Gliwice', 'beds_per_1000res_pop', null), ('2017', 'PL504C1', 'Zabrze', 'ons', null), ('2017', 'PL504C1', 'Zabrze', 'beds', null), ('2017', 'PL504C1', 'Zabrze', 'ons_per_res_pop', null), ('2017', 'PL504C1', 'Zabrze', 'beds_per_1000res_pop', null), ('2017', 'PL505C1', 'Bytom', 'ons', null), ('2017', 'PL505C1', 'Bytom', 'beds', null), ('2017', 'PL505C1', 'Bytom', 'ons_per_res_pop', null), ('2017', 'PL505C1', 'Bytom', 'beds_per_1000res_pop', null), ('2017', 'PL506C1', 'Bielsko-Biala', 'ons', null), ('2017', 'PL506C1', 'Bielsko-Biala', 'beds', null), ('2017', 'PL506C1', 'Bielsko-Biala', 'ons_per_res_pop', null), ('2017', 'PL506C1', 'Bielsko-Biala', 'beds_per_1000res_pop', null), ('2017', 'PL507C1', 'Ruda Slaska', 'ons', null), ('2017', 'PL507C1', 'Ruda Slaska', 'beds', null), ('2017', 'PL507C1', 'Ruda Slaska', 'ons_per_res_pop', null), ('2017', 'PL507C1', 'Ruda Slaska', 'beds_per_1000res_pop', null), ('2017', 'PL508C1', 'Rybnik', 'ons', null), ('2017', 'PL508C1', 'Rybnik', 'beds', null), ('2017', 'PL508C1', 'Rybnik', 'ons_per_res_pop', null), ('2017', 'PL508C1', 'Rybnik', 'beds_per_1000res_pop', null), ('2017', 'PL509C1', 'Tychy', 'ons', null), ('2017', 'PL509C1', 'Tychy', 'beds', null), ('2017', 'PL509C1', 'Tychy', 'ons_per_res_pop', null), ('2017', 'PL509C1', 'Tychy', 'beds_per_1000res_pop', null), ('2017', 'PL511C1', 'Walbrzych', 'ons', null), ('2017', 'PL511C1', 'Walbrzych', 'beds', null), ('2017', 'PL511C1', 'Walbrzych', 'ons_per_res_pop', null), ('2017', 'PL511C1', 'Walbrzych', 'beds_per_1000res_pop', null), ('2017', 'PL512C1', 'Elblag', 'ons', null), ('2017', 'PL512C1', 'Elblag', 'beds', null), ('2017', 'PL512C1', 'Elblag', 'ons_per_res_pop', null), ('2017', 'PL512C1', 'Elblag', 'beds_per_1000res_pop', null), ('2017', 'PL513C1', 'Wloclawek', 'ons', null), ('2017', 'PL513C1', 'Wloclawek', 'beds', null), ('2017', 'PL513C1', 'Wloclawek', 'ons_per_res_pop', null), ('2017', 'PL513C1', 'Wloclawek', 'beds_per_1000res_pop', null), ('2017', 'PL514C1', 'Tarnów', 'ons', null), ('2017', 'PL514C1', 'Tarnów', 'beds', null), ('2017', 'PL514C1', 'Tarnów', 'ons_per_res_pop', null), ('2017', 'PL514C1', 'Tarnów', 'beds_per_1000res_pop', null), ('2017', 'PL515C1', 'Chorzów', 'ons', null), ('2017', 'PL515C1', 'Chorzów', 'beds', null), ('2017', 'PL515C1', 'Chorzów', 'ons_per_res_pop', null), ('2017', 'PL515C1', 'Chorzów', 'beds_per_1000res_pop', null), ('2017', 'PL516C1', 'Legnica', 'ons', null), ('2017', 'PL516C1', 'Legnica', 'beds', null), ('2017', 'PL516C1', 'Legnica', 'ons_per_res_pop', null), ('2017', 'PL516C1', 'Legnica', 'beds_per_1000res_pop', null), ('2017', 'PL517C1', 'Grudziadz', 'ons', null), ('2017', 'PL517C1', 'Grudziadz', 'beds', null), ('2017', 'PL517C1', 'Grudziadz', 'ons_per_res_pop', null), ('2017', 'PL517C1', 'Grudziadz', 'beds_per_1000res_pop', null), ('2017', 'PT', 'Portugal', 'ons', '65385210'), ('2017', 'PT', 'Portugal', 'beds', '402832'), ('2017', 'PT', 'Portugal', 'ons_per_res_pop', '6.3'), ('2017', 'PT', 'Portugal', 'beds_per_1000res_pop', '39.1'), ('2017', 'PT001C1', 'Lisboa', 'ons', '12553476'), ('2017', 'PT001C1', 'Lisboa', 'beds', '55598'), ('2017', 'PT001C1', 'Lisboa', 'ons_per_res_pop', '24.9'), ('2017', 'PT001C1', 'Lisboa', 'beds_per_1000res_pop', '110.1'), ('2017', 'PT002C1', 'Porto', 'ons', '3782858'), ('2017', 'PT002C1', 'Porto', 'beds', '18296'), ('2017', 'PT002C1', 'Porto', 'ons_per_res_pop', '17.7'), ('2017', 'PT002C1', 'Porto', 'beds_per_1000res_pop', '85.4'), ('2017', 'PT003C1', 'Braga', 'ons', '525419'), ('2017', 'PT003C1', 'Braga', 'beds', '3130'), ('2017', 'PT003C1', 'Braga', 'ons_per_res_pop', '2.9'), ('2017', 'PT003C1', 'Braga', 'beds_per_1000res_pop', '17.3'), ('2017', 'PT004C1', 'Funchal', 'ons', '5456332'), ('2017', 'PT004C1', 'Funchal', 'beds', '22185'), ('2017', 'PT004C1', 'Funchal', 'ons_per_res_pop', '52.1'), ('2017', 'PT004C1', 'Funchal', 'beds_per_1000res_pop', '211.7'), ('2017', 'PT005C1', 'Coimbra', 'ons', '637973'), ('2017', 'PT005C1', 'Coimbra', 'beds', '3682'), ('2017', 'PT005C1', 'Coimbra', 'ons_per_res_pop', '4.7'), ('2017', 'PT005C1', 'Coimbra', 'beds_per_1000res_pop', '27.4'), ('2017', 'PT006C1', 'Setúbal', 'ons', '313003'), ('2017', 'PT006C1', 'Setúbal', 'beds', '2304'), ('2017', 'PT006C1', 'Setúbal', 'ons_per_res_pop', '2.7'), ('2017', 'PT006C1', 'Setúbal', 'beds_per_1000res_pop', '19.7'), ('2017', 'PT007C1', 'Ponta Delgada', 'ons', '1009578'), ('2017', 'PT007C1', 'Ponta Delgada', 'beds', '5055'), ('2017', 'PT007C1', 'Ponta Delgada', 'ons_per_res_pop', '14.8'), ('2017', 'PT007C1', 'Ponta Delgada', 'beds_per_1000res_pop', '74'), ('2017', 'PT008C1', 'Aveiro', 'ons', '332683'), ('2017', 'PT008C1', 'Aveiro', 'beds', '2041'), ('2017', 'PT008C1', 'Aveiro', 'ons_per_res_pop', '4.3'), ('2017', 'PT008C1', 'Aveiro', 'beds_per_1000res_pop', '26.4'), ('2017', 'PT009C1', 'Faro', 'ons', '516150'), ('2017', 'PT009C1', 'Faro', 'beds', '2612'), ('2017', 'PT009C1', 'Faro', 'ons_per_res_pop', '8.5'), ('2017', 'PT009C1', 'Faro', 'beds_per_1000res_pop', '42.8'), ('2017', 'PT010C1', 'Seixal', 'ons', '36779'), ('2017', 'PT010C1', 'Seixal', 'beds', '336'), ('2017', 'PT010C1', 'Seixal', 'ons_per_res_pop', '0.2'), ('2017', 'PT010C1', 'Seixal', 'beds_per_1000res_pop', '2'), ('2017', 'PT011C1', 'Amadora', 'ons', '131590'), ('2017', 'PT011C1', 'Amadora', 'beds', '620'), ('2017', 'PT011C1', 'Amadora', 'ons_per_res_pop', '0.7'), ('2017', 'PT011C1', 'Amadora', 'beds_per_1000res_pop', '3.5'), ('2017', 'PT012C1', 'Almada', 'ons', '374634'), ('2017', 'PT012C1', 'Almada', 'beds', '2171'), ('2017', 'PT012C1', 'Almada', 'ons_per_res_pop', '2.2'), ('2017', 'PT012C1', 'Almada', 'beds_per_1000res_pop', '12.8'), ('2017', 'PT013C1', 'Odivelas', 'ons', '0'), ('2017', 'PT013C1', 'Odivelas', 'beds', '0'), ('2017', 'PT013C1', 'Odivelas', 'ons_per_res_pop', '0'), ('2017', 'PT013C1', 'Odivelas', 'beds_per_1000res_pop', '0'), ('2017', 'PT014C1', 'Viseu', 'ons', '196773'), ('2017', 'PT014C1', 'Viseu', 'beds', '1692'), ('2017', 'PT014C1', 'Viseu', 'ons_per_res_pop', '2'), ('2017', 'PT014C1', 'Viseu', 'beds_per_1000res_pop', '17.3'), ('2017', 'PT015C1', 'Valongo', 'ons', '85381'), ('2017', 'PT015C1', 'Valongo', 'beds', '487'), ('2017', 'PT015C1', 'Valongo', 'ons_per_res_pop', '0.9'), ('2017', 'PT015C1', 'Valongo', 'beds_per_1000res_pop', '5.1'), ('2017', 'PT016C1', 'Viana do Castelo', 'ons', '223866'), ('2017', 'PT016C1', 'Viana do Castelo', 'beds', '1788'), ('2017', 'PT016C1', 'Viana do Castelo', 'ons_per_res_pop', '2.6'), ('2017', 'PT016C1', 'Viana do Castelo', 'beds_per_1000res_pop', '20.9'), ('2017', 'PT017C1', 'Paredes', 'ons', '56239'), ('2017', 'PT017C1', 'Paredes', 'beds', '418'), ('2017', 'PT017C1', 'Paredes', 'ons_per_res_pop', '0.7'), ('2017', 'PT017C1', 'Paredes', 'beds_per_1000res_pop', '4.8'), ('2017', 'PT018C1', 'Barreiro', 'ons', null), ('2017', 'PT018C1', 'Barreiro', 'beds', null), ('2017', 'PT018C1', 'Barreiro', 'ons_per_res_pop', null), ('2017', 'PT018C1', 'Barreiro', 'beds_per_1000res_pop', null), ('2017', 'PT019C1', 'Póvoa de Varzim', 'ons', '197525'), ('2017', 'PT019C1', 'Póvoa de Varzim', 'beds', '1529'), ('2017', 'PT019C1', 'Póvoa de Varzim', 'ons_per_res_pop', '3.2'), ('2017', 'PT019C1', 'Póvoa de Varzim', 'beds_per_1000res_pop', '24.5'), ('2017', 'PT501C1', 'Sintra', 'ons', '539444'), ('2017', 'PT501C1', 'Sintra', 'beds', '3027'), ('2017', 'PT501C1', 'Sintra', 'ons_per_res_pop', '1.4'), ('2017', 'PT501C1', 'Sintra', 'beds_per_1000res_pop', '7.9'), ('2017', 'PT502C1', 'Vila Nova de Gaia', 'ons', '663957'), ('2017', 'PT502C1', 'Vila Nova de Gaia', 'beds', '3312'), ('2017', 'PT502C1', 'Vila Nova de Gaia', 'ons_per_res_pop', '2.2'), ('2017', 'PT502C1', 'Vila Nova de Gaia', 'beds_per_1000res_pop', '11'), ('2017', 'PT503C1', 'Matosinhos', 'ons', '456872'), ('2017', 'PT503C1', 'Matosinhos', 'beds', '2138'), ('2017', 'PT503C1', 'Matosinhos', 'ons_per_res_pop', '2.6'), ('2017', 'PT503C1', 'Matosinhos', 'beds_per_1000res_pop', '12.3'), ('2017', 'PT504C1', 'Gondomar', 'ons', '3980'), ('2017', 'PT504C1', 'Gondomar', 'beds', '52'), ('2017', 'PT504C1', 'Gondomar', 'ons_per_res_pop', '0'), ('2017', 'PT504C1', 'Gondomar', 'beds_per_1000res_pop', '0.3'), ('2017', 'PT505C1', 'Guimarães', 'ons', '311737'), ('2017', 'PT505C1', 'Guimarães', 'beds', '2289'), ('2017', 'PT505C1', 'Guimarães', 'ons_per_res_pop', '2'), ('2017', 'PT505C1', 'Guimarães', 'beds_per_1000res_pop', '14.9'), ('2017', 'PT508C1', 'Vila Franca de Xira', 'ons', null), ('2017', 'PT508C1', 'Vila Franca de Xira', 'beds', null), ('2017', 'PT508C1', 'Vila Franca de Xira', 'ons_per_res_pop', null), ('2017', 'PT508C1', 'Vila Franca de Xira', 'beds_per_1000res_pop', null), ('2017', 'RO', 'Romania', 'ons', '27092523'), ('2017', 'RO', 'Romania', 'beds', '343720'), ('2017', 'RO', 'Romania', 'ons_per_res_pop', '1.2'), ('2017', 'RO', 'Romania', 'beds_per_1000res_pop', '15.5'), ('2017', 'RO001C1', 'Bucuresti', 'ons', '3360245'), ('2017', 'RO001C1', 'Bucuresti', 'beds', '20886'), ('2017', 'RO001C1', 'Bucuresti', 'ons_per_res_pop', '1.6'), ('2017', 'RO001C1', 'Bucuresti', 'beds_per_1000res_pop', '9.9'), ('2017', 'RO002C1', 'Cluj-Napoca', 'ons', '872015'), ('2017', 'RO002C1', 'Cluj-Napoca', 'beds', '6216'), ('2017', 'RO002C1', 'Cluj-Napoca', 'ons_per_res_pop', '2.7'), ('2017', 'RO002C1', 'Cluj-Napoca', 'beds_per_1000res_pop', '19.2'), ('2017', 'RO003C1', 'Timisoara', 'ons', '682063'), ('2017', 'RO003C1', 'Timisoara', 'beds', '5053'), ('2017', 'RO003C1', 'Timisoara', 'ons_per_res_pop', '2.1'), ('2017', 'RO003C1', 'Timisoara', 'beds_per_1000res_pop', '15.3'), ('2017', 'RO004C1', 'Craiova', 'ons', '184921'), ('2017', 'RO004C1', 'Craiova', 'beds', '2230'), ('2017', 'RO004C1', 'Craiova', 'ons_per_res_pop', '0.6'), ('2017', 'RO004C1', 'Craiova', 'beds_per_1000res_pop', '7.4'), ('2017', 'RO005C1', 'Braila', 'ons', '100179'), ('2017', 'RO005C1', 'Braila', 'beds', '1099'), ('2017', 'RO005C1', 'Braila', 'ons_per_res_pop', '0.5'), ('2017', 'RO005C1', 'Braila', 'beds_per_1000res_pop', '5.4'), ('2017', 'RO006C1', 'Oradea', 'ons', '407225'), ('2017', 'RO006C1', 'Oradea', 'beds', '2608'), ('2017', 'RO006C1', 'Oradea', 'ons_per_res_pop', '1.8'), ('2017', 'RO006C1', 'Oradea', 'beds_per_1000res_pop', '11.8'), ('2017', 'RO007C1', 'Bacau', 'ons', '86680'), ('2017', 'RO007C1', 'Bacau', 'beds', '1042'), ('2017', 'RO007C1', 'Bacau', 'ons_per_res_pop', '0.4'), ('2017', 'RO007C1', 'Bacau', 'beds_per_1000res_pop', '5.3'), ('2017', 'RO008C1', 'Arad', 'ons', '240215'), ('2017', 'RO008C1', 'Arad', 'beds', '3012'), ('2017', 'RO008C1', 'Arad', 'ons_per_res_pop', '1.4'), ('2017', 'RO008C1', 'Arad', 'beds_per_1000res_pop', '17'), ('2017', 'RO009C1', 'Sibiu', 'ons', '617895'), ('2017', 'RO009C1', 'Sibiu', 'beds', '5580'), ('2017', 'RO009C1', 'Sibiu', 'ons_per_res_pop', '3.7'), ('2017', 'RO009C1', 'Sibiu', 'beds_per_1000res_pop', '33'), ('2017', 'RO010C1', 'Târgu Mures', 'ons', '305946'), ('2017', 'RO010C1', 'Târgu Mures', 'beds', '2691'), ('2017', 'RO010C1', 'Târgu Mures', 'ons_per_res_pop', '2.1'), ('2017', 'RO010C1', 'Târgu Mures', 'beds_per_1000res_pop', '18.1'), ('2017', 'RO011C1', 'Piatra Neamt', 'ons', '82944'), ('2017', 'RO011C1', 'Piatra Neamt', 'beds', '1072'), ('2017', 'RO011C1', 'Piatra Neamt', 'ons_per_res_pop', '0.7'), ('2017', 'RO011C1', 'Piatra Neamt', 'beds_per_1000res_pop', '9.5'), ('2017', 'RO012C1', 'Calarasi', 'ons', '35218'), ('2017', 'RO012C1', 'Calarasi', 'beds', '747'), ('2017', 'RO012C1', 'Calarasi', 'ons_per_res_pop', '0.5'), ('2017', 'RO012C1', 'Calarasi', 'beds_per_1000res_pop', '9.8'), ('2017', 'RO013C1', 'Giurgiu', 'ons', '17808'), ('2017', 'RO013C1', 'Giurgiu', 'beds', '418'), ('2017', 'RO013C1', 'Giurgiu', 'ons_per_res_pop', '0.3'), ('2017', 'RO013C1', 'Giurgiu', 'beds_per_1000res_pop', '6.2'), ('2017', 'RO014C1', 'Alba Iulia', 'ons', '115263'), ('2017', 'RO014C1', 'Alba Iulia', 'beds', '1178'), ('2017', 'RO014C1', 'Alba Iulia', 'ons_per_res_pop', '1.5'), ('2017', 'RO014C1', 'Alba Iulia', 'beds_per_1000res_pop', '15.8'), ('2017', 'RO015C1', 'Focsani', 'ons', '24017'), ('2017', 'RO015C1', 'Focsani', 'beds', '418'), ('2017', 'RO015C1', 'Focsani', 'ons_per_res_pop', '0.3'), ('2017', 'RO015C1', 'Focsani', 'beds_per_1000res_pop', '4.5'), ('2017', 'RO016C1', 'Târgu Jiu', 'ons', '81221'), ('2017', 'RO016C1', 'Târgu Jiu', 'beds', '1085'), ('2017', 'RO016C1', 'Târgu Jiu', 'ons_per_res_pop', '0.8'), ('2017', 'RO016C1', 'Târgu Jiu', 'beds_per_1000res_pop', '11.3'), ('2017', 'RO017C1', 'Tulcea', 'ons', '133988'), ('2017', 'RO017C1', 'Tulcea', 'beds', '1289'), ('2017', 'RO017C1', 'Tulcea', 'ons_per_res_pop', '1.5'), ('2017', 'RO017C1', 'Tulcea', 'beds_per_1000res_pop', '14.7'), ('2017', 'RO018C1', 'Târgoviste', 'ons', '74441'), ('2017', 'RO018C1', 'Târgoviste', 'beds', '722'), ('2017', 'RO018C1', 'Târgoviste', 'ons_per_res_pop', '0.8'), ('2017', 'RO018C1', 'Târgoviste', 'beds_per_1000res_pop', '7.8'), ('2017', 'RO019C1', 'Slatina', 'ons', '55715'), ('2017', 'RO019C1', 'Slatina', 'beds', '515'), ('2017', 'RO019C1', 'Slatina', 'ons_per_res_pop', '0.7'), ('2017', 'RO019C1', 'Slatina', 'beds_per_1000res_pop', '6.2'), ('2017', 'RO020C1', 'Bârlad', 'ons', '12035'), ('2017', 'RO020C1', 'Bârlad', 'beds', '163'), ('2017', 'RO020C1', 'Bârlad', 'ons_per_res_pop', '0.2'), ('2017', 'RO020C1', 'Bârlad', 'beds_per_1000res_pop', '2.3'), ('2017', 'RO021C1', 'Roman', 'ons', '36613'), ('2017', 'RO021C1', 'Roman', 'beds', '338'), ('2017', 'RO021C1', 'Roman', 'ons_per_res_pop', '0.5'), ('2017', 'RO021C1', 'Roman', 'beds_per_1000res_pop', '4.9'), ('2017', 'RO022C1', 'Bistrita', 'ons', '122951'), ('2017', 'RO022C1', 'Bistrita', 'beds', '1299'), ('2017', 'RO022C1', 'Bistrita', 'ons_per_res_pop', '1.3'), ('2017', 'RO022C1', 'Bistrita', 'beds_per_1000res_pop', '13.8'), ('2017', 'RO501C1', 'Constanta', 'ons', '1677868'), ('2017', 'RO501C1', 'Constanta', 'beds', '22806'), ('2017', 'RO501C1', 'Constanta', 'ons_per_res_pop', '5.3'), ('2017', 'RO501C1', 'Constanta', 'beds_per_1000res_pop', '72.4'), ('2017', 'RO502C1', 'Iasi', 'ons', '501435'), ('2017', 'RO502C1', 'Iasi', 'beds', '3517'), ('2017', 'RO502C1', 'Iasi', 'ons_per_res_pop', '1.3'), ('2017', 'RO502C1', 'Iasi', 'beds_per_1000res_pop', '9.4'), ('2017', 'RO503C1', 'Galati', 'ons', '140798'), ('2017', 'RO503C1', 'Galati', 'beds', '1703'), ('2017', 'RO503C1', 'Galati', 'ons_per_res_pop', '0.5'), ('2017', 'RO503C1', 'Galati', 'beds_per_1000res_pop', '5.6'), ('2017', 'RO504C1', 'Brasov', 'ons', '1194787'), ('2017', 'RO504C1', 'Brasov', 'beds', '10237'), ('2017', 'RO504C1', 'Brasov', 'ons_per_res_pop', '4.1'), ('2017', 'RO504C1', 'Brasov', 'beds_per_1000res_pop', '35.3'), ('2017', 'RO505C1', 'Ploiesti', 'ons', '117118'), ('2017', 'RO505C1', 'Ploiesti', 'beds', '1512'), ('2017', 'RO505C1', 'Ploiesti', 'ons_per_res_pop', '0.5'), ('2017', 'RO505C1', 'Ploiesti', 'beds_per_1000res_pop', '6.6'), ('2017', 'RO506C1', 'Pitesti', 'ons', '137146'), ('2017', 'RO506C1', 'Pitesti', 'beds', '2465'), ('2017', 'RO506C1', 'Pitesti', 'ons_per_res_pop', '0.8'), ('2017', 'RO506C1', 'Pitesti', 'beds_per_1000res_pop', '14.1'), ('2017', 'RO507C1', 'Baia Mare', 'ons', '144585'), ('2017', 'RO507C1', 'Baia Mare', 'beds', '2126'), ('2017', 'RO507C1', 'Baia Mare', 'ons_per_res_pop', '1'), ('2017', 'RO507C1', 'Baia Mare', 'beds_per_1000res_pop', '14.5'), ('2017', 'RO508C1', 'Buzau', 'ons', '65387'), ('2017', 'RO508C1', 'Buzau', 'beds', '778'), ('2017', 'RO508C1', 'Buzau', 'ons_per_res_pop', '0.5'), ('2017', 'RO508C1', 'Buzau', 'beds_per_1000res_pop', '5.8'), ('2017', 'RO509C1', 'Satu Mare', 'ons', '71091'), ('2017', 'RO509C1', 'Satu Mare', 'beds', '809'), ('2017', 'RO509C1', 'Satu Mare', 'ons_per_res_pop', '0.6'), ('2017', 'RO509C1', 'Satu Mare', 'beds_per_1000res_pop', '6.7'), ('2017', 'RO510C1', 'Botosani', 'ons', '80087'), ('2017', 'RO510C1', 'Botosani', 'beds', '911'), ('2017', 'RO510C1', 'Botosani', 'ons_per_res_pop', '0.7'), ('2017', 'RO510C1', 'Botosani', 'beds_per_1000res_pop', '7.5'), ('2017', 'RO511C1', 'Râmnicu Vâlcea', 'ons', '108499'), ('2017', 'RO511C1', 'Râmnicu Vâlcea', 'beds', '1084'), ('2017', 'RO511C1', 'Râmnicu Vâlcea', 'ons_per_res_pop', '0.9'), ('2017', 'RO511C1', 'Râmnicu Vâlcea', 'beds_per_1000res_pop', '9.2'), ('2017', 'RO512C1', 'Suceava', 'ons', '151081'), ('2017', 'RO512C1', 'Suceava', 'beds', '1328'), ('2017', 'RO512C1', 'Suceava', 'ons_per_res_pop', '1.2'), ('2017', 'RO512C1', 'Suceava', 'beds_per_1000res_pop', '10.9'), ('2017', 'RO513C1', 'Drobeta-Turnu Severin', 'ons', '121403'), ('2017', 'RO513C1', 'Drobeta-Turnu Severin', 'beds', '1267'), ('2017', 'RO513C1', 'Drobeta-Turnu Severin', 'ons_per_res_pop', '1.1'), ('2017', 'RO513C1', 'Drobeta-Turnu Severin', 'beds_per_1000res_pop', '11.8'), ('2017', 'SI', 'Slovenia', 'ons', '12591562'), ('2017', 'SI', 'Slovenia', 'beds', '123225'), ('2017', 'SI', 'Slovenia', 'ons_per_res_pop', '6.1'), ('2017', 'SI', 'Slovenia', 'beds_per_1000res_pop', '59.6'), ('2017', 'SI001C1', 'Ljubljana', 'ons', '1548487'), ('2017', 'SI001C1', 'Ljubljana', 'beds', '10382'), ('2017', 'SI001C1', 'Ljubljana', 'ons_per_res_pop', '5.4'), ('2017', 'SI001C1', 'Ljubljana', 'beds_per_1000res_pop', '35.9'), ('2017', 'SI002C1', 'Maribor', 'ons', '337250'), ('2017', 'SI002C1', 'Maribor', 'beds', '4017'), ('2017', 'SI002C1', 'Maribor', 'ons_per_res_pop', '3'), ('2017', 'SI002C1', 'Maribor', 'beds_per_1000res_pop', '36.2'), ('2017', 'SK', 'Slovakia', 'ons', '14936766'), ('2017', 'SK', 'Slovakia', 'beds', '178983'), ('2017', 'SK', 'Slovakia', 'ons_per_res_pop', '2.7'), ('2017', 'SK', 'Slovakia', 'beds_per_1000res_pop', '32.9'), ('2017', 'SK001C1', 'Bratislava', 'ons', '2719733'), ('2017', 'SK001C1', 'Bratislava', 'beds', '17153'), ('2017', 'SK001C1', 'Bratislava', 'ons_per_res_pop', '6.4'), ('2017', 'SK001C1', 'Bratislava', 'beds_per_1000res_pop', '40.3'), ('2017', 'SK002C1', 'Kosice', 'ons', '367725'), ('2017', 'SK002C1', 'Kosice', 'beds', '4829'), ('2017', 'SK002C1', 'Kosice', 'ons_per_res_pop', '1.5'), ('2017', 'SK002C1', 'Kosice', 'beds_per_1000res_pop', '20.2'), ('2017', 'SK003C1', 'Banská Bystrica', 'ons', '98775'), ('2017', 'SK003C1', 'Banská Bystrica', 'beds', '1578'), ('2017', 'SK003C1', 'Banská Bystrica', 'ons_per_res_pop', '1.3'), ('2017', 'SK003C1', 'Banská Bystrica', 'beds_per_1000res_pop', '20.1'), ('2017', 'SK004C1', 'Nitra', 'ons', '294735'), ('2017', 'SK004C1', 'Nitra', 'beds', '2265'), ('2017', 'SK004C1', 'Nitra', 'ons_per_res_pop', '3.8'), ('2017', 'SK004C1', 'Nitra', 'beds_per_1000res_pop', '29.3'), ('2017', 'SK005C1', 'Presov', 'ons', '90071'), ('2017', 'SK005C1', 'Presov', 'beds', '2111'), ('2017', 'SK005C1', 'Presov', 'ons_per_res_pop', '1'), ('2017', 'SK005C1', 'Presov', 'beds_per_1000res_pop', '23.6'), ('2017', 'SK006C1', 'Zilina', 'ons', '202630'), ('2017', 'SK006C1', 'Zilina', 'beds', '1781'), ('2017', 'SK006C1', 'Zilina', 'ons_per_res_pop', '2.5'), ('2017', 'SK006C1', 'Zilina', 'beds_per_1000res_pop', '22'), ('2017', 'SK007C1', 'Trnava', 'ons', '107526'), ('2017', 'SK007C1', 'Trnava', 'beds', '1512'), ('2017', 'SK007C1', 'Trnava', 'ons_per_res_pop', '1.6'), ('2017', 'SK007C1', 'Trnava', 'beds_per_1000res_pop', '23.1'), ('2017', 'SK008C1', 'Trencín', 'ons', '135968'), ('2017', 'SK008C1', 'Trencín', 'beds', '1479'), ('2017', 'SK008C1', 'Trencín', 'ons_per_res_pop', '2.4'), ('2017', 'SK008C1', 'Trencín', 'beds_per_1000res_pop', '26.6'), ('2017', 'FI', 'Finland', 'ons', '21914154'), ('2017', 'FI', 'Finland', 'beds', '170092'), ('2017', 'FI', 'Finland', 'ons_per_res_pop', '4'), ('2017', 'FI', 'Finland', 'beds_per_1000res_pop', '30.9'), ('2017', 'FI001C2', 'Helsinki / Helsingfors', 'ons', '4175012'), ('2017', 'FI001C2', 'Helsinki / Helsingfors', 'beds', '21389'), ('2017', 'FI001C2', 'Helsinki / Helsingfors', 'ons_per_res_pop', '6.6'), ('2017', 'FI001C2', 'Helsinki / Helsingfors', 'beds_per_1000res_pop', '33.7'), ('2017', 'FI002C1', 'Tampere / Tammerfors', 'ons', '1129392'), ('2017', 'FI002C1', 'Tampere / Tammerfors', 'beds', '6880'), ('2017', 'FI002C1', 'Tampere / Tammerfors', 'ons_per_res_pop', '4.9'), ('2017', 'FI002C1', 'Tampere / Tammerfors', 'beds_per_1000res_pop', '30.1'), ('2017', 'FI003C1', 'Turku / Åbo', 'ons', '811076'), ('2017', 'FI003C1', 'Turku / Åbo', 'beds', '4617'), ('2017', 'FI003C1', 'Turku / Åbo', 'ons_per_res_pop', '4.3'), ('2017', 'FI003C1', 'Turku / Åbo', 'beds_per_1000res_pop', '24.6'), ('2017', 'FI004C3', 'Oulu', 'ons', '635495'), ('2017', 'FI004C3', 'Oulu', 'beds', '3400'), ('2017', 'FI004C3', 'Oulu', 'ons_per_res_pop', '3.2'), ('2017', 'FI004C3', 'Oulu', 'beds_per_1000res_pop', '17'), ('2017', 'FI005C1', 'Espoo / Esbo', 'ons', '435779'), ('2017', 'FI005C1', 'Espoo / Esbo', 'beds', '2939'), ('2017', 'FI005C1', 'Espoo / Esbo', 'ons_per_res_pop', '1.6'), ('2017', 'FI005C1', 'Espoo / Esbo', 'beds_per_1000res_pop', '10.7'), ('2017', 'FI006C1', 'Vantaa / Vanda', 'ons', '1093172'), ('2017', 'FI006C1', 'Vantaa / Vanda', 'beds', '5318'), ('2017', 'FI006C1', 'Vantaa / Vanda', 'ons_per_res_pop', '5'), ('2017', 'FI006C1', 'Vantaa / Vanda', 'beds_per_1000res_pop', '24.2'), ('2017', 'FI007C2', 'Lahti / Lahtis', 'ons', '281850'), ('2017', 'FI007C2', 'Lahti / Lahtis', 'beds', '1936'), ('2017', 'FI007C2', 'Lahti / Lahtis', 'ons_per_res_pop', '2.4'), ('2017', 'FI007C2', 'Lahti / Lahtis', 'beds_per_1000res_pop', '16.2'), ('2017', 'FI008C3', 'Kuopio', 'ons', '542103'), ('2017', 'FI008C3', 'Kuopio', 'beds', '4235'), ('2017', 'FI008C3', 'Kuopio', 'ons_per_res_pop', '4.6'), ('2017', 'FI008C3', 'Kuopio', 'beds_per_1000res_pop', '36'), ('2017', 'FI009C1', 'Jyväskylä', 'ons', '458094'), ('2017', 'FI009C1', 'Jyväskylä', 'beds', '3300'), ('2017', 'FI009C1', 'Jyväskylä', 'ons_per_res_pop', '3.3'), ('2017', 'FI009C1', 'Jyväskylä', 'beds_per_1000res_pop', '23.8'), ('2017', 'SE', 'Sweden', 'ons', '57234148'), ('2017', 'SE', 'Sweden', 'beds', '3970152'), ('2017', 'SE', 'Sweden', 'ons_per_res_pop', '5.7'), ('2017', 'SE', 'Sweden', 'beds_per_1000res_pop', '397.2'), ('2017', 'SE001C1', 'Stockholm', 'ons', '9071194'), ('2017', 'SE001C1', 'Stockholm', 'beds', '506375'), ('2017', 'SE001C1', 'Stockholm', 'ons_per_res_pop', '9.7'), ('2017', 'SE001C1', 'Stockholm', 'beds_per_1000res_pop', '541.2'), ('2017', 'SE002C1', 'Göteborg', 'ons', '4184185'), ('2017', 'SE002C1', 'Göteborg', 'beds', '259922'), ('2017', 'SE002C1', 'Göteborg', 'ons_per_res_pop', '7.5'), ('2017', 'SE002C1', 'Göteborg', 'beds_per_1000res_pop', '466.9'), ('2017', 'SE003C1', 'Malmö', 'ons', '1906665'), ('2017', 'SE003C1', 'Malmö', 'beds', '117600'), ('2017', 'SE003C1', 'Malmö', 'ons_per_res_pop', '5.8'), ('2017', 'SE003C1', 'Malmö', 'beds_per_1000res_pop', '358'), ('2017', 'SE004C1', 'Jönköping', 'ons', '788473'), ('2017', 'SE004C1', 'Jönköping', 'beds', '55233'), ('2017', 'SE004C1', 'Jönköping', 'ons_per_res_pop', '5.8'), ('2017', 'SE004C1', 'Jönköping', 'beds_per_1000res_pop', '408.2'), ('2017', 'SE005C1', 'Umeå', 'ons', '643780'), ('2017', 'SE005C1', 'Umeå', 'beds', '45584'), ('2017', 'SE005C1', 'Umeå', 'ons_per_res_pop', '5.2'), ('2017', 'SE005C1', 'Umeå', 'beds_per_1000res_pop', '370.9'), ('2017', 'SE006C1', 'Uppsala', 'ons', '611578'), ('2017', 'SE006C1', 'Uppsala', 'beds', '42147'), ('2017', 'SE006C1', 'Uppsala', 'ons_per_res_pop', '2.9'), ('2017', 'SE006C1', 'Uppsala', 'beds_per_1000res_pop', '196.4'), ('2017', 'SE007C1', 'Linköping', 'ons', '533920'), ('2017', 'SE007C1', 'Linköping', 'beds', '35922'), ('2017', 'SE007C1', 'Linköping', 'ons_per_res_pop', '3.4'), ('2017', 'SE007C1', 'Linköping', 'beds_per_1000res_pop', '230.5'), ('2017', 'SE008C1', 'Örebro', 'ons', '700931'), ('2017', 'SE008C1', 'Örebro', 'beds', '41441'), ('2017', 'SE008C1', 'Örebro', 'ons_per_res_pop', '4.8'), ('2017', 'SE008C1', 'Örebro', 'beds_per_1000res_pop', '282.6'), ('2017', 'SE501C1', 'Västerås', 'ons', '392915'), ('2017', 'SE501C1', 'Västerås', 'beds', '23367'), ('2017', 'SE501C1', 'Västerås', 'ons_per_res_pop', '2.7'), ('2017', 'SE501C1', 'Västerås', 'beds_per_1000res_pop', '158.5'), ('2017', 'SE502C1', 'Norrköping', 'ons', '633950'), ('2017', 'SE502C1', 'Norrköping', 'beds', '46090'), ('2017', 'SE502C1', 'Norrköping', 'ons_per_res_pop', '4.5'), ('2017', 'SE502C1', 'Norrköping', 'beds_per_1000res_pop', '330.7'), ('2017', 'SE503C1', 'Helsingborg', 'ons', '761314'), ('2017', 'SE503C1', 'Helsingborg', 'beds', '48874'), ('2017', 'SE503C1', 'Helsingborg', 'ons_per_res_pop', '5.4'), ('2017', 'SE503C1', 'Helsingborg', 'beds_per_1000res_pop', '347.7'), ('2017', 'SE504C1', 'Lund', 'ons', '477171'), ('2017', 'SE504C1', 'Lund', 'beds', '33219'), ('2017', 'SE504C1', 'Lund', 'ons_per_res_pop', '4'), ('2017', 'SE504C1', 'Lund', 'beds_per_1000res_pop', '280.2'), ('2017', 'SE505C1', 'Borås', 'ons', '260483'), ('2017', 'SE505C1', 'Borås', 'beds', '15724'), ('2017', 'SE505C1', 'Borås', 'ons_per_res_pop', '2.4'), ('2017', 'SE505C1', 'Borås', 'beds_per_1000res_pop', '143.1'), ('2017', 'UK', 'United Kingdom', 'ons', null), ('2017', 'UK', 'United Kingdom', 'beds', null), ('2017', 'UK', 'United Kingdom', 'ons_per_res_pop', null), ('2017', 'UK', 'United Kingdom', 'beds_per_1000res_pop', null), ('2017', 'UK002C1', 'Birmingham', 'ons', null), ('2017', 'UK002C1', 'Birmingham', 'beds', null), ('2017', 'UK002C1', 'Birmingham', 'ons_per_res_pop', null), ('2017', 'UK002C1', 'Birmingham', 'beds_per_1000res_pop', null), ('2017', 'UK003C1', 'Leeds', 'ons', null), ('2017', 'UK003C1', 'Leeds', 'beds', null), ('2017', 'UK003C1', 'Leeds', 'ons_per_res_pop', null), ('2017', 'UK003C1', 'Leeds', 'beds_per_1000res_pop', null), ('2017', 'UK004C1', 'Glasgow City', 'ons', null), ('2017', 'UK004C1', 'Glasgow City', 'beds', null), ('2017', 'UK004C1', 'Glasgow City', 'ons_per_res_pop', null), ('2017', 'UK004C1', 'Glasgow City', 'beds_per_1000res_pop', null), ('2017', 'UK005C1', 'Bradford', 'ons', null), ('2017', 'UK005C1', 'Bradford', 'beds', null), ('2017', 'UK005C1', 'Bradford', 'ons_per_res_pop', null), ('2017', 'UK005C1', 'Bradford', 'beds_per_1000res_pop', null), ('2017', 'UK006C1', 'Liverpool', 'ons', null), ('2017', 'UK006C1', 'Liverpool', 'beds', null), ('2017', 'UK006C1', 'Liverpool', 'ons_per_res_pop', null), ('2017', 'UK006C1', 'Liverpool', 'beds_per_1000res_pop', null), ('2017', 'UK007C1', 'City of Edinburgh', 'ons', null), ('2017', 'UK007C1', 'City of Edinburgh', 'beds', null), ('2017', 'UK007C1', 'City of Edinburgh', 'ons_per_res_pop', null), ('2017', 'UK007C1', 'City of Edinburgh', 'beds_per_1000res_pop', null), ('2017', 'UK008C1', 'Manchester', 'ons', null), ('2017', 'UK008C1', 'Manchester', 'beds', null), ('2017', 'UK008C1', 'Manchester', 'ons_per_res_pop', null), ('2017', 'UK008C1', 'Manchester', 'beds_per_1000res_pop', null), ('2017', 'UK009C1', 'Cardiff', 'ons', null), ('2017', 'UK009C1', 'Cardiff', 'beds', null), ('2017', 'UK009C1', 'Cardiff', 'ons_per_res_pop', null), ('2017', 'UK009C1', 'Cardiff', 'beds_per_1000res_pop', null), ('2017', 'UK010C1', 'Sheffield', 'ons', null), ('2017', 'UK010C1', 'Sheffield', 'beds', null), ('2017', 'UK010C1', 'Sheffield', 'ons_per_res_pop', null), ('2017', 'UK010C1', 'Sheffield', 'beds_per_1000res_pop', null), ('2017', 'UK011C1', 'Bristol', 'ons', null), ('2017', 'UK011C1', 'Bristol', 'beds', null), ('2017', 'UK011C1', 'Bristol', 'ons_per_res_pop', null), ('2017', 'UK011C1', 'Bristol', 'beds_per_1000res_pop', null), ('2017', 'UK012C2', 'Belfast', 'ons', '5030857'), ('2017', 'UK012C2', 'Belfast', 'beds', '10385'), ('2017', 'UK012C2', 'Belfast', 'ons_per_res_pop', '14.8'), ('2017', 'UK012C2', 'Belfast', 'beds_per_1000res_pop', '30.6'), ('2017', 'UK013C1', 'Newcastle upon Tyne', 'ons', null), ('2017', 'UK013C1', 'Newcastle upon Tyne', 'beds', null), ('2017', 'UK013C1', 'Newcastle upon Tyne', 'ons_per_res_pop', null), ('2017', 'UK013C1', 'Newcastle upon Tyne', 'beds_per_1000res_pop', null), ('2017', 'UK014C1', 'Leicester', 'ons', null), ('2017', 'UK014C1', 'Leicester', 'beds', null), ('2017', 'UK014C1', 'Leicester', 'ons_per_res_pop', null), ('2017', 'UK014C1', 'Leicester', 'beds_per_1000res_pop', null), ('2017', 'UK016C1', 'Aberdeen City', 'ons', null), ('2017', 'UK016C1', 'Aberdeen City', 'beds', null), ('2017', 'UK016C1', 'Aberdeen City', 'ons_per_res_pop', null), ('2017', 'UK016C1', 'Aberdeen City', 'beds_per_1000res_pop', null), ('2017', 'UK017C1', 'Cambridge', 'ons', null), ('2017', 'UK017C1', 'Cambridge', 'beds', null), ('2017', 'UK017C1', 'Cambridge', 'ons_per_res_pop', null), ('2017', 'UK017C1', 'Cambridge', 'beds_per_1000res_pop', null), ('2017', 'UK018C1', 'Exeter', 'ons', null), ('2017', 'UK018C1', 'Exeter', 'beds', null), ('2017', 'UK018C1', 'Exeter', 'ons_per_res_pop', null), ('2017', 'UK018C1', 'Exeter', 'beds_per_1000res_pop', null), ('2017', 'UK019C1', 'Lincoln', 'ons', null), ('2017', 'UK019C1', 'Lincoln', 'beds', null), ('2017', 'UK019C1', 'Lincoln', 'ons_per_res_pop', null), ('2017', 'UK019C1', 'Lincoln', 'beds_per_1000res_pop', null), ('2017', 'UK020C1', 'Gravesham', 'ons', null), ('2017', 'UK020C1', 'Gravesham', 'beds', null), ('2017', 'UK020C1', 'Gravesham', 'ons_per_res_pop', null), ('2017', 'UK020C1', 'Gravesham', 'beds_per_1000res_pop', null), ('2017', 'UK021C1', 'Stevenage', 'ons', null), ('2017', 'UK021C1', 'Stevenage', 'beds', null), ('2017', 'UK021C1', 'Stevenage', 'ons_per_res_pop', null), ('2017', 'UK021C1', 'Stevenage', 'beds_per_1000res_pop', null), ('2017', 'UK022C1', 'Wrexham', 'ons', null), ('2017', 'UK022C1', 'Wrexham', 'beds', null), ('2017', 'UK022C1', 'Wrexham', 'ons_per_res_pop', null), ('2017', 'UK022C1', 'Wrexham', 'beds_per_1000res_pop', null), ('2017', 'UK023C1', 'Portsmouth', 'ons', null), ('2017', 'UK023C1', 'Portsmouth', 'beds', null), ('2017', 'UK023C1', 'Portsmouth', 'ons_per_res_pop', null), ('2017', 'UK023C1', 'Portsmouth', 'beds_per_1000res_pop', null), ('2017', 'UK024C1', 'Worcester', 'ons', null), ('2017', 'UK024C1', 'Worcester', 'beds', null), ('2017', 'UK024C1', 'Worcester', 'ons_per_res_pop', null), ('2017', 'UK024C1', 'Worcester', 'beds_per_1000res_pop', null), ('2017', 'UK025C1', 'Coventry', 'ons', null), ('2017', 'UK025C1', 'Coventry', 'beds', null), ('2017', 'UK025C1', 'Coventry', 'ons_per_res_pop', null), ('2017', 'UK025C1', 'Coventry', 'beds_per_1000res_pop', null), ('2017', 'UK026C1', 'Kingston-upon-Hull', 'ons', null), ('2017', 'UK026C1', 'Kingston-upon-Hull', 'beds', null), ('2017', 'UK026C1', 'Kingston-upon-Hull', 'ons_per_res_pop', null), ('2017', 'UK026C1', 'Kingston-upon-Hull', 'beds_per_1000res_pop', null), ('2017', 'UK027C1', 'Stoke-on-trent', 'ons', null), ('2017', 'UK027C1', 'Stoke-on-trent', 'beds', null), ('2017', 'UK027C1', 'Stoke-on-trent', 'ons_per_res_pop', null), ('2017', 'UK027C1', 'Stoke-on-trent', 'beds_per_1000res_pop', null), ('2017', 'UK028C1', 'Wolverhampton', 'ons', null), ('2017', 'UK028C1', 'Wolverhampton', 'beds', null), ('2017', 'UK028C1', 'Wolverhampton', 'ons_per_res_pop', null), ('2017', 'UK028C1', 'Wolverhampton', 'beds_per_1000res_pop', null), ('2017', 'UK029C1', 'Nottingham', 'ons', null), ('2017', 'UK029C1', 'Nottingham', 'beds', null), ('2017', 'UK029C1', 'Nottingham', 'ons_per_res_pop', null), ('2017', 'UK029C1', 'Nottingham', 'beds_per_1000res_pop', null), ('2017', 'UK030C1', 'Wirral', 'ons', null), ('2017', 'UK030C1', 'Wirral', 'beds', null), ('2017', 'UK030C1', 'Wirral', 'ons_per_res_pop', null), ('2017', 'UK030C1', 'Wirral', 'beds_per_1000res_pop', null), ('2017', 'UK031C1', 'Bath and North East Somerset', 'ons', null), ('2017', 'UK031C1', 'Bath and North East Somerset', 'beds', null), ('2017', 'UK031C1', 'Bath and North East Somerset', 'ons_per_res_pop', null), ('2017', 'UK031C1', 'Bath and North East Somerset', 'beds_per_1000res_pop', null), ('2017', 'UK032C1', 'Thurrock', 'ons', null), ('2017', 'UK032C1', 'Thurrock', 'beds', null), ('2017', 'UK032C1', 'Thurrock', 'ons_per_res_pop', null), ('2017', 'UK032C1', 'Thurrock', 'beds_per_1000res_pop', null), ('2017', 'UK033C1', 'Guildford', 'ons', null), ('2017', 'UK033C1', 'Guildford', 'beds', null), ('2017', 'UK033C1', 'Guildford', 'ons_per_res_pop', null), ('2017', 'UK033C1', 'Guildford', 'beds_per_1000res_pop', null), ('2017', 'UK034C1', 'Thanet', 'ons', null), ('2017', 'UK034C1', 'Thanet', 'beds', null), ('2017', 'UK034C1', 'Thanet', 'ons_per_res_pop', null), ('2017', 'UK034C1', 'Thanet', 'beds_per_1000res_pop', null), ('2017', 'UK035C1', 'Nuneaton and Bedworth', 'ons', null), ('2017', 'UK035C1', 'Nuneaton and Bedworth', 'beds', null), ('2017', 'UK035C1', 'Nuneaton and Bedworth', 'ons_per_res_pop', null), ('2017', 'UK035C1', 'Nuneaton and Bedworth', 'beds_per_1000res_pop', null), ('2017', 'UK038C1', 'Waveney', 'ons', null), ('2017', 'UK038C1', 'Waveney', 'beds', null), ('2017', 'UK038C1', 'Waveney', 'ons_per_res_pop', null), ('2017', 'UK038C1', 'Waveney', 'beds_per_1000res_pop', null), ('2017', 'UK040C1', 'Tunbridge Wells', 'ons', null), ('2017', 'UK040C1', 'Tunbridge Wells', 'beds', null), ('2017', 'UK040C1', 'Tunbridge Wells', 'ons_per_res_pop', null), ('2017', 'UK040C1', 'Tunbridge Wells', 'beds_per_1000res_pop', null), ('2017', 'UK041C1', 'Ashford', 'ons', null), ('2017', 'UK041C1', 'Ashford', 'beds', null), ('2017', 'UK041C1', 'Ashford', 'ons_per_res_pop', null), ('2017', 'UK041C1', 'Ashford', 'beds_per_1000res_pop', null), ('2017', 'UK043C1', 'East Staffordshire', 'ons', null), ('2017', 'UK043C1', 'East Staffordshire', 'beds', null), ('2017', 'UK043C1', 'East Staffordshire', 'ons_per_res_pop', null), ('2017', 'UK043C1', 'East Staffordshire', 'beds_per_1000res_pop', null), ('2017', 'UK044C1', 'Darlington', 'ons', null), ('2017', 'UK044C1', 'Darlington', 'beds', null), ('2017', 'UK044C1', 'Darlington', 'ons_per_res_pop', null), ('2017', 'UK044C1', 'Darlington', 'beds_per_1000res_pop', null), ('2017', 'UK045C1', 'Worthing', 'ons', null), ('2017', 'UK045C1', 'Worthing', 'beds', null), ('2017', 'UK045C1', 'Worthing', 'ons_per_res_pop', null), ('2017', 'UK045C1', 'Worthing', 'beds_per_1000res_pop', null), ('2017', 'UK046C1', 'Mansfield', 'ons', null), ('2017', 'UK046C1', 'Mansfield', 'beds', null), ('2017', 'UK046C1', 'Mansfield', 'ons_per_res_pop', null), ('2017', 'UK046C1', 'Mansfield', 'beds_per_1000res_pop', null), ('2017', 'UK047C1', 'Chesterfield', 'ons', null), ('2017', 'UK047C1', 'Chesterfield', 'beds', null), ('2017', 'UK047C1', 'Chesterfield', 'ons_per_res_pop', null), ('2017', 'UK047C1', 'Chesterfield', 'beds_per_1000res_pop', null), ('2017', 'UK050C1', 'Burnley', 'ons', null), ('2017', 'UK050C1', 'Burnley', 'beds', null), ('2017', 'UK050C1', 'Burnley', 'ons_per_res_pop', null), ('2017', 'UK050C1', 'Burnley', 'beds_per_1000res_pop', null), ('2017', 'UK051C1', 'Great Yarmouth', 'ons', null), ('2017', 'UK051C1', 'Great Yarmouth', 'beds', null), ('2017', 'UK051C1', 'Great Yarmouth', 'ons_per_res_pop', null), ('2017', 'UK051C1', 'Great Yarmouth', 'beds_per_1000res_pop', null), ('2017', 'UK052C1', 'Woking', 'ons', null), ('2017', 'UK052C1', 'Woking', 'beds', null), ('2017', 'UK052C1', 'Woking', 'ons_per_res_pop', null), ('2017', 'UK052C1', 'Woking', 'beds_per_1000res_pop', null), ('2017', 'UK053C1', 'Hartlepool', 'ons', null), ('2017', 'UK053C1', 'Hartlepool', 'beds', null), ('2017', 'UK053C1', 'Hartlepool', 'ons_per_res_pop', null), ('2017', 'UK053C1', 'Hartlepool', 'beds_per_1000res_pop', null), ('2017', 'UK054C1', 'Cannock Chase', 'ons', null), ('2017', 'UK054C1', 'Cannock Chase', 'beds', null), ('2017', 'UK054C1', 'Cannock Chase', 'ons_per_res_pop', null), ('2017', 'UK054C1', 'Cannock Chase', 'beds_per_1000res_pop', null), ('2017', 'UK055C1', 'Eastbourne', 'ons', null), ('2017', 'UK055C1', 'Eastbourne', 'beds', null), ('2017', 'UK055C1', 'Eastbourne', 'ons_per_res_pop', null), ('2017', 'UK055C1', 'Eastbourne', 'beds_per_1000res_pop', null), ('2017', 'UK056C1', 'Hastings', 'ons', null), ('2017', 'UK056C1', 'Hastings', 'beds', null), ('2017', 'UK056C1', 'Hastings', 'ons_per_res_pop', null), ('2017', 'UK056C1', 'Hastings', 'beds_per_1000res_pop', null), ('2017', 'UK057C1', 'Hyndburn', 'ons', null), ('2017', 'UK057C1', 'Hyndburn', 'beds', null), ('2017', 'UK057C1', 'Hyndburn', 'ons_per_res_pop', null), ('2017', 'UK057C1', 'Hyndburn', 'beds_per_1000res_pop', null), ('2017', 'UK059C1', 'Redditch', 'ons', null), ('2017', 'UK059C1', 'Redditch', 'beds', null), ('2017', 'UK059C1', 'Redditch', 'ons_per_res_pop', null), ('2017', 'UK059C1', 'Redditch', 'beds_per_1000res_pop', null), ('2017', 'UK060C1', 'Tamworth', 'ons', null), ('2017', 'UK060C1', 'Tamworth', 'beds', null), ('2017', 'UK060C1', 'Tamworth', 'ons_per_res_pop', null), ('2017', 'UK060C1', 'Tamworth', 'beds_per_1000res_pop', null), ('2017', 'UK061C1', 'Harlow', 'ons', null), ('2017', 'UK061C1', 'Harlow', 'beds', null), ('2017', 'UK061C1', 'Harlow', 'ons_per_res_pop', null), ('2017', 'UK061C1', 'Harlow', 'beds_per_1000res_pop', null), ('2017', 'UK062C1', 'Halton', 'ons', null), ('2017', 'UK062C1', 'Halton', 'beds', null), ('2017', 'UK062C1', 'Halton', 'ons_per_res_pop', null), ('2017', 'UK062C1', 'Halton', 'beds_per_1000res_pop', null), ('2017', 'UK101C1', 'City of London', 'ons', null), ('2017', 'UK101C1', 'City of London', 'beds', null), ('2017', 'UK101C1', 'City of London', 'ons_per_res_pop', null), ('2017', 'UK101C1', 'City of London', 'beds_per_1000res_pop', null), ('2017', 'UK102C1', 'Barking and Dagenham', 'ons', null), ('2017', 'UK102C1', 'Barking and Dagenham', 'beds', null), ('2017', 'UK102C1', 'Barking and Dagenham', 'ons_per_res_pop', null), ('2017', 'UK102C1', 'Barking and Dagenham', 'beds_per_1000res_pop', null), ('2017', 'UK103C1', 'Barnet', 'ons', null), ('2017', 'UK103C1', 'Barnet', 'beds', null), ('2017', 'UK103C1', 'Barnet', 'ons_per_res_pop', null), ('2017', 'UK103C1', 'Barnet', 'beds_per_1000res_pop', null), ('2017', 'UK104C1', 'Bexley', 'ons', null), ('2017', 'UK104C1', 'Bexley', 'beds', null), ('2017', 'UK104C1', 'Bexley', 'ons_per_res_pop', null), ('2017', 'UK104C1', 'Bexley', 'beds_per_1000res_pop', null), ('2017', 'UK105C1', 'Brent', 'ons', null), ('2017', 'UK105C1', 'Brent', 'beds', null), ('2017', 'UK105C1', 'Brent', 'ons_per_res_pop', null), ('2017', 'UK105C1', 'Brent', 'beds_per_1000res_pop', null), ('2017', 'UK106C1', 'Bromley', 'ons', null), ('2017', 'UK106C1', 'Bromley', 'beds', null), ('2017', 'UK106C1', 'Bromley', 'ons_per_res_pop', null), ('2017', 'UK106C1', 'Bromley', 'beds_per_1000res_pop', null), ('2017', 'UK107C1', 'Camden', 'ons', null), ('2017', 'UK107C1', 'Camden', 'beds', null), ('2017', 'UK107C1', 'Camden', 'ons_per_res_pop', null), ('2017', 'UK107C1', 'Camden', 'beds_per_1000res_pop', null), ('2017', 'UK108C1', 'Croydon', 'ons', null), ('2017', 'UK108C1', 'Croydon', 'beds', null), ('2017', 'UK108C1', 'Croydon', 'ons_per_res_pop', null), ('2017', 'UK108C1', 'Croydon', 'beds_per_1000res_pop', null), ('2017', 'UK109C1', 'Ealing', 'ons', null), ('2017', 'UK109C1', 'Ealing', 'beds', null), ('2017', 'UK109C1', 'Ealing', 'ons_per_res_pop', null), ('2017', 'UK109C1', 'Ealing', 'beds_per_1000res_pop', null), ('2017', 'UK110C1', 'Enfield', 'ons', null), ('2017', 'UK110C1', 'Enfield', 'beds', null), ('2017', 'UK110C1', 'Enfield', 'ons_per_res_pop', null), ('2017', 'UK110C1', 'Enfield', 'beds_per_1000res_pop', null), ('2017', 'UK111C1', 'Greenwich', 'ons', null), ('2017', 'UK111C1', 'Greenwich', 'beds', null), ('2017', 'UK111C1', 'Greenwich', 'ons_per_res_pop', null), ('2017', 'UK111C1', 'Greenwich', 'beds_per_1000res_pop', null), ('2017', 'UK112C1', 'Hackney', 'ons', null), ('2017', 'UK112C1', 'Hackney', 'beds', null), ('2017', 'UK112C1', 'Hackney', 'ons_per_res_pop', null), ('2017', 'UK112C1', 'Hackney', 'beds_per_1000res_pop', null), ('2017', 'UK113C1', 'Hammersmith and Fulham', 'ons', null), ('2017', 'UK113C1', 'Hammersmith and Fulham', 'beds', null), ('2017', 'UK113C1', 'Hammersmith and Fulham', 'ons_per_res_pop', null), ('2017', 'UK113C1', 'Hammersmith and Fulham', 'beds_per_1000res_pop', null), ('2017', 'UK114C1', 'Haringey', 'ons', null), ('2017', 'UK114C1', 'Haringey', 'beds', null), ('2017', 'UK114C1', 'Haringey', 'ons_per_res_pop', null), ('2017', 'UK114C1', 'Haringey', 'beds_per_1000res_pop', null), ('2017', 'UK115C1', 'Harrow', 'ons', null), ('2017', 'UK115C1', 'Harrow', 'beds', null), ('2017', 'UK115C1', 'Harrow', 'ons_per_res_pop', null), ('2017', 'UK115C1', 'Harrow', 'beds_per_1000res_pop', null), ('2017', 'UK116C1', 'Havering', 'ons', null), ('2017', 'UK116C1', 'Havering', 'beds', null), ('2017', 'UK116C1', 'Havering', 'ons_per_res_pop', null), ('2017', 'UK116C1', 'Havering', 'beds_per_1000res_pop', null), ('2017', 'UK117C1', 'Hillingdon', 'ons', null), ('2017', 'UK117C1', 'Hillingdon', 'beds', null), ('2017', 'UK117C1', 'Hillingdon', 'ons_per_res_pop', null), ('2017', 'UK117C1', 'Hillingdon', 'beds_per_1000res_pop', null), ('2017', 'UK118C1', 'Hounslow', 'ons', null), ('2017', 'UK118C1', 'Hounslow', 'beds', null), ('2017', 'UK118C1', 'Hounslow', 'ons_per_res_pop', null), ('2017', 'UK118C1', 'Hounslow', 'beds_per_1000res_pop', null), ('2017', 'UK119C1', 'Islington', 'ons', null), ('2017', 'UK119C1', 'Islington', 'beds', null), ('2017', 'UK119C1', 'Islington', 'ons_per_res_pop', null), ('2017', 'UK119C1', 'Islington', 'beds_per_1000res_pop', null), ('2017', 'UK120C1', 'Kensington and Chelsea', 'ons', null), ('2017', 'UK120C1', 'Kensington and Chelsea', 'beds', null), ('2017', 'UK120C1', 'Kensington and Chelsea', 'ons_per_res_pop', null), ('2017', 'UK120C1', 'Kensington and Chelsea', 'beds_per_1000res_pop', null), ('2017', 'UK121C1', 'Kingston upon Thames', 'ons', null), ('2017', 'UK121C1', 'Kingston upon Thames', 'beds', null), ('2017', 'UK121C1', 'Kingston upon Thames', 'ons_per_res_pop', null), ('2017', 'UK121C1', 'Kingston upon Thames', 'beds_per_1000res_pop', null), ('2017', 'UK122C1', 'Lambeth', 'ons', null), ('2017', 'UK122C1', 'Lambeth', 'beds', null), ('2017', 'UK122C1', 'Lambeth', 'ons_per_res_pop', null), ('2017', 'UK122C1', 'Lambeth', 'beds_per_1000res_pop', null), ('2017', 'UK123C1', 'Lewisham', 'ons', null), ('2017', 'UK123C1', 'Lewisham', 'beds', null), ('2017', 'UK123C1', 'Lewisham', 'ons_per_res_pop', null), ('2017', 'UK123C1', 'Lewisham', 'beds_per_1000res_pop', null), ('2017', 'UK124C1', 'Merton', 'ons', null), ('2017', 'UK124C1', 'Merton', 'beds', null), ('2017', 'UK124C1', 'Merton', 'ons_per_res_pop', null), ('2017', 'UK124C1', 'Merton', 'beds_per_1000res_pop', null), ('2017', 'UK125C1', 'Newham', 'ons', null), ('2017', 'UK125C1', 'Newham', 'beds', null), ('2017', 'UK125C1', 'Newham', 'ons_per_res_pop', null), ('2017', 'UK125C1', 'Newham', 'beds_per_1000res_pop', null), ('2017', 'UK126C1', 'Redbridge', 'ons', null), ('2017', 'UK126C1', 'Redbridge', 'beds', null), ('2017', 'UK126C1', 'Redbridge', 'ons_per_res_pop', null), ('2017', 'UK126C1', 'Redbridge', 'beds_per_1000res_pop', null), ('2017', 'UK127C1', 'Richmond upon Thames', 'ons', null), ('2017', 'UK127C1', 'Richmond upon Thames', 'beds', null), ('2017', 'UK127C1', 'Richmond upon Thames', 'ons_per_res_pop', null), ('2017', 'UK127C1', 'Richmond upon Thames', 'beds_per_1000res_pop', null), ('2017', 'UK128C1', 'Southwark', 'ons', null), ('2017', 'UK128C1', 'Southwark', 'beds', null), ('2017', 'UK128C1', 'Southwark', 'ons_per_res_pop', null), ('2017', 'UK128C1', 'Southwark', 'beds_per_1000res_pop', null), ('2017', 'UK129C1', 'Sutton', 'ons', null), ('2017', 'UK129C1', 'Sutton', 'beds', null), ('2017', 'UK129C1', 'Sutton', 'ons_per_res_pop', null), ('2017', 'UK129C1', 'Sutton', 'beds_per_1000res_pop', null), ('2017', 'UK130C1', 'Tower Hamlets', 'ons', null), ('2017', 'UK130C1', 'Tower Hamlets', 'beds', null), ('2017', 'UK130C1', 'Tower Hamlets', 'ons_per_res_pop', null), ('2017', 'UK130C1', 'Tower Hamlets', 'beds_per_1000res_pop', null), ('2017', 'UK131C1', 'Waltham Forest', 'ons', null), ('2017', 'UK131C1', 'Waltham Forest', 'beds', null), ('2017', 'UK131C1', 'Waltham Forest', 'ons_per_res_pop', null), ('2017', 'UK131C1', 'Waltham Forest', 'beds_per_1000res_pop', null), ('2017', 'UK132C1', 'Wandsworth', 'ons', null), ('2017', 'UK132C1', 'Wandsworth', 'beds', null), ('2017', 'UK132C1', 'Wandsworth', 'ons_per_res_pop', null), ('2017', 'UK132C1', 'Wandsworth', 'beds_per_1000res_pop', null), ('2017', 'UK133C1', 'Westminster', 'ons', null), ('2017', 'UK133C1', 'Westminster', 'beds', null), ('2017', 'UK133C1', 'Westminster', 'ons_per_res_pop', null), ('2017', 'UK133C1', 'Westminster', 'beds_per_1000res_pop', null), ('2017', 'UK501C1', 'Kirklees', 'ons', null), ('2017', 'UK501C1', 'Kirklees', 'beds', null), ('2017', 'UK501C1', 'Kirklees', 'ons_per_res_pop', null), ('2017', 'UK501C1', 'Kirklees', 'beds_per_1000res_pop', null), ('2017', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'ons', null), ('2017', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'beds', null), ('2017', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'ons_per_res_pop', null), ('2017', 'UK502C1', 'North Lanarkshire (Airdrie/Bellshill/Coatbridge/Motherwell)', 'beds_per_1000res_pop', null), ('2017', 'UK503C1', 'Wakefield', 'ons', null), ('2017', 'UK503C1', 'Wakefield', 'beds', null), ('2017', 'UK503C1', 'Wakefield', 'ons_per_res_pop', null), ('2017', 'UK503C1', 'Wakefield', 'beds_per_1000res_pop', null), ('2017', 'UK504C1', 'Dudley', 'ons', null), ('2017', 'UK504C1', 'Dudley', 'beds', null), ('2017', 'UK504C1', 'Dudley', 'ons_per_res_pop', null), ('2017', 'UK504C1', 'Dudley', 'beds_per_1000res_pop', null), ('2017', 'UK505C1', 'Wigan', 'ons', null), ('2017', 'UK505C1', 'Wigan', 'beds', null), ('2017', 'UK505C1', 'Wigan', 'ons_per_res_pop', null), ('2017', 'UK505C1', 'Wigan', 'beds_per_1000res_pop', null), ('2017', 'UK506C1', 'Doncaster', 'ons', null), ('2017', 'UK506C1', 'Doncaster', 'beds', null), ('2017', 'UK506C1', 'Doncaster', 'ons_per_res_pop', null), ('2017', 'UK506C1', 'Doncaster', 'beds_per_1000res_pop', null), ('2017', 'UK507C1', 'Stockport', 'ons', null), ('2017', 'UK507C1', 'Stockport', 'beds', null), ('2017', 'UK507C1', 'Stockport', 'ons_per_res_pop', null), ('2017', 'UK507C1', 'Stockport', 'beds_per_1000res_pop', null), ('2017', 'UK508C1', 'Sefton', 'ons', null), ('2017', 'UK508C1', 'Sefton', 'beds', null), ('2017', 'UK508C1', 'Sefton', 'ons_per_res_pop', null), ('2017', 'UK508C1', 'Sefton', 'beds_per_1000res_pop', null), ('2017', 'UK509C1', 'Sandwell', 'ons', null), ('2017', 'UK509C1', 'Sandwell', 'beds', null), ('2017', 'UK509C1', 'Sandwell', 'ons_per_res_pop', null), ('2017', 'UK509C1', 'Sandwell', 'beds_per_1000res_pop', null), ('2017', 'UK510C1', 'Sunderland', 'ons', null), ('2017', 'UK510C1', 'Sunderland', 'beds', null), ('2017', 'UK510C1', 'Sunderland', 'ons_per_res_pop', null), ('2017', 'UK510C1', 'Sunderland', 'beds_per_1000res_pop', null), ('2017', 'UK511C1', 'Bolton', 'ons', null), ('2017', 'UK511C1', 'Bolton', 'beds', null), ('2017', 'UK511C1', 'Bolton', 'ons_per_res_pop', null), ('2017', 'UK511C1', 'Bolton', 'beds_per_1000res_pop', null), ('2017', 'UK512C1', 'Walsall', 'ons', null), ('2017', 'UK512C1', 'Walsall', 'beds', null), ('2017', 'UK512C1', 'Walsall', 'ons_per_res_pop', null), ('2017', 'UK512C1', 'Walsall', 'beds_per_1000res_pop', null), ('2017', 'UK513C1', 'Medway', 'ons', null), ('2017', 'UK513C1', 'Medway', 'beds', null), ('2017', 'UK513C1', 'Medway', 'ons_per_res_pop', null), ('2017', 'UK513C1', 'Medway', 'beds_per_1000res_pop', null), ('2017', 'UK514C1', 'Rotherham', 'ons', null), ('2017', 'UK514C1', 'Rotherham', 'beds', null), ('2017', 'UK514C1', 'Rotherham', 'ons_per_res_pop', null), ('2017', 'UK514C1', 'Rotherham', 'beds_per_1000res_pop', null), ('2017', 'UK515C1', 'Brighton and Hove', 'ons', null), ('2017', 'UK515C1', 'Brighton and Hove', 'beds', null), ('2017', 'UK515C1', 'Brighton and Hove', 'ons_per_res_pop', null), ('2017', 'UK515C1', 'Brighton and Hove', 'beds_per_1000res_pop', null), ('2017', 'UK516C1', 'Plymouth', 'ons', null), ('2017', 'UK516C1', 'Plymouth', 'beds', null), ('2017', 'UK516C1', 'Plymouth', 'ons_per_res_pop', null), ('2017', 'UK516C1', 'Plymouth', 'beds_per_1000res_pop', null), ('2017', 'UK517C1', 'Swansea', 'ons', null), ('2017', 'UK517C1', 'Swansea', 'beds', null), ('2017', 'UK517C1', 'Swansea', 'ons_per_res_pop', null), ('2017', 'UK517C1', 'Swansea', 'beds_per_1000res_pop', null), ('2017', 'UK518C1', 'Derby', 'ons', null), ('2017', 'UK518C1', 'Derby', 'beds', null), ('2017', 'UK518C1', 'Derby', 'ons_per_res_pop', null), ('2017', 'UK518C1', 'Derby', 'beds_per_1000res_pop', null), ('2017', 'UK519C1', 'Barnsley', 'ons', null), ('2017', 'UK519C1', 'Barnsley', 'beds', null), ('2017', 'UK519C1', 'Barnsley', 'ons_per_res_pop', null), ('2017', 'UK519C1', 'Barnsley', 'beds_per_1000res_pop', null), ('2017', 'UK520C1', 'Southampton', 'ons', null), ('2017', 'UK520C1', 'Southampton', 'beds', null), ('2017', 'UK520C1', 'Southampton', 'ons_per_res_pop', null), ('2017', 'UK520C1', 'Southampton', 'beds_per_1000res_pop', null), ('2017', 'UK521C1', 'Oldham', 'ons', null), ('2017', 'UK521C1', 'Oldham', 'beds', null), ('2017', 'UK521C1', 'Oldham', 'ons_per_res_pop', null), ('2017', 'UK521C1', 'Oldham', 'beds_per_1000res_pop', null), ('2017', 'UK522C1', 'Salford', 'ons', null), ('2017', 'UK522C1', 'Salford', 'beds', null), ('2017', 'UK522C1', 'Salford', 'ons_per_res_pop', null), ('2017', 'UK522C1', 'Salford', 'beds_per_1000res_pop', null), ('2017', 'UK523C1', 'Tameside', 'ons', null), ('2017', 'UK523C1', 'Tameside', 'beds', null), ('2017', 'UK523C1', 'Tameside', 'ons_per_res_pop', null), ('2017', 'UK523C1', 'Tameside', 'beds_per_1000res_pop', null), ('2017', 'UK524C1', 'Trafford', 'ons', null), ('2017', 'UK524C1', 'Trafford', 'beds', null), ('2017', 'UK524C1', 'Trafford', 'ons_per_res_pop', null), ('2017', 'UK524C1', 'Trafford', 'beds_per_1000res_pop', null), ('2017', 'UK525C1', 'Milton Keynes', 'ons', null), ('2017', 'UK525C1', 'Milton Keynes', 'beds', null), ('2017', 'UK525C1', 'Milton Keynes', 'ons_per_res_pop', null), ('2017', 'UK525C1', 'Milton Keynes', 'beds_per_1000res_pop', null), ('2017', 'UK526C1', 'Rochdale', 'ons', null), ('2017', 'UK526C1', 'Rochdale', 'beds', null), ('2017', 'UK526C1', 'Rochdale', 'ons_per_res_pop', null), ('2017', 'UK526C1', 'Rochdale', 'beds_per_1000res_pop', null), ('2017', 'UK527C1', 'Solihull', 'ons', null), ('2017', 'UK527C1', 'Solihull', 'beds', null), ('2017', 'UK527C1', 'Solihull', 'ons_per_res_pop', null), ('2017', 'UK527C1', 'Solihull', 'beds_per_1000res_pop', null), ('2017', 'UK528C1', 'Northampton', 'ons', null), ('2017', 'UK528C1', 'Northampton', 'beds', null), ('2017', 'UK528C1', 'Northampton', 'ons_per_res_pop', null), ('2017', 'UK528C1', 'Northampton', 'beds_per_1000res_pop', null), ('2017', 'UK529C1', 'North Tyneside', 'ons', null), ('2017', 'UK529C1', 'North Tyneside', 'beds', null), ('2017', 'UK529C1', 'North Tyneside', 'ons_per_res_pop', null), ('2017', 'UK529C1', 'North Tyneside', 'beds_per_1000res_pop', null), ('2017', 'UK530C1', 'Gateshead', 'ons', null), ('2017', 'UK530C1', 'Gateshead', 'beds', null), ('2017', 'UK530C1', 'Gateshead', 'ons_per_res_pop', null), ('2017', 'UK530C1', 'Gateshead', 'beds_per_1000res_pop', null), ('2017', 'UK531C1', 'Warrington', 'ons', null), ('2017', 'UK531C1', 'Warrington', 'beds', null), ('2017', 'UK531C1', 'Warrington', 'ons_per_res_pop', null), ('2017', 'UK531C1', 'Warrington', 'beds_per_1000res_pop', null), ('2017', 'UK532C1', 'Luton', 'ons', null), ('2017', 'UK532C1', 'Luton', 'beds', null), ('2017', 'UK532C1', 'Luton', 'ons_per_res_pop', null), ('2017', 'UK532C1', 'Luton', 'beds_per_1000res_pop', null), ('2017', 'UK533C1', 'York', 'ons', null), ('2017', 'UK533C1', 'York', 'beds', null), ('2017', 'UK533C1', 'York', 'ons_per_res_pop', null), ('2017', 'UK533C1', 'York', 'beds_per_1000res_pop', null), ('2017', 'UK534C1', 'Bury', 'ons', null), ('2017', 'UK534C1', 'Bury', 'beds', null), ('2017', 'UK534C1', 'Bury', 'ons_per_res_pop', null), ('2017', 'UK534C1', 'Bury', 'beds_per_1000res_pop', null), ('2017', 'UK535C1', 'Swindon', 'ons', null), ('2017', 'UK535C1', 'Swindon', 'beds', null), ('2017', 'UK535C1', 'Swindon', 'ons_per_res_pop', null), ('2017', 'UK535C1', 'Swindon', 'beds_per_1000res_pop', null), ('2017', 'UK536C1', 'Stockton-on-Tees', 'ons', null), ('2017', 'UK536C1', 'Stockton-on-Tees', 'beds', null), ('2017', 'UK536C1', 'Stockton-on-Tees', 'ons_per_res_pop', null), ('2017', 'UK536C1', 'Stockton-on-Tees', 'beds_per_1000res_pop', null), ('2017', 'UK537C1', 'St. Helens', 'ons', null), ('2017', 'UK537C1', 'St. Helens', 'beds', null), ('2017', 'UK537C1', 'St. Helens', 'ons_per_res_pop', null), ('2017', 'UK537C1', 'St. Helens', 'beds_per_1000res_pop', null), ('2017', 'UK538C1', 'Basildon', 'ons', null), ('2017', 'UK538C1', 'Basildon', 'beds', null), ('2017', 'UK538C1', 'Basildon', 'ons_per_res_pop', null), ('2017', 'UK538C1', 'Basildon', 'beds_per_1000res_pop', null), ('2017', 'UK539C1', 'Bournemouth', 'ons', null), ('2017', 'UK539C1', 'Bournemouth', 'beds', null), ('2017', 'UK539C1', 'Bournemouth', 'ons_per_res_pop', null), ('2017', 'UK539C1', 'Bournemouth', 'beds_per_1000res_pop', null), ('2017', 'UK540C1', 'Wycombe', 'ons', null), ('2017', 'UK540C1', 'Wycombe', 'beds', null), ('2017', 'UK540C1', 'Wycombe', 'ons_per_res_pop', null), ('2017', 'UK540C1', 'Wycombe', 'beds_per_1000res_pop', null), ('2017', 'UK541C1', 'Southend-on-Sea', 'ons', null), ('2017', 'UK541C1', 'Southend-on-Sea', 'beds', null), ('2017', 'UK541C1', 'Southend-on-Sea', 'ons_per_res_pop', null), ('2017', 'UK541C1', 'Southend-on-Sea', 'beds_per_1000res_pop', null), ('2017', 'UK542C1', 'Telford and Wrekin', 'ons', null), ('2017', 'UK542C1', 'Telford and Wrekin', 'beds', null), ('2017', 'UK542C1', 'Telford and Wrekin', 'ons_per_res_pop', null), ('2017', 'UK542C1', 'Telford and Wrekin', 'beds_per_1000res_pop', null), ('2017', 'UK543C1', 'North East Lincolnshire', 'ons', null), ('2017', 'UK543C1', 'North East Lincolnshire', 'beds', null), ('2017', 'UK543C1', 'North East Lincolnshire', 'ons_per_res_pop', null), ('2017', 'UK543C1', 'North East Lincolnshire', 'beds_per_1000res_pop', null), ('2017', 'UK544C1', 'Chelmsford', 'ons', null), ('2017', 'UK544C1', 'Chelmsford', 'beds', null), ('2017', 'UK544C1', 'Chelmsford', 'ons_per_res_pop', null), ('2017', 'UK544C1', 'Chelmsford', 'beds_per_1000res_pop', null), ('2017', 'UK545C1', 'Peterborough', 'ons', null), ('2017', 'UK545C1', 'Peterborough', 'beds', null), ('2017', 'UK545C1', 'Peterborough', 'ons_per_res_pop', null), ('2017', 'UK545C1', 'Peterborough', 'beds_per_1000res_pop', null), ('2017', 'UK546C1', 'Colchester', 'ons', null), ('2017', 'UK546C1', 'Colchester', 'beds', null), ('2017', 'UK546C1', 'Colchester', 'ons_per_res_pop', null), ('2017', 'UK546C1', 'Colchester', 'beds_per_1000res_pop', null), ('2017', 'UK547C1', 'South Tyneside', 'ons', null), ('2017', 'UK547C1', 'South Tyneside', 'beds', null), ('2017', 'UK547C1', 'South Tyneside', 'ons_per_res_pop', null), ('2017', 'UK547C1', 'South Tyneside', 'beds_per_1000res_pop', null), ('2017', 'UK548C1', 'Basingstoke and Deane', 'ons', null), ('2017', 'UK548C1', 'Basingstoke and Deane', 'beds', null), ('2017', 'UK548C1', 'Basingstoke and Deane', 'ons_per_res_pop', null), ('2017', 'UK548C1', 'Basingstoke and Deane', 'beds_per_1000res_pop', null), ('2017', 'UK549C1', 'Bedford', 'ons', null), ('2017', 'UK549C1', 'Bedford', 'beds', null), ('2017', 'UK549C1', 'Bedford', 'ons_per_res_pop', null), ('2017', 'UK549C1', 'Bedford', 'beds_per_1000res_pop', null), ('2017', 'UK550C1', 'Dundee City', 'ons', null), ('2017', 'UK550C1', 'Dundee City', 'beds', null), ('2017', 'UK550C1', 'Dundee City', 'ons_per_res_pop', null), ('2017', 'UK550C1', 'Dundee City', 'beds_per_1000res_pop', null), ('2017', 'UK551C1', 'Falkirk', 'ons', null), ('2017', 'UK551C1', 'Falkirk', 'beds', null), ('2017', 'UK551C1', 'Falkirk', 'ons_per_res_pop', null), ('2017', 'UK551C1', 'Falkirk', 'beds_per_1000res_pop', null), ('2017', 'UK552C1', 'Reading', 'ons', null), ('2017', 'UK552C1', 'Reading', 'beds', null), ('2017', 'UK552C1', 'Reading', 'ons_per_res_pop', null), ('2017', 'UK552C1', 'Reading', 'beds_per_1000res_pop', null), ('2017', 'UK553C1', 'Blackpool', 'ons', null), ('2017', 'UK553C1', 'Blackpool', 'beds', null), ('2017', 'UK553C1', 'Blackpool', 'ons_per_res_pop', null), ('2017', 'UK553C1', 'Blackpool', 'beds_per_1000res_pop', null), ('2017', 'UK554C1', 'Maidstone', 'ons', null), ('2017', 'UK554C1', 'Maidstone', 'beds', null), ('2017', 'UK554C1', 'Maidstone', 'ons_per_res_pop', null), ('2017', 'UK554C1', 'Maidstone', 'beds_per_1000res_pop', null), ('2017', 'UK555C1', 'Poole', 'ons', null), ('2017', 'UK555C1', 'Poole', 'beds', null), ('2017', 'UK555C1', 'Poole', 'ons_per_res_pop', null), ('2017', 'UK555C1', 'Poole', 'beds_per_1000res_pop', null), ('2017', 'UK556C1', 'Dacorum', 'ons', null), ('2017', 'UK556C1', 'Dacorum', 'beds', null), ('2017', 'UK556C1', 'Dacorum', 'ons_per_res_pop', null), ('2017', 'UK556C1', 'Dacorum', 'beds_per_1000res_pop', null), ('2017', 'UK557C1', 'Blackburn with Darwen', 'ons', null), ('2017', 'UK557C1', 'Blackburn with Darwen', 'beds', null), ('2017', 'UK557C1', 'Blackburn with Darwen', 'ons_per_res_pop', null), ('2017', 'UK557C1', 'Blackburn with Darwen', 'beds_per_1000res_pop', null), ('2017', 'UK558C1', 'Newport', 'ons', null), ('2017', 'UK558C1', 'Newport', 'beds', null), ('2017', 'UK558C1', 'Newport', 'ons_per_res_pop', null), ('2017', 'UK558C1', 'Newport', 'beds_per_1000res_pop', null), ('2017', 'UK559C1', 'Middlesbrough', 'ons', null), ('2017', 'UK559C1', 'Middlesbrough', 'beds', null), ('2017', 'UK559C1', 'Middlesbrough', 'ons_per_res_pop', null), ('2017', 'UK559C1', 'Middlesbrough', 'beds_per_1000res_pop', null), ('2017', 'UK560C1', 'Oxford', 'ons', null), ('2017', 'UK560C1', 'Oxford', 'beds', null), ('2017', 'UK560C1', 'Oxford', 'ons_per_res_pop', null), ('2017', 'UK560C1', 'Oxford', 'beds_per_1000res_pop', null), ('2017', 'UK561C1', 'Torbay', 'ons', null), ('2017', 'UK561C1', 'Torbay', 'beds', null), ('2017', 'UK561C1', 'Torbay', 'ons_per_res_pop', null), ('2017', 'UK561C1', 'Torbay', 'beds_per_1000res_pop', null), ('2017', 'UK562C1', 'Preston', 'ons', null), ('2017', 'UK562C1', 'Preston', 'beds', null), ('2017', 'UK562C1', 'Preston', 'ons_per_res_pop', null), ('2017', 'UK562C1', 'Preston', 'beds_per_1000res_pop', null), ('2017', 'UK563C1', 'St Albans', 'ons', null), ('2017', 'UK563C1', 'St Albans', 'beds', null), ('2017', 'UK563C1', 'St Albans', 'ons_per_res_pop', null), ('2017', 'UK563C1', 'St Albans', 'beds_per_1000res_pop', null), ('2017', 'UK564C1', 'Warwick', 'ons', null), ('2017', 'UK564C1', 'Warwick', 'beds', null), ('2017', 'UK564C1', 'Warwick', 'ons_per_res_pop', null), ('2017', 'UK564C1', 'Warwick', 'beds_per_1000res_pop', null), ('2017', 'UK565C1', 'Newcastle-under-Lyme', 'ons', null), ('2017', 'UK565C1', 'Newcastle-under-Lyme', 'beds', null), ('2017', 'UK565C1', 'Newcastle-under-Lyme', 'ons_per_res_pop', null), ('2017', 'UK565C1', 'Newcastle-under-Lyme', 'beds_per_1000res_pop', null), ('2017', 'UK566C1', 'Norwich', 'ons', null), ('2017', 'UK566C1', 'Norwich', 'beds', null), ('2017', 'UK566C1', 'Norwich', 'ons_per_res_pop', null), ('2017', 'UK566C1', 'Norwich', 'beds_per_1000res_pop', null), ('2017', 'UK567C1', 'Slough', 'ons', null), ('2017', 'UK567C1', 'Slough', 'beds', null), ('2017', 'UK567C1', 'Slough', 'ons_per_res_pop', null), ('2017', 'UK567C1', 'Slough', 'beds_per_1000res_pop', null), ('2017', 'UK568C2', 'Cheshire West and Chester', 'ons', null), ('2017', 'UK568C2', 'Cheshire West and Chester', 'beds', null), ('2017', 'UK568C2', 'Cheshire West and Chester', 'ons_per_res_pop', null), ('2017', 'UK568C2', 'Cheshire West and Chester', 'beds_per_1000res_pop', null), ('2017', 'UK569C1', 'Ipswich', 'ons', null), ('2017', 'UK569C1', 'Ipswich', 'beds', null), ('2017', 'UK569C1', 'Ipswich', 'ons_per_res_pop', null), ('2017', 'UK569C1', 'Ipswich', 'beds_per_1000res_pop', null), ('2017', 'UK571C1', 'Cheltenham', 'ons', null), ('2017', 'UK571C1', 'Cheltenham', 'beds', null), ('2017', 'UK571C1', 'Cheltenham', 'ons_per_res_pop', null), ('2017', 'UK571C1', 'Cheltenham', 'beds_per_1000res_pop', null), ('2017', 'UK572C1', 'Gloucester', 'ons', null), ('2017', 'UK572C1', 'Gloucester', 'beds', null), ('2017', 'UK572C1', 'Gloucester', 'ons_per_res_pop', null), ('2017', 'UK572C1', 'Gloucester', 'beds_per_1000res_pop', null), ('2017', 'UK573C1', 'Bracknell Forest', 'ons', null), ('2017', 'UK573C1', 'Bracknell Forest', 'beds', null), ('2017', 'UK573C1', 'Bracknell Forest', 'ons_per_res_pop', null), ('2017', 'UK573C1', 'Bracknell Forest', 'beds_per_1000res_pop', null), ('2017', 'UK575C1', 'Carlisle', 'ons', null), ('2017', 'UK575C1', 'Carlisle', 'beds', null), ('2017', 'UK575C1', 'Carlisle', 'ons_per_res_pop', null), ('2017', 'UK575C1', 'Carlisle', 'beds_per_1000res_pop', null), ('2017', 'UK576C1', 'Crawley', 'ons', null), ('2017', 'UK576C1', 'Crawley', 'beds', null), ('2017', 'UK576C1', 'Crawley', 'ons_per_res_pop', null), ('2017', 'UK576C1', 'Crawley', 'beds_per_1000res_pop', null), ('2017', 'UK577C1', 'Watford', 'ons', null), ('2017', 'UK577C1', 'Watford', 'beds', null), ('2017', 'UK577C1', 'Watford', 'ons_per_res_pop', null), ('2017', 'UK577C1', 'Watford', 'beds_per_1000res_pop', null), ('2017', 'UK578C1', 'Gosport', 'ons', null), ('2017', 'UK578C1', 'Gosport', 'beds', null), ('2017', 'UK578C1', 'Gosport', 'ons_per_res_pop', null), ('2017', 'UK578C1', 'Gosport', 'beds_per_1000res_pop', null), ('2017', 'UK579C1', 'Eastleigh', 'ons', null), ('2017', 'UK579C1', 'Eastleigh', 'beds', null), ('2017', 'UK579C1', 'Eastleigh', 'ons_per_res_pop', null), ('2017', 'UK579C1', 'Eastleigh', 'beds_per_1000res_pop', null), ('2017', 'UK580C1', 'Rushmoor', 'ons', null), ('2017', 'UK580C1', 'Rushmoor', 'beds', null), ('2017', 'UK580C1', 'Rushmoor', 'ons_per_res_pop', null), ('2017', 'UK580C1', 'Rushmoor', 'beds_per_1000res_pop', null), ('2017', 'UK581C1', 'Rugby', 'ons', null), ('2017', 'UK581C1', 'Rugby', 'beds', null), ('2017', 'UK581C1', 'Rugby', 'ons_per_res_pop', null), ('2017', 'UK581C1', 'Rugby', 'beds_per_1000res_pop', null), ('2017', 'UK582C1', 'Corby', 'ons', null), ('2017', 'UK582C1', 'Corby', 'beds', null), ('2017', 'UK582C1', 'Corby', 'ons_per_res_pop', null), ('2017', 'UK582C1', 'Corby', 'beds_per_1000res_pop', null), ('2017', 'UK583C1', 'Kettering', 'ons', null), ('2017', 'UK583C1', 'Kettering', 'beds', null), ('2017', 'UK583C1', 'Kettering', 'ons_per_res_pop', null), ('2017', 'UK583C1', 'Kettering', 'beds_per_1000res_pop', null), ('2017', 'UK584C1', 'Inverclyde (Greenock)', 'ons', null), ('2017', 'UK584C1', 'Inverclyde (Greenock)', 'beds', null), ('2017', 'UK584C1', 'Inverclyde (Greenock)', 'ons_per_res_pop', null), ('2017', 'UK584C1', 'Inverclyde (Greenock)', 'beds_per_1000res_pop', null), ('2017', 'UK585C1', 'Renfrewshire (Paisley)', 'ons', null), ('2017', 'UK585C1', 'Renfrewshire (Paisley)', 'beds', null), ('2017', 'UK585C1', 'Renfrewshire (Paisley)', 'ons_per_res_pop', null), ('2017', 'UK585C1', 'Renfrewshire (Paisley)', 'beds_per_1000res_pop', null), ('2017', 'UK586C1', 'Derry & Strabane Local Government District', 'ons', '822313'), ('2017', 'UK586C1', 'Derry & Strabane Local Government District', 'beds', '2937'), ('2017', 'UK586C1', 'Derry & Strabane Local Government District', 'ons_per_res_pop', '5.5'), ('2017', 'UK586C1', 'Derry & Strabane Local Government District', 'beds_per_1000res_pop', '19.5'), ('2017', 'TR001C1', 'Ankara', 'ons', null), ('2017', 'TR001C1', 'Ankara', 'beds', null), ('2017', 'TR001C1', 'Ankara', 'ons_per_res_pop', null), ('2017', 'TR001C1', 'Ankara', 'beds_per_1000res_pop', null), ('2017', 'TR002C1', 'Adana', 'ons', null), ('2017', 'TR002C1', 'Adana', 'beds', null), ('2017', 'TR002C1', 'Adana', 'ons_per_res_pop', null), ('2017', 'TR002C1', 'Adana', 'beds_per_1000res_pop', null), ('2017', 'TR003C1', 'Antalya', 'ons', null), ('2017', 'TR003C1', 'Antalya', 'beds', null), ('2017', 'TR003C1', 'Antalya', 'ons_per_res_pop', null), ('2017', 'TR003C1', 'Antalya', 'beds_per_1000res_pop', null), ('2017', 'TR004C1', 'Balikesir', 'ons', null), ('2017', 'TR004C1', 'Balikesir', 'beds', null), ('2017', 'TR004C1', 'Balikesir', 'ons_per_res_pop', null), ('2017', 'TR004C1', 'Balikesir', 'beds_per_1000res_pop', null), ('2017', 'TR005C1', 'Bursa', 'ons', null), ('2017', 'TR005C1', 'Bursa', 'beds', null), ('2017', 'TR005C1', 'Bursa', 'ons_per_res_pop', null), ('2017', 'TR005C1', 'Bursa', 'beds_per_1000res_pop', null), ('2017', 'TR006C1', 'Denizli', 'ons', null), ('2017', 'TR006C1', 'Denizli', 'beds', null), ('2017', 'TR006C1', 'Denizli', 'ons_per_res_pop', null), ('2017', 'TR006C1', 'Denizli', 'beds_per_1000res_pop', null), ('2017', 'TR007C1', 'Diyarbakir', 'ons', null), ('2017', 'TR007C1', 'Diyarbakir', 'beds', null), ('2017', 'TR007C1', 'Diyarbakir', 'ons_per_res_pop', null), ('2017', 'TR007C1', 'Diyarbakir', 'beds_per_1000res_pop', null), ('2017', 'TR008C1', 'Edirne', 'ons', null), ('2017', 'TR008C1', 'Edirne', 'beds', null), ('2017', 'TR008C1', 'Edirne', 'ons_per_res_pop', null), ('2017', 'TR008C1', 'Edirne', 'beds_per_1000res_pop', null), ('2017', 'TR009C1', 'Erzurum', 'ons', null), ('2017', 'TR009C1', 'Erzurum', 'beds', null), ('2017', 'TR009C1', 'Erzurum', 'ons_per_res_pop', null), ('2017', 'TR009C1', 'Erzurum', 'beds_per_1000res_pop', null), ('2017', 'TR010C1', 'Gaziantep', 'ons', null), ('2017', 'TR010C1', 'Gaziantep', 'beds', null), ('2017', 'TR010C1', 'Gaziantep', 'ons_per_res_pop', null), ('2017', 'TR010C1', 'Gaziantep', 'beds_per_1000res_pop', null), ('2017', 'TR011C1', 'Hatay', 'ons', null), ('2017', 'TR011C1', 'Hatay', 'beds', null), ('2017', 'TR011C1', 'Hatay', 'ons_per_res_pop', null), ('2017', 'TR011C1', 'Hatay', 'beds_per_1000res_pop', null), ('2017', 'TR012C1', 'Istanbul', 'ons', null), ('2017', 'TR012C1', 'Istanbul', 'beds', null), ('2017', 'TR012C1', 'Istanbul', 'ons_per_res_pop', null), ('2017', 'TR012C1', 'Istanbul', 'beds_per_1000res_pop', null), ('2017', 'TR013C1', 'Izmir', 'ons', null), ('2017', 'TR013C1', 'Izmir', 'beds', null), ('2017', 'TR013C1', 'Izmir', 'ons_per_res_pop', null), ('2017', 'TR013C1', 'Izmir', 'beds_per_1000res_pop', null), ('2017', 'TR014C1', 'Kars', 'ons', null), ('2017', 'TR014C1', 'Kars', 'beds', null), ('2017', 'TR014C1', 'Kars', 'ons_per_res_pop', null), ('2017', 'TR014C1', 'Kars', 'beds_per_1000res_pop', null), ('2017', 'TR015C1', 'Kastamonu', 'ons', null), ('2017', 'TR015C1', 'Kastamonu', 'beds', null), ('2017', 'TR015C1', 'Kastamonu', 'ons_per_res_pop', null), ('2017', 'TR015C1', 'Kastamonu', 'beds_per_1000res_pop', null), ('2017', 'TR016C1', 'Kayseri', 'ons', null), ('2017', 'TR016C1', 'Kayseri', 'beds', null), ('2017', 'TR016C1', 'Kayseri', 'ons_per_res_pop', null), ('2017', 'TR016C1', 'Kayseri', 'beds_per_1000res_pop', null), ('2017', 'TR017C1', 'Kocaeli', 'ons', null), ('2017', 'TR017C1', 'Kocaeli', 'beds', null), ('2017', 'TR017C1', 'Kocaeli', 'ons_per_res_pop', null), ('2017', 'TR017C1', 'Kocaeli', 'beds_per_1000res_pop', null), ('2017', 'TR018C1', 'Konya', 'ons', null), ('2017', 'TR018C1', 'Konya', 'beds', null), ('2017', 'TR018C1', 'Konya', 'ons_per_res_pop', null), ('2017', 'TR018C1', 'Konya', 'beds_per_1000res_pop', null), ('2017', 'TR019C1', 'Malatya', 'ons', null), ('2017', 'TR019C1', 'Malatya', 'beds', null), ('2017', 'TR019C1', 'Malatya', 'ons_per_res_pop', null), ('2017', 'TR019C1', 'Malatya', 'beds_per_1000res_pop', null), ('2017', 'TR020C1', 'Manisa', 'ons', null), ('2017', 'TR020C1', 'Manisa', 'beds', null), ('2017', 'TR020C1', 'Manisa', 'ons_per_res_pop', null), ('2017', 'TR020C1', 'Manisa', 'beds_per_1000res_pop', null), ('2017', 'TR021C1', 'Nevsehir', 'ons', null), ('2017', 'TR021C1', 'Nevsehir', 'beds', null), ('2017', 'TR021C1', 'Nevsehir', 'ons_per_res_pop', null), ('2017', 'TR021C1', 'Nevsehir', 'beds_per_1000res_pop', null), ('2017', 'TR022C1', 'Samsun', 'ons', null), ('2017', 'TR022C1', 'Samsun', 'beds', null), ('2017', 'TR022C1', 'Samsun', 'ons_per_res_pop', null), ('2017', 'TR022C1', 'Samsun', 'beds_per_1000res_pop', null), ('2017', 'TR023C1', 'Siirt', 'ons', null), ('2017', 'TR023C1', 'Siirt', 'beds', null), ('2017', 'TR023C1', 'Siirt', 'ons_per_res_pop', null), ('2017', 'TR023C1', 'Siirt', 'beds_per_1000res_pop', null), ('2017', 'TR024C1', 'Trabzon', 'ons', null), ('2017', 'TR024C1', 'Trabzon', 'beds', null), ('2017', 'TR024C1', 'Trabzon', 'ons_per_res_pop', null), ('2017', 'TR024C1', 'Trabzon', 'beds_per_1000res_pop', null), ('2017', 'TR025C1', 'Van', 'ons', null), ('2017', 'TR025C1', 'Van', 'beds', null), ('2017', 'TR025C1', 'Van', 'ons_per_res_pop', null), ('2017', 'TR025C1', 'Van', 'beds_per_1000res_pop', null), ('2017', 'TR026C1', 'Zonguldak', 'ons', null), ('2017', 'TR026C1', 'Zonguldak', 'beds', null), ('2017', 'TR026C1', 'Zonguldak', 'ons_per_res_pop', null), ('2017', 'TR026C1', 'Zonguldak', 'beds_per_1000res_pop', null), ('2017', 'NO', 'Norge', 'ons', null), ('2017', 'NO', 'Norge', 'beds', null), ('2017', 'NO', 'Norge', 'ons_per_res_pop', null), ('2017', 'NO', 'Norge', 'beds_per_1000res_pop', null), ('2017', 'NO001C1', 'Oslo', 'ons', null), ('2017', 'NO001C1', 'Oslo', 'beds', null), ('2017', 'NO001C1', 'Oslo', 'ons_per_res_pop', null), ('2017', 'NO001C1', 'Oslo', 'beds_per_1000res_pop', null), ('2017', 'NO002C1', 'Bergen', 'ons', null), ('2017', 'NO002C1', 'Bergen', 'beds', null), ('2017', 'NO002C1', 'Bergen', 'ons_per_res_pop', null), ('2017', 'NO002C1', 'Bergen', 'beds_per_1000res_pop', null), ('2017', 'NO003C1', 'Trondheim', 'ons', null), ('2017', 'NO003C1', 'Trondheim', 'beds', null), ('2017', 'NO003C1', 'Trondheim', 'ons_per_res_pop', null), ('2017', 'NO003C1', 'Trondheim', 'beds_per_1000res_pop', null), ('2017', 'NO004C1', 'Stavanger', 'ons', null), ('2017', 'NO004C1', 'Stavanger', 'beds', null), ('2017', 'NO004C1', 'Stavanger', 'ons_per_res_pop', null), ('2017', 'NO004C1', 'Stavanger', 'beds_per_1000res_pop', null), ('2017', 'NO005C1', 'Kristiansand', 'ons', null), ('2017', 'NO005C1', 'Kristiansand', 'beds', null), ('2017', 'NO005C1', 'Kristiansand', 'ons_per_res_pop', null), ('2017', 'NO005C1', 'Kristiansand', 'beds_per_1000res_pop', null), ('2017', 'NO006C1', 'Tromsø', 'ons', null), ('2017', 'NO006C1', 'Tromsø', 'beds', null), ('2017', 'NO006C1', 'Tromsø', 'ons_per_res_pop', null), ('2017', 'NO006C1', 'Tromsø', 'beds_per_1000res_pop', null), ('2017', 'CH', 'Schweiz/Suisse', 'ons', null), ('2017', 'CH', 'Schweiz/Suisse', 'beds', null), ('2017', 'CH', 'Schweiz/Suisse', 'ons_per_res_pop', null), ('2017', 'CH', 'Schweiz/Suisse', 'beds_per_1000res_pop', null), ('2017', 'CH001C1', 'Zürich', 'ons', null), ('2017', 'CH001C1', 'Zürich', 'beds', null), ('2017', 'CH001C1', 'Zürich', 'ons_per_res_pop', null), ('2017', 'CH001C1', 'Zürich', 'beds_per_1000res_pop', null), ('2017', 'CH002C1', 'Genève', 'ons', null), ('2017', 'CH002C1', 'Genève', 'beds', null), ('2017', 'CH002C1', 'Genève', 'ons_per_res_pop', null), ('2017', 'CH002C1', 'Genève', 'beds_per_1000res_pop', null), ('2017', 'CH003C1', 'Basel', 'ons', null), ('2017', 'CH003C1', 'Basel', 'beds', null), ('2017', 'CH003C1', 'Basel', 'ons_per_res_pop', null), ('2017', 'CH003C1', 'Basel', 'beds_per_1000res_pop', null), ('2017', 'CH004C1', 'Bern', 'ons', null), ('2017', 'CH004C1', 'Bern', 'beds', null), ('2017', 'CH004C1', 'Bern', 'ons_per_res_pop', null), ('2017', 'CH004C1', 'Bern', 'beds_per_1000res_pop', null), ('2017', 'CH005C1', 'Lausanne', 'ons', null), ('2017', 'CH005C1', 'Lausanne', 'beds', null), ('2017', 'CH005C1', 'Lausanne', 'ons_per_res_pop', null), ('2017', 'CH005C1', 'Lausanne', 'beds_per_1000res_pop', null), ('2017', 'CH006C1', 'Winterthur', 'ons', null), ('2017', 'CH006C1', 'Winterthur', 'beds', null), ('2017', 'CH006C1', 'Winterthur', 'ons_per_res_pop', null), ('2017', 'CH006C1', 'Winterthur', 'beds_per_1000res_pop', null), ('2017', 'CH007C1', 'St. Gallen', 'ons', null), ('2017', 'CH007C1', 'St. Gallen', 'beds', null), ('2017', 'CH007C1', 'St. Gallen', 'ons_per_res_pop', null), ('2017', 'CH007C1', 'St. Gallen', 'beds_per_1000res_pop', null), ('2017', 'CH008C1', 'Luzern', 'ons', null), ('2017', 'CH008C1', 'Luzern', 'beds', null), ('2017', 'CH008C1', 'Luzern', 'ons_per_res_pop', null), ('2017', 'CH008C1', 'Luzern', 'beds_per_1000res_pop', null), ('2017', 'CH009C2', 'Lugano', 'ons', null), ('2017', 'CH009C2', 'Lugano', 'beds', null), ('2017', 'CH009C2', 'Lugano', 'ons_per_res_pop', null), ('2017', 'CH009C2', 'Lugano', 'beds_per_1000res_pop', null), ('2017', 'CH010C1', 'Biel/Bienne', 'ons', null), ('2017', 'CH010C1', 'Biel/Bienne', 'beds', null), ('2017', 'CH010C1', 'Biel/Bienne', 'ons_per_res_pop', null), ('2017', 'CH010C1', 'Biel/Bienne', 'beds_per_1000res_pop', null), ('2018', 'BE', 'Belgium', 'ons', '38095506'), ('2018', 'BE', 'Belgium', 'beds', '302316'), ('2018', 'BE', 'Belgium', 'ons_per_res_pop', '3.3'), ('2018', 'BE', 'Belgium', 'beds_per_1000res_pop', '26.5'), ('2018', 'BE001C1', 'Bruxelles / Brussel', 'ons', '6993061'), ('2018', 'BE001C1', 'Bruxelles / Brussel', 'beds', '39528'), ('2018', 'BE001C1', 'Bruxelles / Brussel', 'ons_per_res_pop', '5.8'), ('2018', 'BE001C1', 'Bruxelles / Brussel', 'beds_per_1000res_pop', '32.8'), ('2018', 'BE002C1', 'Antwerpen', 'ons', null), ('2018', 'BE002C1', 'Antwerpen', 'beds', '14911'), ('2018', 'BE002C1', 'Antwerpen', 'ons_per_res_pop', null), ('2018', 'BE002C1', 'Antwerpen', 'beds_per_1000res_pop', '28.5'), ('2018', 'BE003C1', 'Gent', 'ons', null), ('2018', 'BE003C1', 'Gent', 'beds', '7631'), ('2018', 'BE003C1', 'Gent', 'ons_per_res_pop', null), ('2018', 'BE003C1', 'Gent', 'beds_per_1000res_pop', '29.3'), ('2018', 'BE004C1', 'Charleroi', 'ons', '253603'), ('2018', 'BE004C1', 'Charleroi', 'beds', '1740'), ('2018', 'BE004C1', 'Charleroi', 'ons_per_res_pop', '1.3'), ('2018', 'BE004C1', 'Charleroi', 'beds_per_1000res_pop', '8.6'), ('2018', 'BE005C1', 'Liège', 'ons', null), ('2018', 'BE005C1', 'Liège', 'beds', '2762'), ('2018', 'BE005C1', 'Liège', 'ons_per_res_pop', null), ('2018', 'BE005C1', 'Liège', 'beds_per_1000res_pop', '7.2'), ('2018', 'BE006C1', 'Brugge', 'ons', null), ('2018', 'BE006C1', 'Brugge', 'beds', '12364'), ('2018', 'BE006C1', 'Brugge', 'ons_per_res_pop', null), ('2018', 'BE006C1', 'Brugge', 'beds_per_1000res_pop', '104.3'), ('2018', 'BE007C1', 'Namur', 'ons', null), ('2018', 'BE007C1', 'Namur', 'beds', '1339'), ('2018', 'BE007C1', 'Namur', 'ons_per_res_pop', null), ('2018', 'BE007C1', 'Namur', 'beds_per_1000res_pop', '12'), ('2018', 'BE008C1', 'Leuven', 'ons', '603248'), ('2018', 'BE008C1', 'Leuven', 'beds', '4625'), ('2018', 'BE008C1', 'Leuven', 'ons_per_res_pop', '6'), ('2018', 'BE008C1', 'Leuven', 'beds_per_1000res_pop', '46'), ('2018', 'BE009C1', 'Mons', 'ons', '195454'), ('2018', 'BE009C1', 'Mons', 'beds', '1436'), ('2018', 'BE009C1', 'Mons', 'ons_per_res_pop', '2'), ('2018', 'BE009C1', 'Mons', 'beds_per_1000res_pop', '15.1'), ('2018', 'BE010C1', 'Kortrijk', 'ons', '245041'), ('2018', 'BE010C1', 'Kortrijk', 'beds', '1789'), ('2018', 'BE010C1', 'Kortrijk', 'ons_per_res_pop', '3.2'), ('2018', 'BE010C1', 'Kortrijk', 'beds_per_1000res_pop', '23.4'), ('2018', 'BE011C1', 'Oostende', 'ons', '1242763'), ('2018', 'BE011C1', 'Oostende', 'beds', '6934'), ('2018', 'BE011C1', 'Oostende', 'ons_per_res_pop', '17.4'), ('2018', 'BE011C1', 'Oostende', 'beds_per_1000res_pop', '97'), ('2018', 'BG', 'Bulgaria', 'ons', '26845013'), ('2018', 'BG', 'Bulgaria', 'beds', '335597'), ('2018', 'BG', 'Bulgaria', 'ons_per_res_pop', '3.8'), ('2018', 'BG', 'Bulgaria', 'beds_per_1000res_pop', '47.6'), ('2018', 'BG001C1', 'Sofia', 'ons', '1925881'), ('2018', 'BG001C1', 'Sofia', 'beds', '12159'), ('2018', 'BG001C1', 'Sofia', 'ons_per_res_pop', '1.6'), ('2018', 'BG001C1', 'Sofia', 'beds_per_1000res_pop', '9.8'), ('2018', 'BG002C1', 'Plovdiv', 'ons', '499426'), ('2018', 'BG002C1', 'Plovdiv', 'beds', '4066'), ('2018', 'BG002C1', 'Plovdiv', 'ons_per_res_pop', '1.4'), ('2018', 'BG002C1', 'Plovdiv', 'beds_per_1000res_pop', '11.8'), ('2018', 'BG003C1', 'Varna', 'ons', '5185978'), ('2018', 'BG003C1', 'Varna', 'beds', '60840'), ('2018', 'BG003C1', 'Varna', 'ons_per_res_pop', '15.4'), ('2018', 'BG003C1', 'Varna', 'beds_per_1000res_pop', '181.2'), ('2018', 'BG004C1', 'Burgas', 'ons', '394376'), ('2018', 'BG004C1', 'Burgas', 'beds', '4194'), ('2018', 'BG004C1', 'Burgas', 'ons_per_res_pop', '1.9'), ('2018', 'BG004C1', 'Burgas', 'beds_per_1000res_pop', '20.7'), ('2018', 'BG005C1', 'Pleven', 'ons', '64556'), ('2018', 'BG005C1', 'Pleven', 'beds', '876'), ('2018', 'BG005C1', 'Pleven', 'ons_per_res_pop', '0.7'), ('2018', 'BG005C1', 'Pleven', 'beds_per_1000res_pop', '9'), ('2018', 'BG006C1', 'Ruse', 'ons', '170877'), ('2018', 'BG006C1', 'Ruse', 'beds', '1747'), ('2018', 'BG006C1', 'Ruse', 'ons_per_res_pop', '1.2'), ('2018', 'BG006C1', 'Ruse', 'beds_per_1000res_pop', '12.1'), ('2018', 'BG007C1', 'Vidin', 'ons', '39817'), ('2018', 'BG007C1', 'Vidin', 'beds', '562'), ('2018', 'BG007C1', 'Vidin', 'ons_per_res_pop', '0.9'), ('2018', 'BG007C1', 'Vidin', 'beds_per_1000res_pop', '13.3'), ('2018', 'BG008C1', 'Stara Zagora', 'ons', '107702'), ('2018', 'BG008C1', 'Stara Zagora', 'beds', '1070'), ('2018', 'BG008C1', 'Stara Zagora', 'ons_per_res_pop', '0.8'), ('2018', 'BG008C1', 'Stara Zagora', 'beds_per_1000res_pop', '7.8'), ('2018', 'BG009C1', 'Sliven', 'ons', '57014'), ('2018', 'BG009C1', 'Sliven', 'beds', '1163'), ('2018', 'BG009C1', 'Sliven', 'ons_per_res_pop', '0.7'), ('2018', 'BG009C1', 'Sliven', 'beds_per_1000res_pop', '13.4'), ('2018', 'BG010C1', 'Dobrich', 'ons', '51033'), ('2018', 'BG010C1', 'Dobrich', 'beds', '655'), ('2018', 'BG010C1', 'Dobrich', 'ons_per_res_pop', '0.6'), ('2018', 'BG010C1', 'Dobrich', 'beds_per_1000res_pop', '7.8'), ('2018', 'BG011C1', 'Shumen', 'ons', '63814'), ('2018', 'BG011C1', 'Shumen', 'beds', '907'), ('2018', 'BG011C1', 'Shumen', 'ons_per_res_pop', '0.8'), ('2018', 'BG011C1', 'Shumen', 'beds_per_1000res_pop', '12'), ('2018', 'BG012C1', 'Pernik', 'ons', '13504'), ('2018', 'BG012C1', 'Pernik', 'beds', '260'), ('2018', 'BG012C1', 'Pernik', 'ons_per_res_pop', '0.2'), ('2018', 'BG012C1', 'Pernik', 'beds_per_1000res_pop', '3.5'), ('2018', 'BG013C1', 'Yambol', 'ons', '28134'), ('2018', 'BG013C1', 'Yambol', 'beds', '491'), ('2018', 'BG013C1', 'Yambol', 'ons_per_res_pop', '0.4'), ('2018', 'BG013C1', 'Yambol', 'beds_per_1000res_pop', '7.1'), ('2018', 'BG014C1', 'Haskovo', 'ons', '45826'), ('2018', 'BG014C1', 'Haskovo', 'beds', '379'), ('2018', 'BG014C1', 'Haskovo', 'ons_per_res_pop', '0.6'), ('2018', 'BG014C1', 'Haskovo', 'beds_per_1000res_pop', '5.3'), ('2018', 'BG015C1', 'Pazardzhik', 'ons', '30279'), ('2018', 'BG015C1', 'Pazardzhik', 'beds', '433'), ('2018', 'BG015C1', 'Pazardzhik', 'ons_per_res_pop', '0.4'), ('2018', 'BG015C1', 'Pazardzhik', 'beds_per_1000res_pop', '6.3'), ('2018', 'BG016C1', 'Blagoevgrad', 'ons', '61199'), ('2018', 'BG016C1', 'Blagoevgrad', 'beds', '1095'), ('2018', 'BG016C1', 'Blagoevgrad', 'ons_per_res_pop', '0.9'), ('2018', 'BG016C1', 'Blagoevgrad', 'beds_per_1000res_pop', '15.8'), ('2018', 'BG017C1', 'Veliko Tarnovo', 'ons', '185622'), ('2018', 'BG017C1', 'Veliko Tarnovo', 'beds', '2083'), ('2018', 'BG017C1', 'Veliko Tarnovo', 'ons_per_res_pop', '2.7'), ('2018', 'BG017C1', 'Veliko Tarnovo', 'beds_per_1000res_pop', '30.3'), ('2018', 'BG018C1', 'Vratsa', 'ons', '52848'), ('2018', 'BG018C1', 'Vratsa', 'beds', '453'), ('2018', 'BG018C1', 'Vratsa', 'ons_per_res_pop', '1'), ('2018', 'BG018C1', 'Vratsa', 'beds_per_1000res_pop', '8.5'), ('2018', 'CZ', 'Czech Republic', 'ons', null), ('2018', 'CZ', 'Czech Republic', 'beds', null), ('2018', 'CZ', 'Czech Republic', 'ons_per_res_pop', null), ('2018', 'CZ', 'Czech Republic', 'beds_per_1000res_pop', null), ('2018', 'CZ001C1', 'Praha', 'ons', null), ('2018', 'CZ001C1', 'Praha', 'beds', null), ('2018', 'CZ001C1', 'Praha', 'ons_per_res_pop', null), ('2018', 'CZ001C1', 'Praha', 'beds_per_1000res_pop', null), ('2018', 'CZ002C1', 'Brno', 'ons', null), ('2018', 'CZ002C1', 'Brno', 'beds', null), ('2018', 'CZ002C1', 'Brno', 'ons_per_res_pop', null), ('2018', 'CZ002C1', 'Brno', 'beds_per_1000res_pop', null), ('2018', 'CZ003C1', 'Ostrava', 'ons', null), ('2018', 'CZ003C1', 'Ostrava', 'beds', null), ('2018', 'CZ003C1', 'Ostrava', 'ons_per_res_pop', null), ('2018', 'CZ003C1', 'Ostrava', 'beds_per_1000res_pop', null), ('2018', 'CZ004C1', 'Plzen', 'ons', null), ('2018', 'CZ004C1', 'Plzen', 'beds', null), ('2018', 'CZ004C1', 'Plzen', 'ons_per_res_pop', null), ('2018', 'CZ004C1', 'Plzen', 'beds_per_1000res_pop', null), ('2018', 'CZ005C1', 'Ústí nad Labem', 'ons', null), ('2018', 'CZ005C1', 'Ústí nad Labem', 'beds', null), ('2018', 'CZ005C1', 'Ústí nad Labem', 'ons_per_res_pop', null), ('2018', 'CZ005C1', 'Ústí nad Labem', 'beds_per_1000res_pop', null), ('2018', 'CZ006C1', 'Olomouc', 'ons', null), ('2018', 'CZ006C1', 'Olomouc', 'beds', null), ('2018', 'CZ006C1', 'Olomouc', 'ons_per_res_pop', null), ('2018', 'CZ006C1', 'Olomouc', 'beds_per_1000res_pop', null), ('2018', 'CZ007C1', 'Liberec', 'ons', null), ('2018', 'CZ007C1', 'Liberec', 'beds', null), ('2018', 'CZ007C1', 'Liberec', 'ons_per_res_pop', null), ('2018', 'CZ007C1', 'Liberec', 'beds_per_1000res_pop', null), ('2018', 'CZ008C1', 'Ceské Budejovice', 'ons', null), ('2018', 'CZ008C1', 'Ceské Budejovice', 'beds', null), ('2018', 'CZ008C1', 'Ceské Budejovice', 'ons_per_res_pop', null), ('2018', 'CZ008C1', 'Ceské Budejovice', 'beds_per_1000res_pop', null), ('2018', 'CZ009C1', 'Hradec Králové', 'ons', null), ('2018', 'CZ009C1', 'Hradec Králové', 'beds', null), ('2018', 'CZ009C1', 'Hradec Králové', 'ons_per_res_pop', null), ('2018', 'CZ009C1', 'Hradec Králové', 'beds_per_1000res_pop', null), ('2018', 'CZ010C1', 'Pardubice', 'ons', null), ('2018', 'CZ010C1', 'Pardubice', 'beds', null), ('2018', 'CZ010C1', 'Pardubice', 'ons_per_res_pop', null), ('2018', 'CZ010C1', 'Pardubice', 'beds_per_1000res_pop', null), ('2018', 'CZ011C1', 'Zlín', 'ons', null), ('2018', 'CZ011C1', 'Zlín', 'beds', null), ('2018', 'CZ011C1', 'Zlín', 'ons_per_res_pop', null), ('2018', 'CZ011C1', 'Zlín', 'beds_per_1000res_pop', null), ('2018', 'CZ012C1', 'Kladno', 'ons', null), ('2018', 'CZ012C1', 'Kladno', 'beds', null), ('2018', 'CZ012C1', 'Kladno', 'ons_per_res_pop', null), ('2018', 'CZ012C1', 'Kladno', 'beds_per_1000res_pop', null), ('2018', 'CZ013C1', 'Karlovy Vary', 'ons', null), ('2018', 'CZ013C1', 'Karlovy Vary', 'beds', null), ('2018', 'CZ013C1', 'Karlovy Vary', 'ons_per_res_pop', null), ('2018', 'CZ013C1', 'Karlovy Vary', 'beds_per_1000res_pop', null), ('2018', 'CZ014C1', 'Jihlava', 'ons', null), ('2018', 'CZ014C1', 'Jihlava', 'beds', null), ('2018', 'CZ014C1', 'Jihlava', 'ons_per_res_pop', null), ('2018', 'CZ014C1', 'Jihlava', 'beds_per_1000res_pop', null), ('2018', 'CZ015C1', 'Havírov', 'ons', null), ('2018', 'CZ015C1', 'Havírov', 'beds', null), ('2018', 'CZ015C1', 'Havírov', 'ons_per_res_pop', null), ('2018', 'CZ015C1', 'Havírov', 'beds_per_1000res_pop', null), ('2018', 'CZ016C1', 'Most', 'ons', null), ('2018', 'CZ016C1', 'Most', 'beds', null), ('2018', 'CZ016C1', 'Most', 'ons_per_res_pop', null), ('2018', 'CZ016C1', 'Most', 'beds_per_1000res_pop', null), ('2018', 'CZ017C1', 'Karviná', 'ons', null), ('2018', 'CZ017C1', 'Karviná', 'beds', null), ('2018', 'CZ017C1', 'Karviná', 'ons_per_res_pop', null), ('2018', 'CZ017C1', 'Karviná', 'beds_per_1000res_pop', null), ('2018', 'CZ018C2', 'Chomutov-Jirkov', 'ons', null), ('2018', 'CZ018C2', 'Chomutov-Jirkov', 'beds', null), ('2018', 'CZ018C2', 'Chomutov-Jirkov', 'ons_per_res_pop', null), ('2018', 'CZ018C2', 'Chomutov-Jirkov', 'beds_per_1000res_pop', null), ('2018', 'DK', 'Denmark', 'ons', null), ('2018', 'DK', 'Denmark', 'beds', null), ('2018', 'DK', 'Denmark', 'ons_per_res_pop', null), ('2018', 'DK', 'Denmark', 'beds_per_1000res_pop', null), ('2018', 'DK001C1', 'København', 'ons', null), ('2018', 'DK001C1', 'København', 'beds', null), ('2018', 'DK001C1', 'København', 'ons_per_res_pop', null), ('2018', 'DK001C1', 'København', 'beds_per_1000res_pop', null), ('2018', 'DK002C1', 'Århus', 'ons', null), ('2018', 'DK002C1', 'Århus', 'beds', null), ('2018', 'DK002C1', 'Århus', 'ons_per_res_pop', null), ('2018', 'DK002C1', 'Århus', 'beds_per_1000res_pop', null), ('2018', 'DK003C1', 'Odense', 'ons', null), ('2018', 'DK003C1', 'Odense', 'beds', null), ('2018', 'DK003C1', 'Odense', 'ons_per_res_pop', null), ('2018', 'DK003C1', 'Odense', 'beds_per_1000res_pop', null), ('2018', 'DK004C2', 'Aalborg', 'ons', null), ('2018', 'DK004C2', 'Aalborg', 'beds', null), ('2018', 'DK004C2', 'Aalborg', 'ons_per_res_pop', null), ('2018', 'DK004C2', 'Aalborg', 'beds_per_1000res_pop', null), ('2018', 'DE', 'Germany', 'ons', null), ('2018', 'DE', 'Germany', 'beds', null), ('2018', 'DE', 'Germany', 'ons_per_res_pop', null), ('2018', 'DE', 'Germany', 'beds_per_1000res_pop', null), ('2018', 'DE001C1', 'Berlin', 'ons', null), ('2018', 'DE001C1', 'Berlin', 'beds', null), ('2018', 'DE001C1', 'Berlin', 'ons_per_res_pop', null), ('2018', 'DE001C1', 'Berlin', 'beds_per_1000res_pop', null), ('2018', 'DE002C1', 'Hamburg', 'ons', null), ('2018', 'DE002C1', 'Hamburg', 'beds', null), ('2018', 'DE002C1', 'Hamburg', 'ons_per_res_pop', null), ('2018', 'DE002C1', 'Hamburg', 'beds_per_1000res_pop', null), ('2018', 'DE003C1', 'München', 'ons', null), ('2018', 'DE003C1', 'München', 'beds', null), ('2018', 'DE003C1', 'München', 'ons_per_res_pop', null), ('2018', 'DE003C1', 'München', 'beds_per_1000res_pop', null), ('2018', 'DE004C1', 'Köln', 'ons', null), ('2018', 'DE004C1', 'Köln', 'beds', null), ('2018', 'DE004C1', 'Köln', 'ons_per_res_pop', null), ('2018', 'DE004C1', 'Köln', 'beds_per_1000res_pop', null), ('2018', 'DE005C1', 'Frankfurt am Main', 'ons', null), ('2018', 'DE005C1', 'Frankfurt am Main', 'beds', null), ('2018', 'DE005C1', 'Frankfurt am Main', 'ons_per_res_pop', null), ('2018', 'DE005C1', 'Frankfurt am Main', 'beds_per_1000res_pop', null), ('2018', 'DE006C1', 'Essen', 'ons', null), ('2018', 'DE006C1', 'Essen', 'beds', null), ('2018', 'DE006C1', 'Essen', 'ons_per_res_pop', null), ('2018', 'DE006C1', 'Essen', 'beds_per_1000res_pop', null), ('2018', 'DE007C1', 'Stuttgart', 'ons', null), ('2018', 'DE007C1', 'Stuttgart', 'beds', null), ('2018', 'DE007C1', 'Stuttgart', 'ons_per_res_pop', null), ('2018', 'DE007C1', 'Stuttgart', 'beds_per_1000res_pop', null), ('2018', 'DE008C1', 'Leipzig', 'ons', null), ('2018', 'DE008C1', 'Leipzig', 'beds', null), ('2018', 'DE008C1', 'Leipzig', 'ons_per_res_pop', null), ('2018', 'DE008C1', 'Leipzig', 'beds_per_1000res_pop', null), ('2018', 'DE009C1', 'Dresden', 'ons', null), ('2018', 'DE009C1', 'Dresden', 'beds', null), ('2018', 'DE009C1', 'Dresden', 'ons_per_res_pop', null), ('2018', 'DE009C1', 'Dresden', 'beds_per_1000res_pop', null), ('2018', 'DE010C1', 'Dortmund', 'ons', null), ('2018', 'DE010C1', 'Dortmund', 'beds', null), ('2018', 'DE010C1', 'Dortmund', 'ons_per_res_pop', null), ('2018', 'DE010C1', 'Dortmund', 'beds_per_1000res_pop', null), ('2018', 'DE011C1', 'Düsseldorf', 'ons', null), ('2018', 'DE011C1', 'Düsseldorf', 'beds', null), ('2018', 'DE011C1', 'Düsseldorf', 'ons_per_res_pop', null), ('2018', 'DE011C1', 'Düsseldorf', 'beds_per_1000res_pop', null), ('2018', 'DE012C1', 'Bremen', 'ons', null), ('2018', 'DE012C1', 'Bremen', 'beds', null), ('2018', 'DE012C1', 'Bremen', 'ons_per_res_pop', null), ('2018', 'DE012C1', 'Bremen', 'beds_per_1000res_pop', null), ('2018', 'DE013C1', 'Hannover', 'ons', null), ('2018', 'DE013C1', 'Hannover', 'beds', null), ('2018', 'DE013C1', 'Hannover', 'ons_per_res_pop', null), ('2018', 'DE013C1', 'Hannover', 'beds_per_1000res_pop', null), ('2018', 'DE014C1', 'Nürnberg', 'ons', null), ('2018', 'DE014C1', 'Nürnberg', 'beds', null), ('2018', 'DE014C1', 'Nürnberg', 'ons_per_res_pop', null), ('2018', 'DE014C1', 'Nürnberg', 'beds_per_1000res_pop', null), ('2018', 'DE015C1', 'Bochum', 'ons', null), ('2018', 'DE015C1', 'Bochum', 'beds', null), ('2018', 'DE015C1', 'Bochum', 'ons_per_res_pop', null), ('2018', 'DE015C1', 'Bochum', 'beds_per_1000res_pop', null), ('2018', 'DE017C1', 'Bielefeld', 'ons', null), ('2018', 'DE017C1', 'Bielefeld', 'beds', null), ('2018', 'DE017C1', 'Bielefeld', 'ons_per_res_pop', null), ('2018', 'DE017C1', 'Bielefeld', 'beds_per_1000res_pop', null), ('2018', 'DE018C1', 'Halle an der Saale', 'ons', null), ('2018', 'DE018C1', 'Halle an der Saale', 'beds', null), ('2018', 'DE018C1', 'Halle an der Saale', 'ons_per_res_pop', null), ('2018', 'DE018C1', 'Halle an der Saale', 'beds_per_1000res_pop', null), ('2018', 'DE019C1', 'Magdeburg', 'ons', null), ('2018', 'DE019C1', 'Magdeburg', 'beds', null), ('2018', 'DE019C1', 'Magdeburg', 'ons_per_res_pop', null), ('2018', 'DE019C1', 'Magdeburg', 'beds_per_1000res_pop', null), ('2018', 'DE020C1', 'Wiesbaden', 'ons', null), ('2018', 'DE020C1', 'Wiesbaden', 'beds', null), ('2018', 'DE020C1', 'Wiesbaden', 'ons_per_res_pop', null), ('2018', 'DE020C1', 'Wiesbaden', 'beds_per_1000res_pop', null), ('2018', 'DE021C1', 'Göttingen', 'ons', null), ('2018', 'DE021C1', 'Göttingen', 'beds', null), ('2018', 'DE021C1', 'Göttingen', 'ons_per_res_pop', null), ('2018', 'DE021C1', 'Göttingen', 'beds_per_1000res_pop', null), ('2018', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons', null), ('2018', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds', null), ('2018', 'DE022C1', 'Mülheim a.d.Ruhr', 'ons_per_res_pop', null), ('2018', 'DE022C1', 'Mülheim a.d.Ruhr', 'beds_per_1000res_pop', null), ('2018', 'DE023C1', 'Moers', 'ons', null), ('2018', 'DE023C1', 'Moers', 'beds', null), ('2018', 'DE023C1', 'Moers', 'ons_per_res_pop', null), ('2018', 'DE023C1', 'Moers', 'beds_per_1000res_pop', null), ('2018', 'DE025C1', 'Darmstadt', 'ons', null), ('2018', 'DE025C1', 'Darmstadt', 'beds', null), ('2018', 'DE025C1', 'Darmstadt', 'ons_per_res_pop', null), ('2018', 'DE025C1', 'Darmstadt', 'beds_per_1000res_pop', null), ('2018', 'DE026C1', 'Trier', 'ons', null), ('2018', 'DE026C1', 'Trier', 'beds', null), ('2018', 'DE026C1', 'Trier', 'ons_per_res_pop', null), ('2018', 'DE026C1', 'Trier', 'beds_per_1000res_pop', null), ('2018', 'DE027C1', 'Freiburg im Breisgau', 'ons', null), ('2018', 'DE027C1', 'Freiburg im Breisgau', 'beds', null), ('2018', 'DE027C1', 'Freiburg im Breisgau', 'ons_per_res_pop', null), ('2018', 'DE027C1', 'Freiburg im Breisgau', 'beds_per_1000res_pop', null), ('2018', 'DE028C1', 'Regensburg', 'ons', null), ('2018', 'DE028C1', 'Regensburg', 'beds', null), ('2018', 'DE028C1', 'Regensburg', 'ons_per_res_pop', null), ('2018', 'DE028C1', 'Regensburg', 'beds_per_1000res_pop', null), ('2018', 'DE029C1', 'Frankfurt (Oder)', 'ons', null), ('2018', 'DE029C1', 'Frankfurt (Oder)', 'beds', null), ('2018', 'DE029C1', 'Frankfurt (Oder)', 'ons_per_res_pop', null), ('2018', 'DE029C1', 'Frankfurt (Oder)', 'beds_per_1000res_pop', null), ('2018', 'DE030C1', 'Weimar', 'ons', null), ('2018', 'DE030C1', 'Weimar', 'beds', null), ('2018', 'DE030C1', 'Weimar', 'ons_per_res_pop', null), ('2018', 'DE030C1', 'Weimar', 'beds_per_1000res_pop', null), ('2018', 'DE031C1', 'Schwerin', 'ons', null), ('2018', 'DE031C1', 'Schwerin', 'beds', null), ('2018', 'DE031C1', 'Schwerin', 'ons_per_res_pop', null), ('2018', 'DE031C1', 'Schwerin', 'beds_per_1000res_pop', null), ('2018', 'DE032C1', 'Erfurt', 'ons', null), ('2018', 'DE032C1', 'Erfurt', 'beds', null), ('2018', 'DE032C1', 'Erfurt', 'ons_per_res_pop', null), ('2018', 'DE032C1', 'Erfurt', 'beds_per_1000res_pop', null), ('2018', 'DE033C1', 'Augsburg', 'ons', null), ('2018', 'DE033C1', 'Augsburg', 'beds', null), ('2018', 'DE033C1', 'Augsburg', 'ons_per_res_pop', null), ('2018', 'DE033C1', 'Augsburg', 'beds_per_1000res_pop', null), ('2018', 'DE034C1', 'Bonn', 'ons', null), ('2018', 'DE034C1', 'Bonn', 'beds', null), ('2018', 'DE034C1', 'Bonn', 'ons_per_res_pop', null), ('2018', 'DE034C1', 'Bonn', 'beds_per_1000res_pop', null), ('2018', 'DE035C1', 'Karlsruhe', 'ons', null), ('2018', 'DE035C1', 'Karlsruhe', 'beds', null), ('2018', 'DE035C1', 'Karlsruhe', 'ons_per_res_pop', null), ('2018', 'DE035C1', 'Karlsruhe', 'beds_per_1000res_pop', null), ('2018', 'DE036C1', 'Mönchengladbach', 'ons', null), ('2018', 'DE036C1', 'Mönchengladbach', 'beds', null), ('2018', 'DE036C1', 'Mönchengladbach', 'ons_per_res_pop', null), ('2018', 'DE036C1', 'Mönchengladbach', 'beds_per_1000res_pop', null), ('2018', 'DE037C1', 'Mainz', 'ons', null), ('2018', 'DE037C1', 'Mainz', 'beds', null), ('2018', 'DE037C1', 'Mainz', 'ons_per_res_pop', null), ('2018', 'DE037C1', 'Mainz', 'beds_per_1000res_pop', null), ('2018', 'DE039C1', 'Kiel', 'ons', null), ('2018', 'DE039C1', 'Kiel', 'beds', null), ('2018', 'DE039C1', 'Kiel', 'ons_per_res_pop', null), ('2018', 'DE039C1', 'Kiel', 'beds_per_1000res_pop', null), ('2018', 'DE040C1', 'Saarbrücken', 'ons', null), ('2018', 'DE040C1', 'Saarbrücken', 'beds', null), ('2018', 'DE040C1', 'Saarbrücken', 'ons_per_res_pop', null), ('2018', 'DE040C1', 'Saarbrücken', 'beds_per_1000res_pop', null), ('2018', 'DE041C1', 'Potsdam', 'ons', null), ('2018', 'DE041C1', 'Potsdam', 'beds', null), ('2018', 'DE041C1', 'Potsdam', 'ons_per_res_pop', null), ('2018', 'DE041C1', 'Potsdam', 'beds_per_1000res_pop', null), ('2018', 'DE042C1', 'Koblenz', 'ons', null), ('2018', 'DE042C1', 'Koblenz', 'beds', null), ('2018', 'DE042C1', 'Koblenz', 'ons_per_res_pop', null), ('2018', 'DE042C1', 'Koblenz', 'beds_per_1000res_pop', null), ('2018', 'DE043C1', 'Rostock', 'ons', null), ('2018', 'DE043C1', 'Rostock', 'beds', null), ('2018', 'DE043C1', 'Rostock', 'ons_per_res_pop', null), ('2018', 'DE043C1', 'Rostock', 'beds_per_1000res_pop', null), ('2018', 'DE044C1', 'Kaiserslautern', 'ons', null), ('2018', 'DE044C1', 'Kaiserslautern', 'beds', null), ('2018', 'DE044C1', 'Kaiserslautern', 'ons_per_res_pop', null), ('2018', 'DE044C1', 'Kaiserslautern', 'beds_per_1000res_pop', null), ('2018', 'DE045C1', 'Iserlohn', 'ons', null), ('2018', 'DE045C1', 'Iserlohn', 'beds', null), ('2018', 'DE045C1', 'Iserlohn', 'ons_per_res_pop', null), ('2018', 'DE045C1', 'Iserlohn', 'beds_per_1000res_pop', null), ('2018', 'DE046C1', 'Esslingen am Neckar', 'ons', null), ('2018', 'DE046C1', 'Esslingen am Neckar', 'beds', null), ('2018', 'DE046C1', 'Esslingen am Neckar', 'ons_per_res_pop', null), ('2018', 'DE046C1', 'Esslingen am Neckar', 'beds_per_1000res_pop', null), ('2018', 'DE047C1', 'Hanau', 'ons', null), ('2018', 'DE047C1', 'Hanau', 'beds', null), ('2018', 'DE047C1', 'Hanau', 'ons_per_res_pop', null), ('2018', 'DE047C1', 'Hanau', 'beds_per_1000res_pop', null), ('2018', 'DE048C1', 'Wilhelmshaven', 'ons', null), ('2018', 'DE048C1', 'Wilhelmshaven', 'beds', null), ('2018', 'DE048C1', 'Wilhelmshaven', 'ons_per_res_pop', null), ('2018', 'DE048C1', 'Wilhelmshaven', 'beds_per_1000res_pop', null), ('2018', 'DE049C1', 'Ludwigsburg', 'ons', null), ('2018', 'DE049C1', 'Ludwigsburg', 'beds', null), ('2018', 'DE049C1', 'Ludwigsburg', 'ons_per_res_pop', null), ('2018', 'DE049C1', 'Ludwigsburg', 'beds_per_1000res_pop', null), ('2018', 'DE050C1', 'Tübingen', 'ons', null), ('2018', 'DE050C1', 'Tübingen', 'beds', null), ('2018', 'DE050C1', 'Tübingen', 'ons_per_res_pop', null), ('2018', 'DE050C1', 'Tübingen', 'beds_per_1000res_pop', null), ('2018', 'DE051C1', 'Villingen-Schwenningen', 'ons', null), ('2018', 'DE051C1', 'Villingen-Schwenningen', 'beds', null), ('2018', 'DE051C1', 'Villingen-Schwenningen', 'ons_per_res_pop', null), ('2018', 'DE051C1', 'Villingen-Schwenningen', 'beds_per_1000res_pop', null), ('2018', 'DE052C1', 'Flensburg', 'ons', null), ('2018', 'DE052C1', 'Flensburg', 'beds', null), ('2018', 'DE052C1', 'Flensburg', 'ons_per_res_pop', null), ('2018', 'DE052C1', 'Flensburg', 'beds_per_1000res_pop', null), ('2018', 'DE053C1', 'Marburg', 'ons', null), ('2018', 'DE053C1', 'Marburg', 'beds', null), ('2018', 'DE053C1', 'Marburg', 'ons_per_res_pop', null), ('2018', 'DE053C1', 'Marburg', 'beds_per_1000res_pop', null), ('2018', 'DE054C1', 'Konstanz', 'ons', null), ('2018', 'DE054C1', 'Konstanz', 'beds', null), ('2018', 'DE054C1', 'Konstanz', 'ons_per_res_pop', null), ('2018', 'DE054C1', 'Konstanz', 'beds_per_1000res_pop', null), ('2018', 'DE055C1', 'Neumünster', 'ons', null), ('2018', 'DE055C1', 'Neumünster', 'beds', null), ('2018', 'DE055C1', 'Neumünster', 'ons_per_res_pop', null), ('2018', 'DE055C1', 'Neumünster', 'beds_per_1000res_pop', null), ('2018', 'DE056C1', 'Brandenburg an der Havel', 'ons', null), ('2018', 'DE056C1', 'Brandenburg an der Havel', 'beds', null), ('2018', 'DE056C1', 'Brandenburg an der Havel', 'ons_per_res_pop', null), ('2018', 'DE056C1', 'Brandenburg an der Havel', 'beds_per_1000res_pop', null), ('2018', 'DE057C1', 'Gießen', 'ons', null), ('2018', 'DE057C1', 'Gießen', 'beds', null), ('2018', 'DE057C1', 'Gießen', 'ons_per_res_pop', null), ('2018', 'DE057C1', 'Gießen', 'beds_per_1000res_pop', null), ('2018', 'DE058C1', 'Lüneburg', 'ons', null), ('2018', 'DE058C1', 'Lüneburg', 'beds', null), ('2018', 'DE058C1', 'Lüneburg', 'ons_per_res_pop', null), ('2018', 'DE058C1', 'Lüneburg', 'beds_per_1000res_pop', null), ('2018', 'DE059C1', 'Bayreuth', 'ons', null), ('2018', 'DE059C1', 'Bayreuth', 'beds', null), ('2018', 'DE059C1', 'Bayreuth', 'ons_per_res_pop', null), ('2018', 'DE059C1', 'Bayreuth', 'beds_per_1000res_pop', null), ('2018', 'DE060C1', 'Celle', 'ons', null), ('2018', 'DE060C1', 'Celle', 'beds', null), ('2018', 'DE060C1', 'Celle', 'ons_per_res_pop', null), ('2018', 'DE060C1', 'Celle', 'beds_per_1000res_pop', null), ('2018', 'DE061C1', 'Aschaffenburg', 'ons', null), ('2018', 'DE061C1', 'Aschaffenburg', 'beds', null), ('2018', 'DE061C1', 'Aschaffenburg', 'ons_per_res_pop', null), ('2018', 'DE061C1', 'Aschaffenburg', 'beds_per_1000res_pop', null), ('2018', 'DE062C1', 'Bamberg', 'ons', null), ('2018', 'DE062C1', 'Bamberg', 'beds', null), ('2018', 'DE062C1', 'Bamberg', 'ons_per_res_pop', null), ('2018', 'DE062C1', 'Bamberg', 'beds_per_1000res_pop', null), ('2018', 'DE063C1', 'Plauen', 'ons', null), ('2018', 'DE063C1', 'Plauen', 'beds', null), ('2018', 'DE063C1', 'Plauen', 'ons_per_res_pop', null), ('2018', 'DE063C1', 'Plauen', 'beds_per_1000res_pop', null), ('2018', 'DE064C1', 'Neubrandenburg', 'ons', null), ('2018', 'DE064C1', 'Neubrandenburg', 'beds', null), ('2018', 'DE064C1', 'Neubrandenburg', 'ons_per_res_pop', null), ('2018', 'DE064C1', 'Neubrandenburg', 'beds_per_1000res_pop', null), ('2018', 'DE065C1', 'Fulda', 'ons', null), ('2018', 'DE065C1', 'Fulda', 'beds', null), ('2018', 'DE065C1', 'Fulda', 'ons_per_res_pop', null), ('2018', 'DE065C1', 'Fulda', 'beds_per_1000res_pop', null), ('2018', 'DE066C1', 'Kempten (Allgäu)', 'ons', null), ('2018', 'DE066C1', 'Kempten (Allgäu)', 'beds', null), ('2018', 'DE066C1', 'Kempten (Allgäu)', 'ons_per_res_pop', null), ('2018', 'DE066C1', 'Kempten (Allgäu)', 'beds_per_1000res_pop', null), ('2018', 'DE067C1', 'Landshut', 'ons', null), ('2018', 'DE067C1', 'Landshut', 'beds', null), ('2018', 'DE067C1', 'Landshut', 'ons_per_res_pop', null), ('2018', 'DE067C1', 'Landshut', 'beds_per_1000res_pop', null), ('2018', 'DE068C1', 'Sindelfingen', 'ons', null), ('2018', 'DE068C1', 'Sindelfingen', 'beds', null), ('2018', 'DE068C1', 'Sindelfingen', 'ons_per_res_pop', null), ('2018', 'DE068C1', 'Sindelfingen', 'beds_per_1000res_pop', null), ('2018', 'DE069C1', 'Rosenheim', 'ons', null), ('2018', 'DE069C1', 'Rosenheim', 'beds', null), ('2018', 'DE069C1', 'Rosenheim', 'ons_per_res_pop', null), ('2018', 'DE069C1', 'Rosenheim', 'beds_per_1000res_pop', null), ('2018', 'DE070C1', 'Frankenthal (Pfalz)', 'ons', null), ('2018', 'DE070C1', 'Frankenthal (Pfalz)', 'beds', null), ('2018', 'DE070C1', 'Frankenthal (Pfalz)', 'ons_per_res_pop', null), ('2018', 'DE070C1', 'Frankenthal (Pfalz)', 'beds_per_1000res_pop', null), ('2018', 'DE071C1', 'Stralsund', 'ons', null), ('2018', 'DE071C1', 'Stralsund', 'beds', null), ('2018', 'DE071C1', 'Stralsund', 'ons_per_res_pop', null), ('2018', 'DE071C1', 'Stralsund', 'beds_per_1000res_pop', null), ('2018', 'DE072C1', 'Friedrichshafen', 'ons', null), ('2018', 'DE072C1', 'Friedrichshafen', 'beds', null), ('2018', 'DE072C1', 'Friedrichshafen', 'ons_per_res_pop', null), ('2018', 'DE072C1', 'Friedrichshafen', 'beds_per_1000res_pop', null), ('2018', 'DE073C1', 'Offenburg', 'ons', null), ('2018', 'DE073C1', 'Offenburg', 'beds', null), ('2018', 'DE073C1', 'Offenburg', 'ons_per_res_pop', null), ('2018', 'DE073C1', 'Offenburg', 'beds_per_1000res_pop', null), ('2018', 'DE074C1', 'Görlitz', 'ons', null), ('2018', 'DE074C1', 'Görlitz', 'beds', null), ('2018', 'DE074C1', 'Görlitz', 'ons_per_res_pop', null), ('2018', 'DE074C1', 'Görlitz', 'beds_per_1000res_pop', null), ('2018', 'DE075C1', 'Sankt Augustin', 'ons', null), ('2018', 'DE075C1', 'Sankt Augustin', 'beds', null), ('2018', 'DE075C1', 'Sankt Augustin', 'ons_per_res_pop', null), ('2018', 'DE075C1', 'Sankt Augustin', 'beds_per_1000res_pop', null), ('2018', 'DE076C1', 'Neu-Ulm', 'ons', null), ('2018', 'DE076C1', 'Neu-Ulm', 'beds', null), ('2018', 'DE076C1', 'Neu-Ulm', 'ons_per_res_pop', null), ('2018', 'DE076C1', 'Neu-Ulm', 'beds_per_1000res_pop', null), ('2018', 'DE077C1', 'Schweinfurt', 'ons', null), ('2018', 'DE077C1', 'Schweinfurt', 'beds', null), ('2018', 'DE077C1', 'Schweinfurt', 'ons_per_res_pop', null), ('2018', 'DE077C1', 'Schweinfurt', 'beds_per_1000res_pop', null), ('2018', 'DE078C1', 'Greifswald', 'ons', null), ('2018', 'DE078C1', 'Greifswald', 'beds', null), ('2018', 'DE078C1', 'Greifswald', 'ons_per_res_pop', null), ('2018', 'DE078C1', 'Greifswald', 'beds_per_1000res_pop', null), ('2018', 'DE079C1', 'Wetzlar', 'ons', null), ('2018', 'DE079C1', 'Wetzlar', 'beds', null), ('2018', 'DE079C1', 'Wetzlar', 'ons_per_res_pop', null), ('2018', 'DE079C1', 'Wetzlar', 'beds_per_1000res_pop', null), ('2018', 'DE080C1', 'Speyer', 'ons', null), ('2018', 'DE080C1', 'Speyer', 'beds', null), ('2018', 'DE080C1', 'Speyer', 'ons_per_res_pop', null), ('2018', 'DE080C1', 'Speyer', 'beds_per_1000res_pop', null), ('2018', 'DE081C1', 'Passau', 'ons', null), ('2018', 'DE081C1', 'Passau', 'beds', null), ('2018', 'DE081C1', 'Passau', 'ons_per_res_pop', null), ('2018', 'DE081C1', 'Passau', 'beds_per_1000res_pop', null), ('2018', 'DE082C1', 'Dessau-Roßlau', 'ons', null), ('2018', 'DE082C1', 'Dessau-Roßlau', 'beds', null), ('2018', 'DE082C1', 'Dessau-Roßlau', 'ons_per_res_pop', null), ('2018', 'DE082C1', 'Dessau-Roßlau', 'beds_per_1000res_pop', null), ('2018', 'DE501C1', 'Duisburg', 'ons', null), ('2018', 'DE501C1', 'Duisburg', 'beds', null), ('2018', 'DE501C1', 'Duisburg', 'ons_per_res_pop', null), ('2018', 'DE501C1', 'Duisburg', 'beds_per_1000res_pop', null), ('2018', 'DE502C1', 'Mannheim', 'ons', null), ('2018', 'DE502C1', 'Mannheim', 'beds', null), ('2018', 'DE502C1', 'Mannheim', 'ons_per_res_pop', null), ('2018', 'DE502C1', 'Mannheim', 'beds_per_1000res_pop', null), ('2018', 'DE503C1', 'Gelsenkirchen', 'ons', null), ('2018', 'DE503C1', 'Gelsenkirchen', 'beds', null), ('2018', 'DE503C1', 'Gelsenkirchen', 'ons_per_res_pop', null), ('2018', 'DE503C1', 'Gelsenkirchen', 'beds_per_1000res_pop', null), ('2018', 'DE504C1', 'Münster', 'ons', null), ('2018', 'DE504C1', 'Münster', 'beds', null), ('2018', 'DE504C1', 'Münster', 'ons_per_res_pop', null), ('2018', 'DE504C1', 'Münster', 'beds_per_1000res_pop', null), ('2018', 'DE505C1', 'Chemnitz', 'ons', null), ('2018', 'DE505C1', 'Chemnitz', 'beds', null), ('2018', 'DE505C1', 'Chemnitz', 'ons_per_res_pop', null), ('2018', 'DE505C1', 'Chemnitz', 'beds_per_1000res_pop', null), ('2018', 'DE506C1', 'Braunschweig', 'ons', null), ('2018', 'DE506C1', 'Braunschweig', 'beds', null), ('2018', 'DE506C1', 'Braunschweig', 'ons_per_res_pop', null), ('2018', 'DE506C1', 'Braunschweig', 'beds_per_1000res_pop', null), ('2018', 'DE507C1', 'Aachen', 'ons', null), ('2018', 'DE507C1', 'Aachen', 'beds', null), ('2018', 'DE507C1', 'Aachen', 'ons_per_res_pop', null), ('2018', 'DE507C1', 'Aachen', 'beds_per_1000res_pop', null), ('2018', 'DE508C1', 'Krefeld', 'ons', null), ('2018', 'DE508C1', 'Krefeld', 'beds', null), ('2018', 'DE508C1', 'Krefeld', 'ons_per_res_pop', null), ('2018', 'DE508C1', 'Krefeld', 'beds_per_1000res_pop', null), ('2018', 'DE509C1', 'Oberhausen', 'ons', null), ('2018', 'DE509C1', 'Oberhausen', 'beds', null), ('2018', 'DE509C1', 'Oberhausen', 'ons_per_res_pop', null), ('2018', 'DE509C1', 'Oberhausen', 'beds_per_1000res_pop', null), ('2018', 'DE510C1', 'Lübeck', 'ons', null), ('2018', 'DE510C1', 'Lübeck', 'beds', null), ('2018', 'DE510C1', 'Lübeck', 'ons_per_res_pop', null), ('2018', 'DE510C1', 'Lübeck', 'beds_per_1000res_pop', null), ('2018', 'DE511C1', 'Hagen', 'ons', null), ('2018', 'DE511C1', 'Hagen', 'beds', null), ('2018', 'DE511C1', 'Hagen', 'ons_per_res_pop', null), ('2018', 'DE511C1', 'Hagen', 'beds_per_1000res_pop', null), ('2018', 'DE513C1', 'Kassel', 'ons', null), ('2018', 'DE513C1', 'Kassel', 'beds', null), ('2018', 'DE513C1', 'Kassel', 'ons_per_res_pop', null), ('2018', 'DE513C1', 'Kassel', 'beds_per_1000res_pop', null), ('2018', 'DE514C1', 'Hamm', 'ons', null), ('2018', 'DE514C1', 'Hamm', 'beds', null), ('2018', 'DE514C1', 'Hamm', 'ons_per_res_pop', null), ('2018', 'DE514C1', 'Hamm', 'beds_per_1000res_pop', null), ('2018', 'DE515C1', 'Herne', 'ons', null), ('2018', 'DE515C1', 'Herne', 'beds', null), ('2018', 'DE515C1', 'Herne', 'ons_per_res_pop', null), ('2018', 'DE515C1', 'Herne', 'beds_per_1000res_pop', null), ('2018', 'DE516C1', 'Solingen', 'ons', null), ('2018', 'DE516C1', 'Solingen', 'beds', null), ('2018', 'DE516C1', 'Solingen', 'ons_per_res_pop', null), ('2018', 'DE516C1', 'Solingen', 'beds_per_1000res_pop', null), ('2018', 'DE517C1', 'Osnabrück', 'ons', null), ('2018', 'DE517C1', 'Osnabrück', 'beds', null), ('2018', 'DE517C1', 'Osnabrück', 'ons_per_res_pop', null), ('2018', 'DE517C1', 'Osnabrück', 'beds_per_1000res_pop', null), ('2018', 'DE518C1', 'Ludwigshafen am Rhein', 'ons', null), ('2018', 'DE518C1', 'Ludwigshafen am Rhein', 'beds', null), ('2018', 'DE518C1', 'Ludwigshafen am Rhein', 'ons_per_res_pop', null), ('2018', 'DE518C1', 'Ludwigshafen am Rhein', 'beds_per_1000res_pop', null), ('2018', 'DE519C1', 'Leverkusen', 'ons', null), ('2018', 'DE519C1', 'Leverkusen', 'beds', null), ('2018', 'DE519C1', 'Leverkusen', 'ons_per_res_pop', null), ('2018', 'DE519C1', 'Leverkusen', 'beds_per_1000res_pop', null), ('2018', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons', null), ('2018', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds', null), ('2018', 'DE520C1', 'Oldenburg (Oldenburg)', 'ons_per_res_pop', null), ('2018', 'DE520C1', 'Oldenburg (Oldenburg)', 'beds_per_1000res_pop', null), ('2018', 'DE521C1', 'Neuss', 'ons', null), ('2018', 'DE521C1', 'Neuss', 'beds', null), ('2018', 'DE521C1', 'Neuss', 'ons_per_res_pop', null), ('2018', 'DE521C1', 'Neuss', 'beds_per_1000res_pop', null), ('2018', 'DE522C1', 'Heidelberg', 'ons', null), ('2018', 'DE522C1', 'Heidelberg', 'beds', null), ('2018', 'DE522C1', 'Heidelberg', 'ons_per_res_pop', null), ('2018', 'DE522C1', 'Heidelberg', 'beds_per_1000res_pop', null), ('2018', 'DE523C1', 'Paderborn', 'ons', null), ('2018', 'DE523C1', 'Paderborn', 'beds', null), ('2018', 'DE523C1', 'Paderborn', 'ons_per_res_pop', null), ('2018', 'DE523C1', 'Paderborn', 'beds_per_1000res_pop', null), ('2018', 'DE524C1', 'Würzburg', 'ons', null), ('2018', 'DE524C1', 'Würzburg', 'beds', null), ('2018', 'DE524C1', 'Würzburg', 'ons_per_res_pop', null), ('2018', 'DE524C1', 'Würzburg', 'beds_per_1000res_pop', null), ('2018', 'DE525C1', 'Recklinghausen', 'ons', null), ('2018', 'DE525C1', 'Recklinghausen', 'beds', null), ('2018', 'DE525C1', 'Recklinghausen', 'ons_per_res_pop', null), ('2018', 'DE525C1', 'Recklinghausen', 'beds_per_1000res_pop', null), ('2018', 'DE526C1', 'Wolfsburg', 'ons', null), ('2018', 'DE526C1', 'Wolfsburg', 'beds', null), ('2018', 'DE526C1', 'Wolfsburg', 'ons_per_res_pop', null), ('2018', 'DE526C1', 'Wolfsburg', 'beds_per_1000res_pop', null), ('2018', 'DE527C1', 'Bremerhaven', 'ons', null), ('2018', 'DE527C1', 'Bremerhaven', 'beds', null), ('2018', 'DE527C1', 'Bremerhaven', 'ons_per_res_pop', null), ('2018', 'DE527C1', 'Bremerhaven', 'beds_per_1000res_pop', null), ('2018', 'DE528C1', 'Bottrop', 'ons', null), ('2018', 'DE528C1', 'Bottrop', 'beds', null), ('2018', 'DE528C1', 'Bottrop', 'ons_per_res_pop', null), ('2018', 'DE528C1', 'Bottrop', 'beds_per_1000res_pop', null), ('2018', 'DE529C1', 'Heilbronn', 'ons', null), ('2018', 'DE529C1', 'Heilbronn', 'beds', null), ('2018', 'DE529C1', 'Heilbronn', 'ons_per_res_pop', null), ('2018', 'DE529C1', 'Heilbronn', 'beds_per_1000res_pop', null), ('2018', 'DE530C1', 'Remscheid', 'ons', null), ('2018', 'DE530C1', 'Remscheid', 'beds', null), ('2018', 'DE530C1', 'Remscheid', 'ons_per_res_pop', null), ('2018', 'DE530C1', 'Remscheid', 'beds_per_1000res_pop', null), ('2018', 'DE531C1', 'Offenbach am Main', 'ons', null), ('2018', 'DE531C1', 'Offenbach am Main', 'beds', null), ('2018', 'DE531C1', 'Offenbach am Main', 'ons_per_res_pop', null), ('2018', 'DE531C1', 'Offenbach am Main', 'beds_per_1000res_pop', null), ('2018', 'DE532C1', 'Ulm', 'ons', null), ('2018', 'DE532C1', 'Ulm', 'beds', null), ('2018', 'DE532C1', 'Ulm', 'ons_per_res_pop', null), ('2018', 'DE532C1', 'Ulm', 'beds_per_1000res_pop', null), ('2018', 'DE533C1', 'Pforzheim', 'ons', null), ('2018', 'DE533C1', 'Pforzheim', 'beds', null), ('2018', 'DE533C1', 'Pforzheim', 'ons_per_res_pop', null), ('2018', 'DE533C1', 'Pforzheim', 'beds_per_1000res_pop', null), ('2018', 'DE534C1', 'Ingolstadt', 'ons', null), ('2018', 'DE534C1', 'Ingolstadt', 'beds', null), ('2018', 'DE534C1', 'Ingolstadt', 'ons_per_res_pop', null), ('2018', 'DE534C1', 'Ingolstadt', 'beds_per_1000res_pop', null), ('2018', 'DE535C1', 'Gera', 'ons', null), ('2018', 'DE535C1', 'Gera', 'beds', null), ('2018', 'DE535C1', 'Gera', 'ons_per_res_pop', null), ('2018', 'DE535C1', 'Gera', 'beds_per_1000res_pop', null), ('2018', 'DE536C1', 'Salzgitter', 'ons', null), ('2018', 'DE536C1', 'Salzgitter', 'beds', null), ('2018', 'DE536C1', 'Salzgitter', 'ons_per_res_pop', null), ('2018', 'DE536C1', 'Salzgitter', 'beds_per_1000res_pop', null), ('2018', 'DE537C1', 'Reutlingen', 'ons', null), ('2018', 'DE537C1', 'Reutlingen', 'beds', null), ('2018', 'DE537C1', 'Reutlingen', 'ons_per_res_pop', null), ('2018', 'DE537C1', 'Reutlingen', 'beds_per_1000res_pop', null), ('2018', 'DE538C1', 'Fürth', 'ons', null), ('2018', 'DE538C1', 'Fürth', 'beds', null), ('2018', 'DE538C1', 'Fürth', 'ons_per_res_pop', null), ('2018', 'DE538C1', 'Fürth', 'beds_per_1000res_pop', null), ('2018', 'DE539C1', 'Cottbus', 'ons', null), ('2018', 'DE539C1', 'Cottbus', 'beds', null), ('2018', 'DE539C1', 'Cottbus', 'ons_per_res_pop', null), ('2018', 'DE539C1', 'Cottbus', 'beds_per_1000res_pop', null), ('2018', 'DE540C1', 'Siegen', 'ons', null), ('2018', 'DE540C1', 'Siegen', 'beds', null), ('2018', 'DE540C1', 'Siegen', 'ons_per_res_pop', null), ('2018', 'DE540C1', 'Siegen', 'beds_per_1000res_pop', null), ('2018', 'DE541C1', 'Bergisch Gladbach', 'ons', null), ('2018', 'DE541C1', 'Bergisch Gladbach', 'beds', null), ('2018', 'DE541C1', 'Bergisch Gladbach', 'ons_per_res_pop', null), ('2018', 'DE541C1', 'Bergisch Gladbach', 'beds_per_1000res_pop', null), ('2018', 'DE542C1', 'Hildesheim', 'ons', null), ('2018', 'DE542C1', 'Hildesheim', 'beds', null), ('2018', 'DE542C1', 'Hildesheim', 'ons_per_res_pop', null), ('2018', 'DE542C1', 'Hildesheim', 'beds_per_1000res_pop', null), ('2018', 'DE543C1', 'Witten', 'ons', null), ('2018', 'DE543C1', 'Witten', 'beds', null), ('2018', 'DE543C1', 'Witten', 'ons_per_res_pop', null), ('2018', 'DE543C1', 'Witten', 'beds_per_1000res_pop', null), ('2018', 'DE544C1', 'Zwickau', 'ons', null), ('2018', 'DE544C1', 'Zwickau', 'beds', null), ('2018', 'DE544C1', 'Zwickau', 'ons_per_res_pop', null), ('2018', 'DE544C1', 'Zwickau', 'beds_per_1000res_pop', null), ('2018', 'DE545C1', 'Erlangen', 'ons', null), ('2018', 'DE545C1', 'Erlangen', 'beds', null), ('2018', 'DE545C1', 'Erlangen', 'ons_per_res_pop', null), ('2018', 'DE545C1', 'Erlangen', 'beds_per_1000res_pop', null), ('2018', 'DE546C1', 'Wuppertal', 'ons', null), ('2018', 'DE546C1', 'Wuppertal', 'beds', null), ('2018', 'DE546C1', 'Wuppertal', 'ons_per_res_pop', null), ('2018', 'DE546C1', 'Wuppertal', 'beds_per_1000res_pop', null), ('2018', 'DE547C1', 'Jena', 'ons', null), ('2018', 'DE547C1', 'Jena', 'beds', null), ('2018', 'DE547C1', 'Jena', 'ons_per_res_pop', null), ('2018', 'DE547C1', 'Jena', 'beds_per_1000res_pop', null), ('2018', 'DE548C1', 'Düren, Stadt', 'ons', null), ('2018', 'DE548C1', 'Düren, Stadt', 'beds', null), ('2018', 'DE548C1', 'Düren, Stadt', 'ons_per_res_pop', null), ('2018', 'DE548C1', 'Düren, Stadt', 'beds_per_1000res_pop', null), ('2018', 'DE549C1', 'Bocholt, Stadt', 'ons', null), ('2018', 'DE549C1', 'Bocholt, Stadt', 'beds', null), ('2018', 'DE549C1', 'Bocholt, Stadt', 'ons_per_res_pop', null), ('2018', 'DE549C1', 'Bocholt, Stadt', 'beds_per_1000res_pop', null), ('2018', 'EE', 'Estonia', 'ons', '6630315'), ('2018', 'EE', 'Estonia', 'beds', '61193'), ('2018', 'EE', 'Estonia', 'ons_per_res_pop', '5'), ('2018', 'EE', 'Estonia', 'beds_per_1000res_pop', '46.4'), ('2018', 'EE001C1', 'Tallinn', 'ons', '3149626'), ('2018', 'EE001C1', 'Tallinn', 'beds', '17645'), ('2018', 'EE001C1', 'Tallinn', 'ons_per_res_pop', '7.3'), ('2018', 'EE001C1', 'Tallinn', 'beds_per_1000res_pop', '41'), ('2018', 'EE002C1', 'Tartu', 'ons', '494097'), ('2018', 'EE002C1', 'Tartu', 'beds', '2948'), ('2018', 'EE002C1', 'Tartu', 'ons_per_res_pop', '5.1'), ('2018', 'EE002C1', 'Tartu', 'beds_per_1000res_pop', '30.5'), ('2018', 'EE003C1', 'Narva', 'ons', '50774'), ('2018', 'EE003C1', 'Narva', 'beds', '384'), ('2018', 'EE003C1', 'Narva', 'ons_per_res_pop', '0.9'), ('2018', 'EE003C1', 'Narva', 'beds_per_1000res_pop', '6.8'), ('2018', 'IE', 'Ireland', 'ons', null), ('2018', 'IE', 'Ireland', 'beds', null), ('2018', 'IE', 'Ireland', 'ons_per_res_pop', null), ('2018', 'IE', 'Ireland', 'beds_per_1000res_pop', null), ('2018', 'IE001C1', 'Dublin', 'ons', null), ('2018', 'IE001C1', 'Dublin', 'beds', null), ('2018', 'IE001C1', 'Dublin', 'ons_per_res_pop', null), ('2018', 'IE001C1', 'Dublin', 'beds_per_1000res_pop', null), ('2018', 'IE002C1', 'Cork', 'ons', null), ('2018', 'IE002C1', 'Cork', 'beds', null), ('2018', 'IE002C1', 'Cork', 'ons_per_res_pop', null), ('2018', 'IE002C1', 'Cork', 'beds_per_1000res_pop', null), ('2018', 'IE003C1', 'Limerick', 'ons', null), ('2018', 'IE003C1', 'Limerick', 'beds', null), ('2018', 'IE003C1', 'Limerick', 'ons_per_res_pop', null), ('2018', 'IE003C1', 'Limerick', 'beds_per_1000res_pop', null), ('2018', 'IE004C1', 'Galway', 'ons', null), ('2018', 'IE004C1', 'Galway', 'beds', null), ('2018', 'IE004C1', 'Galway', 'ons_per_res_pop', null), ('2018', 'IE004C1', 'Galway', 'beds_per_1000res_pop', null), ('2018', 'IE005C1', 'Waterford', 'ons', null), ('2018', 'IE005C1', 'Waterford', 'beds', null), ('2018', 'IE005C1', 'Waterford', 'ons_per_res_pop', null), ('2018', 'IE005C1', 'Waterford', 'beds_per_1000res_pop', null), ('2018', 'EL', 'Greece', 'ons', null), ('2018', 'EL', 'Greece', 'beds', null), ('2018', 'EL', 'Greece', 'ons_per_res_pop', null), ('2018', 'EL', 'Greece', 'beds_per_1000res_pop', null), ('2018', 'EL001C1', 'Athina', 'ons', null), ('2018', 'EL001C1', 'Athina', 'beds', null), ('2018', 'EL001C1', 'Athina', 'ons_per_res_pop', null), ('2018', 'EL001C1', 'Athina', 'beds_per_1000res_pop', null), ('2018', 'EL002C1', 'Thessaloniki', 'ons', null), ('2018', 'EL002C1', 'Thessaloniki', 'beds', null), ('2018', 'EL002C1', 'Thessaloniki', 'ons_per_res_pop', null), ('2018', 'EL002C1', 'Thessaloniki', 'beds_per_1000res_pop', null), ('2018', 'EL003C1', 'Pátra', 'ons', null), ('2018', 'EL003C1', 'Pátra', 'beds', null), ('2018', 'EL003C1', 'Pátra', 'ons_per_res_pop', null), ('2018', 'EL003C1', 'Pátra', 'beds_per_1000res_pop', null), ('2018', 'EL004C1', 'Irakleio', 'ons', null), ('2018', 'EL004C1', 'Irakleio', 'beds', null), ('2018', 'EL004C1', 'Irakleio', 'ons_per_res_pop', null), ('2018', 'EL004C1', 'Irakleio', 'beds_per_1000res_pop', null), ('2018', 'EL005C1', 'Larisa', 'ons', null), ('2018', 'EL005C1', 'Larisa', 'beds', null), ('2018', 'EL005C1', 'Larisa', 'ons_per_res_pop', null), ('2018', 'EL005C1', 'Larisa', 'beds_per_1000res_pop', null), ('2018', 'EL006C1', 'Volos', 'ons', null), ('2018', 'EL006C1', 'Volos', 'beds', null), ('2018', 'EL006C1', 'Volos', 'ons_per_res_pop', null), ('2018', 'EL006C1', 'Volos', 'beds_per_1000res_pop', null), ('2018', 'EL007C1', 'Ioannina', 'ons', null), ('2018', 'EL007C1', 'Ioannina', 'beds', null), ('2018', 'EL007C1', 'Ioannina', 'ons_per_res_pop', null), ('2018', 'EL007C1', 'Ioannina', 'beds_per_1000res_pop', null), ('2018', 'EL008C1', 'Kavala', 'ons', null), ('2018', 'EL008C1', 'Kavala', 'beds', null), ('2018', 'EL008C1', 'Kavala', 'ons_per_res_pop', null), ('2018', 'EL008C1', 'Kavala', 'beds_per_1000res_pop', null), ('2018', 'EL009C1', 'Kalamata', 'ons', null), ('2018', 'EL009C1', 'Kalamata', 'beds', null), ('2018', 'EL009C1', 'Kalamata', 'ons_per_res_pop', null), ('2018', 'EL009C1', 'Kalamata', 'beds_per_1000res_pop', null), ('2018', 'ES', 'Spain', 'ons', null), ('2018', 'ES', 'Spain', 'beds', null), ('2018', 'ES', 'Spain', 'ons_per_res_pop', null), ('2018', 'ES', 'Spain', 'beds_per_1000res_pop', null), ('2018', 'ES001C1', 'Madrid', 'ons', null), ('2018', 'ES001C1', 'Madrid', 'beds', null), ('2018', 'ES001C1', 'Madrid', 'ons_per_res_pop', null), ('2018', 'ES001C1', 'Madrid', 'beds_per_1000res_pop', null), ('2018', 'ES002C1', 'Barcelona', 'ons', null), ('2018', 'ES002C1', 'Barcelona', 'beds', null), ('2018', 'ES002C1', 'Barcelona', 'ons_per_res_pop', null), ('2018', 'ES002C1', 'Barcelona', 'beds_per_1000res_pop', null), ('2018', 'ES003C1', 'Valencia', 'ons', null), ('2018', 'ES003C1', 'Valencia', 'beds', null), ('2018', 'ES003C1', 'Valencia', 'ons_per_res_pop', null), ('2018', 'ES003C1', 'Valencia', 'beds_per_1000res_pop', null), ('2018', 'ES004C1', 'Sevilla', 'ons', null), ('2018', 'ES004C1', 'Sevilla', 'beds', null), ('2018', 'ES004C1', 'Sevilla', 'ons_per_res_pop', null), ('2018', 'ES004C1', 'Sevilla', 'beds_per_1000res_pop', null), ('2018', 'ES005C1', 'Zaragoza', 'ons', null), ('2018', 'ES005C1', 'Zaragoza', 'beds', null), ('2018', 'ES005C1', 'Zaragoza', 'ons_per_res_pop', null), ('2018', 'ES005C1', 'Zaragoza', 'beds_per_1000res_pop', null), ('2018', 'ES006C1', 'Málaga', 'ons', null), ('2018', 'ES006C1', 'Málaga', 'beds', null), ('2018', 'ES006C1', 'Málaga', 'ons_per_res_pop', null), ('2018', 'ES006C1', 'Málaga', 'beds_per_1000res_pop', null), ('2018', 'ES007C1', 'Murcia', 'ons', null), ('2018', 'ES007C1', 'Murcia', 'beds', null), ('2018', 'ES007C1', 'Murcia', 'ons_per_res_pop', null), ('2018', 'ES007C1', 'Murcia', 'beds_per_1000res_pop', null), ('2018', 'ES008C1', 'Las Palmas', 'ons', null), ('2018', 'ES008C1', 'Las Palmas', 'beds', null), ('2018', 'ES008C1', 'Las Palmas', 'ons_per_res_pop', null), ('2018', 'ES008C1', 'Las Palmas', 'beds_per_1000res_pop', null), ('2018', 'ES009C1', 'Valladolid', 'ons', null), ('2018', 'ES009C1', 'Valladolid', 'beds', null), ('2018', 'ES009C1', 'Valladolid', 'ons_per_res_pop', null), ('2018', 'ES009C1', 'Valladolid', 'beds_per_1000res_pop', null), ('2018', 'ES010C1', 'Palma de Mallorca', 'ons', null), ('2018', 'ES010C1', 'Palma de Mallorca', 'beds', null), ('2018', 'ES010C1', 'Palma de Mallorca', 'ons_per_res_pop', null), ('2018', 'ES010C1', 'Palma de Mallorca', 'beds_per_1000res_pop', null), ('2018', 'ES011C1', 'Santiago de Compostela', 'ons', null), ('2018', 'ES011C1', 'Santiago de Compostela', 'beds', null), ('2018', 'ES011C1', 'Santiago de Compostela', 'ons_per_res_pop', null), ('2018', 'ES011C1', 'Santiago de Compostela', 'beds_per_1000res_pop', null), ('2018', 'ES012C1', 'Vitoria/Gasteiz', 'ons', null), ('2018', 'ES012C1', 'Vitoria/Gasteiz', 'beds', null), ('2018', 'ES012C1', 'Vitoria/Gasteiz', 'ons_per_res_pop', null), ('2018', 'ES012C1', 'Vitoria/Gasteiz', 'beds_per_1000res_pop', null), ('2018', 'ES013C1', 'Oviedo', 'ons', null), ('2018', 'ES013C1', 'Oviedo', 'beds', null), ('2018', 'ES013C1', 'Oviedo', 'ons_per_res_pop', null), ('2018', 'ES013C1', 'Oviedo', 'beds_per_1000res_pop', null), ('2018', 'ES014C1', 'Pamplona/Iruña', 'ons', null), ('2018', 'ES014C1', 'Pamplona/Iruña', 'beds', null), ('2018', 'ES014C1', 'Pamplona/Iruña', 'ons_per_res_pop', null), ('2018', 'ES014C1', 'Pamplona/Iruña', 'beds_per_1000res_pop', null), ('2018', 'ES015C1', 'Santander', 'ons', null), ('2018', 'ES015C1', 'Santander', 'beds', null), ('2018', 'ES015C1', 'Santander', 'ons_per_res_pop', null), ('2018', 'ES015C1', 'Santander', 'beds_per_1000res_pop', null), ('2018', 'ES016C1', 'Toledo', 'ons', null), ('2018', 'ES016C1', 'Toledo', 'beds', null), ('2018', 'ES016C1', 'Toledo', 'ons_per_res_pop', null), ('2018', 'ES016C1', 'Toledo', 'beds_per_1000res_pop', null), ('2018', 'ES017C1', 'Badajoz', 'ons', null), ('2018', 'ES017C1', 'Badajoz', 'beds', null), ('2018', 'ES017C1', 'Badajoz', 'ons_per_res_pop', null), ('2018', 'ES017C1', 'Badajoz', 'beds_per_1000res_pop', null), ('2018', 'ES018C1', 'Logroño', 'ons', null), ('2018', 'ES018C1', 'Logroño', 'beds', null), ('2018', 'ES018C1', 'Logroño', 'ons_per_res_pop', null), ('2018', 'ES018C1', 'Logroño', 'beds_per_1000res_pop', null), ('2018', 'ES019C1', 'Bilbao', 'ons', null), ('2018', 'ES019C1', 'Bilbao', 'beds', null), ('2018', 'ES019C1', 'Bilbao', 'ons_per_res_pop', null), ('2018', 'ES019C1', 'Bilbao', 'beds_per_1000res_pop', null), ('2018', 'ES020C1', 'Córdoba', 'ons', null), ('2018', 'ES020C1', 'Córdoba', 'beds', null), ('2018', 'ES020C1', 'Córdoba', 'ons_per_res_pop', null), ('2018', 'ES020C1', 'Córdoba', 'beds_per_1000res_pop', null), ('2018', 'ES021C1', 'Alicante/Alacant', 'ons', null), ('2018', 'ES021C1', 'Alicante/Alacant', 'beds', null), ('2018', 'ES021C1', 'Alicante/Alacant', 'ons_per_res_pop', null), ('2018', 'ES021C1', 'Alicante/Alacant', 'beds_per_1000res_pop', null), ('2018', 'ES022C1', 'Vigo', 'ons', null), ('2018', 'ES022C1', 'Vigo', 'beds', null), ('2018', 'ES022C1', 'Vigo', 'ons_per_res_pop', null), ('2018', 'ES022C1', 'Vigo', 'beds_per_1000res_pop', null), ('2018', 'ES023C1', 'Gijón', 'ons', null), ('2018', 'ES023C1', 'Gijón', 'beds', null), ('2018', 'ES023C1', 'Gijón', 'ons_per_res_pop', null), ('2018', 'ES023C1', 'Gijón', 'beds_per_1000res_pop', null), ('2018', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons', null), ('2018', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds', null), ('2018', 'ES024C1', 'L''Hospitalet de Llobregat', 'ons_per_res_pop', null), ('2018', 'ES024C1', 'L''Hospitalet de Llobregat', 'beds_per_1000res_pop', null), ('2018', 'ES025C1', 'Santa Cruz de Tenerife', 'ons', null), ('2018', 'ES025C1', 'Santa Cruz de Tenerife', 'beds', null), ('2018', 'ES025C1', 'Santa Cruz de Tenerife', 'ons_per_res_pop', null), ('2018', 'ES025C1', 'Santa Cruz de Tenerife', 'beds_per_1000res_pop', null), ('2018', 'ES026C1', 'A Coruña', 'ons', null), ('2018', 'ES026C1', 'A Coruña', 'beds', null), ('2018', 'ES026C1', 'A Coruña', 'ons_per_res_pop', null), ('2018', 'ES026C1', 'A Coruña', 'beds_per_1000res_pop', null), ('2018', 'ES027C1', 'Barakaldo', 'ons', null), ('2018', 'ES027C1', 'Barakaldo', 'beds', null), ('2018', 'ES027C1', 'Barakaldo', 'ons_per_res_pop', null), ('2018', 'ES027C1', 'Barakaldo', 'beds_per_1000res_pop', null), ('2018', 'ES028C1', 'Reus', 'ons', null), ('2018', 'ES028C1', 'Reus', 'beds', null), ('2018', 'ES028C1', 'Reus', 'ons_per_res_pop', null), ('2018', 'ES028C1', 'Reus', 'beds_per_1000res_pop', null), ('2018', 'ES029C1', 'Telde', 'ons', null), ('2018', 'ES029C1', 'Telde', 'beds', null), ('2018', 'ES029C1', 'Telde', 'ons_per_res_pop', null), ('2018', 'ES029C1', 'Telde', 'beds_per_1000res_pop', null), ('2018', 'ES030C1', 'Parla', 'ons', null), ('2018', 'ES030C1', 'Parla', 'beds', null), ('2018', 'ES030C1', 'Parla', 'ons_per_res_pop', null), ('2018', 'ES030C1', 'Parla', 'beds_per_1000res_pop', null), ('2018', 'ES031C1', 'Lugo', 'ons', null), ('2018', 'ES031C1', 'Lugo', 'beds', null), ('2018', 'ES031C1', 'Lugo', 'ons_per_res_pop', null), ('2018', 'ES031C1', 'Lugo', 'beds_per_1000res_pop', null), ('2018', 'ES032C1', 'San Fernando', 'ons', null), ('2018', 'ES032C1', 'San Fernando', 'beds', null), ('2018', 'ES032C1', 'San Fernando', 'ons_per_res_pop', null), ('2018', 'ES032C1', 'San Fernando', 'beds_per_1000res_pop', null), ('2018', 'ES033C1', 'Girona', 'ons', null), ('2018', 'ES033C1', 'Girona', 'beds', null), ('2018', 'ES033C1', 'Girona', 'ons_per_res_pop', null), ('2018', 'ES033C1', 'Girona', 'beds_per_1000res_pop', null), ('2018', 'ES034C1', 'Cáceres', 'ons', null), ('2018', 'ES034C1', 'Cáceres', 'beds', null), ('2018', 'ES034C1', 'Cáceres', 'ons_per_res_pop', null), ('2018', 'ES034C1', 'Cáceres', 'beds_per_1000res_pop', null), ('2018', 'ES035C1', 'Torrevieja', 'ons', null), ('2018', 'ES035C1', 'Torrevieja', 'beds', null), ('2018', 'ES035C1', 'Torrevieja', 'ons_per_res_pop', null), ('2018', 'ES035C1', 'Torrevieja', 'beds_per_1000res_pop', null), ('2018', 'ES036C1', 'Pozuelo de Alarcón', 'ons', null), ('2018', 'ES036C1', 'Pozuelo de Alarcón', 'beds', null), ('2018', 'ES036C1', 'Pozuelo de Alarcón', 'ons_per_res_pop', null), ('2018', 'ES036C1', 'Pozuelo de Alarcón', 'beds_per_1000res_pop', null), ('2018', 'ES037C1', 'Puerto de Santa María, El', 'ons', null), ('2018', 'ES037C1', 'Puerto de Santa María, El', 'beds', null), ('2018', 'ES037C1', 'Puerto de Santa María, El', 'ons_per_res_pop', null), ('2018', 'ES037C1', 'Puerto de Santa María, El', 'beds_per_1000res_pop', null), ('2018', 'ES038C1', 'Coslada', 'ons', null), ('2018', 'ES038C1', 'Coslada', 'beds', null), ('2018', 'ES038C1', 'Coslada', 'ons_per_res_pop', null), ('2018', 'ES038C1', 'Coslada', 'beds_per_1000res_pop', null), ('2018', 'ES039C1', 'Avilés', 'ons', null), ('2018', 'ES039C1', 'Avilés', 'beds', null), ('2018', 'ES039C1', 'Avilés', 'ons_per_res_pop', null), ('2018', 'ES039C1', 'Avilés', 'beds_per_1000res_pop', null), ('2018', 'ES040C1', 'Talavera de la Reina', 'ons', null), ('2018', 'ES040C1', 'Talavera de la Reina', 'beds', null), ('2018', 'ES040C1', 'Talavera de la Reina', 'ons_per_res_pop', null), ('2018', 'ES040C1', 'Talavera de la Reina', 'beds_per_1000res_pop', null), ('2018', 'ES041C1', 'Palencia', 'ons', null), ('2018', 'ES041C1', 'Palencia', 'beds', null), ('2018', 'ES041C1', 'Palencia', 'ons_per_res_pop', null), ('2018', 'ES041C1', 'Palencia', 'beds_per_1000res_pop', null), ('2018', 'ES042C1', 'Sant Boi de Llobregat', 'ons', null), ('2018', 'ES042C1', 'Sant Boi de Llobregat', 'beds', null), ('2018', 'ES042C1', 'Sant Boi de Llobregat', 'ons_per_res_pop', null), ('2018', 'ES042C1', 'Sant Boi de Llobregat', 'beds_per_1000res_pop', null), ('2018', 'ES043C1', 'Ferrol', 'ons', null), ('2018', 'ES043C1', 'Ferrol', 'beds', null), ('2018', 'ES043C1', 'Ferrol', 'ons_per_res_pop', null), ('2018', 'ES043C1', 'Ferrol', 'beds_per_1000res_pop', null), ('2018', 'ES044C1', 'Pontevedra', 'ons', null), ('2018', 'ES044C1', 'Pontevedra', 'beds', null), ('2018', 'ES044C1', 'Pontevedra', 'ons_per_res_pop', null), ('2018', 'ES044C1', 'Pontevedra', 'beds_per_1000res_pop', null), ('2018', 'ES045C1', 'Ceuta', 'ons', null), ('2018', 'ES045C1', 'Ceuta', 'beds', null), ('2018', 'ES045C1', 'Ceuta', 'ons_per_res_pop', null), ('2018', 'ES045C1', 'Ceuta', 'beds_per_1000res_pop', null), ('2018', 'ES046C1', 'Gandia', 'ons', null), ('2018', 'ES046C1', 'Gandia', 'beds', null), ('2018', 'ES046C1', 'Gandia', 'ons_per_res_pop', null), ('2018', 'ES046C1', 'Gandia', 'beds_per_1000res_pop', null), ('2018', 'ES047C1', 'Rozas de Madrid, Las', 'ons', null), ('2018', 'ES047C1', 'Rozas de Madrid, Las', 'beds', null), ('2018', 'ES047C1', 'Rozas de Madrid, Las', 'ons_per_res_pop', null), ('2018', 'ES047C1', 'Rozas de Madrid, Las', 'beds_per_1000res_pop', null), ('2018', 'ES048C1', 'Guadalajara', 'ons', null), ('2018', 'ES048C1', 'Guadalajara', 'beds', null), ('2018', 'ES048C1', 'Guadalajara', 'ons_per_res_pop', null), ('2018', 'ES048C1', 'Guadalajara', 'beds_per_1000res_pop', null), ('2018', 'ES049C1', 'Sant Cugat del Vallès', 'ons', null), ('2018', 'ES049C1', 'Sant Cugat del Vallès', 'beds', null), ('2018', 'ES049C1', 'Sant Cugat del Vallès', 'ons_per_res_pop', null), ('2018', 'ES049C1', 'Sant Cugat del Vallès', 'beds_per_1000res_pop', null), ('2018', 'ES050C1', 'Manresa', 'ons', null), ('2018', 'ES050C1', 'Manresa', 'beds', null), ('2018', 'ES050C1', 'Manresa', 'ons_per_res_pop', null), ('2018', 'ES050C1', 'Manresa', 'beds_per_1000res_pop', null), ('2018', 'ES051C1', 'Getxo', 'ons', null), ('2018', 'ES051C1', 'Getxo', 'beds', null), ('2018', 'ES051C1', 'Getxo', 'ons_per_res_pop', null), ('2018', 'ES051C1', 'Getxo', 'beds_per_1000res_pop', null), ('2018', 'ES052C1', 'Rubí', 'ons', null), ('2018', 'ES052C1', 'Rubí', 'beds', null), ('2018', 'ES052C1', 'Rubí', 'ons_per_res_pop', null), ('2018', 'ES052C1', 'Rubí', 'beds_per_1000res_pop', null), ('2018', 'ES053C1', 'Ciudad Real', 'ons', null), ('2018', 'ES053C1', 'Ciudad Real', 'beds', null), ('2018', 'ES053C1', 'Ciudad Real', 'ons_per_res_pop', null), ('2018', 'ES053C1', 'Ciudad Real', 'beds_per_1000res_pop', null), ('2018', 'ES054C1', 'Benidorm', 'ons', null), ('2018', 'ES054C1', 'Benidorm', 'beds', null), ('2018', 'ES054C1', 'Benidorm', 'ons_per_res_pop', null), ('2018', 'ES054C1', 'Benidorm', 'beds_per_1000res_pop', null), ('2018', 'ES055C1', 'Melilla', 'ons', null), ('2018', 'ES055C1', 'Melilla', 'beds', null), ('2018', 'ES055C1', 'Melilla', 'ons_per_res_pop', null), ('2018', 'ES055C1', 'Melilla', 'beds_per_1000res_pop', null), ('2018', 'ES056C1', 'Viladecans', 'ons', null), ('2018', 'ES056C1', 'Viladecans', 'beds', null), ('2018', 'ES056C1', 'Viladecans', 'ons_per_res_pop', null), ('2018', 'ES056C1', 'Viladecans', 'beds_per_1000res_pop', null), ('2018', 'ES057C1', 'Ponferrada', 'ons', null), ('2018', 'ES057C1', 'Ponferrada', 'beds', null), ('2018', 'ES057C1', 'Ponferrada', 'ons_per_res_pop', null), ('2018', 'ES057C1', 'Ponferrada', 'beds_per_1000res_pop', null), ('2018', 'ES058C1', 'San Sebastián de los Reyes', 'ons', null), ('2018', 'ES058C1', 'San Sebastián de los Reyes', 'beds', null), ('2018', 'ES058C1', 'San Sebastián de los Reyes', 'ons_per_res_pop', null), ('2018', 'ES058C1', 'San Sebastián de los Reyes', 'beds_per_1000res_pop', null), ('2018', 'ES059C1', 'Zamora', 'ons', null), ('2018', 'ES059C1', 'Zamora', 'beds', null), ('2018', 'ES059C1', 'Zamora', 'ons_per_res_pop', null), ('2018', 'ES059C1', 'Zamora', 'beds_per_1000res_pop', null), ('2018', 'ES060C1', 'Fuengirola', 'ons', null), ('2018', 'ES060C1', 'Fuengirola', 'beds', null), ('2018', 'ES060C1', 'Fuengirola', 'ons_per_res_pop', null), ('2018', 'ES060C1', 'Fuengirola', 'beds_per_1000res_pop', null), ('2018', 'ES061C1', 'Cerdanyola del Vallès', 'ons', null), ('2018', 'ES061C1', 'Cerdanyola del Vallès', 'beds', null), ('2018', 'ES061C1', 'Cerdanyola del Vallès', 'ons_per_res_pop', null), ('2018', 'ES061C1', 'Cerdanyola del Vallès', 'beds_per_1000res_pop', null), ('2018', 'ES062C1', 'Sanlúcar de Barrameda', 'ons', null), ('2018', 'ES062C1', 'Sanlúcar de Barrameda', 'beds', null), ('2018', 'ES062C1', 'Sanlúcar de Barrameda', 'ons_per_res_pop', null), ('2018', 'ES062C1', 'Sanlúcar de Barrameda', 'beds_per_1000res_pop', null), ('2018', 'ES063C1', 'Vilanova i la Geltrú', 'ons', null), ('2018', 'ES063C1', 'Vilanova i la Geltrú', 'beds', null), ('2018', 'ES063C1', 'Vilanova i la Geltrú', 'ons_per_res_pop', null), ('2018', 'ES063C1', 'Vilanova i la Geltrú', 'beds_per_1000res_pop', null), ('2018', 'ES064C1', 'Prat de Llobregat, El', 'ons', null), ('2018', 'ES064C1', 'Prat de Llobregat, El', 'beds', null), ('2018', 'ES064C1', 'Prat de Llobregat, El', 'ons_per_res_pop', null), ('2018', 'ES064C1', 'Prat de Llobregat, El', 'beds_per_1000res_pop', null), ('2018', 'ES065C1', 'Línea de la Concepción, La', 'ons', null), ('2018', 'ES065C1', 'Línea de la Concepción, La', 'beds', null), ('2018', 'ES065C1', 'Línea de la Concepción, La', 'ons_per_res_pop', null), ('2018', 'ES065C1', 'Línea de la Concepción, La', 'beds_per_1000res_pop', null), ('2018', 'ES066C1', 'Cornellà de Llobregat', 'ons', null), ('2018', 'ES066C1', 'Cornellà de Llobregat', 'beds', null), ('2018', 'ES066C1', 'Cornellà de Llobregat', 'ons_per_res_pop', null), ('2018', 'ES066C1', 'Cornellà de Llobregat', 'beds_per_1000res_pop', null), ('2018', 'ES067C1', 'Majadahonda', 'ons', null), ('2018', 'ES067C1', 'Majadahonda', 'beds', null), ('2018', 'ES067C1', 'Majadahonda', 'ons_per_res_pop', null), ('2018', 'ES067C1', 'Majadahonda', 'beds_per_1000res_pop', null), ('2018', 'ES068C1', 'Torremolinos', 'ons', null), ('2018', 'ES068C1', 'Torremolinos', 'beds', null), ('2018', 'ES068C1', 'Torremolinos', 'ons_per_res_pop', null), ('2018', 'ES068C1', 'Torremolinos', 'beds_per_1000res_pop', null), ('2018', 'ES069C1', 'Castelldefels', 'ons', null), ('2018', 'ES069C1', 'Castelldefels', 'beds', null), ('2018', 'ES069C1', 'Castelldefels', 'ons_per_res_pop', null), ('2018', 'ES069C1', 'Castelldefels', 'beds_per_1000res_pop', null), ('2018', 'ES070C1', 'Irun', 'ons', null), ('2018', 'ES070C1', 'Irun', 'beds', null), ('2018', 'ES070C1', 'Irun', 'ons_per_res_pop', null), ('2018', 'ES070C1', 'Irun', 'beds_per_1000res_pop', null), ('2018', 'ES071C1', 'Granollers', 'ons', null), ('2018', 'ES071C1', 'Granollers', 'beds', null), ('2018', 'ES071C1', 'Granollers', 'ons_per_res_pop', null), ('2018', 'ES071C1', 'Granollers', 'beds_per_1000res_pop', null), ('2018', 'ES072C1', 'Arrecife', 'ons', null), ('2018', 'ES072C1', 'Arrecife', 'beds', null), ('2018', 'ES072C1', 'Arrecife', 'ons_per_res_pop', null), ('2018', 'ES072C1', 'Arrecife', 'beds_per_1000res_pop', null), ('2018', 'ES073C1', 'Elda', 'ons', null), ('2018', 'ES073C1', 'Elda', 'beds', null), ('2018', 'ES073C1', 'Elda', 'ons_per_res_pop', null), ('2018', 'ES073C1', 'Elda', 'beds_per_1000res_pop', null), ('2018', 'ES074C1', 'Santa Lucía de Tirajana', 'ons', null), ('2018', 'ES074C1', 'Santa Lucía de Tirajana', 'beds', null), ('2018', 'ES074C1', 'Santa Lucía de Tirajana', 'ons_per_res_pop', null), ('2018', 'ES074C1', 'Santa Lucía de Tirajana', 'beds_per_1000res_pop', null), ('2018', 'ES075C1', 'Mollet del Vallès', 'ons', null), ('2018', 'ES075C1', 'Mollet del Vallès', 'beds', null), ('2018', 'ES075C1', 'Mollet del Vallès', 'ons_per_res_pop', null), ('2018', 'ES075C1', 'Mollet del Vallès', 'beds_per_1000res_pop', null), ('2018', 'ES501C1', 'Granada', 'ons', null), ('2018', 'ES501C1', 'Granada', 'beds', null), ('2018', 'ES501C1', 'Granada', 'ons_per_res_pop', null), ('2018', 'ES501C1', 'Granada', 'beds_per_1000res_pop', null), ('2018', 'ES503C1', 'Badalona', 'ons', null), ('2018', 'ES503C1', 'Badalona', 'beds', null), ('2018', 'ES503C1', 'Badalona', 'ons_per_res_pop', null), ('2018', 'ES503C1', 'Badalona', 'beds_per_1000res_pop', null), ('2018', 'ES504C1', 'Móstoles', 'ons', null), ('2018', 'ES504C1', 'Móstoles', 'beds', null), ('2018', 'ES504C1', 'Móstoles', 'ons_per_res_pop', null), ('2018', 'ES504C1', 'Móstoles', 'beds_per_1000res_pop', null), ('2018', 'ES505C1', 'Elche/Elx', 'ons', null), ('2018', 'ES505C1', 'Elche/Elx', 'beds', null), ('2018', 'ES505C1', 'Elche/Elx', 'ons_per_res_pop', null), ('2018', 'ES505C1', 'Elche/Elx', 'beds_per_1000res_pop', null), ('2018', 'ES506C1', 'Cartagena', 'ons', null), ('2018', 'ES506C1', 'Cartagena', 'beds', null), ('2018', 'ES506C1', 'Cartagena', 'ons_per_res_pop', null), ('2018', 'ES506C1', 'Cartagena', 'beds_per_1000res_pop', null), ('2018', 'ES507C1', 'Sabadell', 'ons', null), ('2018', 'ES507C1', 'Sabadell', 'beds', null), ('2018', 'ES507C1', 'Sabadell', 'ons_per_res_pop', null), ('2018', 'ES507C1', 'Sabadell', 'beds_per_1000res_pop', null), ('2018', 'ES508C1', 'Jerez de la Frontera', 'ons', null), ('2018', 'ES508C1', 'Jerez de la Frontera', 'beds', null), ('2018', 'ES508C1', 'Jerez de la Frontera', 'ons_per_res_pop', null), ('2018', 'ES508C1', 'Jerez de la Frontera', 'beds_per_1000res_pop', null), ('2018', 'ES509C1', 'Fuenlabrada', 'ons', null), ('2018', 'ES509C1', 'Fuenlabrada', 'beds', null), ('2018', 'ES509C1', 'Fuenlabrada', 'ons_per_res_pop', null), ('2018', 'ES509C1', 'Fuenlabrada', 'beds_per_1000res_pop', null), ('2018', 'ES510C1', 'San Sebastián/Donostia', 'ons', null), ('2018', 'ES510C1', 'San Sebastián/Donostia', 'beds', null), ('2018', 'ES510C1', 'San Sebastián/Donostia', 'ons_per_res_pop', null), ('2018', 'ES510C1', 'San Sebastián/Donostia', 'beds_per_1000res_pop', null), ('2018', 'ES511C1', 'Alcalá de Henares', 'ons', null), ('2018', 'ES511C1', 'Alcalá de Henares', 'beds', null), ('2018', 'ES511C1', 'Alcalá de Henares', 'ons_per_res_pop', null), ('2018', 'ES511C1', 'Alcalá de Henares', 'beds_per_1000res_pop', null), ('2018', 'ES512C1', 'Terrassa', 'ons', null), ('2018', 'ES512C1', 'Terrassa', 'beds', null), ('2018', 'ES512C1', 'Terrassa', 'ons_per_res_pop', null), ('2018', 'ES512C1', 'Terrassa', 'beds_per_1000res_pop', null), ('2018', 'ES513C1', 'Leganés', 'ons', null), ('2018', 'ES513C1', 'Leganés', 'beds', null), ('2018', 'ES513C1', 'Leganés', 'ons_per_res_pop', null), ('2018', 'ES513C1', 'Leganés', 'beds_per_1000res_pop', null), ('2018', 'ES514C1', 'Almería', 'ons', null), ('2018', 'ES514C1', 'Almería', 'beds', null), ('2018', 'ES514C1', 'Almería', 'ons_per_res_pop', null), ('2018', 'ES514C1', 'Almería', 'beds_per_1000res_pop', null), ('2018', 'ES515C1', 'Burgos', 'ons', null), ('2018', 'ES515C1', 'Burgos', 'beds', null), ('2018', 'ES515C1', 'Burgos', 'ons_per_res_pop', null), ('2018', 'ES515C1', 'Burgos', 'beds_per_1000res_pop', null), ('2018', 'ES516C1', 'Salamanca', 'ons', null), ('2018', 'ES516C1', 'Salamanca', 'beds', null), ('2018', 'ES516C1', 'Salamanca', 'ons_per_res_pop', null), ('2018', 'ES516C1', 'Salamanca', 'beds_per_1000res_pop', null), ('2018', 'ES517C1', 'Alcorcón', 'ons', null), ('2018', 'ES517C1', 'Alcorcón', 'beds', null), ('2018', 'ES517C1', 'Alcorcón', 'ons_per_res_pop', null), ('2018', 'ES517C1', 'Alcorcón', 'beds_per_1000res_pop', null), ('2018', 'ES518C1', 'Getafe', 'ons', null), ('2018', 'ES518C1', 'Getafe', 'beds', null), ('2018', 'ES518C1', 'Getafe', 'ons_per_res_pop', null), ('2018', 'ES518C1', 'Getafe', 'beds_per_1000res_pop', null), ('2018', 'ES519C1', 'Albacete', 'ons', null), ('2018', 'ES519C1', 'Albacete', 'beds', null), ('2018', 'ES519C1', 'Albacete', 'ons_per_res_pop', null), ('2018', 'ES519C1', 'Albacete', 'beds_per_1000res_pop', null), ('2018', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons', null), ('2018', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds', null), ('2018', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'ons_per_res_pop', null), ('2018', 'ES520C1', 'Castellón de la Plana/Castelló de la Plana', 'beds_per_1000res_pop', null), ('2018', 'ES521C1', 'Huelva', 'ons', null), ('2018', 'ES521C1', 'Huelva', 'beds', null), ('2018', 'ES521C1', 'Huelva', 'ons_per_res_pop', null), ('2018', 'ES521C1', 'Huelva', 'beds_per_1000res_pop', null), ('2018', 'ES522C1', 'Cádiz', 'ons', null), ('2018', 'ES522C1', 'Cádiz', 'beds', null), ('2018', 'ES522C1', 'Cádiz', 'ons_per_res_pop', null), ('2018', 'ES522C1', 'Cádiz', 'beds_per_1000res_pop', null), ('2018', 'ES523C1', 'León', 'ons', null), ('2018', 'ES523C1', 'León', 'beds', null), ('2018', 'ES523C1', 'León', 'ons_per_res_pop', null), ('2018', 'ES523C1', 'León', 'beds_per_1000res_pop', null), ('2018', 'ES524C1', 'San Cristóbal de la Laguna', 'ons', null), ('2018', 'ES524C1', 'San Cristóbal de la Laguna', 'beds', null), ('2018', 'ES524C1', 'San Cristóbal de la Laguna', 'ons_per_res_pop', null), ('2018', 'ES524C1', 'San Cristóbal de la Laguna', 'beds_per_1000res_pop', null), ('2018', 'ES525C1', 'Tarragona', 'ons', null), ('2018', 'ES525C1', 'Tarragona', 'beds', null), ('2018', 'ES525C1', 'Tarragona', 'ons_per_res_pop', null), ('2018', 'ES525C1', 'Tarragona', 'beds_per_1000res_pop', null), ('2018', 'ES526C1', 'Santa Coloma de Gramenet', 'ons', null), ('2018', 'ES526C1', 'Santa Coloma de Gramenet', 'beds', null), ('2018', 'ES526C1', 'Santa Coloma de Gramenet', 'ons_per_res_pop', null), ('2018', 'ES526C1', 'Santa Coloma de Gramenet', 'beds_per_1000res_pop', null), ('2018', 'ES527C1', 'Jaén', 'ons', null), ('2018', 'ES527C1', 'Jaén', 'beds', null), ('2018', 'ES527C1', 'Jaén', 'ons_per_res_pop', null), ('2018', 'ES527C1', 'Jaén', 'beds_per_1000res_pop', null), ('2018', 'ES528C1', 'Lleida', 'ons', null), ('2018', 'ES528C1', 'Lleida', 'beds', null), ('2018', 'ES528C1', 'Lleida', 'ons_per_res_pop', null), ('2018', 'ES528C1', 'Lleida', 'beds_per_1000res_pop', null), ('2018', 'ES529C1', 'Ourense', 'ons', null), ('2018', 'ES529C1', 'Ourense', 'beds', null), ('2018', 'ES529C1', 'Ourense', 'ons_per_res_pop', null), ('2018', 'ES529C1', 'Ourense', 'beds_per_1000res_pop', null), ('2018', 'ES530C1', 'Mataró', 'ons', null), ('2018', 'ES530C1', 'Mataró', 'beds', null), ('2018', 'ES530C1', 'Mataró', 'ons_per_res_pop', null), ('2018', 'ES530C1', 'Mataró', 'beds_per_1000res_pop', null), ('2018', 'ES531C1', 'Dos Hermanas', 'ons', null), ('2018', 'ES531C1', 'Dos Hermanas', 'beds', null), ('2018', 'ES531C1', 'Dos Hermanas', 'ons_per_res_pop', null), ('2018', 'ES531C1', 'Dos Hermanas', 'beds_per_1000res_pop', null), ('2018', 'ES532C1', 'Algeciras', 'ons', null), ('2018', 'ES532C1', 'Algeciras', 'beds', null), ('2018', 'ES532C1', 'Algeciras', 'ons_per_res_pop', null), ('2018', 'ES532C1', 'Algeciras', 'beds_per_1000res_pop', null), ('2018', 'ES533C1', 'Marbella', 'ons', null), ('2018', 'ES533C1', 'Marbella', 'beds', null), ('2018', 'ES533C1', 'Marbella', 'ons_per_res_pop', null), ('2018', 'ES533C1', 'Marbella', 'beds_per_1000res_pop', null), ('2018', 'ES534C1', 'Torrejón de Ardoz', 'ons', null), ('2018', 'ES534C1', 'Torrejón de Ardoz', 'beds', null), ('2018', 'ES534C1', 'Torrejón de Ardoz', 'ons_per_res_pop', null), ('2018', 'ES534C1', 'Torrejón de Ardoz', 'beds_per_1000res_pop', null), ('2018', 'ES535C1', 'Alcobendas', 'ons', null), ('2018', 'ES535C1', 'Alcobendas', 'beds', null), ('2018', 'ES535C1', 'Alcobendas', 'ons_per_res_pop', null), ('2018', 'ES535C1', 'Alcobendas', 'beds_per_1000res_pop', null), ('2018', 'ES536C1', 'Alcalá de Guadaíra', 'ons', null), ('2018', 'ES536C1', 'Alcalá de Guadaíra', 'beds', null), ('2018', 'ES536C1', 'Alcalá de Guadaíra', 'ons_per_res_pop', null), ('2018', 'ES536C1', 'Alcalá de Guadaíra', 'beds_per_1000res_pop', null), ('2018', 'ES537C1', 'Alcoy', 'ons', null), ('2018', 'ES537C1', 'Alcoy', 'beds', null), ('2018', 'ES537C1', 'Alcoy', 'ons_per_res_pop', null), ('2018', 'ES537C1', 'Alcoy', 'beds_per_1000res_pop', null), ('2018', 'ES538C1', 'Ávila', 'ons', null), ('2018', 'ES538C1', 'Ávila', 'beds', null), ('2018', 'ES538C1', 'Ávila', 'ons_per_res_pop', null), ('2018', 'ES538C1', 'Ávila', 'beds_per_1000res_pop', null), ('2018', 'ES539C1', 'Benalmádena', 'ons', null), ('2018', 'ES539C1', 'Benalmádena', 'beds', null), ('2018', 'ES539C1', 'Benalmádena', 'ons_per_res_pop', null), ('2018', 'ES539C1', 'Benalmádena', 'beds_per_1000res_pop', null), ('2018', 'ES540C1', 'Chiclana de la Frontera', 'ons', null), ('2018', 'ES540C1', 'Chiclana de la Frontera', 'beds', null), ('2018', 'ES540C1', 'Chiclana de la Frontera', 'ons_per_res_pop', null), ('2018', 'ES540C1', 'Chiclana de la Frontera', 'beds_per_1000res_pop', null), ('2018', 'ES541C1', 'Collado Villalba', 'ons', null), ('2018', 'ES541C1', 'Collado Villalba', 'beds', null), ('2018', 'ES541C1', 'Collado Villalba', 'ons_per_res_pop', null), ('2018', 'ES541C1', 'Collado Villalba', 'beds_per_1000res_pop', null), ('2018', 'ES542C1', 'Cuenca', 'ons', null), ('2018', 'ES542C1', 'Cuenca', 'beds', null), ('2018', 'ES542C1', 'Cuenca', 'ons_per_res_pop', null), ('2018', 'ES542C1', 'Cuenca', 'beds_per_1000res_pop', null), ('2018', 'ES543C1', 'Eivissa', 'ons', null), ('2018', 'ES543C1', 'Eivissa', 'beds', null), ('2018', 'ES543C1', 'Eivissa', 'ons_per_res_pop', null), ('2018', 'ES543C1', 'Eivissa', 'beds_per_1000res_pop', null), ('2018', 'ES544C1', 'Linares', 'ons', null), ('2018', 'ES544C1', 'Linares', 'beds', null), ('2018', 'ES544C1', 'Linares', 'ons_per_res_pop', null), ('2018', 'ES544C1', 'Linares', 'beds_per_1000res_pop', null), ('2018', 'ES545C1', 'Lorca', 'ons', null), ('2018', 'ES545C1', 'Lorca', 'beds', null), ('2018', 'ES545C1', 'Lorca', 'ons_per_res_pop', null), ('2018', 'ES545C1', 'Lorca', 'beds_per_1000res_pop', null), ('2018', 'ES546C1', 'Mérida', 'ons', null), ('2018', 'ES546C1', 'Mérida', 'beds', null), ('2018', 'ES546C1', 'Mérida', 'ons_per_res_pop', null), ('2018', 'ES546C1', 'Mérida', 'beds_per_1000res_pop', null), ('2018', 'ES547C1', 'Sagunto', 'ons', null), ('2018', 'ES547C1', 'Sagunto', 'beds', null), ('2018', 'ES547C1', 'Sagunto', 'ons_per_res_pop', null), ('2018', 'ES547C1', 'Sagunto', 'beds_per_1000res_pop', null), ('2018', 'ES548C1', 'Torrelavega', 'ons', null), ('2018', 'ES548C1', 'Torrelavega', 'beds', null), ('2018', 'ES548C1', 'Torrelavega', 'ons_per_res_pop', null), ('2018', 'ES548C1', 'Torrelavega', 'beds_per_1000res_pop', null), ('2018', 'ES549C1', 'Valdemoro', 'ons', null), ('2018', 'ES549C1', 'Valdemoro', 'beds', null), ('2018', 'ES549C1', 'Valdemoro', 'ons_per_res_pop', null), ('2018', 'ES549C1', 'Valdemoro', 'beds_per_1000res_pop', null), ('2018', 'ES550C1', 'Puerto de la Cruz', 'ons', null), ('2018', 'ES550C1', 'Puerto de la Cruz', 'beds', null), ('2018', 'ES550C1', 'Puerto de la Cruz', 'ons_per_res_pop', null), ('2018', 'ES550C1', 'Puerto de la Cruz', 'beds_per_1000res_pop', null), ('2018', 'ES551C1', 'Paterna', 'ons', null), ('2018', 'ES551C1', 'Paterna', 'beds', null), ('2018', 'ES551C1', 'Paterna', 'ons_per_res_pop', null), ('2018', 'ES551C1', 'Paterna', 'beds_per_1000res_pop', null), ('2018', 'ES552C1', 'Igualada', 'ons', null), ('2018', 'ES552C1', 'Igualada', 'beds', null), ('2018', 'ES552C1', 'Igualada', 'ons_per_res_pop', null), ('2018', 'ES552C1', 'Igualada', 'beds_per_1000res_pop', null), ('2018', 'ES553C1', 'Torrent', 'ons', null), ('2018', 'ES553C1', 'Torrent', 'beds', null), ('2018', 'ES553C1', 'Torrent', 'ons_per_res_pop', null), ('2018', 'ES553C1', 'Torrent', 'beds_per_1000res_pop', null), ('2018', 'ES554C1', 'Mislata', 'ons', null), ('2018', 'ES554C1', 'Mislata', 'beds', null), ('2018', 'ES554C1', 'Mislata', 'ons_per_res_pop', null), ('2018', 'ES554C1', 'Mislata', 'beds_per_1000res_pop', null), ('2018', 'ES555C1', 'Rivas-Vaciamadrid', 'ons', null), ('2018', 'ES555C1', 'Rivas-Vaciamadrid', 'beds', null), ('2018', 'ES555C1', 'Rivas-Vaciamadrid', 'ons_per_res_pop', null), ('2018', 'ES555C1', 'Rivas-Vaciamadrid', 'beds_per_1000res_pop', null), ('2018', 'ES556C1', 'Santurtzi', 'ons', null), ('2018', 'ES556C1', 'Santurtzi', 'beds', null), ('2018', 'ES556C1', 'Santurtzi', 'ons_per_res_pop', null), ('2018', 'ES556C1', 'Santurtzi', 'beds_per_1000res_pop', null), ('2018', 'ES557C1', 'Esplugues de Llobregat', 'ons', null), ('2018', 'ES557C1', 'Esplugues de Llobregat', 'beds', null), ('2018', 'ES557C1', 'Esplugues de Llobregat', 'ons_per_res_pop', null), ('2018', 'ES557C1', 'Esplugues de Llobregat', 'beds_per_1000res_pop', null), ('2018', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons', null), ('2018', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds', null), ('2018', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'ons_per_res_pop', null), ('2018', 'ES558C1', 'San Vicente del Raspeig/Sant Vicent del Raspeig', 'beds_per_1000res_pop', null), ('2018', 'FR', 'France', 'ons', '321580000'), ('2018', 'FR', 'France', 'beds', '4996981'), ('2018', 'FR', 'France', 'ons_per_res_pop', null), ('2018', 'FR', 'France', 'beds_per_1000res_pop', null), ('2018', 'FR001C1', 'Paris', 'ons', '17955306'), ('2018', 'FR001C1', 'Paris', 'beds', '315494'), ('2018', 'FR001C1', 'Paris', 'ons_per_res_pop', null), ('2018', 'FR001C1', 'Paris', 'beds_per_1000res_pop', null), ('2018', 'FR003C2', 'Lyon', 'ons', '3029347'), ('2018', 'FR003C2', 'Lyon', 'beds', '31293'), ('2018', 'FR003C2', 'Lyon', 'ons_per_res_pop', null), ('2018', 'FR003C2', 'Lyon', 'beds_per_1000res_pop', null), ('2018', 'FR004C2', 'Toulouse', 'ons', '2633826'), ('2018', 'FR004C2', 'Toulouse', 'beds', '23435'), ('2018', 'FR004C2', 'Toulouse', 'ons_per_res_pop', null), ('2018', 'FR004C2', 'Toulouse', 'beds_per_1000res_pop', null), ('2018', 'FR006C2', 'Strasbourg', 'ons', '1570430'), ('2018', 'FR006C2', 'Strasbourg', 'beds', '16560'), ('2018', 'FR006C2', 'Strasbourg', 'ons_per_res_pop', null), ('2018', 'FR006C2', 'Strasbourg', 'beds_per_1000res_pop', null), ('2018', 'FR007C1', 'Bordeaux', 'ons', '3237180'), ('2018', 'FR007C1', 'Bordeaux', 'beds', '25750'), ('2018', 'FR007C1', 'Bordeaux', 'ons_per_res_pop', null), ('2018', 'FR007C1', 'Bordeaux', 'beds_per_1000res_pop', null), ('2018', 'FR008C1', 'Nantes', 'ons', '1751304'), ('2018', 'FR008C1', 'Nantes', 'beds', '14160'), ('2018', 'FR008C1', 'Nantes', 'ons_per_res_pop', null), ('2018', 'FR008C1', 'Nantes', 'beds_per_1000res_pop', null), ('2018', 'FR009C1', 'Lille', 'ons', '810452'), ('2018', 'FR009C1', 'Lille', 'beds', '16146'), ('2018', 'FR009C1', 'Lille', 'ons_per_res_pop', null), ('2018', 'FR009C1', 'Lille', 'beds_per_1000res_pop', null), ('2018', 'FR010C1', 'Montpellier', 'ons', '842937'), ('2018', 'FR010C1', 'Montpellier', 'beds', '8870'), ('2018', 'FR010C1', 'Montpellier', 'ons_per_res_pop', null), ('2018', 'FR010C1', 'Montpellier', 'beds_per_1000res_pop', null), ('2018', 'FR011C1', 'Saint-Etienne', 'ons', '202222'), ('2018', 'FR011C1', 'Saint-Etienne', 'beds', '3384'), ('2018', 'FR011C1', 'Saint-Etienne', 'ons_per_res_pop', null), ('2018', 'FR011C1', 'Saint-Etienne', 'beds_per_1000res_pop', null), ('2018', 'FR012C1', 'Le Havre', 'ons', '176006'), ('2018', 'FR012C1', 'Le Havre', 'beds', '4300'), ('2018', 'FR012C1', 'Le Havre', 'ons_per_res_pop', null), ('2018', 'FR012C1', 'Le Havre', 'beds_per_1000res_pop', null), ('2018', 'FR013C2', 'Rennes', 'ons', '758935'), ('2018', 'FR013C2', 'Rennes', 'beds', '6369'), ('2018', 'FR013C2', 'Rennes', 'ons_per_res_pop', null), ('2018', 'FR013C2', 'Rennes', 'beds_per_1000res_pop', null), ('2018', 'FR014C2', 'Amiens', 'ons', '204480'), ('2018', 'FR014C2', 'Amiens', 'beds', '2796'), ('2018', 'FR014C2', 'Amiens', 'ons_per_res_pop', null), ('2018', 'FR014C2', 'Amiens', 'beds_per_1000res_pop', null), ('2018', 'FR016C1', 'Nancy', 'ons', '441009'), ('2018', 'FR016C1', 'Nancy', 'beds', '5202'), ('2018', 'FR016C1', 'Nancy', 'ons_per_res_pop', null), ('2018', 'FR016C1', 'Nancy', 'beds_per_1000res_pop', null), ('2018', 'FR017C2', 'Metz', 'ons', '245711'), ('2018', 'FR017C2', 'Metz', 'beds', '4597'), ('2018', 'FR017C2', 'Metz', 'ons_per_res_pop', null), ('2018', 'FR017C2', 'Metz', 'beds_per_1000res_pop', null), ('2018', 'FR018C1', 'Reims', 'ons', '507179'), ('2018', 'FR018C1', 'Reims', 'beds', '6640'), ('2018', 'FR018C1', 'Reims', 'ons_per_res_pop', null), ('2018', 'FR018C1', 'Reims', 'beds_per_1000res_pop', null), ('2018', 'FR019C1', 'Orléans', 'ons', '255691'), ('2018', 'FR019C1', 'Orléans', 'beds', '4412'), ('2018', 'FR019C1', 'Orléans', 'ons_per_res_pop', null), ('2018', 'FR019C1', 'Orléans', 'beds_per_1000res_pop', null), ('2018', 'FR020C2', 'Dijon', 'ons', '350810'), ('2018', 'FR020C2', 'Dijon', 'beds', '6670'), ('2018', 'FR020C2', 'Dijon', 'ons_per_res_pop', null), ('2018', 'FR020C2', 'Dijon', 'beds_per_1000res_pop', null), ('2018', 'FR021C2', 'Poitiers', 'ons', '164395'), ('2018', 'FR021C2', 'Poitiers', 'beds', '2764'), ('2018', 'FR021C2', 'Poitiers', 'ons_per_res_pop', null), ('2018', 'FR021C2', 'Poitiers', 'beds_per_1000res_pop', null), ('2018', 'FR022C2', 'Clermont-Ferrand', 'ons', '561309'), ('2018', 'FR022C2', 'Clermont-Ferrand', 'beds', '8016'), ('2018', 'FR022C2', 'Clermont-Ferrand', 'ons_per_res_pop', null), ('2018', 'FR022C2', 'Clermont-Ferrand', 'beds_per_1000res_pop', null), ('2018', 'FR023C2', 'Caen', 'ons', '369813'), ('2018', 'FR023C2', 'Caen', 'beds', '4790'), ('2018', 'FR023C2', 'Caen', 'ons_per_res_pop', null), ('2018', 'FR023C2', 'Caen', 'beds_per_1000res_pop', null), ('2018', 'FR024C2', 'Limoges', 'ons', '172754'), ('2018', 'FR024C2', 'Limoges', 'beds', '4786'), ('2018', 'FR024C2', 'Limoges', 'ons_per_res_pop', null), ('2018', 'FR024C2', 'Limoges', 'beds_per_1000res_pop', null), ('2018', 'FR025C1', 'Besançon', 'ons', '178681'), ('2018', 'FR025C1', 'Besançon', 'beds', '2977'), ('2018', 'FR025C1', 'Besançon', 'ons_per_res_pop', null), ('2018', 'FR025C1', 'Besançon', 'beds_per_1000res_pop', null), ('2018', 'FR026C2', 'Grenoble', 'ons', '764463'), ('2018', 'FR026C2', 'Grenoble', 'beds', '7965'), ('2018', 'FR026C2', 'Grenoble', 'ons_per_res_pop', null), ('2018', 'FR026C2', 'Grenoble', 'beds_per_1000res_pop', null), ('2018', 'FR027C1', 'Ajaccio', 'ons', null), ('2018', 'FR027C1', 'Ajaccio', 'beds', null), ('2018', 'FR027C1', 'Ajaccio', 'ons_per_res_pop', null), ('2018', 'FR027C1', 'Ajaccio', 'beds_per_1000res_pop', null), ('2018', 'FR028C1', 'Saint Denis', 'ons', null), ('2018', 'FR028C1', 'Saint Denis', 'beds', '1376'), ('2018', 'FR028C1', 'Saint Denis', 'ons_per_res_pop', null), ('2018', 'FR028C1', 'Saint Denis', 'beds_per_1000res_pop', null), ('2018', 'FR030C1', 'Fort-de-France', 'ons', null), ('2018', 'FR030C1', 'Fort-de-France', 'beds', '1030'), ('2018', 'FR030C1', 'Fort-de-France', 'ons_per_res_pop', null), ('2018', 'FR030C1', 'Fort-de-France', 'beds_per_1000res_pop', null), ('2018', 'FR032C2', 'Toulon', 'ons', '1078188'), ('2018', 'FR032C2', 'Toulon', 'beds', '14607'), ('2018', 'FR032C2', 'Toulon', 'ons_per_res_pop', null), ('2018', 'FR032C2', 'Toulon', 'beds_per_1000res_pop', null), ('2018', 'FR034C2', 'Valenciennes', 'ons', '64890'), ('2018', 'FR034C2', 'Valenciennes', 'beds', '1692'), ('2018', 'FR034C2', 'Valenciennes', 'ons_per_res_pop', null), ('2018', 'FR034C2', 'Valenciennes', 'beds_per_1000res_pop', null), ('2018', 'FR035C2', 'Tours', 'ons', '305949'), ('2018', 'FR035C2', 'Tours', 'beds', '8253'), ('2018', 'FR035C2', 'Tours', 'ons_per_res_pop', null), ('2018', 'FR035C2', 'Tours', 'beds_per_1000res_pop', null), ('2018', 'FR036C2', 'Angers', 'ons', '315891'), ('2018', 'FR036C2', 'Angers', 'beds', '4422'), ('2018', 'FR036C2', 'Angers', 'ons_per_res_pop', null), ('2018', 'FR036C2', 'Angers', 'beds_per_1000res_pop', null), ('2018', 'FR037C1', 'Brest', 'ons', '215406'), ('2018', 'FR037C1', 'Brest', 'beds', '3650'), ('2018', 'FR037C1', 'Brest', 'ons_per_res_pop', null), ('2018', 'FR037C1', 'Brest', 'beds_per_1000res_pop', null), ('2018', 'FR038C2', 'Le Mans', 'ons', '153801'), ('2018', 'FR038C2', 'Le Mans', 'beds', '3639'), ('2018', 'FR038C2', 'Le Mans', 'ons_per_res_pop', null), ('2018', 'FR038C2', 'Le Mans', 'beds_per_1000res_pop', null), ('2018', 'FR039C2', 'Avignon', 'ons', '452511'), ('2018', 'FR039C2', 'Avignon', 'beds', '9973'), ('2018', 'FR039C2', 'Avignon', 'ons_per_res_pop', null), ('2018', 'FR039C2', 'Avignon', 'beds_per_1000res_pop', null), ('2018', 'FR040C2', 'Mulhouse', 'ons', '363377'), ('2018', 'FR040C2', 'Mulhouse', 'beds', '4727'), ('2018', 'FR040C2', 'Mulhouse', 'ons_per_res_pop', null), ('2018', 'FR040C2', 'Mulhouse', 'beds_per_1000res_pop', null), ('2018', 'FR042C1', 'Dunkerque', 'ons', '252073'), ('2018', 'FR042C1', 'Dunkerque', 'beds', '3756'), ('2018', 'FR042C1', 'Dunkerque', 'ons_per_res_pop', null), ('2018', 'FR042C1', 'Dunkerque', 'beds_per_1000res_pop', null), ('2018', 'FR043C2', 'Perpignan', 'ons', '231865'), ('2018', 'FR043C2', 'Perpignan', 'beds', '4395'), ('2018', 'FR043C2', 'Perpignan', 'ons_per_res_pop', null), ('2018', 'FR043C2', 'Perpignan', 'beds_per_1000res_pop', null), ('2018', 'FR044C2', 'Nîmes', 'ons', '390952'), ('2018', 'FR044C2', 'Nîmes', 'beds', '4654'), ('2018', 'FR044C2', 'Nîmes', 'ons_per_res_pop', null), ('2018', 'FR044C2', 'Nîmes', 'beds_per_1000res_pop', null), ('2018', 'FR045C2', 'Pau', 'ons', '250834'), ('2018', 'FR045C2', 'Pau', 'beds', '3061'), ('2018', 'FR045C2', 'Pau', 'ons_per_res_pop', null), ('2018', 'FR045C2', 'Pau', 'beds_per_1000res_pop', null), ('2018', 'FR046C2', 'Bayonne', 'ons', '1342557'), ('2018', 'FR046C2', 'Bayonne', 'beds', '13555'), ('2018', 'FR046C2', 'Bayonne', 'ons_per_res_pop', null), ('2018', 'FR046C2', 'Bayonne', 'beds_per_1000res_pop', null), ('2018', 'FR047C2', 'Annemasse', 'ons', '347369'), ('2018', 'FR047C2', 'Annemasse', 'beds', '2379'), ('2018', 'FR047C2', 'Annemasse', 'ons_per_res_pop', null), ('2018', 'FR047C2', 'Annemasse', 'beds_per_1000res_pop', null), ('2018', 'FR048C1', 'Annecy', 'ons', '483077'), ('2018', 'FR048C1', 'Annecy', 'beds', '5492'), ('2018', 'FR048C1', 'Annecy', 'ons_per_res_pop', null), ('2018', 'FR048C1', 'Annecy', 'beds_per_1000res_pop', null), ('2018', 'FR049C2', 'Lorient', 'ons', '33446'), ('2018', 'FR049C2', 'Lorient', 'beds', '1470'), ('2018', 'FR049C2', 'Lorient', 'ons_per_res_pop', null), ('2018', 'FR049C2', 'Lorient', 'beds_per_1000res_pop', null), ('2018', 'FR050C2', 'Montbéliard', 'ons', null), ('2018', 'FR050C2', 'Montbéliard', 'beds', null), ('2018', 'FR050C2', 'Montbéliard', 'ons_per_res_pop', null), ('2018', 'FR050C2', 'Montbéliard', 'beds_per_1000res_pop', null), ('2018', 'FR051C2', 'Troyes', 'ons', '47340'), ('2018', 'FR051C2', 'Troyes', 'beds', '1942'), ('2018', 'FR051C2', 'Troyes', 'ons_per_res_pop', null), ('2018', 'FR051C2', 'Troyes', 'beds_per_1000res_pop', null), ('2018', 'FR052C2', 'Saint-Nazaire', 'ons', '453950'), ('2018', 'FR052C2', 'Saint-Nazaire', 'beds', '2915'), ('2018', 'FR052C2', 'Saint-Nazaire', 'ons_per_res_pop', null), ('2018', 'FR052C2', 'Saint-Nazaire', 'beds_per_1000res_pop', null), ('2018', 'FR053C1', 'La Rochelle', 'ons', '648591'), ('2018', 'FR053C1', 'La Rochelle', 'beds', '7821'), ('2018', 'FR053C1', 'La Rochelle', 'ons_per_res_pop', null), ('2018', 'FR053C1', 'La Rochelle', 'beds_per_1000res_pop', null), ('2018', 'FR056C1', 'Angoulême', 'ons', null), ('2018', 'FR056C1', 'Angoulême', 'beds', null), ('2018', 'FR056C1', 'Angoulême', 'ons_per_res_pop', null), ('2018', 'FR056C1', 'Angoulême', 'beds_per_1000res_pop', null), ('2018', 'FR057C2', 'Boulogne-sur-Mer', 'ons', '22977'), ('2018', 'FR057C2', 'Boulogne-sur-Mer', 'beds', '2450'), ('2018', 'FR057C2', 'Boulogne-sur-Mer', 'ons_per_res_pop', null), ('2018', 'FR057C2', 'Boulogne-sur-Mer', 'beds_per_1000res_pop', null), ('2018', 'FR058C2', 'Chambéry', 'ons', '10908'), ('2018', 'FR058C2', 'Chambéry', 'beds', '2214'), ('2018', 'FR058C2', 'Chambéry', 'ons_per_res_pop', null), ('2018', 'FR058C2', 'Chambéry', 'beds_per_1000res_pop', null), ('2018', 'FR059C2', 'Chalon-sur-Saône', 'ons', null), ('2018', 'FR059C2', 'Chalon-sur-Saône', 'beds', null), ('2018', 'FR059C2', 'Chalon-sur-Saône', 'ons_per_res_pop', null), ('2018', 'FR059C2', 'Chalon-sur-Saône', 'beds_per_1000res_pop', null), ('2018', 'FR060C2', 'Chartres', 'ons', '145575'), ('2018', 'FR060C2', 'Chartres', 'beds', '3343'), ('2018', 'FR060C2', 'Chartres', 'ons_per_res_pop', null), ('2018', 'FR060C2', 'Chartres', 'beds_per_1000res_pop', null), ('2018', 'FR061C2', 'Niort', 'ons', null), ('2018', 'FR061C2', 'Niort', 'beds', null), ('2018', 'FR061C2', 'Niort', 'ons_per_res_pop', null), ('2018', 'FR061C2', 'Niort', 'beds_per_1000res_pop', null), ('2018', 'FR062C1', 'Calais', 'ons', '85625'), ('2018', 'FR062C1', 'Calais', 'beds', '2298'), ('2018', 'FR062C1', 'Calais', 'ons_per_res_pop', null), ('2018', 'FR062C1', 'Calais', 'beds_per_1000res_pop', null), ('2018', 'FR063C2', 'Béziers', 'ons', '218026'), ('2018', 'FR063C2', 'Béziers', 'beds', '2063'), ('2018', 'FR063C2', 'Béziers', 'ons_per_res_pop', null), ('2018', 'FR063C2', 'Béziers', 'beds_per_1000res_pop', null), ('2018', 'FR064C2', 'Arras', 'ons', null), ('2018', 'FR064C2', 'Arras', 'beds', '1548'), ('2018', 'FR064C2', 'Arras', 'ons_per_res_pop', null), ('2018', 'FR064C2', 'Arras', 'beds_per_1000res_pop', null), ('2018', 'FR065C2', 'Bourges', 'ons', '69149'), ('2018', 'FR065C2', 'Bourges', 'beds', '2184'), ('2018', 'FR065C2', 'Bourges', 'ons_per_res_pop', null), ('2018', 'FR065C2', 'Bourges', 'beds_per_1000res_pop', null), ('2018', 'FR066C1', 'Saint-Brieuc', 'ons', '30602'), ('2018', 'FR066C1', 'Saint-Brieuc', 'beds', '1822'), ('2018', 'FR066C1', 'Saint-Brieuc', 'ons_per_res_pop', null), ('2018', 'FR066C1', 'Saint-Brieuc', 'beds_per_1000res_pop', null), ('2018', 'FR067C2', 'Quimper', 'ons', null), ('2018', 'FR067C2', 'Quimper', 'beds', null), ('2018', 'FR067C2', 'Quimper', 'ons_per_res_pop', null), ('2018', 'FR067C2', 'Quimper', 'beds_per_1000res_pop', null), ('2018', 'FR068C2', 'Vannes', 'ons', null), ('2018', 'FR068C2', 'Vannes', 'beds', null), ('2018', 'FR068C2', 'Vannes', 'ons_per_res_pop', null), ('2018', 'FR068C2', 'Vannes', 'beds_per_1000res_pop', null), ('2018', 'FR069C1', 'Cherbourg', 'ons', '126250'), ('2018', 'FR069C1', 'Cherbourg', 'beds', '3195'), ('2018', 'FR069C1', 'Cherbourg', 'ons_per_res_pop', null), ('2018', 'FR069C1', 'Cherbourg', 'beds_per_1000res_pop', null), ('2018', 'FR073C2', 'Tarbes', 'ons', null), ('2018', 'FR073C2', 'Tarbes', 'beds', null), ('2018', 'FR073C2', 'Tarbes', 'ons_per_res_pop', null), ('2018', 'FR073C2', 'Tarbes', 'beds_per_1000res_pop', null), ('2018', 'FR074C2', 'Compiègne', 'ons', null), ('2018', 'FR074C2', 'Compiègne', 'beds', null), ('2018', 'FR074C2', 'Compiègne', 'ons_per_res_pop', null), ('2018', 'FR074C2', 'Compiègne', 'beds_per_1000res_pop', null), ('2018', 'FR076C2', 'Belfort', 'ons', '38633'), ('2018', 'FR076C2', 'Belfort', 'beds', '1840'), ('2018', 'FR076C2', 'Belfort', 'ons_per_res_pop', null), ('2018', 'FR076C2', 'Belfort', 'beds_per_1000res_pop', null), ('2018', 'FR077C1', 'Roanne', 'ons', '8628'), ('2018', 'FR077C1', 'Roanne', 'beds', '444'), ('2018', 'FR077C1', 'Roanne', 'ons_per_res_pop', null), ('2018', 'FR077C1', 'Roanne', 'beds_per_1000res_pop', null), ('2018', 'FR079C2', 'Saint-Quentin', 'ons', '3832'), ('2018', 'FR079C2', 'Saint-Quentin', 'beds', '1194'), ('2018', 'FR079C2', 'Saint-Quentin', 'ons_per_res_pop', null), ('2018', 'FR079C2', 'Saint-Quentin', 'beds_per_1000res_pop', null), ('2018', 'FR082C2', 'Beauvais', 'ons', null), ('2018', 'FR082C2', 'Beauvais', 'beds', null), ('2018', 'FR082C2', 'Beauvais', 'ons_per_res_pop', null), ('2018', 'FR082C2', 'Beauvais', 'beds_per_1000res_pop', null), ('2018', 'FR084C1', 'Creil', 'ons', null), ('2018', 'FR084C1', 'Creil', 'beds', '894'), ('2018', 'FR084C1', 'Creil', 'ons_per_res_pop', null), ('2018', 'FR084C1', 'Creil', 'beds_per_1000res_pop', null), ('2018', 'FR086C2', 'Evreux', 'ons', null), ('2018', 'FR086C2', 'Evreux', 'beds', null), ('2018', 'FR086C2', 'Evreux', 'ons_per_res_pop', null), ('2018', 'FR086C2', 'Evreux', 'beds_per_1000res_pop', null), ('2018', 'FR090C2', 'Châteauroux', 'ons', null), ('2018', 'FR090C2', 'Châteauroux', 'beds', null), ('2018', 'FR090C2', 'Châteauroux', 'ons_per_res_pop', null), ('2018', 'FR090C2', 'Châteauroux', 'beds_per_1000res_pop', null), ('2018', 'FR093C2', 'Brive-la-Gaillarde', 'ons', null), ('2018', 'FR093C2', 'Brive-la-Gaillarde', 'beds', null), ('2018', 'FR093C2', 'Brive-la-Gaillarde', 'ons_per_res_pop', null), ('2018', 'FR093C2', 'Brive-la-Gaillarde', 'beds_per_1000res_pop', null), ('2018', 'FR096C2', 'Albi', 'ons', null), ('2018', 'FR096C2', 'Albi', 'beds', null), ('2018', 'FR096C2', 'Albi', 'ons_per_res_pop', null), ('2018', 'FR096C2', 'Albi', 'beds_per_1000res_pop', null), ('2018', 'FR099C1', 'Fréjus', 'ons', '4606964'), ('2018', 'FR099C1', 'Fréjus', 'beds', '50453'), ('2018', 'FR099C1', 'Fréjus', 'ons_per_res_pop', null), ('2018', 'FR099C1', 'Fréjus', 'beds_per_1000res_pop', null), ('2018', 'FR104C2', 'Châlons-en-Champagne', 'ons', null), ('2018', 'FR104C2', 'Châlons-en-Champagne', 'beds', null), ('2018', 'FR104C2', 'Châlons-en-Champagne', 'ons_per_res_pop', null), ('2018', 'FR104C2', 'Châlons-en-Champagne', 'beds_per_1000res_pop', null), ('2018', 'FR201C1', 'Aubagne', 'ons', null), ('2018', 'FR201C1', 'Aubagne', 'beds', null), ('2018', 'FR201C1', 'Aubagne', 'ons_per_res_pop', null), ('2018', 'FR201C1', 'Aubagne', 'beds_per_1000res_pop', null), ('2018', 'FR202C1', 'Aix-en-Provence', 'ons', '768392'), ('2018', 'FR202C1', 'Aix-en-Provence', 'beds', '8367'), ('2018', 'FR202C1', 'Aix-en-Provence', 'ons_per_res_pop', null), ('2018', 'FR202C1', 'Aix-en-Provence', 'beds_per_1000res_pop', null), ('2018', 'FR203C1', 'Marseille', 'ons', '1942538'), ('2018', 'FR203C1', 'Marseille', 'beds', '19164'), ('2018', 'FR203C1', 'Marseille', 'ons_per_res_pop', null), ('2018', 'FR203C1', 'Marseille', 'beds_per_1000res_pop', null), ('2018', 'FR205C2', 'Nice', 'ons', '4779744'), ('2018', 'FR205C2', 'Nice', 'beds', '63015'), ('2018', 'FR205C2', 'Nice', 'ons_per_res_pop', null), ('2018', 'FR205C2', 'Nice', 'beds_per_1000res_pop', null), ('2018', 'FR206C1', 'CA de Sophia-Antipolis', 'ons', null), ('2018', 'FR206C1', 'CA de Sophia-Antipolis', 'beds', null), ('2018', 'FR206C1', 'CA de Sophia-Antipolis', 'ons_per_res_pop', null), ('2018', 'FR206C1', 'CA de Sophia-Antipolis', 'beds_per_1000res_pop', null), ('2018', 'FR207C1', 'Lens - Liévin', 'ons', '7374'), ('2018', 'FR207C1', 'Lens - Liévin', 'beds', '522'), ('2018', 'FR207C1', 'Lens - Liévin', 'ons_per_res_pop', null), ('2018', 'FR207C1', 'Lens - Liévin', 'beds_per_1000res_pop', null), ('2018', 'FR208C1', 'Hénin - Carvin', 'ons', null), ('2018', 'FR208C1', 'Hénin - Carvin', 'beds', null), ('2018', 'FR208C1', 'Hénin - Carvin', 'ons_per_res_pop', null), ('2018', 'FR208C1', 'Hénin - Carvin', 'beds_per_1000res_pop', null), ('2018', 'FR209C2', 'Douai', 'ons', null), ('2018', 'FR209C2', 'Douai', 'beds', '914'), ('2018', 'FR209C2', 'Douai', 'ons_per_res_pop', null), ('2018', 'FR209C2', 'Douai', 'beds_per_1000res_pop', null), ('2018', 'FR210C1', 'Marne la Vallée', 'ons', null), ('2018', 'FR210C1', 'Marne la Vallée', 'beds', null), ('2018', 'FR210C1', 'Marne la Vallée', 'ons_per_res_pop', null), ('2018', 'FR210C1', 'Marne la Vallée', 'beds_per_1000res_pop', null), ('2018', 'FR211C1', 'Versailles', 'ons', null), ('2018', 'FR211C1', 'Versailles', 'beds', null), ('2018', 'FR211C1', 'Versailles', 'ons_per_res_pop', null), ('2018', 'FR211C1', 'Versailles', 'beds_per_1000res_pop', null), ('2018', 'FR212C1', 'CC de la Boucle de la Seine', 'ons', null), ('2018', 'FR212C1', 'CC de la Boucle de la Seine', 'beds', null), ('2018', 'FR212C1', 'CC de la Boucle de la Seine', 'ons_per_res_pop', null), ('2018', 'FR212C1', 'CC de la Boucle de la Seine', 'beds_per_1000res_pop', null), ('2018', 'FR213C1', 'Sénart en Essonne', 'ons', null), ('2018', 'FR213C1', 'Sénart en Essonne', 'beds', null), ('2018', 'FR213C1', 'Sénart en Essonne', 'ons_per_res_pop', null), ('2018', 'FR213C1', 'Sénart en Essonne', 'beds_per_1000res_pop', null), ('2018', 'FR214C1', 'Valence', 'ons', '158773'), ('2018', 'FR214C1', 'Valence', 'beds', '3421'), ('2018', 'FR214C1', 'Valence', 'ons_per_res_pop', null), ('2018', 'FR214C1', 'Valence', 'beds_per_1000res_pop', null), ('2018', 'FR215C2', 'Rouen', 'ons', '92260'), ('2018', 'FR215C2', 'Rouen', 'beds', '5616'), ('2018', 'FR215C2', 'Rouen', 'ons_per_res_pop', null), ('2018', 'FR215C2', 'Rouen', 'beds_per_1000res_pop', null), ('2018', 'FR216C1', 'CA Marne et Chantereine', 'ons', null), ('2018', 'FR216C1', 'CA Marne et Chantereine', 'beds', null), ('2018', 'FR216C1', 'CA Marne et Chantereine', 'ons_per_res_pop', null), ('2018', 'FR216C1', 'CA Marne et Chantereine', 'beds_per_1000res_pop', null), ('2018', 'FR217C1', 'CA des deux Rives de la Seine', 'ons', null), ('2018', 'FR217C1', 'CA des deux Rives de la Seine', 'beds', null), ('2018', 'FR217C1', 'CA des deux Rives de la Seine', 'ons_per_res_pop', null), ('2018', 'FR217C1', 'CA des deux Rives de la Seine', 'beds_per_1000res_pop', null), ('2018', 'FR218C1', 'CC des Coteaux de la Seine', 'ons', null), ('2018', 'FR218C1', 'CC des Coteaux de la Seine', 'beds', null), ('2018', 'FR218C1', 'CC des Coteaux de la Seine', 'ons_per_res_pop', null), ('2018', 'FR218C1', 'CC des Coteaux de la Seine', 'beds_per_1000res_pop', null), ('2018', 'FR219C1', 'CA Europ'' Essonne', 'ons', null), ('2018', 'FR219C1', 'CA Europ'' Essonne', 'beds', null), ('2018', 'FR219C1', 'CA Europ'' Essonne', 'ons_per_res_pop', null), ('2018', 'FR219C1', 'CA Europ'' Essonne', 'beds_per_1000res_pop', null), ('2018', 'FR220C1', 'CA Brie Francilienne', 'ons', null), ('2018', 'FR220C1', 'CA Brie Francilienne', 'beds', null), ('2018', 'FR220C1', 'CA Brie Francilienne', 'ons_per_res_pop', null), ('2018', 'FR220C1', 'CA Brie Francilienne', 'beds_per_1000res_pop', null), ('2018', 'FR221C1', 'CA les Portes de l''Essonne', 'ons', null), ('2018', 'FR221C1', 'CA les Portes de l''Essonne', 'beds', null), ('2018', 'FR221C1', 'CA les Portes de l''Essonne', 'ons_per_res_pop', null), ('2018', 'FR221C1', 'CA les Portes de l''Essonne', 'beds_per_1000res_pop', null), ('2018', 'FR222C1', 'CA Val et Forêt', 'ons', null), ('2018', 'FR222C1', 'CA Val et Forêt', 'beds', null), ('2018', 'FR222C1', 'CA Val et Forêt', 'ons_per_res_pop', null), ('2018', 'FR222C1', 'CA Val et Forêt', 'beds_per_1000res_pop', null), ('2018', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons', null), ('2018', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds', null), ('2018', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'ons_per_res_pop', null), ('2018', 'FR223C1', 'CC de l''Ouest de la Plaine de France', 'beds_per_1000res_pop', null), ('2018', 'FR224C1', 'CA le Parisis', 'ons', null), ('2018', 'FR224C1', 'CA le Parisis', 'beds', null), ('2018', 'FR224C1', 'CA le Parisis', 'ons_per_res_pop', null), ('2018', 'FR224C1', 'CA le Parisis', 'beds_per_1000res_pop', null), ('2018', 'FR304C1', 'Melun', 'ons', '242941'), ('2018', 'FR304C1', 'Melun', 'beds', '1798'), ('2018', 'FR304C1', 'Melun', 'ons_per_res_pop', null), ('2018', 'FR304C1', 'Melun', 'beds_per_1000res_pop', null), ('2018', 'FR305C1', 'Meaux', 'ons', null), ('2018', 'FR305C1', 'Meaux', 'beds', '382'), ('2018', 'FR305C1', 'Meaux', 'ons_per_res_pop', null), ('2018', 'FR305C1', 'Meaux', 'beds_per_1000res_pop', null), ('2018', 'FR306C1', 'Mantes en Yvelines', 'ons', '9674'), ('2018', 'FR306C1', 'Mantes en Yvelines', 'beds', '450'), ('2018', 'FR306C1', 'Mantes en Yvelines', 'ons_per_res_pop', null), ('2018', 'FR306C1', 'Mantes en Yvelines', 'beds_per_1000res_pop', null), ('2018', 'FR308C1', 'Evry', 'ons', null), ('2018', 'FR308C1', 'Evry', 'beds', null), ('2018', 'FR308C1', 'Evry', 'ons_per_res_pop', null), ('2018', 'FR308C1', 'Evry', 'beds_per_1000res_pop', null), ('2018', 'FR309C1', 'CA du Plateau de Saclay', 'ons', null), ('2018', 'FR309C1', 'CA du Plateau de Saclay', 'beds', null), ('2018', 'FR309C1', 'CA du Plateau de Saclay', 'ons_per_res_pop', null), ('2018', 'FR309C1', 'CA du Plateau de Saclay', 'beds_per_1000res_pop', null), ('2018', 'FR310C1', 'CA de Seine Essonne', 'ons', null), ('2018', 'FR310C1', 'CA de Seine Essonne', 'beds', null), ('2018', 'FR310C1', 'CA de Seine Essonne', 'ons_per_res_pop', null), ('2018', 'FR310C1', 'CA de Seine Essonne', 'beds_per_1000res_pop', null), ('2018', 'FR311C1', 'CA du Val d''Orge', 'ons', null), ('2018', 'FR311C1', 'CA du Val d''Orge', 'beds', null), ('2018', 'FR311C1', 'CA du Val d''Orge', 'ons_per_res_pop', null), ('2018', 'FR311C1', 'CA du Val d''Orge', 'beds_per_1000res_pop', null), ('2018', 'FR312C1', 'CA du Val d''Yerres', 'ons', null), ('2018', 'FR312C1', 'CA du Val d''Yerres', 'beds', null), ('2018', 'FR312C1', 'CA du Val d''Yerres', 'ons_per_res_pop', null), ('2018', 'FR312C1', 'CA du Val d''Yerres', 'beds_per_1000res_pop', null), ('2018', 'FR313C1', 'CA Sénart - Val de Seine', 'ons', null), ('2018', 'FR313C1', 'CA Sénart - Val de Seine', 'beds', null), ('2018', 'FR313C1', 'CA Sénart - Val de Seine', 'ons_per_res_pop', null), ('2018', 'FR313C1', 'CA Sénart - Val de Seine', 'beds_per_1000res_pop', null), ('2018', 'FR322C1', 'CA Val de France', 'ons', null), ('2018', 'FR322C1', 'CA Val de France', 'beds', null), ('2018', 'FR322C1', 'CA Val de France', 'ons_per_res_pop', null), ('2018', 'FR322C1', 'CA Val de France', 'beds_per_1000res_pop', null), ('2018', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons', null), ('2018', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds', null), ('2018', 'FR323C1', 'CA de la Vallée de Montmorency', 'ons_per_res_pop', null), ('2018', 'FR323C1', 'CA de la Vallée de Montmorency', 'beds_per_1000res_pop', null), ('2018', 'FR324C1', 'Martigues', 'ons', '521871'), ('2018', 'FR324C1', 'Martigues', 'beds', '7012'), ('2018', 'FR324C1', 'Martigues', 'ons_per_res_pop', null), ('2018', 'FR324C1', 'Martigues', 'beds_per_1000res_pop', null), ('2018', 'FR501C1', 'Argenteuil - Bezons', 'ons', null), ('2018', 'FR501C1', 'Argenteuil - Bezons', 'beds', null), ('2018', 'FR501C1', 'Argenteuil - Bezons', 'ons_per_res_pop', null), ('2018', 'FR501C1', 'Argenteuil - Bezons', 'beds_per_1000res_pop', null), ('2018', 'FR504C1', 'Cergy-Pontoise', 'ons', null), ('2018', 'FR504C1', 'Cergy-Pontoise', 'beds', null), ('2018', 'FR504C1', 'Cergy-Pontoise', 'ons_per_res_pop', null), ('2018', 'FR504C1', 'Cergy-Pontoise', 'beds_per_1000res_pop', null), ('2018', 'FR505C1', 'Charleville-Mézières', 'ons', null), ('2018', 'FR505C1', 'Charleville-Mézières', 'beds', null), ('2018', 'FR505C1', 'Charleville-Mézières', 'ons_per_res_pop', null), ('2018', 'FR505C1', 'Charleville-Mézières', 'beds_per_1000res_pop', null), ('2018', 'FR506C1', 'Colmar', 'ons', '199441'), ('2018', 'FR506C1', 'Colmar', 'beds', '3998'), ('2018', 'FR506C1', 'Colmar', 'ons_per_res_pop', null), ('2018', 'FR506C1', 'Colmar', 'beds_per_1000res_pop', null), ('2018', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons', null), ('2018', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds', null), ('2018', 'FR512C1', 'CA des Lacs de l''Essonne', 'ons_per_res_pop', null), ('2018', 'FR512C1', 'CA des Lacs de l''Essonne', 'beds_per_1000res_pop', null), ('2018', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons', null), ('2018', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds', null), ('2018', 'FR518C1', 'Saint-Quentin en Yvelines', 'ons_per_res_pop', null), ('2018', 'FR518C1', 'Saint-Quentin en Yvelines', 'beds_per_1000res_pop', null), ('2018', 'FR519C1', 'Cannes', 'ons', null), ('2018', 'FR519C1', 'Cannes', 'beds', null), ('2018', 'FR519C1', 'Cannes', 'ons_per_res_pop', null), ('2018', 'FR519C1', 'Cannes', 'beds_per_1000res_pop', null), ('2018', 'HR001C1', 'Zagreb', 'ons', '2511817'), ('2018', 'HR001C1', 'Zagreb', 'beds', '27995'), ('2018', 'HR001C1', 'Zagreb', 'ons_per_res_pop', '3.1'), ('2018', 'HR001C1', 'Zagreb', 'beds_per_1000res_pop', '34.8'), ('2018', 'HR002C1', 'Rijeka', 'ons', '367586'), ('2018', 'HR002C1', 'Rijeka', 'beds', '7482'), ('2018', 'HR002C1', 'Rijeka', 'ons_per_res_pop', '3.1'), ('2018', 'HR002C1', 'Rijeka', 'beds_per_1000res_pop', '63.1'), ('2018', 'HR003C1', 'Slavonski Brod', 'ons', '35137'), ('2018', 'HR003C1', 'Slavonski Brod', 'beds', '817'), ('2018', 'HR003C1', 'Slavonski Brod', 'ons_per_res_pop', '0.6'), ('2018', 'HR003C1', 'Slavonski Brod', 'beds_per_1000res_pop', '14.9'), ('2018', 'HR004C1', 'Osijek', 'ons', '110412'), ('2018', 'HR004C1', 'Osijek', 'beds', '1649'), ('2018', 'HR004C1', 'Osijek', 'ons_per_res_pop', '1.1'), ('2018', 'HR004C1', 'Osijek', 'beds_per_1000res_pop', '15.8'), ('2018', 'HR005C1', 'Split', 'ons', '2494072'), ('2018', 'HR005C1', 'Split', 'beds', '39394'), ('2018', 'HR005C1', 'Split', 'ons_per_res_pop', '14.6'), ('2018', 'HR005C1', 'Split', 'beds_per_1000res_pop', '230.8'), ('2018', 'HR006C1', 'Pula - Pola', 'ons', '1998479'), ('2018', 'HR006C1', 'Pula - Pola', 'beds', '31221'), ('2018', 'HR006C1', 'Pula - Pola', 'ons_per_res_pop', '35.5'), ('2018', 'HR006C1', 'Pula - Pola', 'beds_per_1000res_pop', '554.9'), ('2018', 'HR007C1', 'Zadar', 'ons', '1862847'), ('2018', 'HR007C1', 'Zadar', 'beds', '30475'), ('2018', 'HR007C1', 'Zadar', 'ons_per_res_pop', '24.8'), ('2018', 'HR007C1', 'Zadar', 'beds_per_1000res_pop', '406.5'), ('2018', 'IT', 'Italy', 'ons', '428844937'), ('2018', 'IT', 'Italy', 'beds', '5107046'), ('2018', 'IT', 'Italy', 'ons_per_res_pop', '7.1'), ('2018', 'IT', 'Italy', 'beds_per_1000res_pop', '84.4'), ('2018', 'IT001C1', 'Roma', 'ons', '28992098'), ('2018', 'IT001C1', 'Roma', 'beds', '230321'), ('2018', 'IT001C1', 'Roma', 'ons_per_res_pop', '10.1'), ('2018', 'IT001C1', 'Roma', 'beds_per_1000res_pop', '80.2'), ('2018', 'IT002C1', 'Milano', 'ons', '12058835'), ('2018', 'IT002C1', 'Milano', 'beds', '68830'), ('2018', 'IT002C1', 'Milano', 'ons_per_res_pop', '8.8'), ('2018', 'IT002C1', 'Milano', 'beds_per_1000res_pop', '50.4'), ('2018', 'IT003C1', 'Napoli', 'ons', '3684905'), ('2018', 'IT003C1', 'Napoli', 'beds', '15837'), ('2018', 'IT003C1', 'Napoli', 'ons_per_res_pop', '3.8'), ('2018', 'IT003C1', 'Napoli', 'beds_per_1000res_pop', '16.4'), ('2018', 'IT004C1', 'Torino', 'ons', '3800003'), ('2018', 'IT004C1', 'Torino', 'beds', '21803'), ('2018', 'IT004C1', 'Torino', 'ons_per_res_pop', '4.3'), ('2018', 'IT004C1', 'Torino', 'beds_per_1000res_pop', '24.7'), ('2018', 'IT005C1', 'Palermo', 'ons', '1454795'), ('2018', 'IT005C1', 'Palermo', 'beds', '12984'), ('2018', 'IT005C1', 'Palermo', 'ons_per_res_pop', '2.2'), ('2018', 'IT005C1', 'Palermo', 'beds_per_1000res_pop', '19.4'), ('2018', 'IT006C1', 'Genova', 'ons', '1907159'), ('2018', 'IT006C1', 'Genova', 'beds', '11520'), ('2018', 'IT006C1', 'Genova', 'ons_per_res_pop', '3.3'), ('2018', 'IT006C1', 'Genova', 'beds_per_1000res_pop', '19.9'), ('2018', 'IT007C1', 'Firenze', 'ons', '10592202'), ('2018', 'IT007C1', 'Firenze', 'beds', '49130'), ('2018', 'IT007C1', 'Firenze', 'ons_per_res_pop', '27.8'), ('2018', 'IT007C1', 'Firenze', 'beds_per_1000res_pop', '129'), ('2018', 'IT008C1', 'Bari', 'ons', '838627'), ('2018', 'IT008C1', 'Bari', 'beds', '6769'), ('2018', 'IT008C1', 'Bari', 'ons_per_res_pop', '2.6'), ('2018', 'IT008C1', 'Bari', 'beds_per_1000res_pop', '20.9'), ('2018', 'IT009C1', 'Bologna', 'ons', '3059546'), ('2018', 'IT009C1', 'Bologna', 'beds', '18538'), ('2018', 'IT009C1', 'Bologna', 'ons_per_res_pop', '7.9'), ('2018', 'IT009C1', 'Bologna', 'beds_per_1000res_pop', '47.6'), ('2018', 'IT010C1', 'Catania', 'ons', '975888'), ('2018', 'IT010C1', 'Catania', 'beds', '8657'), ('2018', 'IT010C1', 'Catania', 'ons_per_res_pop', '3.1'), ('2018', 'IT010C1', 'Catania', 'beds_per_1000res_pop', '27.8'), ('2018', 'IT011C1', 'Venezia', 'ons', '12118298'), ('2018', 'IT011C1', 'Venezia', 'beds', '72855'), ('2018', 'IT011C1', 'Venezia', 'ons_per_res_pop', '46.4'), ('2018', 'IT011C1', 'Venezia', 'beds_per_1000res_pop', '278.8'), ('2018', 'IT012C1', 'Verona', 'ons', '2495943'), ('2018', 'IT012C1', 'Verona', 'beds', '22363'), ('2018', 'IT012C1', 'Verona', 'ons_per_res_pop', '9.7'), ('2018', 'IT012C1', 'Verona', 'beds_per_1000res_pop', '86.9'), ('2018', 'IT013C1', 'Cremona', 'ons', '136761'), ('2018', 'IT013C1', 'Cremona', 'beds', '1352'), ('2018', 'IT013C1', 'Cremona', 'ons_per_res_pop', '1.9'), ('2018', 'IT013C1', 'Cremona', 'beds_per_1000res_pop', '18.8'), ('2018', 'IT014C1', 'Trento', 'ons', '1016951'), ('2018', 'IT014C1', 'Trento', 'beds', '5733'), ('2018', 'IT014C1', 'Trento', 'ons_per_res_pop', '8.6'), ('2018', 'IT014C1', 'Trento', 'beds_per_1000res_pop', '48.6'), ('2018', 'IT015C1', 'Trieste', 'ons', '929492'), ('2018', 'IT015C1', 'Trieste', 'beds', '9387'), ('2018', 'IT015C1', 'Trieste', 'ons_per_res_pop', '4.5'), ('2018', 'IT015C1', 'Trieste', 'beds_per_1000res_pop', '45.9'), ('2018', 'IT016C1', 'Perugia', 'ons', '959070'), ('2018', 'IT016C1', 'Perugia', 'beds', '9324'), ('2018', 'IT016C1', 'Perugia', 'ons_per_res_pop', '5.8'), ('2018', 'IT016C1', 'Perugia', 'beds_per_1000res_pop', '56.3'), ('2018', 'IT017C1', 'Ancona', 'ons', '349187'), ('2018', 'IT017C1', 'Ancona', 'beds', '4357'), ('2018', 'IT017C1', 'Ancona', 'ons_per_res_pop', '3.5'), ('2018', 'IT017C1', 'Ancona', 'beds_per_1000res_pop', '43.2'), ('2018', 'IT019C1', 'Pescara', 'ons', '256164'), ('2018', 'IT019C1', 'Pescara', 'beds', '2592'), ('2018', 'IT019C1', 'Pescara', 'ons_per_res_pop', '2.1'), ('2018', 'IT019C1', 'Pescara', 'beds_per_1000res_pop', '21.7'), ('2018', 'IT020C1', 'Campobasso', 'ons', '23237'), ('2018', 'IT020C1', 'Campobasso', 'beds', '736'), ('2018', 'IT020C1', 'Campobasso', 'ons_per_res_pop', '0.5'), ('2018', 'IT020C1', 'Campobasso', 'beds_per_1000res_pop', '14.9'), ('2018', 'IT021C1', 'Caserta', 'ons', '275494'), ('2018', 'IT021C1', 'Caserta', 'beds', '1721'), ('2018', 'IT021C1', 'Caserta', 'ons_per_res_pop', '3.6'), ('2018', 'IT021C1', 'Caserta', 'beds_per_1000res_pop', '22.8'), ('2018', 'IT022C1', 'Taranto', 'ons', '258619'), ('2018', 'IT022C1', 'Taranto', 'beds', '3277'), ('2018', 'IT022C1', 'Taranto', 'ons_per_res_pop', '1.3'), ('2018', 'IT022C1', 'Taranto', 'beds_per_1000res_pop', '16.5'), ('2018', 'IT023C1', 'Potenza', 'ons', '66897'), ('2018', 'IT023C1', 'Potenza', 'beds', '960'), ('2018', 'IT023C1', 'Potenza', 'ons_per_res_pop', '1'), ('2018', 'IT023C1', 'Potenza', 'beds_per_1000res_pop', '14.3'), ('2018', 'IT024C1', 'Catanzaro', 'ons', '153539'), ('2018', 'IT024C1', 'Catanzaro', 'beds', '1314'), ('2018', 'IT024C1', 'Catanzaro', 'ons_per_res_pop', '1.7'), ('2018', 'IT024C1', 'Catanzaro', 'beds_per_1000res_pop', '14.6'), ('2018', 'IT025C1', 'Reggio di Calabria', 'ons', '186424'), ('2018', 'IT025C1', 'Reggio di Calabria', 'beds', '2884'), ('2018', 'IT025C1', 'Reggio di Calabria', 'ons_per_res_pop', '1'), ('2018', 'IT025C1', 'Reggio di Calabria', 'beds_per_1000res_pop', '15.9'), ('2018', 'IT026C1', 'Sassari', 'ons', '144404'), ('2018', 'IT026C1', 'Sassari', 'beds', '1952'), ('2018', 'IT026C1', 'Sassari', 'ons_per_res_pop', '1.1'), ('2018', 'IT026C1', 'Sassari', 'beds_per_1000res_pop', '15.4'), ('2018', 'IT027C1', 'Cagliari', 'ons', '573579'), ('2018', 'IT027C1', 'Cagliari', 'beds', '5327'), ('2018', 'IT027C1', 'Cagliari', 'ons_per_res_pop', '3.7'), ('2018', 'IT027C1', 'Cagliari', 'beds_per_1000res_pop', '34.6'), ('2018', 'IT028C1', 'Padova', 'ons', '1650362'), ('2018', 'IT028C1', 'Padova', 'beds', '9608'), ('2018', 'IT028C1', 'Padova', 'ons_per_res_pop', '7.8'), ('2018', 'IT028C1', 'Padova', 'beds_per_1000res_pop', '45.7'), ('2018', 'IT029C1', 'Brescia', 'ons', '590988'), ('2018', 'IT029C1', 'Brescia', 'beds', '3806'), ('2018', 'IT029C1', 'Brescia', 'ons_per_res_pop', '3'), ('2018', 'IT029C1', 'Brescia', 'beds_per_1000res_pop', '19.3'), ('2018', 'IT030C1', 'Modena', 'ons', '571425'), ('2018', 'IT030C1', 'Modena', 'beds', '4259'), ('2018', 'IT030C1', 'Modena', 'ons_per_res_pop', '3.1'), ('2018', 'IT030C1', 'Modena', 'beds_per_1000res_pop', '23'), ('2018', 'IT031C1', 'Foggia', 'ons', '110233'), ('2018', 'IT031C1', 'Foggia', 'beds', '1470'), ('2018', 'IT031C1', 'Foggia', 'ons_per_res_pop', '0.7'), ('2018', 'IT031C1', 'Foggia', 'beds_per_1000res_pop', '9.7'), ('2018', 'IT032C1', 'Salerno', 'ons', '621362'), ('2018', 'IT032C1', 'Salerno', 'beds', '3642'), ('2018', 'IT032C1', 'Salerno', 'ons_per_res_pop', '4.6'), ('2018', 'IT032C1', 'Salerno', 'beds_per_1000res_pop', '27.2'), ('2018', 'IT033C1', 'Piacenza', 'ons', '302724'), ('2018', 'IT033C1', 'Piacenza', 'beds', '1893'), ('2018', 'IT033C1', 'Piacenza', 'ons_per_res_pop', '2.9'), ('2018', 'IT033C1', 'Piacenza', 'beds_per_1000res_pop', '18.4'), ('2018', 'IT034C1', 'Bolzano', 'ons', '692409'), ('2018', 'IT034C1', 'Bolzano', 'beds', '3903'), ('2018', 'IT034C1', 'Bolzano', 'ons_per_res_pop', '6.5'), ('2018', 'IT034C1', 'Bolzano', 'beds_per_1000res_pop', '36.4'), ('2018', 'IT035C1', 'Udine', 'ons', '389112'), ('2018', 'IT035C1', 'Udine', 'beds', '3899'), ('2018', 'IT035C1', 'Udine', 'ons_per_res_pop', '3.9'), ('2018', 'IT035C1', 'Udine', 'beds_per_1000res_pop', '39.2'), ('2018', 'IT036C1', 'La Spezia', 'ons', '506269'), ('2018', 'IT036C1', 'La Spezia', 'beds', '3409'), ('2018', 'IT036C1', 'La Spezia', 'ons_per_res_pop', '5.4'), ('2018', 'IT036C1', 'La Spezia', 'beds_per_1000res_pop', '36.5'), ('2018', 'IT037C1', 'Lecce', 'ons', '697291'), ('2018', 'IT037C1', 'Lecce', 'beds', '10175'), ('2018', 'IT037C1', 'Lecce', 'ons_per_res_pop', '7.3'), ('2018', 'IT037C1', 'Lecce', 'beds_per_1000res_pop', '106.6'), ('2018', 'IT038C1', 'Barletta', 'ons', '96165'), ('2018', 'IT038C1', 'Barletta', 'beds', '776'), ('2018', 'IT038C1', 'Barletta', 'ons_per_res_pop', '1'), ('2018', 'IT038C1', 'Barletta', 'beds_per_1000res_pop', '8.2'), ('2018', 'IT039C1', 'Pesaro', 'ons', '776171'), ('2018', 'IT039C1', 'Pesaro', 'beds', '9589'), ('2018', 'IT039C1', 'Pesaro', 'ons_per_res_pop', '8.2'), ('2018', 'IT039C1', 'Pesaro', 'beds_per_1000res_pop', '101'), ('2018', 'IT040C1', 'Como', 'ons', '708510'), ('2018', 'IT040C1', 'Como', 'beds', '4748'), ('2018', 'IT040C1', 'Como', 'ons_per_res_pop', '8.5'), ('2018', 'IT040C1', 'Como', 'beds_per_1000res_pop', '57'), ('2018', 'IT041C1', 'Pisa', 'ons', '1882097'), ('2018', 'IT041C1', 'Pisa', 'beds', '15809'), ('2018', 'IT041C1', 'Pisa', 'ons_per_res_pop', '20.9'), ('2018', 'IT041C1', 'Pisa', 'beds_per_1000res_pop', '175.4'), ('2018', 'IT042C1', 'Treviso', 'ons', '332341'), ('2018', 'IT042C1', 'Treviso', 'beds', '2928'), ('2018', 'IT042C1', 'Treviso', 'ons_per_res_pop', '3.9'), ('2018', 'IT042C1', 'Treviso', 'beds_per_1000res_pop', '34.5'), ('2018', 'IT043C1', 'Varese', 'ons', '239815'), ('2018', 'IT043C1', 'Varese', 'beds', '2051'), ('2018', 'IT043C1', 'Varese', 'ons_per_res_pop', '3'), ('2018', 'IT043C1', 'Varese', 'beds_per_1000res_pop', '25.5'), ('2018', 'IT044C1', 'Busto Arsizio', 'ons', '37882'), ('2018', 'IT044C1', 'Busto Arsizio', 'beds', '276'), ('2018', 'IT044C1', 'Busto Arsizio', 'ons_per_res_pop', '0.5'), ('2018', 'IT044C1', 'Busto Arsizio', 'beds_per_1000res_pop', '3.3'), ('2018', 'IT045C1', 'Asti', 'ons', '95349'), ('2018', 'IT045C1', 'Asti', 'beds', '1771'), ('2018', 'IT045C1', 'Asti', 'ons_per_res_pop', '1.3'), ('2018', 'IT045C1', 'Asti', 'beds_per_1000res_pop', '23.2'), ('2018', 'IT046C1', 'Pavia', 'ons', '110439'), ('2018', 'IT046C1', 'Pavia', 'beds', '1030'), ('2018', 'IT046C1', 'Pavia', 'ons_per_res_pop', '1.5'), ('2018', 'IT046C1', 'Pavia', 'beds_per_1000res_pop', '14.2'), ('2018', 'IT047C1', 'Massa', 'ons', '834724'), ('2018', 'IT047C1', 'Massa', 'beds', '26600'), ('2018', 'IT047C1', 'Massa', 'ons_per_res_pop', '12.1'), ('2018', 'IT047C1', 'Massa', 'beds_per_1000res_pop', '385.3'), ('2018', 'IT048C1', 'Cosenza', 'ons', '105306'), ('2018', 'IT048C1', 'Cosenza', 'beds', '685'), ('2018', 'IT048C1', 'Cosenza', 'ons_per_res_pop', '1.6'), ('2018', 'IT048C1', 'Cosenza', 'beds_per_1000res_pop', '10.2'), ('2018', 'IT052C1', 'Savona', 'ons', '213191'), ('2018', 'IT052C1', 'Savona', 'beds', '1821'), ('2018', 'IT052C1', 'Savona', 'ons_per_res_pop', '3.5'), ('2018', 'IT052C1', 'Savona', 'beds_per_1000res_pop', '30'), ('2018', 'IT054C1', 'Matera', 'ons', '547530'), ('2018', 'IT054C1', 'Matera', 'beds', '4739'), ('2018', 'IT054C1', 'Matera', 'ons_per_res_pop', '9.1'), ('2018', 'IT054C1', 'Matera', 'beds_per_1000res_pop', '78.5'), ('2018', 'IT056C1', 'Acireale', 'ons', '202844'), ('2018', 'IT056C1', 'Acireale', 'beds', '3041'), ('2018', 'IT056C1', 'Acireale', 'ons_per_res_pop', '3.9'), ('2018', 'IT056C1', 'Acireale', 'beds_per_1000res_pop', '58.2'), ('2018', 'IT057C1', 'Avellino', 'ons', '36301'), ('2018', 'IT057C1', 'Avellino', 'beds', '329'), ('2018', 'IT057C1', 'Avellino', 'ons_per_res_pop', '0.7'), ('2018', 'IT057C1', 'Avellino', 'beds_per_1000res_pop', '6.1'), ('2018', 'IT058C1', 'Pordenone', 'ons', '135653'), ('2018', 'IT058C1', 'Pordenone', 'beds', '1340'), ('2018', 'IT058C1', 'Pordenone', 'ons_per_res_pop', '2.7'), ('2018', 'IT058C1', 'Pordenone', 'beds_per_1000res_pop', '26.2'), ('2018', 'IT060C1', 'Lecco', 'ons', '101555'), ('2018', 'IT060C1', 'Lecco', 'beds', '1064'), ('2018', 'IT060C1', 'Lecco', 'ons_per_res_pop', '2.1'), ('2018', 'IT060C1', 'Lecco', 'beds_per_1000res_pop', '22.1'), ('2018', 'IT061C1', 'Altamura', 'ons', '38841'), ('2018', 'IT061C1', 'Altamura', 'beds', '684'), ('2018', 'IT061C1', 'Altamura', 'ons_per_res_pop', '0.6'), ('2018', 'IT061C1', 'Altamura', 'beds_per_1000res_pop', '9.7'), ('2018', 'IT062C1', 'Bitonto', 'ons', '17626'), ('2018', 'IT062C1', 'Bitonto', 'beds', '266'), ('2018', 'IT062C1', 'Bitonto', 'ons_per_res_pop', '0.3'), ('2018', 'IT062C1', 'Bitonto', 'beds_per_1000res_pop', '4.8'), ('2018', 'IT063C1', 'Molfetta', 'ons', '22666'), ('2018', 'IT063C1', 'Molfetta', 'beds', '257'), ('2018', 'IT063C1', 'Molfetta', 'ons_per_res_pop', '0.4'), ('2018', 'IT063C1', 'Molfetta', 'beds_per_1000res_pop', '4.3'), ('2018', 'IT064C1', 'Battipaglia', 'ons', '207192'), ('2018', 'IT064C1', 'Battipaglia', 'beds', '3711'), ('2018', 'IT064C1', 'Battipaglia', 'ons_per_res_pop', '4.1'), ('2018', 'IT064C1', 'Battipaglia', 'beds_per_1000res_pop', '72.8'), ('2018', 'IT065C1', 'Bisceglie', 'ons', '81777'), ('2018', 'IT065C1', 'Bisceglie', 'beds', '1156'), ('2018', 'IT065C1', 'Bisceglie', 'ons_per_res_pop', '1.5'), ('2018', 'IT065C1', 'Bisceglie', 'beds_per_1000res_pop', '20.9'), ('2018', 'IT066C1', 'Carpi', 'ons', '71471'), ('2018', 'IT066C1', 'Carpi', 'beds', '608'), ('2018', 'IT066C1', 'Carpi', 'ons_per_res_pop', '1'), ('2018', 'IT066C1', 'Carpi', 'beds_per_1000res_pop', '8.5'), ('2018', 'IT067C1', 'Cerignola', 'ons', '9360'), ('2018', 'IT067C1', 'Cerignola', 'beds', '416'), ('2018', 'IT067C1', 'Cerignola', 'ons_per_res_pop', '0.2'), ('2018', 'IT067C1', 'Cerignola', 'beds_per_1000res_pop', '7.1'), ('2018', 'IT068C1', 'Gallarate', 'ons', '28791'), ('2018', 'IT068C1', 'Gallarate', 'beds', '442'), ('2018', 'IT068C1', 'Gallarate', 'ons_per_res_pop', '0.5'), ('2018', 'IT068C1', 'Gallarate', 'beds_per_1000res_pop', '8.3'), ('2018', 'IT069C1', 'Gela', 'ons', '37665'), ('2018', 'IT069C1', 'Gela', 'beds', '535'), ('2018', 'IT069C1', 'Gela', 'ons_per_res_pop', '0.5'), ('2018', 'IT069C1', 'Gela', 'beds_per_1000res_pop', '7.1'), ('2018', 'IT070C1', 'Saronno', 'ons', '259113'), ('2018', 'IT070C1', 'Saronno', 'beds', '1440'), ('2018', 'IT070C1', 'Saronno', 'ons_per_res_pop', '6.6'), ('2018', 'IT070C1', 'Saronno', 'beds_per_1000res_pop', '36.5'), ('2018', 'IT071C1', 'Bagheria', 'ons', '14741'), ('2018', 'IT071C1', 'Bagheria', 'beds', '219'), ('2018', 'IT071C1', 'Bagheria', 'ons_per_res_pop', '0.3'), ('2018', 'IT071C1', 'Bagheria', 'beds_per_1000res_pop', '4'), ('2018', 'IT072C1', 'Anzio', 'ons', '183520'), ('2018', 'IT072C1', 'Anzio', 'beds', '9614'), ('2018', 'IT072C1', 'Anzio', 'ons_per_res_pop', '3.4'), ('2018', 'IT072C1', 'Anzio', 'beds_per_1000res_pop', '175.7'), ('2018', 'IT073C1', 'Sassuolo', 'ons', '61283'), ('2018', 'IT073C1', 'Sassuolo', 'beds', '543'), ('2018', 'IT073C1', 'Sassuolo', 'ons_per_res_pop', '1.5'), ('2018', 'IT073C1', 'Sassuolo', 'beds_per_1000res_pop', '13.3'), ('2018', 'IT501C1', 'Messina', 'ons', '83604'), ('2018', 'IT501C1', 'Messina', 'beds', '2177'), ('2018', 'IT501C1', 'Messina', 'ons_per_res_pop', '0.4'), ('2018', 'IT501C1', 'Messina', 'beds_per_1000res_pop', '9.3'), ('2018', 'IT502C1', 'Prato', 'ons', '427121'), ('2018', 'IT502C1', 'Prato', 'beds', '2441'), ('2018', 'IT502C1', 'Prato', 'ons_per_res_pop', '2.2'), ('2018', 'IT502C1', 'Prato', 'beds_per_1000res_pop', '12.6'), ('2018', 'IT503C1', 'Parma', 'ons', '735127'), ('2018', 'IT503C1', 'Parma', 'beds', '5213'), ('2018', 'IT503C1', 'Parma', 'ons_per_res_pop', '3.8'), ('2018', 'IT503C1', 'Parma', 'beds_per_1000res_pop', '26.6'), ('2018', 'IT504C1', 'Livorno', 'ons', '337434'), ('2018', 'IT504C1', 'Livorno', 'beds', '3723'), ('2018', 'IT504C1', 'Livorno', 'ons_per_res_pop', '2.1'), ('2018', 'IT504C1', 'Livorno', 'beds_per_1000res_pop', '23.5'), ('2018', 'IT505C1', 'Reggio nell''Emilia', 'ons', '367647'), ('2018', 'IT505C1', 'Reggio nell''Emilia', 'beds', '2820'), ('2018', 'IT505C1', 'Reggio nell''Emilia', 'ons_per_res_pop', '2.1'), ('2018', 'IT505C1', 'Reggio nell''Emilia', 'beds_per_1000res_pop', '16.4'), ('2018', 'IT506C1', 'Ravenna', 'ons', '2744504'), ('2018', 'IT506C1', 'Ravenna', 'beds', '36681'), ('2018', 'IT506C1', 'Ravenna', 'ons_per_res_pop', '17.2'), ('2018', 'IT506C1', 'Ravenna', 'beds_per_1000res_pop', '230.5'), ('2018', 'IT507C1', 'Ferrara', 'ons', '450436'), ('2018', 'IT507C1', 'Ferrara', 'beds', '4067'), ('2018', 'IT507C1', 'Ferrara', 'ons_per_res_pop', '3.4'), ('2018', 'IT507C1', 'Ferrara', 'beds_per_1000res_pop', '30.7'), ('2018', 'IT508C1', 'Rimini', 'ons', '7460300'), ('2018', 'IT508C1', 'Rimini', 'beds', '74990'), ('2018', 'IT508C1', 'Rimini', 'ons_per_res_pop', '49.9'), ('2018', 'IT508C1', 'Rimini', 'beds_per_1000res_pop', '501.9'), ('2018', 'IT509C1', 'Siracusa', 'ons', '749719'), ('2018', 'IT509C1', 'Siracusa', 'beds', '10453'), ('2018', 'IT509C1', 'Siracusa', 'ons_per_res_pop', '6.2'), ('2018', 'IT509C1', 'Siracusa', 'beds_per_1000res_pop', '86'), ('2018', 'IT510C1', 'Monza', 'ons', '229490'), ('2018', 'IT510C1', 'Monza', 'beds', '1942'), ('2018', 'IT510C1', 'Monza', 'ons_per_res_pop', '1.9'), ('2018', 'IT510C1', 'Monza', 'beds_per_1000res_pop', '15.7'), ('2018', 'IT511C1', 'Bergamo', 'ons', '636535'), ('2018', 'IT511C1', 'Bergamo', 'beds', '4727'), ('2018', 'IT511C1', 'Bergamo', 'ons_per_res_pop', '5.3'), ('2018', 'IT511C1', 'Bergamo', 'beds_per_1000res_pop', '39.1'), ('2018', 'IT512C1', 'Forlì', 'ons', '224361'), ('2018', 'IT512C1', 'Forlì', 'beds', '1493'), ('2018', 'IT512C1', 'Forlì', 'ons_per_res_pop', '1.9'), ('2018', 'IT512C1', 'Forlì', 'beds_per_1000res_pop', '12.7'), ('2018', 'IT513C1', 'Latina', 'ons', '177546'), ('2018', 'IT513C1', 'Latina', 'beds', '4933'), ('2018', 'IT513C1', 'Latina', 'ons_per_res_pop', '1.4'), ('2018', 'IT513C1', 'Latina', 'beds_per_1000res_pop', '39'), ('2018', 'IT514C1', 'Vicenza', 'ons', '619810'), ('2018', 'IT514C1', 'Vicenza', 'beds', '4695'), ('2018', 'IT514C1', 'Vicenza', 'ons_per_res_pop', '5.6'), ('2018', 'IT514C1', 'Vicenza', 'beds_per_1000res_pop', '42.1'), ('2018', 'IT515C1', 'Terni', 'ons', '209827'), ('2018', 'IT515C1', 'Terni', 'beds', '2825'), ('2018', 'IT515C1', 'Terni', 'ons_per_res_pop', '1.9'), ('2018', 'IT515C1', 'Terni', 'beds_per_1000res_pop', '25.4'), ('2018', 'IT516C1', 'Novara', 'ons', '144790'), ('2018', 'IT516C1', 'Novara', 'beds', '1434'), ('2018', 'IT516C1', 'Novara', 'ons_per_res_pop', '1.4'), ('2018', 'IT516C1', 'Novara', 'beds_per_1000res_pop', '13.8'), ('2018', 'IT517C1', 'Giugliano in Campania', 'ons', '277616'), ('2018', 'IT517C1', 'Giugliano in Campania', 'beds', '2918'), ('2018', 'IT517C1', 'Giugliano in Campania', 'ons_per_res_pop', '2.2'), ('2018', 'IT517C1', 'Giugliano in Campania', 'beds_per_1000res_pop', '23.5'), ('2018', 'IT518C1', 'Alessandria', 'ons', '151947'), ('2018', 'IT518C1', 'Alessandria', 'beds', '1250'), ('2018', 'IT518C1', 'Alessandria', 'ons_per_res_pop', '1.6'), ('2018', 'IT518C1', 'Alessandria', 'beds_per_1000res_pop', '13.3'), ('2018', 'IT519C1', 'Arezzo', 'ons', '434418'), ('2018', 'IT519C1', 'Arezzo', 'beds', '4343'), ('2018', 'IT519C1', 'Arezzo', 'ons_per_res_pop', '4.4'), ('2018', 'IT519C1', 'Arezzo', 'beds_per_1000res_pop', '43.7'), ('2018', 'IT520C1', 'Grosseto', 'ons', '1120975'), ('2018', 'IT520C1', 'Grosseto', 'beds', '19304'), ('2018', 'IT520C1', 'Grosseto', 'ons_per_res_pop', '13.7'), ('2018', 'IT520C1', 'Grosseto', 'beds_per_1000res_pop', '235.3'), ('2018', 'IT521C1', 'Brindisi', 'ons', '159399'), ('2018', 'IT521C1', 'Brindisi', 'beds', '1874'), ('2018', 'IT521C1', 'Brindisi', 'ons_per_res_pop', '1.8'), ('2018', 'IT521C1', 'Brindisi', 'beds_per_1000res_pop', '21.5'), ('2018', 'IT522C1', 'Trapani', 'ons', '173769'), ('2018', 'IT522C1', 'Trapani', 'beds', '2451'), ('2018', 'IT522C1', 'Trapani', 'ons_per_res_pop', '2.6'), ('2018', 'IT522C1', 'Trapani', 'beds_per_1000res_pop', '36.1'), ('2018', 'IT523C1', 'Ragusa', 'ons', '514334'), ('2018', 'IT523C1', 'Ragusa', 'beds', '10205'), ('2018', 'IT523C1', 'Ragusa', 'ons_per_res_pop', '7'), ('2018', 'IT523C1', 'Ragusa', 'beds_per_1000res_pop', '138.6'), ('2018', 'IT524C1', 'Andria', 'ons', '33947'), ('2018', 'IT524C1', 'Andria', 'beds', '976'), ('2018', 'IT524C1', 'Andria', 'ons_per_res_pop', '0.3'), ('2018', 'IT524C1', 'Andria', 'beds_per_1000res_pop', '9.8'), ('2018', 'IT525C1', 'Trani', 'ons', '94761'), ('2018', 'IT525C1', 'Trani', 'beds', '1579'), ('2018', 'IT525C1', 'Trani', 'ons_per_res_pop', '1.7'), ('2018', 'IT525C1', 'Trani', 'beds_per_1000res_pop', '28.2'), ('2018', 'IT526C1', 'L''Aquila', 'ons', '129211'), ('2018', 'IT526C1', 'L''Aquila', 'beds', '2609'), ('2018', 'IT526C1', 'L''Aquila', 'ons_per_res_pop', '1.9'), ('2018', 'IT526C1', 'L''Aquila', 'beds_per_1000res_pop', '37.6'), ('2018', 'CY', 'Cyprus', 'ons', null), ('2018', 'CY', 'Cyprus', 'beds', null), ('2018', 'CY', 'Cyprus', 'ons_per_res_pop', null), ('2018', 'CY', 'Cyprus', 'beds_per_1000res_pop', null), ('2018', 'CY001C1', 'Lefkosia', 'ons', null), ('2018', 'CY001C1', 'Lefkosia', 'beds', null), ('2018', 'CY001C1', 'Lefkosia', 'ons_per_res_pop', null), ('2018', 'CY001C1', 'Lefkosia', 'beds_per_1000res_pop', null), ('2018', 'LV', 'Latvia', 'ons', '5368739'), ('2018', 'LV', 'Latvia', 'beds', '41188'), ('2018', 'LV', 'Latvia', 'ons_per_res_pop', '2.8'), ('2018', 'LV', 'Latvia', 'beds_per_1000res_pop', '21.3'), ('2018', 'LV001C1', 'Riga', 'ons', '3281884'), ('2018', 'LV001C1', 'Riga', 'beds', '16229'), ('2018', 'LV001C1', 'Riga', 'ons_per_res_pop', '5.2'), ('2018', 'LV001C1', 'Riga', 'beds_per_1000res_pop', '25.7'), ('2018', 'LV002C1', 'Liepaja', 'ons', '156581'), ('2018', 'LV002C1', 'Liepaja', 'beds', '1292'), ('2018', 'LV002C1', 'Liepaja', 'ons_per_res_pop', '2.3'), ('2018', 'LV002C1', 'Liepaja', 'beds_per_1000res_pop', '18.7'), ('2018', 'LV003C1', 'Jelgava', 'ons', '23441'), ('2018', 'LV003C1', 'Jelgava', 'beds', '224'), ('2018', 'LV003C1', 'Jelgava', 'ons_per_res_pop', '0.4'), ('2018', 'LV003C1', 'Jelgava', 'beds_per_1000res_pop', '4'), ('2018', 'LV501C1', 'Daugavpils', 'ons', '99746'), ('2018', 'LV501C1', 'Daugavpils', 'beds', '915'), ('2018', 'LV501C1', 'Daugavpils', 'ons_per_res_pop', '1.2'), ('2018', 'LV501C1', 'Daugavpils', 'beds_per_1000res_pop', '11'), ('2018', 'LT', 'Lithuania', 'ons', '8091647'), ('2018', 'LT', 'Lithuania', 'beds', '89813'), ('2018', 'LT', 'Lithuania', 'ons_per_res_pop', '2.9'), ('2018', 'LT', 'Lithuania', 'beds_per_1000res_pop', '32'), ('2018', 'LT001C1', 'Vilnius', 'ons', '2212109'), ('2018', 'LT001C1', 'Vilnius', 'beds', '14958'), ('2018', 'LT001C1', 'Vilnius', 'ons_per_res_pop', '4'), ('2018', 'LT001C1', 'Vilnius', 'beds_per_1000res_pop', '27.3'), ('2018', 'LT002C1', 'Kaunas', 'ons', '558472'), ('2018', 'LT002C1', 'Kaunas', 'beds', '3921'), ('2018', 'LT002C1', 'Kaunas', 'ons_per_res_pop', '1.9'), ('2018', 'LT002C1', 'Kaunas', 'beds_per_1000res_pop', '13.6'), ('2018', 'LT003C1', 'Panevezys', 'ons', '45317'), ('2018', 'LT003C1', 'Panevezys', 'beds', '504'), ('2018', 'LT003C1', 'Panevezys', 'ons_per_res_pop', '0.5'), ('2018', 'LT003C1', 'Panevezys', 'beds_per_1000res_pop', '5.7'), ('2018', 'LT004C1', 'Alytus', 'ons', '21571'), ('2018', 'LT004C1', 'Alytus', 'beds', '342'), ('2018', 'LT004C1', 'Alytus', 'ons_per_res_pop', '0.4'), ('2018', 'LT004C1', 'Alytus', 'beds_per_1000res_pop', '6.6'), ('2018', 'LT501C1', 'Klaipeda', 'ons', '440110'), ('2018', 'LT501C1', 'Klaipeda', 'beds', '3507'), ('2018', 'LT501C1', 'Klaipeda', 'ons_per_res_pop', '3'), ('2018', 'LT501C1', 'Klaipeda', 'beds_per_1000res_pop', '23.6'), ('2018', 'LT502C1', 'Siauliai', 'ons', '136811'), ('2018', 'LT502C1', 'Siauliai', 'beds', '1122'), ('2018', 'LT502C1', 'Siauliai', 'ons_per_res_pop', '1.4'), ('2018', 'LT502C1', 'Siauliai', 'beds_per_1000res_pop', '11.2'), ('2018', 'LU', 'Luxembourg (Grand Duchy)', 'ons', null), ('2018', 'LU', 'Luxembourg (Grand Duchy)', 'beds', null), ('2018', 'LU', 'Luxembourg (Grand Duchy)', 'ons_per_res_pop', null), ('2018', 'LU', 'Luxembourg (Grand Duchy)', 'beds_per_1000res_pop', null), ('2018', 'LU001C1', 'Luxembourg', 'ons', null), ('2018', 'LU001C1', 'Luxembourg', 'beds', null), ('2018', 'LU001C1', 'Luxembourg', 'ons_per_res_pop', null), ('2018', 'LU001C1', 'Luxembourg', 'beds_per_1000res_pop', null), ('2018', 'HU', 'Hungary', 'ons', null), ('2018', 'HU', 'Hungary', 'beds', null), ('2018', 'HU', 'Hungary', 'ons_per_res_pop', null), ('2018', 'HU', 'Hungary', 'beds_per_1000res_pop', null), ('2018', 'HU001C1', 'Budapest', 'ons', null), ('2018', 'HU001C1', 'Budapest', 'beds', null), ('2018', 'HU001C1', 'Budapest', 'ons_per_res_pop', null), ('2018', 'HU001C1', 'Budapest', 'beds_per_1000res_pop', null), ('2018', 'HU002C1', 'Miskolc', 'ons', null), ('2018', 'HU002C1', 'Miskolc', 'beds', null), ('2018', 'HU002C1', 'Miskolc', 'ons_per_res_pop', null), ('2018', 'HU002C1', 'Miskolc', 'beds_per_1000res_pop', null), ('2018', 'HU003C1', 'Nyíregyháza', 'ons', null), ('2018', 'HU003C1', 'Nyíregyháza', 'beds', null), ('2018', 'HU003C1', 'Nyíregyháza', 'ons_per_res_pop', null), ('2018', 'HU003C1', 'Nyíregyháza', 'beds_per_1000res_pop', null), ('2018', 'HU004C1', 'Pécs', 'ons', null), ('2018', 'HU004C1', 'Pécs', 'beds', null), ('2018', 'HU004C1', 'Pécs', 'ons_per_res_pop', null), ('2018', 'HU004C1', 'Pécs', 'beds_per_1000res_pop', null), ('2018', 'HU005C1', 'Debrecen', 'ons', null), ('2018', 'HU005C1', 'Debrecen', 'beds', null), ('2018', 'HU005C1', 'Debrecen', 'ons_per_res_pop', null), ('2018', 'HU005C1', 'Debrecen', 'beds_per_1000res_pop', null), ('2018', 'HU006C1', 'Szeged', 'ons', null), ('2018', 'HU006C1', 'Szeged', 'beds', null), ('2018', 'HU006C1', 'Szeged', 'ons_per_res_pop', null), ('2018', 'HU006C1', 'Szeged', 'beds_per_1000res_pop', null), ('2018', 'HU007C1', 'Gyõr', 'ons', null), ('2018', 'HU007C1', 'Gyõr', 'beds', null), ('2018', 'HU007C1', 'Gyõr', 'ons_per_res_pop', null), ('2018', 'HU007C1', 'Gyõr', 'beds_per_1000res_pop', null), ('2018', 'HU008C1', 'Kecskemét', 'ons', null), ('2018', 'HU008C1', 'Kecskemét', 'beds', null), ('2018', 'HU008C1', 'Kecskemét', 'ons_per_res_pop', null), ('2018', 'HU008C1', 'Kecskemét', 'beds_per_1000res_pop', null), ('2018', 'HU009C1', 'Székesfehérvár', 'ons', null), ('2018', 'HU009C1', 'Székesfehérvár', 'beds', null), ('2018', 'HU009C1', 'Székesfehérvár', 'ons_per_res_pop', null), ('2018', 'HU009C1', 'Székesfehérvár', 'beds_per_1000res_pop', null), ('2018', 'HU010C1', 'Szombathely', 'ons', null), ('2018', 'HU010C1', 'Szombathely', 'beds', null), ('2018', 'HU010C1', 'Szombathely', 'ons_per_res_pop', null), ('2018', 'HU010C1', 'Szombathely', 'beds_per_1000res_pop', null), ('2018', 'HU011C1', 'Szolnok', 'ons', null), ('2018', 'HU011C1', 'Szolnok', 'beds', null), ('2018', 'HU011C1', 'Szolnok', 'ons_per_res_pop', null), ('2018', 'HU011C1', 'Szolnok', 'beds_per_1000res_pop', null), ('2018', 'HU012C1', 'Tatabánya', 'ons', null), ('2018', 'HU012C1', 'Tatabánya', 'beds', null), ('2018', 'HU012C1', 'Tatabánya', 'ons_per_res_pop', null), ('2018', 'HU012C1', 'Tatabánya', 'beds_per_1000res_pop', null), ('2018', 'HU013C1', 'Veszprém', 'ons', null), ('2018', 'HU013C1', 'Veszprém', 'beds', null), ('2018', 'HU013C1', 'Veszprém', 'ons_per_res_pop', null), ('2018', 'HU013C1', 'Veszprém', 'beds_per_1000res_pop', null), ('2018', 'HU014C1', 'Békéscsaba', 'ons', null), ('2018', 'HU014C1', 'Békéscsaba', 'beds', null), ('2018', 'HU014C1', 'Békéscsaba', 'ons_per_res_pop', null), ('2018', 'HU014C1', 'Békéscsaba', 'beds_per_1000res_pop', null), ('2018', 'HU015C1', 'Kaposvár', 'ons', null), ('2018', 'HU015C1', 'Kaposvár', 'beds', null), ('2018', 'HU015C1', 'Kaposvár', 'ons_per_res_pop', null), ('2018', 'HU015C1', 'Kaposvár', 'beds_per_1000res_pop', null), ('2018', 'HU016C1', 'Eger', 'ons', null), ('2018', 'HU016C1', 'Eger', 'beds', null), ('2018', 'HU016C1', 'Eger', 'ons_per_res_pop', null), ('2018', 'HU016C1', 'Eger', 'beds_per_1000res_pop', null), ('2018', 'HU017C1', 'Dunaújváros', 'ons', null), ('2018', 'HU017C1', 'Dunaújváros', 'beds', null), ('2018', 'HU017C1', 'Dunaújváros', 'ons_per_res_pop', null), ('2018', 'HU017C1', 'Dunaújváros', 'beds_per_1000res_pop', null), ('2018', 'HU018C1', 'Zalaegerszeg', 'ons', null), ('2018', 'HU018C1', 'Zalaegerszeg', 'beds', null), ('2018', 'HU018C1', 'Zalaegerszeg', 'ons_per_res_pop', null), ('2018', 'HU018C1', 'Zalaegerszeg', 'beds_per_1000res_pop', null), ('2018', 'HU019C1', 'Sopron', 'ons', null), ('2018', 'HU019C1', 'Sopron', 'beds', null), ('2018', 'HU019C1', 'Sopron', 'ons_per_res_pop', null), ('2018', 'HU019C1', 'Sopron', 'beds_per_1000res_pop', null), ('2018', 'MT', 'Malta', 'ons', '10114196'), ('2018', 'MT', 'Malta', 'beds', '43027'), ('2018', 'MT', 'Malta', 'ons_per_res_pop', '21.3'), ('2018', 'MT', 'Malta', 'beds_per_1000res_pop', '90.4'), ('2018', 'MT001C1', 'Valletta', 'ons', '4559034'), ('2018', 'MT001C1', 'Valletta', 'beds', '19098'), ('2018', 'MT001C1', 'Valletta', 'ons_per_res_pop', '19.5'), ('2018', 'MT001C1', 'Valletta', 'beds_per_1000res_pop', '81.9'), ('2018', 'NL', 'Netherlands', 'ons', null), ('2018', 'NL', 'Netherlands', 'beds', null), ('2018', 'NL', 'Netherlands', 'ons_per_res_pop', null), ('2018', 'NL', 'Netherlands', 'beds_per_1000res_pop', null), ('2018', 'NL001C2', 'Greater ''s-Gravenhage', 'ons', null), ('2018', 'NL001C2', 'Greater ''s-Gravenhage', 'beds', null), ('2018', 'NL001C2', 'Greater ''s-Gravenhage', 'ons_per_res_pop', null), ('2018', 'NL001C2', 'Greater ''s-Gravenhage', 'beds_per_1000res_pop', null), ('2018', 'NL002C2', 'Greater Amsterdam', 'ons', null), ('2018', 'NL002C2', 'Greater Amsterdam', 'beds', null), ('2018', 'NL002C2', 'Greater Amsterdam', 'ons_per_res_pop', null), ('2018', 'NL002C2', 'Greater Amsterdam', 'beds_per_1000res_pop', null), ('2018', 'NL003C2', 'Greater Rotterdam', 'ons', null), ('2018', 'NL003C2', 'Greater Rotterdam', 'beds', null), ('2018', 'NL003C2', 'Greater Rotterdam', 'ons_per_res_pop', null), ('2018', 'NL003C2', 'Greater Rotterdam', 'beds_per_1000res_pop', null), ('2018', 'NL004C2', 'Greater Utrecht', 'ons', null), ('2018', 'NL004C2', 'Greater Utrecht', 'beds', null), ('2018', 'NL004C2', 'Greater Utrecht', 'ons_per_res_pop', null), ('2018', 'NL004C2', 'Greater Utrecht', 'beds_per_1000res_pop', null), ('2018', 'NL005C2', 'Greater Eindhoven', 'ons', null), ('2018', 'NL005C2', 'Greater Eindhoven', 'beds', null), ('2018', 'NL005C2', 'Greater Eindhoven', 'ons_per_res_pop', null), ('2018', 'NL005C2', 'Greater Eindhoven', 'beds_per_1000res_pop', null), ('2018', 'NL006C1', 'Tilburg', 'ons', null), ('2018', 'NL006C1', 'Tilburg', 'beds', null), ('2018', 'NL006C1', 'Tilburg', 'ons_per_res_pop', null), ('2018', 'NL006C1', 'Tilburg', 'beds_per_1000res_pop', null), ('2018', 'NL007C1', 'Groningen', 'ons', null), ('2018', 'NL007C1', 'Groningen', 'beds', null), ('2018', 'NL007C1', 'Groningen', 'ons_per_res_pop', null), ('2018', 'NL007C1', 'Groningen', 'beds_per_1000res_pop', null), ('2018', 'NL008C1', 'Enschede', 'ons', null), ('2018', 'NL008C1', 'Enschede', 'beds', null), ('2018', 'NL008C1', 'Enschede', 'ons_per_res_pop', null), ('2018', 'NL008C1', 'Enschede', 'beds_per_1000res_pop', null), ('2018', 'NL009C2', 'Greater Arnhem', 'ons', null), ('2018', 'NL009C2', 'Greater Arnhem', 'beds', null), ('2018', 'NL009C2', 'Greater Arnhem', 'ons_per_res_pop', null), ('2018', 'NL009C2', 'Greater Arnhem', 'beds_per_1000res_pop', null), ('2018', 'NL010C2', 'Greater Heerlen', 'ons', null), ('2018', 'NL010C2', 'Greater Heerlen', 'beds', null), ('2018', 'NL010C2', 'Greater Heerlen', 'ons_per_res_pop', null), ('2018', 'NL010C2', 'Greater Heerlen', 'beds_per_1000res_pop', null), ('2018', 'NL011C1', 'Almere', 'ons', null), ('2018', 'NL011C1', 'Almere', 'beds', null), ('2018', 'NL011C1', 'Almere', 'ons_per_res_pop', null), ('2018', 'NL011C1', 'Almere', 'beds_per_1000res_pop', null), ('2018', 'NL012C1', 'Breda', 'ons', null), ('2018', 'NL012C1', 'Breda', 'beds', null), ('2018', 'NL012C1', 'Breda', 'ons_per_res_pop', null), ('2018', 'NL012C1', 'Breda', 'beds_per_1000res_pop', null), ('2018', 'NL013C1', 'Nijmegen', 'ons', null), ('2018', 'NL013C1', 'Nijmegen', 'beds', null), ('2018', 'NL013C1', 'Nijmegen', 'ons_per_res_pop', null), ('2018', 'NL013C1', 'Nijmegen', 'beds_per_1000res_pop', null), ('2018', 'NL014C1', 'Apeldoorn', 'ons', null), ('2018', 'NL014C1', 'Apeldoorn', 'beds', null), ('2018', 'NL014C1', 'Apeldoorn', 'ons_per_res_pop', null), ('2018', 'NL014C1', 'Apeldoorn', 'beds_per_1000res_pop', null), ('2018', 'NL015C1', 'Leeuwarden', 'ons', null), ('2018', 'NL015C1', 'Leeuwarden', 'beds', null), ('2018', 'NL015C1', 'Leeuwarden', 'ons_per_res_pop', null), ('2018', 'NL015C1', 'Leeuwarden', 'beds_per_1000res_pop', null), ('2018', 'NL016C2', 'Greater Sittard-Geleen', 'ons', null), ('2018', 'NL016C2', 'Greater Sittard-Geleen', 'beds', null), ('2018', 'NL016C2', 'Greater Sittard-Geleen', 'ons_per_res_pop', null), ('2018', 'NL016C2', 'Greater Sittard-Geleen', 'beds_per_1000res_pop', null), ('2018', 'NL018C1', 'Hilversum', 'ons', null), ('2018', 'NL018C1', 'Hilversum', 'beds', null), ('2018', 'NL018C1', 'Hilversum', 'ons_per_res_pop', null), ('2018', 'NL018C1', 'Hilversum', 'beds_per_1000res_pop', null), ('2018', 'NL020C1', 'Roosendaal', 'ons', null), ('2018', 'NL020C1', 'Roosendaal', 'beds', null), ('2018', 'NL020C1', 'Roosendaal', 'ons_per_res_pop', null), ('2018', 'NL020C1', 'Roosendaal', 'beds_per_1000res_pop', null), ('2018', 'NL021C2', 'Greater Nissewaard', 'ons', null), ('2018', 'NL021C2', 'Greater Nissewaard', 'beds', null), ('2018', 'NL021C2', 'Greater Nissewaard', 'ons_per_res_pop', null), ('2018', 'NL021C2', 'Greater Nissewaard', 'beds_per_1000res_pop', null), ('2018', 'NL023C1', 'Purmerend', 'ons', null), ('2018', 'NL023C1', 'Purmerend', 'beds', null), ('2018', 'NL023C1', 'Purmerend', 'ons_per_res_pop', null), ('2018', 'NL023C1', 'Purmerend', 'beds_per_1000res_pop', null), ('2018', 'NL026C1', 'Alphen aan den Rijn', 'ons', null), ('2018', 'NL026C1', 'Alphen aan den Rijn', 'beds', null), ('2018', 'NL026C1', 'Alphen aan den Rijn', 'ons_per_res_pop', null), ('2018', 'NL026C1', 'Alphen aan den Rijn', 'beds_per_1000res_pop', null), ('2018', 'NL028C1', 'Bergen op Zoom', 'ons', null), ('2018', 'NL028C1', 'Bergen op Zoom', 'beds', null), ('2018', 'NL028C1', 'Bergen op Zoom', 'ons_per_res_pop', null), ('2018', 'NL028C1', 'Bergen op Zoom', 'beds_per_1000res_pop', null), ('2018', 'NL030C1', 'Gouda', 'ons', null), ('2018', 'NL030C1', 'Gouda', 'beds', null), ('2018', 'NL030C1', 'Gouda', 'ons_per_res_pop', null), ('2018', 'NL030C1', 'Gouda', 'beds_per_1000res_pop', null), ('2018', 'NL031C1', 'Hoorn', 'ons', null), ('2018', 'NL031C1', 'Hoorn', 'beds', null), ('2018', 'NL031C1', 'Hoorn', 'ons_per_res_pop', null), ('2018', 'NL031C1', 'Hoorn', 'beds_per_1000res_pop', null), ('2018', 'NL032C2', 'Greater Middelburg', 'ons', null), ('2018', 'NL032C2', 'Greater Middelburg', 'beds', null), ('2018', 'NL032C2', 'Greater Middelburg', 'ons_per_res_pop', null), ('2018', 'NL032C2', 'Greater Middelburg', 'beds_per_1000res_pop', null), ('2018', 'NL501C2', 'Greater Haarlem', 'ons', null), ('2018', 'NL501C2', 'Greater Haarlem', 'beds', null), ('2018', 'NL501C2', 'Greater Haarlem', 'ons_per_res_pop', null), ('2018', 'NL501C2', 'Greater Haarlem', 'beds_per_1000res_pop', null), ('2018', 'NL502C1', 'Zaanstad', 'ons', null), ('2018', 'NL502C1', 'Zaanstad', 'beds', null), ('2018', 'NL502C1', 'Zaanstad', 'ons_per_res_pop', null), ('2018', 'NL502C1', 'Zaanstad', 'beds_per_1000res_pop', null), ('2018', 'NL503C1', '''s-Hertogenbosch', 'ons', null), ('2018', 'NL503C1', '''s-Hertogenbosch', 'beds', null), ('2018', 'NL503C1', '''s-Hertogenbosch', 'ons_per_res_pop', null), ('2018', 'NL503C1', '''s-Hertogenbosch', 'beds_per_1000res_pop', null), ('2018', 'NL504C1', 'Amersfoort', 'ons', null), ('2018', 'NL504C1', 'Amersfoort', 'beds', null), ('2018', 'NL504C1', 'Amersfoort', 'ons_per_res_pop', null), ('2018', 'NL504C1', 'Amersfoort', 'beds_per_1000res_pop', null), ('2018', 'NL505C1', 'Maastricht', 'ons', null), ('2018', 'NL505C1', 'Maastricht', 'beds', null), ('2018', 'NL505C1', 'Maastricht', 'ons_per_res_pop', null), ('2018', 'NL505C1', 'Maastricht', 'beds_per_1000res_pop', null), ('2018', 'NL507C2', 'Greater Leiden', 'ons', null), ('2018', 'NL507C2', 'Greater Leiden', 'beds', null), ('2018', 'NL507C2', 'Greater Leiden', 'ons_per_res_pop', null), ('2018', 'NL507C2', 'Greater Leiden', 'beds_per_1000res_pop', null), ('2018', 'NL508C1', 'Haarlemmermeer', 'ons', null), ('2018', 'NL508C1', 'Haarlemmermeer', 'beds', null), ('2018', 'NL508C1', 'Haarlemmermeer', 'ons_per_res_pop', null), ('2018', 'NL508C1', 'Haarlemmermeer', 'beds_per_1000res_pop', null), ('2018', 'NL509C1', 'Zoetermeer', 'ons', null), ('2018', 'NL509C1', 'Zoetermeer', 'beds', null), ('2018', 'NL509C1', 'Zoetermeer', 'ons_per_res_pop', null), ('2018', 'NL509C1', 'Zoetermeer', 'beds_per_1000res_pop', null), ('2018', 'NL511C1', 'Zwolle', 'ons', null), ('2018', 'NL511C1', 'Zwolle', 'beds', null), ('2018', 'NL511C1', 'Zwolle', 'ons_per_res_pop', null), ('2018', 'NL511C1', 'Zwolle', 'beds_per_1000res_pop', null), ('2018', 'NL512C2', 'Greater Ede', 'ons', null), ('2018', 'NL512C2', 'Greater Ede', 'beds', null), ('2018', 'NL512C2', 'Greater Ede', 'ons_per_res_pop', null), ('2018', 'NL512C2', 'Greater Ede', 'beds_per_1000res_pop', null), ('2018', 'NL513C1', 'Deventer', 'ons', null), ('2018', 'NL513C1', 'Deventer', 'beds', null), ('2018', 'NL513C1', 'Deventer', 'ons_per_res_pop', null), ('2018', 'NL513C1', 'Deventer', 'beds_per_1000res_pop', null), ('2018', 'NL514C2', 'Greater Alkmaar', 'ons', null), ('2018', 'NL514C2', 'Greater Alkmaar', 'beds', null), ('2018', 'NL514C2', 'Greater Alkmaar', 'ons_per_res_pop', null), ('2018', 'NL514C2', 'Greater Alkmaar', 'beds_per_1000res_pop', null), ('2018', 'NL515C1', 'Venlo', 'ons', null), ('2018', 'NL515C1', 'Venlo', 'beds', null), ('2018', 'NL515C1', 'Venlo', 'ons_per_res_pop', null), ('2018', 'NL515C1', 'Venlo', 'beds_per_1000res_pop', null), ('2018', 'NL516C1', 'Helmond', 'ons', null), ('2018', 'NL516C1', 'Helmond', 'beds', null), ('2018', 'NL516C1', 'Helmond', 'ons_per_res_pop', null), ('2018', 'NL516C1', 'Helmond', 'beds_per_1000res_pop', null), ('2018', 'NL517C1', 'Hengelo', 'ons', null), ('2018', 'NL517C1', 'Hengelo', 'beds', null), ('2018', 'NL517C1', 'Hengelo', 'ons_per_res_pop', null), ('2018', 'NL517C1', 'Hengelo', 'beds_per_1000res_pop', null), ('2018', 'NL519C1', 'Almelo', 'ons', null), ('2018', 'NL519C1', 'Almelo', 'beds', null), ('2018', 'NL519C1', 'Almelo', 'ons_per_res_pop', null),
/* Formatted on 21/07/2014 18:44:38 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRES_WRK_CONTROPARTITE_ITF ( ID_DPER, COD_ABI, COD_CONTROPARTITA, COD_TIPO, COD_DIVISA, VAL_IMPORTO, COD_FILIALE, COD_AUTORIZZAZIONE ) AS SELECT -- 20121107 AG Created this view id_dper, DECODE (cod_abi, '3069', '01025', cod_abi) cod_abi, cod_contropartita, cod_tipo, cod_divisa, val_importo, cod_filiale, cod_autorizzazione FROM t_mcres_wrk_xml_itf, XMLTABLE ( '/SPESE/SPESA/CONTROPARTITE/CONTROPARTITA' PASSING t_mcres_wrk_xml_itf.xml_content COLUMNS id_dper VARCHAR2 (200) PATH 'id_dper', COD_Abi VARCHAR2 (255) PATH 'COD_Abi', COD_Contropartita VARCHAR2 (255) PATH 'COD_Contropartita', Cod_Tipo VARCHAR2 (255) PATH 'Cod_Tipo', Cod_Divisa VARCHAR2 (255) PATH 'Cod_Divisa', Val_Importo VARCHAR2 (255) PATH 'Val_Importo', Cod_Filiale VARCHAR2 (255) PATH 'Cod_Filiale', Cod_Autorizzazione VARCHAR2 (255) PATH 'Cod_Autorizzazione');
COPY data FROM '/data/data.csv' WITH CSV;
CREATE TABLE `employee` ( `employee_id` int NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `mobile` bigint DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `dept_id` int DEFAULT NULL, `salary` int DEFAULT NULL, `doj` datetime DEFAULT NULL, `degree` varchar(100) DEFAULT NULL, `address` varchar(200) DEFAULT NULL, `is_active` varchar(100) DEFAULT NULL, PRIMARY KEY (`employee_id`), KEY `dept_id` (`dept_id`), CONSTRAINT `employee_ibfk_1` FOREIGN KEY (`dept_id`) REFERENCES `department` (`dept_id`) ) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
CREATE database biblioteca CREATE TABLE libros ( codigo_libro int(10) primary key, nombre_libro varchar(30) not null, autor_libro varchar(30) not null, tipo_de_libro varchar(30) not null, estado_del_libro varchar(12) not null ) CREATE UNIQUE INDEX INDICE1 ON libros (codigo_libro) CREATE TABLE usuario ( id int (10) PRIMARY KEY AUTO_INCREMENT, nombre varchar(30) not null, apellido varchar(30) not null, user varchar(8) not null, contraseña varchar(10) not null, tipo_de_usuario varchar(12) not null ) CREATE UNIQUE INDEX INDICE2 ON usuario (user) INSERT INTO usuario VALUES ('','rafael','inclan','rafa','rony','admin') CREATE TABLE prestarlibros ( matricula int (6) primary key, alumno varchar(30) not null, apellido varchar(30) not null, nombre_libro varchar(30) not null, codigo_libro int (10) not null, FOREIGN KEY(codigo_libro) REFERENCES libros(codigo_libro) ) INSERT into prestarlibros VALUES ('59025','raf','inclan','python','22222') INSERT into prestarlibros VALUES ('59075','raf','inclan','python','20002')
/* Create table tblCustomer */ CREATE TABLE tblCustomer ( CustomerID NUMBER(6), FirstName VARCHAR2(20) NOT NULL, LastName VARCHAR2(20) NOT NULL, Address VARCHAR2(50) NOT NULL, Zip CHAR(5) NOT NULL, Phone CHAR(12) NOT NULL, DOB DATE NOT NULL, GENDER CHAR(1) NOT NULL ); /* Add primary_key to the table Customer */ ALTER TABLE tblCustomer ADD CONSTRAINT tblCustomer_CustomerID_pk PRIMARY KEY(CustomerID); /* Create table tblMovie */ CREATE TABLE tblMovie ( MovieID NUMBER(6), MovieName VARCHAR2(100), MovieGenre VARCHAR2(50), MovieReleaseDate DATE, MovieDistributor VARCHAR2(50) ); /* Add primary key to the table Movie */ ALTER TABLE tblMovie ADD CONSTRAINT tblMovie_MovieID_pk PRIMARY KEY(MovieID); /* Create table tblRental */ CREATE TABLE tblRental ( CustomerID NUMBER(6), MovieID NUMBER(6), RentalDate DATE NOT NULL, ReturnDate DATE NOT NULL ); /* Modify table Rental to add foreign keys */ ALTER TABLE tblRental ADD CONSTRAINT tblRental_CustomerID_fk FOREIGN KEY(CustomerID) REFERENCES tblCustomer(CustomerID); ALTER TABLE tblRental ADD CONSTRAINT tblRental_MovieID_fk FOREIGN KEY(MovieID) REFERENCES tblMovie(MovieID); ALTER TABLE tblRental ADD CONSTRAINT tblRental_ReturnDate_ck CHECK (RentalDate <= ReturnDate);
USE `PrivateSchool`; -- Read all data fom tables SELECT * FROM `students`; SELECT * FROM `trainers`; SELECT * FROM `assignments`; SELECT * FROM `courses`; -- Read all students per course (here: id = 1) SELECT * FROM `students` JOIN `students_in_courses` ON `students_in_courses`.`students_id` = `students`.`id` WHERE `students_in_courses`.`courses_id` = '1'; -- Read all trainers per course (here: id = 1) SELECT * FROM `trainers` JOIN `trainers_in_courses` ON `trainers_in_courses`.`trainers_id` = `trainers`.`id` WHERE `trainers_in_courses`.`courses_id` = '1'; -- Read all assignments per course(here: id = 1) SELECT * FROM `assignments` JOIN `assignments_in_courses` ON `assignments_in_courses`.`assignments_id` = `assignments`.`id` WHERE `assignments_in_courses`.`courses_id` = '1'; -- Read all studets that are registered to more than one courses SELECT * FROM `students` AS S, (SELECT `students_id`, COUNT(*) occurences FROM `students_in_courses` GROUP BY `students_id` HAVING COUNT(*) > 1) AS `T` WHERE `T`.`students_id` = `S`.`id`; -- Read all the assignments per course per student (here: course:2, student:1) SELECT * FROM `assignments` JOIN `assignments_in_courses` ON `assignments_in_courses`.`assignments_id` = `assignments`.`id` JOIN `students_in_courses` ON `students_in_courses`.`courses_id` = `assignments_in_courses`.`courses_id` WHERE `assignments_in_courses`.`courses_id` = '2' and `students_in_courses`.`students_id` = '1'; -- read occurence of assignment with assignment id and course id (here 1) SELECT COUNT(1) FROM `assignments_in_courses` WHERE `assignments_in_courses`.`assignments_id` = '1' AND `assignments_in_courses`.`courses_id` = '1';
create database Training use Training create table student(ID int, FirstName varchar(10),LastName varchar(10),Location varchar(10)); insert into student values(101,'Aishwarya','Jadhav','Solapur'); insert into student values(102,'Asmita','Jadhav','Delhi'); insert into student values(103,'Aasha','Waghmode','Mumbai'); insert into student values(104,'varsha','Aainure','Chennai'); insert into student values(105,'Manasi','Wabhuvan','Pune'); select * from student create table Employee(ID int,EmpName varchar(50),Designation varchar(10),Location varchar(10)) insert into Employee values(1001,'Raj','Manager','Hyderabad') insert into Employee values(1002,'shivani','HR','Mumbai') insert into Employee values(1003,'Dev','Intern','Solapur') insert into Employee values(1004,'Roma','Engineer','Pune') insert into Employee values(1005,'Dezy','Manager','Hyderabad') select * from Employee create table Indian_Cricket_Team(Juesey_No int,FirstName varchar(30),LastName varchar(30),No_of_Centuries int) insert into Indian_Cricket_Team values(18,'Virat','Kohali',20) insert into Indian_Cricket_Team values(19,'MS','Dhoni',50) insert into Indian_Cricket_Team values(20,'sachin','Tendulakar',51) insert into Indian_Cricket_Team values(15,'Rohit','Sharma',20) insert into Indian_Cricket_Team values(14,'Kedar','Jadhav',21) select * from Indian_Cricket_Team create table Indian_Railway_System(Train_no int,TrainName varchar(50),source varchar(50),destination varchar(50),Time_arrival time) insert into Indian_Railway_System values(2121,'RajDhaniExpress','solapur','Pune','10:30') insert into Indian_Railway_System values(2121,'DurontoExpress','Delhi','Pune','11:30') insert into Indian_Railway_System values(2121,'ShatabdiExpress','Chennai','Kolhapur','12:30') insert into Indian_Railway_System values(2120,'RajDhaniExpress','solapur','Pune','01:30') select * from Indian_Railway_System create table Bank(EmpID int,EmpName varchar(max),Department varchar(50),Location varchar(30)) insert into Bank values(2001,'RajSingh','Bancking_dept','Pune') insert into Bank values(2002,'DevDarekar','Issue_dept','Kolhapur') insert into Bank values(2003,'SamRoma','ExchangeControl_dept','Sangli') insert into Bank values(2004,'KristalDezy','Bancking_dept','Noida') insert into Bank values(2005,'RaniSingh','Bancking_dept','Pune') select * from Bank
INSERT INTO "AUTH_USER" (ID, PASSWORD, LAST_LOGIN, IS_SUPERUSER, USERNAME, FIRST_NAME, LAST_NAME, EMAIL, IS_STAFF, IS_ACTIVE, DATE_JOINED) VALUES (1, 'pbkdf2_sha256$36000$8i9JpNBCORum$8pCSw54e/vDhjHThh/h0X2kNjWxtfpC0BQ1liJY//kA=', '25.12.17 20:51:17,254815000', 0, 'ivan', 'Other', 'User', 'other@gmail.com', 0, 1, '25.12.17 20:51:16,924236000'); COMMIT; INSERT INTO "AUTH_USER" (ID, PASSWORD, LAST_LOGIN, IS_SUPERUSER, USERNAME, FIRST_NAME, LAST_NAME, EMAIL, IS_STAFF, IS_ACTIVE, DATE_JOINED) VALUES (2, 'pbkdf2_sha256$36000$1S4DFxOz9gIm$YhPgDjZxgxOez55AC4wZ/duwAAHyYOGk+gmcuC+ah9k=', '25.12.17 20:56:29,440541000', 1, 'IvantheTerrible', 'Admin', 'Admin', 'admin@gmail.com', 1, 1, '25.12.17 20:54:52,687304000'); COMMIT; pbkdf2_sha256$36000$8i9JpNBCORum$8pCSw54e/vDhjHThh/h0X2kNjWxtfpC0BQ1liJY//kA= INSERT INTO "TVPACKAGES_TVPACKAGE" (ID, PACKAGE_PRICE, PACKAGE_NAME, DESCRIPTION) VALUES (1, 40, 'Package1', 'Description1'); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE" (ID, PACKAGE_PRICE, PACKAGE_NAME, DESCRIPTION) VALUES (2, 60, 'Package2', 'Description2'); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE" (ID, PACKAGE_PRICE, PACKAGE_NAME, DESCRIPTION) VALUES (3, 80, 'Package3', 'Description3'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (1, 'Channel1', 'Language1', 'Time1', 'Description1'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (2, 'Channel2', 'Language2', 'Time2', 'Description2'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (3, 'Channel3', 'Language3', 'Time3', 'Description3'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (4, 'Channel4', 'Language4', 'Time4', 'Description4'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (5, 'Channel5', 'Language5', 'Time5', 'Description5'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (6, 'Channel6', 'Language6', 'Time6', 'Description6'); COMMIT; INSERT INTO "TVPACKAGES_TVCHANNEL" (ID, CHANNEL_NAME, CHANNEL_LANGUAGE, TIME_OF_BROADCASTING, DESCRIPTION) VALUES (7, 'Channel7', 'Language7', 'Time7', 'Description7'); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (1, 1, 1); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (2, 1, 2); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (3, 1, 3); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (4, 2, 2); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (5, 2, 4); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (6, 2, 5); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (7, 2, 7); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (8, 3, 6); COMMIT; INSERT INTO "TVPACKAGES_TVPACKAGE_CHANNEL" (ID, TVPACKAGE_ID, TVCHANNEL_ID) VALUES (9, 3, 7); COMMIT; INSERT INTO "TVPACKAGES_ORDER" (ID, IS_DELETED, TV_PACKAGE_ID, USER_ID) VALUES (1, 1, 2, 2); COMMIT; INSERT INTO "TVPACKAGES_ORDER" (ID, IS_DELETED, TV_PACKAGE_ID, USER_ID) VALUES (2, 1, 2, 2); COMMIT; INSERT INTO "TVPACKAGES_ORDER" (ID, IS_DELETED, TV_PACKAGE_ID, USER_ID) VALUES (3, 0, 2, 2); COMMIT;
delete MOVIE_ACTOR from MOVIE_ACTOR join ACTOR on (ACTOR.Actorid=MOVIE_ACTOR.Actorid and ACTOR.Name like 'TOM%');
create table MENU_INFO ( ID bigint not null, FOOD_ID varchar(20) null, FOOD_NAME varchar(64) null, FOOD_TYPE varchar(32) null, SOURCE varchar(64) null, PRICE NUMERIC (18,2) null, COUNT NUMERIC (18,2) null, PICTURE varchar(256) null, DEL_FLG varchar(2) null, CREATE_TIME timestamp null, CREATE_BY varchar(32) null, UPDATE_TIME timestamp null, UPDATE_BY varchar(32) null, constraint PK_MENU_INFO primary key (ID) ); create table RESTAURANT ( ID bigint not null, RESTAURANT_ID varchar(20) null, RESTAURANT_NAME varchar(64) null, DEL_FLG varchar(2) null, CREATE_TIME timestamp null, CREATE_BY varchar(32) null, UPDATE_TIME timestamp null, UPDATE_BY varchar(32) null, constraint PK_RESTAURANT primary key (ID) ); create table USER_INFO ( ID bigint not null, USER_ID varchar(20) null, USER_NAME varchar(32) null, EMAIL varchar(64) null, PASSWORD varchar(32) null, DEL_FLG varchar(2) null, CREATE_TIME timestamp null, CREATE_BY varchar(32) null, UPDATE_TIME timestamp null, UPDATE_BY varchar(32) null, constraint PK_USER_INFO primary key (ID) ); create table ORDER_INFO ( ID bigint not null, USER_ID varchar(20) null, USER_NAME varchar(20) null, FOOD_ID varchar(20) null, FOOD_NAME varchar(64) null, SOURCE varchar(64) null, PRICE NUMERIC (18,2) null, DEL_FLG varchar(2) null, CREATE_TIME timestamp null, CREATE_BY varchar(32) null, UPDATE_TIME timestamp null, UPDATE_BY varchar(32) null, constraint PK_ORDER_INFO primary key (ID) ); create table RULE ( ID bigint not null, RULE_TYPE varchar(20) null, RULE_KEY varchar(20) null, RULE_VALUE varchar(20) null, DEL_FLG varchar(2) null, CREATE_TIME timestamp null, CREATE_BY varchar(32) null, UPDATE_TIME timestamp null, UPDATE_BY varchar(32) null, constraint PK_RULE primary key (ID) );
create database seguranca; use seguranca; create table user( id int primary key not null auto_increment, email varchar(30) not null, password varchar(32) not null); create table role( id int primary key not null, name varchar(30) not null ); create table user_role( user_id int not null, role_id int not null, PRIMARY KEY(user_id,role_id), FOREIGN KEY (user_id) REFERENCES user(id), FOREIGN KEY (role_id) REFERENCES role(id) ); -- adicionar roles INSERT INTO role(id,name) VALUES (1,'APLICATIVO-R'); INSERT INTO role(id,name) VALUES (2, 'APLICATIVO-X'); INSERT INTO role(id,name) VALUES (3,'APLICATIVO-Y'); -- adicionar usuario INSERT INTO user (email,password)VALUES('user1@gmail.com','passwd1'); INSERT INTO user (email,password)VALUES('user2@gmail.com','passwd2'); -- adicionar relação entre user e role INSERT INTO user_role(user_id,role_id)VALUES(1,3); INSERT INTO user_role(user_id,role_id)VALUES(2,2);
CREATE TABLE `admin` ( `Admin_id` int(1) NOT NULL PRIMARY KEY AUTO_INCREMENT, `Firstname` VARCHAR(225) NOT NULL, `Lastname` VARCHAR(225) NOT NULL, `Phone_number` VARCHAR(11) NOT NULL, `Address` VARCHAR(200) NOT null, `Position` VARCHAR(30) NOT NULL, `Password` VARCHAR(200) NOT NULL, `Date_registered` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP )ENGINE=InnoDB DEFAULT CHARSET=latin1;
update KRIM_PRNCPL_T set ACTV_IND = 'N' where actv_ind = 'Y' and prncpl_nm not in ( 'quickstart' , 'admin' , 'jtester' ); select * from KRIM_PRNCPL_T where ACTV_IND = 'Y'; update KRIM_PRNCPL_T set ACTV_IND = 'Y';
/* ESTE SCRIPT CRIA A TABELA ESTADO E INSERE TODOS ESTADOS E SEUS RESPECTIVO UF */ USE gastos_parlamentares_db; -- TABELA ESTADO DROP TABLE IF EXISTS estado; CREATE TABLE estado ( id INT, nome VARCHAR(255) NOT NULL, uf VARCHAR(02) NOT NULL ); ALTER TABLE estado MODIFY id INT AUTO_INCREMENT PRIMARY KEY; -- INSERE DADOS NA TABELA ESTADO INSERT INTO estado(nome, uf) VALUES("Acre", "AC"); INSERT INTO estado(nome, uf) VALUES("Alagoas", "AL"); INSERT INTO estado(nome, uf) VALUES("Amapá", "AP"); INSERT INTO estado(nome, uf) VALUES("Amazonas", "AM"); INSERT INTO estado(nome, uf) VALUES("Bahia", "BA"); INSERT INTO estado(nome, uf) VALUES("Ceará", "CE"); INSERT INTO estado(nome, uf) VALUES("Distrito Federal", "DF"); INSERT INTO estado(nome, uf) VALUES("Espírito Santo", "ES"); INSERT INTO estado(nome, uf) VALUES("Goiás", "GO"); INSERT INTO estado(nome, uf) VALUES("Maranhão", "MA"); INSERT INTO estado(nome, uf) VALUES("Mato Grosso", "MT"); INSERT INTO estado(nome, uf) VALUES("Mato Grosso do Sul", "MS"); INSERT INTO estado(nome, uf) VALUES("Minas Gerais", "MG"); INSERT INTO estado(nome, uf) VALUES("Pará", "PA"); INSERT INTO estado(nome, uf) VALUES("Paraíba", "PB"); INSERT INTO estado(nome, uf) VALUES("Paraná", "PR"); INSERT INTO estado(nome, uf) VALUES("Pernambuco", "PE"); INSERT INTO estado(nome, uf) VALUES("Piauí", "PI"); INSERT INTO estado(nome, uf) VALUES("Rio de Janeiro", "RJ"); INSERT INTO estado(nome, uf) VALUES("Rio Grande do Norte", "RN"); INSERT INTO estado(nome, uf) VALUES("Rio Grande do Sul", "RS"); INSERT INTO estado(nome, uf) VALUES("Rondônia", "RO"); INSERT INTO estado(nome, uf) VALUES("Roraima", "RR"); INSERT INTO estado(nome, uf) VALUES("Sergipe", "SE"); INSERT INTO estado(nome, uf) VALUES("Santa Catarina", "SC"); INSERT INTO estado(nome, uf) VALUES("São Paulo", "SP"); INSERT INTO estado(nome, uf) VALUES("Tocantins ", "TO"); INSERT INTO estado(nome, uf) VALUES("Estado não definido", "ND"); ALTER TABLE estado ADD COLUMN image VARCHAR(255) UPDATE estado SET image = '/images/estados/acre.png' WHERE id = 1; UPDATE estado SET image = '/images/estados/alagoas.png' WHERE id = 2; UPDATE estado SET image = '/images/estados/amapa.png' WHERE id = 3; UPDATE estado SET image = '/images/estados/amazonas.png' WHERE id = 4; UPDATE estado SET image = '/images/estados/bahia.png' WHERE id = 5; UPDATE estado SET image = '/images/estados/ceara.png' WHERE id = 6; UPDATE estado SET image = '/images/estados/distrito_federal.png' WHERE id = 7; UPDATE estado SET image = '/images/estados/espirito_santo.png' WHERE id = 8; UPDATE estado SET image = '/images/estados/goias.png' WHERE id = 9; UPDATE estado SET image = '/images/estados/maranhao.png' WHERE id = 10; UPDATE estado SET image = '/images/estados/mato_grosso.png' WHERE id = 11; UPDATE estado SET image = '/images/estados/mato_grosso_do_sul.png' WHERE id = 12; UPDATE estado SET image = '/images/estados/minas_gerais.png' WHERE id = 13; UPDATE estado SET image = '/images/estados/para.png' WHERE id = 14; UPDATE estado SET image = '/images/estados/paraiba.png' WHERE id = 15; UPDATE estado SET image = '/images/estados/parana.png' WHERE id = 16; UPDATE estado SET image = '/images/estados/pernambuco.png' WHERE id = 17; UPDATE estado SET image = '/images/estados/piaui.png' WHERE id = 18; UPDATE estado SET image = '/images/estados/rio_de_janeiro.png' WHERE id = 19; UPDATE estado SET image = '/images/estados/rio_grande_do_norte.png' WHERE id = 20; UPDATE estado SET image = '/images/estados/rio_grande_do_sul.png' WHERE id = 21; UPDATE estado SET image = '/images/estados/rondonia.png' WHERE id = 22; UPDATE estado SET image = '/images/estados/roraima.png' WHERE id = 23; UPDATE estado SET image = '/images/estados/sergipe.png' WHERE id = 24; UPDATE estado SET image = '/images/estados/santa_catarina.png' WHERE id = 25; UPDATE estado SET image = '/images/estados/sao_paulo.png' WHERE id = 26; UPDATE estado SET image = '/images/estados/tocantins.png' WHERE id = 27; UPDATE estado SET image = '/images/estados/estado_nao_definido.png' WHERE id = 28;
use employees; EXPLAIN SELECT E.emp_no, CONCAT(first_name, ' ',last_name) FROM employees E WHERE NOT EXISTS( SELECT * FROM departments D WHERE NOT EXISTS( SELECT * FROM dept_emp DE WHERE DE.dept_no=D.dept_no and E.emp_no=DE.emp_no ))
CREATE TABLE JRole ( num number, --序号 RoleID varchar(10) primary key, --角色ID RoleName varchar(50) , --角色名称 modelid varchar(50), --模块ID departflag varchar(10), --部门管理 remark varchar (200) --备注 ) /* drop table JRole */
; CREATE USER IF NOT EXISTS "USER" SALT '153caadf6c3b2e3a' HASH '9f51802a9c216da3c2bd6f2dddd776704acf2ecdc7442f4e34d978aabe2e9fd6' ADMIN; CREATE SEQUENCE "PUBLIC"."SYSTEM_SEQUENCE_E56ECFFF_C98B_466A_B89F_ED72C3290398" START WITH 3 BELONGS_TO_TABLE; CREATE CACHED TABLE "PUBLIC"."TESTFILES"( "IDFILE" BIGINT DEFAULT NEXT VALUE FOR "PUBLIC"."SYSTEM_SEQUENCE_E56ECFFF_C98B_466A_B89F_ED72C3290398" NOT NULL NULL_TO_DEFAULT SEQUENCE "PUBLIC"."SYSTEM_SEQUENCE_E56ECFFF_C98B_466A_B89F_ED72C3290398", "FILE" BLOB ); ALTER TABLE "PUBLIC"."TESTFILES" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_6" PRIMARY KEY("IDFILE"); -- 1 +/- SELECT COUNT(*) FROM PUBLIC.TESTFILES;
-- Needs to be run from APEX SQL Workshop -- I use it heaps as sanity check for apex emailing begin apex_mail.send (p_to => 'wesleys@sage.com.au' ,p_from => 'wesleys@sage.com.au' ,p_body => 'text/html; charset=us-ascii' ,p_body_html => 'hello <b>universe</b>' ,p_subj => 'test send 1' ,p_cc => null -- 'internal_copy@sage.com.au' -- v('P59_CC') ); end; / -- Haven’t tried this one in a while declare l_data blob; l_len number; l_id number; begin read_local_binary_data (p_data => l_data ,p_len => l_len ,p_dir => 'JOB_1311260' -- succeeds ,p_file => '1311260SW.pdf'); apx_util.debug('l_len:'||l_len,p_src=>'blob',p_commit=>true); dbms_output.put_line('l_len:'||l_len); l_id:=apex_mail.send (p_to => 'wesleys@sage.com.au' ,p_from => 'wesleys@sage.com.au' ,p_body => 'text/html; charset=us-ascii' ,p_body_html => 'hello <b>universe</b>' ,p_subj => 'test attach 1' ,p_cc => null -- 'internal_copy@sage.com.au' -- v('P59_CC') ); APEX_MAIL.ADD_ATTACHMENT( p_mail_id => l_id, p_attachment => l_data, p_filename => '1311260SW.pdf', p_mime_type => 'application/pdf'); end; / -- Run these from APEX SQL Workshop: SELECT * from APEX_MAIL_LOG ORDER BY LAST_UPDATED_ON DESC; -- The next one will normally be empty, unless just prior to a queue purge (every 15 min?) or an error happened, then it will be retried 10X before finally being purged: SELECT * from APEX_MAIL_QUEUE ORDER BY LAST_UPDATED_ON DESC; SELECT id , mail_to , mail_from , mail_replyto , mail_subj , mail_cc , mail_bcc , mail_body , mail_body_html , mail_send_count , mail_send_error , last_updated_by , TO_CHAR(last_updated_on, 'DD-MON-YYYY HH24:MI:SS') from APEX_MAIL_QUEUE ORDER BY LAST_UPDATED_ON DESC; select mail_to , mail_from , mail_replyto , mail_subj , mail_cc , mail_bcc , mail_send_error , to_char(last_updated_on, 'DD-MON-YYYY HH24:MI:SS') from APEX_MAIL_LOG ORDER BY last_updated_on DESC; -- Looks like email record in APEX_MAIL_LOG is created by SYS when manually pushed BEGIN APEX_MAIL.PUSH_QUEUE; END;
-- 25/12/2014 - Fixing type of 'total' in orders table ALTER TABLE `orders` CHANGE `total` `total` DECIMAL(8,2);
CREATE TABLE STUDENT_INFO ( SID INT UNIQUE, STUD_NAME VARCHAR(20) NOT NULL, STUDE_SCORE NUMERIC(5,2) DEFAULT 20 ); SELECT * FROM STUDENT_INFO; DESCRIBE STUDENT_INFO; ALTER TABLE STUDENT_INFO ADD PRIMARY KEY(SID); INSERT INTO STUDENT_INFO VALUES(1,'ALEENA',180),(2,'BINU',175), (3,'CHERIN',151),(4,'DEEN',165),(5,'ELSA',176); CREATE TABLE WORKER ( WORKER_ID INT, FIRST_NAME VARCHAR(15), LAST_NAME VARCHAR(15), SALARY NUMERIC(8), JOINING_DATE DATE, DEPARTMENT VARCHAR (15) ); DESCRIBE WORKER; CREATE TABLE BONUS ( WORKER_ID INT, BONUS_DATE DATE, BONUS_AMOUNT NUMERIC(6) ); ALTER TABLE WORKER ADD PRIMARY KEY (WORKER_ID); ALTER TABLE BONUS ADD CONSTRAINT FK_COD_CSD FOREIGN KEY(WORKER_ID) REFERENCES WORKER (WORKER_ID) ON DELETE CASCADE ; INSERT INTO WORKER VALUES (1,'monika','arora',100000,'2014-02-20','hr'),(2,'niharika','verma',80000,'2014-06-11','admin'), (3,'vishal','singhal',300000,'2014-02-20','hr'),(4,'amithabh','singh',500000,'2014-02-20','admin'), (5,'vivek','bhati',500000,'2014-06-11','admin'), (6,'vipul','diwan',200000,'2014-06-11','account'), (7,'satich','kumar',75000,'2014-01-20','admin'); INSERT INTO WORKER VALUES(8,'Geetika','Chauhan',90000,'2014-04-11','admin'); select *from WORKER; INSERT INTO BONUS VALUES (1,'2016-02-20',5000),(2,'2016-06-11',3000),(3,'2016-02-20',4000),(1,'2016-02-20',4500), (2,'2016-06-11',3500); select *from BONUS; SELECT FIRST_NAME AS WORKER FROM WORKER; SELECT * FROM worker ORDER BY trim(first_name) ASC ; SELECT * FROM worker WHERE trim(first_name) != 'vipul' AND trim(first_name) != 'satich'; SELECT *from worker where department='admin'; SELECT * FROM worker WHERE salary BETWEEN 100000 AND 500000; SELECT upper(first_name) FROM worker; SELECT distinct DEPARTMENT FROM worker; SELECT SUBSTR(first_name, 1, 3) AS small FROM worker; SELECT rtrim(first_name) FROM worker; SELECT ltrim(department) FROM worker; SELECT distinct department, LENGTH(department) FROM worker ; SELECT REPLACE(first_name, 'a', 'A') AS fname FROM worker; SELECT first_name,last_name,department,salary,bonus_amount FROM worker,bonus WHERE worker.worker_id = bonus.worker_id AND bonus_amount > 4000 ; DELETE from worker WHERE worker_id=7; SELECT * FROM worker; ALTER TABLE bonus DROP CONSTRAINT fk_cod_csd; ALTER TABLE bonus ADD CONSTRAINT fk_cod_na FOREIGN KEY(Worker_ID) REFERENCES worker(Worker_ID) ON DELETE no action ; DELETE from worker WHERE worker_id=8; SELECT * FROM worker;
create table c_article_list ( id int not null auto_increment, -- 主键id article_id varchar(50), -- 文章id title varchar(100), -- 文章标题 author varchar(50), -- 作者 article_abstract text, -- 文章摘要 link varchar(500), -- 文章链接 image_link varchar(500), -- 图片链接 article_type varchar(50), -- 小说类型 status int not null default 0, -- 状态 0 - 默认 1 - 已经抓取,但是没有完结 2 - 完结,不用继续抓取 primary key(id) -- 设置id为主键 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; create table c_article_detail ( id int not null auto_increment, -- 主键id -- 自增长 article_id varchar(50), -- 文章id title varchar(100), -- 文章标题 image_link varchar(500), -- 图片链接 author varchar(50), -- 作者 update_status varchar(10), -- 更新或者完结状态 last_update_date varchar(50), -- 最后更新时间 last_update_directory varchar (50), -- 最后更新章节 article_directory varchar(50), -- 章节名称 article_directory_link varchar(50), -- 章节链接 content text, -- 内容 status int not null default 0, -- 状态 0: default; 1: processed; 3: crawled primary key(id) -- 设置id为主键 )ENGINE=MyISAM DEFAULT CHARSET=utf8;
--Challenge 1 select e.emp_no,e.first_name,e.last_name,t.title,t.from_date,t.to_date into retirement_titles from titles as t inner join employees as e on e.emp_no=t.emp_no where (birth_date >= '1952-01-01' and birth_date < '1955-12-31') --where e.birth_date between '1952-01-01' and '1955-12-31' order by e.emp_no select * from retirement_titles -- Obtain distinct values --Use Dictinct with Orderby to remove duplicate rows SELECT DISTINCT ON (retirement_titles.emp_no) retirement_titles.emp_no, retirement_titles.first_name, retirement_titles.last_name, retirement_titles.title INTO unique_titles_table FROM retirement_titles ORDER BY retirement_titles.emp_no,retirement_titles.to_date DESC; --retrieve the number of employees by their most recent job title who are about to retire select count(utt.emp_no) as count,utt.title into retiring_titles_table from unique_titles_table as utt group by utt.title order by count desc -Deliverable 2 SELECT DISTINCT ON (e.emp_no) e.emp_no, e.first_name,e.last_name,e.birth_date, de.from_date,de.to_date, te.title into mentorship_eligibilty from employees as e inner join dept_employees as de on e.emp_no=de.emp_no inner join titles as te on e.emp_no=te.emp_no WHERE de.to_date = ('9999-01-01') and e.birth_date between '1965-01-01' and '1965-12-31' order by e.emp_no select * from mentorship_eligibilty