Tagged Questions
The in-operator tag has no wiki summary.
23
votes
5answers
969 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, ...
10
votes
9answers
836 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 ...
5
votes
2answers
4k 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(
...
4
votes
5answers
2k views
vba “IN” operator
How best can one imitate the "IN" operator in VBA for excel?
eg
if X in (1,2,3) then
instead of:
if x=1 or x=2 or x=3 then
???
3
votes
1answer
68 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 ...
3
votes
2answers
114 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 (
(
...
2
votes
1answer
80 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 ...
2
votes
4answers
141 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 ...
2
votes
4answers
167 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 ...
1
vote
1answer
79 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 ...
1
vote
2answers
938 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? ...
0
votes
1answer
701 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 ...
0
votes
3answers
179 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 ...