Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数値に基づいて多数の行を作成する一時テーブルをSQLサーバーで作成する方法を理解しようとしています。
そのため、結果が 35 というクエリがあり、ID 値が 1 ~ 35 の 35 行の一時テーブルを作成したいと考えています。
declare @i int set @i = 1 while (@i <= 35) begin insert tmp (id) values (@i) set @i = @i + 1 end