我需要一些有关碎片堆栈的帮助。我有一个场景。在那种情况下,我们有四个片段A,B,C和D。我已经使用FragmentTransaction的add方法将所有片段添加到了堆栈中。我想将D滑动到B而不删除堆栈中的D。正如我在下面使用的方法。但是它正在删除堆栈中的D。
declare @t table(t nvarchar(20))
insert into @t values('²'), ('2')
-- Will return only the row with the number.
select * from @t where t like N'%2%' collate Latin1_General_BIN
-- Will return only the row with square 2.
select * from @t where t like N'%²%' collate Latin1_General_BIN