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列出所有这些,请查看:
USE YourDBName GO SELECT * FROM sys.Tables GO