Это несколько запутанная проблема, но она может быть решена с помощью CROSS APPLY
, чтобы удалить данные, а затем PIVOT
, чтобы вернуть их в нужном формате. Он был протестирован на SQL 2017, но я считаю, что PIVOT
и CTE были добавлены в 2005 году и ROW_NUMBER()
в 2008 году, поэтому должны работать в вашей версии SQL. В основном запросе я связал столбцы, чтобы вы могли видеть, откуда поступают данные. Поскольку вы сказали, что у вас может быть 20 start/endDate
столбцов, я добавил их, но при необходимости вы можете использовать динамический SQL для создания более динамического списка.
SQL Fiddle
Настройка схемы MS SQL Server 2017 :
CREATE TABLE t1 ( Person_id bigint, Store_ID bigint, Startdate date, enddate date ) ;
INSERT INTO t1 (Person_id,Store_ID,Startdate,enddate)
VALUES
( 10000351067,10000232561,'2016-09-09','2016-09-16')
, ( 10000351067,10000232561,'2016-09-16','2016-10-03')
, ( 10000351067,10000232561,'2016-10-03','2016-10-07')
, ( 10000351067,10000232561,'2016-10-07','2017-01-17')
, ( 10000351067,10000232561,'2017-01-17','2018-04-05')
, ( 10000351067,10000232561,'2018-04-05',NULL)
, ( 10000193858,10000225875,'2016-07-13','2016-08-03')
, ( 10000193858,10000225875,'2016-08-03','2017-05-17')
, ( 10000193858,10000225875,'2017-05-17','2017-06-05')
, ( 10000193858,10000225875,'2017-05-31','2017-06-05')
, ( 10000193858,10000225875,'2017-06-05','2017-06-13')
, ( 10000193858,10000225875,'2017-06-13','2017-08-16')
, ( 10000193858,10000225875,'2017-08-07','2017-08-16')
, ( 10000193858,10000225875,'2017-08-16','2017-08-18')
, ( 10000193858,10000225875,'2017-08-18','2017-08-31')
, ( 10000193858,10000225875,'2017-08-31','2018-01-05')
, ( 10000193858,10000225875,'2018-01-05',NULL)
;
Запрос 1 :
/* Start with a CTE to get the base data, plus the row number for the pivot colName */
; WITH cte_details AS (
SELECT t1.Person_ID
, t1.Store_ID
, t1.StartDate
, t1.EndDate
, ROW_NUMBER() OVER ( PARTITION BY t1.Person_ID, t1.Store_ID ORDER BY t1.StartDate ) AS rn
FROM t1
)
SELECT pvt.*
FROM (
/* Unpivot values, using a CROSS APPLY */
SELECT cd.Person_ID, cd.Store_ID
, crs.c + CAST(cd.rn AS varchar(5)) AS colName
, crs.v AS colValue
FROM cte_details cd
CROSS APPLY (
SELECT 'startDate', startDate UNION ALL
SELECT 'endDate', endDate
) crs (c, v)
) s1
/* Now PIVOT those back to get the results. */
PIVOT (
max(s1.colValue)
FOR s1.colName IN (
startDate1, endDate1, startDate2, endDate2, startDate3, endDate3
, startDate4, endDate4, startDate5, endDate5, startDate6, endDate6
, startDate7, endDate7, startDate8, endDate8, startDate9, endDate9
, startDate10, endDate10, startDate11, endDate11, startDate12, endDate12
, startDate13, endDate13, startDate14, endDate14, startDate15, endDate15
, startDate16, endDate16, startDate17, endDate17, startDate18, endDate18
, startDate19, endDate19, startDate20, endDate20
)
) pvt
Результаты
| Person_ID | Store_ID | startDate1 | endDate1 | startDate2 | endDate2 | startDate3 | endDate3 | startDate4 | endDate4 | startDate5 | endDate5 | startDate6 | endDate6 | startDate7 | endDate7 | startDate8 | endDate8 | startDate9 | endDate9 | startDate10 | endDate10 | startDate11 | endDate11 | startDate12 | endDate12 | startDate13 | endDate13 | startDate14 | endDate14 | startDate15 | endDate15 | startDate16 | endDate16 | startDate17 | endDate17 | startDate18 | endDate18 | startDate19 | endDate19 | startDate20 | endDate20 |
|-------------|-------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|------------|-------------|------------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|-------------|-----------|
| 10000193858 | 10000225875 | 2016-07-13 | 2016-08-03 | 2016-08-03 | 2017-05-17 | 2017-05-17 | 2017-06-05 | 2017-05-31 | 2017-06-05 | 2017-06-05 | 2017-06-13 | 2017-06-13 | 2017-08-16 | 2017-08-07 | 2017-08-16 | 2017-08-16 | 2017-08-18 | 2017-08-18 | 2017-08-31 | 2017-08-31 | 2018-01-05 | 2018-01-05 | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) |
| 10000351067 | 10000232561 | 2016-09-09 | 2016-09-16 | 2016-09-16 | 2016-10-03 | 2016-10-03 | 2016-10-07 | 2016-10-07 | 2017-01-17 | 2017-01-17 | 2018-04-05 | 2018-04-05 | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) | (null) |
https://docs.microsoft.com/en-us/previous-versions/sql/sql-server-2008-r2/ms177410(v=sql.105)