Exists is a keyword or function in many languages, especially in SQL.

learn more… | top users | synonyms

5
votes
1answer
138 views

delphi directoryexists function odd behaviour for network mapped units

In delphi XE, when I call SysUtils DirectoryExists function with the following input 'Y:\blabla\' where Y is a network mapped unit, it correctly returns false because blabla doesnt exist. But when ...
4
votes
3answers
9k views

How can I determine if a Perl hash contains a key mapping to an undefined value?

I need to determine if a Perl hash has a given key, but that key will be mapped to an undef value. Specifically, the motivation for this is seeing if boolean flags while using getopt() with a hash ...
4
votes
4answers
1k views

MYSQL - Difference between IN and EXIST

MySql question: What is the difference between [NOT] IN and [NOT] EXIST when doing subqueries in MySql.
4
votes
5answers
605 views

Additional hash lookup using 'exists'?

I sometimes access a hash like this: if(exists $ids{$name}){ $id = $ids{$name}; } Is that good practice? I'm a bit concerned that it contains two lookups where really one should be done. Is ...
4
votes
3answers
1k views

Isn't Android File.exists() case sensitive?

I've created a new folder "sdcard/dd" by: File album = new File(albumPath); if (album.exists()) { Log.d(TAG, albumPath + " already exists."); } else { boolean bFile = album.mkdir(); } And ...
4
votes
2answers
6k views

Shell script to test whether a directory exists and if not create it?

I am trying to create a script to detect whether a directory exists, and if it does not, to create it. How can I do that? I did some digging and found a clue: test -d directory ...will return ...
4
votes
1answer
881 views

IN clause, NULL handling in TSQL/SQL Server?

Suppose there is a table like this: f1 f2 ---------- 1 3 4 8 6 4 NULL 1 The following query works as expected : SELECT f2 FROM Table_1 a WHERE NOT EXISTS (SELECT * ...
4
votes
2answers
1k views

Check if a template exists within a Django template

Is there an out-of-the-box way of checking if a template exists before including it in a Django template? Alternatives are welcome too but some of them would not work due to the particular ...
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 ...
4
votes
2answers
143 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 ...
4
votes
2answers
547 views

What's the fastest way to check that entry exists in database?

I'm looking for the fastest way to check that entry exists... All my life, I did with something like this... SELECT COUNT(`id`) FROM `table_name` Some people don't use COUNT(id), but COUNT(*). Is ...
4
votes
2answers
2k views

Sql Server 2005 - Insert if not exists

There is lots of information in the internet regarding this common "problem". Solutions like: IF NOT EXISTS() BEGIN INSERT INTO (...) END are not thread-safe in my opinion and you will probably ...
4
votes
1answer
465 views

Check if Trendline Exists in VBA

I have a sheet with a chart in it. I need to insert a button to TOGGLE the Trendline On/Off. So first, I need to check whether a trendline exists or not. Sounds simple, but is driving me NUTS!!! Here ...
4
votes
3answers
1k views

How do you use a T-SQL variable within an if OBJECT_ID to check if a table exists?

What I am trying to do with the following code is have it grab all the database names then loop through those databases check to see if the table tblAdminLogin exists and if it does update the ...
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 ...
4
votes
2answers
984 views

detect if contact has photo

ive got an imageview which im displaying a contacts picture using a uri which always looks similar to this: content://com.android.contacts/contacts/34/photo how would i be able to detect whether ...
4
votes
2answers
789 views

Oracle EXISTS query is not working as expected - DB Link bug?

I'm completely baffled by the results of this query: select count(*) from my_tab mt where mt.stat = '2473' and mt.name= 'Tom' and exists (select * from company_users@colink.world cu, ...
3
votes
2answers
6k views

ALTER TABLE Sqlite: how to check if a column exists before alter the table?

I need to execute in python a SQL query that adds a new column, in sqlite3. The problem is that sometimes it already exists. So previous to executing the query I need to check if the column already ...
3
votes
1answer
2k views

If url exists Objective-c

Hey, I have a program that needs to tell if an online image exists, but the only way that I've gotten this to work is by loading the image in a NSData pointer and checking if the pointer exists. - ...
3
votes
2answers
19k views

How to check if a file exists in javascript?

I'm using the jquery library to load the content of an html file. Something like this: $("#Main").load("login.html") If the file (in this case 'login.html') does not exist, I would like to detect it ...
3
votes
2answers
3k views

PL/pgSQL checking if a row exists - SELECT INTO boolean

I'm writing a function in PL/pgSQL, and I'm looking for the simplest way to check if a row exists. Right now I'm SELECTing an integer into a boolean, which doesn't really work. I'm not experienced ...
3
votes
3answers
7k views

How To Check If A Method Exists At Runtime In Java?

How would one go about checking to see if a method exists for a class in Java? Would a try {...} catch {...} statement be good practice?
3
votes
2answers
28k views

SQL Server: IF EXISTS ; ELSE

I have a tableA: ID value 1 100 2 101 2 444 3 501 Also TableB ID Code 1 2 Now I want to populate col = code of table B if there exists ID = 2 in tableA. for multiple values , get max ...
3
votes
3answers
247 views

Return true if all column values are true

Is there a faster way in PostgreSQL to essentially do an if on several rows? Say I have a table ticket | row | archived 1 | 1 | true 1 | 2 | true 1 | 3 | true 2 | 1 | ...
3
votes
4answers
764 views

Linq To Entities - Any VS First VS Exists

I am using Entity Framework and I need to check if a product with name = "xyz" exists ... I think I can use Any(), Exists() or First(). Which one is the best option for this kind of situation? ...
3
votes
3answers
153 views

Test ALL rows exists

It is very simple to test when row exists or not. if exists(select * from dbo.APQP_head where zestaw=@zestaw) I want to test in my query whether all rows satisfy the condition. I need use some ...
3
votes
5answers
425 views

How to check if a table already exists in the database by using MySQL?

Now I am using something like: dbResult = dbStatement.executeQuery("SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '[e2]' AND table_name = '[emp101_messages]'"); ...
3
votes
4answers
169 views

How can I make an SQL statement that finds unassociated records?

I have two tables as follows: tblCountry (countryID, countryCode) tblProjectCountry(ProjectID, countryID) The tblCountry table is a list of all countries with their codes and the tblProjectCountry ...
3
votes
2answers
3k views

SQL to check if value exists or not

I have 3 tables - TableA, TableB and TableDetail **Table Detail** id FinalValue 1 99 2 88 3 77 **Table A** id InitValue Num 1 10 100 2 30 200 ...
3
votes
2answers
177 views

T-SQL use EXISTS as Column

I'm wondering whether I can use EXISTS (or something similar) in column like this: SELECT Column1, Column2, EXISTS (SELECT 1 FROM Table2 T2 WHERE T2.Column = T1.Column) AS IsFlag FROM ...
3
votes
3answers
355 views

How to wait until File.Exists?

I have an app, listening for the *.log file in chosen folder. I used there FileSystemWatcher. But there is a problem. Other app responsible for making that file makes fallowing steps: Make a *.gz ...
3
votes
2answers
64 views

How to access a possibly existing element derived from a JSON data tree?

I have a rather complex data structure derived from JSON with json.load(<filehandle>), e.g. { "sensors": { "measurements": [ [ null, ...
3
votes
2answers
540 views

Correlated query: select where condition not max(condition in inner query)

I am trying to select all the rows where the userName and groupId is duplicated, and the userId is not the max userId for that userName/groupId combination. Here is my code so far: select * from ...
3
votes
1answer
58 views

Adding an extra button in existing android calling application?

What i want that when a call will come on my android phone then a calling screen will come. I want to update that screen-like if there are to buttons like 1)attend call 2)end call. I want to add a ...
3
votes
1answer
795 views

Eclipse 3.7/GWT+GAE wizard, resource already exists?

A problem occurs for me when I attempt to use the Google Web Application Wizard in the Eclipse IDE (Running on Mac OSX 10.7). If I attempt to generate a project with any given name/package (using the ...
3
votes
3answers
2k views

how to say create procedure if not exist in MySQL

I am trying to write a script to create a procedure in MySQL database, but I want to check if it exsit first. I know how to do it for a table, but when I use the same syntax for stored procedure, it ...
3
votes
4answers
398 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 ...
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 ...
3
votes
2answers
132 views

SQL: Using Not Exists with Nested Query

I'm having trouble understand this query works. It is suppose to return the name of customers who have ordered ALL items. R refers to the table of item orders made by customers which contains the ...
3
votes
1answer
322 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 ...
3
votes
3answers
403 views

Strangeness with bash not operator

I'm trying to determine if a file or directory doesn't exist. I tried the following commands to see if a file does exist and they work correctly: if [ -a 'settings.py' ]; then echo 'exists'; fi ...
3
votes
2answers
2k views

Magento: addAttributeToFilter but ignore for products that don't have this attribute?

I'm trying to show add some filters on my store, but they have a nasty side effect. Suppose I have product type A and B. Now I want to only show A where color = blue/red. $collection = ...
3
votes
4answers
706 views

How to detect page redirect with PHP?

I'm trying to detect whether an image exists on a remote server. However, I've tried several methods and can't get any of them to work. Right now I'm trying to use this: if ...
3
votes
2answers
116 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
4answers
137 views

Can anyone explain why foreach worked but not map

I tried to put key-value pairs at %hash1 if key exists in %hash There is one element in array for which there is no entry at %hash ex: @array = (1,2,3,4,5); #there is no hash entry for key 1 at %hash ...
2
votes
2answers
2k views

How do I check if a key exists in a hash in Perl?

I want to check if parameter $PGkey is equal to a key with the same name inside a hash table. Further, I want to do it in a format as close to this as possible: while(<PARAdef>) { ...
2
votes
5answers
13k views

Oracle sql return true if exists question

How do I check if a particular element exists in a table - how can I return true or false? I have a table that has user_id user_password user_secretQ Verbally, I want to do this: If a ...
2
votes
3answers
156 views

Scala List.contains(x) return false, but exists(_.== x) returns true

I'm working with some simple data structures and collections in Scala and I've noticed what I think is strange behavior. Here's the object: class State (protected val trackmap: Map[Int, ...
2
votes
5answers
1k views

ColdFusion: do i need to use structKeyExists for every element of a deep struct?

Let's say i've just parsed someone else's XML document which is a response to an API request. I want to know if a value nested deep inside exists. If my API request worked, it will be in the same ...
2
votes
4answers
59 views

Checking if a file or directory exists in Java

From this java tutorial by oracle: Note that !Files.exists(path) is not equivalent to Files.notExists(path). Why would they not be equivalent? it does not go any further in terms of ...

1 2 3 4 5 10