Tagged Questions

COUNT is a commonly-used SQL function that counts the number of rows

learn more… | top users | synonyms

65
votes
9answers
13k views

Count(*) vs Count(1)

Just wondering if any of you guys use Count(1) over Count(*) and if there is a noticeable difference in performance or if this is just a legacy habit that has been brought forward from days gone past? ...
63
votes
5answers
61k views

jQuery - count number of rows in a table

How do I count the number of tr elements within a table using jquery. Sorry, I sense this might be basic but i've been banging my head against it. I know there is a similar thread, but I just want ...
51
votes
12answers
33k views

How to efficiently count the number of keys/properties of an object in JavaScript?

What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing var count = 0; for (k in myobj) if ...
41
votes
8answers
3k views

COUNT(*) vs. COUNT(1) vs. COUNT(pk): which is better?

I often find these three variants: SELECT COUNT(*) FROM Foo; SELECT COUNT(1) FROM Foo; SELECT COUNT(PrimaryKey) FROM Foo; As far as I can see, they all do the same thing, and I find myself using ...
35
votes
11answers
2k views

How to count each digit in a range of integers?

Imagine you sell those metallic digits used to number houses, locker doors, hotel rooms, etc. You need to find how many of each digit to ship when your customer needs to number doors/houses: 1 to ...
28
votes
12answers
25k views

count (non-blank) lines-of-code in bash

In Bash, how do I count the number of non-blank lines of code in a project?
27
votes
6answers
11k views

How to sort a list of objects in Python, based on an attribute of the objects?

I've got a list of Python objects that I'd like to sort by an attribute of the objects themselves. The list looks like: >>> ut [<Tag: 128>, <Tag: 2008>, <Tag: <>, ...
23
votes
5answers
7k views

Count occurrence of a character in a Python string

What's the simplest way to count the number of occurrences of a character in a string? e.g. count the number of times 'a' appears in 'Mary had a little lamb'
23
votes
13answers
31k views

Select count(*) from multiple tables

How can I select count(*) from two different tables (call them tab1 and tab2) having as result: Count_1 Count_2 123 456 ? I've tried this: select count(*) Count_1 from schema.tab1 union ...
22
votes
7answers
2k views

Why is this C code faster than this C++ code ? getting biggest line in file

I have two versions of a program that does basically the same thing, getting the biggest length of a line in a file, I have a file with about 8 thousand lines, my code in C is a little bit more ...
20
votes
8answers
709 views

C#: Is <Collection>.Count Expensive to Use?

I'm writing a cache-eject method that essentially looks like this: while ( myHashSet.Count > MAX_ALLOWED_CACHE_MEMBERS ) { EjectOldestItem( myHashSet ); } My question is about how Count is ...
17
votes
6answers
17k views

How do we count rows using Hibernate?

For example, if we have a table Books, how would we count total number of book records with hibernate? Thanks
15
votes
5answers
9k views

Search for string and get count in VI editor

Well I want to search for a string and find number of occurrences in a file opened using Vi editor.
15
votes
7answers
40k views

Count work days between two dates in T-SQL

How can I calculate the number of work days between two dates in SQL Server? Monday to Friday and it must be T-SQL.
12
votes
4answers
11k views

Jquery counting elements by class what is the best way to implement this?

Ok what i'm trying to do is to count all of the elements in the current page with the same class and then i'm going to use it to be added onto a name for a input form. Basically i'm allowing users to ...
12
votes
3answers
730 views

Why does Perl's tr/\n// get slower and slower as line lengths increase?

In perlfaq5, there's an answer for How do I count the number of lines in a file?. The current answer suggests a sysread and a tr/\n//. I wanted to try a few other things to see how much faster tr/\n// ...
12
votes
4answers
5k views

Row count of a column family in Cassandra

Is there a way to get a row count (key count) of a single column family in Cassandra? get_count can only be used to get the column count. For instance, if I have a column family containing users and ...
11
votes
10answers
5k views

How to speed up “select count(*)” with “group by” and “where”?

How to speed up select count(*) with group by? It's too slow and is used very frequently. I have a big trouble using select count(*) and group by with a table having more than 3,000,000 rows. select ...
11
votes
8answers
27k views

Get Auto Increment value with MySQL query

I currently have a database with over 6 million rows and growing. I currently do SELECT COUNT(id) FROM table; in order to display the number to my users, but the database is getting large and I have ...
10
votes
10answers
716 views

Count elements with int < 5 in List<T>

I have a List<int> and need to count how many elements with (value < 5) it has - how do I do this?
10
votes
3answers
194 views

Algorithm to count occurrences of a matrix inside a larger one

i'm facing a problem right now, i need to count the number of time a certain MxM matrix appears inside a NxN one (this one should be larger than the first one). Any hints on how to do this? I'm going ...
10
votes
4answers
5k views

How do you find the row count for all your tables in Postgres

I'm looking for a way to find the row count for all my tables in Postgres. I know I can do this one table at a time with a select count(*) from table_name; but I'd like to see the row count for ...
10
votes
3answers
3k views

Speeding up row counting in MySQL

Suppose, for illustrative purposes, you are running a library using a simple MySQL "books" table with three columns: (id, title, status) id is the primary key title is the title of the book status ...
10
votes
5answers
7k views

Number of elements in a javascript object

Is there a way to get (from somewhere) the number of elements in a javascript object?? (i.e. constant-time complexity). I cant find a property or method that retrieve that information. So far I can ...
10
votes
4answers
19k views

Counting array elements in Perl

I need to get the total items in array, NOT the last id, none of both ways I found to do this works: my @a; # Add some elements (no consecutive ids) $a[0]= '1'; $a[5]= '2'; $a[23]= '3'; print $#a, ...
10
votes
4answers
3k views

Google AppEngine: how to count a database's entries beyond 1000?

Duplicate of "how does one get a count of rows in a datastore model in google appengine?" I'm having big trouble. I want to know how many users I have... I did: users = UserStore.all() ...
10
votes
3answers
3k views

count lines in a PHP project

I'm just curious. Do you know any tool which can count all the code lines from a PHP project? Many thx!
9
votes
10answers
446 views

Mysql count rows using filters on high trafic database

Let's say you have a search form, with multiple select fields, let's say a user selects from a dropdown an option, but before he submits the data I need to display the count of the rows in the ...
9
votes
3answers
1k views

Counting palindromic substrings in O(n)

Given a string (assume only English characters) S of length n, we can count the number of palindromic substrings with the following algorithm: for i = 0 to |S| do p1 = number of palindromes ...
9
votes
3answers
3k views

(How) can I count the items in an enum?

This question came to my mind, when I had something like enum Folders {FA, FB, FC}; and wanted to create an array of containers for each folder: ContainerClass*m_containers[3]; .... ...
9
votes
5answers
843 views

accurate page view count

What is a good approach to keeping accurate counts of how many times a page has been viewed I'm using Django. Specifically, I don't want refreshing the page to up the count.
8
votes
6answers
489 views

Please will you help tune a 7-table-join mysql count query where tables contain 30,000+ rows?

I have an sql query that counts the number of results for a complex query. The actual select query is very fast when limiting to 20 results, but the count version takes about 4.5 seconds on my current ...
8
votes
3answers
498 views

In which cases are IEnumerable<T>.Count optimized?

Using reflector I have noticed that System.Linq.Enumerable.Count method has a condition in it to optimize it for the case when the IEnumerable<T> passed is in fact an ICollection<T>. If ...
8
votes
6answers
6k views

NSString: Number of Occurrences of a Character?

I have an NSString and would like to get the number of occurrences of a particular character. I need to do this for quite a few characters, so it would be nice for it to be quick. In case it makes ...
8
votes
11answers
5k views

Count rows in an SQL table in O(1)

I understand the best way to count the number of rows in an SQL table is count(*) (or equivalently count(PrimaryKey)). Is this O(1)? If not, why not? Why not just implement a counter and return it ...
7
votes
3answers
176 views

Counting points inside an ellipse

I'm trying to count given data points inside each ring of ellipse: The problem is that I have a function to check that: so for each ellipse, to make sure whether a point is in it, three inputs have ...
7
votes
3answers
208 views

Is there an elegant way to count tag elements in a xml file using lxml in python?

I could read the content of the xml file to a string and use string operations to achieve this, but I guess there is a more elegant way to do this. Since I did not find a clue in the docus, I am sking ...
7
votes
3answers
230 views

Count how many different values a list takes in Mathematica

I would like to get the number of different values found in a List. For Example : The output for the List a={1,2,3,4,5,} would be 5 whereas it would be 2 for b={1,1,1,2,2} Any Ideas ?
7
votes
7answers
943 views

Count the number of words in NSString

I'm trying to implement a word count function for my app that uses UITextView. There's a space between two words in English, so it's really easy to count the number of words in an English sentence. ...
7
votes
2answers
949 views

LINQ: Order By Count of Unique Items in List<string>

I have a list of ids properly stored in a List<>. I now need to Group this list and get a count of the number of occurrences sorted descending. Example: List<string> aryIDs = new ...
7
votes
4answers
2k views

time_ago_in_words => “in {{count}} days.”?

I'm having a very weird bug. In my code I have <%= time_ago_in_words(game.created_at) %> It's works locally and on my staging server but NOT on my production server: Example: ...
7
votes
5answers
2k views

Rails : How to build statistics per day/month/year or How database agnostic SQL functions are missing (ex. : STRFTIME, DATE_FORMAT, DATE_TRUNC)

I have been searching all over the web and I have no clue. Suppose you have to build a dashboard in the admin area of your Rails app and you want to have the number of subscriptions per day. Suppose ...
7
votes
3answers
435 views

Java image analysis - counting vertical lines

I need a little help on an image analysis algorithm in Java. I basically have images like this: So, as you might guessed, I need to count the lines. What approach do you think would be best? ...
7
votes
6answers
426 views

Beginner SQL question: arithmetic with multiple COUNT(*) results

Continuing with the spirit of using the Stack Exchange Data Explorer to learn SQL, (see: Can we become our own “Northwind” for teaching SQL / databases?), I've decided to try to write a query to ...
7
votes
4answers
8k views

How can I count the number of elements of a given value in a matrix?

Does anyone know how to count the number of times a value appears in a matrix? For example, if I have a 1500 x 1 matrix M (vector) which stores the values of weekdays (1 - 7), how could I count how ...
7
votes
6answers
778 views

How can I count overlapping substrings in Perl?

i need to implement a program to count the occurrence of a substring in a string in perl. i have implemented it as follows sub countnmstr { $count =0; $count++ while $_[0] =~ /$_[1]/g; return ...
7
votes
2answers
1k views

How To Count Associated Entities Without Fetching Them In Entity Framework

I've been wondering about this one for a while now, so I thought it would be worth using my first Stack Overflow post to ask about it. Imagine I have a discussion with an associated list of messages: ...
7
votes
2answers
3k views

counting duplicates in a sorted sequence using command line tools

I have a command (cmd1) that greps through a log file to filter out a set of numbers. the numbers are in random order, so i use sort -gr to get a reverse sorted list of numbers. there may be ...
7
votes
7answers
4k views

item frequency count in python

I'm a python newbie, so maybe my question is very noob. Assume I have a list of words, and I want to find the number of times each word appears in that list. Obvious way to do this is: words = "apple ...
7
votes
5answers
14k views

Select COUNT(*) of subquery without running it twice

I've got a procedure to return a result set which is limited by page number and some other stuff. As an OUTPUT parameter I need to return a total amount of selected rows according to the parameters ...

1 2 3 4 5 40