The derived-table tag has no wiki summary.
0
votes
2answers
74 views
Add new column to a derived table in view
I am trying to figure out how I can add a new column to a derived table in a view without modifying the underlying tables. Let me explain what I have to do:
I need to add a simplified MQSA module to ...
-2
votes
1answer
40 views
The request works on phpadmin but not in my php code
Let me please show an other example ...
I can't be able to create this view in php (whereas i can in phpmyadmin)
$sql="CREATE VIEW ratings.rtgemissfitch AS
SELECT derivedtable. ISIN
FROM
(SELECT ...
0
votes
1answer
28 views
SQL Server reference fields in derived table with unions
I'm having a bit of an issue with some derived tables that I hope someone will be able to help with. What I've got is 2 derived tables inside a select statement that then uses a pivot to display the ...
1
vote
1answer
80 views
Find which entry occurs maximum number of time in Mysql
I have a table T like this :
ID | brand
2 | 100
2 | 300
2 | 300
1 | 100
1 | 200
I want to find which ID,brand combination occur more than 50% for an ID. For ex : here the result should come as
ID ...
0
votes
1answer
45 views
selecting from derived table in MySql
I have a table T like this:
ID | column 1 | column 2 |...| column n
Here ID is not a primary key.
I performed some operation and group the results according to ID so I get a table T1 like this:
...
0
votes
0answers
142 views
SQL Server query that contains a derived table
I have created a select query that contains one regular table and two derived tables (subqueries). The derived tables are both joined with the regular table with left joins. The regular table contains ...
1
vote
1answer
108 views
Exclude results from first table in stored procedure with union and derived alias table
I have a stored procedure with a union and derived table situation. The stored procedure basically needs to return all Cases rows where Cases.AssnKey = AssnCtrl.pKey, including ones that don't meet ...
0
votes
2answers
85 views
Deriving and saving the historical values into a separate table, or calculate the historical values from the existing data only when they're needed?
tl;dr general question about handling database data and design:
Is it ever acceptable/are there any downsides to derive data from other data at some point in time, and then store that derived data ...
1
vote
3answers
511 views
Update with Sub Query Derived Table Error
I have the following SQL statement to simply update the #temp temp table with the latest package version number in our Sybase 15 database.
UPDATE t
SET versionId = l.latestVersion
FROM #temp t INNER ...
2
votes
2answers
164 views
Pass Value To Derived Table
Is there a way to pass a value to a derived table query?
In the derived table I want reference a value ([docSVsys].[sID]) from the outer query.
I get an error:
Msg 4104, Level 16, State 1, ...
0
votes
3answers
72 views
Is there some equivalent to subquery correlation when making a derived table?
I need to flatten out 2 rows in a vertical table (and then join to a third table) I generally do this by making a derived table for each field I need. There's only two fields, I figure this isn't that ...
0
votes
0answers
291 views
MySQL Joining derived tables without FULL OUTER JOIN
I'm stuck with a SQL issue that seems obvious, but I can't seem to get the JOINS correct.
Here's my sql. I want to derive new columns (using derived tables) and then group those output via the ...
0
votes
2answers
167 views
Is there something equivalent to putting an order by clause in a derived table?
This is sybase 15.
Here's my problem.
I have 2 tables.
t1.jobid t1.date
------------------------------
1 1/1/2012
2 4/1/2012
3 ...
1
vote
1answer
57 views
How to find column information for an aggregate grouping
I have a complicated query written on SQL2000 which in part contains a join onto a derived table. This table is unforunetly not returning exactly how I desired as the underlying data differs to what I ...
1
vote
2answers
412 views
mysql derived tables, performance, alternative
I have the following tables,
link_books_genres, *table structure -> book_id,genre_id*
genres, *table structure -> genre_id,genre_name*
Given a set of book_ids, I want to form the following ...
1
vote
1answer
640 views
SQL View vs Derived Table
I've always thought of a View as a stored query. Recently I needed to use Derived Tables in a project. That got me thinking about Views.
Isn't a View the same thing as a Derived Table except that it ...
0
votes
2answers
497 views
SQL: How can I declare a variable inside a derived table?
I'm trying to create a comma separated list and I'm using a derived table. But I cannot declare the variable within the LEFT OUTER JOIN... how can I do this?
LEFT OUTER JOIN (
...
2
votes
1answer
411 views
Query using a derived table with ISNUMERIC results in conversion failure (varchar to int)
Here's an example query:
DECLARE @table table (loc varchar(10))
INSERT INTO @table VALUES
('134a'), ('123'), ('abc'), ('124')
SELECT *
FROM (
SELECT * FROM @table WHERE ISNUMERIC(loc) = 1
) as ...
0
votes
3answers
229 views
SQL Query with derived table - performance issue
I have a SQL query that contains a derieved table.
The derived query looks something like this:
SELECT
ObjectId, MIN(StatusHistoryId) AS FirstStatusHistoryId
FROM
dbo.StatusHistory
WHERE
...
3
votes
3answers
739 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 ...
0
votes
0answers
113 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 ...
3
votes
3answers
3k 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 ...
1
vote
1answer
406 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 ...
0
votes
3answers
153 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 ...
1
vote
1answer
56 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
221 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
990 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, ...
0
votes
3answers
2k 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 ...
37
votes
4answers
37k 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
258 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
84 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
2answers
609 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 ...
1
vote
0answers
225 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 ...
1
vote
1answer
133 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 ...
3
votes
3answers
8k 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
497 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
...
6
votes
3answers
402 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 ...
1
vote
2answers
3k 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 ...
0
votes
2answers
2k 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
377 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 ...
2
votes
5answers
214 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 ...
0
votes
1answer
346 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, ...
18
votes
5answers
4k 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 ...
1
vote
3answers
340 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
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
...
6
votes
2answers
4k views
SQL Server Performance: derived table vs. common table expression (CTE)
Is there any performance gain using a CTE over a derived table?
1
vote
2answers
12k 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 ...
3
votes
7answers
595 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,
...



