Why does this query result in a “missing FROM clause”?











up vote
0
down vote

favorite












Why below sql statement keeps getting missing FROM clause entry for table error?

How to adjust this?



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
),
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID"
FROM "B_COLLECTION"."COLL_C_RECORD"
WHERE ( SUBID.SUBJECT_ID = TR.PERSONAL_S_ID )
AND ( TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C');









share|improve this question




















  • 1




    The main SELECT doesn't include SUBID in the FROM list.
    – jarlh
    Nov 22 at 8:24










  • Did you mean to write from subid join tr on ... in the main SELECT statement?
    – a_horse_with_no_name
    Nov 22 at 8:24












  • Unrelated, but: TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C' can be simplified to TR.STATE_ID IN ('5', 'A', 'C')
    – a_horse_with_no_name
    Nov 22 at 8:28















up vote
0
down vote

favorite












Why below sql statement keeps getting missing FROM clause entry for table error?

How to adjust this?



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
),
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID"
FROM "B_COLLECTION"."COLL_C_RECORD"
WHERE ( SUBID.SUBJECT_ID = TR.PERSONAL_S_ID )
AND ( TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C');









share|improve this question




















  • 1




    The main SELECT doesn't include SUBID in the FROM list.
    – jarlh
    Nov 22 at 8:24










  • Did you mean to write from subid join tr on ... in the main SELECT statement?
    – a_horse_with_no_name
    Nov 22 at 8:24












  • Unrelated, but: TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C' can be simplified to TR.STATE_ID IN ('5', 'A', 'C')
    – a_horse_with_no_name
    Nov 22 at 8:28













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Why below sql statement keeps getting missing FROM clause entry for table error?

How to adjust this?



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
),
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID"
FROM "B_COLLECTION"."COLL_C_RECORD"
WHERE ( SUBID.SUBJECT_ID = TR.PERSONAL_S_ID )
AND ( TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C');









share|improve this question















Why below sql statement keeps getting missing FROM clause entry for table error?

How to adjust this?



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
),
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID"
FROM "B_COLLECTION"."COLL_C_RECORD"
WHERE ( SUBID.SUBJECT_ID = TR.PERSONAL_S_ID )
AND ( TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C');






sql postgresql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 8:24









a_horse_with_no_name

288k46434530




288k46434530










asked Nov 22 at 8:14









fink168

68211




68211








  • 1




    The main SELECT doesn't include SUBID in the FROM list.
    – jarlh
    Nov 22 at 8:24










  • Did you mean to write from subid join tr on ... in the main SELECT statement?
    – a_horse_with_no_name
    Nov 22 at 8:24












  • Unrelated, but: TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C' can be simplified to TR.STATE_ID IN ('5', 'A', 'C')
    – a_horse_with_no_name
    Nov 22 at 8:28














  • 1




    The main SELECT doesn't include SUBID in the FROM list.
    – jarlh
    Nov 22 at 8:24










  • Did you mean to write from subid join tr on ... in the main SELECT statement?
    – a_horse_with_no_name
    Nov 22 at 8:24












  • Unrelated, but: TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C' can be simplified to TR.STATE_ID IN ('5', 'A', 'C')
    – a_horse_with_no_name
    Nov 22 at 8:28








1




1




The main SELECT doesn't include SUBID in the FROM list.
– jarlh
Nov 22 at 8:24




The main SELECT doesn't include SUBID in the FROM list.
– jarlh
Nov 22 at 8:24












Did you mean to write from subid join tr on ... in the main SELECT statement?
– a_horse_with_no_name
Nov 22 at 8:24






Did you mean to write from subid join tr on ... in the main SELECT statement?
– a_horse_with_no_name
Nov 22 at 8:24














Unrelated, but: TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C' can be simplified to TR.STATE_ID IN ('5', 'A', 'C')
– a_horse_with_no_name
Nov 22 at 8:28




Unrelated, but: TR.STATE_ID ='5' OR TR.STATE_ID = 'A' OR TR.STATE_ID = 'C' can be simplified to TR.STATE_ID IN ('5', 'A', 'C')
– a_horse_with_no_name
Nov 22 at 8:28












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










You are declaring SUBID and TR just fine, but since these are tables, your select statement does not know them yet.



Here you need to enter SUBID and TR in FROM clauses of your query. It should look somewhat like



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
) ,
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID" FROM SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');


That is why you use WITH Clause only on repeating queries. Here it would actually be much nicier to use:



SELECT "SUBJECT_ID" FROM "B_COLLECTION"."COLL_C_RECORD" SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM "B_TRACE"."PERSONAL_TC_RECORD" TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');





share|improve this answer



















  • 1




    Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
    – a_horse_with_no_name
    Nov 22 at 8:27










  • Fine point. I will remove those double quotes from the answer
    – Shuumi
    Nov 22 at 8:33










  • No, I meant you need to add them.
    – a_horse_with_no_name
    Nov 22 at 8:34










  • @a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
    – Shuumi
    Nov 22 at 8:35












  • No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
    – a_horse_with_no_name
    Nov 22 at 8:38











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53426470%2fwhy-does-this-query-result-in-a-missing-from-clause%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










You are declaring SUBID and TR just fine, but since these are tables, your select statement does not know them yet.



Here you need to enter SUBID and TR in FROM clauses of your query. It should look somewhat like



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
) ,
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID" FROM SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');


That is why you use WITH Clause only on repeating queries. Here it would actually be much nicier to use:



SELECT "SUBJECT_ID" FROM "B_COLLECTION"."COLL_C_RECORD" SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM "B_TRACE"."PERSONAL_TC_RECORD" TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');





share|improve this answer



















  • 1




    Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
    – a_horse_with_no_name
    Nov 22 at 8:27










  • Fine point. I will remove those double quotes from the answer
    – Shuumi
    Nov 22 at 8:33










  • No, I meant you need to add them.
    – a_horse_with_no_name
    Nov 22 at 8:34










  • @a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
    – Shuumi
    Nov 22 at 8:35












  • No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
    – a_horse_with_no_name
    Nov 22 at 8:38















up vote
0
down vote



accepted










You are declaring SUBID and TR just fine, but since these are tables, your select statement does not know them yet.



Here you need to enter SUBID and TR in FROM clauses of your query. It should look somewhat like



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
) ,
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID" FROM SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');


That is why you use WITH Clause only on repeating queries. Here it would actually be much nicier to use:



SELECT "SUBJECT_ID" FROM "B_COLLECTION"."COLL_C_RECORD" SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM "B_TRACE"."PERSONAL_TC_RECORD" TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');





share|improve this answer



















  • 1




    Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
    – a_horse_with_no_name
    Nov 22 at 8:27










  • Fine point. I will remove those double quotes from the answer
    – Shuumi
    Nov 22 at 8:33










  • No, I meant you need to add them.
    – a_horse_with_no_name
    Nov 22 at 8:34










  • @a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
    – Shuumi
    Nov 22 at 8:35












  • No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
    – a_horse_with_no_name
    Nov 22 at 8:38













up vote
0
down vote



accepted







up vote
0
down vote



accepted






You are declaring SUBID and TR just fine, but since these are tables, your select statement does not know them yet.



Here you need to enter SUBID and TR in FROM clauses of your query. It should look somewhat like



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
) ,
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID" FROM SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');


That is why you use WITH Clause only on repeating queries. Here it would actually be much nicier to use:



SELECT "SUBJECT_ID" FROM "B_COLLECTION"."COLL_C_RECORD" SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM "B_TRACE"."PERSONAL_TC_RECORD" TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');





share|improve this answer














You are declaring SUBID and TR just fine, but since these are tables, your select statement does not know them yet.



Here you need to enter SUBID and TR in FROM clauses of your query. It should look somewhat like



WITH SUBID AS (
SELECT * FROM "B_COLLECTION"."COLL_C_RECORD"
) ,
TR AS (
SELECT * FROM "B_TRACE"."PERSONAL_TC_RECORD"
)
SELECT "SUBJECT_C_ID" FROM SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');


That is why you use WITH Clause only on repeating queries. Here it would actually be much nicier to use:



SELECT "SUBJECT_ID" FROM "B_COLLECTION"."COLL_C_RECORD" SUBID
WHERE SUBID."SUBJECT_ID" IN
(SELECT "PERSONAL_S_ID" FROM "B_TRACE"."PERSONAL_TC_RECORD" TR
WHERE TR."STATE_ID" = '5'
OR TR."STATE_ID" = 'A'
OR TR."STATE_ID" = 'C');






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 22 at 8:44

























answered Nov 22 at 8:25









Shuumi

936




936








  • 1




    Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
    – a_horse_with_no_name
    Nov 22 at 8:27










  • Fine point. I will remove those double quotes from the answer
    – Shuumi
    Nov 22 at 8:33










  • No, I meant you need to add them.
    – a_horse_with_no_name
    Nov 22 at 8:34










  • @a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
    – Shuumi
    Nov 22 at 8:35












  • No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
    – a_horse_with_no_name
    Nov 22 at 8:38














  • 1




    Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
    – a_horse_with_no_name
    Nov 22 at 8:27










  • Fine point. I will remove those double quotes from the answer
    – Shuumi
    Nov 22 at 8:33










  • No, I meant you need to add them.
    – a_horse_with_no_name
    Nov 22 at 8:34










  • @a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
    – Shuumi
    Nov 22 at 8:35












  • No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
    – a_horse_with_no_name
    Nov 22 at 8:38








1




1




Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
– a_horse_with_no_name
Nov 22 at 8:27




Given the use of those dreaded quoted identifiers in the CTEs, it might also need those dreaded quoted identifiers for the column names. E.g. select "PERSONAL_S_ID" FROM tr and WHERE TR."STATE_ID" ...
– a_horse_with_no_name
Nov 22 at 8:27












Fine point. I will remove those double quotes from the answer
– Shuumi
Nov 22 at 8:33




Fine point. I will remove those double quotes from the answer
– Shuumi
Nov 22 at 8:33












No, I meant you need to add them.
– a_horse_with_no_name
Nov 22 at 8:34




No, I meant you need to add them.
– a_horse_with_no_name
Nov 22 at 8:34












@a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
– Shuumi
Nov 22 at 8:35






@a_horse_with_no_name Yes, but you can also remove them and not use any, right? I just tested those queries on SQLFiddle and they work. I am pretty sure that this answer is already right
– Shuumi
Nov 22 at 8:35














No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
– a_horse_with_no_name
Nov 22 at 8:38




No, you can't "PERSONAL_S_ID" is a different column name than PERSONAL_S_ID
– a_horse_with_no_name
Nov 22 at 8:38


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53426470%2fwhy-does-this-query-result-in-a-missing-from-clause%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Trompette piccolo

Slow SSRS Report in dynamic grouping and multiple parameters

Simon Yates (cyclisme)