Tagged Questions

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 ...
1
vote
3answers
176 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
6answers
1k views

SQL query need to get names where count(id) = 2

I have a table programparticipants, I am currently successfully querying the IDs where count(name) > 1. What I need now is to query the names that belong to those IDs where count(name) > 1. Can anyone ...
0
votes
2answers
51 views

PostgreSQL: issues with join + outer-join + sub-select to compare values.

I am using postresql but i am realy bad at construting sql queries. I have this query and it works: SELECT handhistories FROM handhistories JOIN pokerhands using (pokerhand_id) JOIN gametypes ...
0
votes
1answer
65 views

Expand a GROUP BY and HAVING resultset

Is there a way to expand/get all the records of a GROUP BY and HAVING query? For example, SELECT Column1, Column2, Column3, Count(*) as Count FROM table_name GROUP BY Column1, Column2, Column3 ...
0
votes
1answer
28 views

Choose a preferred row out of partially duplicate data

I have the following query: select mb.id as meter_id ,ds.mydate as mydate ,mb.name as metergroup ,sum(ms.stand) as measured_cum_value ,me.name as energy_medium ,e.name as ...
0
votes
1answer
144 views

Select rows using GROUP BY and HAVING with aggregate function

I have a table filled with bus stops. Each stop has a line_id, a direction and coordinates (lat and lng). I want my query to return the closest stop for each line/direction. SELECT * from stops ...