Tagged Questions
1
vote
1answer
22 views
Two MySQL queries giving different results
I have these two queries that I'm running. The first one works, but for some reason the EXISTS() function seems to add about a minute of load time, which makes it unbearable to use. So I wrote a ...
0
votes
2answers
36 views
perform true on joined tables
In PostgreSQL 8.4.13 I have two tables representing card games (each with 3 players) and the score results of those games. The players are identified by id column and the games by gid:
# \d ...
0
votes
1answer
45 views
mySQL multiple Join with empty result line
I have two tables CLIENSTS and PRICES and I wanto to join them in order to calculate total prices amount per item type, every year.
My query has to sum every item's value, grouping them by type, and ...
0
votes
1answer
49 views
query join to return two values even if only one exists by query statement
I'm querying database and i need it to return all values. I'm joining two tables storage_path AND users First user exists in first and in the second table by user_id field. Second user doesn't exist ...
0
votes
1answer
80 views
MySQL query using 4 tables, LEFT JOINs and WHERE EXISTS
I have a total of four (4) tables I need to work with. Essentially one pulls from the other to grab data which pulls from another to grab the previous tables data and so on.
I am having trouble ...
1
vote
4answers
118 views
How can I use conditional logic to choose which record to join in SQL?
I am working on a query that, among other things, selects one phone number for a person given their ID number.
This bit of code gets it:
LEFT JOIN [thedatabasename].dbo.[thetablename] Phone
ON ...
1
vote
1answer
784 views
How to do WHERE ((SELECT COUNT(*) …) = 0 OR EXISTS (SELECT * FROM …))?
For example, I have a table Person having an ID for each entry and I have a table PersonEvent which records the personID of each person at an event.
If PersonEvent contains no rows for the event, ...
3
votes
2answers
137 views
MySQL select join many to many tables plus IN and NOT IN
I have 3 tables: Products, Tags, and products_tags(many to many between Products and Tags).
in my schema, a product can have zero to many tags and a tag can have zero to many products.
Now i want to ...
2
votes
3answers
75 views
Can I return multiple unmatched results from a single SQL join without using a cursor?
I have two tables.
Employee
EmployeeID, EmployeeName, DocumentType
and
DocumentType
DocumentTypeID, DocumentType
There are Multiple Employees and Multiple DocumentTypes.
For each employee, ...
0
votes
1answer
520 views
when choose CROSS APPLY and when EXISTS?
I read, CROSS APPLY is just like JOIN.. and I think JOIN can be accomplished with EXISTS also (correlated sub query)
I am confused, what is the difference in using CROSS APPLY and EXISTS?
when ...
0
votes
1answer
676 views
Avoiding multiple if exists, else if exits statement for different joins used inside
Inserting in one common table with the different scenarios
E.g:
if exists(select id from tablename where id =1 )
insert into Temp
select * from tbl inner join ........
else if exists(select id ...
0
votes
2answers
763 views
mysql select ids from one table which are not found in another table under certain conditions
Using the following two (simplified) table structures I'd like to find all DISTINCT session_id values that appear in TABLE1 where flag = yes that DO NOT appear in TABLE2 where progress = 11.
TABLE1 ...
1
vote
2answers
996 views
The old IN vs. Exists vs. Left Join (Where ___ Is or Is Not Null); Performance
I have found my self in quite a pickle. I have tables of only one column (supression or inclusion lists) that are more or less varchar(25) but the thing is I won't have time to index them before using ...
1
vote
2answers
407 views
Shuold I use not exists or join statement to filter out NULLs?
SELECT *
FROM employees e
WHERE NOT EXISTS
(
SELECT name
FROM eotm_dyn d
WHERE d.employeeID = e.id
)
And
SELECT * FROM employees a LEFT JOIN ...
2
votes
4answers
5k views
Oracle: Check if rows exist in other table
I've got a query joining several tables and returning quite a few columns.
An indexed column of another table references the PK of one of these joined tables. Now I would like to add another column ...
3
votes
2answers
2k views
Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier
i m having a little syntax problem in my query (simplified) :
select *
from table1 t1
inner join table2 t2 using (pk1)
inner join table3 t3 using (pk2)
where not exists (select1 from table4 t4 where ...
2
votes
3answers
388 views
Oracle performance and memory
I have two queries, and I want to understand which is better in terms of performance and memory. I also welcome other alternatives for these two.
Query 1:
SELECT DISTINCT a.no,
a.id1 ,
...