0
votes
2answers
35 views
Procedurally transform subquery into join
Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a …
0
votes
1answer
14 views
SQL to Linq translation with inner join and 2 left joins (with sub-query)
Hi there! I have the following query which works fine in SSMS. Im using LinqPad (C#) but really puzzling to succeed with the left outer join in LinqToSql:
SELECT DISTINCT
A.Loc …
3
votes
5answers
36 views
Can i force mysql to perform subquery first?
I have query like this:
SELECT `table_1`.* from `table_1`
INNER JOIN `table_2` [...]
INNER JOIN `table_3` [...]
WHERE `table_1`.`id` IN(
SELECT `id` FROM [...]
)
AND [more c …
2
votes
3answers
45 views
MySQL: Returning multiple columns from an in-line subquery
I'm creating an SQL statement that will return a month by month summary on sales.
The summary will list some simple columns for the date, total number of sales and the total value …
0
votes
1answer
17 views
SQL Server - Selecting records with specific, multiple entries in an associative table
I’m working in SQL Server with the following sample problem. Brandon prefers PC’s and Macs, Sue prefers PC’s only, and Alan Prefers Macs. The data would be represented something li …
1
vote
2answers
113 views
Hibernate Subquery Question
This should be a simple one I hope.
I have an invoice and that invoice has a list of payments.
Using the Criteria API I am trying to return a list of invoices and their payment t …
0
votes
2answers
99 views
Rewriting correlated subquery as JOIN?
UPDATE: Thanks to Sifu Bill's advice I have amended the SQL query. Now it returns the correct number of distinct assets (five).
Is it possible to rewrite the following correlated …
0
votes
2answers
33 views
Zend_Db_Table subquery
Hi,
I have a some SQL that I want to use with ZendFW, but I can't get it working and it's driving me crazy. I get the correct result with this query:
SELECT DISTINCT e.festival_id …
0
votes
5answers
77 views
Using SELECT TOP from one column, then sorting on a different column
I'm using SQL Server 2005, and I want to query for the vendors generating the most revenue, sorted by the vendor's name. Below is the query I have tried. The inner subquery gets …
0
votes
1answer
86 views
Subqueries in linq
Hello,
I've been trying for a couple of days to write to "translate" this query in LINQ with no success so far. Could you guys please help me? I would also appreciate some explana …
1
vote
3answers
121 views
Performance of Sql subqueries\functions
Hi SO, I am currently working on a particularly complex use-case. Simplifying below :)
First, a client record has a many-to-one relationship with a collection of services, that is …
0
votes
2answers
98 views
When do i use inner joins and when do i use subqueries?
What is the difference between an inner join and a subquery? and when should i use a subquery? or an inner join? I was in a situation recently where an inner join was too slow and …
0
votes
2answers
69 views
a subquery within a subquery - is it possible?
Hi All,
I have this sql below that i use to compare values of z. I put z in a subquery and then compare it.
My qn is in in my else statement below, i want to put in another for …
0
votes
2answers
46 views
Are subqueries the only option to reuse variables?
I'd like to use MySQL in this form:
SELECT 1 AS one, one*2 AS two
because it's shorter and sweeter than
SELECT one*2 AS two FROM ( SELECT 1 AS one ) AS sub1
but the former do …
2
votes
5answers
57 views
Problem with update statement
I am trying to update all records in a column so that they start with 'CD' e.g. DCE206 would become CDE206.
UPDATE table
SET column = REPLACE(column1, 'DC', 'CD') …
