Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
204 views

OVER() clause. When and why is it useful?

USE AdventureWorks2008R2; GO SELECT SalesOrderID, ProductID, OrderQty ,SUM(OrderQty) OVER(PARTITION BY SalesOrderID) AS 'Total' ,AVG(OrderQty) OVER(PARTITION BY SalesOrderID) AS 'Avg' ...
5
votes
1answer
113 views

How does Erlang index clause heads?

I come from a Prolog background. Prolog normally indexes on the first argument of a predicate (most decent systems allow you to change this around, index on multiple arguments, etc). At any rate, ...
4
votes
2answers
178 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
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
3answers
4k views

Variable LIMIT Clause in MySQL

I am writing a stored procedure where I have an input parameter called my_size that is an int, I want to be able to use in a limit clause in a select statement. Apparently this is not supported, is ...
3
votes
2answers
681 views

Oracle SQL clause evaluation order

In Oracle, which clause types get evaluated first? If I had the following ( pretend .... represent valid expressions and relation names ), what would the order of evaluation be? SELECT ... FROM ...
2
votes
2answers
130 views

Best alternative for the Top Clause in Sql Server 2008?

i am working on a table which currently contains 100000 records, and will be more and more in future, now my clients want the LATEST TOP 10 RECORDS... using top clause diminishes the performance, ...
2
votes
1answer
176 views

Linq multiple where method calls performance

This is propably a fundemental thing to know when you starting query with Linq, but I cannot find a similiar forum question. I could for shure find the answer if I go and read some Linq-basics but I ...
2
votes
2answers
162 views

Linq where clause problem

I thought I'd seen somewhere a while back an example of where clause which called a function that gave a bool result ,and I can't find it again so I'll outline my problem. I have a collection ...
2
votes
1answer
291 views

Prolog - Declaring arithmetic clauses

A simple question, how would I go about declaring a clause which would produce the number specified +1 +2 and +3? I have tried: addup(Thenumber,Thenumber+1). addup(Thenumber,Thenumber+2). ...
2
votes
4answers
2k views

mysql php query HAVING clause

Im trying to get this query to work but i get this error: Unknown column 'zips.city' in 'having clause' `$query = "SELECT zips.* FROM zips HAVING zips.city LIKE '%$city%' ...
2
votes
4answers
181 views

How to Optimize the Use of the “OR” Clause When Used with Parameters (SQL Server 2008)

I wonder if there is any wise way to rewrite the following query so that the indexes on columns get used by optimizer? Create Procedure select_Proc1 @Key1 int=0, @Key2 int=0 As BEGIN ...
1
vote
3answers
58 views

SQL Statement “invalid column name”: how to build query?

string ID = ""; if (Session["sID"] != null) { ID = Session["sID"].ToString(); con.Open(); string surveysr = "Select ShowResult from Survey ...
1
vote
3answers
63 views

Linq Where Clause Change based on Parameters

I have a linq statement that returns a list of records based on where clause This where clause checks for two parameter values. Out of which one parameter is optional. so i need a suggestions if i ...
1
vote
2answers
136 views

“Not equal” sign in Visual Prolog?

I can't find any documentation on "not equal" sign in Visual Prolog. Please provide the right solution of this problem: class predicates sister : (string Person, string Sister) ...
1
vote
1answer
95 views

How to map multiple foreign keys to the same parent in SQLAlchemy?

Upon adding a second foreign key to the same table I get the following error: Please specify the 'onclause' of this join explicitly. How can I specify this relationship? class Parent(Base): ...
1
vote
2answers
137 views

Understanding the clause/2 predicate

I'm currently trying to learn some Prolog (using ECLiPSe). From time to time I come across the clause/2 predicate, but I fail to understand what it is used for. I read some references (e.g. this one), ...
1
vote
5answers
255 views

OR statement handling two != clauses Python

(Using Python 2.7) I understand this is pretty elementary but why wouldn't the following statement work as written: input = int(raw_input()) while input != 10 or input != 20: print 'Incorrect ...
1
vote
6answers
147 views

Why is SQL strict about clause order?

This works: SELECT * FROM users ORDER BY id LIMIT 5 This doesn't - throws a syntax error: SELECT * FROM users LIMIT 5 ORDER BY id SQL seems to be too strict about clause order. Does it have a ...
1
vote
1answer
145 views

Prolog: How to produce a multiple answer output?

Given: fruitid('Apple', 'Granny Smith', 1). How would I go about creating the clause: print_fruit_details(FruitID) :- Which would output 'Apple' and 'Granny Smith' given the input 1. Thanks, ...
1
vote
3answers
596 views

Oracle OCI: Problem in Query with Date field

Client compiled with OCI: 10.2.0.4.0 Server: Oracle9i Enterprise Edition Release 9.2.0.4.0 The problematic query is: SELECT CODIGO FROM LOG WHERE TEL = :telnumber AND DATE_PROC = '05-JUL-08' Table ...
1
vote
2answers
1k views

Zend framework SQL select query construction (ORDER BY)

I have a database with VARCHAR column url. I would like to fetch rows so that the ones that have any url value have priority over other rows, but are ordered by date row (descending), so ORDER BY ...
1
vote
2answers
439 views

How to do a WHERE…IN… clause in LinqToSql?

Bear with me, I'm beginning: How can I select multiple elements using a WHERE...IN... type of clause as in select * from orders where orderid in (1, 4, 5) in LinqToSql? I'd prefer not to have a ...
0
votes
2answers
60 views

Space in WHERE clause?

I'm coding an account validation system for my new project. Currently register/connexion pages are okay ! Only hte account verification page doesn't work. The confirmation mail is send via email in ...
0
votes
2answers
231 views

CASE statement in WHERE clause of SQL query. A little complicated with COUNT clause

This is in sql server 2005. I have two tables: customers and orders. There's a stored procedure that has a parameter minimumorders (0 or great than zero are possible values). I want to avoid an IF ...
0
votes
1answer
25 views

TSQL Dynamic Where

I would like to do something ike this. declare @var1 as integer Select * from table name where id If @var1 = 1 then 21 elseif @var1 = 2 <>21 All I would like to know is if this is ...
0
votes
0answers
32 views

Informatica - aggregate and where clause

I have a sql that i need to transform but not sure how I can do it when this is what i want to do select c.case_id , c.case_seq , max( cv.case_seq) from case c inner join case_ev cv where ...
0
votes
1answer
85 views

Doctrine 2 and “unknown column in ”ON clause"

I am currently working in a project that is using Doctrine 2 with ZF. So far so good. However I have a problem that looks like a bug. I have written the following code in one of my repository : $dql ...
0
votes
2answers
82 views

sql output clause error

t1 has an automatically generated primary key called pkId INSERT INTO t1( title, summary) OUTPUT inserted.pkId, t2.id INTO @IdTable(New_Id, Old_Id) SELECT t2.title, t2.summary FROM t2 Can someone ...
0
votes
1answer
89 views

Lucene clauses problem

I encountered a problem while trying to split Lucene BooleanQuery into clauses. Boolean Query have several methods for returning some collection containing clauses as BooleanClause instances, which ...
0
votes
2answers
396 views

Where in clause in Android sqlite?

I can't get WHERE IN clause to work on andoid sqlite database. Is there any way to execute statement like this in android? : SELECT body FROM table1 WHERE title IN ('title1', 'title2', 'title3') ...
0
votes
1answer
465 views

Android SQLite Syntax - IN clause and Subselect

i spend a lot of time of searching a resolution for this query in android. SELECT * FROM positionen WHERE _id IN (SELECT positionenid FROM fahrtenbuch_position WHERE fahrtenbuchid = 2) i think im ...
0
votes
3answers
110 views

Dynamic prolog clause body generation

For an assignment I have to generate prolog procedure body dynamically. How can I do this?
0
votes
1answer
398 views

My access 2010 database displays parameter query dialogue boxes instead of getting the values from my where clause

I have a database that I've been building and from time to time all of the queries that have paraeters defined by text boxes on a form (driven by the where clauses) do not work. Instead, Access asks ...
0
votes
2answers
192 views

Need to put a query in a loop to return result set one by one

I have SQLITE DB query which returns me one record at a time. This is the query :- rawQuery("SELECT id, category_id, title, text FROM customer WHERE (reads = (SELECT MIN(minReads) FROM categories)) ...
0
votes
2answers
38 views

PHP text output in clauses

I am working on a PHP project. There, I often use following syntax to output text in a cluase: if($boolean){ ?> output text <? }else{ ?> alternative <? } On my computer, this works ...
0
votes
4answers
220 views

Oracle date function

I am executing the below query,It returns me the blank row.However there are records in the table having upd_time = '12-MAR-08'.I don't understand why it is not returning the date '12-MAR-08'.Please ...
0
votes
2answers
446 views

MySQL where clause and ordering by avg() as a sub query

Although I can group and order by on an aliased sub query, I can't use the alias in a where clause. Do I need to use a join instead? Works: SELECT entries.*, (SELECT avg(value) FROM ...
0
votes
4answers
681 views

Code With “No Guarantee”/“No Liability” Clause

I've seen code from time to time that has a clause in the license or at the top of the code that mentions that the author is not liable and does not guarantee that the code is fit for production, or ...
-1
votes
1answer
196 views

Separate clauses of an if statement?

Is there any way to have multiple clauses in an if() statement? For instance: if( ($username=='textUser' && $role=='admin') || ($admin=='yes')) { // If the username AND role are set to ...