1
vote
1answer
30 views

Multiple Query in Doctrine with NAND,NOR,NOT,AND Operators

I am trying to design a doctrine query and I am new to doctrine but with the help of my other post I come up with a query which works when I run in my Mysql. But I want it to convert the query in ...
1
vote
1answer
51 views

SELECT .. SELECT in Mysql

I am trying to write a query for mysql (Search Module) where I am facing difficulties because of the select operation to be carried out inside same table. My Query: (SELECT * FROM user WHERE ...
1
vote
3answers
60 views

MySQL IN BETWEEN with no condition

I want to write a SQL query where if the datetime is not been assigned I want to replace a string which can select all date and time. How Actually it works: SELECT * FROM `entry` WHERE `user` ...
1
vote
1answer
27 views

Short-circuit logic evaluation operators

Are there any short-circuit logic operators (specifically short-circuit AND and short-circuit OR) that I can use in a WHERE clause in MySQL 5.5? If there isn't, what are the alternatives? An abstract ...
2
votes
2answers
65 views

Select Query with OR and NAND

I am trying to design a query with OR and NAND operation, Can some one let me know Is the query is correct: Question 1: Is this query correct? select * from country where country_code='AL' UNION ...
1
vote
1answer
22 views

Mysql with multiple query having NAND opertaion and NOT operation

I am trying to achieve and NOT operation and NAND operation in between Queries. Scenario 1: SELECT country_name,country_code from country where not (country_name='Land islands' ...
1
vote
1answer
95 views

MySQL NAND/NOR operations in Queries

Can any one help me in explaining how to write a query for NAND and NOR? I am getting confused? Is there any good example which help to understand the NAND and NOR operation in query? I worked in ...
0
votes
0answers
38 views

How to Write Wordpress Query that Detects if There Are Sub-Categories?

I have a Custom Post Type of "projects", that is categorized by a Custom Taxonomy of "industry", which is heirarchical. Projects & sub-projects are assigned to the industries. For Example, the ...
0
votes
2answers
169 views

Checking if a timeslot/booking is taken

EDIT: The query Gordon posted appears to have a problem. If I have a booking from 10-12 it seems to consider all bookings past 12 pm invalid, but all bookings before 10am valid. Some quick and simple ...
0
votes
2answers
54 views

Comparing months and days without years

So, I essentially have 4 fields: M1 D1, M2 D2 They represent month 1 day 1, month 2 day 2 Examples: 10, 1, 5, 31   October 1st to May 31st (spans two different years) 6, 1, 7, 4 ...
1
vote
2answers
232 views

mysql use logic in where clause + invalid use of group function

I have the below mysql query that outputs the below image: select v.invoicenumber, v.invoicedate, v.haulier, v.transporttype, count(v.loadnumber) as totalloads, sum(v.cost) as totalcost, ...
0
votes
1answer
66 views

SQL Logic to not display certain rows in query

I have been looking to see how I would apply logic in my SQL query to accomplish my goal. I am open to any suggestions at this point. I have two tables that I have an inner join between. The two ...
0
votes
2answers
51 views

Perplexing SQL statement

Given a table with this data: L | N ------------------- A | 1 A | 3 A | 5 B | 5 B | 7 B | 9 C | 1 C | 2 C | 3 ...
3
votes
3answers
927 views

How to add column values in mysql

This is my table data Student And this is my query -- SELECT id, SUM( maths + chemistry + physics ) AS total, maths, chemistry, physics FROM `student` but it is throwing a single row -- id ...
1
vote
2answers
103 views

get last time activity with sum, group and subquery

any body can help me please? i want to querying from my table, the purpose is to show which employees are selling over 100 pieces. i have done that query and works, but the problem arises when I ...
0
votes
1answer
302 views

How to group Objects in an Array using PHP PDO and MySQL?

I have this category table Category ============ id name ref_id 1 cat1 0 2 cat2 0 3 subCat1 1 4 subCat2 1 5 subCat3 2 6 subCat4 2 I would like to have a result ...
0
votes
4answers
125 views

MySQL query logic

I have a DB full of deals, and a website which will present just one of these deals if the deal is a featured deal, however I am struggling to get the right logic... the deal that is shown on the site ...
0
votes
0answers
44 views

Addressing all posible combinations for five checkboxes in a query

I have five individual checkboxes which may be combined in any possible way to fetch data from a database. Currently, I'm considering each case separately when building the SELECT statement, e.g., ...
1
vote
1answer
416 views

Complex SOLR query including NOT and OR

I have some fairly complex requirements for a SOLR search that I need to execute against my database of tagged content. I need to first filter the database to those results matching my filter tags. ...
3
votes
3answers
215 views

I want to combine multiple tables result count in one result using MySQl

I want to combine multiple tables result count in one result with column wise using MySql (see the result required) but i am confuse about this if you have any query or optimize way regarding this ...
0
votes
3answers
211 views

updating all column values by adding a char with MySQL query

I have a table with column for storing product code. | product_id | Product-name | product_code| | 1 | soap | QTI4589 | 2 abc DRT45869 3 ...
1
vote
2answers
131 views

MySQL query logic for fetching posts by dates

Can anyone offer suggestions for the logic in a MySQL query that does the following: Selects at least 100 posts Selects all of the posts in the last month of loaded thoughts, e.g., if 100 posts ...
0
votes
2answers
237 views

CakePHP / MySQL Condition AND / OR Results Output - Logic

I am trying to modify my query to include record w/ Plan.id == 848 (this is a very specific record I need regardless of other results). So 848 should be included at all times despite and other ...
0
votes
2answers
82 views

Login Server Side Logic

This question has more to do with how I am setting up my server side code for a simple login script. I'm interested in the best way to achieve my goal, which is of course to verify a users username ...
1
vote
2answers
142 views

Trouble with logic for MySQL Query to INSERT into content from one table to another

I wonder if anyone could assist? Table_A below shows an example product in my MySQL product database. I'm having problem working out the query logic to achieve Table_B below. (It's not the INSERT ...
1
vote
3answers
177 views

Mysql Precedence Logic

Any explanation to the following queries : Select x FROM y WHERE a = 1 OR a = 2 AND (b = 1 OR b = 2) why it doesn't return the correct info while this return the correct info : Select x FROM y ...
0
votes
1answer
174 views

optimizing mysql if - else depend on my case

I'm very newbie in mysql. pardon me if i just ask a newbie question here. in my case, I want to make branching in mysql like this : if office_id is not null then is_invited = 1 else if office_id ...
2
votes
4answers
124 views

How to write this MySQL Query?

Suppose I have a table that has three integer fields and one string field (just data). For example it looks like: Id Category Value Data 1 1 3 ... 2 1 ...
5
votes
5answers
1k views

Merge two SELECT queries into one

I have two queries where I only need the count of total records but the only difference in the queries is one field value. Example; SELECT COUNT(*) AS group_a FROM tbl WHERE category = 'value_a' ...
0
votes
1answer
57 views

Web checking in game, help with the logic of it

I'm building a web which has a game in it. The game is about getting points for finding certain information in the web. When the user finds a token, a piece of information, does a checking and he/she ...
0
votes
1answer
370 views

parse complex logic expression and do the search, in php

I'm working with a goods selling website that each product in the database (MySQL) belongs to several categories. I use a many-to-many table mapping to store the product-category relationship. ...
0
votes
3answers
184 views

ASP.NET C# problem with Table and SQL logic

Hey I have 3 tables called STUDENT, COURSE and ENROLLMENT. STUDENT has a PK of S_ID(student ID) and COURSE has PK of C_ID(course ID). In enrollment it only has S_ID and C_ID. I have an object data ...
2
votes
2answers
11k views

How to write a SQL statement to use “LIKE” for 9 different values?

I have to select all the records where: where FIELD2 like '%value21%' or FIELD2 like '%value22%' or FIELD2 like '%value23%' -- repeat up to or FIELD2 like '%value29%' Here, value21, ..., value29 ...
0
votes
1answer
44 views

and/or conditions in a SQL query

I have to select all the records where FIELD1 is value11 or value12 and FIELD2 is value21, value22, value23, ... or value29. All 2*9=18 pairs of admissible values for FIELD1 and FIELD2 are possible. ...
0
votes
1answer
100 views

mysql id field just submitted

Ok, I find myself doing this often. I'll attach ids to my tables and I'll "link" the tables together. Just a simple example, a team roster might have categories. Each category has an id. When I add ...
0
votes
1answer
217 views

Nested Callback Handlers?

I am getting a set of data from the database where the query produces a repetition of data with a different "Special" value. For example the user "A" can be repeated twice, having three different ...
2
votes
5answers
70 views

Help with SQL query

I've got the next SQL query: SELECT FIRST_NAME, LAST_NAME FROM MYTABLE WHERE STATUS = 1 AND VARIABLE IN ( 'PR', 'AR' ) AND SPECIAL = 1; SPECIAL is an aditional condition which is added if I ...
0
votes
3answers
123 views

Parsing AND, OR query to formulate sql

I'm developping a mini search engine, and I want to implement the feature of searches based on logic operators AND OR... I'm having a difficulty on parsing a query containing AND, OR, NOT... ...
1
vote
7answers
12k views

How to execute SELECT and INSERT in single query with PHP/MYSQL?

I have a table user_name with 3 fields, id, Name, Email (id is auto_increment field). I want to execute the following query in PHP, but its not returning any result. INSERT INTO user_name (Name, ...
46
votes
8answers
4k views

General rules for simplifying SQL statements

I'm looking for some "inference rules" (similar to set operation rules or logic rules) which I can use to reduce a SQL query in complexity or size. Does there exist something like that? Any papers, ...
2
votes
5answers
2k views

How to determine if a date range occurs any time within another date range?

I have an Event table that specifies a date range with start_date and end_date fields. I have another date range, specified in code, that defines the current week as 'week_start' and 'week_end'. I'd ...
0
votes
1answer
98 views

Caching query results in ORMs - satisfying arbitrary subset queries

I know N/Hibernate uses a cache to satisfy queries that it has seen before, and that is called a query cache. However, can it satisfy a subset of that query? I'd imagine not since I'd guess that the ...