We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
就SQL Server而言,普通表的列限制是 1,024。因此,我认为任何接近该限制的列数都很大。也就是说,您可以使用宽表将限制扩展到 30,000,但需要权衡:
根据 此线程,PostgreSQL 的限制是每个 1,600 列桌子。
根据这些数字,我建议任何接近 1,000 的列数都是巨大。
As far as SQL Server is concerned, the column limit on a normal table is 1,024. So I would consider any number of columns approaching that limit to be large. That said, you can use wide tables to extend the limit up to 30,000 but there are tradeoffs:
According to this thread, the limit for PostgreSQL is 1,600 columns per table.
Based on these numbers, I would suggest any number of columns that approaches 1,000 to be huge.