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 7543755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:30:36+00:00 2026-05-30T08:30:36+00:00

I am getting an error – ‘Could not start transaction; too many transaction already

  • 0

I am getting an error – ‘Could not start transaction; too many transaction already nested.’ when I use 7 union statements for a query. If I remove one union statements and make it 6 then everything runs perfectly. Any help to resolve this issue will be very valuable.

Thanks!

The tables I am using:

School_TBL consists of a courses column, and a student column. One student can take more than course (so it is a multi-valued field)

Here is the SQL statement:

    select 'John' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 2 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value

    UNION ALL
    select 'Jane' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 3 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value

    UNION ALL
    select 'Jim' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 4 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value  

UNION ALL
    select 'Hank' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 5 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value

    UNION ALL
    select 'Jay' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 6 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value

    UNION ALL
    select 'Anna' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 7 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value

    UNION ALL
    select 'Amy' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 8 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value

    UNION ALL
    select 'Jason' as Student Name, Sum(IIf([CourseID]=1,1,0)) as Math, Sum(IIf([CourseID]=2,1,0)) AS English
    From School_TBL
    where (School_TBL.StudentID.value = 9 and School_TBL.CourseID.Value=1)
    GROUP BY School_TBL.StudentID.Value
  • 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-05-30T08:30:37+00:00Added an answer on May 30, 2026 at 8:30 am

    YOu need a second table that holds student details, if you don’t already have one. You only need one select statement that does a join on that table to extract the student name

    SELECT Student.studentName, Sum(IIf([CourseID]=1,1,0)) AS math, Sum(IIf([CourseID]=2,1,0)) AS english
    FROM school_tbl INNER JOIN Student ON school_tbl.studentId = Student.Studentid
    GROUP BY Student.studentName;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Getting error with Could not find endpoint element with name 'CaseJacketPort' and contract 'GrandJuryService.CaseJacket'
getting error while creating simple maven project [WARNING] repository metadata for: 'org.apache.maven.plugins' could not
I am getting #error WINDOWS.H already included. MFC apps must not #include windows.h But
I am getting SMTP Error: Could not connect to SMTP host. error while trying
getting error while try to start service
getting error: ActiveRecord::StatementInvalid (PGError: ERROR: argument of HAVING must be type boolean, not type
I'm getting error LNK2005: bool __cdecl hasLogin(void) (?hasLogin@@YA_NXZ) already defined in B.obj error. func
I am getting a weird error when trying to use a Java map in
I'm getting error C3095: 'Xunit::Extensions::InlineDataAttribute': attribute cannot be repeated in C++/CLI code but not
I am getting error while deserializing jsonString. Error is Type 'oodleListingsUser' is not supported

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.