Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
4answers
19k views

Linq to Entities - Sql “IN” clause

In T-SQL you could have a query like: SELECT * FROM Users WHERE User_Rights IN ("Admin", "User", "Limited") How would you replicate that in a Linq to Entities query? Is it even possible? Thanks!
39
votes
13answers
42k views

PreparedStatement IN clause alternatives?

What are the best workarounds for using a SQL IN clause with instances of java.sql.PreparedStatement, which is not supported for multiple values due to SQL injection attack security issues: One ? ...
12
votes
4answers
4k views

What is the best approach using JDBC for parameterizing an IN clause?

Say that I have a query of the form SELECT * FROM MYTABLE WHERE MYCOL in (?) And I want to parameterize the arguments to in. Is there a straightforward way to do this in Java with JDBC, in a way ...
12
votes
7answers
27k views

How to put more than 1000 values into an Oracle IN clause

Is there any way to get around the Oracle 10g limitation of 1000 items in a static IN clause? I have a comma delimited list of many of IDs that I want to use in an IN clause, Sometimes this list can ...
7
votes
4answers
419 views

PreparedStatement with list of parameters in a IN clause

How to set value for in clause in a preparedStatement in JDBC while executing a query. Example: connection.prepareStatement("Select * from test where field in (?)"); If this in-clause can hold ...
3
votes
1answer
97 views

IN Clause with NULL or IS NULL

Postgres is the database Can I use a NULL value for a IN clause? example: SELECT * FROM tbl_name WHERE id_field IN ('value1', 'value2', 'value3', NULL) I want to limit to these four values. I ...
3
votes
4answers
3k views

MySQL number of items within “in clause”

I have three tables to define users: USER: user_id (int), username (varchar) USER_METADATA_FIELD: user_metadata_field_id (int), field_name (varchar) USER_METADATA: user_metadata_field_id (int), ...
2
votes
1answer
1k views

Oracle - In CLAUSE question when using with multiple values, making it dynamic

I just spent an hour on google and here trying to get a straight answer for how to do this in Oracle. What I need is the ability to use select in clause that constructed automatically such as select ...
2
votes
3answers
981 views

MySQL specifying exact order with WHERE `id` IN (…)

Is there an easy way to order MySQL results respectively by WHERE id IN (...) clause? Example: SELECT * FROM articles WHERE articles.id IN (4, 2, 5, 9, 3) to return Article with id = 4 Article ...
2
votes
4answers
326 views

SQL:Casting a String to IDS with IN clause

DECLARE @STR_IDS VARCHAR(15) SET @STR_IDS='7,15,18' UPDATE TBL_USERS WHERE ID IN @STR_IDS I know the update statement would not work as the ID is of type INT and i am replacing a varachar value ...
2
votes
2answers
354 views

IN Operator in where clause

List<HelprClass.Organizer> org = ( from EventOrg in cntx.EventOrganizer from MstrOrg in cntx.Organizer where EventOrg.OrganizerID == MstrOrg.OrganizerID Select new ...
2
votes
3answers
414 views

SELECT * FROM table WHERE x IN (…a few hundred ints…)

Table has about 8 million rows. There is a non-unique index for X. Showing indexes, it shows that in the table there is a non-unique index on key name X with "seq_in_index" of 1, collation A, ...
1
vote
0answers
40 views

How to use PDO to prepare and execute a SQL statement with the IN clause using an array? [closed]

Possible Duplicate: PHP PDO: Can I bind an array to an IN() condition? I am trying to do the following: $jsonarray = json_decode($incomingData, true); $inString = ''; $delimiter = ''; ...
1
vote
1answer
19 views

in-clause scoping

I am doing some work for a company that has SQL Server 2008. One of their stored procedures references (or appears to reference) a column that does not exist, and yet there is no error. The query ...
1
vote
4answers
35 views

In clause with 2 fields on 1 table

I have a query : SELECT MAX(date), logId, computerId FROM logTable WHERE logId IN ('1','2','3') But I want the IN clause test the computerId too like this : logId = '1' and ...
1
vote
2answers
257 views

IN Clause from an included table, doesn't works as expected

I'm trying to do this: var results = (from s in db.ExampleMaster .Include("State") .Include("Group") ...
1
vote
2answers
204 views

Oracle “IN clause” from parameter

I'm very unfamiliar with Oracle and am just trying to get this to work. I've looked here and here but have no idea how to make it all work. Here's what I need. I need a proc that will accept a ...
1
vote
2answers
28 views

In type problem in mysql

My problem is i have source www.yamaha.com in my table but it was not picking up. Please help me SELECT * FROM linkbound_report_source l WHERE source in ('www.yamaha.com ,www.desmogblog.com ...
1
vote
5answers
838 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
5answers
772 views

sql server - IN clause with multiple fields

Is it possible to include in a "IN" clause multiple fields??? comething like the following select * from user where code, userType in ( select code, userType from userType ) thanks I'm using ms ...
1
vote
4answers
4k views

SQL Server 2008 Update Query with Join and Where clause in joined table

not sure why this is not working.. UPDATE ust SET ust.isUnsubscribedFromSystemEmails = 1 FROM UserSetting AS ust INNER JOIN [User] ON ust.userID = [User].userID AND ...
1
vote
5answers
398 views

SQL in clause with dummy rows

I'd really like know if it's possible to do a select statement, which returns exactly same records, that we put into in clause? Sample: select * from table where table_id in (1, 2, 3, 666); This ...
1
vote
2answers
155 views

Problem updating table using IN clause with huge list of ids

Hi I am having a problem when trying to update a table using an IN clause, I have a big list of clients that should be updated 4500+. Update table set columnA = 'value' where ID in ( biglistofids ) ...
1
vote
1answer
759 views

Parameterizing a SQL IN clause on an integer column?

Jeff Atwood asked the original question about parameterizing a SQL IN clause, but I want to do this with an integer column. If I try the code from the original post I get the following exception, ...
1
vote
3answers
718 views

IN clause on multiple columns using AND , JOIN

Which of the following queries are correct SELECT ID, STATUS, ITEM_TYPE,CREATED_TIME,UPDATED_TIME WHERE STATUS IN('OPEN','UPDATED') AND ITEM_TYPE IN ('ITEM1','ITEM2') AND CREATED_TIME BETWEEN ...
1
vote
4answers
5k views

Combine 'like' and 'in' in a SqlServer Reporting Services query?

The following doesn't work, but something like this is what I'm looking for. select * from Products where Description like (@SearchedDescription + %) SSRS uses the @ operator in-front of a parameter ...
0
votes
0answers
68 views

SQL - How is this IN-clause better than using multiple OR clauses [closed]

Possible Duplicate: IN vs OR in the SQL WHERE Clause The query is simple: SELECT NAME FROM PERSON WHERE ID IN (1,10,50,100,..so-on-till-max100...) I tried it in a somewhat different ...
0
votes
1answer
757 views

JPA passing list to IN clause in named native query

I know I can pass a list to named query in JPA, but how about NamedNativeQuery? I have tried many ways but still can't just pass the list to a NamedNativeQuery. Anyone know how to pass a list to the ...
0
votes
3answers
279 views

How do I avoid repeating this subquery for the IN clause?

I have an SQL script (currently running against SQLite, but it should probably work against any DB engine) that uses the same subquery twice, and since it might be fetching a lot of records (the table ...
0
votes
1answer
490 views

Hibernate createNativeQuery using IN clause

Using Java, Hibernate. I have a query String pixIds = "1,2,3"; String query = "SELECT * FROM comment WHERE PIX_ID IN (:pixIds)"; q.setParameter("pixIds", pixIds); List<Object[]> results = ...
0
votes
2answers
534 views

invalid number of returned comma delimited string in a IN clause in oracle

I am trying to use a subquery that returns a comma delimited string in a IN clause. The following way: SELECT p.person_id, g.name || '>>' || p.firstname || ' ' || p.lastname as GROUP_PATH FROM ...
0
votes
2answers
1k views

Passing parameters to IN clause in SQL Server [closed]

Possible Duplicates: Parameterizing a SQL IN clause? SQL Server - In clause with a declared variable Hi, I am facing problem passing parameters to 'IN' clause. I am using the below ...
0
votes
2answers
287 views

Using an IN clause in Vb.net to save something to the database using SQL

I have a textbox and a button on a form. I wish to run a query (in Vb.Net) that will produce a query with the IN Values. Below is an example of my code myConnection = New SqlConnection("Data ...
0
votes
1answer
610 views

Android 2.2 (Froyo) SQLite missing some IN clause functionality?

Recently I updated my Nexus One to Froyo (2.2) and I've noticed some significantly different behavior with SQLite. For example, I had been using a subquery (returning string data) as part of an IN ...
0
votes
0answers
189 views

Mysql optimization for select query with IN() clause inside where clause (explain output given)

I have this query:- SELECT SUM(DISTINCT( ttagrels.id_tag IN ( 1816, 2642, 1906, 1398, 2436, 2940, 1973, 2791, 1389 ) )) AS key_1_total_matches, ...
0
votes
6answers
1k views

SQL Server - In clause with a declared variable

Let say I got the following : DECLARE @ExcludedList VARCHAR(MAX) SET @ExcludedList = 3 + ', ' + 4 + ' ,' + '22' SELECT * FROM A WHERE Id NOT IN (@ExcludedList) Error : Conversion failed when ...
0
votes
2answers
1k views

Optimizing a MySQL query with a large IN() clause or join on derived table

Let's say I need to query the associates of a corporation. I have a table, "transactions", which contains data on every transaction made. CREATE TABLE `transactions` ( `transactionID` int(11) ...
0
votes
3answers
2k views

Subquery in an IN() clause causing error

I'm on SQL Server 2005 and I am getting an error which I am pretty sure should not be getting. Msg 512, Level 16, State 1, Procedure spGetSavedSearchesByAdminUser, Line 8 Subquery returned more than ...