Pages

Lấy dòng trước của dữ liệu, tạo so le dữ liệu để so sánh dòng trước và hiện hành

Câu lệnh mẫu



SELECT
Id,
[CreatedDate],
[Delay]=
DATEDIFF(d,
isnull(LAG([CreatedDate],1) OVER (
PARTITION BY Id
ORDER BY Id
) ,[CreatedDate]),[CreatedDate])
FROM [TableName]

Tham khảo thêm

Không có nhận xét nào :

Đăng nhận xét