Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
33 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
86 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 ...
1
vote
1answer
230 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 ...
1
vote
3answers
117 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
1answer
57 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
696 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 ...
0
votes
4answers
148 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 ...