SQL Server 2008 T-SQL编程系列课程之常用查询算法比较
摘要:create table table_A(id int, testCol varchar(256));create table table_B(id int, testCol varchar(256));insert into table_Aselect 1,'A'union allselect 2,'B';insert into table_Bselect 1,'A'union allselec...
阅读全文
posted @
2010-04-05 17:10
IT Person
阅读(307)
推荐(0)