The not-exists tag has no wiki summary.
0
votes
2answers
44 views
where not exists clause sql
So I am trying to list students that are in at least one class but are not part of a group. My code is showing up 0 results but there should be two. Something is wrong with my where clause. I can get ...
0
votes
1answer
56 views
left join query instead of not exists
I have a "not exists query" that perform poor. So I though that a "left join query" will perform better but thats not the case. I am running these queries in VBA.
here is my "not exists query"
...
3
votes
2answers
173 views
Performance with NOT EXISTS - t-sql query
This (modified for simplicity) query is part of a larger query, and joined on date with other selects. However I have pinned this section to be dog slow. Say I have a UserLoginHistory-table that logs ...
1
vote
1answer
129 views
NOT EXISTS clause in SQL
I have been stuck on a query and I am really not able to think how does the execution takes place, any help will be highly appreciated :
The query is deviced to find the details of the employee who ...
0
votes
1answer
83 views
SQL Server Select erroneous records that do not have a matching valid record
We have an issue where we have 100,000 erroneous records in one of our tables. These erroneous records are easily identifiable because their primary key is only 8 digits instead of 10 digits long.
...
0
votes
1answer
236 views
MySQL SELECT Field as NULL if NOT Exist in table
The below query retrieves Quarterly data for Year 0. This query successfully retrieves quarters 1, 2, and 3.
Year Quarter Quarterly_Yield
2012 3 6.6
2012 6 ...
0
votes
1answer
98 views
Inserting unique value into database PGSQL/MSSQL
I'm trying to insert unique records in a MSSQL and Postgresql DB using insert into where not exists. But I am getting a incorrect syntax error as seen below. What am I doing wrong?
INSERT INTO ...
3
votes
4answers
408 views
SQL: UPDATE if not exists, else DELETE
I'm currently trying to write a script that will change a user's role to another, without creating duplicates in a SQL Server database.
For example:
User_ID Role_ID
---------------------
A ...
3
votes
6answers
92 views
MySQL - NOT IN produce unwanted result
I have tables below:
user
+-----------------------------------------------+
| user_id | username | Password | ... |
+-----------------------------------------------+
| 1 | a ...
1
vote
2answers
123 views
Are this query identical? Not exist and left outer join formulation
I want to take every record of ENI_MONITOR which is orphan. In ENI_FLUSSI_HUB the corresponding record should not exists. Are both te formulation correct? How does left outer join thinks?
SELECT /*+ ...
1
vote
0answers
86 views
Is there a way to conditionally insert using Hibernate?
We've got a table that has new rows for each updated value. The primary key consists of an ID and a timestamp. There's also a status column. For a particular ID, we'll have a row representing each ...
2
votes
1answer
620 views
Criteria api query in Hibernate with not exist
Im trying to write query, which returns me list of Drivers wich is not assigned to route.
My database a set up as following.
Route:
route_id
user_id//specified as driver
User:
user_id
role // need ...
0
votes
2answers
125 views
Two records that have same data cell value in one field but different in another, query to return only one based on criteria
I need some help on my mysql syntax.
My table has user information but has the same order number for both ship to and bill to.
Sometimes people choose to ship to their billing address; I only need ...
0
votes
0answers
37 views
Is it possible to return all the rows to be updated, in select statemnt so that we know that these rows will be affected
when ever I update using the not existsor existsstatement for update, I cannot seem to find a way to see the rows that it effects. Is it possible to know before hand, which rows are going to be ...
0
votes
1answer
69 views
htaccess redirect exits specific file
I store file like this
products/back.jpg
products/thumbnail.jpg
products/items/1/back.jpg
products/items/1/thumbnail.jpg
products/items/2/back.jpg
products/items/2/thumbnail.jpg
...
2
votes
3answers
113 views
MySQL query GROUPing from one table, excluding results found in another sub query
Let's say I have two tables - ADDONS and DOWNLOADS.
ADDONS dictates which apps come with which addons for FREE.
DOWNLOADS logs addon downloads from all apps, those that include for free and not.
...
1
vote
3answers
266 views
MYSQL query involving 'not exists'
I have a university practical next week on databases. I need to create 15 queries around a scheme on a university, which looks as follows:
Student(Student_No, First_Name , Last_Name, Sex, ...
0
votes
2answers
171 views
cakephp placeholder if image not exist
I have a database with images associated to each entry.
Anyhow, some entries don't have an image.
Googling I found some js and php way to apply in the view, but I'm pretty sure there is a (much ...
0
votes
1answer
136 views
SQL Management Studio filter Where Value “Does Not Exist”?
I joined two tables (let's call them Hours and Target) and want to pull a target from the second table if the there is a target associated within a time period that surrounds the date in Hours. ...
2
votes
2answers
2k views
MySQL Procedure check if record exists before insert not working
I have looked at the other questions on here about this. It isn't working.
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `environment_admin`(
IN environment_id TEXT,
IN user_id ...
0
votes
3answers
422 views
SQL: Display Full Name + Filter By Subject
Here are the following records inside my tables:
EnrollStudents
EnrollID StudentID SubjID
1 1 1
2 1 2
3 1 3
4 2 1
...
1
vote
2answers
165 views
NOT EXISTS on empty table returning false
I have a SELECT query across 2 tables that isn't returning any results and I have no idea why it isn't. This is the query that doesn't return any rows:
SELECT b.name, b.description, b.badge_id
FROM ...
1
vote
3answers
1k views
SQL: INNER JOIN + NOT EXIST
I am trying to create an SQL statement where I need to join 3 tables
EnrollStudents
EnrollID UserID SubjID
1 1 1
2 1 2
3 1 3
4 ...
1
vote
1answer
500 views
in bash find all files in flat directory that don't exist in another directory tree
I have many files in a directory A.
Some of those files exist in a directory tree with sub-directories B/B1, B/B2, B/B3, B/B4, ...
Note that some files have spaces in their names.
For example:
in ...
1
vote
2answers
84 views
joining tables with not exists query [duplicate]
Possible Duplicate:
Mysql: Perform of NOT EXISTS. Is it possible to improve permofance?
Is there a better/optimal way to do it. Should I use exists instead of join? Or two separate queries? ...
0
votes
0answers
281 views
Mysql - Trigger - Concat - Failed
I have this trigger and produces the error:
The table not exist "lecturas.TablaX"
Begin
# Declaramos Variables
Declare MasterX,TablaX, varchar(100);
#Determinamos Master
Set MasterX = ...
2
votes
1answer
165 views
Struggle with SQL Statement (Not Exists)
Hey i have some problems with a sql statement. This is the Database Scheme:(http://docs.elgg.org/wiki/DatabaseSchema), only the "entities" and the "relationship" table are important! What i'm trying ...
1
vote
3answers
484 views
WHERE NOT EXISTS - MYSQL/PHP [duplicate]
I can't get my NOT EXISTS mysql statement to work and it's driving me mad now:
$ancestors = mysql_query('
SELECT * FROM comments e
WHERE
ancestors = "' . $comment["id"] . '" ...
0
votes
3answers
97 views
MySQL select record from one table there not exist in othre
I have 2 tables:
TABLE customer_service_provider
==================================
id | customer | service_provider
==================================
1 | 1 | 1
2 | 1 | 2
3 ...
0
votes
3answers
148 views
mysql joins - how to find all children that belongs to ALL parents
I have three mysql tables
items
===========
id title
items_in_categories
============================
id item_id category_id
categories
===========
id title
I want to find all the ...
1
vote
2answers
394 views
How to write Linq (or lambda) statement to produce all element that are NOT IN (or NOT EXIST)
Here is my scenario (Tables):
Orders
======================
Id (int)
description (varchar)
Products
======================
Id (int)
description (varchar)
OrderProductXREF (cross reference table)
...
1
vote
4answers
150 views
How to get rid of NOT EXISTS
I have a sql that is not very complex but sufficiently confusion that I question rather I have an equivalent or by coincident that the count are the same.
SQL1:
SELECT a, b
FROM table1
WHERE NOT ...
-1
votes
3answers
209 views
Select * Where not Exists gives me errors
Ok my objective is to query table 1 for data, but make sure that the data has not already been presented by checking in table 2.
Each data has an ID which is under the UUID column.
Select * FROM ...
21
votes
7answers
23k views
If a folder does not exist,Create it
I use a FileUploader control in my application. I want save the files,in a specified folder. Now I want,If this folder does not exists,first create it, then save my file to this folder. And if folder ...
8
votes
2answers
6k views
If does not exist,Add a column
I want write a query in sql server that adds a column to a table. But I want no error display, when run this query.
I use like this query :
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = ...
2
votes
1answer
315 views
Using WHERE NOT EXISTS with dummy table not working on Apache Derby Database
So I'm using Java with Apache Derby, and I'm trying to insert a record, but only if a record with the same key does not already exist, because all the values I want to exist in my code rather than the ...
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
votes
4answers
274 views
To check a date in one table does NOT exist in reservation period in 2nd table
I am new to this after spending 2 days trying to find an answer on the net
I am trying to construct a MYSQL select statement
I have 2 tables on ethat contains a list of dates and prices, the ...
0
votes
0answers
93 views
Removing invalid(nonexisting) colum names from table in Sql Server 2008
Please look at screenshot above: here you see Languages table with PRIMARY KEY Language_Id, and two columns - Name and Number.
Previously the table was named Technologies and not Languages (I ...
0
votes
1answer
674 views
SharePoint 2010 folder woes
I've put together a function that creates a sharepoint folder in a document library based on the url that's past in as an argument. The code works and the folder shows up in sharepoint from the ...
2
votes
2answers
1k views
Mysql IF NOT EXISTS then syntax
I can't manage to produce a working mysql query right now for what I want. I got as close as
IF NOT EXISTS(SELECT *
FROM Users
WHERE ...
0
votes
3answers
193 views
Enter one record using 'if Not Exists'
I'm trying to find one record in the Meeting table that contains the same Modified_user_id, assigned_user_id, Name, date_start,date_end, created_by as the record that's being saved. The new record ...
0
votes
0answers
537 views
SQL Insert if Not Exists with a Select Statement
I'm trying to insert a record into a table using "Not Exists", but can't get it to work.
When I run the "select" statement that's in the "Not Exists" statement, it returns 0, so The record should be ...
1
vote
2answers
638 views
View with Not exists join to be used in Entity Framework
I need to create a view in SQL Server and to use it in a GridView on my .aspx page.
The view is mapped in my application through Entity Framework.
Here's my example:
SELECT User.UserName, ...
1
vote
1answer
772 views
MySql 5.1.32: call another procedure within a stored procedure and set variable
I'm new at creating and working with stored procedures.
After spending several hours on trying, reading tutorials (and yes reading all the related questions at stackoverflow :-) ) I'm stuck.
This ...
0
votes
2answers
228 views
MySQL INSERT if one of primary key value doesn't match
I would like to do MySQL query like this:
if((value1 != dbPrimaryValue1) OR (value2 != dbPrimaryValue2))
INSERT ROW
else
DO NOTHING
Lets try example:
CREATE TABLE `tmp` (
`one` ...
2
votes
3answers
2k views
How can I do an insert where not exists?
I'd like to combine an insert query with a "where not exists" so as not to violate PK constraints. However, syntax such as the following gives me an Incorrect syntax near the keyword 'WHERE' error -
...
3
votes
2answers
6k views
mysql: select all items from table A if not exist in table B
I am having problem with selecting values from table a (id, room_name) where there are no corresponding events in table b (room_id, room_start, room_finish)
my query looks following
SELECT id, ...
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 ...
1
vote
3answers
208 views
what does this query mean
what does this query mean
select fname, lname
from Owner
where not exists
(select fname, lname
from Trainer)
what i understand :it returns fname and lname from table ...


