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.
我想将一个逗号分隔的 PK (int) 字符串传递到一个 sql 存储过程中。然后,proc 将使用包含每个 PK 的 where 子句对表执行更新语句。
做这个的最好方式是什么?
我们需要更多信息。例如,如果更新使用来自表(连接)的信息,或者使用相同的信息更新行,那么您可以使用:
Update tableName set .... where tableName.id in @strOfIdsPassedIn