Tagged Questions
The sql-subselect tag has no wiki summary.
3
votes
6answers
196 views
How to Prove that using subselect queries in SQL is killing performance of server
One of my jobs it to maintain our database, usually we have troubles with lack of performance while getting reports and working whit that base.
When I start looking at queries which our ERP sending to ...
2
votes
5answers
400 views
Subquery in PHP
Let's put an easy example with two tables:
USERS (Id, Name, City)
PLAYERS (Id_Player, Number, Team)
And I have to do a query with a subselect in a loop, where the subselect is always the same, so I ...
1
vote
2answers
52 views
SQL Sub-Select, show only items that is not zero
I have been asking questions to get the final results for a SQL query that my company has asked for. I finally got the end result that I was initially asked for, but they want more.
My company wants ...
1
vote
1answer
1k views
How would I join to a subselect (a scope) using Rails 3 and Arel?
I need to join a table to the a select/group-by query (which includes the same table), and I'd like to do it using Arel.
I have a table of :phenotypes which are has_and_belongs_to_many :genes, which ...
1
vote
3answers
58 views
SQL query needs to return primary record and subsidirary records
Let me describe this as best I can, this is regarding SQL Server.
There is a main table with one record per participant, there is a sub table with at MOST 5 records per participant.
I need to be ...
1
vote
1answer
79 views
A better way to build this MySQL statement with subselects
I have five tables in my database. Members, items, comments, votes and countries. I want to get 10 items. I want to get the count of comments and votes for each item. I also want the member that ...
0
votes
2answers
34 views
SQL Performance - Union and Subselects
I have three tables which have a common field which is NOT its identifier. For example:
dairy_warehouse
-dairyId (primary key)
-expiration_date
-other dairy related fields
...
0
votes
2answers
46 views
How Do I Count Users Per Group with MySQL?
I have a table of groups:
id -- a unique ID (primary key)
group -- a group name
I have a table of users:
username -- a unique string (primary key)
group_id -- a foreign key link to group.id
In ...
0
votes
4answers
147 views
Alternative to SELECT .. IN (..)
I have table with 3 columns: id (of person), city (which person visited) and date (of his visit).
I need to select all people (their ids) which were in city Los Angeles between specific date, who also ...
0
votes
4answers
64 views
Find “old” rows
Consider a table like this:
| txn_id | account_id
I'd like to do a single query that will get me all txn_ids for all transactions where the transaction is not the most recent (highest txn_id) ...
0
votes
2answers
274 views
How to subselect in where statement in SQL Server CE?
i have the following select statement to get the last login from the user table. this works very well under sqlite, now im porting the database and have Compact Edition from Microsoft.
SELECT LOGIN
...