C
chshanghai
Unregistered / Unconfirmed
GUEST, unregistred user!
让 mssql 发疯的语句. 最新 mssql server 的bug mssql server 7.0 和 mssql server 2000都有??? (10分)<br />假设有一个表
table1 ( c1,c2 )
table2 ( d1,d2,)
test1:
你试试下面的语句
select * from table1 where c1 in (select c1 from table2) //看好了是select c1 from table2
你猜猜结算是什么
--报错?
NO !
是 table1 中的所有记录... ??????????????
test2 :
还是上面的表 只是加了几行数据
table1 ( c1,c2) 表结构 下面的数据
1 ,1
1, 3
2, 3
select * from table1 where c1 in (select c2 from table2) //看好了是select c2 from table2
结果是什么 ???
是所有记录???
NO
是 1 ,1
[][][][][][]
晕倒!!!!!!!!!!!!!!!!!
table1 ( c1,c2 )
table2 ( d1,d2,)
test1:
你试试下面的语句
select * from table1 where c1 in (select c1 from table2) //看好了是select c1 from table2
你猜猜结算是什么
--报错?
NO !
是 table1 中的所有记录... ??????????????
test2 :
还是上面的表 只是加了几行数据
table1 ( c1,c2) 表结构 下面的数据
1 ,1
1, 3
2, 3
select * from table1 where c1 in (select c2 from table2) //看好了是select c2 from table2
结果是什么 ???
是所有记录???
NO
是 1 ,1
[][][][][][]
晕倒!!!!!!!!!!!!!!!!!