Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8539469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:22:22+00:00 2026-06-11T11:22:22+00:00

Here is my CTE – it is causing an error. Help me to figure

  • 0

Here is my CTE – it is causing an error. Help me to figure out the error

CREATE TABLE [dbo].[myEmpTab](
[EMPNO] [int] NULL,
[ENAME] [varchar](10)  NULL,
[JOB] [varchar](20)  NULL,
[MGR] [int] NULL,
[HIREDATE] [datetime] NULL,
[SAL] [int] NULL
) ON [PRIMARY]

;
WITH MyCTE AS 
( 
  SELECT EMPNO, EName, Null as MGR, NULL as ManagerName
  FROM myEmpTab
  WHERE MGR IS NULL
  UNION ALL
  SELECT  EMPNO, EName, MGR, MyCTE.EName
  FROM myEmpTab
  INNER JOIN MyCTE ON myEmpTab.MGR = MyCTE.EMPNO
  WHERE myEmpTab.MGR IS NOT NULL 
)
SELECT * FROM MyCTE

when i am executing the sql then i am getting error like

Msg 209, Level 16, State 1, Line 8
Ambiguous column name 'EMPNO'.
Msg 209, Level 16, State 1, Line 8
Ambiguous column name 'EName'.
Msg 209, Level 16, State 1, Line 8
Ambiguous column name 'MGR'.

i am not being able to catch the error . so please anyone have a lot and help me to fix it. thanx.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T11:22:24+00:00Added an answer on June 11, 2026 at 11:22 am

    I don’t think you can reference a CTE inside itself. Try this

    WITH MyCTE AS 
    ( 
    SELECT EMPNO, EName, MGR, Sal
    FROM myEmpTab
    WHERE MGR IS NULL
    )
    
    SELECT EMPNO, EName, MGR, Sal FROM MyCTE
    
    UNION ALL
    
    SELECT  e.EMPNO, e.EName, e.MGR, MyCTE.EName
    FROM myEmpTab e
    INNER JOIN MyCTE ON e.MGR = MyCTE.EMPNO
    WHERE e.MGR IS NOT NULL 
    

    OR

    WITH MyCTE AS 
    ( 
        SELECT EMPNO, EName, MGR, Sal
        FROM myEmpTab
        WHERE MGR IS NULL
    ),
    MyCTE2 as
    (
        SELECT EMPNO, EName, MGR, Sal FROM MyCTE
    
        UNION ALL
    
        SELECT  e.EMPNO, e.EName, e.MGR, MyCTE.EName
        FROM myEmpTab e
        INNER JOIN MyCTE ON e.MGR = MyCTE.EMPNO
        WHERE e.MGR IS NOT NULL 
    )
    SELECT * FROM MyCTE2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my SQL script CREATE TABLE tracks( track_id int NOT NULL AUTO_INCREMENT, account_id
Here is the code: create table `team`.`User`( `UserID` bigint NOT NULL AUTO_INCREMENT , `Username`
I have a simple self referencing table as depicted here: CREATE TABLE [dbo].[Project]( [ProjectId]
I just read this link http://msdn.microsoft.com/en-us/library/ms186243.aspx Here is the code to create table and
ALTER PROCEDURE [dbo].[getMessages] -- Add the parameters for the stored procedure here @lastRow int,
I have a parent/child relation table, many to many parentid int not null childid
Here is what I am currently doing. PHP echo's out the recent post in
I have written a table-valued UDF that starts by a CTE to return a
I get the following error when I try to execute a particular recursive CTE:
Im trying to create a field called Owner in my table where You select

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.