The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
69 views

Dynamic query, parameters not working for where in

I am working with dynamic queries on oracle and when I pass the string parameter for where in condition, its not working. for x in ( SELECT DISTINCT column_id FROM table ...
-1
votes
0answers
28 views

Build a mysql query with a date format into a WHERE IN

I have a table with a field "fecha_premio" with is a date field 'Y-m-d H-i-s' I want to make $query = $this->db->select('usuarios.*, UNIX_TIMESTAMP(ganadores.fecha_premio) as ...
0
votes
1answer
73 views

Add multiple values in where clause in grocery crud

I want to add multiple values in where clause. ------------As In Sql , we do like this------------------ SELECT column_name(s) FROM table_name WHERE column_name IN (value1,value2,...) How to use ...
3
votes
1answer
53 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 ...
0
votes
1answer
36 views

Finding and displaying duplicate values using WHERE IN to compare two values

I have a MYSQL database where I would like to compare duplicated values based on two values in a column. For Example Database field_one | field_two | field_three ...
0
votes
1answer
22 views

Retrieve items matching tags, and simultaneously retrieve all tags that go along with each item

I have the following tables, relevant to this question: project - projectId (PK) - projectTitle - projectDescription - etc.. tag - tagId - tagName - tagDescription - etc... project_tag - projectId ...
0
votes
2answers
33 views

How to use WHERE IN in Rails 3 project using MySQL 2?

I am quite to new to Rails and have marginal experience with SQL-type languages. I am working on a Rails 3 project using a MySQL2 I have here a generic SQL statement that I want to work on BOTH of ...
0
votes
1answer
40 views

How to use WHERE IN in Rails 3 that works across database systems?

I am quite to new to Rails and have marginal experience with SQL-type languages. I am working on a Rails 3 project where my test-version of the product and my project manager's version of the product ...
1
vote
1answer
187 views

SQL DataSource using WHERE IN clause

Using Studio 2010 C# with DB2 UDB 9.7.5 I have a gridview being populated from a DataSource with a WHERE IN clause as follows: <asp:SqlDataSource ID="LUWAccts" runat="server" ...
-4
votes
1answer
68 views

SQL Statement NOT NULL [closed]

I have a problem in my SQL Statement: SELECT * FROM Members WHERE MemberID IN (SELECT MemberID FROM PersonGroup WHERE GroupID = '$i') AND Where Email IS ...
1
vote
1answer
35 views

MySQL: Looping Through Multiple Fields in an IN Clause

I have a universe that has one column where there are 3 types of id's. I know that I can use 3 separate OR clauses in my WHERE statement WHERE isin IN(n) OR cusip IN(n) OR psedol IN(n) but is ...
0
votes
5answers
98 views

MySQL multiple IN clause does not work

I have a MySQL table column rubrics which contains string value '61,80,112,256'. So I try execute that query: select * from table where 256 in (rubrics) and 61 in (rubrics) And no result returns. ...
2
votes
4answers
167 views

c# where in with list and linq

I have two lists, one have a list of object A an other a list of objects B, like this: ObjectA { Int64 idObjectA; String name; .... } ObjectB { Int64 idObjectB; Int64 idObjectA; ...
0
votes
1answer
86 views

When using Hibernate for Java getting abnormal behavior binding parameterList in HQL

UPDATE I found the issue. Kind of embarrassing. The client side code was sending a Set of 1 element which was the concatenated String of the report Ids. AArgh! I am using hibernate v3.6.4 in my ...
1
vote
2answers
107 views

Will “WHERE x IN (SELECT value FROM table) ” be inefficient for large tables?

The following two SQL queries return the same results: SELECT * FROM Table1 WHERE Table1.Value1 = 'something' OR Table1.Value2 IN (SELECT Value2 FROM Table2) SELECT * FROM Table1 ...
1
vote
4answers
149 views

MYSQL query WHERE IN vs OR

I have developed a system using an OR query: SELECT * FROM tableA JOIN tableB ON (idA = idB) WHERE idA = 1 OR idA = 2 OR idA = 3 OR idA = 4 OR idA = 5 ...... OR ...
0
votes
1answer
315 views

Hibernate/HQL to achieve SQL WHERE … IN (SELECT…) query

What is the best way using Hibernate to achieve an equivalent of the following SQL query that involves a subquery: SELECT cat.description, cat.code FROM THING_CATEGORY cat WHERE cat.code IN ( ...
1
vote
4answers
68 views

SQL select … in (select…) taking long time

I have a table of items that users have bought, within that table there is a category identifier. So, I want to show users other items from the same table, with the same categories they have already ...
0
votes
3answers
51 views

'join' or 'where not in()'? [duplicate]

Possible Duplicate: Join vs. subquery I need to work with a massive set of data, but need to on occasion exclude records based on a condition. Since the amount of data being checked ...
0
votes
4answers
332 views

where in sql server query update number list one field to another

I am using SQL Server, and in the query below, I have a concern. I am not sure if the field on the left will update with the field on the right (coming from the same table) when I do a where in list. ...
0
votes
1answer
71 views

Nesting “WHERE IN” (or AND, OR statements) SQLite

I'd like to have a SELECT query that gets 8 specific combinations of user1 & user2 (and that combination of user2 & user1 is also worth having and not redundant). The "IN" statement seemed ...
0
votes
2answers
701 views

PostgreSQL: WHERE IN and NOT WHERE IN

I have two tables A and B, A referred to B by field A.id_b B.id, so that any id_b value present in B.id. I have three queries: First one: SELECT COUNT(b.id) FROM B b WHERE b.id NOT IN ( SELECT ...
2
votes
2answers
180 views

Performing a WHERE - IN query in CouchDB

I would like to query for a list of particular documents with one call to CouchDB. With SQL I would do something like SELECT * FROM database.table WHERE database.table.id IN (2,4,56); What is a ...
0
votes
2answers
732 views

Rails where In doesn't recognise where

I keep getting an error undefined method where when running the code below with these parameters. Can anyone see what I'm doing wrong? Thanks Parameters: {"category_ids"=>["1", "3", "4"]} ...
4
votes
4answers
141 views

Does SQL performance degrade as the number elements in an “IN” clause increases?

I have a query like this, SELECT Name FROM Customers WHERE Id IN (1,4,3,6,7) There might be millions of customers in the DataBase. Will there be an efficiency problem with this query ? When the ...
0
votes
3answers
53 views

mysql - count of all instances of multiple strings

Let's say there is a table of tie-dye t-shirts for example... Some shirts have multiple colors, listed as a string, comma separated. Such as blue,yellow,red,purple or green,white,black,red. I would ...
0
votes
3answers
159 views

MySQL: ORDER BY with RANGE query, bad performance

i'm working on a query that should select last 20 posts sent by a defined list of users from a MyIsam table containing more than 400,000 records. The only problem is that query runs in about 0.6sec ...
0
votes
1answer
233 views

WHERE-IN or FIND_IN_SET

An un-normalised db has a table named batches The table batches has field student_ids with multiple ids in it. For example 1311, 1319, 1400 From: SELECT student_ids FROM batches WHERE 1311 ...
1
vote
2answers
96 views

MySQL where-in subquery only returning one row

I have two tables Courses & Students Say, Students has fields: id, first_name with data id : first_name 1 : Andrew 2 : Brian 3 : Charles 4 : David 5 : Eric 6 : Fred 7 : George Say, Courses ...
0
votes
3answers
102 views

Trying to get data from mysql table via php with IN clause (favorites)

Here is how my table "User" looks: Name Password Favorites Test Test 1 2 3 4 And in my table "Data" I have Comment ID "Test" 2 I want the the user to be able to save a comment to its ...
0
votes
2answers
272 views

Zend Framework Mysql WHERE IN clause

Using the zend framework i have used a query,having a IN clause,this is my query $select->where('p.brandid IN (?)',$details[brand]); in the above query, $details[brand] has a value like ...
0
votes
0answers
163 views

Spring - multi-column where-in clause

I am trying to run a multi-column-where-in-clause using Spring. I am unable to execute using the code below. I referred here https://jira.springsource.org/browse/SPR-3610 Assume that this is the ...
0
votes
2answers
80 views

MYSQL return null when more rows than IN values

I'm having trouble finding a right title for this. I'm working on a messaging system with two tables, one with all the different conversations (users in conversation and uid of the conversation) and ...
0
votes
2answers
1k views

Passing C# String as SQL parameter for SELECT WHERE IN

I am writing a function to take as many multiple selected items from a Listbox and pass the vaules to a SQL Query to INSERT values into a table after selecting the filtered values from another table. ...
1
vote
3answers
255 views

How to force Mysql to use primary Index in IN clause…?

Query1. SELECT * FROM traffic WHERE id IN (1904817,1904699,1882859); Query2. SELECT * FROM traffic WHERE id IN (SELECT id FROM data_table where condition=1); Here traffic table ...
0
votes
1answer
182 views

How to generate where-in query with subquery in Entity Framework 4.1

I'm trying to generate this query with entity frameworks dbContext : SELECT id FROM menuitems WHERE (parent_id = 11) UNION SELECT id FROM menuitems AS menuitems_2 WHERE ...
1
vote
1answer
310 views

Flask/MySQL WHERE IN clause not working with just one entry

I have a website that gets user input from checkboxes and returns the corresponding rows from a MySQL table. For example, the user can select a couple colors and the website will show the objects ...
0
votes
1answer
3k views

MySQL SELECT WHERE IN LIST and NOT IN LIST in the same SQL

I have this: $ids = "1,2,3,4,5"; $sqlQuery = "SELECT id, moderation_date FROM table_live WHERE id IN (".$ids.")"; $q = ...
1
vote
7answers
245 views

NULL usage in WHERE IN SQL statement

I have below query Select RPAD(x.QUOTE_ID,20,' ') from csa_sli_all.T_CONV_XREF_CUST_QUOTE x , csa_sli_all.T_CONV_quote q where q.select_indicator is null and q.QUOTE_ID = X.QUOTE_ID ...
1
vote
2answers
278 views

WHERE IN with a local variable [duplicate]

Possible Duplicate: Parameterizing an SQL IN clause? SQL:Casting a String to IDS with IN clause I want to use a declare local variable in a WHERE IN clause Something like this: TABLE ...
0
votes
3answers
152 views

Why does this simple query take forever?

Why does this MySQL query take forever (and never finishes) on a table that has 17k rows? SELECT * FROM files_folders WHERE file IN (SELECT file FROM files_folders WHERE folder = 123); Basically, a ...
0
votes
5answers
576 views

MySQL WHERE IN Query - ORDER BY Match

UPDATED QUESTION Hello, i'm trying to rephrase my question, cause my last one wasn't clear to everyone. This is my Test Table +----------+---------+-------+ | rel_id | genre | movie | ...
1
vote
2answers
307 views

AJAX to MySQL WHERE IN ($_GET) request. Exclude certain results

When I click on "Asus" checkbox the result is all models of "Asus" with all 'sizes', good. But when I click on "Asus" AND "15''" checkboxes both, the result is all models of this size including "Acer" ...
2
votes
3answers
500 views

Why is MySQL not using indexes with composite WHERE IN?

I am trying to get several records by composite index from a table having PRIMARY KEY (a, b) SELECT * FROM table WHERE (a, b) IN ((1,2), (2,4), (1,3)) The problem is, that MySQL is not using index, ...
0
votes
2answers
93 views

Items not returned from a list

I have a list of items that is 860 items long. When i execute the query: select * from tableA where item in (... items ...) I get 858 items. I would like to know the 2 items in the list that are not ...
0
votes
3answers
168 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 ...
1
vote
3answers
2k 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
608 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, ...
1
vote
1answer
739 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 * ...
0
votes
0answers
268 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 ...

1 2