Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
8answers
408 views

LINQ to Entities - where..in clause with multiple columns

I'm trying to query data of the form with LINQ-to-EF: class Location { string Country; string City; string Address; … } by looking up a location by the tuple (Country, City, ...
6
votes
3answers
127 views

SQL Server selecting a string from table using in clause

Im having a strange SQL server issue. using the following query: SELECT id FROM table WHERE id IN ('id1', 'id2', .......) when id is nchar(30) and 'id1','id2',.... are values i get a result which ...
4
votes
2answers
228 views

Is this the proper way to handle an ordered array with Doctrine2's WHERE IN expression?

Using Zend Lucene Search, I am returning a list of relevance-ordered IDs that map to blog records that I will fetch from the database. Is this the proper way of handling an array with Doctrine2's ...
4
votes
3answers
269 views

MySQL specify arbitrary order by id

Is it possible to specify an arbitrary order for a MySQL SELECT statement? E.g., SELECT * FROM table_name WHERE id IN (1, 3, 2, 9, 7) ORDER BY (1, 3, 2, 9, 7); The order of the numbers listed ...
3
votes
1answer
124 views

Creating a “where in” HQL query

I am having trouble writing a HQL query which uses a "where in" clause. Simplified classes look like this: class Parent { public virtual Int64 Id { get; private set; } public virtual string ...
3
votes
5answers
437 views

MySQL - SELECT WHERE field IN (subquery) - Extremely slow why?

I've got a couple of duplicates in a database that I want to inspect, so what I did to see which are duplicates, I did this: SELECT relevant_field FROM some_table GROUP BY relevant_field HAVING ...
2
votes
2answers
107 views

Maximum values possible in a WHERE IN query

I have a table with over 3000000 entries, and i need to delete 500000 of them with given ID's. My idea is to create a query like: DELETE FROM TableName WHERE ID IN (id1, id2, ...........) which i ...
2
votes
1answer
193 views

MySQL select where in but not in with join

I have three tables in my database: Products id (int, primary key) name (varchar) Tags id (int, primary key) name (varchar) ProductTags product_id (int) tag_id (int) I'm doing SQL query ...
2
votes
1answer
397 views

Force MySQL to return duplicates from WHERE IN clause without using JOIN/UNION?

This might not be very sensible, but I'ld like to let MySQL return me the exact duplicate rows if there are duplicate criteria in the WHERE IN clause. Is this possible? Take this example: SELECT ...
1
vote
1answer
76 views

Avoid SQL WHERE NOT IN Clause

I have 3 tables listed below: Blog BlogArticle Article ---- ----------- ------- id id------blog_id -id title article_id__/ title This SQL describe what I want: SELECT * ...
1
vote
3answers
59 views

Is there a way to retrieve only the values in the IN (or NOT IN) clause that did not match a record in a table?

This might be a weird question. Currently, I have a table with a bunch of data in it. Using PHP, I am dynamically creating the IN clause. SELECT * FROM table WHERE field IN ('str1', 'str2', [...]) ...
1
vote
1answer
79 views

How to write WHERE IN clause from a dymanic ArrayList for Android SQLite query

How can i write the where in clause in Android SQLite query? Function to retrieve a single customer public Cursor getCustomers(int groupId) { return db.query(TABLE_CUSTOMERS, new String[] { ...
1
vote
2answers
230 views

Pass string into SQL WHERE IN

I am working on a query page where a user selects a value which represents different types, each identified by an ID. The problem is selecting these IDs from the data base using the WHERE IN method. ...
1
vote
2answers
125 views

Keep on sort order when using IN statement in WHERE clause

I'm using SQL Server 2005. I have a temporary sorted table (Table_A) that contains 2 columns (ID, RowNumber). Now, I create a new table by selecting all rows from other table (Table_B) that exist (ID ...
1
vote
5answers
839 views

mysql WHERE XXX = ZZZ AND XXX = YYY

I am new to mySql and am trying to do a filtering query from one column using data from a few other tables. For example, I can pull a table of names, a table of their marks in the sports classes, and ...
1
vote
3answers
250 views

Oracle Stored Procedure not working (where in string)

Here is my entire Stored Procedure: CREATE OR REPLACE PROCEDURE "CTI"."TEMP_DIVISION" ( pDivisionList in varchar2, out_cursor out SYS_REFCURSOR ) as begin open out_cursor for SELECT ...
1
vote
3answers
494 views

MySQL select join where AND where

I have two tables in my database: Products id (int, primary key) name (varchar) ProductTags product_id (int) tag_id (int) I would like to select products having all given tags. I tried: ...
1
vote
2answers
855 views

Passing multiple values for one SQL parameter

I have a CheckBoxList where users can select multiple items from the list. I then need to be able to pass these values to my Stored Procedure so they can be used in a WHERE condition like: WHERE ID ...
1
vote
1answer
402 views

How can realise in PHP PDO WHERE IN statment

Params: $params = 2826558; # Necessary Object $params = array(2826558,2677805,2636005); # NULL Execution code: $data = $this->DQL_selectAllByCampaign_id() ...
1
vote
4answers
2k views

SQL IN equivalent in CAML

Is there "nice" way to create a CAML query for SharePoint that does something like this? SELECT * FROM table WHERE Id IN (3, 12, ...) Or am I stuck with a nightmare of nested <Or> nodes? ...
1
vote
3answers
836 views

MySQL, Given a list, selecting the missing rows from a Table

This has been driving me crazy for the past few minutes I have a table, lets say table_alphabet with three columns. letter(pri) col1 col2 a 24 55 b 45 45 c ...
0
votes
3answers
39 views

MYSQL Not equal to “IN” query

I have a table with loads of id's but I don't want to select around 10 id's First I tried multiple OR but that didn't work then found the IN SELECT * FROM table WHERE id IN (10, 88, 99) But this ...
0
votes
1answer
96 views

Passing an array to sqlite WHERE IN clause via FMDB?

Is it possible to pass an array to a SELECT … WHERE … IN statement via FMDB? I tried to implode the array like this: NSArray *mergeIds; // An array with NSNumber Objects NSString *mergeIdString = ...
0
votes
3answers
95 views

Checking if specific tuple exists in table

Is there a way to check if a specific tuple exists in a table in a where-in statement? Something like: create table Test(A int, B int); insert into Test values (3, 9); insert into Test values (6, ...
0
votes
0answers
35 views

C# ODBC using parameters in IN() query

New to C#, trying to put an array into an IN() SQL statement. In other words, perform a query something like: SELECT * FROM table WHERE something IN( [array_elem_1], [array_elem_2] ... ) Fairly easy ...
0
votes
1answer
40 views

In MySQL how do I use a user defined variable in a WHERE IN clause

I dont understand why this does not work. Can someone explain what I need to do? SET @my_list = '2,6,8,10,12,13,14,18,19,21'; DELETE FROM my_table WHERE my_table.table_id IN (@my_list);
0
votes
1answer
467 views

Android SQLite Syntax - IN clause and Subselect

i spend a lot of time of searching a resolution for this query in android. SELECT * FROM positionen WHERE _id IN (SELECT positionenid FROM fahrtenbuch_position WHERE fahrtenbuchid = 2) i think im ...
0
votes
2answers
30 views

MySQL Query Issue

I have the current database setup: Forename | Surname | Department | Completion_Status Tom Smith Sales Started Bob Jones Sales Completed Alison Baines Sales ...
0
votes
1answer
270 views

Hibernate(HQL) - how to query “where many in()” many to many

I have a user entity that has many cars. I cant fetch the user by car list with "IN" statement. List<Car> cars = getCarsList(); String hql = "From User WHERE user.cars in(:cars)"; Query ...
0
votes
3answers
184 views

Query Optimization using WHERE IN

I'm wondering if someone can explain how the IN calculates? Well, ultimately I'm trying to find out why this query is slow and how to optimize it. I waited over 3 minutes and when I cancelled the ...
0
votes
2answers
164 views

Keeping ordering in a WHERE IN clause in my SQL

I am running the following SQL query: SELECT * FROM cms_albums WHERE id IN (SELECT album_id FROM cms_albums_collections WHERE collection_id = 1 ORDER BY position ASC) Now, assume the inner query ...