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

0
votes
0answers
12 views

Using a WHERE with a UNION'ed view in MySQL?

I have a view in MySQL which is comprised of 2 SELECT queries UNION'ed together (both queries draw from the same table, but aggregate different data - therefore the columns match in both). I have ...
0
votes
1answer
24 views

SQL SELECT Query for Multiple Values and Ranges in Column

SQL SELECT query for multiple values and ranges in row data of a given column. Problem description: Server: MySQL Database: Customer Table: Lan Column: Allowed VLAN (in the range 1-4096) One row ...
2
votes
4answers
51 views

How do I make my MySQL Qyery with an “IN” statement faster?

My query runs quite slow. I have two lare query's on my page. It has become running slow since I have insert an "in" statement. SELECT field1, field2, field3, field4, field5, field6, ...
0
votes
0answers
20 views

where clause in entityDataSource with field from other table entity

I've got 3 tables, products, productspercategory and category. You can choose a category, after which you get all products from that category listed. But I cannot seem to get this to work. I am ...
1
vote
2answers
20 views

Rails query WHERE clause using OR

i have 2 individual RAILS queries that both work fine on their own: @charts = Chart.where(:patient_id => @emailpatient.id) @charts = Chart.where(:patient_id => @sharepatient.id) that i want ...
1
vote
2answers
35 views

Is there a keyword to identify a PRIMARY column in a MySQL WHERE clause?

I have a situation where the column name "field1" and "field3" are not given to me but all the other data is. The request is coming in via a url in like: /table1/1 or /table2/3 and it is assumed that ...
1
vote
1answer
39 views

Most recent value per column with multiple column group by and where clause

Given this 2 million+ entry table,ID auto incrementing, and index1(MainId,SubID,Column1) index2(MainId,SubID,Column2): ID MainID SubID Column1 Column2 -------------------------------------- 1 ...
-1
votes
2answers
40 views

SQL Conditional Statement in Where Clause

I would like to write the following IF statement in SQL. Most of the where clause is constructed, but it's the condition around the statement that I'm struggling with: if @StuYear = 11 then AND ...
0
votes
0answers
34 views

Many to Many relation query with dynamic where clause

My tables are : Table Users:- UserId, UserName, EmpId Table Emp:- EmpId, EmpName Table EmpDeptTrans:- EmpDeptID, EmpID, DeptID table Dept:- DeptID, DeptName Business logic is that one employee ...
0
votes
1answer
30 views

How to handle IFstatement with WHERE clause?

So I am doing multiple joins in my query: SELECT a.alert_id, o1.alias, a.message, a.type, o2.alias, o3.alias, u.user_name, a.ack_value FROM alert AS a JOIN object AS o1 ON ...
0
votes
0answers
39 views

DataGridView population with variable WHERE clause (MySQL/Net Connector)

I am using the MySQL/Net Connector for my VS 2010 VB.NET application. I managed to automatically fill my DataGridView using the little operation arrow up over the DataGridView and it received data ...
0
votes
0answers
51 views

WHERE clause in database populated DataGridView VB.NET

I am using the MySQL/Net Connector for my VS 2010 VB.NET application. I managed to automatically fill my DataGridView using the little operation arrow up over the DataGridView and it received data ...
3
votes
1answer
59 views

WHERE IN clause

I'm working in MVC3 project. I was browsing for a while and trying several examples but I could not get it working. I need to get a list of record from OrderForm table whose DeptID are in another ...
0
votes
1answer
64 views

SQL/PHP where clause changes depending on row id

I wish to select all rows depending on the where value, which changes with each row. The best way to explain it would be like this... SELECT * FROM `table` WHERE `time` < $array[ ROW ID ][ time ] ...
0
votes
2answers
19 views

MySQLi Error with a simple WHERE clause SELECT statement

I have a simple mysqli query which fails to run when I set the where condition to a string like the below code (option='title'), however if I used an integer instead (id=1) it works! here is the ...
0
votes
1answer
24 views

Select rows by criteria to fill a list

I have a List Users and I want to select those rows which have Username to fill the Users list. For example, Users list contains "joe" and "marry". I want select rows which have Username field as ...
0
votes
1answer
85 views

Add multiple values in where clause in grocery crud

I want to add multiple values in where clause. ------------As In Sql , we do like this------------------ SELECT column_name(s) FROM table_name WHERE column_name IN (value1,value2,...) How to use ...
0
votes
0answers
29 views

LINQ where clause not returning results

Result set returns empty and i'm getting that error 'Enumeration yielded no results' when i use Where clause(LINQ) . What could be problem? public class Stores { [Key, ...
0
votes
2answers
37 views

sql- DATE:how to get all rows in certain month

I have a column named "DC34_DATE" of type DATE ( defined this way: DATE '2013-04-17') I need to select all rows for a specific month (for example- April). I used WHERE MONTH(DC34_DATE)=04; and it ...
0
votes
1answer
31 views

MYSQL inserting data from one table into the other

I am trying to insert data from one table into the other one, but they have to link by using the same ID. I use the following code: INSERT INTO table1 (population_total, GDP_current_US, ...
0
votes
3answers
36 views

SQL WHERE … IN clause with possibly null parameter

I am having some problems with my WHERE clause (using SQL 2008) . I have to create a stored procedure that returns a list of results based on 7 parameters, some of which may be null. The ones which ...
0
votes
1answer
39 views

SQL: Conditional Passed Parameter variable within WHERE Clause

I am passing a parameter from a dropdownlist listitem value assigned 'PPNo'. The column in the sql table I'm wanting to select contains Yes/No values. Within an WHERE clause is it possible to select ...
0
votes
1answer
32 views

sql server LIMIT with where but include at least once

I have a simple query like this: SELECT subs.id_number, op.dtupdated as dtopened FROM subscribers AS subs LEFT OUTER JOIN messages AS msg ON msg.id_number = subs.id_number LEFT JOIN ...
0
votes
2answers
41 views

MySQL INNER JOIN with results of WHERE conditions?

I want to be able to query a MySQL database to find siblings of a person just based on their parents and children. We're hypothetically assuming here that the children of a person's parents, and the ...
1
vote
1answer
36 views

SQL server IF begin statement in where function

I'm trying to create the following in a where statement. where Registration_Date >=@StartDate and Registration_Date < dateadd(day,1,@EndDate) and if @affiliateid is null begin ...
0
votes
2answers
29 views

Having an issue with a simple select, where statement

I'm new to SQL and cant seem to get my head around using a WHERE clause on only part of the statement. For example, (written basically) SELECT Forename, Surname, Organisation FROM Client table ...
0
votes
1answer
54 views

Function returning varchar2 gives wrong result [duplicate]

I want to build query dynamically as per criterias selected from gui. Here is my oracle package, CREATE OR REPLACE PACKAGE TestPkg AS g_lastnamelist VARCHAR2(50); FUNCTION getLastName ...
1
vote
1answer
23 views

mysql: countaing num of columns with certain value

I got a database contain employee name and month days in front of it id name 1 2 3 4 ----- ------ --- -- --- --- 1 Mark half full full ...
1
vote
2answers
40 views

How to filter a date column based on month in MySQL

I'm trying to filter a date column based on month: SELECT id, nama, lahir_tanggal FROM `alumni_db.alumni_tb` WHERE date("F", strtotime('lahir_tanggal') = "August"; lahir_tanggal is in date ...
0
votes
0answers
22 views

VS2008 BIDS Query Designer mess up the Where Clause when parentheses are used

Would greatly appreciate any insights why the Query Designer is messing up my Where Clause: I have written the where clause to look like that : Select ... From .... Where (warehissues.partitionkey = ...
0
votes
1answer
46 views

Why the (1=1) in the Where clause? [duplicate]

This query is from the answer here. There is a (1=1) in the where clause, but the execution plan is the same (SQL Express 2008R2). I'm guessing it is an artifact from the old days? SELECT ...
0
votes
1answer
44 views

Referring to a python variable in SQLite3 DELETE statement

I am writing a function to delete a record from a table. The variable I am trying to refer to in the delete statement is a Tkinter entry field. I get the variable using the .get() method, but I can't ...
0
votes
3answers
29 views

How to count records as “0” that have value “0” when using WHERE x = 1

I have a table structure that looks like this: I have a perfectly working query that counts how many records there have been per day the last 30 days. It looks likes this: SELECT DATE(timestamp) ...
1
vote
3answers
90 views

MySQL exact word existence check in a table Field

I've a Query. Is there any built-in function or any other method associated with MySQL, which will return rows that contains EXACT word in the database table field? I'm aware that with MySQL LIKE ...
1
vote
3answers
127 views

Building interactive WHERE clause for Postgresql queries from PHP

I'm using Postgresql 9.2 and PHP 5.5 on Linux. I have a database with "patient" records in it, and I'm displaying the records on a web page. That works fine, but now I need to add interactive filters ...
0
votes
1answer
46 views

MySQL show all columns while using WHERE clause

Sorry if this is a silly question but did not use much SQL lately and can't find much help on this either. I need to get all rows to show in a result even if the result is 0 or null. The problem I ...
0
votes
1answer
17 views

LIKE mysql chr /-1

my research, admit a WHERE (SUBSTRING_INDEX (destination, '-', 1)) LIKE 'A%' I appreciate get list more or less, let me explain; the condition "WHERE for like 'a%'" show me the destinations ...
-1
votes
3answers
39 views

mysql select using where and limit options [closed]

Am trying to select from a table with using both where clause and limit, but have been getting the following error: MySQL server version for the right syntax to use near ''2'' at line 1. Can anyone ...
-4
votes
1answer
64 views

filter list via linq [closed]

I have a list as follows (EN is you can say the default value) id="1", lang="FR", value="text1FR" id="1", lang="EN", value="text1EN" id="2", lang="EN", value="text2EN" id="3", lang="FR", ...
3
votes
2answers
114 views

Haskell where type declaration

I'm new to Haskell and having trouble with the type system. I have the following function: threshold price qty categorySize | total < categorySize = "Total: " ++ total ++ " is low" | ...
0
votes
1answer
41 views

SQLAlchemy ORM: modify WHERE clause

If I've been given a Query object that I didn't construct, is there a way to directly modify its WHERE clause? I'm really hoping to be able remove some AND statements or replace the whole FROM clause ...
0
votes
2answers
76 views

Using sql with in where clause

How can i use with in a query like this? Is there a way to use the tableIds in TableList? Can i treat them like a subquery? select * from TestTable where tableId in (WITH TableList (tableId) AS ( ...
0
votes
2answers
94 views

How to write a where clause that has multiple cases?

I have a stored procedure that has a nullable parameter, and following is my query select * from table1 where table1.id = isnull(@id, table1.id) Now there are some special ids I treat them ...
-1
votes
1answer
91 views

Inner join with WHERE clause affecting second join

I have this query and the top inner join works fine but when i add the second join i receive incorrect syntax near 'INNER' anyone any idea why? SELECT Time_ID, Site_Type_ID, SUM ...
1
vote
1answer
107 views

How to Filter INNER JOIN SQL Command Results

I have a table which records form submissions. For each submission of the form there are the following variables: userid record accountName accountNumber When a user submits the form, the table is ...
0
votes
2answers
196 views

Multiple condition based on where clause in sql server 2008

I had a table Product with these columns ProductName, Description, Manufacturer, Product Code, Technology, Address, Country, City, Length I want to search all these fields with these criteria ...
0
votes
1answer
28 views

SQL query: only one dataset per specific attribut

I want to retrieve only one dataset per specific attribute (column value) from a database. E.g.: you have a table like this: restaurant district longitude latitude ...
1
vote
1answer
68 views

Shortening/Making a function more concise

flushPoints :: [Card] -> Integer flushPoints cs@(c1:hd) = if flushPointsCalc True (suitCount hd) > flushPointsCalc False (suitCount cs) then flushPointsCalc True (suitCount ...
0
votes
1answer
42 views

Zend Framework - and in where clause

I am working on Zend Framework, got 1 problem in query, i want to fetch userid from tbl_user & want to check record with And in where clause here is my query ...
1
vote
1answer
47 views

selecting with multiple where conditions and multiple order clauses from two tables

first table: posts ID post unix_timestamp upvotes ----------------------------------- 118 mmmm 1360662045 4 119 kdkdk 1360662074 2 120 dkcjf 1360662012 3 121 ...

1 2 3 4 5 17