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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:04:55+00:00 2026-05-11T06:04:55+00:00

Consider following schema: Customers: Col | Type | ——————-| id | INTEGER | name

  • 0

Consider following schema:

 Customers: Col      | Type    | -------------------| id       | INTEGER | name     | VARCHAR |  Orders: Col         | Type    | ----------------------| id          | INTEGER | customer_id | INTEGER | date        | DATE    |  Items Col         | Type    | ----------------------| id          | INTEGER | order_id    | INTEGER | name        | VARCHAR | quantity    | INTEGER | 

And here’s the breif run down of the schema: Customer can have many orders, and an order can have many items Note: You may argue that the items should refer to some products table with a product_id, but let it be simple as is now.

From my database, I want to ask following question:

For a given customer, list all the items that start with La.

My version of the query goes like this:

SELECT * FROM items WHERE name LIKE ‘La%’

This would return ALL the items that Begin with La for ALL the customers. What I want is that I get all the items for a SPECIFIC customer with say id 1. How do I write such a query? My second version that would do is like this:

SELECT * FROM items WHERE name LIKE ‘La%’ AND order_id in (SELECT id FROM orders WHERE customer_id=1);

But is their any other efficient/elegant or a more better way to do the same thing?

  • 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. 2026-05-11T06:04:55+00:00Added an answer on May 11, 2026 at 6:04 am

    The elegant way to do this is called a join.

    SELECT   c.id            customer_id,   c.name          customer_name,   i.id            item_id,   i.name          item_name,   COUNT(i.id)     order_count,   SUM(i.quantity) items_ordered FROM   customers c   INNER JOIN orders o ON c.id = o.customer_id   INNER JOIN items  i ON i.id = o.order_id WHERE   i.name LIKE 'La%'   AND c.id = 1 GROUP BY   c.id,   c.name,   i.id,   i.name 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider a table with the following schema: id, location, starred There are many records
Please consider following schema CREATE table articles ( id Int UNSIGNED NOT NULL AUTO_INCREMENT,
Consider the following database schema: create table UserGroup ( id int not null auto_increment,
Consider the following DB schema: CREATE UNIQUE INDEX blah1 ON table1(length); CREATE INDEX blah2
Consider the following scenario. I have a table (a stupid_table ) in a schema
Let's consider the following XML Schema: <?xml version=1.0 encoding=UTF-8?> <schema targetNamespace=http://www.example.org/library elementFormDefault=qualified xmlns=http://www.w3.org/2001/XMLSchema xmlns:lib=http://www.example.org/library>
Consider following make: all: a b a: echo a exit 1 b: echo b
Consider following code: My problem is: 1) I can't seem to cast the errors
Consider following string Some string with quotes and \pre-slashed\ quotes Using regex, I want
Consider following text: $content=<<<EOT { translatorID: f4a5876a-3e53-40e2-9032-d99a30d7a6fc, label: ACL, creator: Nathan Schneider, target: ^https?://(www[.])?aclweb\\.org/anthology-new/[^#]+,

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.