The multiple-select-query tag has no wiki summary.
0
votes
2answers
58 views
MySQL SUBSTRING using queried length and position values vs programming language substring after retrieval
I am accessing a chado structured mysql database. I search by the gene product, for this example the product is "bifunctional GDP-fucose synthetase: GDP-4-dehydro-6-deoxy-D-mannose epimerase and ...
0
votes
2answers
118 views
“Multiple SELECT, INNER JOIN” sql query not working
I tested my sql query in phpMyAdmin and it works there. But when I copy it and paste in my code then it return NULL. My other code is error-free as it works perfect when I remove this sql query. Thus, ...
0
votes
1answer
267 views
How to query from HTML multiple select combobox against values stored as comma delimited value
I have a multiselect combobox on the html page. The actual list of countries is about 60 items.
<select name="country[]" multiple="multiple">
<option value="UK">United ...
0
votes
2answers
48 views
.parent() inside multiple selector
I want to select a couple of targets:
Every direct li descendant whose parent is not .sub-menu (unless it's the last, cf. 2.)
Every last li element of an ul.sub-menu
Exclude all li's that are parent ...
0
votes
1answer
209 views
The multi-part identifier could not be bound
trying this
select tblPersonalInfo.companyname, tblJobBudget.title,tblJobBudget.lastmodifiedby,
tblJobAdv.advtitle, tblJobAdv.userId,
tblApplication.advid, tblApplication.position
from ...
1
vote
2answers
239 views
Statement work on phpmyadmin but not through php [duplicate]
Possible Duplicate:
PDO support for multiple queries (PDO_MYSQL, PDO_MYSQLND)
i have a statement here.. when i ran it from phpmyadmin.. i got my query works.. but it doesnt when i execute ...
1
vote
1answer
698 views
Column values separated by comma
I have 3 tables in SQL Server Table1, Table2 and Table3 where one column in Table1 has comma-separated PK values of the other two tables.
Now I want to separate the values from the column of Table1 ...
0
votes
1answer
362 views
Linq PredicateBuilder multi criteria
List<Product> Prs = data.Products
.Where(x=> x.ProductColors
.Where(y=> y.Color=="blue")
.Select(z=> ...
1
vote
3answers
406 views
Merge two select queries sql
Hey i'm using oracle sql to create a database.
I im now working on queries and i have come up with two seperate quires which i would like to merge in order to get a result.
The first query i have ...
0
votes
2answers
111 views
Writing MySQL query with several table joins or multiple select
I am trying to write a MySQL query that gives me results of Organisation Name, its Post Code, any Events that belong to the Organisation and the Post Code of that Event. I've tried all sorts of of ...
0
votes
1answer
90 views
MySQL Multiple query with a bit of logic
I have a Users table with these values (stripped down for the example):
Name
City
County
StateProvince
Country
Continent
Strength
Endurance
Intelligence
I basically want a query that returns the ...
0
votes
2answers
291 views
SQL Stored Proc For Search Query Based on Multiple Parameters
Ok, I need a little help with a stored proc, that is a little bit over my head and I am not sure how to proceed. The SP is for a search function in a project I am working on. It is to find available ...
1
vote
1answer
135 views
Mysql selecting top 10 of each category analytic function
I have a table which has the following two columns including others: rating, price and code. Ratings is similar to a category. I wish to generate the top 10 for each rating order by price ascending ...
1
vote
2answers
151 views
Query to select a list of values from a table based on this multiple criteria
I have a table with 2 columns, Ex_Id and Term_Id, both int type. My table will have many Term Ids for one Exercise Id.
Table would look like this:
Ex_Id Term_Id
1 2
...
2
votes
1answer
932 views
Best way to combine multiple advanced mysql select queries
I have multiple select statements from different tables on the same database. I was using multiple, separate queries then loading to my array and sorting (again, after ordering in query).
I would ...
0
votes
1answer
124 views
Multiple queries at time - server performance?
If one (select) query is run against database and it takes 10mins to finish, what is with performance of the server while this query is running? To be more precise, is it possible to run other queries ...
0
votes
5answers
7k views
How can I make multiple select statements on the same table?
I have a table that stores some student work info. I need to select the hours based on the studentID and the quarter ID. Here is what I have:
SELECT
(SELECT hours FROM clinicalStudents WHERE ...
1
vote
3answers
214 views
MySQL is there a Single Select to Query Various Unrelated Values from a database?
I saw somewhere what seemed to be nested selects, one "master" select on the "outside" and a series of selects inside- is this possible? I'm not talking about joins as there is particular relation ...
0
votes
4answers
179 views
What is wrong in my MYSQL Query?
SELECT
( SELECT
SUM(IF(status = 'Active', 1, 0)) AS `univ_active`,
SUM(IF(status = 'Inactive', 1, 0)) AS 'univ_inactive',
Count(*)
FROM online_university
)
AS ...

