Tagged Questions
-2
votes
1answer
28 views
Exist error in subquery
I am trying to do some counts. The first sub query is the total scanned count. The second sub query is scanned count within 60 minutes. Sorry in advance for this being compressed. Both run correctly ...
4
votes
2answers
157 views
SQL Queries using EXISTS and OR operator
I have 4 tables
users
| id |Username|
| 1 | John |
| 2 | Mike |
| 3 | Alex |
user_contacts
| user_id |contact_id|
| 1 | 2 |
| 1 ...
0
votes
1answer
55 views
optimize Mysql: get latest status of the sale
In the following query, I show the latest status of the sale (by stage, in this case the number 3). The query is based on a subquery in the status history of the sale:
SELECT v.id_sale,
IFNULL((
...
0
votes
3answers
268 views
SQL query with NOT EXISTS to determine if another attribute has certain values
Struggling with a SQL query of mine here.
I have a table:
APPS(id, game)
Where id is the primary key.
What I was trying to do is show all the id's who use at least all the games that the person ...
0
votes
6answers
95 views
Sql subqueries what has the best performance
I'm having a question about this sql query:
SELECT class
FROM Ships
WHERE name IN
(SELECT ship
FROM Outcomes
WHERE result = ’sunk’);
Can I write in the subquerie ...
0
votes
0answers
67 views
Find rows where 2 columns should contain values with set, corresponding values but do not
I have a table with the following fields ChemID and ChemName
I have mismatched values where the two should correspond and need a query to identify rows with these mismatched col values.
For ...
0
votes
1answer
87 views
MYSQL query using OR and AND on same sentence
I need help writing a query that will validate a first expression and than, if its true, will validate the following expression. Something like:
SELECT
name
FROM
names
WHERE
(tag_id = 1 OR ...
1
vote
5answers
332 views
Interesting observation for SQL WHERE EXISTS in subqueires
I'd like to know if someone can explain why the following occurs:
I have the following Table which I made up. It has 2 columns "A" and "B":
A B
==========
1, 11
2, 12
3, 13
4, ...
1
vote
5answers
286 views
What's the SELECT list and the subquery that is ignored in an EXISTS statement?
This is a quote from http://dev.mysql.com/doc/refman/5.0/en/exists-and-not-exists-subqueries.html: "If a subquery returns any rows at all, EXISTS subquery is TRUE, and NOT EXISTS subquery is FALSE. ...
0
votes
1answer
488 views
Convert a two-table exists query from SQL to Linq using dynamic fields in the subquery
I'm trying to query old Access database tables and compare them with SQL Server tables.
They often don't have primary keys, or they have extra fields that had some purpose in the nineties, etc., or ...
7
votes
3answers
1k views
The purpose of SQL's EXISTS and NOT EXISTS
Every now and then I see these being used, but it never seems to be anything that can't be performed as equally well, if not better, by using a normal join or subquery.
I see them as being misleading ...
0
votes
2answers
135 views
Invalid SQL Query
I have the next query that in my opinion is a valid one, but I keep getting error telling me that there is a proble on "WHERE em.p4 = ue.p3" - Unknown column 'ue.p3' in 'where clause'.
This is the ...
1
vote
3answers
272 views
What do you put in a subquery's Select part when it's preceded by Exists?
What do you put in a subquery's Select part when it's preceded by Exists?
Select *
From some_table
Where Exists (Select 1
From some_other_table
Where ...