Given a table events with the following structure:
create table events (
event_type integer not null,
value integer not null,
time timestamp not null,
unique(event_type, time)
);
write an SQL query that, for each event_type that has been registered more than once, returns the difference between the latest (i.e. the most recent in terms of time) and the second latest value. The table should be ordered by event_type (in ascending order).
For example, given the following data:
event_type | value | time
------------+------------+--------------------
2 | 5 | 2015-05-09 12:42:00
4 | -42 | 2015-05-09 13:19:57
2 | 2 | 2015-05-09 14:48:30
2 | 7 | 2015-05-09 12:54:39
3 | 16 | 2015-05-09 13:19:57
3 | 20 | 2015-05-09 15:01:09
your query should return the following rowset:
event_type | value
------------+-----------
2 | -5
3 | 4
For the event_type 2, the latest value is 2 and the second latest value is 7, so the difference between them is −5.
The names of the columns in the rowset don't matter, but their order does.
Copyright 2009–2024 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
Given a table events with the following structure:
create table events (
event_type integer not null,
value integer not null,
time timestamp not null,
unique(event_type, time)
);
write an SQL query that, for each event_type that has been registered more than once, returns the difference between the latest (i.e. the most recent in terms of time) and the second latest value. The table should be ordered by event_type (in ascending order).
For example, given the following data:
event_type | value | time
------------+------------+--------------------
2 | 5 | 2015-05-09 12:42:00
4 | -42 | 2015-05-09 13:19:57
2 | 2 | 2015-05-09 14:48:30
2 | 7 | 2015-05-09 12:54:39
3 | 16 | 2015-05-09 13:19:57
3 | 20 | 2015-05-09 15:01:09
your query should return the following rowset:
event_type | value
------------+-----------
2 | -5
3 | 4
For the event_type 2, the latest value is 2 and the second latest value is 7, so the difference between them is −5.
The names of the columns in the rowset don't matter, but their order does.
Copyright 2009–2024 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
Dada una tabla de events con la siguiente estructura:
create table events (
event_type integer not null,
value integer not null,
time timestamp not null,
unique(event_type, time)
);
Escriba una consulta (query) de SQL tal que, para cada event_type (tipo de evento) que haya sido registrado más de una vez, devuelva como resultado la diferencia entre el último (Ej. el más reciente en términos de tiempo (time)) y el anteúltimo valor (value). La tabla debe estar ordenada por event_type (en orden ascendente).
Por ejemplo, dados los siguientes datos:
event_type | value | time
------------+------------+--------------------
2 | 5 | 2015-05-09 12:42:00
4 | -42 | 2015-05-09 13:19:57
2 | 2 | 2015-05-09 14:48:30
2 | 7 | 2015-05-09 12:54:39
3 | 16 | 2015-05-09 13:19:57
3 | 20 | 2015-05-09 15:01:09
Su consultra debería devolver como resultado las siguientes filas de datos:
event_type | value
------------+-----------
2 | -5
3 | 4
Para el event_type 2, el último value es 2 y el anteúltimo es 7, de manera que la diferencia entre dichos valores es −5.
Los nombres de las columnas en las filas de datos no importa, pero sí su orden.
Copyright 2009–2024 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
Dada una tabla de events con la siguiente estructura:
create table events (
event_type integer not null,
value integer not null,
time timestamp not null,
unique(event_type, time)
);
Escriba una consulta (query) de SQL tal que, para cada event_type (tipo de evento) que haya sido registrado más de una vez, devuelva como resultado la diferencia entre el último (Ej. el más reciente en términos de tiempo (time)) y el anteúltimo valor (value). La tabla debe estar ordenada por event_type (en orden ascendente).
Por ejemplo, dados los siguientes datos:
event_type | value | time
------------+------------+--------------------
2 | 5 | 2015-05-09 12:42:00
4 | -42 | 2015-05-09 13:19:57
2 | 2 | 2015-05-09 14:48:30
2 | 7 | 2015-05-09 12:54:39
3 | 16 | 2015-05-09 13:19:57
3 | 20 | 2015-05-09 15:01:09
Su consultra debería devolver como resultado las siguientes filas de datos:
event_type | value
------------+-----------
2 | -5
3 | 4
Para el event_type 2, el último value es 2 y el anteúltimo es 7, de manera que la diferencia entre dichos valores es −5.
Los nombres de las columnas en las filas de datos no importa, pero sí su orden.
Copyright 2009–2024 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.