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

learn more… | top users | synonyms

568
votes
17answers
212k views

Is there an “exists” function for jQuery?

How can I check the existence of an element in jQuery? The current code that I have is this: if ($(selector).length>0) { // Do something } Is there is a more elegant way to approach this? ...
60
votes
9answers
41k views

Best way to test if a row exists in a MySQL table

I'm trying to find out if a row exists in a table. Using MySQL, is it better to do a query like this: SELECT COUNT(*) AS total FROM table1 WHERE ... and check to see if the total is non-zero or is ...
20
votes
4answers
4k views

Check if multiple strings exist in another string

How can I check if any of the strings in an array exists in another string? Like: a = ['a', 'b', 'c'] str = "a123" if a in str: print "some of the strings found in str" else: print "no strings ...
37
votes
4answers
41k views

INSERT IF NOT EXISTS ELSE UPDATE?

I've found a few "would be" solutions for the classic "How do I insert a new record or update one if it already exists" but I cannot get any of them to work in SQLite. I have a table defined as ...
26
votes
7answers
51k views

How to check if element exists in the visible DOM?

Hello good people of stack overflow, I would like to pick your brain. My question is this: how do you test an element for existence without the use of the getElementById method. I have setup a live ...
38
votes
8answers
54k views

How to check if mysql database exists

Is it possible to check if a (MySQL) database exists after having made a connection. I know how to check if a table exists in a DB, but I need to check if the DB exists. If not I have to call another ...
24
votes
5answers
27k views

JavaScript check if variable exists (is defined/initialized) - Which method is better?

Which method of checking if a variable has been initialized is better/correct? (Assuming the variable could hold anything (string, int, object, function, etc.)) if (elem) { or if (typeof(elem) !== ...
15
votes
4answers
17k views

Best way to check if object exists in Entity Framework?

What is the best way to check if an object exists in the database from a performance point of view? I'm using Entity Framework 1.0 (ASP.NET 3.5 SP1).
5
votes
3answers
198 views

What is easier to read in EXISTS subqueries? [closed]

It's a question of readability. There is no difference in performance. Old versions of SQL Server were silly enough to look up meta data, but not any more. SELECT foo FROM bar WHERE EXISTS (SELECT ...
31
votes
2answers
22k views

LINQ - Where not exists

What is the equivalent of following statement in LINQ: Select t1.appname, t1.julianDte, t1.cat From table1 t1 Where NOT EXISTS ( Select * from table t2 where t1.cat = t2.cat AND ...
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 ...
43
votes
11answers
45k views

how to check if a directory exists in a makefile

I need to generate a directory in my makefile and I would like to not get the "directory already exists error" over and over even though I can easily ignore it. I mainly use mingw/msys but would like ...
12
votes
2answers
13k views

How to check if a file exists on a server using c# and the WebClient class

In my application I use the WebClient class to download files from a Webserver by simply calling the DownloadFile method. Now I need to check whether a certain file exists prior to downloading it (or ...
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.
11
votes
6answers
4k views

Check if twitter username exists

Is there a way to check if a twitter username exists? Without being authenticated with OAuth or the twitter basic authentication?
7
votes
5answers
20k views

C# - Delete files from directory if filename contains a certain word

I need to check a directory to see if there are any files whos file name contains a specific keyword and if there are, to delete them. Is this possible? Example: If there are any files in ...
8
votes
6answers
21k views

C# Cannot check Session exists?

I get an error when I do the following: if(Session["value"] != null) { // code } The error i get is this: Object reference not set to an instance of an object. Why is this? I always check my ...
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 ...
2
votes
3answers
1k views

Shorthand function for checking whether a property exists

Can you guys help me make a shorthand function determining whether an object property exists? In 99% of the cases I want to use it to check whether the returned json object contains the specified ...
1
vote
4answers
423 views

IF EXISTS UPDATE ELSE INSERT haunted me for hours - new to MySQL

This thing has been haunting me for hours. Please help! I am new to MySQL (it's MySQL 5.1 hosted at my ISP). mysql_query(" IF EXISTS(SELECT * FROM licensing_active WHERE title_1='$title_1') THEN ...
9
votes
4answers
12k views

The quick way to check if SELECT EXISTS(…) returns a value, using PHP?

I am trying to quickly determine if a user_ID is the owner of a 'goal'. I believe my SQL query is good, but I'm trying to find a nice way of checking the result! In this case, no matter what I put ...
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 ...
2
votes
1answer
922 views

nodejs, redis. check if keys exists and create new if not

I'm new to nodejs and maybe don't got an event system how it should work. Can't find a bug. Please advice. I need a simple task - check for a tag, if it does not exists, set the new key and info about ...
2
votes
2answers
613 views

Correct INSERT .. ON DUPLICATE KEY syntax?

How can I check if a specific primary key (a string variable) already exists on the table and if not insert a new record otherwise just update the existing one with new values using c#? I tried this ...
1
vote
7answers
13k views

check if MySQL table exists or not [duplicate]

Possible Duplicate: MySQL check if a table exists without throwing an exception I have a dynamic mysql query builder in my project that creates select queries from different tables. I need ...
1
vote
4answers
8k views

Check if xml node exists in PHP

I have this simplexml result object: object(SimpleXMLElement)#207 (2) { ["@attributes"]=> array(1) { ["version"]=> string(1) "1" } ["weather"]=> object(SimpleXMLElement)#206 ...
1
vote
2answers
404 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 ...
0
votes
2answers
917 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 ...
49
votes
5answers
40k views

If one of two elements exists, do something

I currently do this to check if one of two elements exists: if ($(".element1").length > 0 || $(".element2").length > 0) { //do stuff... } Is there a better way to rewrite the same? I mean, ...
35
votes
6answers
41k views

How to check if a file exists and is readable in C++?

I've got a fstream my_file("test.txt"), but I don't know if test.txt exists. In case it exists, I would like to know if I can read it, too. How to do that? I use Linux.
11
votes
6answers
46k views

MySql - Create Table If Not Exists Else Truncate?

Here is the updated question: the current query is doing something like: $sql1 = "TRUNCATE TABLE fubar"; $sql2 = "CREATE TEMPORARY TABLE IF NOT EXISTS fubar SELECT id, name FROM barfu"; The first ...
9
votes
3answers
7k views

NHibernate: CreateCriteria and Exists clause

How can I write the following SQL using CreateCriteria: SELECT * FROM FooBar fb WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id)
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 ...
38
votes
2answers
10k views

is_file or file_exists in PHP

I need to check if a file is on HDD at a specified location ($path.$file_name). Which is the difference between is_file() and file_exists() functions and which is better/faster to use in PHP?
8
votes
5answers
16k views

C++ - Determining if directory (not a file) exists in Linux

How would I determine if a directory (not a file) existed using C++ in Linux? I tried using the stat() function but it returned positive when a file was found. I only want to find if the inputted ...
6
votes
4answers
830 views

How to check existence of an input argument for R functions

I have a function defined as myFun <- function(x, y, ...) { # using exists if (exists("z")) { print("exists z!") } # using missing try(if (!missing("z")) { print("z is not missing!") }, ...
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 ...
15
votes
11answers
24k views

SQL: Return “true” if list of records exists?

An alternative title might be: Check for existence of multiple rows? Using a combination of SQL and C# I want a method to return true if all products in a list exist in a table. If it can be done ...
11
votes
6answers
9k views

Checking if a directory exists in Unix (system call)

I am not able to find a solution to my problem online. I would like to call a function in Unix, pass in the path of a directory, and know if it exists. opendir() returns an error if a directory does ...
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
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 ...
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 ...
2
votes
5answers
3k views

How do I check for the existence of an external file with XSL?

I've found a lot of examples that reference Java and C for this, but how do I, or can I, check for the existence of an external file with XSL. First, I realize that this is only a snippet, but it's ...
1
vote
4answers
9k views

Checking whether an item does not exist in another table

My tables are set up something like this: table name: process fields: name, id_string table name: value_seach fields: id_string, value I want to construct a select statement that will display all ...
1
vote
3answers
587 views

Get date even if it doesn't exist in table from SQL SELECT statement

I have a table that stores the amount of errors according to what alarm-id it is. The table looks something like this: |----DATE----|---ALARM_ID---|---COUNTER---| | 2012-01-01 | 1 | ...
1
vote
3answers
245 views

Passing unset variables to functions

My code: function Check($Variable, $DefaultValue) { if(isset($Variable) && $Variable != "" && $Variable != NULL) { return $Variable; } else { return ...
6
votes
3answers
1k views

jQuery element exists event

Is there an event or simple function for a calling a callback once a specific element exists on the page. I am not asking how to check if an element exists. as an example ...
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 ...
3
votes
2answers
541 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
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 = ...

1 2