次のコードがありますが、テーブル @test とその基本的な where 句を複数回参照したくないので、ROWCOUNT でリファクタリングしようとしましたが、解決できません。
select *
from @test2
where userid = @userid
and (
ExpiryDate > getdate()
or
not exists(select * from @test2
where userid = @userid
and ExpiryDate > Getdate()
and Status = 40)
)
これは私がテストに使用しているデータです:
declare @test2 table(ID int, ExpiryDate datetime, userid int, siteid int, Status int)
insert into @test2 (ID, ExpiryDate, userid, siteid, Status)
--not expired/status=40 and not status=40 entries
select 1, '2013-08-16', 1, 1, 40
union
select 2, '2013-08-16', 1, 1, 10
union
--not expired/status=40 and status=40 entries
select 3, '2013-08-16', 2, 2, 40
union
select 4, '2013-08-16', 2, 2, 40
union
--expired/status=40 and not status=40 entries
select 5, '2013-08-13', 3, 3, 40
union
select 6, '2013-08-16', 3, 3, 10
union
--expired/status=40 and status=40 entries
select 7, '2013-08-13', 4, 4, 40
union
select 8, '2013-08-16', 4, 4, 40
union
--not expired/status=40 single entry
select 9, '2013-08-16', 5, 5, 40
union
--expired/status=40 single entry
select 10, '2013-08-13', 6, 6, 40
/* scenarios:
not expired/status=40 and not status=40 entries - sees both - userid = 1
not expired/status=40 and status=40 entries - sees both - userid = 2
expired/status=40 and not status=40 entries - sees both - userid = 3
expired/status=40 and status=40 entries - sees single - userid = 4
not expired/status=40 single entry - sees single - userid = 5
expired/status=40 single entry - sees single - userid = 6
*/
これをリファクタリングできるかどうかさえわかりません。これを改善する方法についてアイデアをお持ちの方は、本当に感謝しています。
ありがとう
ジョン