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 Server 2008 及更高版本
您还可以使用内存表,使用 '''WITH''' 语句。尝试进行声明性调用,而不是以这种方式使用 Cursors 循环。
IE:
With A as( Select t.col1 From Table1 t ) , B as( Select t.col2 From Table2 t ) Select A.col1 UNION Select B.col2
您也可以将 A、B 加入其他表