Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
2k views

How can I further optimize a derived table query which performs better than the JOINed equivalent?

UPDATE: I found a solution. See my Answer below. My Question How can I optimize this query to minimize my downtime? I need to update over 50 schemas with the number of tickets ranging from 100,000 ...
6
votes
3answers
209 views

When is it not appropriate to use Derived tables?

This SO post details some benefits in performance regarding Derived vs. Temporary tables. Other than performance, what situations exist for which a Derived table would not be appropriate. One ...
6
votes
2answers
3k views

SQL Server Performance: derived table vs. common table expression (CTE)

Is there any performance gain using a CTE over a derived table?
3
votes
7answers
437 views

Unfamiliar character in SQL statement

This is sort of SQL newbie question, I think, but here goes. I have a SQL Query (SQL Server 2005) that I've put together based on an example user-defined function: SELECT CASEID, ...
2
votes
3answers
38 views

How do I tell the MySQL Optimizer to use the index on a derived table?

Suppose you have a query like this... SELECT T.TaskID, T.TaskName, TAU.AssignedUsers FROM `tasks` T LEFT OUTER JOIN ( SELECT TaskID, GROUP_CONCAT(U.FirstName, ' ', U.LastName ...
2
votes
3answers
120 views

SQL Left Join (Multiple Join Condition)

I have two derived tables named Check Ins and Check Outs Check Ins CheckDate CheckIn ---------- --------- 08/02/2011 10:10:03 08/02/2011 15:57:16 07/19/2011 13:58:52 07/19/2011 16:50:55 07/26/2011 ...
2
votes
3answers
865 views

SELECT INTO USING UNION QUERY

I want to create a new table in SQL Server with the following query. I am unable to understand why this query doesn't work. Query1: Works SELECT * FROM TABLE1 UNION SELECT * FROM TABLE2 Query2: ...
2
votes
3answers
208 views

can't merge a union all view

I know Oracle RDMS can't merge a view that has a set operator in it. I want to know why is that. For example, this: SELECT u.* FROM ( SELECT a.a1 A, a.a2 B FROM tab_a a UNION ALL ...
2
votes
5answers
123 views

I wish I could correlate an “inline view”

I have a Patient table: PatientId Admitted --------- --------------- 1 d/m/yy hh:mm:ss 2 d/m/yy hh:mm:ss 3 d/m/yy hh:mm:ss I have a PatientMeasurement table (0 to many): PatientId ...
1
vote
1answer
70 views

Derived table used several times

I need to run 3 consecutive queries using the same derived table... I'm using MS SQL Server 2008 Select a,b,c from categories inner join (select x,y,z from derivedTable where…) … Select a,b,c from ...
1
vote
1answer
41 views

Display mutiple categories for single entry

I have the following tables: Category table which has an ID column, a description column, and category parent ID columns as follows: cat_id | cat_description | cat_pid ...
1
vote
3answers
57 views

Replacing right join with derived table to left join

How do i write this query, with left join. since the framework i use doesn't support right join i need to rewrite the query. Can any one suggest me a possible solution. select ...
1
vote
1answer
209 views

MySQL Join Optimisation: Improving join type with derived tables and GROUP BY

I am trying to improve a query which does the following: For every job, add up all the costs, add up the invoiced amount, and calculate a profit/loss. The costs come from several different tables, ...
1
vote
1answer
100 views

Please Explain how to Express this SQL as a Single Statement using Derived Tables

For my own edification, I'm trying to write this SQL functionality in a single statement without using temporary tables. For the life of me, I can't get the query to work without getting a MySQL ...
1
vote
2answers
2k views

SQL Server: join on derived table that contains WITH clause?

I'd like to join on a subquery / derived table that contains a WITH clause (the WITH clause is necessary to filter on ROW_NUMBER() = 1). In Teradata something similar would work fine, but Teradata ...
1
vote
3answers
233 views

SQL Help in Access – Looking for the Absence of Data

I am trying to find the fastest way to find all of the records in a parent table that do not have certain records in a child table. For example, I want the query to return all of the family records ...
0
votes
0answers
42 views

mysql union statement

Can anyone see the obvious problem with this, cause i cant. The following gives no rows. Even if I leave the WHERE attribute_id LIKE @aid AND value LIKE @oid; and use SELECT * FROM, nothing is ...
0
votes
3answers
51 views

Grouping, counting and excluding based on column value

Although I've not a complete newbie in SQL or MySQL I notice that there's still quite a bit to learn. I cannot get my head around this one, after much trying, reading and searching. If you can give ...
0
votes
0answers
33 views

Django Derived Model gives null pointer error

I tried to use a derived model and Django keeps give me this when I try to create a new model. 1048, "Column 'systemevents_ptr_id' cannot be null") My models are: (Parent) class ...
0
votes
3answers
282 views

MySQL query with join on derived table containing group by, return most recent related record

Hi everyone I've got a MySQL query which uses joins on a couple of derived tables. One of the derived queries works great, and I'm getting the correct number of rows returned. But I'm also trying to ...
0
votes
1answer
940 views

Create temporary table from select statement without using Create Table

Is it possible to create a temporary (session only) table from a select statement without using a create table statement and specifying each column type? I know derived tables are capable of this, but ...
0
votes
1answer
127 views

Mysql refrencing derived tables from nested query

I posted something similar to this yesterday, but now I'd like something a little different from my query- I'm trying to query a database to retrieve the number of one-time users who have visited a ...
0
votes
1answer
62 views

Subselect in a Join - Problem

I've a little Problem with a statement: SELECT p1.Modell_nr, p1.ProductID, p2.count_modlieffarbe_vl, concat(p1.Modell_nr,'_',p1.LiefFarbe) as modfarb_id1 FROM produkte as p1 LEFT ...
0
votes
0answers
302 views

Derived Tables Explain Plan and Optimizing Derived Tables (MySQL)

I am new to MySQL and trying to optimize a mammoth query. In the explain plan it seems that most of the query is fairly efficient for the non-derived tables. However, the derived tables do not utilize ...
0
votes
0answers
235 views

MySQL sub-query or derived table by grouped year-month of parent query

Hi everyone I've developed an intranet orders/billing system which has a report which at any point in time outputs the totals of all orders that are yet to be billed, a forward order book total. So ...
0
votes
2answers
281 views

Performance Issues with Derived Table in SQL

I am having trouble using a derived table in MySQL. Does using a derived table inherently slow down the processing of a query? Here is the query I am trying to run. It won't execute and just times ...
0
votes
0answers
111 views

FULLTEXT operations on a derived table

In my SQL Server 2008 RC2 database I have a table T that has a full text index defined on column FT. I am trying to derive a table containing column FT, then select from this derived table using a ...
0
votes
2answers
1k views

Optimizing a MySQL query with a large IN() clause or join on derived table

Let's say I need to query the associates of a corporation. I have a table, "transactions", which contains data on every transaction made. CREATE TABLE `transactions` ( `transactionID` int(11) ...
0
votes
1answer
235 views

NHibernate + join to derived table

In a table that stores multiple rows per employee, I want to pull one row per employee that represents the most recent entry for each employee. Here's where I am with hand-written SQL: SELECT [all ...
0
votes
1answer
200 views

indexes and speeding up 'derived' queries

I've recently noticed that a query I have is running quite slowly, at almost 1 second per query. The query looks like this SELECT eventdate.id, eventdate.eid, eventdate.date, eventdate .time, ...
0
votes
3answers
2k views

indexes in mysql SELECT AS or using Views

I'm in over my head with a big mysql query (mysql 5.0), and i'm hoping somebody here can help. Earlier I asked how to get distinct values from a joined query ...
0
votes
2answers
8k views

How to combine variable assignment with data-retrieval operations in T-SQL

Just to clarify, I'm running Sybase 12.5.3, but I am lead to believe that this holds true for SQL Server 2005 too. Basically, I'm trying to write a query that looks a little like this, I've simplified ...