A clause in programming that applies a Boolean condition (predicate).

learn more… | top users | synonyms

0
votes
1answer
5 views

Cassandra 1.2 CQL QERY SET

I have a table in Cassandra containing name, item. Using the following data types: name is text, item is set. f.e. I have these entries: name | item a | {item1, item3} b | {item2, item3} c ...
1
vote
1answer
21 views

How to lists the maximum of counting with where syntax?

For Oracle, I have 2 tables; first is Store and another is Book whereas they are connected by store ID (PK FK). I would like to lists the name of the store which has the highest numbers of books. ...
0
votes
2answers
12 views

sql union same parameters for two where = how to change it to one parameter

I have this query select last_name, job_id, department_name, country_name, hire_date , sysdate, salary from employees e , departments d , locations l , countries c where ...
0
votes
0answers
14 views

PHP Singleton Database WHERE Query doesn't work

Hi I wan't to use a select where query by using the singleton database class. But It only returns all the records of my table bugs. I wan't to select only the bug records from a specific user ...
0
votes
1answer
4 views

ActiveRecord test Greater/Lesser Than inside Hash Condition

The Question: Is it possible to test within a hashed condition if an attribute of a joined table is greater/lesser than a value AN EXAMPLE: test if actors age is greater than ageVariable: Is it ...
0
votes
1answer
15 views

Removing <where> timestamp element from kml file Google My Tracks

I have been playing around with Google "My Tracks" on Android and importing the tracks into Google Earth. When I do, I get the time bar at the top and the track will play as you drove it, like an ...
4
votes
1answer
78 views

Is there a faster way to separate the minimum and maximum of two arrays?

In [3]: f1 = rand(100000) In [5]: f2 = rand(100000) # Obvious method: In [12]: timeit fmin = np.amin((f1, f2), axis=0); fmax = np.amax((f1, f2), axis=0) 10 loops, best of 3: 59.2 ms per loop In ...
0
votes
2answers
41 views

Extract number on string and use as filter

I would like to extract a number in a string and use it as a filter. My data looks like this: AAAA_01_01_AAA BBBB_01_02_BBB CCCC_01_03_CCC DDDD_01_04_DDD I would like to extract the 2nd set of ...
0
votes
3answers
22 views

Mysql. INSERT, UPDATE and WHERE

I'm needing to create a query that update if the some know value exists or create a register if not. I tried some variations like this below, but I can't put it to work. How can I do this? Attemp: ...
0
votes
2answers
43 views

MySQL logic where function I think

I have about 500 rows with simliar data to the 4 rows below, from this exmaple I only want two rows to be returned using the following logic: If emp No 817 sal_id = 2 is_active 0 then return 817 ...
0
votes
1answer
20 views

Updating Table2 when data found in table1

Forgive me if I make a fool of myself but still fairly new to mysql queries beyond the "basic" kind. Currently I have two tables of data. Table 1 has data parsed into it using a LOAD INTO and Table 2 ...
0
votes
2answers
25 views

Delete row from mysql table where value not like

I have a table that has the results of tests. It looks like: Test | Result Math | Pass Science | Fail History | cancelled French | Absent The table is named table1. I want to delete rows in ...
0
votes
2answers
19 views

How to find XElement specific Children (in c# with LINQ)?

I've got an XML file like this : <root> <environment env="PROD"> <key name="Big Key" propagate="true" value="21" /> </environment> <environment env="PRE-PROD"> ...
-4
votes
0answers
54 views

MySql error:Column not found: 1054 Unknown column 'villa' in 'where clause' [closed]

$sqlSale="SELECT propertysalesid from keywords WHERE keywords LIKE '%".$_SESSION['srchSearch']."%'"; $sql="SELECT propertysale_adv_details.id as propID, propertysale_adv_details.edate as ...
1
vote
2answers
55 views

Passing variable to sql WHERE IN clause

I've viewed a few similar posts regarding this topic, but I haven't found them to work for me. I have a list of checkboxes that store article ids as a value. This means when the user checks a ...
0
votes
4answers
29 views

Get all WHERE cases in one query

I've got this query SELECT users.name FROM users LEFT JOIN weapon_stats ON users.id = weapon_stats.zp_id WHERE weapon_stats.weapon = 26 ORDER BY weapon_stats.kills DESC LIMIT 1; The problem it's ...
0
votes
2answers
22 views

update record with codeigniter active record

In my controller, I am calling a model function with the following: $this->sales_model->softdelete_order($this->input->post('ordernumber')); what I want to do, in my model is update ...
0
votes
0answers
22 views

mySQL - I want to select only the 75 most recent posts unless a column deems the post 'permanent'

Here is what I have tried: SELECT * FROM posts WHERE ( post != '' AND timestamp >= ( SELECT `posts`.`timestamp` FROM posts WHERE post != '' ORDER BY timestamp DESC LIMIT ...
1
vote
2answers
59 views

What is wrong with my queries?

All the code is correct but the queries (which are at the very bottom) don't seem to run. I checked on w3schools.com for more information, but it seems like there's nothing wrong with my code. Can ...
0
votes
1answer
14 views

Same database, same table, same query, but different where clause

I am a very basic user, so be easy on me. Here's my problem, I am trying to get a count of the same column, but with different clauses. I would like 2 queries from the same database/table joined ...
2
votes
2answers
46 views

Using Powershell “where” command to compare against Array of values

I'm trying to figure out a way to get this command to filter from an array of values as opposed to one value. Currently this is how my code is (and it works when $ExcludeVerA is one value): ...
0
votes
1answer
23 views

how to select data from primary key in a table when it's not equal to forign key in another table?

Here's what I have: 1. I have a table called "International_Codes" with 2 columns (int_code_id, desc) 2. I have another table called "size_charts" which has (int_code_id, xs, s, m, l, xl) I have a ...
-1
votes
1answer
44 views

MySQL WHERE after UNION ALL not working [closed]

I'm trying to filter the results AFTER all tables have been united by UNION ALL. This isn't showing anything on my screen, even though 'test' is a title in the database. What am I doing wrong? SELECT ...
0
votes
2answers
50 views

Mongoose query: how to pass a variable

How do I pass 'n' instead of hard coded '5' in Xcom.find({ $where : "this.NIC_No == '5'" } below? exports.query_by_nic = function ( req, res ){ var n = req.body.NIC_No; console.log(n); //n prints ...
0
votes
1answer
13 views

Using aliases names of columns in where clause

I have given a alis name for all my fields in the select clause. I am not able to use these names in my where clause. I tried to use having clause, but it takes more time then usual where clause. Is ...
0
votes
3answers
63 views

SQL/PHP “WHERE” not returning correct value?

The code will display the returned values and and if it is greater than one it will return "Yes". But I am having trouble with the WHERE clause in $check. When I take it out the code works just fine ...
0
votes
2answers
29 views

$_GET with MySQL query

Here is my code: if ($_GET['u'] == $userid) { $query = mysql_query("SELECT * FROM table WHERE uuserid='$userid'"); } The $userid variable is defined in the rest of the script and works properly. ...
0
votes
1answer
26 views

SSRS Visual Studio 2008 - How to compare name to pipe delimited list of names?

I am fairly new to sql. I am trying to get a count of activities done by specified people in a persons table. Pseudo sql query: select count from activities table a left outer join persons table p ...
0
votes
0answers
18 views

mysql request order by where

Im very confused, I have a simple request which doesnt work... 'SELECT * FROM articles WHERE status = "2" ORDER BY time_added DESC LIMIT $start, $num' $start and $num are for pagination it works ...
1
vote
1answer
36 views

Silverstripe sql debug

One little question: How can I use "OR" with filter method e.g: $entries = BookstoreBook::get() ->filter(array( 'Title:PartialMatch' => $searchString ));) Field:PartialMatch ...
0
votes
1answer
16 views

give page user control over where condition

Hi im new to php and have very little knowledge, in my where statement I have where Status='A' and z.zoneID=1, is there a way to give the page user control over the z.zoneID=1 so that they can change ...
1
vote
1answer
68 views

SELECT Values in one table that don't match another table but also reference another column?

I realize that probably doesn't make sense so let me try and explain: I have two tables with the followings columns (just relevant ones): positTraining (positID, trainID) empTraining (empID, ...
1
vote
1answer
19 views

Conditional / Optional where statement

I have a stored procedures and a few boolean variables (Bit). I want to put a WHERE statement if a certain variables is False. I know I could do something like this : IF (@myBoolean = 1) BEGIN ...
-1
votes
2answers
27 views

How to use (AS) TOTAL in where, on mssql?

How to use (AS) TOTALNAME in where SELECT *, CITY + ' / ' + NAME AS TOTALNAME FROM FARKETMEZ WHERE TOTALNAME like '%TURKEY%'
0
votes
1answer
44 views

Using Like operator on MySQL prepared statement

I've been searching on stackoverflow and google, but still cant find the correct way to use the LIKE operator. Here's my code: data = self.db.reader("SELECT * FROM users WHERE name LIKE %s ORDER BY ...
0
votes
1answer
75 views

Where or (not and) with list of expressions c#

I got the following code public class Personnel { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public int ...
0
votes
2answers
46 views

SQL SUM and nested where clause

I have an SQL that takes an id, a start date and an end date as parameters. I then sum certain that are restricted by the where clause. However I need to also sum the same column that doesnt take ...
0
votes
2answers
39 views

RubyOnRails - Can't do a where statment in a has_many through relatiation

So I'm new to RoR and i can't seem to do a select where statment. These are the following classes: The models: class List < ActiveRecord::Base has_many :list_categorization has_many ...
0
votes
1answer
28 views

How to get the position of the user in a ranking in mysql? [duplicate]

Hi am I trying get a position with this code: $sql = mysql_query("SELECT @rownum:=@rownum+1 AS posicao, nome, pontos FROM ranking u, (SELECT @rownum:=0) r ORDER BY pontos DESC"); It works, but I ...
0
votes
0answers
59 views

updating mysql by iterating through datagridview rows

I have a database of parents and their children. Each parent has ParentID as their primary key. Each child has ChildID as their primary key, and the ParentID of there parent. I have the following ...
1
vote
1answer
38 views

Match data from two tables and return results where something matchs

Update 4/25/13 6:25AM: I am using MyISAM I have searched a lot and am not sure the best way to do this. I have two tables that have matching values in different columns and need to return all that ...
0
votes
1answer
42 views

Optimize iterating through array using foreach loops

I have been running MySQL queries within foreach loops up until now, but now realize that it is more efficient to run the query first and then iterate through the array. I am wondering if I can ...
0
votes
1answer
37 views

PL/SQL: Conditional Where

I have the following scenario: CREATE OR REPLACE PROCEDURE GETINBOX ( inHasAttachments IN int ) AS BEGIN SELECT M.MailId, M.SenderId, E.Emp_Name As "Sender", ...
0
votes
0answers
16 views

How to use time in FQL where clause

I have the following query to select statuses from the friends of a user in the last week: SELECT status_id, uid, message, time from status where uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) ...
0
votes
1answer
50 views

LINQ where clauses with different fields

I'm trying to change on which field the Where clause will be applied depending on a Boolean value received by the function. So far I have this: Public Function SomeFunction(ByVal value As String, ...
2
votes
5answers
99 views

select all by where clause in linq

Here is my code , Name obj = new Name(); obj = DB.Names.Where(x => x.age == 20 ).SingleOrDefault(); What I want to do is to update all the Name with age=20 , obj.Name = " Mr " + obj.Name ; ...
0
votes
0answers
53 views

How to make a LIKE query in where safe against SQLi

I have this line User.where("email LIKE ?", "%#{@search}%") which brakeman says it could be used for sql injection Is there a better, safer way to write this line (to search for users with email ...
0
votes
2answers
53 views

MySQL WHERE IN wildcard

First of all, I know that the downloads table is not normalized. I have those two tables: downloads map | author 1 | Nikola 2 | Nikola George and mappers mapper_id | mapper_name 1 | Nikola 2 | ...
0
votes
2answers
38 views

MySQL Query for Multiple Columns to be FILTERED?

Lets say i have 1 Table only with multiple columns. Lets say: Fruits -------------------------------------- id | name | country -------------------------------------- 1 | Banana | ...
0
votes
0answers
83 views

execSQL Delete / rawQuery Insert Where clause

So I have a problem (maybe I'm the problem in fact). I have this code but I got no error and catch no exception, I don't understand why it don't work. For the DELETE, the query just don't work without ...

1 2 3 4 5 21