0
votes
5answers
35 views

Count the no of id if it is not present in another table based on condition using sql

I have a table which consists of RepId and its date. Table: 1 RepID Date 108981 2013-04-09 00:00:00.000 108981 2013-04-09 00:00:00.000 108982 2013-04-10 00:00:00.000 108982 2013-04-11 ...
0
votes
1answer
42 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 ...
1
vote
5answers
114 views

How to exclude records with certain values in sql select

How do I only select the stores that don't have client 5? StoreId ClientId ------- --------- 1 4 1 5 2 5 2 6 2 7 3 ...
0
votes
1answer
43 views

mySQL seeing if row exist

Hey all i have the following code: $query = "SELECT * " . "FROM wp_postmeta " . "WHERE post_id = " . $postID . " " . "AND meta_key = 'xTraData';"; $result = ...
0
votes
1answer
89 views

mysql select if one-to-many exist

how can i check if a many-to-one relations already exist? SampleTable ╔════╦═══════╗ ║ ID ║ OB_ID ║ ╠════╬═══════╣ ║ 1 ║ 1 ║ ║ 1 ║ 2 ║ ║ 2 ║ 3 ║ ║ 2 ║ 1 ║ ║ 2 ║ 2 ║ ║ 3 ║ ...
0
votes
1answer
95 views

What can I do to speed up this SQL Query?

I've created this SQL query with the help of @Dems :-) Here is some detail, I tried to make a SQLFiddle but I kept getting errors with my variables... This works in Sql Server 2008... My question ...
1
vote
1answer
605 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, ...
0
votes
3answers
245 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 ...
3
votes
2answers
123 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
108 views

Change IN to EXISTS

I have this 2 query : Query #1 SELECT A1.clrn_id ,A1.gpgroup ,A1.cl_id FROM p_dtl A1 WHERE A1.PYMT_DT = TO_DATE(:1 ,'YYYY-MM-DD') and A1.clrn_id in ( select clrn_id ...
1
vote
2answers
2k views

Query to get records present in one table but NOT in the other

I have two tables: teacher_lm and teacher. These tables have both the column "teacher_email" What I need is to get the emails that are present in teacher_lm but not in teacher. I have 2 different ...
0
votes
2answers
3k views

How to check if record exists in another table and if not then add [duplicate]

Possible Duplicate: Insert statement that checks for duplicate before insert I'd like to check if a building id exists in the issue log table using the foreign key b_id. And if it does not ...
0
votes
3answers
199 views

Can you use EXISTS with OR in SQL?

Ok so the question states that I have to list all restaurants that have been reviewed by “Daniel Johnston” or have both a type “Italian” and at least one rating score of at least 4. I've been trying ...
0
votes
2answers
374 views

MySQL Error querying from PHP: IF EXISTS

I have this PHP Code with Query to mysql database: $query2 = "IF( EXISTS (SELECT * FROM shipcargo WHERE shipid='$shipid' AND item='$item' AND price='$price')) BEGIN UPDATE shipcargo SET ...
1
vote
5answers
177 views

Is this the correct way to use EXISTS?

I've been doing some SQL for an exam I have on thursday and I have doubts if I'm using the EXISTS statement correctly. So, here I have a DB with 2 tables Machines Maintenance ...
0
votes
1answer
215 views

Exists in where clause return incorrect result

Please consider this Query: SELECT tesd.State_Code, tesd.City_Code, tesd.Row_ID, tesd.Qsno, tesd.Total_Period, tesd.Current_Period, tesd.Week, tesd.Block_No, tesd.Family_ID, ...
1
vote
4answers
2k views

sql not exists and subquery

suppose there is a college database name | state | enrollment ============================= Stanford | CA | 15000 ----------------------------- Berkley | CA | 36000 ...
2
votes
2answers
76 views

Will the following two queries give the same output consistently?

We want to find the deptno of those departments having employees who can do some work done by employee in depertment 20. SELECT deptno FROM dept WHERE EXISTS(SELECT * FROM emp x ...
1
vote
2answers
468 views

MYSQL Query help : If exists update

I am making a daily counter for a blog and I have problem with this query : IF EXISTS SELECT * FROM tableA WHERE blog_id=1 UPDATE FROM tableA SET c=c+'1' WHERE blog_id='1' AND c_date=NOW() ELSE ...
3
votes
1answer
326 views

Slow query when used as EXISTS subquery

I have the following query: SELECT I.InsuranceID FROM Insurance I INNER JOIN JobDetail JD ON I.AccountID = JD.AccountID WHERE I.InsuranceLookupID IS NULL AND JD.JobID = 28 It executes in about a ...
2
votes
2answers
2k views

sqlalchemy exists for query

How to check that data in query is exists? For example: users_query = User.query.filter_by(email='x@x.com') How I can check that users with that email exists? Now i check this with ...
0
votes
1answer
84 views

Selecting column from an exists statement

This is a follow-up to my previous question: Optimisation of an oracle query I am now using the query as follows select t1.column1, t2.column2 from table1@dev t1 where exists ( ...
0
votes
1answer
467 views

SQLAlchemy EXISTS queryset

I use only django framework with his ORM. And there is some code: User.objects.filter(username='test').exists() that return True or False. this orm query generate SQL: SELECT (1) AS "a" FROM ...
0
votes
1answer
496 views

MySQL Select Count with EXISTS

I have 3 tables. table1 id, thing_id table_index id table_index_info table_index_id, table1_id table_index_info contains a history of table_index. This history can refer to table1, possibly many ...
4
votes
5answers
151 views

Tricky SQL Problem

I have a table like this ... Key Seq Val A 1 123 A 4 129 A 9 123 A 10 105 B 3 100 B 6 101 B 12 102 I want to find cases (like ...
8
votes
4answers
2k views

Is EXISTS more efficient than COUNT(*)>0?

I'm using MySQL 5.1, and I have a query that's roughly of the form: select count(*) from mytable where a = "foo" and b = "bar"; In my program, the only thing that it checks is whether this is zero ...
0
votes
1answer
125 views

Insert based on two elements existing in a row MySQL

I'm imagining that this is a simple question, but I'm running into syntax issues I think. I have a table that has an event ID as primary key(eventID), a device ID that of what triggered the event, ...
0
votes
1answer
245 views

SQL query for check existance of some keys in table in Mysql

I have some static text keys entered as part of my app. My app also has a table of keys that can be used. I want to write a query that checks whether all of those static keys exists in the table. If ...
3
votes
4answers
402 views

Query with multiple EXIST

I've got a database of rooms and equipments. I want to query the database and return a list of rooms with e.g. tv, radio, sat and fridge (eq1, eq2, eq3, ...., eqN). I have the following SELECT ...
2
votes
2answers
2k views

TSQL NOT EXISTS Why is this query so slow?

Debugging an app which queries SQL Server 05, can't change the query but need to optimise things. Running all the selects seperately are quick <1sec, eg: select * from acscard, select id from ...
0
votes
2answers
125 views

SQL Query problem exists

I'm having alot of trouble with the last querie I need and I think it's a level out of my league so any help is appreciated. The tables: CREATE TABLE Recipe (nrecipe integer, name ...
4
votes
5answers
154 views

sql not exist problem

Having a bit of trouble dealing with not exist clause in a querie. I have three tables: Meal no_meal integer type_meal varchar(255) Consumed no_meal integer designation varchar(255) quantity ...
1
vote
1answer
2k views

Mysql Query : Where clause if Exists

I have a MySQL db and inside it a table called ProductMaster with 6 fields "Product_Id,Product_Name,Model,Opening_date,Closing_Date,Status". Opening_Date and Closing Date Can accept null values.So ...