Tagged Questions
4
votes
2answers
3k views
MYSQL COUNT GROUP BY question
I'd like to only select the rows where the count is greater than 1 (in other words the duplicates) right now from a few thousand records i am mostly seeing ones with a few 2s and 3s here and there
...
3
votes
2answers
3k views
SQL Count where clause
I have the the following SQL statement:
SELECT [l.LeagueId] AS LeagueId, [l.LeagueName] AS NAME, [lp.PositionId]
FROM (Leagues l INNER JOIN
Lineups lp ON ...
3
votes
5answers
1k views
is there something faster than “having count” for large tables?
Here is my query:
select word_id, count(sentence_id)
from sentence_word
group by word_id
having count(sentence_id) > 100;
The table sentenceword contains 3 fields, wordid, sentenceid and a ...
2
votes
2answers
49 views
MS Access SQL Query - Probably simple, but I'm rusty
I have a form that people can use to send emails to our clients. The user has an option to select between two canned messages (Message "1" or Message "2"). Behind the scenes, every time they hit the ...
2
votes
1answer
4k views
Linq with group by having count
how do I write this query in linq (vb.net)?
select B.Name
from Company B
group by B.Name
having COUNT(1) > 1
1
vote
2answers
36 views
In SQL, why does group by make a difference when using having count()
I have a table that stores zone_id. Sometimes a zone id is twice in the database. I wrote a query to show only entries that have two or more entries of the same zone_id in the table.
The following ...
1
vote
2answers
165 views
tsql distinct having count
I am using SSMS 2008 and am trying to select count of consumers who are part of two different events. Probably this is a simple query, but it is currently not returning expected count. Here is my ...
1
vote
3answers
238 views
SQL query for finding records where count > 1
I have a table named PAYMENT. Within this table I have a user ID, an account number, a ZIP code and a date. I would like to find all records for all users that have more than one payment per day with ...
1
vote
1answer
93 views
SQL Counting Records with Count and Having
I'm having problems with what I thought was a simple query to count records:
SELECT req_ownerid, count(req_status_lender) AS total6
FROM bor_requests
WHERE (req_status_lender = 0 AND ...
0
votes
2answers
80 views
PL/SQL update rate using having count
Hi am newbie at pl/sql
I need to update rate_per_hour for all projects having less than 5 employee to 500
here is the code what i wrote, but it updates all employee
set serveroutput on
declare
...
0
votes
1answer
31 views
Selecting duplicate entries from a table and getting all the fields from the duplicate rows
I have a table like this.
id day1 day2 day3
1 411 523 223
2 413 554 245
3 417 511 209
4 420 515 232
5 422 522 212
6 483 567 212
7 ...
0
votes
1answer
91 views
MySQL INSERT SELECT. Ordering insert by count but don't actually insert the count number
Sorry for the ridiculous title!
Is it possible to run a MySQL INSERT SELECT query where the 'SELECT' portion includes a COUNT() function (to benefit from a HAVING clause) -- this creates an ...