The sql-in tag has no wiki summary.
7
votes
3answers
134 views
Using 'IN' with a sub-query in SQL Statements
Are there any performance issues of using "IN" keyword in SQL statements in places where we can use JOIN?
SELECT xxx
FROM xxx
WHERE ID IN (SELECT Id FROM xxx)
5
votes
3answers
2k views
PDO binding values for MySQL IN statement
I have an issue with PDO that I'd really like to get an answer for after being plagued by it for quite some time.
Take this example:
I am binding an array of ID's to a PDO statement for use in a ...
5
votes
2answers
5k views
Using IN clause in a native sql query
We are trying to dynamically generate an IN clause for a native sql query to return a JPA entity. Hibernate is our JPA provider. Our code looks something like this.
@NamedQuery(
...
2
votes
4answers
94 views
SQL NOT IN Function
Iam trying to insert a record and i want to check that it is not already present in the table.
I try
INSERT INTO emp (empno, name)
VALUES(2, 'ram')
WHERE empno NOT IN (select empno from emp);
...
2
votes
5answers
126 views
Equality of “select … where in” and joins
Suppose I have a table1 like this:
id | itemcode
-------------
1 | c1
2 | c2
...
And a table2 like this:
item | name
-----------
c1 | acme
c2 | foo
...
Would the following two queries ...
1
vote
2answers
34 views
SQL Server 2005 - DataType of variable to store a RowSet
In a typical stored procedure i am working there are various checks with the same query as below.
SELECT ... FROM Projects WHERE ProjectId IN (SELECT ProjectId FROM Tasks)
i would like to replace ...
0
votes
2answers
46 views
Difficulty using an array as part of PDO “IN” query
I'm trying to query a MySQL databse using an array.
$array=array('Group1','Group2','Group3');
$inQuery=implode(",",$array);
//$inQuery='Group1'; //This returns the expected result, but is obviously ...
0
votes
1answer
790 views
Using IN clause in a native sql query with Hibernate 3.2.2
In a fashion similar to the question found here: Using IN clause in a native sql query; I am attempting to make use of an IN() clause by way of a native SQL query in Hibernate. While the author in the ...