Tagged Questions

A syntactic form in functional languages used to bind a value to a name in a local scope. Similar, but not identical to, `let`.

learn more… | top users | synonyms

37
votes
6answers
53k views

SQL join: where clause vs. on clause

After reading it, this is not a duplicate of Explicit vs Implicit SQL Joins. The answer may be related (or even the same) but the question is different. What is the difference and what should go in ...
15
votes
3answers
16k views

LINQ - dynamic WHERE clause?

What is the best way to assemble a dynamic WHERE clause to a LINQ statement? I have several dozen checkboxes on a form and am passing them back as: Dictionary<string, List<string>> ...
12
votes
10answers
4k views

Is a JOIN faster than a WHERE?

Suppose I have two tables that are linked (one has a foreign key to the other) : CREATE TABLE Document ( Id INT PRIMARY KEY, Name VARCHAR 255 ) CREATE TABLE DocumentStats ( Id INT PRIMARY KEY, ...
11
votes
5answers
9k views

T-SQL Where Clause Case Statement Optimization (optional parameters to StoredProc)

I've been battling this one for a while now. I have a stored proc that takes in 3 parameters that are used to filter. If a specific value is passed in, I want to filter on that. If -1 is passed in, ...
11
votes
5answers
3k views

MySQL - ORDER BY values within IN()

Hey -- I'm hoping to sort the items returned in the following query by the order they're entered into the IN() function. INPUT: SELECT id, name FROM mytable WHERE name IN ('B', 'A', 'D', 'E', 'C'); ...
10
votes
4answers
250 views

In Haskell, when do we use in with let?

In the following code, the last phrase i can put a "in" in front. Will it change anything? Another question: If i decide to put "in" in front of the last phrase, do i need to indent it? I tried ...
10
votes
6answers
7k views

Linq: “Or” equivalent of Where()

Is there a method in Linq where you can use to build SQL strings like "...where (a=1) OR (a=2)"?
10
votes
3answers
2k views

Scala equivalent to Haskell's where-clauses?

Is it possible to use something similar to where-clauses in Scala? Maybe there is some trick I didn't think of? Edit: Thanks for all your answers, they are very much appreciated. To sum up: Local ...
9
votes
2answers
217 views

Haskell type declarations in 'where' — what's going on?

While reading the QuickCheck Manual, I came across the following example: prop_RevRev xs = reverse (reverse xs) == xs where types = xs::[Int] The manual goes on to say: Properties must have ...
9
votes
2answers
17k views

LINQ multiple where clause

I have a course table which I need to search based on keywords typed in the search box. Here is a sample query: SELECT * FROM Courses WHERE Title LIKE '%word%' OR Title LIKE '%excel%' OR Contents ...
8
votes
2answers
1k views

T-SQL Conditional WHERE Clause

Found a couple of similar questions here on this, but couldn't figure out how to apply to my scenario. My function has a parameter called @IncludeBelow. Values are 0 or 1 (BIT). I have this query: ...
8
votes
7answers
11k views

SQL - improve NOT EXISTS query performance

Is there a way I can improve this kind of SQL query performance: INSERT INTO ... WHERE NOT EXISTS(Validation...) The problem is when I have many data in my table (like million of rows), the ...
7
votes
4answers
609 views

Why does a query slow down drastically if in the WHERE clause a constant is replaced by a parameter (having the same value)?

I have a recursive query which executes very fast if the WHERE clause contains a constant but becomes very slow if I replace the constant with a parameter having the same value. Query #1 - with ...
7
votes
5answers
212 views

Beginner SQL section: avoiding repeated expression

I'm entirely new at SQL, but let's say that on the StackExchange Data Explorer, I just want to list the top 15 users by reputation, and I wrote something like this: SELECT TOP 15 DisplayName, Id, ...
6
votes
5answers
139 views

Haskell: where clause referencing bound variables in lambda

I am trying to numerically integrate a function in Haskell using the trapezoidal rule, returning an anti-derivative which takes arguments a, b, for the endpoints of the interval to be integrated. ...
6
votes
5answers
157 views

Why does putting a WHERE clause outside view have terrible performance

Let's say you have a view: CREATE VIEW dbo.v_SomeJoinedTables AS SELECT a.date, a.Col1, b.Col2, DENSE_RANK() OVER(PARTITION BY a.date, a.Col2 ORDER BY a.Col3) as Something FROM ...
5
votes
3answers
211 views

Are Linq-To-Sql Dynamic-Where-Clauses Even Possible in Framework 3.5?

UPDATE: It Is Now Working I was able to finally get it completed. A working-example is detailed in an answer below (which I will be able to mark-off in 2 days). Everything Below Here Was Part of ...
5
votes
1answer
114 views

Will Postgres push down a WHERE clause into a VIEW with a Window Function (Aggregate)?

The docs for Pg's Window function say: The rows considered by a window function are those of the "virtual table" produced by the query's FROM clause as filtered by its WHERE, GROUP BY, and HAVING ...
5
votes
2answers
156 views

SQL WHERE LIKE with tab

Seems like such a simple thing. I need to specify a WHERE criteria with the LIKE operator and include a tab in the expression. SELECT * FROM table WHERE field LIKE '%Run1[TAB]%'; I've tried \t, ...
5
votes
1answer
162 views

False value in Where Clause Returns All Rows?

I have a query that looks like this: `SELECT id, username FROM table_name WHERE username=0` When I run this query MySQL returns all rows in table_name. Additionally, if I substitute 0 for false I ...
5
votes
6answers
227 views

where does the `where` clause come in handy in Haskell

I find I quite seldom come across situations where I need to use the where clause. However, I do find that I have used it very occasionally in the past. When is the where clause used (i.e. what ...
5
votes
2answers
133 views

SQL: Redundant WHERE clause specifying column is > 0?

Help me understand this: In the sqlzoo tutorial for question 3a ("Find the largest country in each region"), why does attaching 'AND population > 0' to the nested SELECT statement make this correct?
5
votes
2answers
4k views

Doctrine: Multiple (whereIn OR whereIn) query?

I'm having trouble crafting a fairly simple query with Doctrine... I have two arrays ($countries, $cities) and I need to check whether database record values would match any inside either. I'm ...
5
votes
5answers
1k views

Update SQL with consecutive numbering

I want to update a table with consecutive numbering starting with 1. The update has a where clause so only results that meet the clause will be renumbered. Can I accomplish this efficiently without ...
5
votes
13answers
4k views

SQL - CASE expression inside WHERE

I read about using the CASE expression inside the WHERE clause here: http://scottelkin.com/sql/using-a-case-statement-in-a-sql-where-clause/ I'm trying to use this to filter results from my select ...
4
votes
2answers
148 views

What's the difference between HAVING and WHERE in MySQL Query?

I have a view (viewX) based on joins of some tables: When I use WHERE, the query is delayed, processor usage goes to 50% and finally I need to close mysqld.exe service and restart to try to solve the ...
4
votes
3answers
357 views

SQL - Select Records after current date/time

So I have a table set out below Date Time Field3 Field4 - etc. -------------------------------------------------- 05/07/11 17:45 blah blah 05/07/11 19:45 ...
4
votes
1answer
55 views

How can I LIMIT on various WHERE clauses in MySQL?

Let's say I have the following MySQL table: id | species ------------ 1 | dog 2 | dog 3 | dog 4 | cat 5 | cat 6 | fish 7 | fish 8 | fish I want to get the ids of 2 dogs, 1 cat, and 1 fish ...
4
votes
2answers
293 views

Stored Procedure Where Clause Parameters

I've got an ASP.net search page where the user can enter one or more search criteria. The page calls a stored procedure to query a MS SQL Server 2008 db. Part of the search criteria is single date ...
4
votes
5answers
742 views

using REPLACE in WHERE clause to check spelling permutations - MS SQL

I have a table like: | id | lastname | firstname | | 1 | doe | john | | 2 | oman | donald | | 3 | o'neill | james | | 4 | onackers | sharon | Essentially, users are ...
4
votes
3answers
165 views

In SQL, does the WHERE clause order have any effect?

I have an table in my DB something like this: ---------------------------------------------------------- | event_id | date | start_time | end_time | duration | ...
4
votes
4answers
916 views

MySQL Select: WHERE (time now) = BETWEEN tablevalue AND tablevalue

I'm looking for a way to select the row in which the current time is between two set values in the row. I've set up a table with 3 columns, 2 of them hold a timestamp (HH:MM:SS), the other one a ...
4
votes
2answers
266 views

Conditional where statement in T-SQL

I've got a table that returns the history of a value, as well as the current one, each with a date. The oldest date is the main record. If the value is changed, a new record is created, with the old ...
4
votes
5answers
1k views

In SQL / MySQL, what is the difference between “ON” and “WHERE” in a join statement?

The following statements give the same result (one is using "on", and the other using "where"): mysql> select * from gifts INNER JOIN sentGifts ON gifts.giftID = sentGifts.giftID; mysql> select ...
4
votes
3answers
4k views

When to use lambda expressions instead of a Where clause in LINQ

I've been really digging into LINQ, and I'm trying to hash out this lambda expression business. I'm just not seeing the benefit of some of the nuances of the syntax. Primarily, it seems to me that a ...
4
votes
4answers
8k views

Linq To Sql Need Dynamic Where Clause over relational tables Help?

I need Help for dynamic where clause over relational tables (one to many) in LinqToSql. User select conditions from page. (there is 4 input that user select the clauses) For example CompanyName and ...
4
votes
3answers
607 views

What is the LINQ to objects 'where' clause doing behind the scenes?

I've just replaced this piece of code: foreach( var source in m_sources ) { if( !source.IsExhausted ) { .... } } with this one: foreach( var source in m_sources.Where( src ...
3
votes
4answers
62 views

SQL Conditional String compare in Where clause

Using SQL Server, I have a stored procedure which I want to make a string search optional. @search is a parameter. If @search has a value I want to search for the string, otherwise if it is empty it ...
3
votes
2answers
27 views

Multiple Where conditions

Having trouble getting this syntax right: SELECT DISTINCT id FROM metadata WHERE (meta_key = 'school' AND meta_value = 'Some School') AND WHERE (meta_key = 'hidden' AND meta_value = '1') Its ...
3
votes
3answers
45 views

CASE in where clause with Col1<>Col2

In the following sample data i need to select all records where ModelOut=ModelOut (all) ModelIn<>ModelOut ModelIn=ModelOut The problem is ModelIn<>ModelOut because i don't know how ...
3
votes
2answers
109 views

MySQL IF Condition in Where Clause

is it possible to decide by IF Condition wich Where Clause i wanna choose. Something like: IF(DATE_FORMAT(DATE(akDate), '%a')='SAT', USE WHERECLAUSE1, USE WHERECLAUSE2) Anyone got a Snippet or ...
3
votes
1answer
97 views

Using SQLite ADO.Net Provider Need to Put GUID Directly Into Query's Where Clause Without Use of a Parameter

Is there anyway to just have the GUID be part of the SQL Query itself without using a parameter? Let me explain exactly what I am trying to do and why. I am working with an existing application that ...
3
votes
2answers
45 views

Correct indexing when using OR operator

I have a query like this: SELECT fields FROM table WHERE field1='something' OR field2='something' OR field3='something' OR field4='something' What would be the correct way to index such a table ...
3
votes
2answers
253 views

Dynamic Expressions in “Where” Clause - Linq to SQL

I'm new in LINQ so I hope this isn't a stupid question: I have a table with a lot of content presented in a datagrid, and I want the user to be able to filter the grid by using some combo boxes above ...
3
votes
3answers
136 views

Practical limit on “where in” clause

I have a fairly simple table with approx a million rows. id | my_col | other1 | other 2 | ... There are about 15k distinct my_col values in this table and I have an index on my_col. I have a ...
3
votes
1answer
154 views

Informix: Limitation on Number of Items in IN Clause?

Is there a limitation to the number of items that can go into an IN clause in an Informix query (like the 1000 item limit in Oracle)? We have a "large" (perhaps 2000) list of item numbers being ...
3
votes
1answer
498 views

MYSQL Sub Query COUNT WHERE

I am trying to create an SQL query that varies based on options sent in from a form. Within this I want to try and share the effects of the main WHERE clause statement with the WHERE clause on a sub ...
3
votes
1answer
146 views

SQL - With statement in WHERE claue

HI, Does a WITH state can live in a WHERE clause? for instance: SELECT tbl1.name , tbl1.ID FROM DBTABLE0001 AS tbl1 WHERE ( exists( WITH H (super, ID, depth) AS ( ...
3
votes
3answers
238 views

Storing dates in mysql: Performance comparison between various methods for Date

Now there are three options that I have in my mind. 1st -> four columns(date, month, year, day) => 28, 03, 2011, 1 I can easily search and modify these columns without additional learning of mysql ...
3
votes
1answer
383 views

LINQ PredicateBuilder multiple OR starting with PredicateBuilder.True<>

I have an entity like this: public class Product() { public string Name { get; set; } } I want to implement a search for keywords on the Name property so that they're OR'ed. In other words, a ...

1 2 3 4 5 10