我有一个非常基本的陈述,例如:
SELECT pet,animal_type,number_of_legs
FROM table
但是,在目前的表格中,我想插入一些假数据,类似于:
rufus cat 3
franklin turtle 1
norm dog 5
最佳答案
SELECT pet,number_of_legs FROM table
union select 'rufus','cat',3
union select 'franklin','turtle',1
union select 'norm','dog',5
这将为您提供表的内容以及您想要的3条记录,避免重复,如果重复可以,则将union替换为union all
select top 110 'franklin',1
from sysobjects a,sysobjects b -- this cross join gives n^2 records
请务必选择一个表,其中n ^ 2大于所需记录或反复交叉连接