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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:05:36+00:00 2026-06-12T20:05:36+00:00

I seem to be having a problem with my SQL query that’s driving me

  • 0

I seem to be having a problem with my SQL query that’s driving me mad. I just can’t seem to get the group by to work. I keep getting the following error:

00979. 00000 -  "not a GROUP BY expression"

My query:

SELECT customers.customer_first_name, customers.customer_last_name, orders.customer_numb, books.author_name, books.title
FROM customers
LEFT OUTER JOIN orders ON (orders.customer_numb = customers.customer_numb)
LEFT OUTER JOIN order_lines ON (order_lines.order_numb = orders.order_numb)
LEFT OUTER JOIN books ON (books.isbn = order_lines.isbn)
WHERE (customers.customer_numb = 6)
GROUP BY (books.title)

Database schema:

Customers:

enter image description here

Order Lines & Orders:

enter image description here

What I’m trying to achieve:
I’m trying to group by book titles so that it doesn’t show duplicate titles.

I apologise if I’ve missed anything, thanks.

  • 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-12T20:05:37+00:00Added an answer on June 12, 2026 at 8:05 pm

    What don’t you understand? Your select statement contains many columns that are not in the group by clause. Try this:

    SELECT customers.customer_first_name, customers.customer_last_name, orders.customer_numb, books.author_name, books.title 
    FROM customers 
    LEFT OUTER JOIN orders ON (orders.customer_numb = customers.customer_numb) 
    LEFT OUTER JOIN order_lines ON (order_lines.order_numb = orders.order_numb) 
    LEFT OUTER JOIN books ON (books.isbn = order_lines.isbn) 
    WHERE (customers.customer_numb = 6) 
    GROUP BY customers.customer_first_name, customers.customer_last_name, orders.customer_numb, books.author_name, books.title  
    

    Since you are not aggregating anything, you can dispense with the group by, and just use distinct in the select clause:

    select distinct  customers.customer_first_name, customers.customer_last_name, orders.customer_numb, books.author_name, books.title 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having a problem with my site http://artygirl.co.uk/pixie/about/ I can't seem to get the
I am having an SQL query problem. I am trying to get data in
I'm having a problem in ruby and I can't seem to find the solution
I'm having a problem and can't seem to find the solution.. int linearSearch(nodeptr list,char
I seem to be having a problem when using Linq to Sql in which
I seem to be having a problem. I want to write some code that
I seem to be having a problem. I want a view where I can
I seem to be having a problem removing the image in UIScrollView. I was
I seem to be having a problem checking if a string exists in my
I seem to be having a problem with checking for list equality. In my

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.