vote up 1 vote down star

Our 3rd Party app has a custom View with the following:

FROM dbo.vwPositionAssetSubWeight 
INNER JOIN dbo.vwPositionAssetSubTotal 
    ON dbo.vwPositionAssetSubWeight.AssetID = dbo.vwPositionAssetSubTotal.AssetID 
FULL OUTER JOIN dbo.vwPositionAssetPendingTrades 
    ON dbo.vwPositionAssetSubWeight.AssetID = dbo.vwPositionAssetPendingTrades.AssetID
, dbo.vwPositionPortfoliosTotal

Note: There is no where clause.

Some of this mess makes sense, but I'm not familiar with how the last view is joined or maybe not joined. Is dbo.vwPositionPortfoliosTotal a cross join on everything? That is my guess. Also, dbo.vwPositionPortfoliosTotal returns one row.

What is the best way to rewrite this, so it makes sense to the next developer?

Oh, no aliases, 111 returned fields, no documentation, remarks, hints or even a trail of bread crumbs.

flag

5 Answers

vote up 2 vote down check

These two statements are equivalent.

SELECT *
FROM a, b

SELECT *
FROM a CROSS JOIN b

Examine your where clause... there might be joining criteria hiding in it that would cause you to choose inner/outer joins instead.

link|flag
Thank you for pointing out the where clause issue. There isn't one, but I wouldn't want to create more problems when adding one later. – GuinnessFan Oct 2 at 13:54
vote up 0 vote down

Using a comma in the FROM clause of a SELECT statement is the same as a Cartesian product (cross join).

For example,

SELECT *
FROM a, b

will match every record from a with every record from b. It is equivalent to

SELECT *
FROM a
CROSS JOIN b
link|flag
vote up 2 vote down

The dbo.vwPositionPortfoliosTotal's join criteria will be found in the WHERE clause so in order to tell what it is doing you will have to post that part. Look for where it says things like dbo.vwPositionPortfoliosTotal.[column] = dbo.[table].[column]

Edit:

As the accepted answer says, without a WHERE this is a CROSS JOIN.

link|flag
@ongle, This is new one for me. You can combine old style join syntax and new style join syntax in the same SQL statement? – Charles Bretana Oct 2 at 13:37
Yes you can, but I wouldn't. – GuinnessFan Oct 2 at 13:55
You can somewhat, I think there are limitations on the *= outer join syntax. But I agree with @GuinnessFan and I would avoid it. – ongle Oct 2 at 15:53
vote up 2 vote down

This is indeed a cross join. If you really want to make it clear, just replace the comma by "CROSS JOIN".

link|flag
It is unsure if dbo.vwPositionPortfoliosTotal participates in a cross join. It may just be the visible part (in supplied snipped) of an "old style" join with its join condition to be expressed somewhere in the WHERE clause. – mjv Oct 2 at 13:43
vote up 2 vote down

Yes the last part ', dbo.vwPositionPortfoliosTotal' is a cross join on everything between what's before the comma and dbo.vwPositionPortfoliosTotal, but it depends also on the WHERE part.

To see if you can rewrite this cross join (remove it for example), you have to show what fields are retirved from vwPositionPortfoliosTotal and what conditions are used.

link|flag
Here is an example of one of the fields retrieved: CASE WHEN dbo.vwPositionPortfoliosTotal.PositionParAmountRC = 0 THEN NULL ELSE (CAST(ISNULL(dbo.vwPositionAssetSubWeight.ParAmountRC, 0) AS float) + CAST(ISNULL(dbo.vwPositionAssetPendingTrades.ParAmountRC, 0) AS float)) / CAST(dbo.vwPositionPortfoliosTotal.PositionParAmountRC AS float) END AS ParAmountRCPercentOfTotalPortfolios, – GuinnessFan Oct 2 at 13:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.