The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
31 views

Alternative to in operator in mysql

I see In operator alternative in mysql I have nearly 25,000 ids.I am using in operator on that.Then i am getting Stackoverflow Exception.Is there any other alternative for IN operator in mysql. ...
4
votes
5answers
95 views

Alternative for 'in' operator for nested lists

If I want to find something in a list in python I can use the 'in' operator: list = ['foo', 'bar'] 'foo' in list #returns True But what should I do if I want to find something in a nested list? ...
4
votes
3answers
116 views

how use SQL WHERE CASE with NOT IN or equals at the same time?

Hi all (my first post on the Stack!), This works: where Tran_date between @FromDate and @ToDate and Range = @Range and Store_ID = case when @Range = 'RangeName' then 1234 else ...
3
votes
6answers
98 views

IN Operator in Javascript functions like the one in SQL

I have tried the following but it's throwing an exception: if (!$get('sslot_hf0').value in ('X', 'Y', 'Z', '0')) { $get('sslot_hf0').value = 'X'; } I am ...
2
votes
2answers
1k views

SQL In Clause Multiple Columns

SELECT * FROM Tabl tabb WHERE (tabb.col1, tabb.col2) IN ( (1,2), (3,4)) The above works in Oracle but I am trying to run in a proprietary SQL engine which doesn't support the above query formation ...
0
votes
3answers
54 views

mysqli_stmt, arrays, & IN operator

I've looked all over, but I can't find any details on whether or not it's possible to easily and conveniently pass an array directly into the argument of the IN operator in a MySQL prepared statement. ...
0
votes
2answers
184 views

Using “IN” operator in a dynamic query

i've been searching SO for a while and found nothing related to this. We use heavily the dynamic approach for most of our queries like this: Declare @ContactId VarChar(8000) Select @ContactId = '1' ...
3
votes
1answer
224 views

Sanitizing user inputs that are part of dynamic PL/SQL command

I have a table filled by users and its VARCHAR2 records contain a part of executable PL/SQL code "IN(user_input)". I wonder how I can sanitize these user inputs or maybe revrite it to be more ...
-1
votes
1answer
544 views

android.database.sqlite.SQLiteException: near “?”: syntax error

Hy everybody I have a cursor and I need to verify in where clause if a specific id belongs to an array. However I haver an error android.database.sqlite.SQLiteException: near "?": syntax error: , ...
1
vote
1answer
86 views

mongodb “all” conditional operator implemented in mysql database

How can I translate "all" conditional operator present in mongodb in mysql database? So for example, I have a list of tags in a table "tags": table tags: id user_id name 1 5 apple ...
-3
votes
9answers
2k views

How to use php array with sql IN operator? [closed]

I have and array with two values and I want to use it with sql IN operator in select query. Here is the structure of my table id comp_id 1 2 2 3 3 1 I have an array $arr which have two ...
4
votes
3answers
652 views

MySQL - NOT IN LIKE

How can I, in mysql, check if a value is inside a number of fields in another table? Something like SELECT * FROM table WHERE concat('%',value,'%') NOT LIKE IN(SELECT field FROM anothertable) But ...
1
vote
1answer
973 views

how using SQL IN operator in find method of cakephp ORM

i am beginner in cakephp , and i want use SQL IN operator in find method , i have words table. my code is : $this->Word->find('Word.wordid in (83,82)'); , and this code create this query : ...
4
votes
1answer
227 views

The 'in' predicate in Entity Framework

In T-SQL, we have where empid in (1, 3, 5) Now suppose I have a List<int>, how do I write a LINQ to Entities query, namely a predicate for Where() to get the equivalent of the above SQL ...
1
vote
1answer
580 views

“Merge” IN and LIKE operator in Mysql

I've a problem and I'm guessing if there's a better way to achieve my goal. I've this query in Mysql to retrieve some rows: SELECT * FROM table WHERE field IN ('V','S','G','B') What I would like to ...
5
votes
1answer
883 views

MySQL in-operator must match all values?

I've made my own forum. When doing a search I want to find any threads where two (or more) specific users have participated. I came up with this: SELECT * FROM table1 INNER JOIN table2 ON ...
26
votes
5answers
3k views

Java in operator

For the one millionth time, I would have liked to use an IN operator in Java, similar to the IN operator in SQL. It could just be implemented as compiler syntactic sugar. So this if (value in (a, b, ...
3
votes
2answers
410 views

Why is Hibernate ALTER ing my QUERY ? multiple columns with IN operator

If I debug, I can see that the string I'm building is and ( property1 , property2 ) in ( values (0, 5) , (3, 4) ) but Hibernate thinks it's better to transform it like this and ( ( ...
3
votes
1answer
3k 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 ...
3
votes
4answers
390 views

Operator to test for collection membership in Javascript

how could I efficiently do collection membership checks in Javascript? I have a potentially large array of strings and I need to verify if a given string is a member of the array. Initially I thought ...
0
votes
3answers
741 views

T-SQL: Where xxx IN temporary table

I have a temp table and want to check in a where clause wether a certain id/string is contained in the temp table. Select... WHERE MyId IN MyTempTable I get a general error in MS SQL Management ...
2
votes
4answers
467 views

avoid Sorting by the MYSQL IN Keyword

When querying the db for a set of ids, mysql doesnot provide the results in the order by which the ids were specified. The query i am using is the following: SELECT id ,title, date FROM Table WHERE ...
19
votes
10answers
6k views

Is there a C# IN operator?

In SQL, you can use the following syntax: SELECT * FROM MY_TABLE WHERE VALUE_1 IN (1, 2, 3) Is there an equivalent in C#? The IDE seems to recognise "in" as a keyword, but I don't seem to be able ...
2
votes
2answers
2k views

How does the Groovy in operator work?

The Groovy "in" operator seems to mean different things in different cases. Sometimes x in y means y.contains(x) and sometimes it seems to call y.isCase(x). How does Groovy know which one to call? ...
6
votes
5answers
5k views

Imitating the “IN” Operator

How can one achieve: if X in (1,2,3) then instead of: if x=1 or x=2 or x=3 then In other words, how can one best imitate the IN operator in VBA for excel?
6
votes
2answers
8k 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( ...