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 并想在表上创建一个分区。我想以另一个表中的外键为基础。
table1 ( fk uniqueidentifier, data )
fk 指向 table2
table 2 ( partition element here )
我想根据 table2 的数据对 table1 进行分区,即如果 table2 包含类别
外键关系并不重要,水平分区是基于表本身的值。外键只是确保它们已经存在于另一个表中。
链接: