Tagged Questions
synonym to subqueries, is a SELECT statement within another statement
6
votes
3answers
214 views
Update with sub select - How to handle NULL values?
I'm trying an update with a conditional sub-select which could return null...
UPDATE
aTable SET
aColumn =
(
SELECT TOP 1
CASE
WHEN bTable.someColumn = 1 THEN ...
5
votes
1answer
144 views
Return pre-UPDATE column values in PostgreSQL without using triggers, functions or other “magic”
I have a related question, but this is another part of MY puzzle.
I would like to get the OLD VALUE of a Column from a Row that was UPDATEd... WITHOUT using Triggers (nor Stored Procedures, nor any ...
5
votes
1answer
392 views
NHibernate: How to perform eager subselect fetching of many children & grandchildren (object graph) in a single round-trip to the database?
First, please don't try to argue me out of doing the eager load - traversing the object graph and causing (by lazy loading) even more than ONE round-trip to the database is just not an option.
I have ...
4
votes
1answer
148 views
Doctrine 2: Count Items by Type in Select
Does anyone know how to retrieve a count based on a condition in a Doctrine 2 QueryBuilder select() statement?
Here's what I've tried so far...
My first attempt was to try count() with eq(). The ...
4
votes
4answers
95 views
Is it possible to have a dynamic select clause columns defined by a subselect?
For example
SELECT (SELECT col_name FROM column_names WHERE col_id = 1) FROM my_table
It returns the value of col_name instead of the value of table.col_name
e.g. if col_name is x1 then the above ...
3
votes
1answer
265 views
“Sub SELECT before INNER JOIN” or “WHERE after INNER JOIN”?
There are table A and table B. I want to join these tables on two columns but only for selected rows of table A.
Query scenarios:
SELECT B.*
FROM B
INNER JOIN (SELECT * FROM A WHERE A.COLUMN1 ...
3
votes
3answers
249 views
Why does Order ignore subselect?
I've run into some confusing behavior in Analysis Services 2005 (and 2008 R2) and would appreciate it if someone could explain why this is happening. For the sake of this question, I've reproduced the ...
3
votes
1answer
230 views
Can I join SELECT statements directly without using a view?
Is it possible to do the following without a creating a view in between? I.e. by just joining these SELECTs directly?
CREATE VIEW temp_first AS SELECT MIN(DATE) AS mindate,id FROM mytable GROUP BY id
...
3
votes
3answers
1k views
How to insert a foreign key using a Sub-SELECT in SQL Server
I've just started working with SQL Server for the first time and I'm having trouble populating test data. I have two tables where one has a foreign key to the other and I would like to be able to ...
3
votes
1answer
341 views
How do I get a count of associated rows in a left join in MySQL?
I have two tables, a vehicle table with columns:
id
stock
year
make
model
and an images table with columns:
id
vehicle_id
name
caption
default tinyint(1)
I am trying to list the vehicle's ...
2
votes
1answer
63 views
SQL return only not empty columns from row as new row
I'm in the situation where my client e-mails me an excel-file with 50 columns of data extremely un-normalized. I then export it to CSV and upload into MySQL -- single table. The columns are for ...
2
votes
1answer
161 views
FLOW3 Doctrine2 :: SELECT b,count(b) FROM (SELECT a,b FROM x\y\z GROUP BY a) GROUP BY b
I'm quite new to FLOW3 and I'm very new to Doctrine.
I'm just running some tests, and I want to learn or understand some techniques that I'll use later on. Now I'm stuck with this doctrine part where ...
2
votes
1answer
39 views
Linq to Entities with Subselect in select part
We are starting with a MVC project using EF.
We will need write a lot of queries in LINQ using subselect and don't have figured out yet how this could be done.
The most simple case of these is in ...
2
votes
3answers
126 views
MySQL Left Join Subselect
I have a simple table of languages / template id's:
language | template
en, t1
en, t1
au, t2
ge, t3
en, t1
ge, t2
ge, t3
Template is always either t1,t2, or t3. In total there are 3 languages: en, ...
2
votes
1answer
251 views
Hibernate Subselect vs Batch Fetching
Hibernate provides (at least) two options for getting around the N+1 query problem. The one is setting the FetchMode to Subselect, which generates a select with a IN-clause and a subselect within this ...
2
votes
2answers
25 views
Synchronize a Select Projection
I would like to use a table alias within the projection of another select statement, like this:
SELECT [ID]
,[Name]
,CASE WHEN 'reptile' IN
(SELECT [Type] FROM dbo.Pets [S] INNER ...
2
votes
3answers
2k views
How to delete from select in MySQL?
This code doesn't work for MySQL 5.0, how to re-write it to make it work
DELETE FROM posts where id=(SELECT id FROM posts GROUP BY id HAVING ( COUNT(id) > 1 ))
I want to delete columns that ...
2
votes
1answer
493 views
Hibernate criteria api 'Select in'
is it possible to create a 'select in'-query with the hibernate critiria api ?
Example :
I have two tables in a 1:n relation, company and department
select * from company c where c.id in (select ...
2
votes
1answer
416 views
django's .extra(where= clauses are clobbered by table-renaming .filter(foo__in=… subselects
The short of it is, the table names of all queries that are inside a filter get renamed to u0, u1, ..., so my extra where clauses won't know what table to point to. I would love to not have to ...
2
votes
2answers
395 views
IP address numbers in MySQL subquery
I have a problem with a subquery involving IPV4 addresses stored in MySQL (MySQL 5.0).
The IP addresses are stored in two tables, both in network number format - e.g. the format output by MySQL's ...
2
votes
4answers
191 views
Need to speed up the results of this SQL statement. Any advice?
I've got the following SQL Statement that needs some major speed up. The problem is I need to search on two fields, where each of them is calling several sub-selects. Is there a way to join the two ...
2
votes
2answers
246 views
Subselecting with MDX
Greetings stack overflow community.
I've recently started building an OLAP cube in SSAS2008 and have gotten stuck. I would be grateful if someone could at least point me towards the right ...
2
votes
3answers
164 views
MySQL is not using keys on the outer query of a subselect with “IN”
i'm querying a database like this:
SELECT * from Log WHERE cookieId IN (select cookieId from Log WHERE someId="blafasel");
I have keys on someId and cookieId but yet the query is very slow.
If I ...
1
vote
2answers
43 views
Improving my query to get posts on the homepage - Takes 0.5171 sec
This query is running very slow; it used to be 3 separate queries but I've consolidated it into 1. I assume it's slow because of the subselects it's doing, but I assume there might be a better way to ...
1
vote
2answers
38 views
How to select an unaliased numeric literal from a sub-select
I'm wondering if there is a general SQL syntax allowing for selecting unaliased numeric literals from sub-selects:
-- Seems to work in MySQL / Oracle
select table_alias."1"
from (
select 1 from ...
1
vote
2answers
376 views
SQL Server performance - Subselect or Inner Join?
I've been pondering the question which of those 2 Statements might have a higher performance (and why):
select * from formelement
where formid = (select id from form where name = 'Test')
or
...
1
vote
4answers
358 views
Java / MySQL - doing a select on a ResultSet
So I've done a massive select on MySQL and got back a lot of data - which is ordered by index.
For example:
select * from nodes where config_id = 1;
Gives (only relevancies shown)
| ...
1
vote
2answers
320 views
Refresh Hibernate Formula
I have got two entities (example reduced as much as possible; each entity has got an id field):
@Entity
public class A {
@Column(nullable = false)
private double foo;
@Formula(value = ...
1
vote
2answers
150 views
MySQL Voting Table, Find most recent vote by each user on an entry, and count based on value
Working with a database structure I didn't create and hoping for some help on a simple MySQL query. I have a voting table votes with these fields:
vote_id = unique vote identifier
item_id = id of ...
1
vote
1answer
64 views
Return row from subselect
I have this MySQL DB scheme:
users (id, login)
coins (userid, value, curr)
I need to write select which will return result: login and max coin he have and currency of this coin.
I've tryed ...
1
vote
1answer
188 views
HQL: how can I maintain sort order when fetching complete rows using a where-in-subselect construct?
I am currently creating a feature like 'other people who liked this also like'.
The HQL statement in question returns a list of product ids (ordered by count of shared 'likes' between two products). ...
1
vote
3answers
147 views
Need help understanding the SQL explanation of a JOIN query versus a query with subselects
I posted a previous question here asking about what was better, JOIN queries or queries using subselects. Link: Queries within queries: Is there a better way?
This is an extension to that question. ...
1
vote
3answers
205 views
Mysql subselect extremely slow (doesn't seem to be using indexes)
This query doesn't complete in a reasonable amount of time:
mysql> select * from prices where symbol='GOOG' and date in
(select max(date) from prices where symbol='GOOG' and yearweek(date) > ...
1
vote
1answer
152 views
JOIN instead of subquery for related tags
I have three tables, bookmarks, tag and tagging. tagging is the association table for linking tags to bookmarks. I would like to select related tags. The current query takes ages to run, but I could ...
1
vote
1answer
165 views
Oracle sub select query qith aggregation function
ID FirstName LastName
1 John Smith
2 Mike Smith
3 Ben Bray
4 John Bray
5 John Smith
6 Bill Lynch
7 Bill Smith
Hi ...
1
vote
2answers
107 views
How to join tables together based on subselects?
I'm stuck to figure out how to write a query. Basically I've three tables (Orders, Products, Orders_Products) which I want to join together and apply some filtering.
Orders table:
ORDER_ID ...
1
vote
4answers
227 views
Include subselect only if there is one result using tsql
We have an invoice, a invoice detail and a order table and the tables are linked by the invoice detail rows because the invoice details are grouped by delivery date so a invoice often covers multiple ...
1
vote
2answers
283 views
LINQ SubCollection SubSelect
Hello – I’m trying to get a where condition to apply to a sub collection. I can get the criteria to return the proper parents. However, I want the sub collection to be limited to the criteria as ...
1
vote
3answers
335 views
How to make a “distinct” join with MySQL
I have two MySQL tables (product and price history) that I would like to join:
Product Table:
Id = int
Name = varchar
Manufacturer = varchar
UPC = varchar
Date_added = datetime
Price_h table:
Id = ...
1
vote
3answers
69 views
Need help tuning a SQL statement
I've got a table that has two fields (custno and custno2) that need to be searched from a query. I didn't design this table, so don't scream at me. :-)
I need to find all records where either the ...
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 ...
1
vote
2answers
278 views
Using subselect to accomplish LEFT JOIN
Is is possible to accomplish the equivalent of a LEFT JOIN with subselect where multiple columns are required.
Here's what I mean.
SELECT m.*, (SELECT * FROM model WHERE id = m.id LIMIT 1) AS models ...
1
vote
2answers
158 views
Find the most recent shipment for a product (sql subselect?)
I have three tables
shipment (shipment_id, shipping_date)
company_order (company_order_id, shipment_id, company_id)
company_order_item (company_order_item_id, company_order_id, product_id)
Several ...
1
vote
3answers
96 views
Looking for sql to find a list of people in a database who don't have a particular row without using not exists
It's easy to find all the users ids who have trait.color = "green" but I need to find all the people who don't.
The obvious way is a subselect for all the ids where not exists (select id where ...
1
vote
4answers
387 views
Sort mysql table based on number of rows in another table
I'm trying to sort a user table based on how many comments they have linked to them in a secondary comment-table, I figured a sub-select will be the best tool but I can't get the syntax correct.
...
1
vote
5answers
147 views
SQL Server version of MYSQL insert into
I have the following query running on a MySQL, but it fails when I run it on a SQL Server database.
How should it look to please SQL Server?
INSERT INTO first_table (pk, data)
VALUES ((SELECT value
...
1
vote
1answer
289 views
How to join the results of two subqueries in PostgreSQL?
hello i'm newbie in sql (postgresql)
i have 2 tables as result of 2 differen selects
all calls our customer contacts
number contact_id and contact_id name
...
1
vote
1answer
100 views
Creating view from complicated select
I have quite complicated query from which I would like to create a view. The query looks like this:
select s.avg as c3, fs.bayes, fs.sure, fs.visu, fs.fstd from
(
SELECT AVG(q.c3), COUNT(q.c3), ...
1
vote
2answers
2k views
Updating records in Postgres using nested sub-selects
I have a table where I have added a new column, and I want to write a SQL statement to update that column based on existing information. Here are the two tables and the relevant columns
'leagues'
...
1
vote
2answers
383 views
MySQL: Usage of indices in UNION subselects
In MySQL 5.0.75-0ubuntu10.2 I've got a fixed table layout like that:
Table parent with an id
Table parent2 with an id
Table children1 with a parentId
CREATE TABLE `Parent` (
`id` int(11) NOT NULL ...