With an identity column only??

解决方案 »

  1.   

    LouisXIV(夜游神) ( ) 信誉:100  2006-07-27 15:00:00  得分: 0  
     
     
       With an identity column only??
      
     
    --------------------
    是啊
      

  2.   

    DROP TABLE T
    GO
    SELECT TOP  1000 C1=IDENTITY(INT,1,1) INTO T 
    FROM SYSOBJECTES,SYSCOLUMNS
    GO
      

  3.   

    Using Cross Joins
    A cross join that does not have a WHERE clause produces the Cartesian product of the tables involved in the join. The size of a Cartesian product result set is the number of rows in the first table multiplied by the number of rows in the second table. This is an example of a Transact-SQL cross join