1樓:匿名使用者
create table #t(
account int,
id1 char(1),
id2 char(1)
);insert into #t
select 1, 'a', '?' union allselect 1, '?', 'b' union allselect 1, 'c', '?
' union allselect 2, 'd', '?' union allselect 2, '?', 'e' union allselect 2, '?
', 'f' ;
goselect
t1.account,
t1.id1,
t2.id2
from
(select account, id1 from #t where id1 != '?') as t1,
(select account, id2 from #t where id2 != '?') as t2
where
t1.account = t2.account;
goaccount id1 id2----------- --- ---
1 a b
1 c b
2 d e
2 d f
(4 行受影響)
2樓:手機使用者
sql 語句的問題?求高人解答
sql server裡面可以用 set rowcount 2來達到要求
但是在access裡面本身是不行的,只能依靠其它的主鍵來篩選.mml
語句解釋,求解答,SQL語句求解答
這是兩句話。他並沒有聽你的意見。因為怕你生氣弄出一些事情來讓他為難,所以沒及時告訴你。年輕人之間沒那麼多太深刻的理解,別想太多,有空多互相學習,一起成長,不要總是尋求完全的相互理解 相互包容。另外,男女本身 就有很多不同,只要不影響大局,沒必要 太放在心上。你說的話我沒有按照。去做,所以你對我生氣。...
SQL語句有問題求救,SQL語句有問題求救
update a set a.deviceid b.deviceid from tblunitblockarrange a,vwdevicelist b where a.devicename b.devicename update a set a.deviceid b.deviceid from t...
關於SQL語句查詢問題,關於SQL語句 查詢問題
這個問題主要是sql語句 select from table where a beg a and a end a or a beg like a select b from table where a beg a and a end a or to char b like a select b fr...