You can do this with a cross join to another table.
declare @tblA table( id int, tot int)
declare @tblB table( id int)
declare @tot table (tot int)
insert @tblA values( 1, 2)
insert @tblA values( 2, 3)
insert @tot values( 1)
insert @tot values( 2)
insert @tot values( 3)
insert @tblB
select a.id
from @tblA a
cross join @tot t
where a.tot >=t.tot
select * from @tblB
Hope this helps,
Stephen.