create table t1(id int,name varchar(3))
create table t2(one int,two int)
insert t1
select 1,'aaa' union select 2,'bbb'
insert t2
select 1,2
go
select one_name=(select name from t1 where id=a.one),
two_name=(select name from t1 where id=a.two)
from t2 a
/*
one_name two_name 
-------- -------- 
aaa      bbb(所影响的行数为 1 行)
*/
drop table t1,t2