Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
2k views

Haskell: Where vs. Let

I am new to Haskell and I am very confused by Where vs. Let. They both seem to provide a similar purpose. I have read a few comparisons between Where vs. Let but I am having trouble discerning when to ...
10
votes
7answers
393 views

Is it poor practice to build an SQL query using WHERE 1=1 AND

I'm writing a PHP script that builds an SQL query by concatenating the string and adding conditions to the WHERE clause as needed. Would it be better practice to use WHERE 1=1 so that the first ...
9
votes
3answers
330 views

Rails: Why can't you set an association to nil in a where clause?

I have photos that belong to collections and users. Photos always belong to a user, but may not be assigned to a collection. In my controller, this works perfectly: @collection_photos = Photo.where( ...
8
votes
3answers
3k views

C# generic “where constraint” with “any generic type” definition?

Let me give example: I have some generic class/interface definition: interface IGenericCar< T > {...} I have another class/interface that I want to relate with class above, for example: ...
6
votes
5answers
2k views

C# FindAll VS Where Speed

Anyone know any speed differences between Where and FindAll on List. I know Where is part of IEnumerable and FindAll is part of List, I'm just curious what's faster.
6
votes
4answers
647 views

Can you use “where” to require an attribute in c#?

I want to make a generic class that accepts only serializable classes, can it be done with the where constraint? The concept I'm looking for is this: public class MyClass<T> where T : //[is ...
5
votes
7answers
90 views

How do I select the latest rows in MySQL?

I want to select the latest rows of a specific table that has 5 items in MySQL. The table looks like: id (auto increase) to from time stamp text The data is something like: |id | to | from ...
5
votes
2answers
153 views

How can keyword “where” be defined globally in Haskell

I'm reading the guide in learnyouahaskell.com . One sentence mentioned "where" can be shared globally, but no example was given, so where can I find some details, please? "where bindings aren't ...
5
votes
1answer
864 views

mongoid find VS where

i seem to only be having this issue with 1 particular model when i am searching by ID >> Cart.where(:_id => '4dae5902e1607c232c000009').first => #<Cart _id: 4dae5902e1607c232c000009, ...
5
votes
6answers
1k views

SQL query through an intermediate table

Given the following tables: Recipes | id | name | 1 | 'chocolate cream pie' | 2 | 'banana cream pie' | 3 | 'chocolate banana surprise' Ingredients | id | name | 1 | 'banana' | 2 | 'cream' | 3 ...
5
votes
6answers
453 views

More efficient SQL than using “A UNION (B in A)”?

Edit 1 (clarification): Thank you for the answers so far! The response is gratifying. I want to clarify the question a little because based on the answers I think I did not describe one aspect of the ...
4
votes
3answers
64 views

PHP/mySQL: mysql_query with SELECT, FROM, and WHERE

I am trying to set $nextPageID and $nextPageTitle with the following code. Unfortunately they are not getting set. $pageCategoryID = 1; $nextPageOrder = 2; $fetchedNextPageData = mysql_query(" ...
4
votes
2answers
180 views

Optimizing SQL “Where” clause for queries with subqueries

Let's say I have the following hypothetical data structure: create table "country" ( country_id integer, country_name varchar(50), continent varchar(50), constraint country_pkey primary key ...
4
votes
1answer
188 views

What is difference between System.Linq.Enumerable.WhereListIterator & System.Linq.Enumerable.WhereSelectListIterator?

What is difference between System.Linq.Enumerable.WhereListIterator & System.Linq.Enumerable.WhereSelectListIterator? One difference I hav noticed is Type WhereListIterator reflects changes on ...
4
votes
1answer
135 views

C# code confusion of where clause

public interface ICrudService<T> where T: Entity, new() What is the meaning of "new()" at the end of the above code?
4
votes
2answers
145 views

Where do I put the links to my Javascript/jQuery files in my html file?

I recently noticed that some (not all) of my javascript and jQuery scripts wouldn't work unless I put the link for the .js files nearer towards the bottom of the page instead of the head area where I ...
4
votes
3answers
999 views

LINQ- Max in where condition

I have a class TaskWeekUI with this definition: public class TaskWeekUI { public Guid TaskWeekId { get; set; } public Guid TaskId { get; set; } public Guid WeekId { get; set; } ...
4
votes
2answers
268 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
1answer
146 views

SELECT command with a WHERE condition and an INNER JOIN

I'm sure I must be making a trivial mistake here, but I've been searching around for help with this problem and all I can find is information on conditional INNER JOINs. < EDIT > The problem is ...
4
votes
1answer
2k views

How to use Rails 3 scope to filter on habtm join table where the associated records don't exist?

I have an Author model which habtm :feeds. Using Rails 3 want to setup a scope that finds all authors that have no associated feeds. class Author < ActiveRecord::Base has_and_belongs_to_many ...
4
votes
3answers
792 views

Invalid column name error in WHERE clause, column selected with CASE

I have a (rather complicated) SQL statement where I select data from lots of different tables, and to cope with a bad legacy data structure, I have a couple of custom columns that get their values ...
4
votes
1answer
297 views

mysql_query where statment help

I am retrieving values from the url with the GET method and then using a if statement to determine of they are there then query them against the database to only show those items that match them, i ...
4
votes
1answer
107 views

How can I re-use WHERE clause logic with DBI?

Disclaimer: first time I've used DBI. I have a MySQL table with a lot of indexed fields (f1, f2, f3, etc) that are used to generate WHERE clauses by long-running processes that iterate over chunks of ...
4
votes
4answers
2k views

Linq: What is the difference between Select and Where

In linq there is the Select and Where methods. What should every developer know about these two methods (Example: when to use one over the other, any advantages over the other, etc)
4
votes
6answers
718 views

Can I restrict generic method to more than one interface?

I have a generic method public static void DoSomething<T>() {...} . Now I want to restrict that T. public static void DoSomething<T>() where T: IInterface1 {...} But what I really ...
4
votes
2answers
3k views

LINQ to SQL and Join two tables with OR clause

Let's say I have Plans and Documents Dim myPlans = _context.Plans.Where(predicate1) Dim myDocuments = _context.Documents.Where(predicate2) I have structured the where clause for each using ...
4
votes
1answer
8k views

LINQ where Clause doubt

I have tried one where clause in Linq to get details about Users those who are Active and AllowLogin is also true. So how can I compare the table values (both are boolean values) with true or false?
4
votes
6answers
487 views

SELECT WHERE … hundreds of conditions

Is there an elegant way to do this: SELECT Cols from MyTable WHERE zip = 90210 OR zip = 23310 OR zip = 74245 OR zip = 77427 OR zip = 18817 OR zip = 94566 OR zip = 34533 OR zip = 96322 OR zip = 34566 ...
4
votes
5answers
9k views

Execution order of conditions in SQL 'where' clause

I have a set of conditions in my where clause like WHERE d.attribute3 = 'abcd*' AND x.STATUS != 'P' AND x.STATUS != 'J' AND x.STATUS != 'X' AND x.STATUS != 'S' AND x.STATUS != 'D' AND ...
3
votes
4answers
57 views

Linq access property by variable

Let's say I have a class like: public class Foo { public string Title {get;set;} } Now, let's assume I have a public List<Foo> myList which I want to filter by Linq as so: var x = ...
3
votes
2answers
45 views

MySQL - Number and text in WHERE clause

I was surprised when I run two statement in MySQL SELECT * FROM jobs WHERE salary_max = 1000 AND SELECT * FROM jobs WHERE salary_max = '1000' I've just wonder that why MySQL can process text and ...
3
votes
2answers
57 views

PHP reading XML with Where Clause

Let's say I have this XML file. <book> <id>1</id> <title>Harry Potter - bla bla bla</title> <author>J.K Rowling</author> </book> ...
3
votes
5answers
185 views

Using Case Statement in SQL with parameter/variable to check for Null values

I am trying to write a SQL Select statement to return records based on a user input through a front end. I want to write the Select statement like this: SELECT somefields FROM sometable WHERE CASE ...
3
votes
2answers
71 views

Using Wildcards in SQL Where statement

I've got the following code: SELECT ItemName FROM skuDetails WHERE skuDetails.SkuNumber = '" & search & "' OR skuDetails.ItemName = '%' + @search + '%'" Basically I've got a ...
3
votes
2answers
63 views

UPDATE query changed rows without a WHERE clause but had an AND clause - why?

I ran the following query, which should have had a where clause but I forgot to add it: UPDATE tblFormElementInstances as fei JOIN tblFormElements as fe using(intFormElementId) SET fei.intStep = 1 ...
3
votes
3answers
56 views

T-SQL Dynamic Where Condition

I have a stored procedure and would like to know if its possible to build up a dynamic where condition based on a parameter. Lets say I have this query: SELECT * FROM tbl_Users Now I have a ...
3
votes
2answers
93 views

querying WHERE condition to character length?

i have a database whit a large number of words but i what to select only those records that character length are equal to a given number(in example case 3): $query = ("SELECT * FROM $db WHERE ...
3
votes
1answer
268 views

“Sub SELECT before INNER JOIN” or “WHERE after INNER JOIN”?

There are table A and table B. I want to join these tables on two columns but only for selected rows of table A. Query scenarios: SELECT B.* FROM B INNER JOIN (SELECT * FROM A WHERE A.COLUMN1 ...
3
votes
2answers
77 views

RoR 3 - Finding a list of parents from group of children

I have two models with a typical relationship: menu_options model: class MenuOption < ActiveRecord::Base belongs_to :category end categories model: class Category < ActiveRecord::Base ...
3
votes
1answer
145 views

difference between these two mysql queries?

I thought these two queries were the same. But the results turned out the first query's constraints starting with the four ANDs worked, many wrong rows with the left join are returned. The results in ...
3
votes
8answers
345 views

SQL WHERE condition, not equal to?

Is it possible to negate a where clause? e.g. DELETE * FROM table WHERE id != 2;
3
votes
3answers
132 views

sql where statement with binary

I have an MSSQL database table with a varbinary(max) field (i.e. Data VarBinary(max) in a create table command). Is it possible to do a where clause with some kind of pattern matching within the ...
3
votes
1answer
611 views

MySQL select one field from table WHERE condition is in multiple rows

Tried to find the answer, but still couldn't.. The table is as follows: id, keyword, value 1 display 15.6 1 harddrive 320 1 ram 3 So what i need is something like this.. Select ...
3
votes
1answer
92 views

MySQL - results from 'SELECT WHERE STH' and 'SELECT WHERE NOT STH' don't sum to full table

How is that possible that results from those 2 queries: SELECT * FROM `workers` WHERE `name` = 'Smith` and SELECT * FROM `workers` WHERE NOT `name` = 'Smith` doesn't sum to whole table workers?
3
votes
5answers
265 views

Rails 3: Is there a `AR#or_where`?

Is there a AR#or_where in Rails 3 as in User.where(cond1).or_where(cond2) ?
3
votes
4answers
1k views

If condition in LINQ Where clause

Can I use if clause with Linq where?
3
votes
2answers
91 views

How to write “WHERE foo = 'bar' OR foo = 'baz' OR …” without repeating “foo” each time

I'm new to MySQL and was wondering; instead of doing SELECT fields FROM table WHERE name="tim" OR name="bob" OR name="nancy" OR name="john" If I could do something like SELECT fields FROM table ...
3
votes
3answers
178 views

SQL INNER JOIN question

I'm creating a query that will display information for a record which is derived from 8 tables. The developer who originally wrote the query used a combination of 'where this equals this' AND 'this ...
3
votes
2answers
145 views

How to write an “OR” within a Linq to Sql .Where()

I want to get all records WHERE (s.override == 1 OR (s.override == 2 AND s.approved == 1)) How can I do that using the .Where x.subcontracts.Where(s ==> ??)
3
votes
2answers
369 views

Alternative to 'where col in (list)' for MySQL

Hi I have the following table T: id 1 2 3 4 col a b a c I want to do a select that returns the id,col when group by(col) having count(col)>1 One way of doing it is SELECT ...

1 2 3 4 5 8