The in-subquery tag has no wiki summary.
3
votes
1answer
54 views
Dapper.Net: IEnumerable<long> parameter throws exception: No mapping exists from object type System.Int64[] to a known managed provider native type
I am using Dapper.Net against SQL Server 2008 R2 in the following code to pass a List<long> parameter to run a SQL query that has a WHERE IN clause, but I get the exception:
No mapping exists ...
3
votes
4answers
293 views
Can Someone Help me Optimize this mysql statement?
I have one table that I'm using to build groups with in my database. The table contains a list of group names and ids. I have another table that has users, and a third table showing the ...
0
votes
2answers
21 views
Selecting the maximum value for each ID on mysql 3.23
The whole issue is due to the fact that sub queries in a IN clause doesn't seem to work on mysql 3.23.
Here's my table structure for table1:
|**idTable1**|**strDescription**|
|1 |blablabla ...
2
votes
3answers
39 views
WHERE [1 of these values] IN [1 of these values]
I have the following query :
SELECT A.id FROM logsen_alertes A
WHERE
( SELECT LA2.type_colocation_id
FROM logsen_liaisons_annonces_types_colocations LA2
WHERE LA2.annonce_id = 25 AND ...
0
votes
1answer
59 views
Filtering out results using sub-queries in ReQL/Rethink?
I'm am trying to learn more about RethinkDB and its sub-query abilities. I was wondering if the following would be possible in ReThinkDB:
// example of "post" document:
{ id: .., allow: [], disallow: ...
0
votes
2answers
36 views
Need to optimize not in sql statement
I have an sql query:
select person from table t1
inner join person_history ph
on t1.person = ph.person
and t1.person not in (select person from person_history
where ...
1
vote
2answers
80 views
MYSQL Inner Join & Get value from Subquery
OK, I am trying to compare two tables and then input a list from a third of names to produce a totals of values for the prior 10 days. The query runs but gives me a NULL result and only one result. ...
0
votes
2answers
43 views
Showing all rows for keys with more than one row
Table kal
id integer primary key
init char 4 indexed
job char4
id init job
--+----+------
1 | aa | job1
2 | aa | job2
3 | bb | job1
4 | cc | job3
5 | cc | job5
I want to show all rows where ...
0
votes
0answers
40 views
MySQL: Subquery w/ WHERE IN
i need some inspiration
_U.UID is unique id
_U.U is the content to collect and copy to _A.U
_A.UID is a list of UID's (format "12,24,25") foreach _A.AID (unique)
With this command i get only the ...
0
votes
1answer
36 views
MySQL disregards indexes when using IN(SUBQUERY)?
I have the following query.
SELECT MIN(col1) FROM table1 WHERE id1 IN (SELECT id2 FROM table2)
This produces output that takes ~5 seconds.
However, if I change the query to run as two separate ...
1
vote
5answers
812 views
MySQL WHERE <multiple-column> IN <subquery>
Is there a way (without JOIN) to use the WHERE clause on 2 columns (OR) IN a subquery?
Currently, I'm doing
WHERE 'col1' IN
(
SELECT id FROM table
) OR 'col2' IN
(
SELECT id FROM table
)
...
0
votes
2answers
102 views
Using one cell to reference another database and combine the two in a query
I am trying to figure out if there is a way to take the value in a cell and replace it with the text name of a user that that number refers to in another table. I have looked through subquerries but ...
0
votes
1answer
1k views
MySQL using IN/FIND_IN_SET to read multiple rows in sub query
I have two tables, locations and location groups
CREATE TABLE locations (
location_id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(63) UNIQUE NOT NULL
);
INSERT INTO locations ...
1
vote
2answers
98 views
MySQL : interval around id column and return another one from subquery with multiple columns
I would like to run a query from a table where the content is like that :
id | col1 | col2 | col3
-----------------------
1 | i_11 | i_12 | i_13
2 | i_21 | i_22 | i_23
3 | i_31 | i_32 | i_33
.. | ...
2
votes
3answers
100 views
Multiple values IN
Normally IN is used with one value:
SELECT * FROM data WHERE f1 IN (<subquery>)
It is possible to use it with multiple values:
SELECT * FROM data WHERE f1 IN (<subquery>) OR f2 IN ...
6
votes
1answer
569 views
Am I crazy: PostgreSQL IN operator with nested query returning unexpected results
The following query returns 2036 rows:
SELECT "FooUID" from "Foo" f
LEFT JOIN "Bar" b ON f."BarUID" = b."BarUID"
WHERE f."BarUID" IS NOT NULL AND b."BarUID" IS NULL
But the following statement only ...
2
votes
1answer
368 views
MySQL returning multiple rows as columns
I'm a bit rusty with SQL, I have one simple table
col1 col2 col3 col4
ident1 name1 data1 data3
ident2 name1 data8 data7
ident3 name1 ...
1
vote
4answers
531 views
Get distinct max date using SQL
I'm not sure quite how to title my question but this is what I'm trying to do:
Given pc_tmppl_tbl
pc_tmppl_attach pc_tmppl_val1 pc_tmppl_crtdt
AJC05-06 AJCINT 2005-08-15 10:32:03.790
...
4
votes
1answer
990 views
MySQL - How to add alias syntax to subquery
I'm new to MySQL and still have issues with its syntax. I have this query:
SELECT a, b, c, d, e
FROM table1
WHERE status = 'skipped'
AND batchid IN (SELECT batchid
FROM (SELECT ...
1
vote
4answers
1k views
Query with HAVING and WHERE
I'm trying to create a single query that will combine the following two queries.
SELECT
campgroundid,
( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) *
cos( radians( lng ) - ...
0
votes
2answers
40 views
Below query doesnt give me expected result please help me out
The select query has to display seperate row for every value it gets
but on executing this query it yields only first value from the sub query used in IN clause.
SELECT prod_id FROM tbl_product ...
3
votes
3answers
634 views
SQL select with “IN” subquery returns no records if the sub-query contains NULL
I came across this interesting behavior. I see left-join is the way to go, but would still like to have this cleared. Is it a bug or behavior by-design? Any explanations?
When I select records from ...
7
votes
2answers
18k views
JPA 2.0, Criteria API, Subqueries, In Expressions
I have tried to written a query statement with a subquery and a in expression for many times. But I have never succeed.
I always get the exception, " Syntax error near keyword 'IN' ", the query ...
8
votes
4answers
9k views
MySQL DELETE FROM with subquery as condition
I am trying to do a query like this:
DELETE FROM term_hierarchy AS th
WHERE th.parent = 1015 AND th.tid IN (
SELECT DISTINCT(th1.tid)
FROM term_hierarchy AS th1
INNER JOIN term_hierarchy ...
0
votes
3answers
196 views
Rewrite IN subquery as JOIN
I've never had good performance with IN in MySQL and I've hit a performance issue with it again.
I'm trying to create a view. The relevant part of it is:
SELECT
c.customer_id,
....
IF ...
0
votes
5answers
473 views
MySQL: Using “In” with Multiple SubQueries?
I'm trying to use this query:
SELECT COUNT(PF.PageID) AS Total,P.PageID
FROM Pages P
LEFT JOIN Pages_Filters PF ON PF.PageID=P.PageID
WHERE P.PageID IN (
(SELECT PageID
FROM Pages_Filters
...
0
votes
4answers
298 views
SQL subquery matches hard-coded IN criteria, but not subquery
I have a group of people who have taken a test. I can select their IDs with this query:
SELECT person_id
FROM tests
WHERE test_code = 1234
I'd like to pull these individuals' records from a ...
3
votes
3answers
6k views
LINQ subquery IN
I'm a newbie with the IQueryable, lambda expressions, and LINQ in general. I would like to put a subquery in a where clause like this :
Sample code :
SELECT * FROM CLIENT c WHERE c.ETAT IN (
SELECT ...
1
vote
2answers
235 views
MySQL Subquery Causing Server to Hang
I'm trying to execute the following query
SELECT * FROM person
WHERE id IN
( SELECT user_id FROM participation
WHERE activity_id = '1' AND application_id ...
0
votes
3answers
186 views
Is there a better way to write this SQL than using WHERE … IN (subquery)?
is there a better way to write this SQL than using WHERE ... IN (subquery)?
SELECT device.mac, reseller.name, agent.name
FROM device
LEFT JOIN global_user
ON device.global_user_id = ...
1
vote
5answers
2k views
What's wrong with this MySQL query? SELECT * AS `x`, how to use x again later?
The following MySQL query:
select `userID` as uID,
(select `siteID` from `users` where `userID` = uID) as `sID`,
from `actions`
where `sID` in (select `siteID` from `sites` where `foo` = "bar")
order ...
