1
vote
11answers
157 views
SELECT command to calculate percentage
I'm trying to get the percentage of each video I have in my database based on its view count against all other videos.
I'm then trying to display all the videos from highest view …
2
votes
3answers
133 views
Conditional counting in Python
Hello there,
not sure this was asked before, but I couldn't find an obvious answer. I'm trying to count the number of elements in a list that are equal to a certain value. The pro …
0
votes
3answers
39 views
Displaying record count - Ruby on Rails - Ajax
I am new to rails so sorry if sometimes I don't make much sense. Here is what I am trying to do. I am trying to build a vote system. So next to a blog post there is a link that say …
1
vote
5answers
87 views
How to count duplicates in Ruby Arrays
How do you count duplicates in a ruby array?
For example, if my array had three a's, how could I count that
0
votes
1answer
21 views
MYSQL fetch 10 posts, each w/ vote count, sorted by vote count, limited by where clause on posts
I want to fetch a set of Posts w/ vote count listed, sorted by vote count (e.g.)
Post 1 - Post Body blah blah - Votes: 500
Post 2 - Post Body blah blah - Votes: 400
Post 3 - Pos …
0
votes
4answers
44 views
SQL Joins, Count(), and group by to sort ‘posts’ by # of yes/no ‘votes’
I have posts, votes, and comments tables. Each post can have N 'yes votes', N 'no votes' and N comments. I am trying to get a set of posts sorted by number of yes votes.
I have a …
0
votes
1answer
21 views
How to count all the enums in a SQL table.
Okay so I have a database field called moderated
It is an ENUM with 3 values:
approved
denied
unmoderated
How can I write a query that counts the amount of each, so I can gener …
2
votes
4answers
47 views
Sql COUNT Performance Question
Structure of Example table:
Id, Integer (PK)
Name, Varchar(100)
Description, Text
I need to know if exists difference in performance between:
SELECT COUNT(*) FROM Example;
an …
2
votes
4answers
91 views
Most efficient way to count all rows in a table but select only one
Currently I'm running these two queries:
SELECT COUNT(*) FROM `mytable`
SELECT * FROM `mytable` WHERE `id`=123
I'm wondering what format will be the most efficient. Does the or …
1
vote
4answers
76 views
Consolidating a COUNT query
I have a page where I am running an initial SQL query to get a list of subjects, then I loop over this query and run two additional queries for each record returned from the origin …
-2
votes
1answer
96 views
R: count number of objects in list
Anyone know an R function that will return the number of items in a list?
Thanks
Karl
0
votes
5answers
97 views
C++ string manipulation / input
This is for homework! But I need help anyway. The assignment is to input a sentence then output the number of words, and the number of occurrences of each letter. The output must h …
0
votes
4answers
70 views
Which command in VBA can count the number of characters in a string variable?
Let's say I have this variable:
word = "habit"
which command in VBA will allow me to count how many characters are there in this variable (in my case it's 5).
Important: the va …
3
votes
5answers
74 views
SQL count exposure of life time by age
Hi all
(Using SQL Server 2008)
I need some help visualizing a solution. Let's say I have the following simple table for members of a pension scheme:
[Date of Birth] [Date J …
0
votes
3answers
63 views
Word count of a string
How to count the words in a document, get the result same as the result of MS OFFICE?
