show/hide this revision's text 2 Improved and simplified formatting

Why does this query not have the formatting warning (or advice) that the similar query below it has?

What does the following message warning mean: "This item has not been declared, or it refers to a label?" ?

Why is it bad?

FYI: Both queries run fine and return the same results.second example worse than the first?

SELECT   product_id, prod.name name, sample_id
  FROM   lims.sample JOIN lims.product prod USING (product_id)

vs.

SELECT   product_id, prod.name name, sample_id
  FROM   (SELECT   sample_id, product_id FROM lims.sample)
         JOIN lims.product prod
/* ADVICE: [131]  This item has not been declared, or it refers to a label */
            USING (product_id)

/* ADVICE:
ADVICE SUMMARY

Count  Recommendation
-----  --------------
    1  [131]  This item has not been declared, or it refers to a label
                  The Oracle equivalent error messages are  PLS-00320 and
                  PLS-0321.
*/

FYI: Both queries run fine and return the same results.

show/hide this revision's text 1

Advice from Toad for Oracle Formatter

Why does this query not have the formatting warning (or advice) that the similar query below it has? What does the following message mean: "This item has not been declared, or it refers to a label?" Why is it bad?

FYI: Both queries run fine and return the same results.

SELECT   product_id, prod.name name, sample_id
  FROM   lims.sample JOIN lims.product prod USING (product_id)

vs.

SELECT   product_id, prod.name name, sample_id
  FROM   (SELECT   sample_id, product_id FROM lims.sample)
         JOIN lims.product prod
/* ADVICE: [131]  This item has not been declared, or it refers to a label */
            USING (product_id)

/* ADVICE:
ADVICE SUMMARY

Count  Recommendation
-----  --------------
    1  [131]  This item has not been declared, or it refers to a label
                  The Oracle equivalent error messages are  PLS-00320 and
                  PLS-0321.
*/