Tagged Questions

3
votes
2answers
2k 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
7answers
747 views

SQL: HAVING clause

See the following SQL statement: SELECT datediff("d", MAX(invoice.date), Now) As Date_Diff , MAX(invoice.date) AS max_invoice_date , customer.number AS customer_number FROM invoice ...
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
4answers
69 views

Using a HAVING clause in an UPDATE statement

This query SELECT FirstName, LastName, NCAAStats.AccountId, College_Translator.school_name, StatTypeId, COUNT(*) AS 'Count' FROM NCAAstats INNER JOIN College_Translator ON ...
2
votes
2answers
100 views

PostgreSQL Where count condition

I have following query in PostgreSQL: SELECT COUNT(a.log_id) AS overall_count FROM "Log" as a, "License" as b WHERE a.license_id=7 AND a.license_id=b.license_id AND ...
2
votes
1answer
103 views

SQL Having on columns not in SELECT

I have a table with 3 columns: userid mac_address count The entries for one user could look like this: 57193 001122334455 42 57193 000C6ED211E6 15 57193 FFFFFFFFFFFF 2 I want to ...
2
votes
4answers
232 views

Difference between WHERE and HAVING in SQL [closed]

Possible Duplicate: SQL: What's the difference between HAVING and WHERE? I have seen various discussions on WHERE and HAVING. I still have a question: is HAVING used only when ...
2
votes
3answers
194 views

How do I filter a group-by query on the value of a coalesced column?

Here's my Query that does not work because it apparently violates the rules of the HAVING clause: SELECT COALESCE(Publisher.name, Affiliate.name) AS Publisher ,dbo.SumKeys(Item.id) AS ...
2
votes
4answers
129 views

Oracle SQL Syntax Question

I am new to Oracle, I am trying to figure out how to query a table (the table is actually a result set, so it will be a subquery), group it by ColA=ColB (see below), and create a calculated field all ...
2
votes
2answers
149 views

HAVING clause properties

I need help with this exercise where I have to translate properties from English into sql. Questions: length has at least one 0 Answer: MIN(ABS(length)) = 0 length has more that one ...
2
votes
6answers
187 views

Mysql: how to select groups having certain values?

Say there is such table: mysql> SELECT * FROM tags; +---------+--------+ | post_id | tag_id | +---------+--------+ | 1 | 2 | | 1 | 3 | | 1 | 1 | | 2 | 1 ...
2
votes
2answers
537 views

SQL statement HAVING MAX(some+thing)=some+thing

I'm having trouble with Microsoft Access 2003, it's complaining about this statement: select cardnr from change where year(date)<2009 group by cardnr having max(time+date) = (time+date) and ...
2
votes
5answers
441 views

SQL Question: It's possibile to have a WHERE clause after a HAVING clause?

So... It is possibile to use a WHERE clause after a HAVING clause? The first thing that comes to my mind is sub queries, but I'm not sure. P.S. If the answer is affirmative, could you give some ...
1
vote
1answer
46 views

find duplicate records in related tables

Consider the following data structure: parking garages | |_ garage 1 |__ red car |__ blue car |_ garage 2 |__ yellow car |__ orange car |_ garage 3 ...
1
vote
3answers
172 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
86 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 ...
1
vote
2answers
322 views

Is there a performance difference between HAVING on alias, vs not using HAVING

Ok, I'm learning, bit by bit, about what HAVING means. Now, my question is if these two queries have difference performance characteristics: Without HAVING SELECT x + y AS z, t.* FROM t WHERE x = ...
1
vote
3answers
146 views

What is the semantic difference between WHERE and HAVING?

Let's put GROUP BY aside for a second. In normal queries (without GROUP BY), what is the semantic difference? Why does this answer work? (put an alias in a HAVING clause instead of WHERE)
1
vote
1answer
209 views

PostgreSQL HAVING clause

I posted on here last night looking for help with some homework. I'm down to my last question. Here's the relevant piece of the schema I am working with: CREATE TABLE votesOnPoll( user_id int, ...
1
vote
2answers
114 views

SQL SELECT: value that occur > 1

I'm trying to select duplicates from this table: snr zip 01 83 02 82 03 43 04 28 Expected result is just empty table. Cuz it got no duplicates. I've tried with this query: SELECT snr, zip FROM ...
1
vote
4answers
144 views

Using SQL Server 2005 I'm trying to do a HAVING in a WHERE clause sound crazy?

Ok, I have over a million records and I need to select all information from the database where the count of a column is greater or equal to 10. I know that using having I must use group by and using ...
1
vote
4answers
146 views

SQL Group By - Select Both Columns

I have a table of users containing the following columns: | User_ID (int) | Name (varchar) | Age (int) | Experience_Level (int) | I would like to create an sql query to output all of the IDs ...
1
vote
4answers
1k views

Trouble with SQLite SQL Query

I'm trying to run the following query in SQLite 3: SELECT *, DISTANCE(latitude, longitude, ?, ?) AS "distance" FROM "country" WHERE "id" NOT LIKE ? HAVING "distance" <= ? ORDER BY "distance" ...
1
vote
1answer
266 views

… where count(col) > 1

I have a table like this: +-----+-----+-------+ | id | fk | value | +-----+-----+-------+ | 0 | 1 | peter | | 1 | 1 | josh | | 3 | 2 | marc | | ... | ... | ... | I'd like now to ...
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 ...
1
vote
5answers
5k views

Complex join with nested group-by/having clause?

I ultimately need a list of "import" records that include "album" records which only have one "song" each. This is what I'm using now: select i.id, i.created_at from imports i where i.id in ( ...
0
votes
2answers
29 views

Column 'of realationship' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause

I want to retrieve the row with the Maximum Value of 'PNRno' column, where PNRno is a Primary key of Tktrsrv and have realatioship with multiple tables. the code is written as: Select PNRcd,PNRno, ...
0
votes
2answers
49 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
43 views

NSPredicate equivalent of SQL HAVING

Here's the abstract situation: I have CoreData objects 'car' and 'review'.'review' can be 'good','bad' or 'meh', car->review is one-to-many. I am trying to build an NSPredicate to get all 'car' ...
0
votes
1answer
30 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
37 views

SQL query to return records that are exclusively of one type

I've tried looking for some information about a query I'm trying to write and come up with some ideas, but nothing solid enough to work with. I think I have a general idea about what I need to do but ...
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
75 views

How do I join one table onto another where userid = userid but only for that date?

I'm looking to take the total time a user worked on each batch at his workstation, the total estimated work that was completed, the amount the user was paid, and how many failures the user has had for ...
0
votes
2answers
55 views

SQL - Limit results on groups

I have the following table : Car | color | year ---------+----------+------ mercedes | blue | 1991 mercedes | yellow | 1993 mercedes | blue | 1996 mercedes | red | 1998 renaud ...
0
votes
2answers
605 views

Sql Server - Query help (group by with having MAX)

HI, I'm having a huge problem with one query, this is the data that I have in my table: entityId groupId groupDepth -------------------- -------------------- ----------- ...
0
votes
3answers
368 views

mysql group by and sort each group

the table is : |       ID      |     NAME      |      TIME      | ...
0
votes
3answers
195 views

How do I count MySQL entries with a HAVING criterion

So usually you can just do SELECT COUNT(field.id) FROM table WHERE field.id > 100 and COUNT(field) will return the number of entries that has the criterion of field.id > 100 But then what if ...
0
votes
3answers
64 views

Multiple Havings not working

I have a database with the following schema: ID PositionId LeagueId 1 4 5 3 4 5 3 8 5 4 1 6 I have this sql query in ...
0
votes
1answer
127 views

How Do I Update a Table From Another Table Only If the Result Count is 1?

I have a table of 2 tables in a one to many relationship. I want to run an update script that will update the table with the FK of the related table only if there is one result (because if there is ...
0
votes
1answer
756 views

HAVING ANY and HAVING EVERY in SQL Server 2005

Does SQL Server 2005 support ANY or EVERY with HAVING? Suppose I have two tables Training(TrainingID, TrainingCloseDate) and TrainingDetail(TrainingDetailID,TrainingID,LKClassCode,CompletionDate). ...
0
votes
4answers
1k views

How to use an aliased column in a MySQL WHERE clause?

I have a MySQL query like this: SELECT *, SUM(...some SQL removed for brevety) AS Occurrences FROM some_table AS q WHERE criterion="value" GROUP BY q.P_id ORDER BY Occurrences DESC LIMIT 10; I want ...
0
votes
1answer
829 views

how to translate the SQL code “having” condition into LinqToSQL or LinqToEntites?

Could you tell me how to translate the following SQL code to Linq To SQL or Linq To Entites? The correst SQL code is: select CollectId,url,userid,pubtime from Collect group by ...
-2
votes
2answers
114 views

Oracle Having > Single Row

I have an Oracle query, which has something to the effect of Having Count(field) > (Long SQL statement that returns one row) Both sides of the query work alone, but together I get a "not a group by" ...