大表中的行数

number of rows in big table(大表中的行数)
本文介绍了大表中的行数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SELECT COUNT(*) FROM BigTable_1

如果我有超过 10 亿行,我应该使用哪种方式来获取表中的行数?

Which way I should to use to get number of rows in table if I have more than 1 billion of rows?

更新:例如,如果上面的查询出现超时问题",有什么方法可以优化它吗?如何更快地完成?

UPDATE: For example, if we have 'a timeout problem' with the query above is there any way to optimize it? How to do it quicker?

推荐答案

如果需要精确计数,必须使用COUNT (*)

If you need an exact count, you have to use COUNT (*)

如果您可以进行粗略计数,则可以使用分区中的行总和

If you are OK with a rough count, you can use a sum of rows in the partitions

SELECT SUM (Rows)
FROM sys.partitions
WHERE 1=1
And index_id IN (0, 1)
And OBJECT_ID = OBJECT_ID('Database.schema.Table');

如果你想用你的 COUNT 开玩笑,你可以执行以下操作

If you want to be funny with your COUNT, you can do the following

select COUNT (1/0) from BigTable_1

这篇关于大表中的行数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)